From 5e6967def2dd3db04b7feb8aed9a56210a2e2648 Mon Sep 17 00:00:00 2001 From: Matthieu Bessat Date: Sun, 19 Feb 2023 12:10:12 +0100 Subject: [PATCH] initial commit --- README.md | 2 + construct_hugo_content_links.py | 15 + gen_content.py | 112 + janco_posts.json | 1 + out_posts.json | 48108 +++ out_posts_1.json | 48108 +++ out_posts_2.json | 48108 +++ out_posts_all_1.json | 441665 +++++++++++++++++++++++++++ propagate_title_change_to_slug.py | 33 + scrape.py | 65 + title_generator/generate.py | 65 + title_generator/output_shit.json | 2 + tmp.json | 460 + 13 files changed, 586744 insertions(+) create mode 100644 README.md create mode 100644 construct_hugo_content_links.py create mode 100644 gen_content.py create mode 100644 janco_posts.json create mode 100644 out_posts.json create mode 100644 out_posts_1.json create mode 100644 out_posts_2.json create mode 100644 out_posts_all_1.json create mode 100644 propagate_title_change_to_slug.py create mode 100644 scrape.py create mode 100644 title_generator/generate.py create mode 100644 title_generator/output_shit.json create mode 100644 tmp.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..14309b5 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Linkedin posts scrapper + diff --git a/construct_hugo_content_links.py b/construct_hugo_content_links.py new file mode 100644 index 0000000..5bb0332 --- /dev/null +++ b/construct_hugo_content_links.py @@ -0,0 +1,15 @@ +# scan the true content folder and recreate all the symbolic links + +from os.path import basename +from pathlib import Path + + +SITE_BASE = "./janco_website" +MD_ORGANIZED_CONTENT_BASE = "./janco_website/true_content/posts" +MD_FLAT_CONTENT_BASE = "./janco_website/content/posts" + +for path in Path(MD_ORGANIZED_CONTENT_BASE).rglob('*.md'): + bn = basename(path) + Path(MD_FLAT_CONTENT_BASE + '/' + bn).symlink_to('../../' + str(path.relative_to(SITE_BASE))) + + diff --git a/gen_content.py b/gen_content.py new file mode 100644 index 0000000..13cf5f2 --- /dev/null +++ b/gen_content.py @@ -0,0 +1,112 @@ + +#se generate markdown that can be used with hugo + +# A single JSON file that contains all the posts that we want to generate +# This file contains a JSON array with linkedin user profile posts +INP_FILE_PATH = "./out_posts_all_1.json" +# This file hold the current state of scrapping, what articles have been scrapped +STORAGE_FILE_PATH = "./posts_scrapping_state.json" + +MD_ORGANIZED_CONTENT_BASE = "./janco_website/true_content/posts" +MD_FLAT_CONTENT_BASE = "./janco_website/content/posts" + +import json +from urllib.parse import urljoin, urlparse +import uuid +import os +from typing import Optional + +def slurp_file_and_parse(inp_file_path): + posts = [] + with open(inp_file_path) as inp_file: + posts = json.loads(inp_file.read()) + return posts + +posts = slurp_file_and_parse(INP_FILE_PATH) + +from pprint import pprint +from slugify import slugify + +from dataclasses import dataclass +from datetime import datetime + +@dataclass +class Post: + id: int + title: str + created_at: datetime + content: str + original_url: str + + @property + def slug(self) -> str: + return slugify(self.title) + + +ARTICLE_COMPONENT = "com.linkedin.voyager.feed.render.ArticleComponent" + +global_count = 0 + +def parse_post(raw_post): + global global_count + + def datetime_from_id(id: int): + # thanks to https://github.com/Ollie-Boyd/Linkedin-post-timestamp-extractor + epoch = (id & 0xffffffffff800000) >> 22 + return datetime.utcfromtimestamp(epoch/1000) + + entity_id = int(raw_post['entityUrn'].split("activity:")[1].split(',')[0]) + + original_url = next(filter(lambda x: x['actionType'] == "SHARE_VIA", raw_post['updateMetadata']['updateActions']['actions']))['url'] + original_url = urljoin(original_url, urlparse(original_url).path) + + created_at = datetime_from_id(entity_id) + + global_count += 1 + out_post = Post( + id=entity_id, + title=f"CHANGE_ME {global_count}", + content=raw_post['commentary']['text']['text'], + created_at=created_at.replace(microsecond=0), + original_url=original_url + # title=raw_post + ) + + # content_items = list(raw_post['content'].items()) + components = list(raw_post['content'].keys()) if 'content' in raw_post else [] + # the "content" key contains some other components like the com.linkedin.voyager.feed.render.ArticleComponent that indicate there is an article (linked) attached to this post + + if ARTICLE_COMPONENT in components: + article = raw_post['content'][ARTICLE_COMPONENT] + # pprint(article, depth=1) + # image_path = article['largeImage']['attributes'][0]['vectorImage']['artifacts'][0]['fileIdentifyingUrlPathSegment'] + + return out_post + +import yaml +for post in posts: + pp = parse_post(post) + + + pp.created_at.year + pp.created_at.month + + yaml_header = yaml.dump({ + 'title': pp.title, + 'date': pp.created_at.isoformat(), + 'li-id': pp.id, + 'li-url': pp.original_url, + }) + dir_container = f"{MD_ORGANIZED_CONTENT_BASE}/{pp.created_at.year}/{pp.created_at.month:02}" + if not os.path.isdir(dir_container): + os.makedirs(dir_container) + + with open(f"{dir_container}/{pp.slug}.md", 'w') as f: + f.write("\n".join([ + "---", + yaml_header.strip(), + "---", + "", + pp.content + ])) + diff --git a/janco_posts.json b/janco_posts.json new file mode 100644 index 0000000..bd20b8a --- /dev/null +++ b/janco_posts.json @@ -0,0 +1 @@ +[{"actor": {"urn": "urn:li:member:101316862", "image": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "PROFILE_PICTURE", "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}}]}, "supplementaryActorInfo": {"textDirection": "USER_LOCALE", "text": " \u2022 Following"}, "name": {"textDirection": "FIRST_STRONG", "attributes": [{"start": 0, "length": 19, "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}, "type": "PROFILE_FULLNAME"}], "text": "Jean-Marc Jancovici"}, "subDescription": {"textDirection": "USER_LOCALE", "attributes": [{"start": 6, "length": 1, "artDecoIcon": "IC_GLOBE_16DP", "type": "ART_DECO_ICON"}], "text": "11h \u2022 ", "accessibilityText": "11 hours ago"}, "navigationContext": {"trackingActionType": "viewMember", "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug"}, "description": {"textDirection": "USER_LOCALE", "text": "Founding Partner, Carbone 4 - President, The Shift project"}}, "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,DEFAULT,false)", "updateMetadata": {"urn": "urn:li:activity:7032115801016938496", "actionsPosition": "ACTOR_COMPONENT", "updateActions": {"actions": [{"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM"}]}, "actionType": "SAVE", "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7032115801016938496)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7032115801016938496)"}, "text": "Save"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_LINK_MEDIUM"}]}, "actionType": "SHARE_VIA", "text": "Copy link to post", "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-recrute-une-cheffe-de-projet-agriculture-activity-7032115801016938496-lQSy?utm_source=share&utm_medium=member_desktop"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_CLEAR_MEDIUM"}]}, "actionType": "UNFOLLOW_MEMBER", "text": "Unfollow Jean-Marc Jancovici", "followAction": {"followTrackingActionType": "followMember", "followingInfo": {"followingType": "FOLLOWING", "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "following": true, "trackingUrn": "urn:li:member:101316862"}, "unfollowTrackingActionType": "unfollowMember", "type": "UNFOLLOW_TOGGLE", "trackingActionType": "unfollowMember"}, "confirmationAction": {"title": {"text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "attributes": [], "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed"}, "undoable": true}}, {"actionType": "REPORT", "targetUrn": "urn:li:share:7032115800496848896", "contentSource": "UGC_POST", "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "authorUrn": "urn:li:member:101316862", "icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_REPORT_MEDIUM"}]}, "secondaryAction": {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM"}]}, "actionType": "HIDE_UPDATE", "targetUrn": "urn:li:activity:7032115801016938496", "text": "Hide this post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "text": "You'll no longer see this post in your feed."}, "undoable": true}}, "text": "Report post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Thank you for your report"}, "description": {"textDirection": "USER_LOCALE", "text": "We appreciate you letting us know"}, "undoable": false}}], "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,-,-)", "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)"}, "actionTriggerEnabled": false, "detailPageType": "FEED_DETAIL", "shareAudience": "PUBLIC", "shareUrn": "urn:li:share:7032115800496848896", "excludedFromSeen": false, "trackingData": {"requestId": "b25a7ec3-e28d-48c3-8992-6f2d239bb5ed", "trackingId": "RG3qysJY+25QguPJBtnAPA=="}}, "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,DEFAULT,false)", "content": {"com.linkedin.voyager.feed.render.ArticleComponent": {"templateType": "DEFAULT", "urn": "urn:li:article:7508397560141145240", "swapTitleAndSubtitle": false, "largeImage": {"accessibilityTextAttributes": [], "attributes": [{"useCropping": false, "sourceType": "VECTOR", "vectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "800/0/1676589776974?e=1677236400&v=beta&t=LPc9sQwTqe_RKAxA-p-0PgvRKPsbZ9u2APJtFUdR8Ik", "expiresAt": 1677236400000, "height": 533}, {"width": 815, "fileIdentifyingUrlPathSegment": "1280_800/0/1676589776974?e=1677236400&v=beta&t=GWvn4lgjCslPvTNHYUSs7C2dPdUQKg45m9kZv5hhw1A", "expiresAt": 1677236400000, "height": 543}, {"width": 160, "fileIdentifyingUrlPathSegment": "160/0/1676589776974?e=1677236400&v=beta&t=ULTeCod2tkW1L4eFpuuwmzs-ol35N6ySsc7OcqtmoCU", "expiresAt": 1677236400000, "height": 106}, {"width": 480, "fileIdentifyingUrlPathSegment": "480/0/1676589776974?e=1677236400&v=beta&t=-0Lf898wq0wcbhkxvQGq72rtNmuggxYVuUB6KKLBjSI", "expiresAt": 1677236400000, "height": 319}], "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQENdzDIiQ--jA/articleshare-shrink_"}, "displayAspectRatio": 0.66625}]}, "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7508397560141145240)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7508397560141145240)"}, "subtitle": {"textDirection": "USER_LOCALE", "text": "theshiftproject.org \u2022 5 min read"}, "navigationContext": {"trackingActionType": "viewLink", "accessibilityText": "Open article: Le Shift recrute un.e Chef.fe de projet Agriculture ! [CDD 18 mois] by theshiftproject.org", "actionTarget": "https://theshiftproject.org/article/offre-emploi-chef-projet-agriculture/"}, "showSmallTitle": false, "type": "EXTERNAL_FULL", "title": {"textDirection": "FIRST_STRONG", "text": "Le Shift recrute un.e Chef.fe de projet Agriculture ! [CDD 18 mois]"}}}, "commentary": {"templateType": "DEFAULT", "translationUrn": "urn:li:fs_translation:(urn:li:share:7032115800496848896,fr)", "numLines": 3, "text": {"textDirection": "FIRST_STRONG", "text": "Ce n'\u00e9tait pas le secteur le plus travaill\u00e9 dans le Plan de Transformation de l'Economie Fran\u00e7aise, et donc le Shift Project a d\u00e9cid\u00e9 d'y revenir. Car la production et cuisson de nos aliments, en incluant les \u00e9missions industrielles amont (fabrication des engrais, des intrants en g\u00e9n\u00e9ral, et des machines agricoles), les \u00e9missions dans les exploitations, et celles \u00e0 l'aval (industries agro-alimentaires, transports, emballages, d\u00e9placements des consommateurs pour faire les courses, cuisson, etc) c'est un tiers des \u00e9missions mondiales, et pas loin du m\u00eame pourcentage en France.\n\nIl semble donc difficile de dire que nous allons devenir \"neutres\", ce qui suppose de supprimer la quasi-totali\u00e9 de nos \u00e9missions actuelles, sans s'occuper s\u00e9rieusement de ce secteur. C'est pour cela que The Shift Project se cherche le mouton ou la brebis \u00e0 5 pattes (c'est de circonstance) pour piloter la r\u00e9flexion \u00e0 venir sur la bonne mani\u00e8re de d\u00e9carboner notre assiette.\n\nSi faire un petit tour par les locaux de cette association vous tente, \u00e0 vos CV ! "}, "originalLanguage": "French", "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7032115800496848896,fr)"}, "socialDetail": {"dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7032115801016938496,urn:li:activity:7032115801016938496,urn:li:highlightedReply:-)", "comments": {"paging": {"start": 0, "count": 0, "total": 25, "links": []}, "elements": []}, "socialPermissions": {"dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7032115801016938496,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", "canPostComments": true, "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7032115801016938496,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", "messagePermission": "PUBLIC", "canShare": true, "canReact": true}, "showPremiumAnalytics": false, "hideFirstPrompt": true, "liked": false, "showShareButton": true, "totalShares": 0, "urn": "urn:li:activity:7032115801016938496", "threadId": "activity:7032115801016938496", "allowedCommentersScope": "ALL", "totalSocialActivityCounts": {"socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7032115801016938496", "urn": "urn:li:activity:7032115801016938496", "numComments": 33, "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7032115801016938496", "reactionTypeCounts": [{"count": 243, "reactionType": "LIKE"}, {"count": 9, "reactionType": "INTEREST"}, {"count": 4, "reactionType": "PRAISE"}, {"count": 2, "reactionType": "APPRECIATION"}, {"count": 1, "reactionType": "MAYBE"}], "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7032115801016938496", "numLikes": 259, "liked": false}, "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7032115801016938496", "commentingDisabled": false, "likes": {"paging": {"start": 0, "count": 0, "total": 259, "links": []}, "elements": []}}}, {"actor": {"urn": "urn:li:member:101316862", "image": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "PROFILE_PICTURE", "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}}]}, "supplementaryActorInfo": {"textDirection": "USER_LOCALE", "text": " \u2022 Following"}, "name": {"textDirection": "FIRST_STRONG", "attributes": [{"start": 0, "length": 19, "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}, "type": "PROFILE_FULLNAME"}], "text": "Jean-Marc Jancovici"}, "subDescription": {"textDirection": "USER_LOCALE", "attributes": [{"start": 5, "length": 1, "artDecoIcon": "IC_GLOBE_16DP", "type": "ART_DECO_ICON"}], "text": "1d \u2022 ", "accessibilityText": "1 day ago"}, "navigationContext": {"trackingActionType": "viewMember", "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug"}, "description": {"textDirection": "USER_LOCALE", "text": "Founding Partner, Carbone 4 - President, The Shift project"}}, "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,DEFAULT,false)", "updateMetadata": {"urn": "urn:li:activity:7031764966638559232", "actionsPosition": "ACTOR_COMPONENT", "updateActions": {"actions": [{"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM"}]}, "actionType": "SAVE", "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7031764966638559232)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7031764966638559232)"}, "text": "Save"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_LINK_MEDIUM"}]}, "actionType": "SHARE_VIA", "text": "Copy link to post", "url": "https://www.linkedin.com/posts/jean-marc-jancovici_b8-d%C3%A9pendance-%C3%A9nerg%C3%A9tique-du-secteur-de-activity-7031764966638559232-jEQv?utm_source=share&utm_medium=member_desktop"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_CLEAR_MEDIUM"}]}, "actionType": "UNFOLLOW_MEMBER", "text": "Unfollow Jean-Marc Jancovici", "followAction": {"followTrackingActionType": "followMember", "followingInfo": {"followingType": "FOLLOWING", "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "following": true, "trackingUrn": "urn:li:member:101316862"}, "unfollowTrackingActionType": "unfollowMember", "type": "UNFOLLOW_TOGGLE", "trackingActionType": "unfollowMember"}, "confirmationAction": {"title": {"text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "attributes": [], "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed"}, "undoable": true}}, {"actionType": "REPORT", "targetUrn": "urn:li:share:7031764966009376769", "contentSource": "UGC_POST", "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "authorUrn": "urn:li:member:101316862", "icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_REPORT_MEDIUM"}]}, "secondaryAction": {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM"}]}, "actionType": "HIDE_UPDATE", "targetUrn": "urn:li:activity:7031764966638559232", "text": "Hide this post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "text": "You'll no longer see this post in your feed."}, "undoable": true}}, "text": "Report post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Thank you for your report"}, "description": {"textDirection": "USER_LOCALE", "text": "We appreciate you letting us know"}, "undoable": false}}], "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,-,-)", "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)"}, "actionTriggerEnabled": false, "detailPageType": "FEED_DETAIL", "shareAudience": "PUBLIC", "shareUrn": "urn:li:share:7031764966009376769", "excludedFromSeen": false, "trackingData": {"requestId": "b25a7ec3-e28d-48c3-8992-6f2d239bb5ed", "trackingId": "We3cUoHfbfriZJuDNBEM6w=="}}, "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,DEFAULT,false)", "content": {"com.linkedin.voyager.feed.render.ExternalVideoComponent": {"urn": "urn:li:article:7201673045911734909", "swapTitleAndSubtitle": false, "thumbnail": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "VECTOR", "vectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "800/0/1676576622421?e=1677236400&v=beta&t=9QwODR33sDHPQ49fUp-sTBvRsLy25yEBa8Y7b3Ft1mc", "expiresAt": 1677236400000, "height": 450}, {"width": 1280, "fileIdentifyingUrlPathSegment": "1280_800/0/1676576622421?e=1677236400&v=beta&t=a-sd9PnqQkhzN08IshHqxRm6LQkEul41LKfs1yWk28U", "expiresAt": 1677236400000, "height": 720}, {"width": 160, "fileIdentifyingUrlPathSegment": "160/0/1676576622421?e=1677236400&v=beta&t=SKnro5VA4KX_K8jhNdar2STZoFeON0LljUsWQlMg5Qg", "expiresAt": 1677236400000, "height": 90}, {"width": 480, "fileIdentifyingUrlPathSegment": "480/0/1676576622421?e=1677236400&v=beta&t=k8gzNH__VeLZDtCGOKqqvC65pQYjeg9aM05Ig_2Y2bc", "expiresAt": 1677236400000, "height": 270}], "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQEZhL5YyD4zww/articleshare-shrink_"}, "displayAspectRatio": 0.5625}]}, "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7201673045911734909)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7201673045911734909)"}, "subtitle": {"textDirection": "USER_LOCALE", "text": "youtube.com"}, "navigationContext": {"trackingActionType": "viewLink", "accessibilityText": "Open video: B8- D\u00e9pendance \u00e9nerg\u00e9tique du secteur de la sant\u00e9 [Jean-Marc Jancovici] on youtube.com", "actionTarget": "https://www.youtube.com/watch?v=LSe5XItXVtE"}, "description": {"textDirection": "FIRST_STRONG", "text": "* Module de formation de M\u00e9decine et Sant\u00e9 Environnementale produit par la Conf\u00e9rence des Doyens des Facult\u00e9s de M\u00e9decine de France * \ud83c\udfe5 Le syst\u00e8me de la sant\u00e9 pourrait-il fonctionner dans un \u00e9tat de contraction \u00e9nerg\u00e9tique ? #h\u00f4pital #\u00e9nergie #sant\u00e9..."}, "showSmallTitle": false, "title": {"textDirection": "USER_LOCALE", "text": "B8- D\u00e9pendance \u00e9nerg\u00e9tique du secteur de la sant\u00e9 [Jean-Marc Jancovici]"}}}, "commentary": {"templateType": "DEFAULT", "translationUrn": "urn:li:fs_translation:(urn:li:share:7031764966009376769,fr)", "numLines": 3, "text": {"textDirection": "FIRST_STRONG", "text": "Apr\u00e8s les ing\u00e9nieurs et les gestionnaires, c'est au tour des futurs m\u00e9decins de se faire former aux enjeux climatiques et environnementaux.\n\nD'ici \u00e0 septembre 2023, toutes les facult\u00e9s de m\u00e9decine de France vont inclure dans leur enseignement un module intitul\u00e9 \"m\u00e9decine et sant\u00e9 environnementale\" pour fournir des bases sur les enjeux, mais aussi sur la mani\u00e8re de les aborder. \n\nCe module est essentiellement constitu\u00e9 de vid\u00e9os dont la liste est accessible l\u00e0 : https://lnkd.in/dhmUtKmy\n\nMa \"partition\" dans cet ensemble consiste \u00e0 exposer l'apport de l'\u00e9nergie - c'est \u00e0 dire de notre costume d'Ironman - \u00e0 l'augmentation de l'esp\u00e9rance de vie, au travers de l'alimentation, de la prophylaxie, de la fabrication des vaccins et m\u00e9dicaments, et plus r\u00e9cemment au fonctionnement de l'h\u00f4pital moderne. \n\nLe grand paradoxe, dans la sant\u00e9, est que l'\u00e9mergence des combustibles fossiles a globalement fortement allong\u00e9 la dur\u00e9e de vie... tout en faisant na\u00eetre une menace croissante sur le maintien de cette dur\u00e9e \u00e0 l'avenir.\n\nCette courte vid\u00e9o ne d\u00e9taille pas du tout les futurs impacts possibles du changement climatique sur la sant\u00e9. Elle porte uniquement sur le pass\u00e9, pour faire comprendre en quoi l'\u00e9nergie a jou\u00e9 un r\u00f4le central dans le fait que l'esp\u00e9rance de vie (en fait l'\u00e2ge moyen du d\u00e9c\u00e8s) soit pass\u00e9e d'un peu moins de 30 ans en 1800 \u00e0 environ 80 aujourd'hui.\n\nComment ne pas retourner \u00e0 30 ans dans un monde sobre en \u00e9nergie ? C'est \u00e0 ce d\u00e9fi que devront participer les m\u00e9decins - et les autres professionnels de la sant\u00e9 - \u00e0 l'avenir. Esp\u00e9rons que ce module leur donnera des cl\u00e9s de lecture utiles !\n\nNB : en farfouillant dans la liste vous y trouverez quelques \"usual suspects\" (Bourg, Bihouix, Keller, Gouyon, Selosse, Auzanneau...) sur des formats assez courts : il n'y a plus qu'\u00e0 d\u00e9guster !"}, "originalLanguage": "French", "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7031764966009376769,fr)"}, "socialDetail": {"dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7031764966638559232,urn:li:activity:7031764966638559232,urn:li:highlightedReply:-)", "comments": {"paging": {"start": 0, "count": 0, "total": 31, "links": []}, "elements": []}, "socialPermissions": {"dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7031764966638559232,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", "canPostComments": true, "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7031764966638559232,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", "messagePermission": "PUBLIC", "canShare": true, "canReact": true}, "showPremiumAnalytics": false, "hideFirstPrompt": true, "liked": false, "showShareButton": true, "totalShares": 0, "urn": "urn:li:activity:7031764966638559232", "threadId": "activity:7031764966638559232", "allowedCommentersScope": "ALL", "totalSocialActivityCounts": {"socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031764966638559232", "urn": "urn:li:activity:7031764966638559232", "numComments": 58, "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7031764966638559232", "reactionTypeCounts": [{"count": 656, "reactionType": "LIKE"}, {"count": 107, "reactionType": "INTEREST"}, {"count": 16, "reactionType": "EMPATHY"}, {"count": 13, "reactionType": "PRAISE"}, {"count": 9, "reactionType": "APPRECIATION"}, {"count": 1, "reactionType": "MAYBE"}], "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7031764966638559232", "numLikes": 802, "liked": false}, "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031764966638559232", "commentingDisabled": false, "likes": {"paging": {"start": 0, "count": 0, "total": 802, "links": []}, "elements": []}}}, {"actor": {"urn": "urn:li:member:101316862", "image": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "PROFILE_PICTURE", "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}}]}, "supplementaryActorInfo": {"textDirection": "USER_LOCALE", "text": " \u2022 Following"}, "name": {"textDirection": "FIRST_STRONG", "attributes": [{"start": 0, "length": 19, "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}, "type": "PROFILE_FULLNAME"}], "text": "Jean-Marc Jancovici"}, "subDescription": {"textDirection": "USER_LOCALE", "attributes": [{"start": 5, "length": 1, "artDecoIcon": "IC_GLOBE_16DP", "type": "ART_DECO_ICON"}], "text": "3d \u2022 ", "accessibilityText": "3 days ago"}, "navigationContext": {"trackingActionType": "viewMember", "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug"}, "description": {"textDirection": "USER_LOCALE", "text": "Founding Partner, Carbone 4 - President, The Shift project"}}, "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,DEFAULT,false)", "updateMetadata": {"urn": "urn:li:activity:7031166740847837185", "actionsPosition": "ACTOR_COMPONENT", "updateActions": {"actions": [{"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM"}]}, "actionType": "SAVE", "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7031166740847837185)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7031166740847837185)"}, "text": "Save"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_LINK_MEDIUM"}]}, "actionType": "SHARE_VIA", "text": "Copy link to post", "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-s%C3%A9cheresse-pointe-sous-lanticyclone-activity-7031166740847837185-sdcK?utm_source=share&utm_medium=member_desktop"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_CLEAR_MEDIUM"}]}, "actionType": "UNFOLLOW_MEMBER", "text": "Unfollow Jean-Marc Jancovici", "followAction": {"followTrackingActionType": "followMember", "followingInfo": {"followingType": "FOLLOWING", "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "following": true, "trackingUrn": "urn:li:member:101316862"}, "unfollowTrackingActionType": "unfollowMember", "type": "UNFOLLOW_TOGGLE", "trackingActionType": "unfollowMember"}, "confirmationAction": {"title": {"text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "attributes": [], "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed"}, "undoable": true}}, {"actionType": "REPORT", "targetUrn": "urn:li:share:7031166740042506240", "contentSource": "UGC_POST", "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "authorUrn": "urn:li:member:101316862", "icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_REPORT_MEDIUM"}]}, "secondaryAction": {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM"}]}, "actionType": "HIDE_UPDATE", "targetUrn": "urn:li:activity:7031166740847837185", "text": "Hide this post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "text": "You'll no longer see this post in your feed."}, "undoable": true}}, "text": "Report post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Thank you for your report"}, "description": {"textDirection": "USER_LOCALE", "text": "We appreciate you letting us know"}, "undoable": false}}], "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,-,-)", "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)"}, "actionTriggerEnabled": false, "detailPageType": "FEED_DETAIL", "shareAudience": "PUBLIC", "shareUrn": "urn:li:share:7031166740042506240", "excludedFromSeen": false, "trackingData": {"requestId": "b25a7ec3-e28d-48c3-8992-6f2d239bb5ed", "trackingId": "EQh+jPdCgb8Qx9+sbZHsbg=="}}, "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,DEFAULT,false)", "content": {"com.linkedin.voyager.feed.render.ArticleComponent": {"templateType": "DEFAULT", "urn": "urn:li:article:8489194875064209322", "swapTitleAndSubtitle": false, "largeImage": {"accessibilityTextSourceType": "USER", "attributes": [{"useCropping": false, "sourceType": "VECTOR", "vectorImage": {"artifacts": [{"width": 700, "fileIdentifyingUrlPathSegment": "800/0/1676581927584?e=1677236400&v=beta&t=SVF7A1d1JO1wlX2HM-gWqOSHvcWtsSXkgXsIHDKnc_w", "expiresAt": 1677236400000, "height": 542}, {"width": 700, "fileIdentifyingUrlPathSegment": "1280_800/0/1676581927584?e=1677236400&v=beta&t=t25MdZjL9FSSwf6bgjMy-MQUikUx4YnxYCbYRmt_1Jw", "expiresAt": 1677236400000, "height": 542}, {"width": 160, "fileIdentifyingUrlPathSegment": "160/0/1676581927585?e=1677236400&v=beta&t=PswNoC7VjVMSoym1JRChkDipbEi24_XGEBUwG4g_fAQ", "expiresAt": 1677236400000, "height": 124}, {"width": 480, "fileIdentifyingUrlPathSegment": "480/0/1676581927585?e=1677236400&v=beta&t=TbloNzknLmpiQbmIkPnCB_hQeblVMT_jeYOenTYishw", "expiresAt": 1677236400000, "height": 372}], "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEwLB0r1VF0JQ/articleshare-shrink_"}, "displayAspectRatio": 0.7742857142857142}], "accessibilityTextAttributes": [], "accessibilityText": "Pression r\u00e9duite au niveau de la mer moyenne du 21 janvier au 7 f\u00e9vrier"}, "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8489194875064209322)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8489194875064209322)"}, "subtitle": {"textDirection": "USER_LOCALE", "text": "meteofrance.com \u2022 3 min read"}, "navigationContext": {"trackingActionType": "viewLink", "accessibilityText": "Open article: La s\u00e9cheresse pointe sous l'anticyclone by meteofrance.com", "actionTarget": "https://meteofrance.com/actualites-et-dossiers-0/la-secheresse-pointe-sous-lanticyclone"}, "showSmallTitle": false, "type": "EXTERNAL_FULL", "title": {"textDirection": "FIRST_STRONG", "text": "La s\u00e9cheresse pointe sous l'anticyclone"}}}, "commentary": {"templateType": "DEFAULT", "translationUrn": "urn:li:fs_translation:(urn:li:share:7031166740042506240,fr)", "numLines": 3, "text": {"textDirection": "FIRST_STRONG", "text": "Il va falloir r\u00e9viser le sens des mots en mati\u00e8re de m\u00e9t\u00e9o. Quand on \u00e9coute le bulletin, \"il fait beau\", utilise un adjectif qui est g\u00e9n\u00e9ralement associ\u00e9 \u00e0 quelque chose de positif : il est assez rare que l'on emploie \"beau\" pour une situation dont on ne voudrait pas !\n\nMalheureusement, \"il fait beau\", en hiver (et m\u00eame en \u00e9t\u00e9 !), peut d\u00e9sormais \u00eatre associ\u00e9 \u00e0 un certain nombre d'inconv\u00e9nients dont on se passerait bien.\n\nTout d'abord, s'il \"fait beau\" c'est qu'il ne pleut pas. Notre pays s'appr\u00eate \u00e0 battre un record de dur\u00e9e de jours secs en hiver, avec plus de 3 semaines cons\u00e9cutives \u00e0 moins de 1 mm de pluie par jour sur le pays : https://bit.ly/3RZ2pdK\n\nCette s\u00e9cheresse hivernale survient alors que les nappes phr\u00e9atiques, au 1er janvier, \u00e9taient toujours \u00e0 un niveau bien trop bas sur une large partie du pays : https://bit.ly/3E7IALE (\"Plus des trois-quarts des nappes demeurent sous les normales mensuelles. Les niveaux sont nettement inf\u00e9rieurs \u00e0 ceux de d\u00e9cembre 2021\"). Rappelons que la recharge des nappes l'hiver c'est le confort - voire la survie - de la v\u00e9g\u00e9tation l'\u00e9t\u00e9.\n\nQuand \"il fait beau\", c'est g\u00e9n\u00e9ralement que nous sommes en conditions anticycloniques, avec peu de vent, et donc la production \u00e9olienne est faible, ce qui est effectivement le cas en France en moyenne sur les derni\u00e8res semaines : https://bit.ly/3lttNod \n\nLa carte des contenus carbone des pays europ\u00e9ens \u00e0 l'instant o\u00f9 je tape ce post refl\u00e8te cette faiblesse, avec des moyens fossiles qui sont utilis\u00e9s de mani\u00e8re significative : https://lnkd.in/eRvA7w-a Deuxi\u00e8me cons\u00e9quence de \"il fait beau\", donc : les \u00e9missions de CO2 augmentent, ainsi que les \u00e9missions de polluants associ\u00e9s \u00e0 la production \u00e9lectrique fossile (oxydes d'azote et particules fines).\n\nQuand \"il fait beau\" en hiver, avec un ciel d\u00e9gag\u00e9, il fait g\u00e9n\u00e9ralement aussi froid. Cela augmente d'autant la consommation \u00e9lectrique - une deuxi\u00e8me raison d'avoir des centrales \u00e0 charbon qui fonctionnent plus - ainsi que le chauffage fossile ou au bois, qui \u00e9mettent aussi des polluants. Avec l'air qui circule peu (puisqu'il y a un anticyclone), et les autres sources de particules (agriculture et transports), on se retrouve avec un \u00e9pisode de pollution aux particules fines un peu prononc\u00e9 : http://www2.prevair.org/ (choisir \"Europe\" et \"PM 2.5\" dans les menus d\u00e9roulants pour avoir une vue d'ensemble de l'Europe pour les particules les plus dangereuses). Les parisiens peuvent jeter un coup d'oeil \u00e0 https://airparif.asso.fr/ \n\nR\u00e9sumons : \"Il fait beau\" signifie donc une v\u00e9g\u00e9tation qui va souffrir l'\u00e9t\u00e9 prochain, une pollution (qui tue) et des \u00e9missions de CO2 en hausse. Si ces cons\u00e9quences \u00e9taient rappel\u00e9es \u00e0 chaque bulletin m\u00e9t\u00e9o, peut-\u00eatre que cela nous motiverait un peu plus \u00e0 d\u00e9carboner rapidement notre \u00e9conomie, et \u00e0 commencer \u00e0 nous exciter un peu plus s\u00e9rieusement sur la pr\u00e9paration au mieux \u00e0 un climat qui va devenir plus hostile pour tout ce qui pousse.\n\nC'\u00e9taient les bonnes nouvelles du jour :)"}, "originalLanguage": "French", "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7031166740042506240,fr)"}, "socialDetail": {"dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7031166740847837185,urn:li:activity:7031166740847837185,urn:li:highlightedReply:-)", "comments": {"paging": {"start": 0, "count": 0, "total": 293, "links": []}, "elements": []}, "socialPermissions": {"dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7031166740847837185,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", "canPostComments": true, "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7031166740847837185,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", "messagePermission": "PUBLIC", "canShare": true, "canReact": true}, "showPremiumAnalytics": false, "hideFirstPrompt": true, "liked": false, "showShareButton": true, "totalShares": 0, "urn": "urn:li:activity:7031166740847837185", "threadId": "activity:7031166740847837185", "allowedCommentersScope": "ALL", "totalSocialActivityCounts": {"socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031166740847837185", "urn": "urn:li:activity:7031166740847837185", "numComments": 434, "reactionText": {"textDirection": "USER_LOCALE", "text": "Jacques PYRAT"}, "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7031166740847837185", "reactionTypeCounts": [{"count": 7342, "reactionType": "LIKE"}, {"count": 1634, "reactionType": "INTEREST"}, {"count": 374, "reactionType": "APPRECIATION"}, {"count": 247, "reactionType": "PRAISE"}, {"count": 42, "reactionType": "MAYBE"}, {"count": 34, "reactionType": "EMPATHY"}], "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7031166740847837185", "numLikes": 9673, "liked": false}, "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031166740847837185", "commentingDisabled": false, "likes": {"paging": {"start": 0, "count": 0, "total": 9689, "links": []}, "elements": []}}}, {"actor": {"urn": "urn:li:member:101316862", "image": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "PROFILE_PICTURE", "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}}]}, "supplementaryActorInfo": {"textDirection": "USER_LOCALE", "text": " \u2022 Following"}, "name": {"textDirection": "FIRST_STRONG", "attributes": [{"start": 0, "length": 19, "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}, "type": "PROFILE_FULLNAME"}], "text": "Jean-Marc Jancovici"}, "subDescription": {"textDirection": "USER_LOCALE", "attributes": [{"start": 5, "length": 1, "artDecoIcon": "IC_GLOBE_16DP", "type": "ART_DECO_ICON"}], "text": "3d \u2022 ", "accessibilityText": "3 days ago"}, "navigationContext": {"trackingActionType": "viewMember", "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug"}, "description": {"textDirection": "USER_LOCALE", "text": "Founding Partner, Carbone 4 - President, The Shift project"}}, "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,DEFAULT,false)", "updateMetadata": {"urn": "urn:li:activity:7030856557022072832", "actionsPosition": "ACTOR_COMPONENT", "updateActions": {"actions": [{"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM"}]}, "actionType": "SAVE", "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030856557022072832)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030856557022072832)"}, "text": "Save"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_LINK_MEDIUM"}]}, "actionType": "SHARE_VIA", "text": "Copy link to post", "url": "https://www.linkedin.com/posts/jean-marc-jancovici_biodiversit%C3%A9-ni-lampleur-ni-la-rapidit%C3%A9-activity-7030856557022072832-3dG6?utm_source=share&utm_medium=member_desktop"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_CLEAR_MEDIUM"}]}, "actionType": "UNFOLLOW_MEMBER", "text": "Unfollow Jean-Marc Jancovici", "followAction": {"followTrackingActionType": "followMember", "followingInfo": {"followingType": "FOLLOWING", "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "following": true, "trackingUrn": "urn:li:member:101316862"}, "unfollowTrackingActionType": "unfollowMember", "type": "UNFOLLOW_TOGGLE", "trackingActionType": "unfollowMember"}, "confirmationAction": {"title": {"text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "attributes": [], "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed"}, "undoable": true}}, {"actionType": "REPORT", "targetUrn": "urn:li:share:7030856556048973824", "contentSource": "UGC_POST", "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "authorUrn": "urn:li:member:101316862", "icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_REPORT_MEDIUM"}]}, "secondaryAction": {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM"}]}, "actionType": "HIDE_UPDATE", "targetUrn": "urn:li:activity:7030856557022072832", "text": "Hide this post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "text": "You'll no longer see this post in your feed."}, "undoable": true}}, "text": "Report post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Thank you for your report"}, "description": {"textDirection": "USER_LOCALE", "text": "We appreciate you letting us know"}, "undoable": false}}], "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,-,-)", "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)"}, "actionTriggerEnabled": false, "detailPageType": "FEED_DETAIL", "shareAudience": "PUBLIC", "shareUrn": "urn:li:share:7030856556048973824", "excludedFromSeen": false, "trackingData": {"requestId": "b25a7ec3-e28d-48c3-8992-6f2d239bb5ed", "trackingId": "MBEMkIiDbptVncbZcSpm4g=="}}, "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,DEFAULT,false)", "content": {"com.linkedin.voyager.feed.render.ArticleComponent": {"templateType": "DEFAULT", "urn": "urn:li:article:8887778663049763473", "swapTitleAndSubtitle": false, "largeImage": {"accessibilityTextAttributes": [], "attributes": [{"useCropping": false, "sourceType": "VECTOR", "vectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "800/0/1676616168242?e=1677236400&v=beta&t=M5c7_SKmE3WI-UIkNpowBXigFwmi3JgGiMz3OfTZ6vs", "expiresAt": 1677236400000, "height": 533}, {"width": 1200, "fileIdentifyingUrlPathSegment": "1280_800/0/1676616168242?e=1677236400&v=beta&t=dwvmdq9cKpXVvrSS6OHXQxUxSkwM_JYIdm_bNKp0snk", "expiresAt": 1677236400000, "height": 800}, {"width": 160, "fileIdentifyingUrlPathSegment": "160/0/1676616168242?e=1677236400&v=beta&t=JKMSbeexHu05eoRaNIjLQJ-jDSeVj-ZJ351NE4M0c_A", "expiresAt": 1677236400000, "height": 107}, {"width": 480, "fileIdentifyingUrlPathSegment": "480/0/1676616168242?e=1677236400&v=beta&t=XRhOjr3lhuSs2r6R5IzlUwreks2x75MKvosJC6eMuxk", "expiresAt": 1677236400000, "height": 320}], "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQEX5Bg_2Ik79Q/articleshare-shrink_"}, "displayAspectRatio": 0.66625}]}, "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8887778663049763473)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8887778663049763473)"}, "subtitle": {"textDirection": "USER_LOCALE", "text": "lemonde.fr \u2022 2 min read"}, "navigationContext": {"trackingActionType": "viewLink", "accessibilityText": "Open article: Biodiversit\u00e9 : \u00ab Ni l\u2019ampleur, ni la rapidit\u00e9, ni le caract\u00e8re syst\u00e9mique de l\u2019\u00e9croulement des insectes n\u2019ont \u00e9t\u00e9 anticip\u00e9s par les scientifiques \u00bb by lemonde.fr", "actionTarget": "https://www.lemonde.fr/idees/article/2023/02/12/biodiversite-ni-l-ampleur-ni-la-rapidite-ni-le-caractere-systemique-de-l-ecroulement-des-insectes-n-ont-ete-anticipes-par-les-scientifiques_6161496_3232.html"}, "showSmallTitle": false, "type": "EXTERNAL_FULL", "title": {"textDirection": "FIRST_STRONG", "text": "Biodiversit\u00e9\u00a0: \u00ab\u00a0Ni l\u2019ampleur, ni la rapidit\u00e9, ni le caract\u00e8re syst\u00e9mique de l\u2019\u00e9croulement des insectes n\u2019ont \u00e9t\u00e9 anticip\u00e9s par les scientifiques\u00a0\u00bb"}}}, "commentary": {"templateType": "DEFAULT", "translationUrn": "urn:li:fs_translation:(urn:li:share:7030856556048973824,fr)", "numLines": 3, "text": {"textDirection": "FIRST_STRONG", "attributes": [{"start": 512, "length": 16, "miniProfile": {"firstName": "Stephane", "lastName": "Foucart", "dashEntityUrn": "urn:li:fsd_profile:ACoAAABv2IoBn0BOirWMxsoYYR5uscV_zSBgOsQ", "occupation": "Science correspondent at Le Monde", "objectUrn": "urn:li:member:7329930", "entityUrn": "urn:li:fs_miniProfile:ACoAAABv2IoBn0BOirWMxsoYYR5uscV_zSBgOsQ", "publicIdentifier": "stephane-foucart-a365552", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1671650011916?e=1681948800&v=beta&t=sfTLd37tuMTn6GnoUXgIh3p8Kd1Q8nGH6Jb0NOsYVik", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1671650011916?e=1681948800&v=beta&t=294ugk_qvRG2tyRBFSIp_x6b10jnkKoB_E77n3IvYjU", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1671650011916?e=1681948800&v=beta&t=6mVeDPnhS5EiphvG29TceeHVP10ornsRqKhxz_rOQNI", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1671650011916?e=1681948800&v=beta&t=dwsqw7IVhyIFy4qgvPS_VaLwq93SG6umZhm1YhiVNBc", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/D4E03AQGHs1C_06t5hA/profile-displayphoto-shrink_"}}, "trackingId": "SrKgJU33QRiBhCmfP0J2BQ=="}, "type": "PROFILE_MENTION"}], "text": "Ils p\u00e8seraient environ 1 milliard de tonnes, soit autant que la masse combin\u00e9e des humains et de leurs animaux d'\u00e9levage. Qui ? Les arthropodes terrestres, que nous appelons plus commun\u00e9ment les insectes : https://bit.ly/3XpnsYk (car les araign\u00e9es et les mille-pattes ne sont pas des insectes, ces derniers ayant 6 pattes).\n\nPourtant, leurs effectifs sont en baisse rapide. Ils le sont chez nous, mais aussi \"ailleurs\", comme par exemple en Asie : https://bit.ly/3Xto9j4\n\nDans cette tribune parue dans Le Monde, Stephane Foucart, journaliste sciences, rappelle une fois de plus cet effondrement en cours, tout en soulignant que, \u00e0 la diff\u00e9rence du climat, nous n'avons pas de \"ph\u00e9nom\u00e8ne extr\u00eame\" qui survienne de temps \u00e0 autres pour nous r\u00e9veiller un peu (ce qui, m\u00eame pour le climat, est h\u00e9las peu impactant, puisqu'aucun ouragan ou aucune s\u00e9cheresse n'a pour le moment conduit \u00e0 une baisse des \u00e9missions mondiales).\n\nLa cause de cette baisse est connue : ce sont les substances que nous introduisons dans l'environnement pr\u00e9cis\u00e9ment pour supprimer ces bestioles rampantes ou volantes. Depuis les d\u00e9buts de l'agriculture, notre esp\u00e8ce fait tout ce qu'elle a pu pour partager le moins possible le r\u00e9sultat de cette activit\u00e9 avec d'autres esp\u00e8ces.\n\nNous ne souhaitons pas que le champ pr\u00e9vu pour accueillir du bl\u00e9 ou des poireaux accueille aussi des \"mauvaises herbes\", qui captent une partie des nutriments et du soleil : c'est la raison de l'usage des herbicides, qui sont les premiers pesticides utilis\u00e9s en tonnage en France. \n\nNous ne souhaitons pas que les \u00e9pis de ma\u00efs ou les cerises soient partag\u00e9s avec des papillons ou des mouches : c'est la raison de l'usage des insecticides qui permettent d'avoir le produit des cultures \"rien que pour nous\". \n\nLa cons\u00e9quence n'est pas une surprise : les effectifs de ces insectes diminuent. La solution semble donc \u00e9vidente, et sa contrepartie aussi : pour pr\u00e9server les insectes, il faut utiliser moins d'insecticides... et accepter alors de laisser une petite partie de ce que nous cultivons \u00e0 ces animaux, qui serviront eux-m\u00eames de nourriture aux oiseaux et \u00e0 d'autres esp\u00e8ces animales. \n\nCela fera fatalement baisser les rendements agricoles, et donc monter le prix de la nourriture. La bonne question est de savoir si nous \u00e9chapperons de toute fa\u00e7on \u00e0 une hausse de prix pour ce que nous mangeons. Car, sans insectes pollinisateurs, il y aura des baisses de rendement pour un certain nombre de productions, et sans insectes tout court probablement des \"surprises\" pour certains services \u00e9cosyst\u00e9miques dont nous b\u00e9n\u00e9ficions aujourd'hui.\n\nIl est \u00e0 craindre que, pour la biodiversit\u00e9 plus encore que pour le climat, il n'y ait pas d'action \u00e0 large \u00e9chelle tant que nous ne serons pas \"atteints dans notre chair\", avec au surplus la capacit\u00e9 \u00e0 faire le lien entre ce qui nous arrive et la v\u00e9ritable cause. Pour la biodiversit\u00e9 comme pour le climat, un de nos adversaires les plus redoutables est le sentiment que nous avons encore bien le temps."}, "originalLanguage": "French", "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030856556048973824,fr)"}, "socialDetail": {"dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030856557022072832,urn:li:activity:7030856557022072832,urn:li:highlightedReply:-)", "comments": {"paging": {"start": 0, "count": 0, "total": 119, "links": []}, "elements": []}, "socialPermissions": {"dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030856557022072832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", "canPostComments": true, "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030856557022072832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", "messagePermission": "PUBLIC", "canShare": true, "canReact": true}, "showPremiumAnalytics": false, "hideFirstPrompt": true, "liked": false, "showShareButton": true, "totalShares": 0, "urn": "urn:li:activity:7030856557022072832", "threadId": "activity:7030856557022072832", "allowedCommentersScope": "ALL", "totalSocialActivityCounts": {"socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030856557022072832", "urn": "urn:li:activity:7030856557022072832", "numComments": 264, "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030856557022072832", "reactionTypeCounts": [{"count": 3742, "reactionType": "LIKE"}, {"count": 606, "reactionType": "INTEREST"}, {"count": 334, "reactionType": "APPRECIATION"}, {"count": 68, "reactionType": "PRAISE"}, {"count": 32, "reactionType": "EMPATHY"}, {"count": 10, "reactionType": "MAYBE"}], "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030856557022072832", "numLikes": 4792, "liked": false}, "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030856557022072832", "commentingDisabled": false, "likes": {"paging": {"start": 0, "count": 0, "total": 4793, "links": []}, "elements": []}}}, {"actor": {"urn": "urn:li:member:101316862", "image": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "PROFILE_PICTURE", "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}}]}, "supplementaryActorInfo": {"textDirection": "USER_LOCALE", "text": " \u2022 Following"}, "name": {"textDirection": "FIRST_STRONG", "attributes": [{"start": 0, "length": 19, "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}, "type": "PROFILE_FULLNAME"}], "text": "Jean-Marc Jancovici"}, "subDescription": {"textDirection": "USER_LOCALE", "attributes": [{"start": 5, "length": 1, "artDecoIcon": "IC_GLOBE_16DP", "type": "ART_DECO_ICON"}], "text": "4d \u2022 ", "accessibilityText": "4 days ago"}, "navigationContext": {"trackingActionType": "viewMember", "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug"}, "description": {"textDirection": "USER_LOCALE", "text": "Founding Partner, Carbone 4 - President, The Shift project"}}, "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,DEFAULT,false)", "updateMetadata": {"urn": "urn:li:activity:7030653289532661760", "actionsPosition": "ACTOR_COMPONENT", "updateActions": {"actions": [{"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM"}]}, "actionType": "SAVE", "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030653289532661760)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030653289532661760)"}, "text": "Save"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_LINK_MEDIUM"}]}, "actionType": "SHARE_VIA", "text": "Copy link to post", "url": "https://www.linkedin.com/posts/jean-marc-jancovici_souverainet%C3%A9-et-ind%C3%A9pendance-%C3%A9nerg%C3%A9tique-activity-7030653289532661760-omeJ?utm_source=share&utm_medium=member_desktop"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_CLEAR_MEDIUM"}]}, "actionType": "UNFOLLOW_MEMBER", "text": "Unfollow Jean-Marc Jancovici", "followAction": {"followTrackingActionType": "followMember", "followingInfo": {"followingType": "FOLLOWING", "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "following": true, "trackingUrn": "urn:li:member:101316862"}, "unfollowTrackingActionType": "unfollowMember", "type": "UNFOLLOW_TOGGLE", "trackingActionType": "unfollowMember"}, "confirmationAction": {"title": {"text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "attributes": [], "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed"}, "undoable": true}}, {"actionType": "REPORT", "targetUrn": "urn:li:share:7030653288962252800", "contentSource": "UGC_POST", "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "authorUrn": "urn:li:member:101316862", "icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_REPORT_MEDIUM"}]}, "secondaryAction": {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM"}]}, "actionType": "HIDE_UPDATE", "targetUrn": "urn:li:activity:7030653289532661760", "text": "Hide this post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "text": "You'll no longer see this post in your feed."}, "undoable": true}}, "text": "Report post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Thank you for your report"}, "description": {"textDirection": "USER_LOCALE", "text": "We appreciate you letting us know"}, "undoable": false}}], "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,-,-)", "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)"}, "actionTriggerEnabled": false, "detailPageType": "FEED_DETAIL", "shareAudience": "PUBLIC", "shareUrn": "urn:li:share:7030653288962252800", "excludedFromSeen": false, "trackingData": {"requestId": "b25a7ec3-e28d-48c3-8992-6f2d239bb5ed", "trackingId": "GkWPRFTKGnMRRn1Ts9U7EQ=="}}, "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,DEFAULT,false)", "content": {"com.linkedin.voyager.feed.render.ExternalVideoComponent": {"urn": "urn:li:article:6974363340135969765", "swapTitleAndSubtitle": false, "thumbnail": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "VECTOR", "vectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "800/0/1676239082694?e=1677236400&v=beta&t=Nv_pEBsYghqVtgoHYaM8VTXnxqq7_52W2bxKkldGsZ0", "expiresAt": 1677236400000, "height": 449}, {"width": 914, "fileIdentifyingUrlPathSegment": "1280_800/0/1676239082694?e=1677236400&v=beta&t=xpDRLicXrbtOTCG8xcD9I81xL2fa5dnMaX1LF6ZAGUU", "expiresAt": 1677236400000, "height": 514}, {"width": 160, "fileIdentifyingUrlPathSegment": "160/0/1676239082694?e=1677236400&v=beta&t=RDj9WbVdoXlGN57ossSu9S-aPOFwx0gaU1PKtgXPcuc", "expiresAt": 1677236400000, "height": 89}, {"width": 480, "fileIdentifyingUrlPathSegment": "480/0/1676239082694?e=1677236400&v=beta&t=Rb6uLWfPP8A7-LVoZ1w2LCe5AsrerzdqKgbbNBe54d0", "expiresAt": 1677236400000, "height": 269}], "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQERtm7gKRZcgQ/articleshare-shrink_"}, "displayAspectRatio": 0.5612499999999999}]}, "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6974363340135969765)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6974363340135969765)"}, "subtitle": {"textDirection": "USER_LOCALE", "text": "videos.assemblee-nationale.fr"}, "navigationContext": {"trackingActionType": "viewLink", "accessibilityText": "Open video: Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et M. Olivier Gupta, Directeur g\u00e9n\u00e9ral - Mardi 24 janvier 2023 on videos.assemblee-nationale.fr", "actionTarget": "https://videos.assemblee-nationale.fr/video.12773673_63cff1a1b41bb.souverainete-et-independance-energetique-de-la-france--m-bernard-doroszczuk-president-de-l-autori-24-janvier-2023"}, "description": {"textDirection": "FIRST_STRONG", "text": "- \u00c0 16 heures : - Audition, ouverte \u00e0 la presse, de MM. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et Olivier Gupta, Directeur g\u00e9n\u00e9ral"}, "showSmallTitle": false, "title": {"textDirection": "USER_LOCALE", "text": "Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et M. Olivier Gupta, Directeur g\u00e9n\u00e9ral - Mardi 24 janvier 2023"}}}, "commentary": {"templateType": "DEFAULT", "translationUrn": "urn:li:fs_translation:(urn:li:share:7030653288962252800,fr)", "numLines": 3, "text": {"textDirection": "FIRST_STRONG", "text": "A quoi sert l'Autorit\u00e9 de S\u00fbret\u00e9 Nucl\u00e9aire ? Si vous vous \u00eates pos\u00e9 la question un jour, cette vid\u00e9o est faite pour vous. Il s'agit de l'audition du patron de l'ASN dans le cadre des auditions de la \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\".\n\nEn 3 heures de temps, sont pass\u00e9s en revue le mandat et le fonctionnement de cette instance, ses moyens, et l'articulation avec d'autres organismes impliqu\u00e9s dans la s\u00fbret\u00e9 nucl\u00e9aire (comme l'IRSN, qui vient par ailleurs de faire l'objet d'une annonce inattendue de rattachement partiel \u00e0 l'ASN apr\u00e8s cette audition : https://lnkd.in/eQV9WjJU).\n\nEn 3 heures, il y a \u00e9videmment du temps pour aborder des questions un peu techniques, dont les suivantes :\n\n- est-ce le changement de cadre r\u00e9glementaire en cours de route qui explique une partie du retard \u00e0 Flamanville ?\n\n- pourquoi en France les installations doivent \u00eatre conformes \u00e0 l'\u00e9tat de l'art alors qu'aux USA il leur suffit d'\u00eatre conformes \u00e0 leurs sp\u00e9cifications d'origine ?\n\n- l'ASN met-elle en balance la s\u00e9curit\u00e9 d'approvisionnement avec la s\u00fbret\u00e9 nucl\u00e9aire ?\n\n- le niveau de s\u00fbret\u00e9 des installations nucl\u00e9aires fran\u00e7aises s'est-il d\u00e9grad\u00e9 parce que le parc est plus \u00e2g\u00e9 ?\n\n- y a-t-il un risque \u00e0 prolonger les centrales au-del\u00e0 de 40 ans ?\n\n- y a-t-il un risque de pertes de comp\u00e9tences \u00e0 utiliser des sous-traitants dans le nucl\u00e9aire ?\n\n- le parc - actuel ou futur - int\u00e8gre-t-il des mesures d'adaptation au changement climatique ?\n\n- l'EPR est-il un r\u00e9acteur trop compliqu\u00e9 parce qu'il est franco-allemand ?\n\n- la fili\u00e8re est-elle suffisamment attractive pour disposer des comp\u00e9tences qui seront n\u00e9cessaires pour mener un chantier ambitieux de \"renouveau nucl\u00e9aire\" ?\n\n- le pr\u00e9sident de l'ASN voit-il sa responsabilit\u00e9 personnelle n\u00e9cessairement engag\u00e9e en cas d'accident nucl\u00e9aire en France ? (cette question d\u00e9coulait d'une affirmation de Corinne Lepage soutenant que c'\u00e9tait le cas)\n\nDans cette intervention le pr\u00e9sident de l'ASN fait part \u00e0 plusieurs reprises d'une crainte forte : celle d'\u00eatre mis dans la situation o\u00f9 il serait amen\u00e9 \u00e0 choisir entre plonger le pays dans le noir et laisser fonctionner une installation qu'il aurait arr\u00eat\u00e9e \"en temps normal\". Cette situation se pr\u00e9sentera, dit-il, si la politique \u00e9nerg\u00e9tique se base sur des paris incertains ou un d\u00e9faut d'anticipation qui am\u00e8neraient le pays \u00e0 se retrouver sans marges. A bon entendeur..."}, "originalLanguage": "French", "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030653288962252800,fr)"}, "socialDetail": {"dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030653289532661760,urn:li:activity:7030653289532661760,urn:li:highlightedReply:-)", "comments": {"paging": {"start": 0, "count": 0, "total": 21, "links": []}, "elements": []}, "socialPermissions": {"dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030653289532661760,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", "canPostComments": true, "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030653289532661760,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", "messagePermission": "PUBLIC", "canShare": true, "canReact": true}, "showPremiumAnalytics": false, "hideFirstPrompt": true, "liked": false, "showShareButton": true, "totalShares": 0, "urn": "urn:li:activity:7030653289532661760", "threadId": "activity:7030653289532661760", "allowedCommentersScope": "ALL", "totalSocialActivityCounts": {"socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030653289532661760", "urn": "urn:li:activity:7030653289532661760", "numComments": 43, "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030653289532661760", "reactionTypeCounts": [{"count": 544, "reactionType": "LIKE"}, {"count": 159, "reactionType": "INTEREST"}, {"count": 13, "reactionType": "PRAISE"}, {"count": 5, "reactionType": "MAYBE"}, {"count": 3, "reactionType": "EMPATHY"}, {"count": 3, "reactionType": "APPRECIATION"}], "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030653289532661760", "numLikes": 727, "liked": false}, "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030653289532661760", "commentingDisabled": false, "likes": {"paging": {"start": 0, "count": 0, "total": 727, "links": []}, "elements": []}}}, {"actor": {"urn": "urn:li:member:101316862", "image": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "PROFILE_PICTURE", "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}}]}, "supplementaryActorInfo": {"textDirection": "USER_LOCALE", "text": " \u2022 Following"}, "name": {"textDirection": "FIRST_STRONG", "attributes": [{"start": 0, "length": 19, "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}, "type": "PROFILE_FULLNAME"}], "text": "Jean-Marc Jancovici"}, "subDescription": {"textDirection": "USER_LOCALE", "attributes": [{"start": 5, "length": 1, "artDecoIcon": "IC_GLOBE_16DP", "type": "ART_DECO_ICON"}], "text": "5d \u2022 ", "accessibilityText": "5 days ago"}, "navigationContext": {"trackingActionType": "viewMember", "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug"}, "description": {"textDirection": "USER_LOCALE", "text": "Founding Partner, Carbone 4 - President, The Shift project"}}, "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,DEFAULT,false)", "updateMetadata": {"urn": "urn:li:activity:7030130262550147072", "actionsPosition": "ACTOR_COMPONENT", "updateActions": {"actions": [{"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM"}]}, "actionType": "SAVE", "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030130262550147072)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030130262550147072)"}, "text": "Save"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_LINK_MEDIUM"}]}, "actionType": "SHARE_VIA", "text": "Copy link to post", "url": "https://www.linkedin.com/posts/jean-marc-jancovici_des-chercheurs-sugg%C3%A8rent-de-cr%C3%A9er-un-%C3%A9cran-activity-7030130262550147072-8284?utm_source=share&utm_medium=member_desktop"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_CLEAR_MEDIUM"}]}, "actionType": "UNFOLLOW_MEMBER", "text": "Unfollow Jean-Marc Jancovici", "followAction": {"followTrackingActionType": "followMember", "followingInfo": {"followingType": "FOLLOWING", "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "following": true, "trackingUrn": "urn:li:member:101316862"}, "unfollowTrackingActionType": "unfollowMember", "type": "UNFOLLOW_TOGGLE", "trackingActionType": "unfollowMember"}, "confirmationAction": {"title": {"text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "attributes": [], "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed"}, "undoable": true}}, {"actionType": "REPORT", "targetUrn": "urn:li:share:7030130261799366656", "contentSource": "UGC_POST", "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "authorUrn": "urn:li:member:101316862", "icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_REPORT_MEDIUM"}]}, "secondaryAction": {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM"}]}, "actionType": "HIDE_UPDATE", "targetUrn": "urn:li:activity:7030130262550147072", "text": "Hide this post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "text": "You'll no longer see this post in your feed."}, "undoable": true}}, "text": "Report post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Thank you for your report"}, "description": {"textDirection": "USER_LOCALE", "text": "We appreciate you letting us know"}, "undoable": false}}], "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,-,-)", "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)"}, "actionTriggerEnabled": false, "detailPageType": "FEED_DETAIL", "shareAudience": "PUBLIC", "shareUrn": "urn:li:share:7030130261799366656", "excludedFromSeen": false, "trackingData": {"requestId": "b25a7ec3-e28d-48c3-8992-6f2d239bb5ed", "trackingId": "c8A4sNtlJuzYbLkuHGEXug=="}}, "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,DEFAULT,false)", "content": {"com.linkedin.voyager.feed.render.ArticleComponent": {"templateType": "DEFAULT", "urn": "urn:li:article:7133322728601584016", "swapTitleAndSubtitle": false, "largeImage": {"accessibilityTextAttributes": [], "attributes": [{"useCropping": false, "sourceType": "VECTOR", "vectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "800/0/1676121323841?e=1677236400&v=beta&t=RRPeTPjKxTpK4J7TXyF5mvdKVQrs69eH0_lIH7XWrqU", "expiresAt": 1677236400000, "height": 420}, {"width": 1200, "fileIdentifyingUrlPathSegment": "1280_800/0/1676121323841?e=1677236400&v=beta&t=64q6aiZVpUnMJ2hWjQiFgeDl-nPbrQhsQkDfVFbIEu8", "expiresAt": 1677236400000, "height": 630}, {"width": 160, "fileIdentifyingUrlPathSegment": "160/0/1676121323842?e=1677236400&v=beta&t=xKGtQbtdvDuK0OXohO9gv4_O4lZyhSAVW9kFN4sy3WM", "expiresAt": 1677236400000, "height": 84}, {"width": 480, "fileIdentifyingUrlPathSegment": "480/0/1676121323842?e=1677236400&v=beta&t=e7ZhgEvD1pXimEG2wW4tj5He_YuGEM3MMxrSLUZ5pkk", "expiresAt": 1677236400000, "height": 252}], "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQH6bX0STNeXig/articleshare-shrink_"}, "displayAspectRatio": 0.525}]}, "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7133322728601584016)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7133322728601584016)"}, "subtitle": {"textDirection": "USER_LOCALE", "text": "msn.com \u2022 3 min read"}, "navigationContext": {"trackingActionType": "viewLink", "accessibilityText": "Open article: Des chercheurs sugg\u00e8rent de cr\u00e9er un \u00e9cran de poussi\u00e8re lunaire entre la Terre et le soleil pour att\u00e9nuer le changement climatique by msn.com", "actionTarget": "https://www.msn.com/fr-fr/actualite/technologie-et-sciences/des-chercheurs-sugg%C3%A8rent-de-cr%C3%A9er-un-%C3%A9cran-de-poussi%C3%A8re-lunaire-entre-la-terre-et-le-soleil-pour-att%C3%A9nuer-le-changement-climatique/ar-AA17iku5"}, "showSmallTitle": false, "type": "EXTERNAL_FULL", "title": {"textDirection": "FIRST_STRONG", "text": "Des chercheurs sugg\u00e8rent de cr\u00e9er un \u00e9cran de poussi\u00e8re lunaire entre la Terre et le soleil pour att\u00e9nuer le changement climatique"}}}, "commentary": {"templateType": "DEFAULT", "translationUrn": "urn:li:fs_translation:(urn:li:share:7030130261799366656,fr)", "numLines": 3, "text": {"textDirection": "FIRST_STRONG", "text": "En route pour la g\u00e9oing\u00e9nierie ! Si nous avons un exc\u00e8s d'effet de serre (= un exc\u00e8s de rayonnement infrarouge en provenance de l'atmosph\u00e8re), il suffit de diminuer un peu le rayonnement solaire re\u00e7u par la plan\u00e8te, et l'ensemble nous remet \u00e0 la bonne temp\u00e9rature. C'est b\u00eate comme chou non ?\n\nUne id\u00e9e pour y parvenir consiste \u00e0 placer entre la terre et le soleil un objet suffisamment vaste, et l\u00e9g\u00e8rement opaque, qui va intercepter une partie du rayonnement solaire et ainsi contribuer \u00e0 \"refroidir la terre\".\n\nLa m\u00e9canique c\u00e9leste nous indique en effet que, sur la ligne qui joint la terre au soleil, il existe un point - appel\u00e9 point de Lagrange - o\u00f9 l'attraction de la terre et celle du soleil dont de m\u00eame intensit\u00e9. Si l'on peut y placer un objet, ce dernier y reste (il est \"tir\u00e9 de chaque c\u00f4t\u00e9\" avec une force \u00e9gale), et se met alors \u00e0 orbiter autour du soleil \u00e0 la m\u00eame vitesse que la terre. \n\nIl y a donc p\u00e9riodiquement l'id\u00e9e de placer \u00e0 cet endroit de quoi rafra\u00eechir notre plan\u00e8te : de grands miroirs, ou, r\u00e9cemment, un nuage de poussi\u00e8re r\u00e9fl\u00e9chissante (https://bit.ly/3RYkybW ). A partir du pouvoir r\u00e9flexif des particules de poussi\u00e8re et de leur densit\u00e9, les chercheurs ont calcul\u00e9 qu'avec 10 millions de tonnes de poussi\u00e8re on pourrait diminuer la puissance solaire d'un peu moins de 2%. \n\nLa puissance solaire re\u00e7ue au niveau du sol \u00e9tant de 170 watts par m2 en moyenne (sur toute a surface et toute l'ann\u00e9e), 2% en moins ca fait 3 watts par m2, soit \u00e0 peu pr\u00e8s le for\u00e7age actuellement du au suppl\u00e9ment humain d'effet de serre. CQFD.\n\nSauf que... 10 Mt repr\u00e9senterait 700 fois la masse combin\u00e9e de tout ce que les humains ont envoy\u00e9 dans l'espace depuis le d\u00e9but des fus\u00e9es. Si ca fait trop depuis la Terre, partons de la Lune ! Car en plus sur notre satellite il y a de la poussi\u00e8re \u00e0 volont\u00e9... Il n'y a qu'\u00e0 y construire une base permanente, et y d\u00e9velopper une industrie permettant de fabriquer fus\u00e9es et carburant \u00e0 partir de mat\u00e9riaux locaux et de rayonnement solaire (pour \u00e9viter d'amener sur la lune le poids des fus\u00e9es+carburants depuis la terre, ce qui \"ram\u00e8nerait au probl\u00e8me pr\u00e9c\u00e9dent\"). Une formalit\u00e9 :)\n\nPar ailleurs en arrivant au point de Lagrange les grains de poussi\u00e8re ont une \u00e9nergie cin\u00e9tique (la \"vitesse\" qui leur a permis de se d\u00e9placer depuis le point de lancement) et pas de p\u00e9dale de frein : ils ne peuvent \u00eatre \"arr\u00eat\u00e9s\" au bon endroit. Pire : si la position initiale d'un grain de poussi\u00e8re \"arr\u00eat\u00e9\" est \u00e9loign\u00e9e d'un km du point de Lagrange, au bout d'un an il se sera \u00e9loign\u00e9 \u00e0 plus de 1000 km du point en question (c'est un \u00e9quilibre metastable). Il faudrait donc r\u00e9alimenter ce nuage en permanence.\n\nQu'en d\u00e9duire ? Que la conclusion \u00e9vidente \u00e0 tirer de ce papier est que cette solution ne sera jamais \u00e0 l'\u00e9chelle. C'est pourtant l'inverse que laissent penser quelques titres \u00e0 sensation relev\u00e9s ici ou l\u00e0. Avis aux journalistes qui ont relay\u00e9 ou veulent le faire : commencez par lire les petites lignes, comme avec les contrats d'assurance..."}, "originalLanguage": "French", "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030130261799366656,fr)"}, "socialDetail": {"dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030130262550147072,urn:li:activity:7030130262550147072,urn:li:highlightedReply:-)", "comments": {"paging": {"start": 0, "count": 0, "total": 207, "links": []}, "elements": []}, "socialPermissions": {"dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030130262550147072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", "canPostComments": true, "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030130262550147072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", "messagePermission": "PUBLIC", "canShare": true, "canReact": true}, "showPremiumAnalytics": false, "hideFirstPrompt": true, "liked": false, "showShareButton": true, "totalShares": 0, "urn": "urn:li:activity:7030130262550147072", "threadId": "activity:7030130262550147072", "allowedCommentersScope": "ALL", "totalSocialActivityCounts": {"socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030130262550147072", "urn": "urn:li:activity:7030130262550147072", "numComments": 440, "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030130262550147072", "reactionTypeCounts": [{"count": 1861, "reactionType": "LIKE"}, {"count": 414, "reactionType": "INTEREST"}, {"count": 49, "reactionType": "PRAISE"}, {"count": 17, "reactionType": "EMPATHY"}, {"count": 14, "reactionType": "APPRECIATION"}, {"count": 6, "reactionType": "MAYBE"}], "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030130262550147072", "numLikes": 2361, "liked": false}, "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030130262550147072", "commentingDisabled": false, "likes": {"paging": {"start": 0, "count": 0, "total": 2557, "links": []}, "elements": []}}}, {"actor": {"urn": "urn:li:member:101316862", "image": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "PROFILE_PICTURE", "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}}]}, "supplementaryActorInfo": {"textDirection": "USER_LOCALE", "text": " \u2022 Following"}, "name": {"textDirection": "FIRST_STRONG", "attributes": [{"start": 0, "length": 19, "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}, "type": "PROFILE_FULLNAME"}], "text": "Jean-Marc Jancovici"}, "subDescription": {"textDirection": "USER_LOCALE", "attributes": [{"start": 14, "length": 1, "artDecoIcon": "IC_GLOBE_16DP", "type": "ART_DECO_ICON"}], "text": "6d \u2022 Edited \u2022 ", "accessibilityText": "6 days ago"}, "navigationContext": {"trackingActionType": "viewMember", "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug"}, "description": {"textDirection": "USER_LOCALE", "text": "Founding Partner, Carbone 4 - President, The Shift project"}}, "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,DEFAULT,false)", "updateMetadata": {"urn": "urn:li:activity:7029872348539314176", "actionsPosition": "ACTOR_COMPONENT", "updateActions": {"actions": [{"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM"}]}, "actionType": "SAVE", "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029872348539314176)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029872348539314176)"}, "text": "Save"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_LINK_MEDIUM"}]}, "actionType": "SHARE_VIA", "text": "Copy link to post", "url": "https://www.linkedin.com/posts/jean-marc-jancovici_agriculture-et-climat-lurgence-de-sadapter-activity-7029872348539314176-51Dz?utm_source=share&utm_medium=member_desktop"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_CLEAR_MEDIUM"}]}, "actionType": "UNFOLLOW_MEMBER", "text": "Unfollow Jean-Marc Jancovici", "followAction": {"followTrackingActionType": "followMember", "followingInfo": {"followingType": "FOLLOWING", "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "following": true, "trackingUrn": "urn:li:member:101316862"}, "unfollowTrackingActionType": "unfollowMember", "type": "UNFOLLOW_TOGGLE", "trackingActionType": "unfollowMember"}, "confirmationAction": {"title": {"text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "attributes": [], "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed"}, "undoable": true}}, {"actionType": "REPORT", "targetUrn": "urn:li:share:7029872347792691200", "contentSource": "UGC_POST", "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "authorUrn": "urn:li:member:101316862", "icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_REPORT_MEDIUM"}]}, "secondaryAction": {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM"}]}, "actionType": "HIDE_UPDATE", "targetUrn": "urn:li:activity:7029872348539314176", "text": "Hide this post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "text": "You'll no longer see this post in your feed."}, "undoable": true}}, "text": "Report post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Thank you for your report"}, "description": {"textDirection": "USER_LOCALE", "text": "We appreciate you letting us know"}, "undoable": false}}], "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,-,-)", "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)"}, "actionTriggerEnabled": false, "detailPageType": "FEED_DETAIL", "shareAudience": "PUBLIC", "shareUrn": "urn:li:share:7029872347792691200", "excludedFromSeen": false, "trackingData": {"requestId": "b25a7ec3-e28d-48c3-8992-6f2d239bb5ed", "trackingId": "IH/ytJJljL10GQzpV+vnCQ=="}}, "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,DEFAULT,false)", "content": {"com.linkedin.voyager.feed.render.ArticleComponent": {"templateType": "DEFAULT", "urn": "urn:li:article:7517892329526013595", "swapTitleAndSubtitle": false, "largeImage": {"accessibilityTextAttributes": [], "attributes": [{"useCropping": false, "sourceType": "VECTOR", "vectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "800/0/1676144116328?e=1677236400&v=beta&t=dFfX94BeEwxiZX7cfDW1eD5vOX8d1GQHZHaWp7yLpjw", "expiresAt": 1677236400000, "height": 533}, {"width": 1200, "fileIdentifyingUrlPathSegment": "1280_800/0/1676144116328?e=1677236400&v=beta&t=9X6u3wGDG_6l6b4f4yFm3DIuTIeEzjAE4tsGlGfkBkQ", "expiresAt": 1677236400000, "height": 800}, {"width": 160, "fileIdentifyingUrlPathSegment": "160/0/1676144116328?e=1677236400&v=beta&t=EKk7EbZwL1AoVS9EV7pF4FzDxTM4GoxXh7cqVoWVQP4", "expiresAt": 1677236400000, "height": 106}, {"width": 480, "fileIdentifyingUrlPathSegment": "480/0/1676144116328?e=1677236400&v=beta&t=Bw0mPbBkXwOTz6fd49syYp295mxcYRzyXyaM8xReiik", "expiresAt": 1677236400000, "height": 320}], "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFDOjF-xY0lYQ/articleshare-shrink_"}, "displayAspectRatio": 0.66625}]}, "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7517892329526013595)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7517892329526013595)"}, "subtitle": {"textDirection": "USER_LOCALE", "text": "carbone4.com \u2022 1 min read"}, "navigationContext": {"trackingActionType": "viewLink", "accessibilityText": "Open article: Agriculture et climat : l\u2019urgence de s\u2019adapter ! | Carbone 4 by carbone4.com", "actionTarget": "https://www.carbone4.com/publication-agriculture-climat-adaptation"}, "showSmallTitle": false, "type": "EXTERNAL_FULL", "title": {"textDirection": "FIRST_STRONG", "text": "Agriculture et climat : l\u2019urgence de s\u2019adapter ! | Carbone 4"}}}, "commentary": {"templateType": "DEFAULT", "translationUrn": "urn:li:fs_translation:(urn:li:share:7029872347792691200,fr)", "numLines": 3, "text": {"textDirection": "FIRST_STRONG", "text": "2022 ne restera pas dans les m\u00e9moires des agriculteurs comme une ann\u00e9e tr\u00e8s sympathique. Au mieux les cultures n'ont pas souffert par rapport \u00e0 2021, et au pire elles ont connu une baisse de rendement, de l'ordre de 15% pour le ma\u00efs ou le soja.\n\nMais c'est surtout sur l'herbe, qui fait l'objet de peu de syst\u00e8mes irrigu\u00e9s, que la chute a \u00e9t\u00e9 la plus forte : il y a eu un d\u00e9ficit de production des p\u00e2turages d'un tiers par rapport \u00e0 la moyenne 1989 - 2018, ce qui a fortement baiss\u00e9 une partie de la production de fromage AOP (par exemple pas de Salers cet \u00e9t\u00e9).\n\nCet article de Carbone 4 vous propose un petit tour d'horizon de l'ann\u00e9e \u00e9coul\u00e9e, compl\u00e9t\u00e9e par une analyse prospective sur 4 d\u00e9partements du Sud-Ouest (Aveyron, Tarn, Tarn-et-Garonne et Lot).\n\nA cause de l'inertie de la d\u00e9rive climatique (qui s'amplifie tant que les \u00e9missions mondiales nettes ne sont pas nulles), les situations adverses vont se multiplier, et il est plus que temps de r\u00e9fl\u00e9chir \u00e0 ce que nous allons faire en face, surtout qu'\u00e0 l'horizon de quelques d\u00e9cennies il va aussi y avoir un sujet sur la disponibilit\u00e9 de l'\u00e9nergie fossile, qui est partout dans les cultures : pour fabriquer les engrais azot\u00e9s, pour les amener dans les champs, pour faire avancer les tracteurs, pour faire avancer les camions \u00e0 l'aval du champ, pour faire tourner le secteur agroalimentaire.... \n\nL'agriculture est par ailleurs un syst\u00e8me humainement inerte : les actifs y aiment les traditions (ce qui est une mani\u00e8re de dire qu'ils n'aiment pas le changement !), la rotation du capital y est lente, et enfin y faire venir du monde ne se fait pas en un claquement de doigts.\n\nPour minimiser les d\u00e9g\u00e2ts, le ma\u00eetre mot, l\u00e0 comme ailleurs, est donc l'anticipation. Mais comment anticiper alors que nous avons b\u00e2ti un syst\u00e8me \u00e9conomique et r\u00e9glementaire dont la premi\u00e8re priorit\u00e9 est de tirer les prix vers le bas - ce qui prive le secteur de moyens d'investissement - sur la base de la comp\u00e9tition - qui raccourcit les horizons de temps - et pas du tout d'assurer la p\u00e9rennit\u00e9 physique d'un syst\u00e8me r\u00e9silient ?\n\nLe secteur agricole n'est ni assez riche ni assez libre de ses mouvements pour d\u00e9cider en toute autonomie de moyens de \"faire ce qu'il faut\" pour rendre son activit\u00e9 la plus r\u00e9siliente possible, tout en abaissant la pression environnementale (\u00e9missions de gaz \u00e0 effet de serre, phytosanitaires) dont il est \u00e0 l'origine. Rappelons qu'il ne b\u00e9n\u00e9ficie aujourd'hui que de 2% des revenus \u00e9conomiques du pays, ce qui est peu pour un secteur dont 100% des autres activit\u00e9s d\u00e9pendent. \n\nSi nous voulons une agriculture \u00e0 la fois plus r\u00e9siliente face \u00e0 l'amplification de la d\u00e9rive climatique \u00e0 venir et moins perturbatrice ce l'environnement, il y a un \u00e9l\u00e9ment que nous allons difficilement pouvoir \u00e9viter : d\u00e9cider de payer la nourriture plus cher. Sinon c'est ce qui finira par arriver de toute fa\u00e7on, mais de mani\u00e8re moins bien organis\u00e9e !"}, "originalLanguage": "French", "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029872347792691200,fr)"}, "socialDetail": {"dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029872348539314176,urn:li:activity:7029872348539314176,urn:li:highlightedReply:-)", "comments": {"paging": {"start": 0, "count": 0, "total": 54, "links": []}, "elements": []}, "socialPermissions": {"dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029872348539314176,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", "canPostComments": true, "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029872348539314176,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", "messagePermission": "PUBLIC", "canShare": true, "canReact": true}, "showPremiumAnalytics": false, "hideFirstPrompt": true, "liked": false, "showShareButton": true, "totalShares": 0, "urn": "urn:li:activity:7029872348539314176", "threadId": "activity:7029872348539314176", "allowedCommentersScope": "ALL", "totalSocialActivityCounts": {"socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029872348539314176", "urn": "urn:li:activity:7029872348539314176", "numComments": 102, "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029872348539314176", "reactionTypeCounts": [{"count": 1063, "reactionType": "LIKE"}, {"count": 158, "reactionType": "INTEREST"}, {"count": 37, "reactionType": "PRAISE"}, {"count": 17, "reactionType": "APPRECIATION"}, {"count": 4, "reactionType": "MAYBE"}, {"count": 4, "reactionType": "EMPATHY"}], "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029872348539314176", "numLikes": 1283, "liked": false}, "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029872348539314176", "commentingDisabled": false, "likes": {"paging": {"start": 0, "count": 0, "total": 1283, "links": []}, "elements": []}}}, {"actor": {"urn": "urn:li:member:101316862", "image": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "PROFILE_PICTURE", "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}}]}, "supplementaryActorInfo": {"textDirection": "USER_LOCALE", "text": " \u2022 Following"}, "name": {"textDirection": "FIRST_STRONG", "attributes": [{"start": 0, "length": 19, "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}, "type": "PROFILE_FULLNAME"}], "text": "Jean-Marc Jancovici"}, "subDescription": {"textDirection": "USER_LOCALE", "attributes": [{"start": 5, "length": 1, "artDecoIcon": "IC_GLOBE_16DP", "type": "ART_DECO_ICON"}], "text": "1w \u2022 ", "accessibilityText": "1 week ago"}, "navigationContext": {"trackingActionType": "viewMember", "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug"}, "description": {"textDirection": "USER_LOCALE", "text": "Founding Partner, Carbone 4 - President, The Shift project"}}, "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,DEFAULT,false)", "updateMetadata": {"urn": "urn:li:activity:7029567522739773440", "actionsPosition": "ACTOR_COMPONENT", "updateActions": {"actions": [{"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM"}]}, "actionType": "SAVE", "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029567522739773440)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029567522739773440)"}, "text": "Save"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_LINK_MEDIUM"}]}, "actionType": "SHARE_VIA", "text": "Copy link to post", "url": "https://www.linkedin.com/posts/jean-marc-jancovici_abandoned-farm-fields-take-decades-to-recover-activity-7029567522739773440-WGjz?utm_source=share&utm_medium=member_desktop"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_CLEAR_MEDIUM"}]}, "actionType": "UNFOLLOW_MEMBER", "text": "Unfollow Jean-Marc Jancovici", "followAction": {"followTrackingActionType": "followMember", "followingInfo": {"followingType": "FOLLOWING", "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "following": true, "trackingUrn": "urn:li:member:101316862"}, "unfollowTrackingActionType": "unfollowMember", "type": "UNFOLLOW_TOGGLE", "trackingActionType": "unfollowMember"}, "confirmationAction": {"title": {"text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "attributes": [], "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed"}, "undoable": true}}, {"actionType": "REPORT", "targetUrn": "urn:li:share:7029567522039308288", "contentSource": "UGC_POST", "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "authorUrn": "urn:li:member:101316862", "icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_REPORT_MEDIUM"}]}, "secondaryAction": {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM"}]}, "actionType": "HIDE_UPDATE", "targetUrn": "urn:li:activity:7029567522739773440", "text": "Hide this post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "text": "You'll no longer see this post in your feed."}, "undoable": true}}, "text": "Report post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Thank you for your report"}, "description": {"textDirection": "USER_LOCALE", "text": "We appreciate you letting us know"}, "undoable": false}}], "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,-,-)", "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)"}, "actionTriggerEnabled": false, "detailPageType": "FEED_DETAIL", "shareAudience": "PUBLIC", "shareUrn": "urn:li:share:7029567522039308288", "excludedFromSeen": false, "trackingData": {"requestId": "b25a7ec3-e28d-48c3-8992-6f2d239bb5ed", "trackingId": "73QPdX6/tW9wwXM/BF2CTw=="}}, "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,DEFAULT,false)", "content": {"com.linkedin.voyager.feed.render.ArticleComponent": {"templateType": "DEFAULT", "urn": "urn:li:article:7867305761321344434", "swapTitleAndSubtitle": false, "largeImage": {"accessibilityTextAttributes": [], "attributes": [{"useCropping": false, "sourceType": "VECTOR", "vectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "800/0/1676524860543?e=1677236400&v=beta&t=wan95wjzWm-2qwZ8EBMHXMuttpIGCEadKesNt5L7Fas", "expiresAt": 1677236400000, "height": 533}, {"width": 1000, "fileIdentifyingUrlPathSegment": "1280_800/0/1676524860543?e=1677236400&v=beta&t=ignEQaSbBjAhuKH0F-ryBzrFl45RPH5TmXuLCqRVfnA", "expiresAt": 1677236400000, "height": 667}, {"width": 160, "fileIdentifyingUrlPathSegment": "160/0/1676524860544?e=1677236400&v=beta&t=vqIIwDGOTnZiE6k9kGAxNoQxzAd_kHjVjhVhfPMKrSA", "expiresAt": 1677236400000, "height": 106}, {"width": 480, "fileIdentifyingUrlPathSegment": "480/0/1676524860544?e=1677236400&v=beta&t=UD0YIIF1HShDxvDzPHAM5Eqc389HC8h29-1XHhDB7lQ", "expiresAt": 1677236400000, "height": 320}], "rootUrl": "https://media.licdn.com/dms/image/sync/D5627AQE6di4YUuavCg/articleshare-shrink_"}, "displayAspectRatio": 0.66625}]}, "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7867305761321344434)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7867305761321344434)"}, "subtitle": {"textDirection": "USER_LOCALE", "text": "modernfarmer.com \u2022 2 min read"}, "navigationContext": {"trackingActionType": "viewLink", "accessibilityText": "Open article: Abandoned Farm Fields Take Decades to Recover Biodiversity\u2014If They Can At All - Modern Farmer by modernfarmer.com", "actionTarget": "https://modernfarmer.com/2023/02/grassland-recovery/"}, "showSmallTitle": false, "type": "EXTERNAL_FULL", "title": {"textDirection": "FIRST_STRONG", "text": "Abandoned Farm Fields Take Decades to Recover Biodiversity\u2014If They Can At All - Modern Farmer"}}}, "commentary": {"templateType": "DEFAULT", "translationUrn": "urn:li:fs_translation:(urn:li:share:7029567522039308288,fr)", "numLines": 3, "text": {"textDirection": "FIRST_STRONG", "text": "La biodiversit\u00e9 est-elle r\u00e9siliente ? Dit autrement, si l'on se met \u00e0 \"laisser en paix\" un endroit qui \u00e9tait autrefois perturb\u00e9 par les activit\u00e9s humaines, est-ce que la biodiversit\u00e9 revient au niveau qu'elle aurait eu si nous n'avions jamais touch\u00e9 \u00e0 rien ?\n\nCela n'est pas garanti, indique une \u00e9tude parue dans Journal of Ecology (https://lnkd.in/e7G9q24e ), qui a examin\u00e9 le nombre et l'abondance des esp\u00e8ces sur des parcelles de prairie situ\u00e9es aux USA et anciennement agricoles qui ont \u00e9t\u00e9 laiss\u00e9es \"\u00e0 l'abandon\" depuis 3 ans \u00e0 presque un si\u00e8cle. \n\nSur aucune des parcelles les esp\u00e8ces n'\u00e9taient au niveau de ce que l'on trouvait sur des prairies identiques n'ayant jamais \u00e9t\u00e9 exploit\u00e9s pour l'agriculture. Une soixantaine de plantes poussant sur les prairies \"primaires\" ne s'observaient sur aucune des parcelles de prairie \"secondaire\", m\u00eame au bout de plusieurs d\u00e9cennies. En moyenne, un tiers des esp\u00e8ces manque \u00e0 l'appel sur les parcelles ayant \u00e9t\u00e9 cultiv\u00e9es par rapport \u00e0 celles ne l'ayant jamais \u00e9t\u00e9. \n\nPour beaucoup d'entre nous, il y a l'id\u00e9e de r\u00e9versibilit\u00e9 dans l'\u00e9tat des \u00e9cosyst\u00e8mes : si la pression qui a conduit \u00e0 la baisse de la biodiversit\u00e9 est all\u00e9g\u00e9e ou supprim\u00e9e, alors la biodiversit\u00e9 se r\u00e9tablit pour l'essentiel. Cette \u00e9tude montre que la r\u00e9alit\u00e9 n'est pas si simple, et que la recolonisation d'un \u00e9cosyst\u00e8me d\u00e9grad\u00e9 n'est pas n\u00e9cessairement automatique.\n\nEn outre cette \u00e9tude a \u00e9t\u00e9 men\u00e9e avec une d\u00e9rive climatique limit\u00e9e : pour les esp\u00e8ces v\u00e9g\u00e9tales qui avaient \u00e9t\u00e9 supprim\u00e9es par l'exploitation agricole, le climat d'aujourd'hui est encore relativement proche de celui qui existait au moment de la mise de la prairie en culture. \n\nMais \u00e0 l'avenir le climat existant au moment de l'arr\u00eat de la pression sera de plus en plus diff\u00e9rent de celui qui existait au moment du d\u00e9marrage de la pression. La question de la r\u00e9versibilit\u00e9 sera n\u00e9cessairement encore plus pos\u00e9e dans ce contexte.\n\nCe que sugg\u00e8re l'article dans sa partie finale est de donner un \"coup de pouce\" \u00e0 la restauration de la biodiversit\u00e9, par exemple en plantant des graines des esp\u00e8ces qui ont du mal \u00e0 revenir spontan\u00e9ment. \n\nEn somme, la proposition est de corriger la baisse de la biodiversit\u00e9 caus\u00e9e par l'agriculture par... une autre forme d'agriculture ! "}, "originalLanguage": "French", "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029567522039308288,fr)"}, "socialDetail": {"dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029567522739773440,urn:li:activity:7029567522739773440,urn:li:highlightedReply:-)", "comments": {"paging": {"start": 0, "count": 0, "total": 111, "links": []}, "elements": []}, "socialPermissions": {"dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029567522739773440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", "canPostComments": true, "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029567522739773440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", "messagePermission": "PUBLIC", "canShare": true, "canReact": true}, "showPremiumAnalytics": false, "hideFirstPrompt": true, "liked": false, "showShareButton": true, "totalShares": 0, "urn": "urn:li:activity:7029567522739773440", "threadId": "activity:7029567522739773440", "allowedCommentersScope": "ALL", "totalSocialActivityCounts": {"socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029567522739773440", "urn": "urn:li:activity:7029567522739773440", "numComments": 153, "reactionText": {"textDirection": "USER_LOCALE", "text": "Jacques PYRAT"}, "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029567522739773440", "reactionTypeCounts": [{"count": 1595, "reactionType": "LIKE"}, {"count": 604, "reactionType": "INTEREST"}, {"count": 22, "reactionType": "APPRECIATION"}, {"count": 13, "reactionType": "PRAISE"}, {"count": 10, "reactionType": "MAYBE"}, {"count": 7, "reactionType": "EMPATHY"}], "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029567522739773440", "numLikes": 2251, "liked": false}, "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029567522739773440", "commentingDisabled": false, "likes": {"paging": {"start": 0, "count": 0, "total": 2253, "links": []}, "elements": []}}}, {"actor": {"urn": "urn:li:member:101316862", "image": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "PROFILE_PICTURE", "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}}]}, "supplementaryActorInfo": {"textDirection": "USER_LOCALE", "text": " \u2022 Following"}, "name": {"textDirection": "FIRST_STRONG", "attributes": [{"start": 0, "length": 19, "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}, "type": "PROFILE_FULLNAME"}], "text": "Jean-Marc Jancovici"}, "subDescription": {"textDirection": "USER_LOCALE", "attributes": [{"start": 5, "length": 1, "artDecoIcon": "IC_GLOBE_16DP", "type": "ART_DECO_ICON"}], "text": "1w \u2022 ", "accessibilityText": "1 week ago"}, "navigationContext": {"trackingActionType": "viewMember", "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug"}, "description": {"textDirection": "USER_LOCALE", "text": "Founding Partner, Carbone 4 - President, The Shift project"}}, "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,DEFAULT,false)", "updateMetadata": {"urn": "urn:li:activity:7029152901151227904", "actionsPosition": "ACTOR_COMPONENT", "updateActions": {"actions": [{"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM"}]}, "actionType": "SAVE", "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029152901151227904)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029152901151227904)"}, "text": "Save"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_LINK_MEDIUM"}]}, "actionType": "SHARE_VIA", "text": "Copy link to post", "url": "https://www.linkedin.com/posts/jean-marc-jancovici_r%C3%A9chauffement-climatique-christophe-b%C3%A9chu-activity-7029152901151227904-Ko6p?utm_source=share&utm_medium=member_desktop"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_CLEAR_MEDIUM"}]}, "actionType": "UNFOLLOW_MEMBER", "text": "Unfollow Jean-Marc Jancovici", "followAction": {"followTrackingActionType": "followMember", "followingInfo": {"followingType": "FOLLOWING", "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "following": true, "trackingUrn": "urn:li:member:101316862"}, "unfollowTrackingActionType": "unfollowMember", "type": "UNFOLLOW_TOGGLE", "trackingActionType": "unfollowMember"}, "confirmationAction": {"title": {"text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "attributes": [], "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed"}, "undoable": true}}, {"actionType": "REPORT", "targetUrn": "urn:li:share:7029152900555665408", "contentSource": "UGC_POST", "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "authorUrn": "urn:li:member:101316862", "icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_REPORT_MEDIUM"}]}, "secondaryAction": {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM"}]}, "actionType": "HIDE_UPDATE", "targetUrn": "urn:li:activity:7029152901151227904", "text": "Hide this post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "text": "You'll no longer see this post in your feed."}, "undoable": true}}, "text": "Report post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Thank you for your report"}, "description": {"textDirection": "USER_LOCALE", "text": "We appreciate you letting us know"}, "undoable": false}}], "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,-,-)", "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)"}, "actionTriggerEnabled": false, "detailPageType": "FEED_DETAIL", "shareAudience": "PUBLIC", "shareUrn": "urn:li:share:7029152900555665408", "excludedFromSeen": false, "trackingData": {"requestId": "b25a7ec3-e28d-48c3-8992-6f2d239bb5ed", "trackingId": "1grg0VYMWCTG5FhZjsilSg=="}}, "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,DEFAULT,false)", "content": {"com.linkedin.voyager.feed.render.ArticleComponent": {"templateType": "DEFAULT", "urn": "urn:li:article:7714865795466691610", "swapTitleAndSubtitle": false, "largeImage": {"accessibilityTextAttributes": [], "attributes": [{"useCropping": false, "sourceType": "VECTOR", "vectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "800/0/1676104521119?e=1677236400&v=beta&t=E-_dmn5bEh2ASQJXWdlIQuBlmt1ri7HKzPONUlQlRp8", "expiresAt": 1677236400000, "height": 468}, {"width": 1024, "fileIdentifyingUrlPathSegment": "1280_800/0/1676104521119?e=1677236400&v=beta&t=vJfbsPOJJkn5RKnKfIFBaAbm9Nj6zYsdgr8L3OWSQH8", "expiresAt": 1677236400000, "height": 600}, {"width": 160, "fileIdentifyingUrlPathSegment": "160/0/1676104521119?e=1677236400&v=beta&t=qWLPDRK3xgYUCubzovSptMdhbXd4kW6-p60ivjGfQfI", "expiresAt": 1677236400000, "height": 93}, {"width": 480, "fileIdentifyingUrlPathSegment": "480/0/1676104521119?e=1677236400&v=beta&t=S1gdGptHGKRE3Q2-cMySnoamL2nDH-66mt0Rox4kyOg", "expiresAt": 1677236400000, "height": 281}], "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQGv6oPpoZDTJg/articleshare-shrink_"}, "displayAspectRatio": 0.585}]}, "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7714865795466691610)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7714865795466691610)"}, "subtitle": {"textDirection": "USER_LOCALE", "text": "lemans.maville.com \u2022 2 min read"}, "navigationContext": {"trackingActionType": "viewLink", "accessibilityText": "Open article: R\u00e9chauffement climatique. Christophe B\u00e9chu demande la prise en compte d\u2019un sc\u00e9nario \u00e0 by lemans.maville.com", "actionTarget": "https://lemans.maville.com/actu/actudet_-rechauffement-climatique.-christophe-bechu-demande-la-prise-en-compte-d-un-scenario-a-+-4-c-_54135-5613674_actu.Htm"}, "showSmallTitle": false, "type": "EXTERNAL_FULL", "title": {"textDirection": "FIRST_STRONG", "text": "R\u00e9chauffement climatique. Christophe B\u00e9chu demande la prise en compte d\u2019un sc\u00e9nario \u00e0"}}}, "commentary": {"templateType": "DEFAULT", "translationUrn": "urn:li:fs_translation:(urn:li:share:7029152900555665408,fr)", "numLines": 3, "text": {"textDirection": "FIRST_STRONG", "text": "L'automobiliste qui boucle sa ceinture s'attend-il \u00e0 avoir un accident ? Le particulier qui paye sa prime d'assurance contre l'incendie s'attend-il \u00e0 voir son domicile en proie aux flammes ? Le navigateur qui enfile son gilet de sauvetage \u00e0 finir par-dessus bord ?\n\nLorsque le coup du sort est possible, la prudence veut que l'on prenne ses pr\u00e9cautions, pour parer des \u00e9ventualit\u00e9s alors m\u00eame que la personne qui est victime n'est pas en d\u00e9faut sur son propre comportement (comme un conducteur saoul qui ne vous a pas vu ou un coup de foudre).\n\nIl en va de m\u00eame pour le climat. Si l'\u00e9volution des conditions climatiques en France ne d\u00e9pendait que des \u00e9missions fran\u00e7aises (une chose que pensait un ministre que j'ai rencontr\u00e9 dans le gouvernement Macron I, accessoirement), on pourrait consid\u00e9rer que de pr\u00e9parer le pays \u00e0 une \u00e9volution climatique \"incompatible accords de Paris\" est une d\u00e9mission.\n\nMais ce que sera le climat de la France en 2100 d\u00e9pend avant tout de ce que vont \u00e9mettre tous les autres pays que le n\u00f4tre d'ici \u00e0 2100. Avons nous de la prise dessus ? La r\u00e9ponse est oui pour partie : d'une part l'humain est animal mim\u00e9tique (merci la mode pour nous le rappeler !), et d'autre part si nous trouvons des \"solutions\" chez nous nous pourrons ensuite les exporter.\n\nMais nous avons au mieux un pouvoir d'influence et non un pouvoir absolu. La prudence veut donc que l'on ait un plan B si la baisse des \u00e9missions ne va pas assez vite dans le monde (et actuellement elle ne va pas assez vite...). \n\nEn pratique, avoir ce plan B signifie \"durcir\" tout ce que nous pouvons durcir en France pour r\u00e9sister au mieux \u00e0 des conditions climatiques qui d\u00e9riveraient fortement par rapport au sc\u00e9nario \"id\u00e9al\" d'une hausse limit\u00e9e \u00e0 1,5 \u00b0C dans le monde (ce qui signifie plus en France car les terres \u00e9merg\u00e9es se r\u00e9chauffent plus vite que la moyenne).\n\nCe n'est pas une fois que la situation est \"cata\" que nous aurons la possibilit\u00e9 d'avoir en une semaine une for\u00eat constitu\u00e9e des bonnes esp\u00e8ces, des cultures r\u00e9sistant aux canicules ou hivers doux, des infrastructures et des voies de communication en \u00e9tat de fonctionner, ou encore des logements qui ne soient pas des fournaises.\n\nLe principe m\u00eame de s'y prendre maintenant pour \u00eatre \"pr\u00eat\" dans 50 ans, et d'utiliser d'un sc\u00e9nario tr\u00e8s adverse est donc une bonne chose : cela s'appelle de la prudence. \n\nPour passer \u00e0 l'action, il va d'abord falloir mod\u00e9liser pour chaque acteur les cons\u00e9quences possibles de 4\u00b0C de r\u00e9chauffement en France. Que risque un bailleur social ? Une installation industrielle ? Un pont ? Un r\u00e9seau d'eau ? Un agriculteur ? Un r\u00e9seau de communications ? Un h\u00f4pital ? \n\nPuis il faudra ensuite imaginer les moyens d'y r\u00e9pondre (et parfois le seul sera l'abandon...) et enfin les mettre en oeuvre.\n\nTout cela demandera des moyens intellectuels puis mat\u00e9riels (et donc des sous). Sans obligation s\u00e9rieuse de la puissance publique, il est peu probable qu'ils arrivent tous seuls \u00e0 la bonne vitesse !"}, "originalLanguage": "French", "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029152900555665408,fr)"}, "socialDetail": {"dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029152901151227904,urn:li:activity:7029152901151227904,urn:li:highlightedReply:-)", "comments": {"paging": {"start": 0, "count": 0, "total": 90, "links": []}, "elements": []}, "socialPermissions": {"dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029152901151227904,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", "canPostComments": true, "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029152901151227904,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", "messagePermission": "PUBLIC", "canShare": true, "canReact": true}, "showPremiumAnalytics": false, "hideFirstPrompt": true, "liked": false, "showShareButton": true, "totalShares": 0, "urn": "urn:li:activity:7029152901151227904", "threadId": "activity:7029152901151227904", "allowedCommentersScope": "ALL", "totalSocialActivityCounts": {"socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029152901151227904", "urn": "urn:li:activity:7029152901151227904", "numComments": 167, "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029152901151227904", "reactionTypeCounts": [{"count": 1520, "reactionType": "LIKE"}, {"count": 221, "reactionType": "INTEREST"}, {"count": 70, "reactionType": "PRAISE"}, {"count": 29, "reactionType": "APPRECIATION"}, {"count": 12, "reactionType": "MAYBE"}, {"count": 6, "reactionType": "EMPATHY"}], "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029152901151227904", "numLikes": 1858, "liked": false}, "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029152901151227904", "commentingDisabled": false, "likes": {"paging": {"start": 0, "count": 0, "total": 1861, "links": []}, "elements": []}}}, {"actor": {"urn": "urn:li:member:101316862", "image": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "PROFILE_PICTURE", "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}}]}, "supplementaryActorInfo": {"textDirection": "USER_LOCALE", "text": " \u2022 Following"}, "name": {"textDirection": "FIRST_STRONG", "attributes": [{"start": 0, "length": 19, "miniProfile": {"firstName": "Jean-Marc", "lastName": "Jancovici", "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "occupation": "Founding Partner, Carbone 4 - President, The Shift project", "objectUrn": "urn:li:member:101316862", "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "backgroundImage": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", "expiresAt": 1681948800000, "height": 200}, {"width": 1400, "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", "expiresAt": 1681948800000, "height": 350}], "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_"}}, "publicIdentifier": "jean-marc-jancovici", "picture": {"com.linkedin.common.VectorImage": {"artifacts": [{"width": 100, "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", "expiresAt": 1681948800000, "height": 100}, {"width": 200, "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", "expiresAt": 1681948800000, "height": 200}, {"width": 400, "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", "expiresAt": 1681948800000, "height": 400}, {"width": 800, "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", "expiresAt": 1681948800000, "height": 800}], "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_"}}, "trackingId": "zfxFwzQcTn6jC0cw3+VeRw=="}, "type": "PROFILE_FULLNAME"}], "text": "Jean-Marc Jancovici"}, "subDescription": {"textDirection": "USER_LOCALE", "attributes": [{"start": 5, "length": 1, "artDecoIcon": "IC_GLOBE_16DP", "type": "ART_DECO_ICON"}], "text": "1w \u2022 ", "accessibilityText": "1 week ago"}, "navigationContext": {"trackingActionType": "viewMember", "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug"}, "description": {"textDirection": "USER_LOCALE", "text": "Founding Partner, Carbone 4 - President, The Shift project"}}, "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,DEFAULT,false)", "updateMetadata": {"urn": "urn:li:activity:7028725477036969984", "actionsPosition": "ACTOR_COMPONENT", "updateActions": {"actions": [{"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM"}]}, "actionType": "SAVE", "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7028725477036969984)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7028725477036969984)"}, "text": "Save"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_LINK_MEDIUM"}]}, "actionType": "SHARE_VIA", "text": "Copy link to post", "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-danemark-et-totalenergies-acc%C3%A9l%C3%A8rent-sur-activity-7028725477036969984-M7II?utm_source=share&utm_medium=member_desktop"}, {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_CLEAR_MEDIUM"}]}, "actionType": "UNFOLLOW_MEMBER", "text": "Unfollow Jean-Marc Jancovici", "followAction": {"followTrackingActionType": "followMember", "followingInfo": {"followingType": "FOLLOWING", "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "following": true, "trackingUrn": "urn:li:member:101316862"}, "unfollowTrackingActionType": "unfollowMember", "type": "UNFOLLOW_TOGGLE", "trackingActionType": "unfollowMember"}, "confirmationAction": {"title": {"text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "attributes": [], "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed"}, "undoable": true}}, {"actionType": "REPORT", "targetUrn": "urn:li:share:7028725474373574656", "contentSource": "UGC_POST", "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", "authorUrn": "urn:li:member:101316862", "icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_REPORT_MEDIUM"}]}, "secondaryAction": {"icon": {"accessibilityTextAttributes": [], "attributes": [{"sourceType": "SYSTEM_IMAGE", "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM"}]}, "actionType": "HIDE_UPDATE", "targetUrn": "urn:li:activity:7028725477036969984", "text": "Hide this post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Post removed"}, "description": {"textDirection": "USER_LOCALE", "text": "You'll no longer see this post in your feed."}, "undoable": true}}, "text": "Report post", "confirmationAction": {"title": {"textDirection": "USER_LOCALE", "text": "Thank you for your report"}, "description": {"textDirection": "USER_LOCALE", "text": "We appreciate you letting us know"}, "undoable": false}}], "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,-,-)", "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)"}, "actionTriggerEnabled": false, "detailPageType": "FEED_DETAIL", "shareAudience": "PUBLIC", "shareUrn": "urn:li:share:7028725474373574656", "excludedFromSeen": false, "trackingData": {"requestId": "b25a7ec3-e28d-48c3-8992-6f2d239bb5ed", "trackingId": "ts1r4ruKL1zX77ETSM+MTA=="}}, "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,DEFAULT,false)", "content": {"com.linkedin.voyager.feed.render.ArticleComponent": {"templateType": "DEFAULT", "urn": "urn:li:article:8168114166776751448", "swapTitleAndSubtitle": false, "largeImage": {"accessibilityTextAttributes": [], "attributes": [{"useCropping": false, "sourceType": "VECTOR", "vectorImage": {"artifacts": [{"width": 800, "fileIdentifyingUrlPathSegment": "800/0/1675778791122?e=1677236400&v=beta&t=HTZ_q64avcBy3_ld7JZ5mx8Iu8_vxWymjDbQcZVkIhk", "expiresAt": 1677236400000, "height": 450}, {"width": 1280, "fileIdentifyingUrlPathSegment": "1280_800/0/1675778791122?e=1677236400&v=beta&t=FDxpvn1dW0mfa9bpxPA8h-KXtcAK890Y7EQzVG8DiSU", "expiresAt": 1677236400000, "height": 720}, {"width": 160, "fileIdentifyingUrlPathSegment": "160/0/1675778791122?e=1677236400&v=beta&t=PHbEjRMq0F3SVxZQj5_A-hi_1veJ_Y_4eQRvCBKxSMs", "expiresAt": 1677236400000, "height": 90}, {"width": 480, "fileIdentifyingUrlPathSegment": "480/0/1675778791122?e=1677236400&v=beta&t=Fd5Fd5uTfcIuhM02Umx1CJjEPhrfCTrv3L6aL5skY9Q", "expiresAt": 1677236400000, "height": 270}], "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQHRbnwo7trS3g/articleshare-shrink_"}, "displayAspectRatio": 0.5625}]}, "saveAction": {"entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8168114166776751448)", "saved": false, "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8168114166776751448)"}, "subtitle": {"textDirection": "USER_LOCALE", "text": "lesechos.fr \u2022 1 min read"}, "navigationContext": {"trackingActionType": "viewLink", "accessibilityText": "Open article: Le Danemark et TotalEnergies acc\u00e9l\u00e8rent sur le stockage de CO2 by lesechos.fr", "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/le-danemark-et-totalenergies-accelerent-sur-le-stockage-de-co2-1903841"}, "showSmallTitle": false, "type": "EXTERNAL_FULL", "title": {"textDirection": "FIRST_STRONG", "text": "Le Danemark et TotalEnergies acc\u00e9l\u00e8rent sur le stockage de CO2"}}}, "commentary": {"templateType": "DEFAULT", "translationUrn": "urn:li:fs_translation:(urn:li:share:7028725474373574656,fr)", "numLines": 3, "text": {"textDirection": "FIRST_STRONG", "text": "Une des solutions qui permettrait d'utiliser des combustibles fossiles sans d\u00e9ranger le climat s'appelle la capture et s\u00e9questration du CO2 (en anglais CCS pour Carbon Capture and Sequestration), et passe par les op\u00e9rations suivantes :\n\n- on \"attrape\" le CO2 d'une installation de combustion avant qu'il ne s'\u00e9chappe dans l'atmosph\u00e8re. Pour cela la fum\u00e9e barbote dans un liquide sp\u00e9cial - g\u00e9n\u00e9ralement des amines - qui va \"accrocher\" les mol\u00e9cules de CO2 (on parle d'adsorption) et laisser partir le reste.\n\n- le CO2 est r\u00e9cup\u00e9r\u00e9 en faisant chauffer la solution qui l'a adsorb\u00e9,\n\n- il est compress\u00e9, transport\u00e9 dans un tuyau et enfin inject\u00e9 sous forme supercritique (une forme interm\u00e9diaire entre le gaz et le liquide) sous le sol dans une formation g\u00e9ologique dont il ne sortira plus\n\nCette op\u00e9ration n'a de sens que pour des installation fixes importantes (centrales \u00e0 charbon ou \u00e0 gaz, cimenteries ou aci\u00e9ries). La capture demande 20% \u00e0 30% de l'\u00e9nergie du site, et fait baisser la production (d'\u00e9lectricit\u00e9, d'acier...) d'autant. C'est de loin la premi\u00e8re barri\u00e8re \u00e0 l'utilisation de ce proc\u00e9d\u00e9.\n\nIl faut ensuite trouver o\u00f9 injecter ce CO2. Les anciens gisements de p\u00e9trole et de gaz sont une premi\u00e8re possibilit\u00e9. Ce sont de bons candidats, car, avant exploitation, ils \u00e9taient aptes \u00e0 retenir longtemps au m\u00eame endroit du liquide et du gaz sous pression. Il faut juste v\u00e9rifier que les forages d'exploitation (normalement scell\u00e9s \u00e0 la fin de vie du gisement) ne changent pas l'\u00e9tanch\u00e9it\u00e9.\n\nLes aquif\u00e8res souterrains - un m\u00e9lange de roche et d'eau - sont une deuxi\u00e8me possibilit\u00e9. Le CO2 inject\u00e9 finit par se dissoudre puis se transformer lentement en carbonates avec le temps.\n\nLes p\u00e9troliers connaissent assez bien l'injection du CO2 sous le sol :\n- dans beaucoup de gisements p\u00e9troliers le fait d'injecter du CO2 permet de mieux \"laver\" le gisement. En pareil cas le moteur de l'action n'est donc pas la vertu environnementale mais tout simplement l'augmentation du p\u00e9trole produit !\n- le gaz naturel extrait de terre contient toujours un peu de CO2, et ce dernier doit \u00eatre enlev\u00e9 avant le transport par gazoduc, sinon il y a un risque fort de corrosion des infrastructures (la pr\u00e9sence simultan\u00e9e d'eau et de CO2 cr\u00e9e un m\u00e9lange acide). Les op\u00e9rateurs doivent donc s\u00e9parer le gaz du CO2 en t\u00eate de puits, et en Norv\u00e8ge ce CO2 doit \u00eatre r\u00e9inject\u00e9 sinon le p\u00e9trolier paye une p\u00e9nalit\u00e9 \u00e0 la tonne. \n\nCe n'est donc pas un hasard si Total - un p\u00e9trolier - et le Danemark - la Mer du Nord - regardent ensemble ce qu'ils pourraient mettre comme CO2 sous la mer. Il reste \u00e0 trouver des industriels acceptant d'investir pour capturer le CO2 \u00e0 la source et \u00e0 se faire payer pour ca. \n\nOn parle potentiellement de 10 Mt de CO2 par an, soit 500 M\u20ac/an environ au cours actuel du CO2. C'est assez d'argent pour que ca vaille le coup de reconvertir une plate-forte, mais cela \u00e9vitera juste les \u00e9missions d'une centrale \u00e0 charbon. On ne va pas pouvoir compter que sur ca !"}, "originalLanguage": "French", "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7028725474373574656,fr)"}, "socialDetail": {"dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7028725477036969984,urn:li:activity:7028725477036969984,urn:li:highlightedReply:-)", "comments": {"paging": {"start": 0, "count": 0, "total": 107, "links": []}, "elements": []}, "socialPermissions": {"dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7028725477036969984,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", "canPostComments": true, "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7028725477036969984,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", "messagePermission": "PUBLIC", "canShare": true, "canReact": true}, "showPremiumAnalytics": false, "hideFirstPrompt": true, "liked": false, "showShareButton": true, "totalShares": 0, "urn": "urn:li:activity:7028725477036969984", "threadId": "activity:7028725477036969984", "allowedCommentersScope": "ALL", "totalSocialActivityCounts": {"socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028725477036969984", "urn": "urn:li:activity:7028725477036969984", "numComments": 201, "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7028725477036969984", "reactionTypeCounts": [{"count": 1960, "reactionType": "LIKE"}, {"count": 578, "reactionType": "INTEREST"}, {"count": 129, "reactionType": "MAYBE"}, {"count": 17, "reactionType": "PRAISE"}, {"count": 11, "reactionType": "APPRECIATION"}, {"count": 8, "reactionType": "EMPATHY"}], "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7028725477036969984", "numLikes": 2703, "liked": false}, "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028725477036969984", "commentingDisabled": false, "likes": {"paging": {"start": 0, "count": 0, "total": 2706, "links": []}, "elements": []}}}] diff --git a/out_posts.json b/out_posts.json new file mode 100644 index 0000000..46c6748 --- /dev/null +++ b/out_posts.json @@ -0,0 +1,48108 @@ +[ + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "12h \u2022 ", + "accessibilityText": "12 hours ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7032115801016938496", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7032115801016938496)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7032115801016938496)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-recrute-une-cheffe-de-projet-agriculture-activity-7032115801016938496-lQSy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7032115800496848896", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7032115801016938496", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7032115800496848896", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "aXpi7c2WA4FyLhL27gBC7w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7508397560141145240", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676589776974?e=1677240000&v=beta&t=AUF_ALjzwld6RGorfZVpCNvAqsPm2sYkT6ZIIlartnM", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676589776974?e=1677240000&v=beta&t=imfhXK_jGt5qNv_MGqkHFYJ0lJGSuuNzqtBM2hmTZFI", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676589776974?e=1677240000&v=beta&t=-juGnXkSoa6rtMN47WjvlGm0ooKIowR69ciK3ZtSvCM", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676589776974?e=1677240000&v=beta&t=pQLZePdjbvWEqd5yoQS7e3m99jF29QQkP3BXUCANBS8", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQENdzDIiQ--jA/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7508397560141145240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7508397560141145240)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift recrute un.e Chef.fe de projet Agriculture ! [CDD 18 mois] by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/offre-emploi-chef-projet-agriculture/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift recrute un.e Chef.fe de projet Agriculture ! [CDD 18 mois]" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7032115800496848896,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce n'\u00e9tait pas le secteur le plus travaill\u00e9 dans le Plan de Transformation de l'Economie Fran\u00e7aise, et donc le Shift Project a d\u00e9cid\u00e9 d'y revenir. Car la production et cuisson de nos aliments, en incluant les \u00e9missions industrielles amont (fabrication des engrais, des intrants en g\u00e9n\u00e9ral, et des machines agricoles), les \u00e9missions dans les exploitations, et celles \u00e0 l'aval (industries agro-alimentaires, transports, emballages, d\u00e9placements des consommateurs pour faire les courses, cuisson, etc) c'est un tiers des \u00e9missions mondiales, et pas loin du m\u00eame pourcentage en France.\n\nIl semble donc difficile de dire que nous allons devenir \"neutres\", ce qui suppose de supprimer la quasi-totali\u00e9 de nos \u00e9missions actuelles, sans s'occuper s\u00e9rieusement de ce secteur. C'est pour cela que The Shift Project se cherche le mouton ou la brebis \u00e0 5 pattes (c'est de circonstance) pour piloter la r\u00e9flexion \u00e0 venir sur la bonne mani\u00e8re de d\u00e9carboner notre assiette.\n\nSi faire un petit tour par les locaux de cette association vous tente, \u00e0 vos CV ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7032115800496848896,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7032115801016938496,urn:li:activity:7032115801016938496,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7032115801016938496,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7032115801016938496,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7032115801016938496", + "threadId": "activity:7032115801016938496", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7032115801016938496", + "urn": "urn:li:activity:7032115801016938496", + "numComments": 35, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7032115801016938496", + "reactionTypeCounts": [ + { + "count": 265, + "reactionType": "LIKE" + }, + { + "count": 9, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7032115801016938496", + "numLikes": 286, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7032115801016938496", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 286, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1d \u2022 ", + "accessibilityText": "1 day ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7031764966638559232", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7031764966638559232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7031764966638559232)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_b8-d%C3%A9pendance-%C3%A9nerg%C3%A9tique-du-secteur-de-activity-7031764966638559232-jEQv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7031764966009376769", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7031764966638559232", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7031764966009376769", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "zIKoDwelmzR4ZA5ypTiueQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7201673045911734909", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676576622421?e=1677240000&v=beta&t=5TXO_S0Ag1DjFHUS1SWl74oRn-PON6N7bnQrD5dI-xg", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676576622421?e=1677240000&v=beta&t=iRzT-Wg_IPxva_zCTD7yDKeZb0js1vNqJA7RHEAa33U", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676576622421?e=1677240000&v=beta&t=IFJgDBKj5RSGrKiYAY6RH7xOgTU5upPDrhQ4JKy7fgQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676576622421?e=1677240000&v=beta&t=J4yj3jU3KJFjhxqK_ZMAF6WaQgHscZNRFYpMfgBZszo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQEZhL5YyD4zww/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7201673045911734909)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7201673045911734909)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: B8- D\u00e9pendance \u00e9nerg\u00e9tique du secteur de la sant\u00e9 [Jean-Marc Jancovici] on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=LSe5XItXVtE" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "* Module de formation de M\u00e9decine et Sant\u00e9 Environnementale produit par la Conf\u00e9rence des Doyens des Facult\u00e9s de M\u00e9decine de France * \ud83c\udfe5 Le syst\u00e8me de la sant\u00e9 pourrait-il fonctionner dans un \u00e9tat de contraction \u00e9nerg\u00e9tique ? #h\u00f4pital #\u00e9nergie #sant\u00e9..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "B8- D\u00e9pendance \u00e9nerg\u00e9tique du secteur de la sant\u00e9 [Jean-Marc Jancovici]" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7031764966009376769,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s les ing\u00e9nieurs et les gestionnaires, c'est au tour des futurs m\u00e9decins de se faire former aux enjeux climatiques et environnementaux.\n\nD'ici \u00e0 septembre 2023, toutes les facult\u00e9s de m\u00e9decine de France vont inclure dans leur enseignement un module intitul\u00e9 \"m\u00e9decine et sant\u00e9 environnementale\" pour fournir des bases sur les enjeux, mais aussi sur la mani\u00e8re de les aborder. \n\nCe module est essentiellement constitu\u00e9 de vid\u00e9os dont la liste est accessible l\u00e0 : https://lnkd.in/dhmUtKmy\n\nMa \"partition\" dans cet ensemble consiste \u00e0 exposer l'apport de l'\u00e9nergie - c'est \u00e0 dire de notre costume d'Ironman - \u00e0 l'augmentation de l'esp\u00e9rance de vie, au travers de l'alimentation, de la prophylaxie, de la fabrication des vaccins et m\u00e9dicaments, et plus r\u00e9cemment au fonctionnement de l'h\u00f4pital moderne. \n\nLe grand paradoxe, dans la sant\u00e9, est que l'\u00e9mergence des combustibles fossiles a globalement fortement allong\u00e9 la dur\u00e9e de vie... tout en faisant na\u00eetre une menace croissante sur le maintien de cette dur\u00e9e \u00e0 l'avenir.\n\nCette courte vid\u00e9o ne d\u00e9taille pas du tout les futurs impacts possibles du changement climatique sur la sant\u00e9. Elle porte uniquement sur le pass\u00e9, pour faire comprendre en quoi l'\u00e9nergie a jou\u00e9 un r\u00f4le central dans le fait que l'esp\u00e9rance de vie (en fait l'\u00e2ge moyen du d\u00e9c\u00e8s) soit pass\u00e9e d'un peu moins de 30 ans en 1800 \u00e0 environ 80 aujourd'hui.\n\nComment ne pas retourner \u00e0 30 ans dans un monde sobre en \u00e9nergie ? C'est \u00e0 ce d\u00e9fi que devront participer les m\u00e9decins - et les autres professionnels de la sant\u00e9 - \u00e0 l'avenir. Esp\u00e9rons que ce module leur donnera des cl\u00e9s de lecture utiles !\n\nNB : en farfouillant dans la liste vous y trouverez quelques \"usual suspects\" (Bourg, Bihouix, Keller, Gouyon, Selosse, Auzanneau...) sur des formats assez courts : il n'y a plus qu'\u00e0 d\u00e9guster !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7031764966009376769,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7031764966638559232,urn:li:activity:7031764966638559232,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7031764966638559232,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7031764966638559232,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7031764966638559232", + "threadId": "activity:7031764966638559232", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031764966638559232", + "urn": "urn:li:activity:7031764966638559232", + "numComments": 59, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7031764966638559232", + "reactionTypeCounts": [ + { + "count": 661, + "reactionType": "LIKE" + }, + { + "count": 107, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "EMPATHY" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7031764966638559232", + "numLikes": 808, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031764966638559232", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 808, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3d \u2022 ", + "accessibilityText": "3 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7031166740847837185", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7031166740847837185)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7031166740847837185)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-s%C3%A9cheresse-pointe-sous-lanticyclone-activity-7031166740847837185-sdcK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7031166740042506240", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7031166740847837185", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7031166740042506240", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "meXlT5gLW8zaK4CqxaOMPg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8489194875064209322", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 700, + "fileIdentifyingUrlPathSegment": "800/0/1676581927584?e=1677240000&v=beta&t=hkKeAPDPF3hZ_waK9ol9aw-MtY-l0TrorQ33zl-gvTM", + "expiresAt": 1677240000000, + "height": 542 + }, + { + "width": 700, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676581927584?e=1677240000&v=beta&t=o3HJZu5CZ1vGIepW9RBTE1MmvB1jyAKDviWVbF6WMeI", + "expiresAt": 1677240000000, + "height": 542 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676581927585?e=1677240000&v=beta&t=lXH5zNdwoT9u2a3zQqsmJ9i-uxuhD9QhBtJRQhrjZ-M", + "expiresAt": 1677240000000, + "height": 124 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676581927585?e=1677240000&v=beta&t=BJ3LuL7w-kXzMF2z7Z0AwSWd5nfjQf-pgwkvx2tcm9I", + "expiresAt": 1677240000000, + "height": 372 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEwLB0r1VF0JQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.7742857142857142 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Pression r\u00e9duite au niveau de la mer moyenne du 21 janvier au 7 f\u00e9vrier" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8489194875064209322)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8489194875064209322)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "meteofrance.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La s\u00e9cheresse pointe sous l'anticyclone by meteofrance.com", + "actionTarget": "https://meteofrance.com/actualites-et-dossiers-0/la-secheresse-pointe-sous-lanticyclone" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La s\u00e9cheresse pointe sous l'anticyclone" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7031166740042506240,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il va falloir r\u00e9viser le sens des mots en mati\u00e8re de m\u00e9t\u00e9o. Quand on \u00e9coute le bulletin, \"il fait beau\", utilise un adjectif qui est g\u00e9n\u00e9ralement associ\u00e9 \u00e0 quelque chose de positif : il est assez rare que l'on emploie \"beau\" pour une situation dont on ne voudrait pas !\n\nMalheureusement, \"il fait beau\", en hiver (et m\u00eame en \u00e9t\u00e9 !), peut d\u00e9sormais \u00eatre associ\u00e9 \u00e0 un certain nombre d'inconv\u00e9nients dont on se passerait bien.\n\nTout d'abord, s'il \"fait beau\" c'est qu'il ne pleut pas. Notre pays s'appr\u00eate \u00e0 battre un record de dur\u00e9e de jours secs en hiver, avec plus de 3 semaines cons\u00e9cutives \u00e0 moins de 1 mm de pluie par jour sur le pays : https://bit.ly/3RZ2pdK\n\nCette s\u00e9cheresse hivernale survient alors que les nappes phr\u00e9atiques, au 1er janvier, \u00e9taient toujours \u00e0 un niveau bien trop bas sur une large partie du pays : https://bit.ly/3E7IALE (\"Plus des trois-quarts des nappes demeurent sous les normales mensuelles. Les niveaux sont nettement inf\u00e9rieurs \u00e0 ceux de d\u00e9cembre 2021\"). Rappelons que la recharge des nappes l'hiver c'est le confort - voire la survie - de la v\u00e9g\u00e9tation l'\u00e9t\u00e9.\n\nQuand \"il fait beau\", c'est g\u00e9n\u00e9ralement que nous sommes en conditions anticycloniques, avec peu de vent, et donc la production \u00e9olienne est faible, ce qui est effectivement le cas en France en moyenne sur les derni\u00e8res semaines : https://bit.ly/3lttNod \n\nLa carte des contenus carbone des pays europ\u00e9ens \u00e0 l'instant o\u00f9 je tape ce post refl\u00e8te cette faiblesse, avec des moyens fossiles qui sont utilis\u00e9s de mani\u00e8re significative : https://lnkd.in/eRvA7w-a Deuxi\u00e8me cons\u00e9quence de \"il fait beau\", donc : les \u00e9missions de CO2 augmentent, ainsi que les \u00e9missions de polluants associ\u00e9s \u00e0 la production \u00e9lectrique fossile (oxydes d'azote et particules fines).\n\nQuand \"il fait beau\" en hiver, avec un ciel d\u00e9gag\u00e9, il fait g\u00e9n\u00e9ralement aussi froid. Cela augmente d'autant la consommation \u00e9lectrique - une deuxi\u00e8me raison d'avoir des centrales \u00e0 charbon qui fonctionnent plus - ainsi que le chauffage fossile ou au bois, qui \u00e9mettent aussi des polluants. Avec l'air qui circule peu (puisqu'il y a un anticyclone), et les autres sources de particules (agriculture et transports), on se retrouve avec un \u00e9pisode de pollution aux particules fines un peu prononc\u00e9 : http://www2.prevair.org/ (choisir \"Europe\" et \"PM 2.5\" dans les menus d\u00e9roulants pour avoir une vue d'ensemble de l'Europe pour les particules les plus dangereuses). Les parisiens peuvent jeter un coup d'oeil \u00e0 https://airparif.asso.fr/ \n\nR\u00e9sumons : \"Il fait beau\" signifie donc une v\u00e9g\u00e9tation qui va souffrir l'\u00e9t\u00e9 prochain, une pollution (qui tue) et des \u00e9missions de CO2 en hausse. Si ces cons\u00e9quences \u00e9taient rappel\u00e9es \u00e0 chaque bulletin m\u00e9t\u00e9o, peut-\u00eatre que cela nous motiverait un peu plus \u00e0 d\u00e9carboner rapidement notre \u00e9conomie, et \u00e0 commencer \u00e0 nous exciter un peu plus s\u00e9rieusement sur la pr\u00e9paration au mieux \u00e0 un climat qui va devenir plus hostile pour tout ce qui pousse.\n\nC'\u00e9taient les bonnes nouvelles du jour :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7031166740042506240,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7031166740847837185,urn:li:activity:7031166740847837185,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 294, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7031166740847837185,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7031166740847837185,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7031166740847837185", + "threadId": "activity:7031166740847837185", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031166740847837185", + "urn": "urn:li:activity:7031166740847837185", + "numComments": 436, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7031166740847837185", + "reactionTypeCounts": [ + { + "count": 7371, + "reactionType": "LIKE" + }, + { + "count": 1640, + "reactionType": "INTEREST" + }, + { + "count": 377, + "reactionType": "APPRECIATION" + }, + { + "count": 247, + "reactionType": "PRAISE" + }, + { + "count": 42, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7031166740847837185", + "numLikes": 9711, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031166740847837185", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 9727, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3d \u2022 ", + "accessibilityText": "3 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7030856557022072832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030856557022072832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030856557022072832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_biodiversit%C3%A9-ni-lampleur-ni-la-rapidit%C3%A9-activity-7030856557022072832-3dG6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7030856556048973824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7030856557022072832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7030856556048973824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "HPvipo61Ig2RzOSLGDbfnA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8887778663049763473", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676616168242?e=1677240000&v=beta&t=30OSGvxwUAC2aVVVpTkCkzWWzoCjnDdu6Cghb7AIOaw", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676616168242?e=1677240000&v=beta&t=UKxp1GGnhnRlJE_fxAIUH7z54q4r3WNjGn4ATx0IHvE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676616168242?e=1677240000&v=beta&t=aikSswvbL8W1dm1x0AEhEx0xHZE9qBFe87c_qfRNiwA", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676616168242?e=1677240000&v=beta&t=nR77RBG9xsy77ILzA15sTImI8zWJXQyQexxLB17u00A", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQEX5Bg_2Ik79Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8887778663049763473)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8887778663049763473)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Biodiversit\u00e9 : \u00ab Ni l\u2019ampleur, ni la rapidit\u00e9, ni le caract\u00e8re syst\u00e9mique de l\u2019\u00e9croulement des insectes n\u2019ont \u00e9t\u00e9 anticip\u00e9s par les scientifiques \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/idees/article/2023/02/12/biodiversite-ni-l-ampleur-ni-la-rapidite-ni-le-caractere-systemique-de-l-ecroulement-des-insectes-n-ont-ete-anticipes-par-les-scientifiques_6161496_3232.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Biodiversit\u00e9\u00a0: \u00ab\u00a0Ni l\u2019ampleur, ni la rapidit\u00e9, ni le caract\u00e8re syst\u00e9mique de l\u2019\u00e9croulement des insectes n\u2019ont \u00e9t\u00e9 anticip\u00e9s par les scientifiques\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7030856556048973824,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 512, + "length": 16, + "miniProfile": { + "firstName": "Stephane", + "lastName": "Foucart", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAABv2IoBn0BOirWMxsoYYR5uscV_zSBgOsQ", + "occupation": "Science correspondent at Le Monde", + "objectUrn": "urn:li:member:7329930", + "entityUrn": "urn:li:fs_miniProfile:ACoAAABv2IoBn0BOirWMxsoYYR5uscV_zSBgOsQ", + "publicIdentifier": "stephane-foucart-a365552", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1671650011916?e=1681948800&v=beta&t=sfTLd37tuMTn6GnoUXgIh3p8Kd1Q8nGH6Jb0NOsYVik", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1671650011916?e=1681948800&v=beta&t=294ugk_qvRG2tyRBFSIp_x6b10jnkKoB_E77n3IvYjU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1671650011916?e=1681948800&v=beta&t=6mVeDPnhS5EiphvG29TceeHVP10ornsRqKhxz_rOQNI", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1671650011916?e=1681948800&v=beta&t=dwsqw7IVhyIFy4qgvPS_VaLwq93SG6umZhm1YhiVNBc", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQGHs1C_06t5hA/profile-displayphoto-shrink_" + } + }, + "trackingId": "1iYcNZb+SDmrDy4EgUTHdw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Ils p\u00e8seraient environ 1 milliard de tonnes, soit autant que la masse combin\u00e9e des humains et de leurs animaux d'\u00e9levage. Qui ? Les arthropodes terrestres, que nous appelons plus commun\u00e9ment les insectes : https://bit.ly/3XpnsYk (car les araign\u00e9es et les mille-pattes ne sont pas des insectes, ces derniers ayant 6 pattes).\n\nPourtant, leurs effectifs sont en baisse rapide. Ils le sont chez nous, mais aussi \"ailleurs\", comme par exemple en Asie : https://bit.ly/3Xto9j4\n\nDans cette tribune parue dans Le Monde, Stephane Foucart, journaliste sciences, rappelle une fois de plus cet effondrement en cours, tout en soulignant que, \u00e0 la diff\u00e9rence du climat, nous n'avons pas de \"ph\u00e9nom\u00e8ne extr\u00eame\" qui survienne de temps \u00e0 autres pour nous r\u00e9veiller un peu (ce qui, m\u00eame pour le climat, est h\u00e9las peu impactant, puisqu'aucun ouragan ou aucune s\u00e9cheresse n'a pour le moment conduit \u00e0 une baisse des \u00e9missions mondiales).\n\nLa cause de cette baisse est connue : ce sont les substances que nous introduisons dans l'environnement pr\u00e9cis\u00e9ment pour supprimer ces bestioles rampantes ou volantes. Depuis les d\u00e9buts de l'agriculture, notre esp\u00e8ce fait tout ce qu'elle a pu pour partager le moins possible le r\u00e9sultat de cette activit\u00e9 avec d'autres esp\u00e8ces.\n\nNous ne souhaitons pas que le champ pr\u00e9vu pour accueillir du bl\u00e9 ou des poireaux accueille aussi des \"mauvaises herbes\", qui captent une partie des nutriments et du soleil : c'est la raison de l'usage des herbicides, qui sont les premiers pesticides utilis\u00e9s en tonnage en France. \n\nNous ne souhaitons pas que les \u00e9pis de ma\u00efs ou les cerises soient partag\u00e9s avec des papillons ou des mouches : c'est la raison de l'usage des insecticides qui permettent d'avoir le produit des cultures \"rien que pour nous\". \n\nLa cons\u00e9quence n'est pas une surprise : les effectifs de ces insectes diminuent. La solution semble donc \u00e9vidente, et sa contrepartie aussi : pour pr\u00e9server les insectes, il faut utiliser moins d'insecticides... et accepter alors de laisser une petite partie de ce que nous cultivons \u00e0 ces animaux, qui serviront eux-m\u00eames de nourriture aux oiseaux et \u00e0 d'autres esp\u00e8ces animales. \n\nCela fera fatalement baisser les rendements agricoles, et donc monter le prix de la nourriture. La bonne question est de savoir si nous \u00e9chapperons de toute fa\u00e7on \u00e0 une hausse de prix pour ce que nous mangeons. Car, sans insectes pollinisateurs, il y aura des baisses de rendement pour un certain nombre de productions, et sans insectes tout court probablement des \"surprises\" pour certains services \u00e9cosyst\u00e9miques dont nous b\u00e9n\u00e9ficions aujourd'hui.\n\nIl est \u00e0 craindre que, pour la biodiversit\u00e9 plus encore que pour le climat, il n'y ait pas d'action \u00e0 large \u00e9chelle tant que nous ne serons pas \"atteints dans notre chair\", avec au surplus la capacit\u00e9 \u00e0 faire le lien entre ce qui nous arrive et la v\u00e9ritable cause. Pour la biodiversit\u00e9 comme pour le climat, un de nos adversaires les plus redoutables est le sentiment que nous avons encore bien le temps." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030856556048973824,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030856557022072832,urn:li:activity:7030856557022072832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 119, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030856557022072832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030856557022072832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7030856557022072832", + "threadId": "activity:7030856557022072832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030856557022072832", + "urn": "urn:li:activity:7030856557022072832", + "numComments": 264, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030856557022072832", + "reactionTypeCounts": [ + { + "count": 3756, + "reactionType": "LIKE" + }, + { + "count": 607, + "reactionType": "INTEREST" + }, + { + "count": 334, + "reactionType": "APPRECIATION" + }, + { + "count": 68, + "reactionType": "PRAISE" + }, + { + "count": 32, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030856557022072832", + "numLikes": 4807, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030856557022072832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4808, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4d \u2022 ", + "accessibilityText": "4 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7030653289532661760", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030653289532661760)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030653289532661760)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_souverainet%C3%A9-et-ind%C3%A9pendance-%C3%A9nerg%C3%A9tique-activity-7030653289532661760-omeJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7030653288962252800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7030653289532661760", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7030653288962252800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "N+CrYXZm6eJvd8/YF/4mIw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:6974363340135969765", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676239082694?e=1677240000&v=beta&t=7HrNYzrmbVTOVl6n6WyGxdqbFLHhwFnda_kFTlalVWk", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676239082694?e=1677240000&v=beta&t=5qq5g4E2fSzkZ8NtHGk588grxIkkqCMacxjWkMpsMb8", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676239082694?e=1677240000&v=beta&t=ymNJHi36buX2txOd83yeD1Bj0t8l8DeULnFoh03nKog", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676239082694?e=1677240000&v=beta&t=g3HH3q2STSeA5DOvGGbRiWOVj1Be_K0Gf2x8iVBWUWY", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQERtm7gKRZcgQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5612499999999999 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6974363340135969765)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6974363340135969765)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "videos.assemblee-nationale.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et M. Olivier Gupta, Directeur g\u00e9n\u00e9ral - Mardi 24 janvier 2023 on videos.assemblee-nationale.fr", + "actionTarget": "https://videos.assemblee-nationale.fr/video.12773673_63cff1a1b41bb.souverainete-et-independance-energetique-de-la-france--m-bernard-doroszczuk-president-de-l-autori-24-janvier-2023" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "- \u00c0 16 heures : - Audition, ouverte \u00e0 la presse, de MM. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et Olivier Gupta, Directeur g\u00e9n\u00e9ral" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et M. Olivier Gupta, Directeur g\u00e9n\u00e9ral - Mardi 24 janvier 2023" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7030653288962252800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A quoi sert l'Autorit\u00e9 de S\u00fbret\u00e9 Nucl\u00e9aire ? Si vous vous \u00eates pos\u00e9 la question un jour, cette vid\u00e9o est faite pour vous. Il s'agit de l'audition du patron de l'ASN dans le cadre des auditions de la \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\".\n\nEn 3 heures de temps, sont pass\u00e9s en revue le mandat et le fonctionnement de cette instance, ses moyens, et l'articulation avec d'autres organismes impliqu\u00e9s dans la s\u00fbret\u00e9 nucl\u00e9aire (comme l'IRSN, qui vient par ailleurs de faire l'objet d'une annonce inattendue de rattachement partiel \u00e0 l'ASN apr\u00e8s cette audition : https://lnkd.in/eQV9WjJU).\n\nEn 3 heures, il y a \u00e9videmment du temps pour aborder des questions un peu techniques, dont les suivantes :\n\n- est-ce le changement de cadre r\u00e9glementaire en cours de route qui explique une partie du retard \u00e0 Flamanville ?\n\n- pourquoi en France les installations doivent \u00eatre conformes \u00e0 l'\u00e9tat de l'art alors qu'aux USA il leur suffit d'\u00eatre conformes \u00e0 leurs sp\u00e9cifications d'origine ?\n\n- l'ASN met-elle en balance la s\u00e9curit\u00e9 d'approvisionnement avec la s\u00fbret\u00e9 nucl\u00e9aire ?\n\n- le niveau de s\u00fbret\u00e9 des installations nucl\u00e9aires fran\u00e7aises s'est-il d\u00e9grad\u00e9 parce que le parc est plus \u00e2g\u00e9 ?\n\n- y a-t-il un risque \u00e0 prolonger les centrales au-del\u00e0 de 40 ans ?\n\n- y a-t-il un risque de pertes de comp\u00e9tences \u00e0 utiliser des sous-traitants dans le nucl\u00e9aire ?\n\n- le parc - actuel ou futur - int\u00e8gre-t-il des mesures d'adaptation au changement climatique ?\n\n- l'EPR est-il un r\u00e9acteur trop compliqu\u00e9 parce qu'il est franco-allemand ?\n\n- la fili\u00e8re est-elle suffisamment attractive pour disposer des comp\u00e9tences qui seront n\u00e9cessaires pour mener un chantier ambitieux de \"renouveau nucl\u00e9aire\" ?\n\n- le pr\u00e9sident de l'ASN voit-il sa responsabilit\u00e9 personnelle n\u00e9cessairement engag\u00e9e en cas d'accident nucl\u00e9aire en France ? (cette question d\u00e9coulait d'une affirmation de Corinne Lepage soutenant que c'\u00e9tait le cas)\n\nDans cette intervention le pr\u00e9sident de l'ASN fait part \u00e0 plusieurs reprises d'une crainte forte : celle d'\u00eatre mis dans la situation o\u00f9 il serait amen\u00e9 \u00e0 choisir entre plonger le pays dans le noir et laisser fonctionner une installation qu'il aurait arr\u00eat\u00e9e \"en temps normal\". Cette situation se pr\u00e9sentera, dit-il, si la politique \u00e9nerg\u00e9tique se base sur des paris incertains ou un d\u00e9faut d'anticipation qui am\u00e8neraient le pays \u00e0 se retrouver sans marges. A bon entendeur..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030653288962252800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030653289532661760,urn:li:activity:7030653289532661760,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 21, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030653289532661760,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030653289532661760,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7030653289532661760", + "threadId": "activity:7030653289532661760", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030653289532661760", + "urn": "urn:li:activity:7030653289532661760", + "numComments": 43, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030653289532661760", + "reactionTypeCounts": [ + { + "count": 545, + "reactionType": "LIKE" + }, + { + "count": 159, + "reactionType": "INTEREST" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030653289532661760", + "numLikes": 728, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030653289532661760", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 728, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6d \u2022 ", + "accessibilityText": "6 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7030130262550147072", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030130262550147072)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030130262550147072)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_des-chercheurs-sugg%C3%A8rent-de-cr%C3%A9er-un-%C3%A9cran-activity-7030130262550147072-8284?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7030130261799366656", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7030130262550147072", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7030130261799366656", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "vIp0Ep1IRcJm9UYLg1husw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7133322728601584016", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676121323841?e=1677240000&v=beta&t=oO_ZoJao1XKyGMkt7M6y3pp-xFTTb2WiJFRtCw7gUJY", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676121323841?e=1677240000&v=beta&t=6p1FvpGlkmRSEhbl51Q-VIQsibkjJYT-pmwtfxwhh3Q", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676121323842?e=1677240000&v=beta&t=-u3RC2pA6kwlY0N5NqV351SfPswMGqlVULy_aStfnwI", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676121323842?e=1677240000&v=beta&t=syLJQzXu0F-CG---m2tCyPYZXtLOwq0tfW0pUN4FCoc", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQH6bX0STNeXig/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7133322728601584016)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7133322728601584016)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "msn.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Des chercheurs sugg\u00e8rent de cr\u00e9er un \u00e9cran de poussi\u00e8re lunaire entre la Terre et le soleil pour att\u00e9nuer le changement climatique by msn.com", + "actionTarget": "https://www.msn.com/fr-fr/actualite/technologie-et-sciences/des-chercheurs-sugg%C3%A8rent-de-cr%C3%A9er-un-%C3%A9cran-de-poussi%C3%A8re-lunaire-entre-la-terre-et-le-soleil-pour-att%C3%A9nuer-le-changement-climatique/ar-AA17iku5" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Des chercheurs sugg\u00e8rent de cr\u00e9er un \u00e9cran de poussi\u00e8re lunaire entre la Terre et le soleil pour att\u00e9nuer le changement climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7030130261799366656,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En route pour la g\u00e9oing\u00e9nierie ! Si nous avons un exc\u00e8s d'effet de serre (= un exc\u00e8s de rayonnement infrarouge en provenance de l'atmosph\u00e8re), il suffit de diminuer un peu le rayonnement solaire re\u00e7u par la plan\u00e8te, et l'ensemble nous remet \u00e0 la bonne temp\u00e9rature. C'est b\u00eate comme chou non ?\n\nUne id\u00e9e pour y parvenir consiste \u00e0 placer entre la terre et le soleil un objet suffisamment vaste, et l\u00e9g\u00e8rement opaque, qui va intercepter une partie du rayonnement solaire et ainsi contribuer \u00e0 \"refroidir la terre\".\n\nLa m\u00e9canique c\u00e9leste nous indique en effet que, sur la ligne qui joint la terre au soleil, il existe un point - appel\u00e9 point de Lagrange - o\u00f9 l'attraction de la terre et celle du soleil dont de m\u00eame intensit\u00e9. Si l'on peut y placer un objet, ce dernier y reste (il est \"tir\u00e9 de chaque c\u00f4t\u00e9\" avec une force \u00e9gale), et se met alors \u00e0 orbiter autour du soleil \u00e0 la m\u00eame vitesse que la terre. \n\nIl y a donc p\u00e9riodiquement l'id\u00e9e de placer \u00e0 cet endroit de quoi rafra\u00eechir notre plan\u00e8te : de grands miroirs, ou, r\u00e9cemment, un nuage de poussi\u00e8re r\u00e9fl\u00e9chissante (https://bit.ly/3RYkybW ). A partir du pouvoir r\u00e9flexif des particules de poussi\u00e8re et de leur densit\u00e9, les chercheurs ont calcul\u00e9 qu'avec 10 millions de tonnes de poussi\u00e8re on pourrait diminuer la puissance solaire d'un peu moins de 2%. \n\nLa puissance solaire re\u00e7ue au niveau du sol \u00e9tant de 170 watts par m2 en moyenne (sur toute a surface et toute l'ann\u00e9e), 2% en moins ca fait 3 watts par m2, soit \u00e0 peu pr\u00e8s le for\u00e7age actuellement du au suppl\u00e9ment humain d'effet de serre. CQFD.\n\nSauf que... 10 Mt repr\u00e9senterait 700 fois la masse combin\u00e9e de tout ce que les humains ont envoy\u00e9 dans l'espace depuis le d\u00e9but des fus\u00e9es. Si ca fait trop depuis la Terre, partons de la Lune ! Car en plus sur notre satellite il y a de la poussi\u00e8re \u00e0 volont\u00e9... Il n'y a qu'\u00e0 y construire une base permanente, et y d\u00e9velopper une industrie permettant de fabriquer fus\u00e9es et carburant \u00e0 partir de mat\u00e9riaux locaux et de rayonnement solaire (pour \u00e9viter d'amener sur la lune le poids des fus\u00e9es+carburants depuis la terre, ce qui \"ram\u00e8nerait au probl\u00e8me pr\u00e9c\u00e9dent\"). Une formalit\u00e9 :)\n\nPar ailleurs en arrivant au point de Lagrange les grains de poussi\u00e8re ont une \u00e9nergie cin\u00e9tique (la \"vitesse\" qui leur a permis de se d\u00e9placer depuis le point de lancement) et pas de p\u00e9dale de frein : ils ne peuvent \u00eatre \"arr\u00eat\u00e9s\" au bon endroit. Pire : si la position initiale d'un grain de poussi\u00e8re \"arr\u00eat\u00e9\" est \u00e9loign\u00e9e d'un km du point de Lagrange, au bout d'un an il se sera \u00e9loign\u00e9 \u00e0 plus de 1000 km du point en question (c'est un \u00e9quilibre metastable). Il faudrait donc r\u00e9alimenter ce nuage en permanence.\n\nQu'en d\u00e9duire ? Que la conclusion \u00e9vidente \u00e0 tirer de ce papier est que cette solution ne sera jamais \u00e0 l'\u00e9chelle. C'est pourtant l'inverse que laissent penser quelques titres \u00e0 sensation relev\u00e9s ici ou l\u00e0. Avis aux journalistes qui ont relay\u00e9 ou veulent le faire : commencez par lire les petites lignes, comme avec les contrats d'assurance..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030130261799366656,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030130262550147072,urn:li:activity:7030130262550147072,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 206, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030130262550147072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030130262550147072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7030130262550147072", + "threadId": "activity:7030130262550147072", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030130262550147072", + "urn": "urn:li:activity:7030130262550147072", + "numComments": 439, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030130262550147072", + "reactionTypeCounts": [ + { + "count": 1868, + "reactionType": "LIKE" + }, + { + "count": 414, + "reactionType": "INTEREST" + }, + { + "count": 49, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "EMPATHY" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030130262550147072", + "numLikes": 2368, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030130262550147072", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2564, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6d \u2022 Edited \u2022 ", + "accessibilityText": "6 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7029872348539314176", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029872348539314176)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029872348539314176)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_agriculture-et-climat-lurgence-de-sadapter-activity-7029872348539314176-51Dz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7029872347792691200", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7029872348539314176", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7029872347792691200", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "CRcmUtz5TOz5mzyPoQ6vMw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7517892329526013595", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676144116328?e=1677240000&v=beta&t=_OizRdJU7RJ_j74QoFS51PZZCWTh1nd6IL9QbKSKKcg", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676144116328?e=1677240000&v=beta&t=lkcH_OJjERDu7rIMigDWnMRe3J7JbwJwJ8fLTcay2No", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676144116328?e=1677240000&v=beta&t=7cAetDuhYdYHQ8-Kd9S5iq4wVHI4Fl5DdhNe5CNrnxc", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676144116328?e=1677240000&v=beta&t=dgD1rkEs5dnpqHwGL4Oar4GqaG3hCZQyxelvIPj4Uwk", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFDOjF-xY0lYQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7517892329526013595)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7517892329526013595)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Agriculture et climat : l\u2019urgence de s\u2019adapter ! | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-agriculture-climat-adaptation" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Agriculture et climat : l\u2019urgence de s\u2019adapter ! | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7029872347792691200,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "2022 ne restera pas dans les m\u00e9moires des agriculteurs comme une ann\u00e9e tr\u00e8s sympathique. Au mieux les cultures n'ont pas souffert par rapport \u00e0 2021, et au pire elles ont connu une baisse de rendement, de l'ordre de 15% pour le ma\u00efs ou le soja.\n\nMais c'est surtout sur l'herbe, qui fait l'objet de peu de syst\u00e8mes irrigu\u00e9s, que la chute a \u00e9t\u00e9 la plus forte : il y a eu un d\u00e9ficit de production des p\u00e2turages d'un tiers par rapport \u00e0 la moyenne 1989 - 2018, ce qui a fortement baiss\u00e9 une partie de la production de fromage AOP (par exemple pas de Salers cet \u00e9t\u00e9).\n\nCet article de Carbone 4 vous propose un petit tour d'horizon de l'ann\u00e9e \u00e9coul\u00e9e, compl\u00e9t\u00e9e par une analyse prospective sur 4 d\u00e9partements du Sud-Ouest (Aveyron, Tarn, Tarn-et-Garonne et Lot).\n\nA cause de l'inertie de la d\u00e9rive climatique (qui s'amplifie tant que les \u00e9missions mondiales nettes ne sont pas nulles), les situations adverses vont se multiplier, et il est plus que temps de r\u00e9fl\u00e9chir \u00e0 ce que nous allons faire en face, surtout qu'\u00e0 l'horizon de quelques d\u00e9cennies il va aussi y avoir un sujet sur la disponibilit\u00e9 de l'\u00e9nergie fossile, qui est partout dans les cultures : pour fabriquer les engrais azot\u00e9s, pour les amener dans les champs, pour faire avancer les tracteurs, pour faire avancer les camions \u00e0 l'aval du champ, pour faire tourner le secteur agroalimentaire.... \n\nL'agriculture est par ailleurs un syst\u00e8me humainement inerte : les actifs y aiment les traditions (ce qui est une mani\u00e8re de dire qu'ils n'aiment pas le changement !), la rotation du capital y est lente, et enfin y faire venir du monde ne se fait pas en un claquement de doigts.\n\nPour minimiser les d\u00e9g\u00e2ts, le ma\u00eetre mot, l\u00e0 comme ailleurs, est donc l'anticipation. Mais comment anticiper alors que nous avons b\u00e2ti un syst\u00e8me \u00e9conomique et r\u00e9glementaire dont la premi\u00e8re priorit\u00e9 est de tirer les prix vers le bas - ce qui prive le secteur de moyens d'investissement - sur la base de la comp\u00e9tition - qui raccourcit les horizons de temps - et pas du tout d'assurer la p\u00e9rennit\u00e9 physique d'un syst\u00e8me r\u00e9silient ?\n\nLe secteur agricole n'est ni assez riche ni assez libre de ses mouvements pour d\u00e9cider en toute autonomie de moyens de \"faire ce qu'il faut\" pour rendre son activit\u00e9 la plus r\u00e9siliente possible, tout en abaissant la pression environnementale (\u00e9missions de gaz \u00e0 effet de serre, phytosanitaires) dont il est \u00e0 l'origine. Rappelons qu'il ne b\u00e9n\u00e9ficie aujourd'hui que de 2% des revenus \u00e9conomiques du pays, ce qui est peu pour un secteur dont 100% des autres activit\u00e9s d\u00e9pendent. \n\nSi nous voulons une agriculture \u00e0 la fois plus r\u00e9siliente face \u00e0 l'amplification de la d\u00e9rive climatique \u00e0 venir et moins perturbatrice ce l'environnement, il y a un \u00e9l\u00e9ment que nous allons difficilement pouvoir \u00e9viter : d\u00e9cider de payer la nourriture plus cher. Sinon c'est ce qui finira par arriver de toute fa\u00e7on, mais de mani\u00e8re moins bien organis\u00e9e !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029872347792691200,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029872348539314176,urn:li:activity:7029872348539314176,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029872348539314176,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029872348539314176,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7029872348539314176", + "threadId": "activity:7029872348539314176", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029872348539314176", + "urn": "urn:li:activity:7029872348539314176", + "numComments": 102, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029872348539314176", + "reactionTypeCounts": [ + { + "count": 1063, + "reactionType": "LIKE" + }, + { + "count": 158, + "reactionType": "INTEREST" + }, + { + "count": 37, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029872348539314176", + "numLikes": 1283, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029872348539314176", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1283, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7029567522739773440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029567522739773440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029567522739773440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_abandoned-farm-fields-take-decades-to-recover-activity-7029567522739773440-WGjz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7029567522039308288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7029567522739773440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7029567522039308288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "bLNlO8AYaxYZgYBQEQmukg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7867305761321344434", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676524860543?e=1677240000&v=beta&t=S9NYAsadUBfk0HkSWHqt75uF6WQlvgKRrujz2pHRpAw", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676524860543?e=1677240000&v=beta&t=wlfUMYlmzAlWPPbxFzPJy-iEuV_R3p6aLudbyTYeSBQ", + "expiresAt": 1677240000000, + "height": 667 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676524860544?e=1677240000&v=beta&t=5qGbWHjSz7hvBMWxWFT24DdVBWdXCF_KGJoxLGzDjv4", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676524860544?e=1677240000&v=beta&t=5eq6JdjmqX7uisUnZEcpSgG2jJIBr9fkyzriTG4ywFA", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D5627AQE6di4YUuavCg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7867305761321344434)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7867305761321344434)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "modernfarmer.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Abandoned Farm Fields Take Decades to Recover Biodiversity\u2014If They Can At All - Modern Farmer by modernfarmer.com", + "actionTarget": "https://modernfarmer.com/2023/02/grassland-recovery/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Abandoned Farm Fields Take Decades to Recover Biodiversity\u2014If They Can At All - Modern Farmer" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7029567522039308288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La biodiversit\u00e9 est-elle r\u00e9siliente ? Dit autrement, si l'on se met \u00e0 \"laisser en paix\" un endroit qui \u00e9tait autrefois perturb\u00e9 par les activit\u00e9s humaines, est-ce que la biodiversit\u00e9 revient au niveau qu'elle aurait eu si nous n'avions jamais touch\u00e9 \u00e0 rien ?\n\nCela n'est pas garanti, indique une \u00e9tude parue dans Journal of Ecology (https://lnkd.in/e7G9q24e ), qui a examin\u00e9 le nombre et l'abondance des esp\u00e8ces sur des parcelles de prairie situ\u00e9es aux USA et anciennement agricoles qui ont \u00e9t\u00e9 laiss\u00e9es \"\u00e0 l'abandon\" depuis 3 ans \u00e0 presque un si\u00e8cle. \n\nSur aucune des parcelles les esp\u00e8ces n'\u00e9taient au niveau de ce que l'on trouvait sur des prairies identiques n'ayant jamais \u00e9t\u00e9 exploit\u00e9s pour l'agriculture. Une soixantaine de plantes poussant sur les prairies \"primaires\" ne s'observaient sur aucune des parcelles de prairie \"secondaire\", m\u00eame au bout de plusieurs d\u00e9cennies. En moyenne, un tiers des esp\u00e8ces manque \u00e0 l'appel sur les parcelles ayant \u00e9t\u00e9 cultiv\u00e9es par rapport \u00e0 celles ne l'ayant jamais \u00e9t\u00e9. \n\nPour beaucoup d'entre nous, il y a l'id\u00e9e de r\u00e9versibilit\u00e9 dans l'\u00e9tat des \u00e9cosyst\u00e8mes : si la pression qui a conduit \u00e0 la baisse de la biodiversit\u00e9 est all\u00e9g\u00e9e ou supprim\u00e9e, alors la biodiversit\u00e9 se r\u00e9tablit pour l'essentiel. Cette \u00e9tude montre que la r\u00e9alit\u00e9 n'est pas si simple, et que la recolonisation d'un \u00e9cosyst\u00e8me d\u00e9grad\u00e9 n'est pas n\u00e9cessairement automatique.\n\nEn outre cette \u00e9tude a \u00e9t\u00e9 men\u00e9e avec une d\u00e9rive climatique limit\u00e9e : pour les esp\u00e8ces v\u00e9g\u00e9tales qui avaient \u00e9t\u00e9 supprim\u00e9es par l'exploitation agricole, le climat d'aujourd'hui est encore relativement proche de celui qui existait au moment de la mise de la prairie en culture. \n\nMais \u00e0 l'avenir le climat existant au moment de l'arr\u00eat de la pression sera de plus en plus diff\u00e9rent de celui qui existait au moment du d\u00e9marrage de la pression. La question de la r\u00e9versibilit\u00e9 sera n\u00e9cessairement encore plus pos\u00e9e dans ce contexte.\n\nCe que sugg\u00e8re l'article dans sa partie finale est de donner un \"coup de pouce\" \u00e0 la restauration de la biodiversit\u00e9, par exemple en plantant des graines des esp\u00e8ces qui ont du mal \u00e0 revenir spontan\u00e9ment. \n\nEn somme, la proposition est de corriger la baisse de la biodiversit\u00e9 caus\u00e9e par l'agriculture par... une autre forme d'agriculture ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029567522039308288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029567522739773440,urn:li:activity:7029567522739773440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 111, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029567522739773440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029567522739773440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7029567522739773440", + "threadId": "activity:7029567522739773440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029567522739773440", + "urn": "urn:li:activity:7029567522739773440", + "numComments": 153, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029567522739773440", + "reactionTypeCounts": [ + { + "count": 1598, + "reactionType": "LIKE" + }, + { + "count": 604, + "reactionType": "INTEREST" + }, + { + "count": 22, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029567522739773440", + "numLikes": 2254, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029567522739773440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2256, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7029152901151227904", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029152901151227904)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029152901151227904)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_r%C3%A9chauffement-climatique-christophe-b%C3%A9chu-activity-7029152901151227904-Ko6p?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7029152900555665408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7029152901151227904", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7029152900555665408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "89aYakDUaEfhjtrtZD5glQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7714865795466691610", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676104521119?e=1677240000&v=beta&t=qFR-DbsPypP9HON0uLf_iXeoN9A2eK_48ZIPP7b8lac", + "expiresAt": 1677240000000, + "height": 468 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676104521119?e=1677240000&v=beta&t=INp-tw69neKrCL7lknXMWaz0sexDp2KP_PDX9fyDbTU", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676104521119?e=1677240000&v=beta&t=6MdM-QlBFD29SovmAYHX19YGGC9GPHxwccdgC6T9dfY", + "expiresAt": 1677240000000, + "height": 93 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676104521119?e=1677240000&v=beta&t=0rn5ttLSlJ_X4r4N1vAy1BUUwIgsBN26Curx-kXJCMY", + "expiresAt": 1677240000000, + "height": 281 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQGv6oPpoZDTJg/articleshare-shrink_" + }, + "displayAspectRatio": 0.585 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7714865795466691610)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7714865795466691610)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemans.maville.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: R\u00e9chauffement climatique. Christophe B\u00e9chu demande la prise en compte d\u2019un sc\u00e9nario \u00e0 by lemans.maville.com", + "actionTarget": "https://lemans.maville.com/actu/actudet_-rechauffement-climatique.-christophe-bechu-demande-la-prise-en-compte-d-un-scenario-a-+-4-c-_54135-5613674_actu.Htm" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "R\u00e9chauffement climatique. Christophe B\u00e9chu demande la prise en compte d\u2019un sc\u00e9nario \u00e0" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7029152900555665408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'automobiliste qui boucle sa ceinture s'attend-il \u00e0 avoir un accident ? Le particulier qui paye sa prime d'assurance contre l'incendie s'attend-il \u00e0 voir son domicile en proie aux flammes ? Le navigateur qui enfile son gilet de sauvetage \u00e0 finir par-dessus bord ?\n\nLorsque le coup du sort est possible, la prudence veut que l'on prenne ses pr\u00e9cautions, pour parer des \u00e9ventualit\u00e9s alors m\u00eame que la personne qui est victime n'est pas en d\u00e9faut sur son propre comportement (comme un conducteur saoul qui ne vous a pas vu ou un coup de foudre).\n\nIl en va de m\u00eame pour le climat. Si l'\u00e9volution des conditions climatiques en France ne d\u00e9pendait que des \u00e9missions fran\u00e7aises (une chose que pensait un ministre que j'ai rencontr\u00e9 dans le gouvernement Macron I, accessoirement), on pourrait consid\u00e9rer que de pr\u00e9parer le pays \u00e0 une \u00e9volution climatique \"incompatible accords de Paris\" est une d\u00e9mission.\n\nMais ce que sera le climat de la France en 2100 d\u00e9pend avant tout de ce que vont \u00e9mettre tous les autres pays que le n\u00f4tre d'ici \u00e0 2100. Avons nous de la prise dessus ? La r\u00e9ponse est oui pour partie : d'une part l'humain est animal mim\u00e9tique (merci la mode pour nous le rappeler !), et d'autre part si nous trouvons des \"solutions\" chez nous nous pourrons ensuite les exporter.\n\nMais nous avons au mieux un pouvoir d'influence et non un pouvoir absolu. La prudence veut donc que l'on ait un plan B si la baisse des \u00e9missions ne va pas assez vite dans le monde (et actuellement elle ne va pas assez vite...). \n\nEn pratique, avoir ce plan B signifie \"durcir\" tout ce que nous pouvons durcir en France pour r\u00e9sister au mieux \u00e0 des conditions climatiques qui d\u00e9riveraient fortement par rapport au sc\u00e9nario \"id\u00e9al\" d'une hausse limit\u00e9e \u00e0 1,5 \u00b0C dans le monde (ce qui signifie plus en France car les terres \u00e9merg\u00e9es se r\u00e9chauffent plus vite que la moyenne).\n\nCe n'est pas une fois que la situation est \"cata\" que nous aurons la possibilit\u00e9 d'avoir en une semaine une for\u00eat constitu\u00e9e des bonnes esp\u00e8ces, des cultures r\u00e9sistant aux canicules ou hivers doux, des infrastructures et des voies de communication en \u00e9tat de fonctionner, ou encore des logements qui ne soient pas des fournaises.\n\nLe principe m\u00eame de s'y prendre maintenant pour \u00eatre \"pr\u00eat\" dans 50 ans, et d'utiliser d'un sc\u00e9nario tr\u00e8s adverse est donc une bonne chose : cela s'appelle de la prudence. \n\nPour passer \u00e0 l'action, il va d'abord falloir mod\u00e9liser pour chaque acteur les cons\u00e9quences possibles de 4\u00b0C de r\u00e9chauffement en France. Que risque un bailleur social ? Une installation industrielle ? Un pont ? Un r\u00e9seau d'eau ? Un agriculteur ? Un r\u00e9seau de communications ? Un h\u00f4pital ? \n\nPuis il faudra ensuite imaginer les moyens d'y r\u00e9pondre (et parfois le seul sera l'abandon...) et enfin les mettre en oeuvre.\n\nTout cela demandera des moyens intellectuels puis mat\u00e9riels (et donc des sous). Sans obligation s\u00e9rieuse de la puissance publique, il est peu probable qu'ils arrivent tous seuls \u00e0 la bonne vitesse !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029152900555665408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029152901151227904,urn:li:activity:7029152901151227904,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 90, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029152901151227904,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029152901151227904,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7029152901151227904", + "threadId": "activity:7029152901151227904", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029152901151227904", + "urn": "urn:li:activity:7029152901151227904", + "numComments": 167, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029152901151227904", + "reactionTypeCounts": [ + { + "count": 1520, + "reactionType": "LIKE" + }, + { + "count": 221, + "reactionType": "INTEREST" + }, + { + "count": 70, + "reactionType": "PRAISE" + }, + { + "count": 29, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029152901151227904", + "numLikes": 1858, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029152901151227904", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1861, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7028725477036969984", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7028725477036969984)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7028725477036969984)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-danemark-et-totalenergies-acc%C3%A9l%C3%A8rent-sur-activity-7028725477036969984-M7II?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7028725474373574656", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7028725477036969984", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7028725474373574656", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "UphDjMaZsHu1mUrziBOIaA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8168114166776751448", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675778791122?e=1677240000&v=beta&t=kFtGANzAa7XLEWR5j6xAVHKmvWAVPe1iEgMPOOBP-CY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675778791122?e=1677240000&v=beta&t=re6knlcLcthhnCd7O8LIiQGGcsJe7Smh-Mle2Tbbpn4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675778791122?e=1677240000&v=beta&t=pTo6ITl13Z-YbislXXt-3Jkzrrf0tkDT9LX8dt_rOrM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675778791122?e=1677240000&v=beta&t=nkKsJHpM0KACVI6goA6MI6XuhoYeBrzxCKLbj6435VI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQHRbnwo7trS3g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8168114166776751448)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8168114166776751448)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Danemark et TotalEnergies acc\u00e9l\u00e8rent sur le stockage de CO2 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/le-danemark-et-totalenergies-accelerent-sur-le-stockage-de-co2-1903841" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Danemark et TotalEnergies acc\u00e9l\u00e8rent sur le stockage de CO2" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7028725474373574656,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Une des solutions qui permettrait d'utiliser des combustibles fossiles sans d\u00e9ranger le climat s'appelle la capture et s\u00e9questration du CO2 (en anglais CCS pour Carbon Capture and Sequestration), et passe par les op\u00e9rations suivantes :\n\n- on \"attrape\" le CO2 d'une installation de combustion avant qu'il ne s'\u00e9chappe dans l'atmosph\u00e8re. Pour cela la fum\u00e9e barbote dans un liquide sp\u00e9cial - g\u00e9n\u00e9ralement des amines - qui va \"accrocher\" les mol\u00e9cules de CO2 (on parle d'adsorption) et laisser partir le reste.\n\n- le CO2 est r\u00e9cup\u00e9r\u00e9 en faisant chauffer la solution qui l'a adsorb\u00e9,\n\n- il est compress\u00e9, transport\u00e9 dans un tuyau et enfin inject\u00e9 sous forme supercritique (une forme interm\u00e9diaire entre le gaz et le liquide) sous le sol dans une formation g\u00e9ologique dont il ne sortira plus\n\nCette op\u00e9ration n'a de sens que pour des installation fixes importantes (centrales \u00e0 charbon ou \u00e0 gaz, cimenteries ou aci\u00e9ries). La capture demande 20% \u00e0 30% de l'\u00e9nergie du site, et fait baisser la production (d'\u00e9lectricit\u00e9, d'acier...) d'autant. C'est de loin la premi\u00e8re barri\u00e8re \u00e0 l'utilisation de ce proc\u00e9d\u00e9.\n\nIl faut ensuite trouver o\u00f9 injecter ce CO2. Les anciens gisements de p\u00e9trole et de gaz sont une premi\u00e8re possibilit\u00e9. Ce sont de bons candidats, car, avant exploitation, ils \u00e9taient aptes \u00e0 retenir longtemps au m\u00eame endroit du liquide et du gaz sous pression. Il faut juste v\u00e9rifier que les forages d'exploitation (normalement scell\u00e9s \u00e0 la fin de vie du gisement) ne changent pas l'\u00e9tanch\u00e9it\u00e9.\n\nLes aquif\u00e8res souterrains - un m\u00e9lange de roche et d'eau - sont une deuxi\u00e8me possibilit\u00e9. Le CO2 inject\u00e9 finit par se dissoudre puis se transformer lentement en carbonates avec le temps.\n\nLes p\u00e9troliers connaissent assez bien l'injection du CO2 sous le sol :\n- dans beaucoup de gisements p\u00e9troliers le fait d'injecter du CO2 permet de mieux \"laver\" le gisement. En pareil cas le moteur de l'action n'est donc pas la vertu environnementale mais tout simplement l'augmentation du p\u00e9trole produit !\n- le gaz naturel extrait de terre contient toujours un peu de CO2, et ce dernier doit \u00eatre enlev\u00e9 avant le transport par gazoduc, sinon il y a un risque fort de corrosion des infrastructures (la pr\u00e9sence simultan\u00e9e d'eau et de CO2 cr\u00e9e un m\u00e9lange acide). Les op\u00e9rateurs doivent donc s\u00e9parer le gaz du CO2 en t\u00eate de puits, et en Norv\u00e8ge ce CO2 doit \u00eatre r\u00e9inject\u00e9 sinon le p\u00e9trolier paye une p\u00e9nalit\u00e9 \u00e0 la tonne. \n\nCe n'est donc pas un hasard si Total - un p\u00e9trolier - et le Danemark - la Mer du Nord - regardent ensemble ce qu'ils pourraient mettre comme CO2 sous la mer. Il reste \u00e0 trouver des industriels acceptant d'investir pour capturer le CO2 \u00e0 la source et \u00e0 se faire payer pour ca. \n\nOn parle potentiellement de 10 Mt de CO2 par an, soit 500 M\u20ac/an environ au cours actuel du CO2. C'est assez d'argent pour que ca vaille le coup de reconvertir une plate-forte, mais cela \u00e9vitera juste les \u00e9missions d'une centrale \u00e0 charbon. On ne va pas pouvoir compter que sur ca !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7028725474373574656,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7028725477036969984,urn:li:activity:7028725477036969984,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 107, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7028725477036969984,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7028725477036969984,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7028725477036969984", + "threadId": "activity:7028725477036969984", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028725477036969984", + "urn": "urn:li:activity:7028725477036969984", + "numComments": 201, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7028725477036969984", + "reactionTypeCounts": [ + { + "count": 1963, + "reactionType": "LIKE" + }, + { + "count": 579, + "reactionType": "INTEREST" + }, + { + "count": 129, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7028725477036969984", + "numLikes": 2707, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028725477036969984", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2710, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:39029", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "FZQ9bvleTOaraoZxrgnIKw==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "FZQ9bvleTOaraoZxrgnIKw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "L'Express" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 Edited \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: L'Express", + "actionTarget": "https://www.linkedin.com/company/lexpress/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A39029" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "55,114 followers" + }, + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:39029", + "followerCount": 55114, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:39029", + "following": false, + "trackingUrn": "urn:li:company:39029" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followCompany" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:7028059990707838976", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7028059990707838976)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7028059990707838976)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/lexpress_jancovici-linfluent-gourou-du-climat-activity-7028059990707838976-RQxN?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7028059989986430976", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:39029", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7028059989986430976", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "uU0PatgX1BCVWL/3AM9fTw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7697564446898559605", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675620078165?e=1677240000&v=beta&t=l9Jj0dkoYOdfshI4QGzA1u72egpBdnceYOYuT8EUWUo", + "expiresAt": 1677240000000, + "height": 689 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675620078165?e=1677240000&v=beta&t=Qgvz_4cFjYvwvGSnGtQ38ZxvPJyp2G_KrgIpQ8EczlE", + "expiresAt": 1677240000000, + "height": 258 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675620078165?e=1677240000&v=beta&t=sH75AxOWezsv9WN4PWAUHXcB_WZD8C2sBODfgweCZhw", + "expiresAt": 1677240000000, + "height": 86 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675620078165?e=1677240000&v=beta&t=yS43L0iEGdYXMkx4L8KxdoYTvqaieG3NkHmfh__hTi4", + "expiresAt": 1677240000000, + "height": 431 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E34AQGIjXrLZwZ7TA/ugc-proxy-shrink_" + }, + "displayAspectRatio": 0.53828125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7697564446898559605)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7697564446898559605)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lexpress.fr \u2022 10 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jancovici, l'influent gourou du climat : ses liens avec Hulot, son film r\u00eav\u00e9 avec Besson, ses r\u00e9seaux by lexpress.fr", + "actionTarget": "https://www.lexpress.fr/politique/jancovici-linfluent-gourou-du-climat-ses-liens-avec-hulot-son-film-reve-avec-besson-ses-reseaux-YGVZI5C26FAGNBBLB5MKBR5S5Q/?utm_medium=Social&utm_source=LinkedIn#Echobox=1675616762-2" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jancovici, l'influent gourou du climat : ses liens avec Hulot, son film r\u00eav\u00e9 avec Besson, ses r\u00e9seaux" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7028059989986430976,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 52, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 886, + "length": 12, + "miniProfile": { + "firstName": "Emilie", + "lastName": "LANEZ", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABHRrtsBMC8nh_z8X50VQpbmZDi4bHNYSqQ", + "occupation": "Grand reporter", + "objectUrn": "urn:li:member:298954459", + "entityUrn": "urn:li:fs_miniProfile:ACoAABHRrtsBMC8nh_z8X50VQpbmZDi4bHNYSqQ", + "publicIdentifier": "emilie-lanez", + "trackingId": "02VmTAu4RLySogu+fK/Ohg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Longtemps seul contre tous \u00e0 d\u00e9fendre le nucl\u00e9aire, Jean-Marc Jancovici est convaincu d\u2019avoir toujours eu raison. En partie vrai.\n\nMal l\u00e9ch\u00e9 et brillantissime, talentueux et bougon, d\u00e9daigneux et populaire : qui est cette idole des trentenaires urbains, qu\u2019Edouard Philippe re\u00e7oit \u00e0 d\u00e9jeuner dans sa th\u00e9ba\u00efde du Havre, que Bruno Le Maire \u00e9coute, que Gabriel Attal invite, que la d\u00e9put\u00e9e \u00e9colo Delphine Batho cite, que Julien Aubert, vice-pr\u00e9sident LR consulte, que le math\u00e9maticien et ancien d\u00e9put\u00e9 C\u00e9dric Villani r\u00e9v\u00e8re et que Marine Tondelier, nouvelle patronne des Verts, accuse publiquement d\u2019\u00eatre un \"menteur\" ?\n\nFaut-il se r\u00e9jouir qu\u2019enfin notre franchouillard Greta Thunberg \u00e9lectrise des cohortes de cadres sup accroch\u00e9s \u00e0 leur bagnole et mangeant des fraises en hiver ? D\u2019o\u00f9 vient ce ph\u00e9nom\u00e8ne ?\n\nEnqu\u00eate sur un sexag\u00e9naire ronchon et pessimiste devenu l\u2019idole des jeunes, par Emilie LANEZ \u2935\ufe0f" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7028059989986430976,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7028059990707838976,urn:li:activity:7028059990707838976,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7028059990707838976,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7028059990707838976,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7028059990707838976", + "threadId": "activity:7028059990707838976", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028059990707838976", + "urn": "urn:li:activity:7028059990707838976", + "numComments": 103, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7028059990707838976", + "reactionTypeCounts": [ + { + "count": 219, + "reactionType": "LIKE" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "INTEREST" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7028059990707838976", + "numLikes": 237, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028059990707838976", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 244, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:7028122019623772160", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7028122019623772160)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7028122019623772160)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-linfluent-gourou-du-climat-activity-7028122019623772160-KtIx?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7028122018780708864", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7028122019623772160", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7028122018780708864", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "uU0PatgX1BCVWL/3AM9fTw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7028122018780708864,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 50, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "+YzNsprqQSqE4myg2F7O/g==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 807, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "dIylY3nRTLeTtnkui0Iryw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Il y a une grosse heure, j'ai comment\u00e9 ce post de L'Express pour corriger une affirmation erron\u00e9e contenue dans ce portrait auquel je n'ai pas contribu\u00e9 (le commentaire expliquait justement pourquoi).\n\nL'Express ayant supprim\u00e9 mon commentaire peu apr\u00e8s, je le reproduis donc en post. Je dois dire que je ne comprends pas ce qui motiv\u00e9 cette suppression : soit la personne de permanence sur le compte linkedin de l'Express un Dimanche soir regardait la t\u00e9l\u00e9 sans faire attention \u00e0 ce qu'elle faisait, soit elle a laiss\u00e9 le clavier \u00e0 son enfant de 2 ans, soit... le vilain mot de censure vient \u00e0 l'esprit, ce qui pour un media d'une d\u00e9mocratie ne serait pas terrible. Je suis volontiers preneur de l'explication si le journal veut bien me la fournir. \n\nVoici donc mot \u00e0 mot le commentaire que j'avais mis :\n\n\"L'Express la cause invoqu\u00e9e dans ce portrait pour mon refus de parler \u00e0 la journaliste est erron\u00e9e : j'ai d\u00e9clin\u00e9 avant tout parce que je consid\u00e8re que les portraits sont contreproductifs, et non d'abord par manque de temps.\n\nJ'ai expliqu\u00e9 par mail \u00e0 la journaliste que le \"portrait\" focalisait le propos sur le messager (qui est secondaire) et non sur le message, qu'il donnait toujours l'impression d'un parcours solitaire alors que tout travail se fait en \u00e9quipe, et enfin qu'il \u00e9tait par construction b\u00e2ti sur des points saillants (pour lesquels c'est facile de mettre des \u00e9tiquettes pour ou contre) qui crispent le d\u00e9bat alors que nous avons besoin de nous parler. J'ai ajout\u00e9 qu'en cons\u00e9quence je ne souhaitais pas y passer du temps. \n\nC'est pour le m\u00eame genre de raison que je n'avais pas envie d'\u00eatre nomm\u00e9 \"personnalit\u00e9 de l'ann\u00e9e\" : ce n'est pas sur moi qu'il faut concentrer les moyens \u00e9ditoriaux mais sur le fond. \n\nLe r\u00e9sultat me donne h\u00e9las raison : je ne vois pas en quoi cet article va aider la prise de d\u00e9cision pour notre avenir. Il servira au mieux \u00e0 alimenter \"ma\" page wikipedia (dont je n'ai pas \u00e9crit une ligne) o\u00f9, la derni\u00e8re fois que j'ai regard\u00e9, j'ai compt\u00e9 plus de 90 erreurs factuelles ou d'interpr\u00e9tation.\"\n\nMon commentaire ne caresse pas le magazine dans le sens du poil, mais il fait partie d'un droit de r\u00e9ponse normal, et je n'ai pas l'impression qu'il soit injurieux ou insultant. Sa suppression reste donc une \u00e9nigme. \n\nPuisqu'un post offre plus de place qu'un commentaire j'en profite pour rajouter deux \u00e9l\u00e9ments.\n\n1 - Mon temps professionnel est essentiellement affect\u00e9 (dans cet ordre) au quotidien de Carbone 4, \u00e0 celui du Shift Project, \u00e0 des conf\u00e9rences et interventions, et \u00e0 des publications. Les media et les politiques sont marginaux en termes de temps pass\u00e9. Ce portrait ne mentionne ni C4 ni The Shift Project...\n\n2 - c'est \u00e0 nouveau le nucl\u00e9aire qui m'est coll\u00e9 sur la figure comme \"premier \u00e9l\u00e9ment distinctif\". Il suffit pourtant d'\u00e9couter n'importe laquelle de mes conf\u00e9rences (https://bit.ly/3l9HEzR ) pour voir que cela ne correspond pas \u00e0 mon discours. Mais \"pronucl\u00e9aire\" ca doit faire plus de clics que \"vulgarisateur\"..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7028122018780708864,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7028122019623772160,urn:li:activity:7028122019623772160,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 284, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7028122019623772160,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7028122019623772160,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7028122019623772160", + "threadId": "activity:7028122019623772160", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028122019623772160", + "urn": "urn:li:activity:7028122019623772160", + "numComments": 398, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7028122019623772160", + "reactionTypeCounts": [ + { + "count": 8811, + "reactionType": "LIKE" + }, + { + "count": 767, + "reactionType": "PRAISE" + }, + { + "count": 660, + "reactionType": "APPRECIATION" + }, + { + "count": 163, + "reactionType": "INTEREST" + }, + { + "count": 72, + "reactionType": "MAYBE" + }, + { + "count": 72, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7028122019623772160", + "numLikes": 10545, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028122019623772160", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 10572, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7027994566683193344", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7027994566683193344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7027994566683193344)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_m%C3%A9tro-rer-val%C3%A9rie-p%C3%A9cresse-cherche-des-activity-7027994566683193344-utYA?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7027994565676527616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7027994566683193344", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7027994565676527616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "WMxMp1doiWhi9JgsI9MriQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8220200705461401985", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675608332996?e=1677240000&v=beta&t=NevZkHjZzFlp88L6kQ7JGRc8gtwYCfx9o_hLaXZMnrc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675608332996?e=1677240000&v=beta&t=plDSFYLKncqLc9HLFyLnDSN1DDETi612za6gAwmamr8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675608332996?e=1677240000&v=beta&t=aF1rReHtImmf13V-NJa3m4w2GznjnMD0sYgHGqcB_20", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675608332996?e=1677240000&v=beta&t=BXesrOt5P0SmnCoh0aXx26eQ2l6410zgA2LNU4QJajQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQH-4_tZMQq8Hw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8220200705461401985)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8220200705461401985)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: M\u00e9tro, RER : Val\u00e9rie P\u00e9cresse cherche des financeurs tous azimuts by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/tourisme-transport/metro-rer-valerie-pecresse-cherche-des-financeurs-tous-azimuts-1899774" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "M\u00e9tro, RER\u00a0: Val\u00e9rie P\u00e9cresse cherche des financeurs tous azimuts" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7027994565676527616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans notre pays, \u00e0 peu pr\u00e8s tout le monde est d'accord pour avoir plus de transports en commun. Par contre, quand il s'agit de d\u00e9cider qui doit passer \u00e0 la caisse pour le permettre, l'unanimit\u00e9 est un peu moins de mise !\n\nC'\u00e9tait d\u00e9j\u00e0 un sujet quand l'\u00e9conomie \u00e9tait en croissance, et paradoxalement une \u00e9conomie mal portante pourrait contribuer \u00e0 augmenter encore la demande.\n\nCela vient du fait que notre comportement en mati\u00e8re de d\u00e9placements du quotidien a ob\u00e9it depuis longtemps \u00e0 une double logique budg\u00e9taire (ce que montrent les statistiques des \u00e9conomistes des transports).\n\nLa premi\u00e8re est \u00e9conomique : nous utilisons g\u00e9n\u00e9ralement pour nous d\u00e9placer le moyen le plus cher que notre revenu nous autorise. En premi\u00e8re approximation les personnes qui peuvent se payer une voiture et qui ont une place de parking chez eux et au travail utilisent l'automobile, et les autres les transports en commun (tendance que le covid a renforc\u00e9e).\n\nLorsque la conjoncture devient plus difficile sans pour autant priver les gens de leur motifs d\u00e9placement, une partie de la population a plus de mal \u00e0 utiliser son v\u00e9hicule, et voudrait plus en transports en commun. Cet effet est encore renforc\u00e9 lorsque la difficult\u00e9 \u00e9conomique vient de l'\u00e9nergie (moindre disponibilit\u00e9 et/ou prix qui montent tr\u00e8s fort, comme en 2008).\n\nA cela vient s'ajouter le fait que, sur s\u00e9rie longue, nous avons fonctionn\u00e9 \u00e0 temps de d\u00e9placement constant. L'arriv\u00e9e de voitures en masse depuis l'apr\u00e8s-guerre n'a pas \u00e9t\u00e9 utilis\u00e9 pour aller plus vite au m\u00eame endroit, mais pour passer le m\u00eame temps \u00e0 faire plus de km (parce que cela \u00e9largit l'univers de choix pour le logement, le travail, l'\u00e9cole...). \n\nL'augmentation du nombre de voitures - en France le parc auto est pass\u00e9 de 3 \u00e0 38 millions d'unit\u00e9s de 1945 \u00e0 maintenant) - a donc induit de l'\u00e9talement urbain, cr\u00e9ant des zones avec des densit\u00e9s d'habitants au km2 plus faibles qu'en ville, peupl\u00e9es de gens qui font des dizaines de km en auto tous les jours (cela se constate partout dans le monde).\n\nAller \"chercher\" en transports en commun des p\u00e9riurbains qui n'(aur)ont plus les moyens \u00e9conomiques d'utiliser leur voiture coute(ra) beaucoup plus cher par personne que pour les urbains, puisque les couts d'un syst\u00e8me de transports en commun sont pour partie des couts fixes.\n\nEnfin m\u00eame pour les infrastructures existantes les charges augmentent avec la fr\u00e9quentation : par exemple s'il y a une fr\u00e9quence de passage plus importante cela signifie plus de personnel, plus de mat\u00e9riel roulant, plus d'\u00e9nergie, plus de maintenance...\n\nLe casse t\u00eate du Syndicat des Transports d'Ile de France (90% du trafic du quotidien fran\u00e7ais en mode ferr\u00e9) n'est donc pas r\u00e9solu demain matin. En effet, \u00e0 l'horizon de quelques d\u00e9cennies l'\u00e9nergie sera de moins en moins disponible, et \u00e0 la suite les flux physiques sous-jacents de l'\u00e9conomie aussi. Qui peut-on et doit-on \"transporter en commun\" quand il y a globalement moins de moyens : c'est d\u00e9sormais la question qui se pose." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7027994565676527616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7027994566683193344,urn:li:activity:7027994566683193344,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 67, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7027994566683193344,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7027994566683193344,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7027994566683193344", + "threadId": "activity:7027994566683193344", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027994566683193344", + "urn": "urn:li:activity:7027994566683193344", + "numComments": 155, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7027994566683193344", + "reactionTypeCounts": [ + { + "count": 859, + "reactionType": "LIKE" + }, + { + "count": 127, + "reactionType": "INTEREST" + }, + { + "count": 69, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7027994566683193344", + "numLikes": 1069, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027994566683193344", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1070, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 Edited \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7027692001311498240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7027692001311498240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7027692001311498240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carburants-les-gilets-jaunes-ont-ils-activity-7027692001311498240-vtZx?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7027692000636203008", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7027692001311498240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7027692000636203008", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "DklaiFNODLYeZxT9LdsVDA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8462332020454373656", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675719684036?e=1677240000&v=beta&t=J9Nc6Hk1UoYficFB4nvvwC6D9Ro_Ilh_FaINn-u1ALM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675719684036?e=1677240000&v=beta&t=6X7IEa1k_3jQXbmmI3TVE3qEkD1Nskrf4xUCtrmw8QA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675719684036?e=1677240000&v=beta&t=jcX6iT9yBNwBUZ2OLdlCgZ3aJF4k9_M-6Fhpt-__gEs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675719684036?e=1677240000&v=beta&t=RwjeViOHm-TQI9ILxw-AHCY196gOxNqsKNmg35_QK10", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEAoiGuleTReQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8462332020454373656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8462332020454373656)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carburants : les \u00ab gilets jaunes \u00bb ont-ils raison de d\u00e9noncer une hausse des prix ? by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/carburants-les-gilets-jaunes-ont-ils-raison-de-denoncer-une-hausse-des-prix-149158" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carburants\u00a0: les \u00ab\u00a0gilets jaunes\u00a0\u00bb ont-ils raison de d\u00e9noncer une hausse des prix\u00a0?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7027692000636203008,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 2018, la France a v\u00e9cu l'\u00e9pisode des \"gilets jaunes\". A l'\u00e9poque essence et gazole \u00e9taient \u00e0 environ 1,5 euro le litre. C'est d\u00e9sormais entre 1,8 et 2 euros selon la pompe et le type de carburant (https://bit.ly/2SBEC4o ). Et.... rien. Pas d'\u00e9meute, alors que dans le m\u00eame temps le prix du gaz et de l'\u00e9lectricit\u00e9 ont fortement augment\u00e9, sans parler du reste. \n\nSi la raison premi\u00e8re de ce qui s'est pass\u00e9 il y a 4 ans \u00e9tait juste le niveau de prix dans l'absolu, pourquoi tout le monde fait le dos rond actuellement ?\n\nTentons une hypoth\u00e8se : \u00e0 l'\u00e9poque l'Etat avait prononc\u00e9 le mot \"taxe carbone\". Or parler de fiscalit\u00e9 des carburants, c'est d\u00e9battre de la part \u00e0 la main de notre pays, pour laquelle il ne d\u00e9pend \u00e9videmment que de nous de la monter... ou de la baisser. \n\nActuellement, c'est la faute \u00e0 \"pas de chance\". C'est pas de chance si Poutine a envahi l'Ukraine. C'est \"pas de chance\" si le prix de march\u00e9 du baril monte fortement. Et on ne va quand m\u00eame pas menacer la Russie ou l'Irak de l'arme nucl\u00e9aire pour que ces pays augmentent leur production d'or noir !\n\nIl est facile de constater que nous acceptons souvent bien plus facilement les efforts d\u00e9clench\u00e9s par \"pas de chance\" que ceux qui sont le r\u00e9sultat d'une d\u00e9marche intentionnelle. Si les taxes sur les carburants augmentent, on ne nous enl\u00e8vera pas de la t\u00eate que notre pr\u00e9sident, qui devrait nous prendre sous son aile, prend un malin plaisir \u00e0 nous rendre la vie plus difficile !\n\nEt pourtant, l\u00e0 o\u00f9 l'\u00e9volution actuelle est \"pas de chance\", c'est qu'elle est beaucoup plus dommageable pour la population que la taxe carbone envisag\u00e9e \u00e0 l'\u00e9poque par le gouvernement. \n\nL'imp\u00f4t est un recyclage national. Ce que nous payons en plus pour les carburants, l'Etat peut nous le rendre sous forme de travaux d'isolation, de pompes \u00e0 chaleur, de subventions aux v\u00e9hicules \u00e9lectriques ou de pistes cyclables. \n\nQuand le prix du baril monte, cela appauvrit la France (en augmentant le d\u00e9ficit commercial) et personne ne reverra cet argent pour aider le pays \u00e0 s'organiser avec moins d'\u00e9nergie fossile. \n\nEt le paradoxe de l'affaire est que c'est l'un ou l'autre. En effet, le p\u00e9trole \u00e9tant \u00e9puisable (et le pic conventionnel pass\u00e9), si nous ne provoquons pas la baisse de son usage par des mesures qui sont fatalement contraignantes pour quelqu'un, il y aura p\u00e9riodiquement des envol\u00e9es de prix comme celle que nous vivons actuellement ou pire. \n\nIl y a donc d\u00e9carboner et d\u00e9carboner. La voie qui consiste \u00e0 attendre que \"y'en a plus\" enrichit les producteurs et laissera la population au d\u00e9pourvu. Celle qui consiste \u00e0 agir demandera des efforts \u00e0 plus court terme mais beaucoup moins \"plus tard\". \n\nIl reste une condition du succ\u00e8s essentielle : que le gouvernement sache faire la p\u00e9dagogie du probl\u00e8me (pour le moment il ne comprend pas que l'Europe est en d\u00e9clin subi sur le p\u00e9trole depuis 2007) et que toute mesure d'effort s'inscrive dans un plan d'ensemble per\u00e7u comme pertinent. Et l\u00e0 nous n'y sommes pas encore." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7027692000636203008,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7027692001311498240,urn:li:activity:7027692001311498240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 165, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7027692001311498240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7027692001311498240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7027692001311498240", + "threadId": "activity:7027692001311498240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027692001311498240", + "urn": "urn:li:activity:7027692001311498240", + "numComments": 263, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7027692001311498240", + "reactionTypeCounts": [ + { + "count": 3318, + "reactionType": "LIKE" + }, + { + "count": 425, + "reactionType": "INTEREST" + }, + { + "count": 176, + "reactionType": "MAYBE" + }, + { + "count": 96, + "reactionType": "PRAISE" + }, + { + "count": 34, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7027692001311498240", + "numLikes": 4065, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027692001311498240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4066, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7027244366859530240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7027244366859530240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7027244366859530240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_devant-lurgence-climatique-de-plus-en-plus-activity-7027244366859530240-uwL-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7027244365743804417", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7027244366859530240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7027244365743804417", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "OgivuBkm9xng9QpMBLBpbg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6921286453414376786", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676123224260?e=1677240000&v=beta&t=qq8EJP7Cnr-nWOBXIy6EobrMwhcuQ3ddAOeGsVNrjio", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676123224260?e=1677240000&v=beta&t=HZpA4044i0OS1ffFlcimmWkMQxLtVFR6-Y95QL5BJoc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676123224260?e=1677240000&v=beta&t=gu5yUmRF1fiw1QUChGZ5u5s7E0y5WE460xwvNo5kpo0", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676123224260?e=1677240000&v=beta&t=7mrP9qCy4gW6FUek7QqJF7LXXfb2YaxI1yBOCnph7Cc", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQG1GnbrKVT1dg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6921286453414376786)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6921286453414376786)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Devant l\u2019urgence climatique, de plus en plus de scientifiques tent\u00e9s par la radicalit\u00e9 : \u00ab La d\u00e9sob\u00e9issance civile est un acte d\u00e9sesp\u00e9r\u00e9, pour alerter sur la situation dramatique dans laquelle on est \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/planete/article/2023/01/26/face-a-la-crise-ecologique-des-scientifiques-tentes-par-la-radicalite-sortez-de-vos-labos-allez-dans-la-rue_6159367_3244.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Devant l\u2019urgence climatique, de plus en plus de scientifiques tent\u00e9s par la radicalit\u00e9\u00a0: \u00ab\u00a0La d\u00e9sob\u00e9issance civile est un acte d\u00e9sesp\u00e9r\u00e9, pour alerter sur la situation dramatique dans laquelle on est\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7027244365743804417,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un m\u00e9decin peut-il se contenter de poser le diagnostic sans recommander de traitement ? En mati\u00e8re de climat, c'est le mandat qui a \u00e9t\u00e9 donn\u00e9 au GIEC : \u00eatre \"policy relevant but not policy prescriptive\", c'est \u00e0 dire d\u00e9crire la situation, mais sans fournir de recommandation sur la voie \u00e0 suivre.\n\nQuand on y r\u00e9fl\u00e9chit bien, ce n'est pas infond\u00e9 : apr\u00e8s tout, se restreindre maintenant pour pr\u00e9server l'avenir n'est pas une d\u00e9cision scientifique mais un choix. Un m\u00e9decin, pour reprendre le parall\u00e8le, peut dire au fumeur qu'il prend des risques, et les lui d\u00e9crire par le menu, mais il ne peut pas physiquement le contraindre \u00e0 s'arr\u00eater (il y a 20 ans je m'\u00e9tais amus\u00e9 - enfin si l'on peut dire - \u00e0 comparer plus largement effet de serre et tabac, car il me semble qu'il y a beaucoup de points communs, et \u00e0 me relire je ne vois pas grand chose \u00e0 changer : https://bit.ly/3YjUeL9 )\n\nIl y a par ailleurs des cas de figure o\u00f9 la r\u00e9ponse \u00e0 la question initiale est oui, parce que m\u00eame en m\u00e9decine on change d'interlocuteur entre diagnostic et th\u00e9rapie. Le radiologue qui vous fait passer l'IRM ne sera pas celui qui vous proposera un traitement derri\u00e8re. La g\u00e9n\u00e9raliste \u00e0 qui vous dites que vous avez \"mal au dos\" n'est pas n\u00e9cessairement celle qui vous recommandera la solution au probl\u00e8me.\n\nEn mati\u00e8re de climat, cette difficult\u00e9 est encore plus grande : le physicien ou la biologiste d\u00e9crivant l'\u00e9volution du syst\u00e8me terre sous l'effet d'\u00e9missions croissantes n'a pas, du seul fait de son m\u00e9tier, de comp\u00e9tences techniques particuli\u00e8res pour proposer la mani\u00e8re de modifier l'organisation humaine et mat\u00e9rielle qui en est \u00e0 l'origine (m\u00eame si les journalistes adorent faire du \"tout en un\" en demandant au scientifique cuisin\u00e9 sur la situation ce qu'il faut faire \u00e0 partir de l\u00e0). \n\nLa question de savoir si des scientifiques doivent ou non \"descendre dans la rue\" pour mieux se faire entendre d\u00e9pend donc de l'effet recherch\u00e9 et du discours tenu.\n\nSi c'est pour militer pour que le diagnostic soit mieux connu, \u00e0 ce moment le/la scientifique est l\u00e9gitime, mais en pratique ce n'est pas d'abord la puissance publique qui est vis\u00e9e, mais d'abord la presse, puisque c'est d'elle dont d\u00e9pend le volume et la qualit\u00e9 de l'information diffus\u00e9e sur le sujet et son lien avec l'organisation du monde. \n\nQu'un(e) climatologue s'encha\u00eene aux grilles de l'Elys\u00e9e ou \u00e0 une centrale \u00e0 charbon fera-t-il des media plus prolixes et performants sur le climat ? Une fois que l'information est connue, la d\u00e9cision qui en d\u00e9coule n'est plus un probl\u00e8me scientifique.\n\nSi ce militantisme a pour objet de faire adopter des mesures particuli\u00e8res (taxe carbone, investissements dans le train, ou isolation des b\u00e2timents), alors la question doit \u00eatre pos\u00e9e sans invoquer la qualit\u00e9 de scientifique : il s'agit de savoir, quel que soit le m\u00e9tier de la personne concern\u00e9e, si bloquer un a\u00e9roport au nom du climat est plus ou moins immoral que de bloquer les trains au nom des retraites. Int\u00e9ressante question !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7027244365743804417,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7027244366859530240,urn:li:activity:7027244366859530240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7027244366859530240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7027244366859530240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7027244366859530240", + "threadId": "activity:7027244366859530240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027244366859530240", + "urn": "urn:li:activity:7027244366859530240", + "numComments": 143, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7027244366859530240", + "reactionTypeCounts": [ + { + "count": 705, + "reactionType": "LIKE" + }, + { + "count": 104, + "reactionType": "INTEREST" + }, + { + "count": 62, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7027244366859530240", + "numLikes": 899, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027244366859530240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 900, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 Edited \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7026974946824192000", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7026974946824192000)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7026974946824192000)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-influenceurs-br%C3%BBlent-le-monde-avec-activity-7026974946824192000-e51E?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7026974945939226624", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7026974946824192000", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7026974945939226624", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "26MrDO6fgCxP56bAI2KuUw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8154188842981148828", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676022195813?e=1677240000&v=beta&t=BI44AFvzi7U8mjhFe6h7ZBJy-hW1CqkFE7ngAVDqLSY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676022195814?e=1677240000&v=beta&t=RLy8N8TGMnSQs9drDFt6a22jWIE8C6-B2JQlW5hFEDM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676022195814?e=1677240000&v=beta&t=119jvpd2x3hjmXoC8C4KiHyF7rpo-TuUMo02KGotGuQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676022195814?e=1677240000&v=beta&t=UPoaLK0PWvbKWfmKetq_sevl8rrDS4HT8BBHFk8AUfM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEn527yRLnsxg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8154188842981148828)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8154188842981148828)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: LES INFLUENCEURS BR\u00dbLENT LE MONDE ? (avec JILL) | LIMIT #episode1 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=xmtCBulbID8" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\u2799 Cette cha\u00eene vit int\u00e9gralement gr\u00e2ce \u00e0 vos dons ! https://linktr.ee/limit.media Secouer le monde de l'influence sur les questions li\u00e9es aux Limites Plan\u00e9taires ? C'est ce que nous allons tenter de faire dans cette nouvelle \u00e9mission : \"Bad Influence\"..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "LES INFLUENCEURS BR\u00dbLENT LE MONDE ? (avec JILL) | LIMIT #episode1" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7026974945939226624,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 350, + "length": 10, + "miniProfile": { + "firstName": "Vinz", + "lastName": "Kant\u00e9", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABnoaesBFyeDnfMQ7vVH_WdqzzSE1gZnFeI", + "occupation": "Cr\u00e9ateur, Animateur, Prod, conf\u00e9rencier chez #LIMIT #SchoolUp \ud83c\udf0d\ud83d\udc9a", + "objectUrn": "urn:li:member:434661867", + "entityUrn": "urn:li:fs_miniProfile:ACoAABnoaesBFyeDnfMQ7vVH_WdqzzSE1gZnFeI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1643988095695?e=1681948800&v=beta&t=7C2zsu2AnUIGYGJLxdwy6H0Pfz49i4bCG42UTyrDQiU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1643988095695?e=1681948800&v=beta&t=4mbItdC9wOaAB8PKJJb-Yb_-TvLU7cJhmTKvMc1TnoE", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQGwWxvh-yImnw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "vinzkante", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1652368741388?e=1681948800&v=beta&t=oBVj0OP183lIxUjW-ObsX93mvqUUhnlf8CUv9CYdkL8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1652368741388?e=1681948800&v=beta&t=QLthymcqCv14W4AiYsuUqj2QbfpGNDM6Pj43wuQjwBY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1652368741388?e=1681948800&v=beta&t=qpYGcnw-PgEP8UZgyFGsOXkDPZUoHvFO1KR2QFlKBb4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1652368741388?e=1681948800&v=beta&t=_jJyLbpMGXX6ocxEt866mRbwvojncDU-oE19Bdveik8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFVgbwuDHeE9Q/profile-displayphoto-shrink_" + } + }, + "trackingId": "/Y7BCJ+MQMexu+bT+uD3kw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Les \"influenceurs\" ne sont g\u00e9n\u00e9ralement pas consid\u00e9r\u00e9s comme des grands amis de la lutte contre le changement climatique. Promouvoir des chaussures, des t\u00e9l\u00e9phones, des s\u00e9jours \u00e0 l'\u00e9tranger ou des cosm\u00e9tiques, tout en sautant d'un avion \u00e0 l'autre pour les prises de vues, c'est un peu compliqu\u00e9 \u00e0 marier avec la sobri\u00e9t\u00e9.\n\nC'est apr\u00e8s ce constat que Vinz Kant\u00e9 a bascul\u00e9 de la promotion publicitaire au militantisme climat (avec la cr\u00e9ation de la chaine Limit : https://lnkd.in/eGdVN6Vw ). Mais il y a un prix \u00e0 payer, au sens propre du terme : comme il le dit lui-m\u00eame dans cette vid\u00e9o, cela s'est accompagn\u00e9 d'une tr\u00e8s forte baisse de ses revenus.\n\nIl lui est r\u00e9cemment venu l'id\u00e9e d'aller dialoguer avec des \"coll\u00e8gues\" de l'influence (qui l'accepteraient) comment ils et elles voyaient la question environnementale dans leur m\u00e9tier (et si ca leur causait ou pas des \u00e9tats d'\u00e2me). \n\nLa premi\u00e8re qui a accept\u00e9 de se pr\u00eater au jeu s'appelle Jill (elle est belge, comme celui qui la passe sur le grill). Il en r\u00e9sulte un dialogue int\u00e9ressant entre 2 militant(e)s \u00e0 leur fa\u00e7on, l'un pass\u00e9 \"dehors\" (c'est \u00e0 dire devenu un influenceur \"d\u00e9di\u00e9 climat\"), l'autre rest\u00e9e \"dedans\" (elle fait toujours le m\u00eame m\u00e9tier, mais dit pouvoir ainsi parler \u00e0 des gens pas convaincus).\n\nUne partie de l'\u00e9change tourne donc autour de cette question \u00e9ternelle : pour changer le syst\u00e8me, est-ce plus efficace d'\u00eatre dedans ou dehors ? En fait c'est probablement un faux d\u00e9bat : il faut les deux. Depuis \"dehors\" on d\u00e9stabilise (et sans d\u00e9stabilisation personne ne cherche \u00e0 changer) ; depuis \"dedans\" on construit (phase indispensable apr\u00e8s la d\u00e9stabilisation). \n\nLa meilleure partie de la vid\u00e9o est \u00e0 la fin, avec tout d'abord des statistiques (dont je ne sais pas si elles sont repr\u00e9sentatives du m\u00e9tier) sur les diverses cat\u00e9gories de produits dont Jill a fait la promotion. En premi\u00e8re approximation, la quasi-totalit\u00e9 de ce qui permet \u00e0 cette influenceuse de gagner sa vie est constitu\u00e9 de produits ou services \"pas durables\" (sans que la d\u00e9finition en soit donn\u00e9e, mais quand on regarde la d\u00e9composition par cat\u00e9gorie de produits on arrive assez facilement \u00e0 cette conclusion).\n\nPuis vient le bilan carbone de la cobaye du jour : sans surprise, il est nettement sup\u00e9rieur \u00e0 la moyenne, avion oblige, alors m\u00eame que l'int\u00e9ress\u00e9e consid\u00e9rait avoir fait beaucoup de chemin en installant des panneaux PV sur le toit, en limitant la viande et en minimisant ses d\u00e9placements du quotidien en voiture. \n\nCela illustre l'un des d\u00e9fis de la d\u00e9carbonation : familiariser le grand public avec la notion d'empreinte carbone et de \"contenu carbone\" d'un produit ou service. Car l\u00e0 comme ailleurs il n'y a pas de progr\u00e8s sans mesure !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7026974945939226624,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7026974946824192000,urn:li:activity:7026974946824192000,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 39, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7026974946824192000,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7026974946824192000,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7026974946824192000", + "threadId": "activity:7026974946824192000", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026974946824192000", + "urn": "urn:li:activity:7026974946824192000", + "numComments": 49, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7026974946824192000", + "reactionTypeCounts": [ + { + "count": 893, + "reactionType": "LIKE" + }, + { + "count": 104, + "reactionType": "INTEREST" + }, + { + "count": 47, + "reactionType": "MAYBE" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7026974946824192000", + "numLikes": 1084, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026974946824192000", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1086, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7026294163922911233", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7026294163922911233)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7026294163922911233)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-pr%C3%A9sident-de-la-cop28-appelle-%C3%A0-lutter-activity-7026294163922911233-922j?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7026294163201515520", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7026294163922911233", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7026294163201515520", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "gKFq/9mW30mkzc3KXpByog==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8878644420238475260", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676444749074?e=1677240000&v=beta&t=HdzuGwnWeDcS5CaMX3KhVFYZKSr3AlHg0jAdBSUHjmI", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676444749074?e=1677240000&v=beta&t=42ogJq9VCXhOKN7cU_b0F3MeiXYd7eBMbt_6WNn383M", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676444749075?e=1677240000&v=beta&t=PHj4un-PLkxMnKrZNOcUU1oMUe5fNlBuTJ4cLLJmzRw", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676444749075?e=1677240000&v=beta&t=fo2cn5deOZ7E_-pGe1Mvmp4KlrhC7_dboSc1_efm-DA", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D5627AQFU01I3pkKatw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le ministre de l'Industrie des \u00c9mirats arabes unis, Sultan Ahmed Al Jaber, prend la parole lors de l'exposition et de la conf\u00e9rence internationales sur le p\u00e9trole d'Abu Dhabi (ADIPEC) \u00e0 Abu Dhabi, aux \u00c9mirats arabes unis, le 31 octobre 2022." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8878644420238475260)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8878644420238475260)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lefigaro.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le pr\u00e9sident de la COP28 appelle \u00e0 lutter contre le r\u00e9chauffement \u00absans ralentir\u00bb l'\u00e9conomie by lefigaro.fr", + "actionTarget": "https://www.lefigaro.fr/flash-actu/le-president-de-la-cop28-appelle-a-lutter-contre-le-rechauffement-sans-ralentir-l-economie-20230130" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le pr\u00e9sident de la COP28 appelle \u00e0 lutter contre le r\u00e9chauffement \u00absans ralentir\u00bb l'\u00e9conomie" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7026294163201515520,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un certain nombre de personnes se sont \u00e9mues que le pr\u00e9sident de la future COP (ce qui signifie \"Convention Of the Parties\", jargon onusien pour d\u00e9signer la r\u00e9union annuelle de tous les pays qui ont ratifi\u00e9 la Convention Climat) soit le patron de l'op\u00e9rateur national d'un \u00e9tat p\u00e9trolier, qui dit que la croissance ne doit pas \u00eatre affect\u00e9e par les politiques climatiques.\n\nMauvaise nouvelle : il ne fait que r\u00e9citer le texte de la Convention Climat (https://bit.ly/3XTBWAv ).\n\nDans ce document on peut en effet trouver plein d'affirmations qui disent \u00e0 peu pr\u00e8s - voire explicitement - la m\u00eame chose, comme par exemple :\n\n\"(...) the share of global emissions originating in developing countries will grow to meet their social and development needs\".\n\n\"(...) responses to climate change should [avoid] adverse impacts on [economic development], taking into full account the legitimate priority needs of developing countries for the achievement of sustained economic growth (...)\".\n\n\"Policies and measures to protect the climate system against human-induced change should [take] into account that economic development is essential for adopting measures to address climate change\"\n\nSi l'on traduit ces \u00a7 en fran\u00e7ais ordinaire cela donne :\n\n- les pays \"en d\u00e9veloppment\" (cat\u00e9gorie dans laquelle se rangent tous les pays hors OCDE pour faire simple,et donc les \u00e9tats producteurs d'hydrocarbures du Moyen Orient ainsi que la Chine ou l'Inde) s'estiment l\u00e9gitimement en mesure d'augmenter leur part des \u00e9missions sans sortir du cadre de cette Convention.\n\n- les politiques climat (partout) ne doivent pas avoir d'effet adverse sur \"le d\u00e9veloppement\" (en clair la croissance \u00e9conomique), \n\n- et m\u00eame que la croissance est un pr\u00e9requis de toute politique climat !\n\nIl y a \u00e9galement un \u00a7 de la Convention qui concerne directement les \u00e9tats p\u00e9troliers et qui affirme :\n\n\"Recalling also that States have (...) the sovereign right to exploit their own resources pursuant to their own (...) developmental policies, and the responsibility to ensure that activities within their jurisdiction or control do not cause damage to the environment of other States\"\n\nLes p\u00e9troliers ont donc le droit souverain d'extraire le p\u00e9trole de leur sous-sol en \"s'assurant que leurs activit\u00e9s ne causent pas de dommage \u00e0 l'environnement des autres pays\". Cette formulation est pour le moins ambigue. Pourquoi ne pas avoir \u00e9crit explicitement \"(...) the responsibility to ensure that activities (...) do not cause CLIMATE damage to other states\" ?\n\n\"ne pas causer de dommage \u00e0 l'environnement\" peut juste signifier d'\u00e9viter les mar\u00e9es noires...\n\nBref il n'y a pas lieu de s'\u00e9mouvoir tant que cela de cette d\u00e9claration, tr\u00e8s \"ONU compatible\" (rappelons que l'item N\u00b0 8 des Objectifs du D\u00e9veloppement Durable c'est la croissance \u00e9conomique : https://sdgs.un.org/goals ).\n\nL'enseignement qu'il faut en tirer est connu depuis longtemps : aucun miracle ne viendra des COP. L'action doit venir d'ailleurs." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7026294163201515520,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7026294163922911233,urn:li:activity:7026294163922911233,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 84, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7026294163922911233,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7026294163922911233,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7026294163922911233", + "threadId": "activity:7026294163922911233", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026294163922911233", + "urn": "urn:li:activity:7026294163922911233", + "numComments": 181, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7026294163922911233", + "reactionTypeCounts": [ + { + "count": 1736, + "reactionType": "LIKE" + }, + { + "count": 325, + "reactionType": "INTEREST" + }, + { + "count": 144, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "PRAISE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7026294163922911233", + "numLikes": 2282, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026294163922911233", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2323, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7025948734551117824", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7025948734551117824)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7025948734551117824)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_a-ivry-sur-seine-l%C3%A9coquartier-gagarine-truillot-activity-7025948734551117824-3zMv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7025948733804544000", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7025948734551117824", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7025948733804544000", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "7Mej9Hislh63mgiv0D+SUg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9040031523336314907", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676541953918?e=1677240000&v=beta&t=EzMfFKPd7rqg-ehQYPfWDxj96MQiZhg-qKj2BbHhdjk", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676541953919?e=1677240000&v=beta&t=UE1Eo44UlGITYQfi1deemCrpZMchhpSOCE-rRo9pxNY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676541953919?e=1677240000&v=beta&t=rdqaihgFR2mstGlVd3q7S4LM9OucEU72qzBTUo_Bgms", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676541953919?e=1677240000&v=beta&t=cbjyJ6lAhSt7tTdp9wMkTZRngCKKnvq_0m746IczIlw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFyrTAKGfzlXw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9040031523336314907)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9040031523336314907)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: A Ivry-sur-Seine, l'\u00e9coquartier Gagarine-Truillot veut acc\u00e9l\u00e9rer sur l'agriculture urbaine by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/pme-regions/ile-de-france/a-ivry-sur-seine-lecoquartier-gagarine-truillot-veut-accelerer-sur-lagriculture-urbaine-1898826" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "A Ivry-sur-Seine, l'\u00e9coquartier Gagarine-Truillot veut acc\u00e9l\u00e9rer sur l'agriculture urbaine" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7025948733804544000,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La commune d'Ivry sur Seine, qui fait partie de la proche banlieue sud de Paris, d\u00e9marre une op\u00e9ration d'am\u00e9nagement qui comportera 1400 logements (h\u00e9bergeant donc environ 3000 personnes si l'on compte 2,2 personnes par logement). Mais il y aura aussi 2,3 hectares d'agriculture urbaine, permettant aux \u00e9lus de qualifier ce nouveau quartier \"d'agrocit\u00e9\". Est-ce que l'alimentation des habitants du lieu va vraiment significativement changer avec l'arriv\u00e9e d'une surface agricole \u00e0 proximit\u00e9 ?\n\nEn 2015 (la valeur est du m\u00eame ordre de grandeur aujourd'hui), la plan\u00e8te offrait \u00e0 chaque terrien 0,6 hectare de terre agricole (voir graphique en commentaire). Avec 2,3 hectares, on nourrit donc... 4 personnes. Certes, on ne va pas avoir sur cette parcelle \u00e0 la fois des poireaux, des patates, du bl\u00e9, une vache, des pommiers, des poules et du ma\u00efs pour nourrir en totalit\u00e9 4 personnes pendant que les autres habitants n'en verront rien.\n\nMais, quoi que l'on y mette, cela permettra d'\u00e9viter 1 pour mille des flux logistiques associ\u00e9s \u00e0 la nourriture des habitants du futur quartier. Dire dans l'article que cette op\u00e9ration va contribuer de mani\u00e8re discernable \u00e0 une \"logique de circuits courts\" est donc un tout petit peu survendre l'affaire !\n\nEst-ce \u00e0 dire que ce genre de chose ne sert \u00e0 rien ? Pas n\u00e9cessairement :\n- cela a\u00e8re l'espace\n- cela peut permettre \u00e0 des enfants (voire des adultes) de d\u00e9couvrir ce qu'est un mouton ou un plant de pomme de terre\n- cela peut permettre de rappeler qu'une ville n'existe pas sans cultures pour la nourrir, et que le changement climatique met donc en danger les villes par cet aspect l\u00e0 aussi.\n\nMais, tant qu'\u00e0 laisser un espace non b\u00e2ti dans une ville, on peut aussi y mettre des arbres (qui apaisent les habitants et qui \u00e9vitent un peu l'effet ilot de chaleur) et/ou un espace (non imperm\u00e9abilis\u00e9) pour que les enfants aillent se d\u00e9fouler, chose qui est plus difficile quand on doit \u00e9viter de pi\u00e9tiner des plants de salade ou de faire peur aux poules.\n\nUn tel espace ne peut donc avoir qu'une vertu p\u00e9dagogique ou r\u00e9cr\u00e9ative, mais, malheureusement, rien de plus. Par d\u00e9finition m\u00eame, une ville est une concentration d'individus qui se mettent au m\u00eame endroit, en pratique pour \u00e9changer et coop\u00e9rer plus facilement, et par construction m\u00eame c'est donc la cr\u00e9ation d'un d\u00e9s\u00e9quilibre entre la production alimentaire locale et les bouches \u00e0 nourrir.\n\nUne ville doit donc fatalement importer sa nourriture (et tout le reste : v\u00eatements, mat\u00e9riaux de construction, objets pour le logement, etc) d'ailleurs, et plus une ville est grosse plus ses \"tentacules logistiques\" doivent aller chercher loin. C'est pour cela que dans un monde sobre en \u00e9nergie les grosses villes vont avoir du mal \u00e0 survivre : il leur faudra un hinterland bien plus important que ce que les possibilit\u00e9s de transport pourront alors fournir. \n\nDe ce fait, aucune \"agrocit\u00e9\" ne pourra, h\u00e9las, \u00eatre autre chose qu'une cit\u00e9 ordinaire avec une appellation vendeuse. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7025948733804544000,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7025948734551117824,urn:li:activity:7025948734551117824,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 167, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7025948734551117824,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7025948734551117824,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7025948734551117824", + "threadId": "activity:7025948734551117824", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025948734551117824", + "urn": "urn:li:activity:7025948734551117824", + "numComments": 271, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7025948734551117824", + "reactionTypeCounts": [ + { + "count": 1852, + "reactionType": "LIKE" + }, + { + "count": 282, + "reactionType": "INTEREST" + }, + { + "count": 122, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7025948734551117824", + "numLikes": 2313, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025948734551117824", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2323, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7025499114272387072", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7025499114272387072)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7025499114272387072)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9carbonation-les-pme-et-les-eti-en-ordre-activity-7025499114272387072-ZEWu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7025499113316085760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7025499114272387072", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7025499113316085760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "yFukbzdxvLXy9eawsArdFg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7703886279211765749", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676467730494?e=1677240000&v=beta&t=AcsdPyJWvc6BGBGDmEXNv_toOaHRgN28IT2kimJ0e3g", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676467730494?e=1677240000&v=beta&t=9K65Tw5eJAeIH57tWy5YmldhlHwR3U8X-WaF4FDJAPw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676467730494?e=1677240000&v=beta&t=IVvA_vVyPwz1a2YcAwZGeL3CRp-z96E5G0dkSzXiI8g", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676467730494?e=1677240000&v=beta&t=iJmx_cI620TjGv9VgzasfG7m1s1uSdMfHTI19-ztfN4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEgbWHTTquFgg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7703886279211765749)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7703886279211765749)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: D\u00e9carbonation : les PME et les ETI en ordre dispers\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/pme-regions/actualite-pme/decarbonation-les-pme-et-les-eti-en-ordre-disperse-1901217" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9carbonation\u00a0: les PME et les ETI en ordre dispers\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7025499113316085760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1790, + "length": 13, + "miniProfile": { + "firstName": "Cl\u00e9ment", + "lastName": "Ramos", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAJ_kowBTgD4YvBxiCLnHECQS6-R87bx81Q", + "occupation": "Business strategy, Energy & Climate Change | Principal at Carbone 4", + "objectUrn": "urn:li:member:41915020", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAJ_kowBTgD4YvBxiCLnHECQS6-R87bx81Q", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1549373027172?e=1681948800&v=beta&t=vaTqIPfjkIf7gkzU-iYDkLZUZ8DBdinHEejt5hN1bBQ", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1549373027172?e=1681948800&v=beta&t=c2gPGoKF_PvehjIsoxJAiB0u54xCNTCuCxv1_-F12JQ", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQF8LHhZFoKl5A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "clementramos", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517778324190?e=1681948800&v=beta&t=5EhRf7YrFpsgXEhC0mSkPTnS86yyjCLrljHaANLSVV8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517778324190?e=1681948800&v=beta&t=1ldYL9bsWZJaDfKoOI2J47pebd5GvJLMgsaVvCgSw1U", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517778324190?e=1681948800&v=beta&t=9ikfNIke-mbTlj83WRPI5cKvEBIS4CJYfH9VzOeqPIQ", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517778324190?e=1681948800&v=beta&t=ha1l25OB-4YD65t8yNnuXqLuHvjSlF77DxJpGYOWW6s", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHtnW54XLAC1A/profile-displayphoto-shrink_" + } + }, + "trackingId": "I0qawttmRBecIfM0Zlw7Lw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Plus une entreprise est grosse, plus elle se pr\u00e9occupe de climat. On pourrait trouver cela paradoxal, dans la mesure o\u00f9 les plus grandes entreprises sont aussi, souvent, les plus mondialis\u00e9es et le plus financiaris\u00e9es, donc celles o\u00f9 les possibilit\u00e9s effectives de changer de mod\u00e8le sans y laisser une part significative de leur chiffre d'affaire apparaissent d'embl\u00e9e comme \"pas \u00e9videntes\".\n\nEn effet, \"se d\u00e9carboner\", en pratique, n'est pas juste remplacer les combustibles fossiles utilis\u00e9s en direct par des \u00e9nergies dites sans carbone (en fait il y en a toujours un peu) : il s'agit d'\u00eatre capable de survivre dans un monde o\u00f9 les \u00e9missions baissent globalement de quelques % par an tous les ans et d\u00e8s maintenant.\n\nCela signifie donc survivre alors que des mat\u00e9riaux, des circuits logistiques, des usages \u00e0 l'aval, des pouvoirs d'achat ou du temps libres seront de moins en moins disponibles. Et commet les entreprises qui ont le plus profit\u00e9 de ce que les combustibles fossiles nous ont amen\u00e9 sont aussi souvent les plus grosses, on pourrait penser qu'un ph\u00e9nom\u00e8ne de d\u00e9ni les \u00e9loigne le plus de regarder la question.\n\nIl n'emp\u00eache : selon cet article des Echos, 20\u00a0% des PME fran\u00e7aises ont calcul\u00e9 leur empreinte carbone, alors que ce pourcentage monte \u00e0 37\u00a0% lorsque toutes les tailles d'entreprises sont prises en compte.\n\nCertes la r\u00e9glementation explique beaucoup cela : ce calcul d'empreinte carbone est devenu obligatoire pour les entreprises de plus de 500 salari\u00e9s (et sous certaines conditions va l'\u00eatre pour plus de 250). Un autre \u00e9l\u00e9ment joue aussi : les PME comportent g\u00e9n\u00e9ralement une proportion de cadres plus faible que les grands groupes, avec fatalement moins de personnes aptes \u00e0 consacrer du temps \u00e0 des sujets non imm\u00e9diatement op\u00e9rationnels.\n\nComme l'explique Cl\u00e9ment Ramos dans une interview adjacente \u00e0 cette article (https://bit.ly/3HGegKv ), pour les PME non financi\u00e8res c'est souvent un client important (priv\u00e9 ou public) qui est \u00e0 l'origine du premier bilan carbone, parce qu'il en fait une condition de son achat.\n\nPourtant cette approche poss\u00e8de une valeur ajout\u00e9e tr\u00e8s forte pour la raison suivante : les \u00e9missions viennent toujours de processus physiques ou chimiques. Tracer les \u00e9missions dont d\u00e9pend son entreprise, c'est doc inventorier les flux physiques (et parfois les processus chimiques) dont elle d\u00e9pend. \n\nC'est donc un premier pas indispensable pour comprendre combien il sera facile ou pas de survivre dans un monde qui va se d\u00e9carboner t\u00f4t ou tard, de gr\u00e9 pour cause de climat ou de force pour cause d'\u00e9puisement des combustibles fossiles et de for\u00eats \u00e0 couper. Voir un bilan carbone uniquement comme une obligation r\u00e9glementaire est rater l'essentiel de ce qu'il am\u00e8ne au pilotage strat\u00e9gique \u00e0 moyen terme (voire \u00e0 court terme), m\u00eame pour une PME qui consid\u00e8re tr\u00e8s souvent avoir peu de prise sur sa trajectoire globale." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7025499113316085760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7025499114272387072,urn:li:activity:7025499114272387072,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 62, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7025499114272387072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7025499114272387072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7025499114272387072", + "threadId": "activity:7025499114272387072", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025499114272387072", + "urn": "urn:li:activity:7025499114272387072", + "numComments": 82, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7025499114272387072", + "reactionTypeCounts": [ + { + "count": 1043, + "reactionType": "LIKE" + }, + { + "count": 121, + "reactionType": "INTEREST" + }, + { + "count": 61, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7025499114272387072", + "numLikes": 1253, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025499114272387072", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1253, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7025160160046129153", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7025160160046129153)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7025160160046129153)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-jean-marc-jancovici-explique-pourquoi-activity-7025160160046129153-RaAH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7025160159395991552", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7025160160046129153", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7025160159395991552", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "yZVrzh/bcHXQD7w9AU5SyA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8092899943283074825", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676406251527?e=1677240000&v=beta&t=xTc_CMEn0zgM9xPDFuujjTkxxqI5TeT9AQZgaSYOY24", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676406251527?e=1677240000&v=beta&t=GTKO4VDGv9-2R33yGuDWwgGdQM5QdQ5P55muVdkYDo8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676406251527?e=1677240000&v=beta&t=cQ5hHn9PvGhsg4UdnQ21xilKlRTTZ6NWC5LjLKHk0ls", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676406251527?e=1677240000&v=beta&t=1gGEEFfWJ1JpS4nkDBjSws1aA2Qr5cWXrcFboNpbG1Y", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFCDv5onsOKlA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8092899943283074825)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8092899943283074825)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : Jean-Marc Jancovici explique pourquoi le secteur de la montagne est en p\u00e9ril by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900229868-climat-jean-marc-jancovici-explique-pourquoi-le-secteur-de-la-montagne-est-en-peril" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat : Jean-Marc Jancovici explique pourquoi le secteur de la montagne est en p\u00e9ril" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7025160159395991552,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans une semaine c'est le d\u00e9but des vacances scolaires de f\u00e9vrier. Celles et ceux qui ont aujourd'hui la chance de profiter des sports d'hiver auront-il (ou leurs enfants) toujours la possibilit\u00e9 d'y partir \u00e0 l'avenir ?\n\nAvant l'\u00e9nergie abondante - disons avant guerre - les habitants des pays de montagne \u00e9taient parmi les plus pauvres d'un pays. La Suisse - largement compos\u00e9e de montagne - \u00e9tait elle-m\u00eame un des pays les plus pauvres d'Europe. \n\nEt puis l'arriv\u00e9e des \u00e9nergies fossiles a donn\u00e9 des cong\u00e9s pay\u00e9s aux m\u00e9nages (parce que les machines travaillent \u00e0 notre place), une voiture \u00e0 chacun d'entre eux, a permis l'augmentation de la production de b\u00e9ton et d'acier - indispensables pour \"am\u00e9nager\" les stations de ski, et enfin a permis de chauffer les b\u00e2timents et de permettre la douche chaude alors qu'il fait -15 \u00b0C dehors. \n\nEt voici que les zones recul\u00e9es de montagne sont devenus des \"paradis \u00e9conomiques\". 50% du PIB de la Savoie repose aujourd'hui sur le tourisme !\n\nBien sur, pour qu'il y ait des sports d'hiver, il faut aussi un hiver, ou plus pr\u00e9cis\u00e9ment de la neige. D\u00e9sormais cette derni\u00e8re peut \u00eatre artificielle (on dit pudiquement \"de culture\" ;) ) mais cela demande quand m\u00eame qu'il fasse assez froid.\n\nLes sports d'hiver, c'est donc de la neige toujours l\u00e0 et de l'\u00e9nergie abondante. Mais les deux sont d\u00e9sormais menac\u00e9s : la neige par le r\u00e9chauffement climatique, qui va raccourcir - et supprimer \u00e0 basse altitude - la pr\u00e9sence de neige naturelle, voire artificielle s'il faut vraiment trop chaud, et l'\u00e9nergie par la d\u00e9crue des combustibles fossiles, parce que les moyens de transport collectifs pour aller en station ne sont pas souvent \u00e0 l'\u00e9chelle.\n\nUn Samedi de f\u00e9vrier il va arriver 5000 \u00e0 10000 personnes dans une grosse station : il faudrait 6 \u00e0 12 TGV par station avec tous les vacanciers venant du m\u00eame endroit ou presque pour acheminer la m\u00eame quantit\u00e9 de monde ! \n\nL'avenir des stations de ski dans un monde sobre et sans neige est donc un gros point d'interrogation. Il n'est h\u00e9las pas sur que, pour les \u00e9lus des communes qui h\u00e9bergent ces activit\u00e9s (et pour les entreprises qui en vivent), il y ait partout une intense r\u00e9flexion sur la mani\u00e8re d'anticiper plut\u00f4t que de subir. Ca serait surement utile !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7025160159395991552,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7025160160046129153,urn:li:activity:7025160160046129153,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 91, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7025160160046129153,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7025160160046129153,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7025160160046129153", + "threadId": "activity:7025160160046129153", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025160160046129153", + "urn": "urn:li:activity:7025160160046129153", + "numComments": 193, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7025160160046129153", + "reactionTypeCounts": [ + { + "count": 1499, + "reactionType": "LIKE" + }, + { + "count": 218, + "reactionType": "INTEREST" + }, + { + "count": 79, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7025160160046129153", + "numLikes": 1834, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025160160046129153", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1837, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7024641174925664256", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7024641174925664256)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7024641174925664256)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pour-soccuper-s%C3%A9rieusement-denvironnement-activity-7024641174925664256-wusy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7024641172417474561", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7024641174925664256", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7024641172417474561", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "9HTAiyQUSaScHfpjDw+GZA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGGpQwktMajlw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGGpQwktMajlw", + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1674804966150?e=1679529600&v=beta&t=4nvMQobPmiQmQ0cQySUBrzXvVffEKJ3rt4lydaeOr4I", + "expiresAt": 1679529600000, + "height": 533 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1674804966143?e=1679529600&v=beta&t=L1cFbAmVbQWYTfu0_yw8S8engShDwhqJL2RIBFmI56o", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280/0/1674804966143?e=1679529600&v=beta&t=AAO9KvyhTo6uL1trVaXdLebl0EO3Rc6XsaYGwWKMfW0", + "expiresAt": 1679529600000, + "height": 533 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1674804966143?e=1679529600&v=beta&t=zcW7DEJx9fV9GZ9b3R13Tc7dVTfB8cSK2mbbKG0hv6E", + "expiresAt": 1679529600000, + "height": 319 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1674804966143?e=1679529600&v=beta&t=yDbg19929du6KWGypryW05rZ9DQ7lTlOG_obABHow9g", + "expiresAt": 1679529600000, + "height": 106 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1674804966143?e=1679529600&v=beta&t=n057-2A7XTJJWiXaF5eL_6Fnw03qbnjPEfC5zdRvbek", + "expiresAt": 1679529600000, + "height": 533 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGGpQwktMajlw/feedshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7024641172417474561,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pour s'occuper s\u00e9rieusement d'environnement, il faut certes poser des objectifs et imaginer des actions, mais il faut aussi des gens pour s'en occuper. L'incendie climatique ne s'\u00e9teindra pas sans pompiers appropri\u00e9s !\n\nPour une fois ce post va donc concerner ce pour quoi Linkedin a \u00e9t\u00e9 con\u00e7u :) : des offres d'emploi, pour quelques entit\u00e9s et des postes en lien avec la question.\n\nA tout seigneur, tout honneur : on commence par la puissance publique. \n\nLa Direction G\u00e9n\u00e9rale du Tr\u00e9sor (Bercy) cherche :\n\ud83d\udc49Un(e) adjoint(e) au chef du p\u00f4le \"Z\u00e9ro carbone\" : https://bit.ly/407hmOD\n\ud83d\udc49Un(e) adjoint(e) chef du bureau Politique \u00e9conomique France en charge de la transition \u00e9cologique : https://bit.ly/3Hubtno\n\nLa Direction G\u00e9n\u00e9rale des Entreprises (Bercy) cherche :\n\ud83d\udc49 Un(e) directeur de projets \"D\u00e9carbonation, Comp\u00e9titivit\u00e9 et D\u00e9veloppement de l'Industrie\" : https://bit.ly/3wOtoiN\n\ud83d\udc49Un(e) \u00e9conomiste \u2013 d\u00e9carbonation, comp\u00e9titivit\u00e9 et comp\u00e9tences dans l'industrie : https://bit.ly/3H9vHBz\n\ud83d\udc49Un(e) \u00e9conomiste \u2013 transition \u00e9cologique des services marchands : https://bit.ly/4066Mra\n\ud83d\udc49Un(e) \u00e9conomiste \u2013 comp\u00e9titivit\u00e9, la transition \u00e9cologique et les comp\u00e9tences : https://bit.ly/3Y0TACj\n\ud83d\udc49Un(e) charg\u00e9(e) de mission Transition \u00e9cologique transports-d\u00e9veloppement nouvelles mobilit\u00e9s : https://bit.ly/3kIbYkZ\n\nFrance Strat\u00e9gie cherche :\n\ud83d\udc49 Un(e) chef(fe) de projet au secr\u00e9tariat permanent de la Plateforme RSE : https://bit.ly/3WHSiea\n\nAu Haut Conseil pour le Climat l'offre du jour est pour :\n\ud83d\udc49 Un(e) charg\u00e9(e) de mission agriculture et alimentation : https://bit.ly/3ZVjh8W\n\nPlus g\u00e9n\u00e9ralement, les minist\u00e8res et les collectivit\u00e9s cherchent de plus en plus sur ces sujets climat-\u00e9nergie, \u00e0 savoir :\n\ud83d\udc49Ici des dizaines d'offres \"d\u00e9carbonation\" : https://lnkd.in/e9cDvwnA\n\ud83d\udc49Ici des dizaines d'offres \"climat\" : https://lnkd.in/eRWGRuH5\n\ud83d\udc49Ici des dizaines d'offres \"sobri\u00e9t\u00e9\" : https://lnkd.in/eBsy266J\n\nEnsuite on va passer au monde associatif.\n\nAu Shift Project nous recrutons :\n\ud83d\udc49 Un(e) charg\u00e9(e) de gestion administrative : https://lnkd.in/ed2AqeNM\n\ud83d\udc49 Un(e) responsable adjoint(e) Administration et Finances : https://lnkd.in/eqB_MJth\n\nBloom (association militant pour une p\u00eache durable) recrute :\n\ud83d\udc49 Un(e) responsable de campagne internationale avec profil ing\u00e9nieur sp\u00e9cialiste de la p\u00eache : https://bit.ly/3R3OVNC\n\nNB : Bloom et The Shift Project ont actuellement une collaboration et ce poste y est associ\u00e9.\n\nLe CJD - Centre des jeunes dirigeants - propose en alternance un poste de charg\u00e9(e) de projet transition VTE Vert : https://bit.ly/3wylpGa\n\nEnfin, dans le monde priv\u00e9, charit\u00e9 bien ordonn\u00e9e etc, c'est \u00e0 Carbone 4 qu'il y a une dizaine de postes \u00e0 pourvoir qui sont d\u00e9crits sur https://lnkd.in/dxzysp75\n\nBonne chance !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7024641172417474561,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7024641174925664256,urn:li:activity:7024641174925664256,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 167, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7024641174925664256,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7024641174925664256,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7024641174925664256", + "threadId": "activity:7024641174925664256", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024641174925664256", + "urn": "urn:li:activity:7024641174925664256", + "numComments": 222, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7024641174925664256", + "reactionTypeCounts": [ + { + "count": 3955, + "reactionType": "LIKE" + }, + { + "count": 263, + "reactionType": "PRAISE" + }, + { + "count": 197, + "reactionType": "APPRECIATION" + }, + { + "count": 83, + "reactionType": "EMPATHY" + }, + { + "count": 37, + "reactionType": "INTEREST" + }, + { + "count": 27, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7024641174925664256", + "numLikes": 4562, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024641174925664256", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4565, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7024289540320153600", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7024289540320153600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7024289540320153600)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_souverainet%C3%A9-et-ind%C3%A9pendance-%C3%A9nerg%C3%A9tique-activity-7024289540320153600-IgB-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7024289539351310336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7024289540320153600", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7024289539351310336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "WRAUhwEgKRixWPx1gnulPg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7932056655692603002", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676473141565?e=1677240000&v=beta&t=eu0XCViACOW3OmcNMdMo1Oc8nagNk1cGogLKuGag_R8", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676473141565?e=1677240000&v=beta&t=LCcxG_bm0l2EfOt2xYYrLcyiGpFI60bNB41xYGR3kvI", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676473141565?e=1677240000&v=beta&t=d09FP4HlB3D1gruUzRjAHlFka88cxAfTbfOehlBb7gQ", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676473141565?e=1677240000&v=beta&t=brf3LOZwWLz4uvm2fcHGo_7-PRQVV5bus1efMtQRcZE", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGQ_hdPORoVTw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5612499999999999 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7932056655692603002)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7932056655692603002)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "videos.assemblee-nationale.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : Mme Catherine MacGregor, directrice g\u00e9n\u00e9rale du groupe Engie ; M. Daniel Verwaerde, membre de l\u2019Acad\u00e9mie des technologies - Mardi 6 d\u00e9cembre 2022 on videos.assemblee-nationale.fr", + "actionTarget": "https://videos.assemblee-nationale.fr/video.12589032_638f56752774f.souverainete-et-independance-energetique-de-la-france--mme-catherine-macgregor-directrice-generale-6-decembre-2022" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "- \u00c0 16 heures: - Audition, ouverte \u00e0 la presse, de Mme Catherine MacGregor, Directrice g\u00e9n\u00e9rale du groupe Engie - \u00c0 18 heures: - Audition, ouverte \u00e0 la presse, de M. Daniel Verwaerde, ancien Administrateur g\u00e9n\u00e9ral du CEA, et Membre de l\u2019Acad\u00e9mie des..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : Mme Catherine MacGregor, directrice g\u00e9n\u00e9rale du groupe Engie ; M. Daniel Verwaerde, membre de l\u2019Acad\u00e9mie des technologies - Mardi 6 d\u00e9cembre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7024289539351310336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1379, + "length": 19, + "miniProfile": { + "firstName": "Catherine", + "lastName": "Fiamma MacGregor", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAABMcfABmsLl9zpQE2-syajg5lwtdTCOZjw", + "occupation": "Group CEO and Board Member at ENGIE", + "objectUrn": "urn:li:member:5009904", + "entityUrn": "urn:li:fs_miniProfile:ACoAAABMcfABmsLl9zpQE2-syajg5lwtdTCOZjw", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1608050700184?e=1681948800&v=beta&t=cxm9Ma0-2icVn2YAj5mrqFPOrNbwWKzpagc9-24weG4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1608050700184?e=1681948800&v=beta&t=FV3Kw5GJ8e_H3u0YUEctfp_JPq1kJXXr4Q1idjAyRjA", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQFrrX3rVRm71Q/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "catherine-fiamma-macgregor-3008171", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1608050753988?e=1681948800&v=beta&t=WG_rCAC0oM1_fHPqUSvzFpK6jOSm7FlgvHO6qZds1y0", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1608050753988?e=1681948800&v=beta&t=k5cdb5Lsgk7xvYkgBzPhYXRj6QYmeX5MUVGNkN3gV-8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1608050753988?e=1681948800&v=beta&t=i6_539fPpvXp8EVSsfA5EwYShkTNgNkjpXTUwTOZYRY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1608050753988?e=1681948800&v=beta&t=p5IqE_Qe_lIF3g6jypV_Sot3TbOLyvEVqRxDqrX5nsQ", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQGrYmTQGJfdXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "l41SjbQmRcKhAshpl5F1FQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "La \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\", c'est un peu le Thinkerview de l'\u00e9nergie du moment. Chaque personne qui passe sur le grill dispose d'une heure et demie minimum pour s'exprimer, et globalement les questions sont assez pr\u00e9cises (les r\u00e9ponses parfois un peu moins !).\n\nQuand on regarde la liste des \"auditionn\u00e9s\", il est facile de constater que globalement c'est l'\u00e9lectricit\u00e9 qui concentre l'essentiel du \"temps d'antenne\". Certes Patrick Pouyann\u00e9 est pass\u00e9 \"dire bonjour\", mais globalement on ne parle pas d'hydrocarbures dans cette enceinte \u00e0 proportion de leur importance dans l'ensemble de notre syst\u00e8me \u00e9nerg\u00e9tique.\n\nLors de cette audition de la patronne d'Engie, qui date du 6 d\u00e9cembre dernier, il a donc beaucoup \u00e9t\u00e9 question, sans surprise, de gaz. Qu'est-ce que que l'on y trouve ?\n\nD'abord, tr\u00e8s peu d'\u00e9changes ont port\u00e9 sur le pass\u00e9 de la DG d'Engie (qui a fait la quasi-totalit\u00e9 de sa carri\u00e8re dans l'amont p\u00e9trolier et gazier : https://bit.ly/3RfZwFd ) ou de son entreprise, alors que c'\u00e9tait le cas pour les autres \"auditionn\u00e9s\". Pourtant, avec le titre de cette commission d'enqu\u00eate, c'est bien du pass\u00e9 dont il est question ! Ont surtout \u00e9t\u00e9 abord\u00e9s les projets d'Engie et le potentiel de ceci ou cela \u00e0 l'avenir, ce qui est n\u00e9anmoins int\u00e9ressant quand m\u00eame, bien s\u00fbr.\n\nCatherine MacGregor affirme en particulier que le gaz fran\u00e7ais sera d\u00e9carbon\u00e9 \u00e0 20% en 2030 et totalement en 2045 (sans donner les volumes concern\u00e9s). Il y a 2 mani\u00e8res de faire du gaz d\u00e9carbon\u00e9 : la m\u00e9thanisation d'une part (par fermentation de biomasse renouvelable), et la production d'hydrog\u00e8ne d\u00e9carbon\u00e9 d'autre part (ce dernier pouvant ensuite \u00eatre utilis\u00e9 tel quel ou associ\u00e9 \u00e0 du carbone biog\u00e9nique pour faire des combustibles gazeux ou liquides).\n\nL'hydrog\u00e8ne d\u00e9carbon\u00e9 s'obtient soit par \u00e9lectrolyse avec de l'\u00e9lectricit\u00e9 d\u00e9carbon\u00e9e, soit par reformage du m\u00e9thane avec capture et s\u00e9questration de l'ensemble du CO2 \u00e9mis par le processus (voir https://bit.ly/3DgTyhr pour un rapide panorama).\n\nEn 2021, le seul gaz d\u00e9carbon\u00e9 vient de la m\u00e9thanisation et c'est 1% du gaz utilis\u00e9 en France (voir graphique en commentaire). La d\u00e9carbonation totale du gaz est donc un gros point d'interrogation qui, dans notre pays, fait l'objet de consid\u00e9rablement moins d'attention m\u00e9diatique que celle de l'\u00e9lectricit\u00e9. \n\nDans cette audition, le biogaz est qualifi\u00e9 d'\u00e9nergie \"locale\". C'est vrai pour le v\u00e9g\u00e9tal qui finira dans le m\u00e9thaniseur. Mais ce dernier est fait de m\u00e9taux qui ne sont pas locaux, et les cultures ou r\u00e9sidus de culture utilis\u00e9s pour la m\u00e9thanisation auront utilis\u00e9 des engrais, pas locaux, ou des tracteurs, qui ne le sont pas plus...\n\nOn retrouve ici la question de l'imbrication des \u00e9nergies, qui rend tr\u00e8s difficile de savoir quel potentiel sera r\u00e9ellement accessible quand (et si) la \"production ENR\" ne b\u00e9n\u00e9ficiera plus de la productivit\u00e9 industrielle globale amen\u00e9e par p\u00e9trole, gaz et charbon." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7024289539351310336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7024289540320153600,urn:li:activity:7024289540320153600,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 43, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7024289540320153600,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7024289540320153600,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7024289540320153600", + "threadId": "activity:7024289540320153600", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024289540320153600", + "urn": "urn:li:activity:7024289540320153600", + "numComments": 102, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7024289540320153600", + "reactionTypeCounts": [ + { + "count": 780, + "reactionType": "LIKE" + }, + { + "count": 174, + "reactionType": "INTEREST" + }, + { + "count": 53, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7024289540320153600", + "numLikes": 1022, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024289540320153600", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1022, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7023553958300250112", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7023553958300250112)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7023553958300250112)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pourquoi-la-france-produit-de-moins-en-moins-activity-7023553958300250112-1zJW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7023553957666922497", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7023553958300250112", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7023553957666922497", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "n/wMWVUi0yw2rPQKcSp4Ig==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8497763868858623232", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676365567578?e=1677240000&v=beta&t=6sF3FLmOwaOxEAqjcG1XSbG_-JRchasA8sZlEJ4lbyw", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676365567578?e=1677240000&v=beta&t=JJ3h_B3P3ouBQgJZD7lqbOoG5c1nu1Zx0P3qy7lu9qg", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676365567578?e=1677240000&v=beta&t=Ji7uWHOOMG2Bkg_nl2rev0iV9CVdV4ci16BgXtqJ4Xs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676365567578?e=1677240000&v=beta&t=n3zsoXCj-sU1FbxUN2OSCZbY1uMFeBG8ndpLKCh1NIk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQFr8j9F7XOroA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8497763868858623232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8497763868858623232)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pourquoi la France produit de moins en moins de viande de boeuf by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/conso-distribution/pourquoi-la-france-produit-de-moins-en-moins-de-viande-de-boeuf-1899504" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pourquoi la France produit de moins en moins de viande de boeuf" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7023553957666922497,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans les \u00e9missions d'origine agricole, l'un des postes importants en France est le m\u00e9thane \u00e9mis par le cheptel bovin. Ce m\u00e9thane vient de la fermentation des v\u00e9g\u00e9taux dans la panse de ces grosses bestioles, et ressort sous forme de rots pour l'essentiel.\n\nA cela il faut rajouter les \u00e9missions des cultures fourrag\u00e8res le cas \u00e9ch\u00e9ant (ma\u00efs, soja, c\u00e9r\u00e9ales, pois...). Ces cultures engendrent des \u00e9missions de CO2 pour la fabrication des engrais, et des \u00e9missions de N2O (un gaz \u00e0 effet de serre 265 fois plus puissant par kg que le CO2) lors de l'\u00e9pandage de ces derniers. Le r\u00e9sultat est que manger un kg de boeuf conduit \u00e0 l'\u00e9mission de plusieurs dizaines de kg d'\u00e9quivalent CO2.\n\nOn pourrait donc se r\u00e9jouir de la baisse du cheptel \u00e9voqu\u00e9e par cet article des Echos, expliquant que, depuis 2016, il y a une tendance en ce sens. Sauf que cette \u00e9volution n'est pas du tout pilot\u00e9e, dans un contexte o\u00f9 les \u00e9leveurs verraient leurs revenus maintenus avec des prix unitaires qui augmentent, et des m\u00e9thodes qu montent en gamme. \n\nElle est subie, \u00e0 cause :\n- du non renouvellement des exploitations (de fait \u00e9leveur est un m\u00e9tier tr\u00e8s contraignant et peu r\u00e9mun\u00e9r\u00e9)\n- de la hausse des couts (\u00e9nergie donc engrais, aliments...).\n\nMais en face les consommateurs n'ont pas modifi\u00e9 leurs habitudes alimentaires. La cons\u00e9quence est donc une hausse des importations, et par ailleurs une constance de l'empreinte carbone (pour \"la plan\u00e8te\", la situation n'a pas chang\u00e9). \n\nDans le m\u00eame temps, les consommateurs mangent de moins en moins de fruits et l\u00e9gumes, en particulier les jeunes : selon le pr\u00e9sident de l'Interprofession des fruits et l\u00e9gumes, les personnes de moins de 35 ans en mangent 4 fois moins que leurs grands parents (https://bit.ly/3Xwb7T5 ).\n\nIl y a donc la th\u00e9orie et il y a les faits. En th\u00e9orie, il faudrait que nous mangions plus de v\u00e9g\u00e9taux et moins de viande, et il faudrait que cela se fasse dans un contexte o\u00f9 les exploitants ne sont pas les premiers p\u00e9nalis\u00e9s par cette \u00e9volution. Rappelons que les exploitants agricoles, aujourd'hui, repr\u00e9sentent 2% du PIB, ce qui signifie que la production des denr\u00e9es agricoles brutes repr\u00e9sente de l'ordre de 2% du budget des m\u00e9nages. C'\u00e9tait plus proche du tiers il y a un si\u00e8cle !\n\nDans les faits, nous mangeons toujours autant de viande (et de plus en plus dans des produits transform\u00e9s) et de moins en moins de v\u00e9g\u00e9taux directement utilisables, et par ailleurs il y a de plus en plus de produits \"industriels\" (dont les boissons) et beaucoup trop de sucre.\n\nId\u00e9alement, il faudrait que le cheptel diminue dans un contexte bien diff\u00e9rent : que des \u00e9leveurs aussi nombreux g\u00e8rent des troupeaux plus petits et mieux valoris\u00e9s, et cela dans un contexte o\u00f9 la population modifie ses habitudes alimentaires pour que ce ne soient pas des importations qui prennent le relais (ce qui se passe aussi dans la volaille). Un sujet de plus o\u00f9 il faudrait se creuser un peu plus les m\u00e9ninges !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7023553957666922497,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7023553958300250112,urn:li:activity:7023553958300250112,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 189, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7023553958300250112,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7023553958300250112,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7023553958300250112", + "threadId": "activity:7023553958300250112", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023553958300250112", + "urn": "urn:li:activity:7023553958300250112", + "numComments": 365, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7023553958300250112", + "reactionTypeCounts": [ + { + "count": 3375, + "reactionType": "LIKE" + }, + { + "count": 516, + "reactionType": "INTEREST" + }, + { + "count": 251, + "reactionType": "MAYBE" + }, + { + "count": 64, + "reactionType": "PRAISE" + }, + { + "count": 37, + "reactionType": "APPRECIATION" + }, + { + "count": 18, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7023553958300250112", + "numLikes": 4261, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023553958300250112", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4262, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 Edited \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7023197816785129472", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7023197816785129472)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7023197816785129472)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_hydrog%C3%A8ne-industrie-macron-et-scholz-relancent-activity-7023197816785129472-ANEu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7023197815887548416", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7023197816785129472", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7023197815887548416", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "oia9NIY8H13XluNKMKw/+A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8856854701579573586", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675735775647?e=1677240000&v=beta&t=RY2WBZLCYbQkDxpQzKRDRAzMvcamjaEKNC1uE_J6l_E", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675735775648?e=1677240000&v=beta&t=4ZTgz6wq7E-tbnuE03FyuM5W80nTrp9VA6vrwx5oOVQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675735775648?e=1677240000&v=beta&t=USW9bZW3Yl4lUcNtlLTePM6GDSGjjkFHDiu9VswbhOc", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675735775648?e=1677240000&v=beta&t=jIjKyRvV8uLzeriGk7CY_cyO2srdQqDxunVJoWV94YM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGX80IoBXcWyw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8856854701579573586)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8856854701579573586)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Hydrog\u00e8ne, industrie : Macron et Scholz relancent le couple franco-allemand by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/macron-et-scholz-reaffirment-lamitie-indestructible-entre-la-france-et-lallemagne-1899434" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Hydrog\u00e8ne, industrie\u00a0: Macron et Scholz relancent le couple franco-allemand" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7023197815887548416,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s avoir jet\u00e9 \u00e0 la poubelle une partie de son parc de production \u00e9lectrique d\u00e9carbon\u00e9, l'Allemagne compte d\u00e9sormais sur celui \u00e0 construire \"chez les autres\" pour se fournir en hydrog\u00e8ne \"vert\", c'est-\u00e0-dire produit avec de l'\u00e9lectricit\u00e9 d'origine renouvelable.\n\nDans les diverses annonces que j'ai vues passer sur cette \"strat\u00e9gie\" allemande, il ne figure jamais la r\u00e9ponse aux questions suivantes, qui me semblent pourtant un peu centrales dans l'affaire :\n\n- le nucl\u00e9aire \u00e9tant hors jeu pour nos voisins, pourquoi serait-il plus facile de construire des \u00e9oliennes et des panneaux solaires hors d'Allemagne plut\u00f4t que dans ce pays pour disposer d'\u00e9lectricit\u00e9 bas carbone ?\n\n- les pays d'Afrique du Nord, ou d'autres \"bien insol\u00e9s\", ou \"bien vent\u00e9s\", devront d\u00e9velopper des ENR pour d\u00e9carboner leur propre mix \u00e9lectrique. Pourquoi les premi\u00e8res \u00e9oliennes et les premiers panneaux solaires au sein de ces pays devraient prioritairement servir \u00e0 d\u00e9carboner l'Allemagne plut\u00f4t que leur \u00e9conomie domestique ?\n\n- le rendement de chaine est faible : l'\u00e9lectrolyse \u00e0 partir d'\u00e9lectricit\u00e9 a un rendement de l'ordre de 70% et la liqu\u00e9faction + transport de H2 un rendement de l'ordre de 50% (et je ne connais pas celui de la \"regaz\u00e9ification\" de l'hydrog\u00e8ne). Si on passe par le m\u00e9thane ou l'ammoniac on \u00e9conomise les pertes de liqu\u00e9faction mais on perd l'\u00e9nergie n\u00e9cessaire \u00e0 la synth\u00e8se de CH4 ou NH3. Il faut donc doubler (et peut-\u00eatre plus) la production \u00e9lectrique par rapport \u00e0 une production locale utilis\u00e9e en direct. Pourquoi cela \"tiendrait\" physiquement et \u00e9conomiquement \u00e0 long terme, au surplus dans un monde o\u00f9 les bateaux transportant m\u00e9thane et ammoniac devront utiliser une partie de la cargaison comme carburant puisqu'il n'y a plus droit au p\u00e9trole ?\n\nSortir d'un d\u00e9bat sur l'\u00e9nergie demande toujours de manipuler des chiffres. Lorsqu'elle relaie les annonces gouvernementales, il serait souhaitable que la presse accompagne ces derni\u00e8res de calculs d'ordre de grandeur pour que l'on comprenne ce qui est r\u00e9aliste (ou pas) et \u00e0 quel horizon de temps pour les annonces en question. Si cela conduit \u00e0 prendre quelques jours pour publier un article, le gain en valeur ajout\u00e9e me semble largement justifier le d\u00e9lai.\n\nA tout le moins, la m\u00eame presse pourrait accompagner l'annonce des questions que cela pose. Cela \u00e9viterait, le cas \u00e9ch\u00e9ant, de perdre du temps \u00e0 courir derri\u00e8re des chim\u00e8res, ce qui, quand on est dans une course contre la montre, est un moyen garanti de faire son propre malheur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7023197815887548416,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7023197816785129472,urn:li:activity:7023197816785129472,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 182, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7023197816785129472,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7023197816785129472,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7023197816785129472", + "threadId": "activity:7023197816785129472", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023197816785129472", + "urn": "urn:li:activity:7023197816785129472", + "numComments": 285, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7023197816785129472", + "reactionTypeCounts": [ + { + "count": 3160, + "reactionType": "LIKE" + }, + { + "count": 420, + "reactionType": "INTEREST" + }, + { + "count": 224, + "reactionType": "MAYBE" + }, + { + "count": 120, + "reactionType": "PRAISE" + }, + { + "count": 20, + "reactionType": "EMPATHY" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7023197816785129472", + "numLikes": 3962, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023197816785129472", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3985, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7022876021402042368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7022876021402042368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7022876021402042368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-2011-%C3%A0-une-%C3%A9poque-o%C3%B9-le-gaz-russe-ne-activity-7022876021402042368-GCwD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7022876020517031937", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7022876021402042368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7022876020517031937", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "RzzBirUiT+SGO4tUeAQB6g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHnH9Ao0zcrbA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHnH9Ao0zcrbA", + "artifacts": [ + { + "width": 916, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1674384120996?e=1679529600&v=beta&t=Oi2195liGNQTl-VwNo6eX4R4bMyHtKAjwgX5nA5Y_Qc", + "expiresAt": 1679529600000, + "height": 612 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1674384121145?e=1679529600&v=beta&t=h9Zctk9OuQ88-__5OAeOwQ2R_MczqrnxfCejDQrBaV8", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 916, + "fileIdentifyingUrlPathSegment": "1280/0/1674384121145?e=1679529600&v=beta&t=yzqvYxDNzEjtatFBbYCZIhkss8qFP0S6VD9-PxE3Zr4", + "expiresAt": 1679529600000, + "height": 612 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1674384121145?e=1679529600&v=beta&t=puHSg4Oik6-wAeN9mQVc84Os0gu4PXYrkEiZAYUaudA", + "expiresAt": 1679529600000, + "height": 321 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1674384121145?e=1679529600&v=beta&t=FQSNdAR-Nt3SD6t3AtGm6gUPf49kXYv8PBVdVUMBqTI", + "expiresAt": 1679529600000, + "height": 107 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1674384121145?e=1679529600&v=beta&t=Xiweh-0ed5q5o5mE2Zt719W99cAowF4vS03Ji9LmfEA", + "expiresAt": 1679529600000, + "height": 534 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHnH9Ao0zcrbA/feedshare-shrink_" + }, + "displayAspectRatio": 0.6681222707423581 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7022876020517031937,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 2011, \u00e0 une \u00e9poque o\u00f9 le gaz russe ne faisait pas la une de l'actualit\u00e9, la France a interdit la fracturation hydraulique, mettant ainsi un terme \u00e0 toute exploitation potentielle du gaz dit de schiste sur notre sol. Avons nous \u00e0 l'\u00e9poque supprim\u00e9 une marge de manoeuvre importante pour continuer \u00e0 consommer du gaz ?\n\nC'est la question que j'ai trait\u00e9e dans ma chronique diffus\u00e9e hier matin sur RTL : https://bit.ly/3D5jqNe\n\nPour produire ce type de gaz il faut :\n\n- que le sous-sol comporte une roche m\u00e8re, c'est \u00e0 dire une formation g\u00e9ologique o\u00f9 se sont form\u00e9s des hydrocarbures liquides et gazeux (https://bit.ly/2RsaUS6 ). C'est le cas chez nous.\n\n- que des hydrocarbures y soient toujours pr\u00e9sents. Or, en France, une large partie a tr\u00e8s certainement migr\u00e9 vers les roches-r\u00e9servoir de la Mer du Nord et du bassin aquitain, et il n'y a plus beaucoup de gaz dans la roche m\u00e8re (ce que dit Patrick Pouyann\u00e9 lors d'une audition r\u00e9cente devant une commission d'enqu\u00eate parlementaire : https://bit.ly/3XQMSPd )\n\n- que la roche m\u00e8re soit fracturable (elle peut \u00eatre trop \"molle\" pour cela, comme en Pologne qui a essay\u00e9 pour de vrai)\n\n- qu'il y ait l'espace en surface pour mettre tous les quelques kilom\u00e8tres une installation qui ressemble \u00e0 ce qu'il y a sur la photo (avec les pistes d'acc\u00e8s qui vont avec et qui sont parcourues par des norias de camions pour acheminer l'eau et le sable, et \u00e9vacuer le gaz ou le p\u00e9trole) \n\n- comme la dur\u00e9e de vie d'un puits est faible, il faut qu'il y ait une industrie du forage apte \u00e0 faire en permanence beaucoup de trous (les USA forent environ 100.000 puits par an) qui n'existe pas en Europe\n\nUn dernier point est central : le droit. Aux USA, les ressources mini\u00e8res pr\u00e9sentes sous le sol appartiennent au propri\u00e9taire du sol. Il suffit donc \u00e0 ce dernier de toper avec un exploitant pour que les op\u00e9rations d\u00e9marrent. \n\nEn France, les ressources mini\u00e8res appartiennent \u00e0 l'Etat (j'ai bien peur d'avoir invent\u00e9 dans ma chronique une limite de 10 m\u00e8tres qui n'existe pas ! Heureusement ca ne change pas la suite). \n\nDe ce fait, si vous ou moi avons du gaz (ou du plomb, ou de l'or, ou du lithium) sous notre terrain, nous ne pouvons pas en confier l'extraction \u00e0 un op\u00e9rateur avec partage des recettes : c'est l'Etat qui en est propri\u00e9taire et qui seul peut en attribuer la concession \u00e0 une entreprise. Aux USA, en pareil cas le propri\u00e9taire du terrain devient mon\u00e9tairement riche, alors qu'en France il se fait exproprier !\n\nPour d\u00e9marrer une exploitation \u00e0 large \u00e9chelle de gaz de schiste chez nous, il faudrait donc une concession mini\u00e8re par puits ou ensemble de puits, avec \u00e0 chaque fois des recours possibles \u00e9videmment : il y en aurait pour plus d'une d\u00e9cennie. \n\nEn conclusion, m\u00eame si la fracturation hydraulique \u00e9tait r\u00e9-autoris\u00e9e, le \"gaz de schiste\" ne pourrait pas du tout compenser le d\u00e9clin des importations russes en Europe. Mais le gaz fossile, dont l'usage \u00e9met du CO2, doit dispara\u00eetre d'ici 2050, ce n'est pas vraiment un drame." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7022876020517031937,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7022876021402042368,urn:li:activity:7022876021402042368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 65, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7022876021402042368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7022876021402042368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7022876021402042368", + "threadId": "activity:7022876021402042368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022876021402042368", + "urn": "urn:li:activity:7022876021402042368", + "numComments": 116, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7022876021402042368", + "reactionTypeCounts": [ + { + "count": 733, + "reactionType": "LIKE" + }, + { + "count": 167, + "reactionType": "INTEREST" + }, + { + "count": 64, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7022876021402042368", + "numLikes": 978, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022876021402042368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 981, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7022523538767065088", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7022523538767065088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7022523538767065088)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-pr%C3%A9sident-r%C3%A9pond-%C3%A0-vos-questions-sur-l%C3%A9cologie-activity-7022523538767065088-vcvG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7022523537882001408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7022523538767065088", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7022523537882001408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "B2/vODW3fJKbHeuS7ED+Vw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7813238101893236222", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675718107712?e=1677240000&v=beta&t=tTycSPvq-2cJXqlpoeDYJ-esbvLOS6McsW9PiXCnVhM", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675718107712?e=1677240000&v=beta&t=TGtQVfiZEIEadSEbMen9q5u7hD1PL7U2zyaE9Yns4nI", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675718107712?e=1677240000&v=beta&t=_98YHkqRJl0oPCYH3RRSbGLGaKiE_c5ocf8I6jJNTsQ", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675718107712?e=1677240000&v=beta&t=F-XZ1R-rGoJ-24aUumltjT-4Za3EFwA401Jb1FJMGjI", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHXUyrP0HNczw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7813238101893236222)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7813238101893236222)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "elysee.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Pr\u00e9sident r\u00e9pond \u00e0 vos questions sur l'\u00e9cologie, \u00e9pisode 3. by elysee.fr", + "actionTarget": "https://www.elysee.fr/emmanuel-macron/2023/01/17/le-president-repond-a-vos-questions-sur-lecologie-episode-3" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Pr\u00e9sident r\u00e9pond \u00e0 vos questions sur l'\u00e9cologie, \u00e9pisode 3." + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7022523537882001408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "ufXpxM2rT5O258oE1W1B9w==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Emmanuel Macron r\u00e9pond \u00e0 vos questions sur l'\u00e9cologie, \u00e9pisode 3. Je viens de regarder cette courte vid\u00e9o (17 minutes). Ce format a le m\u00e9rite de traiter de questions d\u00e9tour\u00e9es, ce qui rend la critique (que j'esp\u00e8re constructive) circonstanci\u00e9e. Voici quelques commentaires.\n\n- sur le \"qui aurait pu pr\u00e9voir\" : \"on\" pouvait mettre dans le discours de voeux la pr\u00e9cision donn\u00e9e dans cette vid\u00e9o (que ce qui \u00e9tait impr\u00e9visible \u00e9tait la vitesse d'\u00e9volution) et qui levait toute ambiguit\u00e9. Y avoir pens\u00e9 sans l'avoir fait est hautement improbable et il reste toujours \u00e0 savoir pourquoi...\n\n- l'Elys\u00e9e a demand\u00e9 aux 50 sites industriels les plus \u00e9metteurs en France de diviser leurs \u00e9missions par 2 en 10 ans. Il s'agit essentiellement d'industrie lourde (acier, chimie, ciment). Cette derni\u00e8re a besoin de d\u00e9ployer des technologies nouvelles (hydrog\u00e8ne produit par \u00e9lectrolyse, capture et s\u00e9questration du CO2, recyclage chimique) pour baisser ses \u00e9missions de plus de 30% (voir le plan de transformation de l'\u00e9conomie fran\u00e7aise : https://bit.ly/3WqangU ). Cela demande que le pays fasse des investissements de son c\u00f4t\u00e9 (production \u00e9lectrique d\u00e9carbon\u00e9e pour l'\u00e9lectrolyse, organisation de la collecte de mat\u00e9riaux \u00e0 recycler pour les industriels...) qui doivent \u00eatre au rendez vous dans les temps impartis. Cela demande aussi une mani\u00e8re d'obliger les investissements des industriels pour y parvenir. Pour le moment le plan d'ensemble qui le garantisse n'est pas sur la table.\n\n- La \"taxe carbone aux fronti\u00e8res\" n'est pas une taxe (en pratique les importateurs devront acheter des quotas et le prix de ces derniers n'est pas connu \u00e0 l'avance), et surtout ce m\u00e9canisme ne s'appliquera pas, dans un premier temps, \u00e0 l'essentiel des produits import\u00e9s (il s'appliquera en gros aux \"commodit\u00e9s\" : acier, mat\u00e9riaux chimiques de base, ciment). \n\n- la r\u00e9ponse \u00e0 la question \"que faites vous pour le climat\" liste quelques actions dispers\u00e9es, mais ne donne aucune vision d'ensemble (existe-t-elle ?).\n\n- sur le plastique les mesures essentielles sont du c\u00f4t\u00e9 amont (moins d'emballages, plus de de recyclage, etc) \n\n- la for\u00eat doit augmenter sa capacit\u00e9 comme puits tout en contribuant \u00e0 plus d'usages aval, et cela dans un contexte d'adversit\u00e9 climatique croissante. Organiser cela demande des comp\u00e9tences et un plan d'ensemble qui est pour le moment sont plut\u00f4t inexistants c\u00f4t\u00e9 Etat. Ca ne se r\u00e9sume pas \u00e0 \"planter des arbres\".\n\n- la r\u00e9ponse sur les ZFE \u00e9voque des \"solutions\" qui ne seront pas d\u00e9ploy\u00e9es \u00e0 l'\u00e9chelle - voire ne le seront jamais - au moment de l'installation de ces zones. \n\nPersonne ne travaillant seul, pas plus notre pr\u00e9sident que les autres, il est dommage qu'aucune r\u00e9ponse ne parle de la mise \u00e0 niveau de l'\u00e9quipe \u00e9lys\u00e9enne (https://bit.ly/2TcaAU9 ) sur ces sujets. Il me semble qu'il y a l\u00e0 une \"m\u00e8re de toutes les mesures\"." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7022523537882001408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7022523538767065088,urn:li:activity:7022523538767065088,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 74, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7022523538767065088,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7022523538767065088,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7022523538767065088", + "threadId": "activity:7022523538767065088", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022523538767065088", + "urn": "urn:li:activity:7022523538767065088", + "numComments": 112, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7022523538767065088", + "reactionTypeCounts": [ + { + "count": 1231, + "reactionType": "LIKE" + }, + { + "count": 112, + "reactionType": "INTEREST" + }, + { + "count": 60, + "reactionType": "MAYBE" + }, + { + "count": 38, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7022523538767065088", + "numLikes": 1455, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022523538767065088", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1463, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7022131882947407872", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7022131882947407872)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7022131882947407872)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_1973-et-2008-premi%C3%A8res-crises-%C3%A9cologiques-activity-7022131882947407872-AjAs?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7022131881886248960", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7022131882947407872", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7022131881886248960", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "bbQ+mpA5blBcOzXZH/+dFQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8326292110930180784", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676272478778?e=1677240000&v=beta&t=AZRqA2grv193oYMxVGbEZGQfBmV7nVbgaQVw5iXKktE", + "expiresAt": 1677240000000, + "height": 725 + }, + { + "width": 883, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676272478778?e=1677240000&v=beta&t=7Dq-8kH7JcpEEKaB4wVZsdeOyDyC8mzVLApS2mpHVDw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676272478778?e=1677240000&v=beta&t=-IjAVqsWqa4iNOWh5pEdD61dh9R1HYKzWgxppQ60r3o", + "expiresAt": 1677240000000, + "height": 145 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676272478778?e=1677240000&v=beta&t=M_c4QuIERWmG6JVGnD8EAIzHItRVybRbfHK6d5Y11AQ", + "expiresAt": 1677240000000, + "height": 435 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEHE4OHtSnMnQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.90625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8326292110930180784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8326292110930180784)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 21 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: 1973 et 2008, premi\u00e8res crises \u00e9cologiques des \u00ab limites \u00e0 la croissance \u00bb ? by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/blog/petrole/2023/01/18/1973-et-2008-premieres-crises-ecologiques-des-limites-a-la-croissance/#_ftn1" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "1973 et 2008, premi\u00e8res crises \u00e9cologiques des \u00ab limites \u00e0 la croissance \u00bb ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7022131881886248960,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1077, + "length": 18, + "miniProfile": { + "firstName": "Matthieu", + "lastName": "Auzanneau", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAA2LO4UB7ks-me882mrEhMLuJ2ZBEpiaEbY", + "occupation": "Directeur du Shift Project", + "objectUrn": "urn:li:member:227228549", + "entityUrn": "urn:li:fs_miniProfile:ACoAAA2LO4UB7ks-me882mrEhMLuJ2ZBEpiaEbY", + "publicIdentifier": "matthieu-auzanneau-00512264", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1676289970483?e=1677240000&v=beta&t=myga6sAPvVyeGpm5LCDRWoTkGvnv6JopDw00RoS8VLg", + "expiresAt": 1677240000000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1676289970483?e=1677240000&v=beta&t=I2UeR-BHRgFXLNlkjKerVCtXsT4xJhqPL2-IBDilx0M", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1676289970483?e=1677240000&v=beta&t=NGjxeEOMQT2OBVSe2Iq8A5NgnQU_KwcGe2VmH_t1-3A", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1676289970483?e=1677240000&v=beta&t=c-bzWYW8YWjyis4tmdkXYzlqvfGIA24nSV_baGgrQoQ", + "expiresAt": 1677240000000, + "height": 100 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E35AQFMUHwrYWXYGw/profile-framedphoto-shrink_" + } + }, + "trackingId": "KJCm8dNVSumGiHRtUYbsCQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2060, + "length": 14, + "miniProfile": { + "firstName": "Michel", + "lastName": "LEPETIT", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAPCu2sBs1ZQWNfIFizcuo9YmjS4ot4sg8A", + "occupation": "Pr\u00e9sident de Global Warning ; Vice-Pr\u00e9sident de The Shift Project", + "objectUrn": "urn:li:member:63093611", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAPCu2sBs1ZQWNfIFizcuo9YmjS4ot4sg8A", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1523477310682?e=1681948800&v=beta&t=ue8_LPuhRYqLcBHpJcVvAHohi2g7yB255issMI8WFWc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1523477310682?e=1681948800&v=beta&t=Nf1OLDZTwcTQonOrp4fD6E2Qj0J3DBw7d_B5qzeeY8o", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHnMKKx14ZNYw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "michel-lepetit", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1526301071435?e=1681948800&v=beta&t=v5P6-ITTB4DhRp7_YX2UEJKwU3kWrY-wKgAHgUHQP24", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1526301071435?e=1681948800&v=beta&t=dg22nwIhKRgV-MvnqXA-YzEeRF21yq4cJ9BfOayE4IE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1526301071435?e=1681948800&v=beta&t=Rq3d8xruf-AjJIxUGFu7BqWSyQztUW2r6v0qdSkqnuk", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1526301071435?e=1681948800&v=beta&t=wh6XyNIs4bp8DCawGp3mG3-isCp60iNvO_vs_2N54mk", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQHcVgn7JKsYxA/profile-displayphoto-shrink_" + } + }, + "trackingId": "OP8guK5NSqqnW6P40J2WyQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans le premier chapitre de \"Dormez tranquilles jusqu'en 2100\", j'avais fait remarquer que la \"crise des subprime\" avait suivi 3 ans de stagnation de la production de p\u00e9trole accompagn\u00e9e d'une envol\u00e9e de son prix, et que la d\u00e9c\u00e9l\u00e9ration du PIB am\u00e9ricain avait pr\u00e9c\u00e9d\u00e9 la crise financi\u00e8re et non l'avait suivie.\n\nJ'en avais tir\u00e9 l'hypoth\u00e8se que cette crise financi\u00e8re \u00e9tait un sympt\u00f4me - comme la crise de 1973 - d'une rupture de pente sur l'approvisionnement p\u00e9trolier occidental. En 1973, le monde industriel - essentiellement compos\u00e9 de l'OCDE \u00e0 une \u00e9poque o\u00f9 les BRICS ne pesaient vraiment pas lourd dans l'\u00e9conomie mondiale - avait vu la hausse de son approvisionnement p\u00e9trolier passer brutalement de 8% par an \u00e0 une stagnation puis une hausse beaucoup plus modeste (l\u00e9g\u00e8rement sup\u00e9rieure \u00e0 1% par an).\n\nCela avait mis un tr\u00e8s gros coup de frein \u00e0 la croissance \u00e9conomique, et d\u00e9clench\u00e9 le d\u00e9but d'un ph\u00e9nom\u00e8ne qui n'a fait que prendre de l'ampleur depuis : l'endettement.\n\nDans un article beaucoup plus fouill\u00e9 sur le plan \u00e9conomique que ce que j'avais \u00e9crit \u00e0 l'\u00e9poque, Matthieu Auzanneau (par ailleurs directeur du Shift Project dans le civil :) ) revient sur cette \"crise des subprime\" et documente pourquoi, selon lui, elle est doublement d\u00e9termin\u00e9e par un probl\u00e8me d'approvisionnement p\u00e9trolier. \n\nLe premier facteur d\u00e9clencheur est le choc de 1973, qui a ralenti la croissance et engendr\u00e9 une augmentation constante des dettes dans les \u00e9conomies occidentales apr\u00e8s 1973. Ce que soutient Matthieu Auzanneau - et beaucoup d'autres sp\u00e9cialistes du p\u00e9trole avec lui - est que le choc de 1973 est une cons\u00e9quence directe du pic p\u00e9trolier conventionnel am\u00e9ricain de 1970, \u00e0 une \u00e9poque o\u00f9 les USA produisaient un quart de l'or noir mondial (\u00e0 la m\u00eame \u00e9poque l'URSS c'est 15% et l'Arabie Saoudite c'est 8%). \n\nLe deuxi\u00e8me facteur d\u00e9clencheur est le pic p\u00e9trolier conventionnel mondial en 2008. C'est sur cet \u00e9pisode qu'il s'attarde dans son analyse, qui est convergente avec celle d'autres sp\u00e9cialistes du lien entre p\u00e9trole et \u00e9conomie, comme par exemple Michel LEPETIT (chercheur associ\u00e9 au Laboratoire interdisciplinaire des \u00e9nergies de demain - https://bit.ly/3XLS5Yk ).\n\nMatthieu Auzanneau passe par une observation de l'\u00e9volution de l'inflation, du taux directeur de la banque centrale, ou encore du d\u00e9ficit commercial, qu'il relie de mani\u00e8re argument\u00e9e \u00e0 l'\u00e9volution de la production de p\u00e9trole. \n\nDans un travail fouill\u00e9 du Shift Project publi\u00e9 il y a un an (https://bit.ly/3R8e1uV ), nous avions soulign\u00e9 que les 16 principaux producteurs de p\u00e9trole de la plan\u00e8te \u00e9taient probablement pass\u00e9s par leur pic de production en 2018. \n\nSi les m\u00eames causes produisent les m\u00eames effets \u00e0 l'avenir, cela signifie que le paysage \u00e9conomique et financier de demain pourrait bien \u00eatre plus proche de la collection de chocs et de crises qu'un \"retour \u00e0 la normale\", et ce quelles que soient nos aspirations sur les retraites..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7022131881886248960,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7022131882947407872,urn:li:activity:7022131882947407872,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 28, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7022131882947407872,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7022131882947407872,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7022131882947407872", + "threadId": "activity:7022131882947407872", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022131882947407872", + "urn": "urn:li:activity:7022131882947407872", + "numComments": 37, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7022131882947407872", + "reactionTypeCounts": [ + { + "count": 455, + "reactionType": "LIKE" + }, + { + "count": 99, + "reactionType": "INTEREST" + }, + { + "count": 74, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7022131882947407872", + "numLikes": 637, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022131882947407872", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 637, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7021901658376806400", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7021901658376806400)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7021901658376806400)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-novembre-dernier-la-fondation-descartes-activity-7021901658376806400-jFOD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7021901657420505089", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7021901658376806400", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7021901657420505089", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "eqO41UbZULheRA6Ym9j9SA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEBzmKbiVbR_A", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEBzmKbiVbR_A", + "artifacts": [ + { + "width": 914, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1674151813718?e=1679529600&v=beta&t=Xn--UUNyck6BIcyAAm0GeBl3RVSNzsCST2dTyLg1pY8", + "expiresAt": 1679529600000, + "height": 1526 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1674151814620?e=1679529600&v=beta&t=EAu4SK6om7DCLUCnq3PnIcm0V0PPTu5hDK_fpV2X9O0", + "expiresAt": 1679529600000, + "height": 33 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280/0/1674151814620?e=1679529600&v=beta&t=4H0uH9YP8w_w0RINnGVOTBN1BL9oZwxpV6Mm4rHFZT0", + "expiresAt": 1679529600000, + "height": 1526 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1674151814620?e=1679529600&v=beta&t=LyPZZP_uT3TfYvswNjUCIa9RmotU0HDYId_nGTBSRVQ", + "expiresAt": 1679529600000, + "height": 801 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1674151814620?e=1679529600&v=beta&t=HvHvuaU5Em4-lmXmjcRfBqnBfzZssdADnLJiucmrvjk", + "expiresAt": 1679529600000, + "height": 267 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1674151814620?e=1679529600&v=beta&t=xqDKGvyYkrh3WQNC8SoYf6VTnWd_wRfIlwDL64VsOxw", + "expiresAt": 1679529600000, + "height": 1336 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEBzmKbiVbR_A/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "timeline" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7021901657420505089,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En Novembre dernier, la Fondation Descartes a publi\u00e9 une \u00e9tude sur la mani\u00e8re dont les fran\u00e7ais(es) s'informent sur le changement climatique : https://bit.ly/3HqMQZ3 \n\nOn y apprend que le premier canal d'information sur la question est constitu\u00e9 des media g\u00e9n\u00e9ralistes, puis on va trouver l'entourage (proches et amis) et les r\u00e9seaux sociaux. \n\nDans notre pays (et si les r\u00e9ponses ont \u00e9t\u00e9 honn\u00eates :) ) ce ne sont donc pas ces r\u00e9seaux qui constituent le premier vecteur d'information.\n\nAlors qu'un autre graphique (en commentaire) montre que la plus grande cote de confiance est accord\u00e9e aux scientifiques qui travaillent sur la question, il est dommage de ne pas avoir mis dans la liste des r\u00e9ponses les sites des institutions scientifiques.\n\nMais l\u00e0 o\u00f9 ca devient farce, c'est que les media sont par ailleurs, juste avant les r\u00e9seaux sociaux, les modes d'informations que la population consid\u00e8re comme les moins fiables ! Seulement 16% de la population d\u00e9clare en effet leur faire un peu ou beaucoup confiance de mani\u00e8re g\u00e9n\u00e9rale.\n\nCe grand \u00e9cart entre habitudes (puisque nous continuons \u00e0 utiliser les media) et confiance n'est pas une nouveaut\u00e9. La bonne question est de savoir pourquoi c'est une constante que la population aille s'informer essentiellement aupr\u00e8s d'entit\u00e9s \u00e0 qui elle n'accorde que peu de cr\u00e9dit, alors que d\u00e9sormais les organismes \u00e9metteurs d'information le font en direct via leurs sites internet.\n\nTentons une explication : le media vient \u00e0 vous, alors que d'utiliser internet demande d'aller \u00e0 l'information (et donc de savoir naviguer dans un univers plus complexe). En fait, ce que dit probablement cet \u00e9cart, c'est que la population souhaite des interm\u00e9diaires qui feront le tri et la vulgarisation pour elle, mais n'est pas satisfaite de la mani\u00e8re dont les personnes qui assurent aujourd'hui cette fonction s'acquittent de la t\u00e2che l'essentiel du temps. \n\nD'o\u00f9 peut venir ce d\u00e9faut de confiance contre des media qui sont par ailleurs utilis\u00e9s parce que c'est \"normal\" d'\u00e9couter l'information qui vient \u00e0 vous ?\n\nTentons \u00e0 nouveau une hypoth\u00e8se : nous avons tendance \u00e0 caler notre niveau de confiance sur la plus mauvaise surprise v\u00e9cue et non sur la moyenne de ce qui se passe : il suffit donc d'une fois o\u00f9 nous avons pris un media en flagrant d\u00e9lit d'incoh\u00e9rence, ou de m\u00e9connaissance d'un sujet que nous connaissons bien, et ensuite nous deviendrons m\u00e9fiants de fa\u00e7on habituelle.\n\nL'antidote \u00e0 cela est donc qu'un media ne d\u00e9roge jamais \u00e0 quelques r\u00e8gles simples :\n- ne pas traiter une information quand il n'y a pas le temps pour cela\n- bien comprendre qui est l\u00e9gitime pour s'exprimer sur quoi (\u00e9vite les incoh\u00e9rences)\n- \u00eatre transparent sur ce que l'on sait et ce que l'on ne sait pas\n- ne pas confondre les faits et les opinions (y compris la sienne), \n- ne pas confondre la ligne \u00e9ditoriale avec la r\u00e9gie publicitaire.\n\nUne d\u00e9mocratie qui fonctionne bien a besoin de media qui fonctionnent bien. Les houspiller pour les faire progresser est donc utile :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7021901657420505089,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7021901658376806400,urn:li:activity:7021901658376806400,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 46, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7021901658376806400,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7021901658376806400,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7021901658376806400", + "threadId": "activity:7021901658376806400", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021901658376806400", + "urn": "urn:li:activity:7021901658376806400", + "numComments": 76, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7021901658376806400", + "reactionTypeCounts": [ + { + "count": 624, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 61, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7021901658376806400", + "numLikes": 773, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021901658376806400", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 773, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 Edited \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7021435585357586432", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7021435585357586432)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7021435585357586432)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-charbon-de-l%C3%BCtzerath-met-lallemagne-face-activity-7021435585357586432-IoQI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7021435584514523136", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7021435585357586432", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7021435584514523136", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "7MuG8zg6AygNCppRvhwkBA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7497948053080086853", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676500910822?e=1677240000&v=beta&t=ovxYBKCUXocaVCTB7ImI60WKOxC85-TVBtS_EJaOKV4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676500910822?e=1677240000&v=beta&t=BRa3iBhwzujzRQmr9NXxpaRvJ6w0hxCvRo1tikC1cTk", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676500910822?e=1677240000&v=beta&t=dTCJFeVUZ4GevrQk3nO4ZgmtjMhrmnFgTxpFc3YoSTQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676500910822?e=1677240000&v=beta&t=dX-jtRUPX5fAKz_lxiiprWdW2-4aHc6ZB8BvQ-gDHOU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFOl7YXRszTzg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7497948053080086853)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7497948053080086853)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le charbon de L\u00fctzerath met l'Allemagne face \u00e0 ses contradictions by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/le-charbon-de-lutzerath-met-lallemagne-face-a-ses-contradictions-1897595" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le charbon de L\u00fctzerath met l'Allemagne face \u00e0 ses contradictions" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7021435584514523136,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Lorsque l'Allemagne a d\u00e9cid\u00e9 - et mis en application - sa sortie du nucl\u00e9aire (que l'on doit \u00e0 Schroeder - avant Fukushima - et non \u00e0 Merkel, contrairement \u00e0 ce qui est souvent dit ou \u00e9crit), d'aucuns s'\u00e9taient \u00e9mus que cela pourrait conduire \u00e0 recourir plus longtemps au charbon, conduisant en cela \u00e0 des \u00e9missions de CO2 suppl\u00e9mentaires - outre d'autres petits \u00e0-c\u00f4t\u00e9 de cette \u00e9nergie : particules fines (des milliers de morts pr\u00e9matur\u00e9s en Europe chaque ann\u00e9e), NOx, pollution des eaux de surface, montagnes de cendres (des milliers de tonnes par jour pour les plus grosses centrales) qui contiennent des m\u00e9taux lourds et des substances toxiques (arsenic, fluor...), et \u00e9videmment destruction totale des \u00e9cosyst\u00e8mes sur les dizaines de km2 d'emprise de l'excavation de lignite.\n\nA l'\u00e9poque d\u00e9j\u00e0, il \u00e9tait possible d'observer depuis le ciel les vastes \u00e9tendues (plusieurs kilom\u00e8tres de c\u00f4t\u00e9) des mines \u00e0 ciel ouvert de lignite, comme celle de Garzweiler, pr\u00e8s de Cologne : https://bit.ly/3Xlzfra (il y en a d'autres pas loin, dont une encore plus grande \u00e0 Hambach : https://bit.ly/3QNlhMo ), dont la cr\u00e9ation a conduit \u00e0 l'\u00e9vacuation d\u00e9finitive d'un peu moins de 100.000 personnes, avec destruction volontaire de leur habitat.\n\nMais tout cela n'aurait pas du arriver avec la substitution du charbon par le gaz, diront d'autres. A cela on peut r\u00e9pondre 2 choses : \n\n- cela serait encore moins arriv\u00e9 si l'Allemagne avait conserv\u00e9 son nucl\u00e9aire. Si on regarde l'\u00e9volution de la puissance pilotable chez nos voisins, elle est rest\u00e9e \u00e0 peu pr\u00e8s constante depuis 2002 : https://bit.ly/3w9Y4KH. Il y avait 22,4 GW de nucl\u00e9aire \u00e0 cette \u00e9poque et 20 GW de lignite. Aujourd'hui il reste 4 GW de nucl\u00e9aire : \u00e0 la place il pourrait ne rester que 2 GW de lignite... et l'agrandissement de L\u00fctzerath ne serait pas n\u00e9cessaire.\n\n- la d\u00e9pendance aux russes \u00e9tait un pari, et l'histoire nous a quand m\u00eame enseign\u00e9 que nos relations avec notre grand voisin n'ont pas toujours \u00e9t\u00e9 tranquilles. Ne pas envisager que ca puisse tourner vinaigre est quand m\u00eame gentiment impr\u00e9voyant.\n\nEn Europe, quand un \u00e9tat n'est pas assez disciplin\u00e9 sur le plan de l'\u00e9quilibre des comptes publics, il est th\u00e9oriquement susceptible de se voir infliger une amende par le Conseil, allant jusqu'\u00e0 0,5% du PIB (soit environ 10 milliards pour la France). Plus g\u00e9n\u00e9ralement, lorsque l'on entend \u00eatre r\u00e9ellement s\u00e9rieux sur le respect d'une obligation, il y a des sanctions en cas de non respect qui sont d'autant plus s\u00e9v\u00e8res que l'obligation \u00e0 respecter est importante.\n\nSi l'Europe \u00e9tait r\u00e9ellement s\u00e9rieuse sur le CO2, il y aurait un syst\u00e8me de sanctions pr\u00e9vu pour non respect d'un plafond d'\u00e9missions de CO2 par un pays donn\u00e9. Et cette sanction pourrait \u00eatre major\u00e9e lorsqu'un pays a fait l'exact inverse de ce qu'il pouvait physiquement faire pour respecter l'obligation." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7021435584514523136,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7021435585357586432,urn:li:activity:7021435585357586432,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 138, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7021435585357586432,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7021435585357586432,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7021435585357586432", + "threadId": "activity:7021435585357586432", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021435585357586432", + "urn": "urn:li:activity:7021435585357586432", + "numComments": 270, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7021435585357586432", + "reactionTypeCounts": [ + { + "count": 4064, + "reactionType": "LIKE" + }, + { + "count": 389, + "reactionType": "INTEREST" + }, + { + "count": 232, + "reactionType": "MAYBE" + }, + { + "count": 179, + "reactionType": "PRAISE" + }, + { + "count": 38, + "reactionType": "APPRECIATION" + }, + { + "count": 26, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7021435585357586432", + "numLikes": 4928, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021435585357586432", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4937, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7021023431466864640", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7021023431466864640)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7021023431466864640)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nappes-deau-souterraine-au-1er-janvier-2023-activity-7021023431466864640-MXp_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7021023430669955073", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7021023431466864640", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7021023430669955073", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "gHSSZoxzwXDWYltsFAk+qg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8292823613674768012", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676468818461?e=1677240000&v=beta&t=03Qvbhkuvzt7Bn2t4VALKXdBV_ISKCBFLRXGumDU5tY", + "expiresAt": 1677240000000, + "height": 565 + }, + { + "width": 1132, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676468818461?e=1677240000&v=beta&t=yk5yCKeP8ZeRuYw0GCfkISF54XdKdw0xQk9kgIW-0Mk", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676468818461?e=1677240000&v=beta&t=Qlukaqg5zmF7GSCyulmwgB4CPCBZ1nszKHTWM7f3nbI", + "expiresAt": 1677240000000, + "height": 113 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676468818461?e=1677240000&v=beta&t=NL_xgG2sYgW6hbZzu03IhJlwL03Zs7iEyWFwZKDMdig", + "expiresAt": 1677240000000, + "height": 339 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF29HS5kKpu2g/articleshare-shrink_" + }, + "displayAspectRatio": 0.70625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8292823613674768012)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8292823613674768012)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "brgm.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nappes d'eau souterraine au 1er janvier 2023 | BRGM by brgm.fr", + "actionTarget": "https://www.brgm.fr/fr/actualite/communique-presse/nappes-eau-souterraine-au-1er-janvier-2023" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nappes d'eau souterraine au 1er janvier 2023 | BRGM" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7021023430669955073,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il pleut, donc il fait beau. Apr\u00e8s 2 mois d'automne (novembre et d\u00e9cembre), les trois quarts des nappes phr\u00e9atiques fran\u00e7aises ont encore tr\u00e8s soif. En effet, m\u00eame s'il a plu apr\u00e8s la fin octobre, il y a eu un tel d\u00e9ficit accumul\u00e9 avant que la situation d'ensemble reste d\u00e9ficitaire sur une large partie du pays, parfois tr\u00e8s fortement. \n\nAu surplus, fin octobre la v\u00e9g\u00e9tation \u00e9tait encore active \u00e0 cause d'un temps tr\u00e8s chaud, et les premi\u00e8res pluies de novembre ont donc \u00e9t\u00e9 alimenter les plantes et non les nappes. Il a aussi fallu humidifier des sols tr\u00e8s secs, ce qui a aussi utilis\u00e9 une partie de l'eau tomb\u00e9e qui n'est pas all\u00e9e jusqu'aux nappes.\n\nEnfin, lorsque les \u00e9pisodes de pr\u00e9cipitations ont \u00e9t\u00e9 intenses, une fraction a ruissel\u00e9 directement vers les rivi\u00e8res puis la mer, parce que l'infiltration dans un sol tr\u00e8s sec est plus difficile que dans un sol d\u00e9j\u00e0 un peu humidifi\u00e9. \n\nGlobalement, ce n'est pas maintenant que cette faiblesse du niveau des nappes est g\u00eanante. La v\u00e9g\u00e9tation est en dormance, l'agriculture ne pr\u00e9l\u00e8ve pas, et il reste de quoi alimenter les r\u00e9seaux d'eau potable le cas \u00e9ch\u00e9ant (https://lnkd.in/gG9eZM8 ), surtout que ce n'est pas non plus l'\u00e9poque de l'arrosage des pelouses et du remplissage des piscines.\n\nC'est au retour de la saison chaude que cela risque de poser probl\u00e8me. Si d'ici l\u00e0 la recharge n'a pas \u00e9t\u00e9 bonne (et donc qu'il n'y a pas eu suffisamment de ces d\u00e9pressions qui nous am\u00e8nent pluie et parfois vent, ce que nous appelons aujourd'hui \"mauvais temps\"), cela signifie que l'on abordera l'\u00e9t\u00e9 prochain - et ses possibles vagues de chaleur, puisque chaque \u00e9t\u00e9 offrira h\u00e9las l'occasion de battre le record pr\u00e9c\u00e9dent - avec moins d'eau pour l'agriculture, et pour les arbres quand ces derniers ont des racines qui vont jusqu'\u00e0 la nappe.\n\nL'\u00e9volution future d'une nappe est typiquement un processus qui a du mal \u00e0 \u00eatre mod\u00e9lis\u00e9 dans le cadre d'un climat qui se r\u00e9chauffe. Il est possible de faire des projections sur les pr\u00e9cipitations globales (sur une large zone) de l'ann\u00e9e, voire sur l'augmentation des \u00e9pisodes pluvieux intenses (moins bons pour l'infiltration dans le sol, \u00e0 pr\u00e9cipitations \u00e9gales, que des \u00e9pisodes continus), mais ensuite chaque g\u00e9ologie du sol est particuli\u00e8re, adjectif qui s'applique aussi aux usages locaux (qui d\u00e9pendent beaucoup des cultures et de la nature de la v\u00e9g\u00e9tation).\n\nPour autant, les tendances sont claires : il ne faudra pas venir se demander \"qui aurait pu pr\u00e9voir ?\". Il faut donc essayer au maximum d'imaginer ce que l'avenir peut nous r\u00e9server, pour limiter au mieux le risque de manquer de cette pr\u00e9cieuse ressource qu'est l'eau. Actuellement, faisons nous vraiment le maximum en ce sens ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7021023430669955073,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7021023431466864640,urn:li:activity:7021023431466864640,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 143, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7021023431466864640,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7021023431466864640,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7021023431466864640", + "threadId": "activity:7021023431466864640", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021023431466864640", + "urn": "urn:li:activity:7021023431466864640", + "numComments": 243, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7021023431466864640", + "reactionTypeCounts": [ + { + "count": 3850, + "reactionType": "LIKE" + }, + { + "count": 644, + "reactionType": "INTEREST" + }, + { + "count": 330, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "APPRECIATION" + }, + { + "count": 29, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7021023431466864640", + "numLikes": 4900, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021023431466864640", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4900, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7020332265222103041", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7020332265222103041)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7020332265222103041)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pourquoi-le-groupe-sud-ouest-sengage-face-activity-7020332265222103041-2RL5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7020332264400019456", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7020332265222103041", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7020332264400019456", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "goQfWahhv3jnAWVQz8E8Ng==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7821471158464017771", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676296478581?e=1677240000&v=beta&t=i6maEpqNKW4utXPWggRacVOKTFO2PEZEd1EW37kQRd8", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676296478581?e=1677240000&v=beta&t=Vm46meJeSt1avBzC8cKY_dWHwg00PSlO8u7hwJhnVJg", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676296478581?e=1677240000&v=beta&t=_I_BiOg7KxA1PF1ovHqhkT7Owr-cB-2cc9Jf4fu1MBg", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676296478581?e=1677240000&v=beta&t=pXFFWqlE28w-qoNrdgfUy8TFphAaG9RiLok9-Ygja20", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEHZkdt_k19zQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7821471158464017771)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7821471158464017771)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "sudouest.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pourquoi le Groupe Sud Ouest s\u2019engage face aux enjeux climatiques et environnementaux by sudouest.fr", + "actionTarget": "https://www.sudouest.fr/declic-pourquoi-le-groupe-sud-ouest-s-engage-face-aux-enjeux-climatiques-et-environnementaux-13648961.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pourquoi le Groupe Sud Ouest s\u2019engage face aux enjeux climatiques et environnementaux" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7020332264400019456,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s The Guardian, qui est probablement le \"grand\" media europ\u00e9en qui a ouvert la voie, en proposant une rubrique \"crise climatique\" (https://lnkd.in/e8q7-6rG ) accessible d\u00e8s la homepage, et apr\u00e8s Radio France qui a pris l'engagement de former l'ensemble de sa r\u00e9daction aux enjeux climatiques, c'est au tour du groupe Sud-Ouest de publier une charte dans laquelle il affirme \"Les \u00e9diteurs du Groupe Sud Ouest s\u2019engagent \u00e0 inscrire les enjeux climatiques et environnementaux au c\u0153ur de leur production \u00e9ditoriale, en organisant des espaces de prise de parole et d\u2019\u00e9change constructifs, en documentant les enjeux locaux et en mettant en relief les connaissances scientifiques, avec rigueur, objectivit\u00e9 et ind\u00e9pendance\".\n\nSuivent 15 engagements, qui incluent la mise en place d'un conseil scientifique, la formation de la r\u00e9daction, la mise en place d'un bilan carbone et d'actions de sobri\u00e9t\u00e9 (y compris num\u00e9rique), l'origine du papier, ou encore le contenu publicitaire.\n\nEn lisant attentivement cette charte, on comprend \u00e9videmment que le Diable sera dans les d\u00e9tails, et en particulier dans l'ambition effective associ\u00e9e \u00e0 chacune des actions. On peut faire un bilan carbone et agir ensuite pour faire baisser ses \u00e9missions de 1% par an, de 5% par an, ou... les faire cro\u00eetre \"moins que plus\", en visant juste une baisse par exemplaire imprim\u00e9 ou diffus\u00e9 sur le serveur, tout en ayant un plan d'augmentation de la diffusion !\n\nSur la publicit\u00e9, l\u00e0 aussi toutes les nuances de gris sont possibles : Sud Ouest dit vouloir proposer des espaces gratuits aux associations, mais on peut imaginer des syst\u00e8mes plus dissuasifs pour la promotion de produits ou services lorsqu'ils vont avec des pressions plus importantes sur l'environnement. \n\nAvoir un encart pour promouvoir l'avion, une voiture, un mode de commerce ou des produits alimentaires \"\u00e9lev\u00e9s en carbone\" couterait donc plus cher que la promotion du march\u00e9 du coin, des v\u00e9los ou des livres.\n\nPour la formation, l\u00e0 aussi il y a un monde entre la demi-heure que le gouvernement a royalement accord\u00e9e au climat et les 150 heures minimum qui sont pr\u00e9conis\u00e9es pour les \u00e9tudiants du sup\u00e9rieur par The Shift Project. \n\nIl faut donc voir cette charte comme un premier pas \u00e9minemment bienvenu. Ce qu'il en adviendra ensuite dans les faits d\u00e9pendra essentiellement des personnes qui vont la mettre en oeuvre (\u00e0 commencer par le patron !), de l'accueil qui lui sera fait en interne et de la pression que mettront les salari\u00e9s, et \u00e9videmment de la r\u00e9ponse du lectorat, puisqu'un m\u00e9dia priv\u00e9 reste une entreprise commerciale qui a du mal \u00e0 agir si cela fait fuir les gens qui consomment l'information.\n\nPour favoriser le fait que toutes les \"parties prenantes\" soutiennent l'\u00e9volution, il sera utile d'avoir un syst\u00e8me d'indicateurs ad\u00e9quats et de r\u00e9guli\u00e8rement en rendre compte. Ca ne devrait pas faire peur \u00e0 des journalistes : c'est de l'information !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7020332264400019456,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7020332265222103041,urn:li:activity:7020332265222103041,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 49, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7020332265222103041,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7020332265222103041,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7020332265222103041", + "threadId": "activity:7020332265222103041", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020332265222103041", + "urn": "urn:li:activity:7020332265222103041", + "numComments": 82, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7020332265222103041", + "reactionTypeCounts": [ + { + "count": 1138, + "reactionType": "LIKE" + }, + { + "count": 73, + "reactionType": "INTEREST" + }, + { + "count": 63, + "reactionType": "MAYBE" + }, + { + "count": 38, + "reactionType": "PRAISE" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7020332265222103041", + "numLikes": 1339, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020332265222103041", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1339, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 Edited \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7020064089167036416", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7020064089167036416)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7020064089167036416)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_transports-jean-marc-jancovici-explique-activity-7020064089167036416-fg6a?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7020064088613351424", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7020064089167036416", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7020064088613351424", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "u0VNiZOYyknPQ+poxS6vTQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7293133745184405373", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676153159732?e=1677240000&v=beta&t=MG8aQJJda8qiK7a3AmNFgnVmEIcosNBotIDLKff-7HA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676153159732?e=1677240000&v=beta&t=1eLnULUIfs6H8HgypCdA5nKjoYn5ZUolwxPufmVeM0c", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676153159732?e=1677240000&v=beta&t=OBtsdWdf6H9v8K69xA61nic8wKTbRL_YKPhJ3vRdcJ8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676153159732?e=1677240000&v=beta&t=oXRQR7DYUbG81Y8XH79mdA4-ElUOspRV6wPoaFGtMuA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHdKmBnBNhZ2w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7293133745184405373)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7293133745184405373)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Transports : Jean-Marc Jancovici explique l'importance de se mettre au v\u00e9lo by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900225118-transports-jean-marc-jancovici-explique-l-importance-de-se-mettre-au-velo" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Transports : Jean-Marc Jancovici explique l'importance de se mettre au v\u00e9lo" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7020064088613351424,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tou(te)s en selle ! Apparu \u00e0 la fin du 19\u00e8 si\u00e8cle, le v\u00e9lo a rapidement vu son emploi augmenter, et en 1925 il offrait en moyenne \u00e0 un fran\u00e7ais autant de km parcourus par jour que l'automobile (alors nettement moins r\u00e9pandue qu'actuellement, c'est clair !).\n\nMais depuis 1940 son usage plafonne. Aujourd'hui, un habitant du pays fait en moyenne plus de km en avion par an qu'en v\u00e9lo ! Pourtant d\u00e9velopper son usage procure de nombreux b\u00e9n\u00e9fices :\n- moins de CO2\n- moins de pollution\n- moins d'argent \u00e0 d\u00e9penser\n- depuis qu'il y a une assistance \u00e9lectrique, apte \u00e0 transporter enfants et courses, et aussi \u00e0 monter les c\u00f4tes, sans trop souffrir\n- en univers \"congestionn\u00e9\" (ville ou p\u00e9riurbain) pas beaucoup moins rapide qu'une voiture\n- meilleur pour la sant\u00e9\n\nVu comme cela, on se demande vraiment pourquoi ce mode de transport ne repr\u00e9sente pas l'essentiel des km parcourus pour la mobilit\u00e9 dite du quotidien (travail, courses, \u00e9cole etc), qui repr\u00e9sente 2/3 des km faits annuellement en voiture, g\u00e9n\u00e9ralement tr\u00e8s peu remplie (1,1 personne en taux moyen). O\u00f9 est le probl\u00e8me alors ?\n\nLe premier d'entre eux est g\u00e9n\u00e9ralement l'ins\u00e9curit\u00e9 potentiellement ressentie par le ou la cycliste qui chemine au milieu de \"beaucoup plus lourd que son v\u00e9lo\". La cl\u00e9 du d\u00e9veloppement du v\u00e9lo s'appelle donc des pistes cyclables. Et des pistes exclusivement cyclables ! \n\nLes itin\u00e9raires mixtes (pi\u00e9tons et v\u00e9los) n'ont pas plus de pertinence que si on autorisait les pi\u00e9tons \u00e0 descendre sur la chauss\u00e9e dans les rues o\u00f9 la vitesse est limit\u00e9e \u00e0 30. Comme je l'\u00e9voque dans cette chronique, il n'y a rien de commun entre un(e) cycliste allant \u00e0 son travail \u00e0 25 ou 30 km/h et un pi\u00e9ton qui d\u00e9ambule avec enfants ou chien, ou en regardant son t\u00e9l\u00e9phone...\n\nLe deuxi\u00e8me d'entre eux est la possibilit\u00e9 de garer son v\u00e9lo \u00e0 destination (qui peut \u00eatre le lieu d'acc\u00e8s \u00e0 un autre moyen de transport) ou chez soi sans se le faire voler. \n\nLe 3\u00e8 probl\u00e8me est que, l'automobile coutant plus cher, les constructeurs de voiture gagnent beaucoup d'argent que ceux de v\u00e9los, et donc emploient plus de monde. Cela en fait des interlocuteurs plus \u00e9cout\u00e9s des pouvoirs publics... qui tendent \u00e0 maintenir le syst\u00e8me.\n\nOn pourrait ajouter un 4\u00e8 \u00e9l\u00e9ment : la voiture est un objet de statut social. Il faudrait qu'une jolie paire de mollets le devienne un peu plus !\n\nLa voirie n'est pas pay\u00e9e par les automobilistes mais par les contribuables. Un cycliste l'est autant qu'un conducteur d'un engin d'une tonne ou plus. A l'heure de l'imp\u00e9rieuse d\u00e9carbonation, il serait tout \u00e0 fait justifi\u00e9 que la collectivit\u00e9 - qui fonctionne avec les imp\u00f4ts - assure aux utilisateurs de la petite reine autant de facilit\u00e9s \u00e0 se d\u00e9placer qu'aux utilisateurs d'engins motoris\u00e9s d'une tonne, \u00e9lectriques ou pas. \n\nIl n'y a plus qu'\u00e0 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7020064088613351424,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7020064089167036416,urn:li:activity:7020064089167036416,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 316, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7020064089167036416,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7020064089167036416,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7020064089167036416", + "threadId": "activity:7020064089167036416", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020064089167036416", + "urn": "urn:li:activity:7020064089167036416", + "numComments": 727, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7020064089167036416", + "reactionTypeCounts": [ + { + "count": 5511, + "reactionType": "LIKE" + }, + { + "count": 377, + "reactionType": "PRAISE" + }, + { + "count": 333, + "reactionType": "EMPATHY" + }, + { + "count": 118, + "reactionType": "APPRECIATION" + }, + { + "count": 74, + "reactionType": "INTEREST" + }, + { + "count": 45, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7020064089167036416", + "numLikes": 6458, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020064089167036416", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6466, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7019787230227390464", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7019787230227390464)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7019787230227390464)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_projet-de-loi-%C3%A9nergies-renouvelables-la-activity-7019787230227390464-05ON?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7019787229342396417", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7019787230227390464", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7019787229342396417", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "6GHpYWcN5kRDl0tJjFW0aQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7324151095709206240", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 707, + "fileIdentifyingUrlPathSegment": "800/0/1676184990921?e=1677240000&v=beta&t=frqYJQGPT6hXYyzFof0xc1ayH0lEYAOdwPRMhZN8nvQ", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 707, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676184990921?e=1677240000&v=beta&t=F6O1kuPey80t7rAKtn74-AAkgWWQAvwzp_1QachHcx0", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676184990921?e=1677240000&v=beta&t=tPr9MJUMyNBASga9QM5QeGKVZMu7yXN_lzpcxeqRBZM", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676184990921?e=1677240000&v=beta&t=Q-stBGHJ64XWVjcWZ37x0dOz0vFmGY81CoxuxxD1Rrc", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH9Ke5BNHZWUw/articleshare-shrink_" + }, + "displayAspectRatio": 0.6661951909476662 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7324151095709206240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7324151095709206240)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "novethic.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Projet de loi \u00e9nergies renouvelables : la chaleur est la grande oubli\u00e9e by novethic.fr", + "actionTarget": "https://www.novethic.fr/actualite/energie/energies-renouvelables/isr-rse/projet-de-loi-energies-renouvelables-la-chaleur-est-la-grande-oubliee-151282.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Projet de loi \u00e9nergies renouvelables : la chaleur est la grande oubli\u00e9e" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7019787229342396417,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le projet de loi sur les \u00e9nergies renouvelables se concentre essentiellement sur l'\u00e9lectricit\u00e9. De fait, dans l'expos\u00e9 des motifs du projet initialement d\u00e9pos\u00e9 au S\u00e9nat (253 pages ! https://lnkd.in/eq2amZEk ), il est surtout question d'\u00e9olien et de photovolta\u00efque, et un peu de m\u00e9thanisation. \n\nPourtant, dans notre pays, 45% de l'\u00e9nergie sert \u00e0 avoir de la chaleur, et aujourd'hui cette derni\u00e8re est essentiellement fossile. Dans ces usages on va trouver :\n\n- le chauffage des logements et des b\u00e2timents dits tertiaires (en gros tout ce qui n'est ni logements, ni b\u00e2timents industriels : bureaux, commerces, h\u00f4pitaux, \u00e9coles, piscines, casernes, mus\u00e9es...)\n\n- la production d'eau chaude sanitaire dans ces m\u00eames b\u00e2timents, et plus marginalement la cuisson\n\n- la chaleur industrielle, importante dans les mat\u00e9riaux de base (m\u00e9taux, ciment, chimie de base, papier), dans la chimie de sp\u00e9cialit\u00e9 et dans l'agroalimentaire \n\nC'est le gaz qui est la premi\u00e8re source de chaleur en France (dans l'autre sens 55% du gaz sert au chauffage). Par les temps qui courent, il n'est peut-\u00eatre pas idiot de se pencher sur la mani\u00e8re de le remplacer par de la chaleur renouvelable. \n\nFont partie de cette cat\u00e9gorie la biomasse solide (bois buche et granul\u00e9s) ou gazeuse (biogaz), la g\u00e9othermie profonde (on extrait la chaleur du sous-sol pour chauffer des b\u00e2timents), les pompes \u00e0 chaleur (puisant les calories dans l'air ou dans le sol, et qui peuvent aussi servir pour des usages industriels \u00e0 haute temp\u00e9rature), et le solaire thermique (pour l'eau chaude sanitaire ou le chauffage avec un plancher chauffant).\n\nCes solutions sont matures, elles substituent directement du gaz ou du fioul l'essentiel du temps (et quand elles substituent de l'\u00e9lectricit\u00e9 ca sera toujours ca de gagn\u00e9 pour la mobilit\u00e9 \u00e9lectrique ou l'\u00e9lectrification d'usages industriels), ne posent pas de probl\u00e8me particulier d'approvisionnement en m\u00e9taux, et elles sont \u00e9conomiquement \u00e9quivalentes aux alternatives fossiles.\n\nQuestion biodiversit\u00e9, le tableau est plus nuanc\u00e9 : pour les pompes \u00e0 chaleur, le solaire thermique et la g\u00e9othermie, les atteintes sont faibles. Ces dispositifs occupent peu d'espace en plus du b\u00e2ti existant. C'est plus d\u00e9licat pour la biomasse : il faut \u00e9videmment \u00e9viter la d\u00e9forestation, ou la perte de biodiversit\u00e9 en rempla\u00e7ant les for\u00eats diversifi\u00e9es par des plantations monosp\u00e9cifiques d'esp\u00e8ces \u00e0 croissance rapide.\n\nMais globalement il y a beaucoup de potentiel et peu d'effets pervers \u00e0 leur d\u00e9ploiement. Pourtant, la priorit\u00e9 a \u00e9t\u00e9 surtout donn\u00e9e aux ENR \u00e9lectriques. Est-ce si pertinent ?\n \nIncidemment il y a une autre source de chaleur d\u00e9carbon\u00e9e qui n'int\u00e9resse personne : celle issue du refroidissement des centrales nucl\u00e9aires, soit environ 600 milliards de kWh, soit environ ce qui est utilis\u00e9 en France en \u00e9nergie fossile pour le chauffage et l'eau chaude sanitaire ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7019787229342396417,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7019787230227390464,urn:li:activity:7019787230227390464,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 161, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7019787230227390464,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7019787230227390464,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7019787230227390464", + "threadId": "activity:7019787230227390464", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019787230227390464", + "urn": "urn:li:activity:7019787230227390464", + "numComments": 291, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7019787230227390464", + "reactionTypeCounts": [ + { + "count": 2454, + "reactionType": "LIKE" + }, + { + "count": 381, + "reactionType": "INTEREST" + }, + { + "count": 228, + "reactionType": "MAYBE" + }, + { + "count": 37, + "reactionType": "PRAISE" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7019787230227390464", + "numLikes": 3137, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019787230227390464", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3140, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7019403760263122944", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7019403760263122944)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7019403760263122944)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_un-de-mes-coll%C3%A8gues-de-travail-ma-envoy%C3%A9-activity-7019403760263122944-DzI5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7019403759420088320", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7019403760263122944", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7019403759420088320", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "dc++WECttgMqRCNd17xkvg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHkT5OV6xQ0Tg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHkT5OV6xQ0Tg", + "artifacts": [ + { + "width": 1792, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1673556266820?e=1679529600&v=beta&t=qJ40GCnBwLExHbAqZiVDApukzsgXQhdpZRVxV3h1U8U", + "expiresAt": 1679529600000, + "height": 1065 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1673556270057?e=1679529600&v=beta&t=cSAzrow4STLCcvv7nHec7gfEEJxzXrond8kAxdeinMM", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1673556270057?e=1679529600&v=beta&t=o9pwrppHNlnJuuENLs5EILlnQKB6WKUTrIrAJrhfvK8", + "expiresAt": 1679529600000, + "height": 761 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1673556270057?e=1679529600&v=beta&t=fWnPnEc-bqYby6hvCP-UO9GGmI8TYdIbzxPTdno8-20", + "expiresAt": 1679529600000, + "height": 285 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1673556270057?e=1679529600&v=beta&t=eQQbuD5E_tlOCt0rQLpftP_vXPI0_qQI4cVunhy1kEE", + "expiresAt": 1679529600000, + "height": 95 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1673556270057?e=1679529600&v=beta&t=HI9-bK-miuOaYANTKrpn8yMuQDdG1sjpW5vdQ7rJgJg", + "expiresAt": 1679529600000, + "height": 475 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHkT5OV6xQ0Tg/feedshare-shrink_" + }, + "displayAspectRatio": 0.5943080357142857 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7019403759420088320,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un de mes coll\u00e8gues de travail m'a envoy\u00e9 hier la question suivante : \"\u00e0 quand faut-il remonter dans le pass\u00e9 pour avoir des \u00e9missions de 2 tonnes de CO2 par personne ?\"\n\nSi l'on inclut la d\u00e9forestation (qui a toujours accompagn\u00e9 la croissance d\u00e9mographique), la r\u00e9ponse est donn\u00e9e par ce graphique (compilation de l'auteur sur sources diverses) : \u00e0 1860. En effet, le CO2 issu des combustibles fossiles est \"r\u00e9cent\", mais avant il y a eu de la d\u00e9forestation, qui a longtemps \u00e9t\u00e9 le terme dominant dans l'ensemble des \u00e9missions humaines.\n\nSi l'on regarde juste le CO2 issu des \u00e9nergies fossiles (graphique en commentaire), en supposant que l'on arr\u00eate la d\u00e9forestation (ce qui pour le moment est h\u00e9las une vue de l'esprit mais finira par arriver, au plus tard quand il n'y aura plus rien \u00e0 couper !), la r\u00e9ponse fait un peu moins peur : on parle de 1940. \n\nPour \u00eatre \"compatible 2\u00b0C\", il faudra donc a minima ramener en 27 ans les \u00e9missions fossiles moyennes par personne \u00e0 ce qu'elles \u00e9taient il y a 80 ans. En d'autres termes, il va falloir \"descendre\" 3 fois plus vite que nous sommes \"mont\u00e9s\", sachant que \"monter\" ne demande aucune contrainte alors que descendre oui. Ce n'est clairement pas au train o\u00f9 vont les choses que nous allons y arriver.\n\nDans le graphique sur le CO2 fossile seul on constate aussi que les \u00e9missions par personne ont brutalement arr\u00eat\u00e9 de monter au moment des chocs p\u00e9troliers (et en tenant compte de la d\u00e9forestation il y a eu une baisse pendant 30 ans).\n\nCela illustre de mani\u00e8re directe que ces chocs n'ont pas juste \u00e9t\u00e9 une grosse variation de prix \u00e0 cause d'un blocus : ils ont mat\u00e9rialis\u00e9 le premier ralentissement physique de l'\u00e8re industrielle par d\u00e9faut de ressources. La production de p\u00e9trole ne pouvait juste plus physiquement augmenter de 8% par an (surtout que les USA venaient de passer le pic conventionnel en 1970...). La limite physique \u00e0 l'amont s'appliquera de plus en plus si celle \u00e0 l'aval n'est pas g\u00e9r\u00e9e.\n\nLa grosse bosse des ann\u00e9es 2000 correspond \u00e0 l'essor de la Chine (et de son charbon). Cet essor a d\u00e9marr\u00e9 un peu moins de 10 ans apr\u00e8s le Sommet de la Terre de 1992, o\u00f9 a \u00e9t\u00e9 sign\u00e9e la Convention Climat. Pour le moment cette derni\u00e8re a \u00e9t\u00e9 mise KO debout par nos aspirations consum\u00e9ristes et \u00e9conomiques..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7019403759420088320,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7019403760263122944,urn:li:activity:7019403760263122944,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 98, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7019403760263122944,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7019403760263122944,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7019403760263122944", + "threadId": "activity:7019403760263122944", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019403760263122944", + "urn": "urn:li:activity:7019403760263122944", + "numComments": 215, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7019403760263122944", + "reactionTypeCounts": [ + { + "count": 2931, + "reactionType": "LIKE" + }, + { + "count": 868, + "reactionType": "INTEREST" + }, + { + "count": 401, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7019403760263122944", + "numLikes": 4250, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019403760263122944", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4255, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7019063851266535424", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7019063851266535424)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7019063851266535424)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_oceans-were-the-hottest-ever-recorded-in-activity-7019063851266535424-6LO5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7019063850654216192", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7019063851266535424", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7019063850654216192", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "3qmVFqMxHArHxbHuN/pAig==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8745374758198028966", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675874214305?e=1677240000&v=beta&t=M8NMzTG9rYZyrXviyyIdonqfNQ3X4hxpBpJPJAL70OI", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675874214306?e=1677240000&v=beta&t=d-KRSNg-Ted4wQuqqPuOiXqslLO3nF2gWFaCr6i8qcU", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675874214306?e=1677240000&v=beta&t=8lQCo4UGtL56Ar8J_i8XdIA6VrXI_YxA17qoNNw5SI0", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675874214306?e=1677240000&v=beta&t=OUXbz77n84LkBhLPRS0-1hH3htrcBIQM-REct9L_kHM", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGyr8tBrfl1eA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8745374758198028966)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8745374758198028966)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Oceans were the hottest ever recorded in 2022, analysis shows by theguardian.com", + "actionTarget": "https://www.theguardian.com/environment/2023/jan/11/oceans-were-the-hottest-ever-recorded-in-2022-analysis-shows" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Oceans were the hottest ever recorded in 2022, analysis shows" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7019063850654216192,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il n'y a pas que sur terre que 2022 a \u00e9t\u00e9 chaude : pour l'ensemble de l'oc\u00e9an mondial, l'ann\u00e9e pass\u00e9e a \u00e9t\u00e9 la plus chaude depuis le d\u00e9but des relev\u00e9s. \n\nOn le dit peu souvent, mais en fait 90% de l'\u00e9nergie suppl\u00e9mentaire amen\u00e9e \u00e0 la surface de la plan\u00e8te par le suppl\u00e9ment d'effet de serre r\u00e9chauffe les oc\u00e9ans et non la surface de la terre. C'est un ph\u00e9nom\u00e8ne lent mais massif, qui engendre derri\u00e8re des cons\u00e9quences en cascade :\n\n- l'\u00e9l\u00e9vation de temp\u00e9rature est une agression en tant que telle pour de nombreux organismes marins (par exemple les coraux dont 15% sont d\u00e9j\u00e0 morts, et \u00e0 2\u00b0C de r\u00e9chauffement global les coraux tropicaux auront probablement disparu pour l'essentiel)\n\n- cela affaiblit le puits oc\u00e9anique car l'eau chaude dissout moins bien le CO2 que l'eau froide (c'est pour cela que dans le pass\u00e9 l'\u00e9l\u00e9vation de temp\u00e9rature pr\u00e9c\u00e8de l'augmentation du CO2 : lorsque la modification des param\u00e8tres astronomiques de la terre r\u00e9chauffait climat, l'oc\u00e9an se mettait ensuite \u00e0 d\u00e9gazer du CO2 - qui incidemment amplifiait encore le r\u00e9chauffement)\n\n- l'eau chaude \u00e9tant moins dense, cela stratifie l'oc\u00e9an : l'eau chaude surnage en surface et ne communique plus avec les eaux plus profondes, plus froides. Cela diminue la teneur en oxyg\u00e8ne de l'eau de l'oc\u00e9an profond et donc la vie marine associ\u00e9e\n\n- l'eau se dilate quand elle chauffe : plus l'oc\u00e9an chauffe vite et plus son niveau monte vite. En retour cette hausse du niveau de la mer et ce r\u00e9chauffement de l'eau d\u00e9stabilisent de mani\u00e8re acc\u00e9l\u00e9r\u00e9e les langues terminales des glaciers des calottes polaires qui du coup se d\u00e9sagr\u00e8gent plus vite, en produisant plus rapidement des icebergs qui font encore plus monter le niveau de l'eau...\n\n- une eau de surface plus chaude favorise l'apparition de ph\u00e9nom\u00e8nes cycloniques plus intenses (ce qui se constate d\u00e9j\u00e0)\n\nBref que l'oc\u00e9an chauffe vite n'est pas juste une affaire de temp\u00e9rature de l'eau quand on va se baigner. Comme pour d'autres aspects du changement climatique, cela va engendrer des discontinuit\u00e9s qui, \u00e0 mesure que le temps passera, seront de plus en plus amples et peu sympathiques. \n\nIl reste peu de temps pour bien comprendre les risques et organiser au mieux la soci\u00e9t\u00e9 pour ne pas trop en souffrir...\n" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7019063850654216192,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7019063851266535424,urn:li:activity:7019063851266535424,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 45, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7019063851266535424,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7019063851266535424,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7019063851266535424", + "threadId": "activity:7019063851266535424", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019063851266535424", + "urn": "urn:li:activity:7019063851266535424", + "numComments": 77, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7019063851266535424", + "reactionTypeCounts": [ + { + "count": 1408, + "reactionType": "LIKE" + }, + { + "count": 337, + "reactionType": "INTEREST" + }, + { + "count": 135, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7019063851266535424", + "numLikes": 1924, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019063851266535424", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1925, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7018690369332625409", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7018690369332625409)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7018690369332625409)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-investissements-repartent-%C3%A0-la-hausse-activity-7018690369332625409-HQgG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7018690368690958336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7018690369332625409", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7018690368690958336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "WJhFEHFV6rmYWpe/crXwLQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7340652649154548267", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675937217011?e=1677240000&v=beta&t=P6m27VSboerHnWce-qfLvJ9sjCYRGO9-Jx-PB6QF1ek", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675937217011?e=1677240000&v=beta&t=e_yTw0qPsbfl2rpq-l6KsAGB3uonmrK4BoSfD9qDSHo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675937217011?e=1677240000&v=beta&t=KWsXgdGAMf8fCmExC88nU7irVNjfNjkpCl_fAcIf3Pw", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675937217011?e=1677240000&v=beta&t=jKZALKXxRgjmOvVpm_NCAWrw9DjURHnglM7D3ugXV-k", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGpdVhkaDfC-A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7340652649154548267)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7340652649154548267)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les investissements repartent \u00e0 la hausse dans l'exploration et l'extraction p\u00e9troli\u00e8re by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/les-investissements-repartent-a-la-hausse-dans-lexploration-et-lextraction-petroliere-1894533#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les investissements repartent \u00e0 la hausse dans l'exploration et l'extraction p\u00e9troli\u00e8re" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7018690368690958336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A votre avis, quel est le premier crit\u00e8re qui pilote le volume d'investissements dans le p\u00e9trole ? Si vous pensez - ou esp\u00e9rez - que c'est les politiques \u00e9nerg\u00e9tiques de long terme des \u00e9tats, la r\u00e9ponse risque de vous d\u00e9cevoir : depuis plusieurs d\u00e9cennies, le premier d\u00e9terminant du nombre de centaines de milliards de dollars (car c'est l'ordre de grandeur) investi chaque ann\u00e9e dans ce que l'on appelle \"l'amont p\u00e9trolier\" (en pratique l'exploration et la construction des infrastructures de production) est... le prix du baril.\n\nQuand celui-ci est au plus bas, comme par exemple en 2020, les investissements baissent tr\u00e8s fortement. Quand le prix monte fortement (2014 a \u00e9t\u00e9 embl\u00e9matique) alors les investissements font de m\u00eame. En effet, quand le prix est haut, les p\u00e9troliers arrivent \u00e0 rentabiliser des projets qui ne le sont pas quand le prix est bas, ce qui explique cette \"r\u00e9ponse\" des investissements.\n\nC'est particuli\u00e8rement vrai dans le shale oil (non \u00e9voqu\u00e9 dans l'article des Echos) o\u00f9 la production suit d'assez pr\u00e8s l'investissement (forage et fracturation). \n\nCette r\u00e9ponse des investissements au prix est un des \u00e9l\u00e9ments \u00e0 prendre en compte pour savoir si, pour consommer moins de p\u00e9trole, \"il suffit d'attendre qu'il y en ait moins\", ou si c'est utile de baisser la consommation par des r\u00e8glementations et des taxes.\n\nCar de fait nous approchons du peak oil et donc il va y en avoir moins. Mais si nous laissons le march\u00e9 g\u00e9rer la d\u00e9crue, ce \"moins\" se traduit par des envol\u00e9es des prix, donc des investissements additionnels, et donc... un peu plus que \"moins\".\n\nSi la d\u00e9crue est pilot\u00e9e \u00e0 l'aval (quotas de consommation sur les voitures, camions et avions, sur les fours industriels etc) \u00e0 ce moment c'est tout l'inverse qui se passe : la pression sur la demande maintient des prix bas, ce qui \u00e9vite cet effet rebond li\u00e9 \u00e0 un surplus d'investissements quand c'est le march\u00e9 qui r\u00e9gule. Et, cerise sur le g\u00e2teau pour tous les gens qui n'aiment pas les p\u00e9troliers : ces derniers gagnent moins d'argent qu'avec une p\u00e9nurie faisant grimper les prix :)\n\nAjoutons \u00e0 cela que de se contenter du \"peak oil+peak gas+peak coal\" pour limiter notre consommation de fossiles ne permet pas de tenir la limite des 2 \u00b0C. La d\u00e9crue p\u00e9troli\u00e8re est d\u00e9j\u00e0 amorc\u00e9e en Europe, malheureusement elle va \u00e0 la fois trop vite pour pr\u00e9server une \u00e9conomie qui ne se r\u00e9invente pas et pas assez vite pour pr\u00e9server le climat..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7018690368690958336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7018690369332625409,urn:li:activity:7018690369332625409,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 68, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7018690369332625409,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7018690369332625409,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7018690369332625409", + "threadId": "activity:7018690369332625409", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018690369332625409", + "urn": "urn:li:activity:7018690369332625409", + "numComments": 128, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7018690369332625409", + "reactionTypeCounts": [ + { + "count": 1284, + "reactionType": "LIKE" + }, + { + "count": 269, + "reactionType": "INTEREST" + }, + { + "count": 212, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7018690369332625409", + "numLikes": 1794, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018690369332625409", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1794, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7018309415040647168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7018309415040647168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7018309415040647168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-prix-de-l%C3%A9nergie-ils-montent-ils-activity-7018309415040647168-bt9d?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7018309413862006785", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7018309415040647168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7018309413862006785", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "YQsqgxIofLJVFuVRESEDXg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQG0JXzfKNejZg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQG0JXzfKNejZg", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1673295353733?e=1679529600&v=beta&t=x2h7b7jx-pUN89hkhC5E5FFanYD7NvD9Fa0JEq4mtsE", + "expiresAt": 1679529600000, + "height": 1298 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1673295357068?e=1679529600&v=beta&t=HyD_wqBJBJlNQPHGXVPpmI_iVNT4mk4IMJ6YLss21N0", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1673295357068?e=1679529600&v=beta&t=lexYzO3c4evsq-cyByOa9DPPqjVR96CtLPCsPVP3LMY", + "expiresAt": 1679529600000, + "height": 811 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1673295357068?e=1679529600&v=beta&t=XBq3trvmtEpesG8ZumCEFNMHfZkFDMSwcTcYMdGIGgc", + "expiresAt": 1679529600000, + "height": 304 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1673295357068?e=1679529600&v=beta&t=YJtfVUAjeUSNuHmRs921OCN8FxS1UL0G8pWlBPKcqvw", + "expiresAt": 1679529600000, + "height": 101 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1673295357068?e=1679529600&v=beta&t=uKo0pWza7or1ly5wQ31L4nPSogG1Ne9RiEti6zobIG4", + "expiresAt": 1679529600000, + "height": 507 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQG0JXzfKNejZg/feedshare-shrink_" + }, + "displayAspectRatio": 0.6337890625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, line chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7018309413862006785,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les prix de l'\u00e9nergie ? Ils montent, ils descendent... mais, depuis les chocs p\u00e9troliers, la part des d\u00e9penses \u00e9nerg\u00e9tiques dans les budgets des m\u00e9nages est rest\u00e9e tr\u00e8s stable. Il faudra voir si 2022 nous rapproche de 1974, car les donn\u00e9es ne sont pas encore disponibles au minist\u00e8re de la transition \u00e9nerg\u00e9tique, d'o\u00f9 sont issus ces chiffres (et plus pr\u00e9cis\u00e9ment de https://lnkd.in/eXsAPG2k ).\n\nDonner \u00e0 manger et \u00e0 boire \u00e0 nos 1000 esclaves \u00e9nerg\u00e9tiques planqu\u00e9s sous le capot de la voiture, \u00e0 ceux qui peuplent cuisines et salles de bains, \u00e0 ceux qui, dans la cave, assurent le chaud et parfois le froid, et encore \u00e0 ceux qui nous \u00e9clairent ou nous permettent de communiquer coute donc un peu moins de 10% de ce que nous gagnons. \n\nBien sur, cette facture n'inclut pas les esclaves \u00e9nerg\u00e9tiques des usines et des transports de marchandises, mais avouez que, quand m\u00eame, pour le service rendu, c'est donn\u00e9 !\n\nEt, depuis 1970, o\u00f9 l'\u00e9nergie coutait aussi 8% de ce que gagnaient nos parents ou grands-parents, l'arm\u00e9e d'esclaves m\u00e9caniques n'a cess\u00e9 de grossir : \u00e0 l'\u00e9poque, pour 8% t'avais presque rien. Il y avait quasiment 3 fois moins de voitures, peu d'\u00e9lectrom\u00e9nager, pas de chauffage central partout, peu de t\u00e9l\u00e9visions, et bien \u00e9videmment pas d'internet ou de box TV.\n\nA l'avenir, nous allons devoir devenir sobres. Est-ce \u00e0 dire qu'avec une consommation divis\u00e9e par 2 ou 3, la part de l'\u00e9nergie dans le budget sera divis\u00e9e par le m\u00eame facteur ? Notre logique de d\u00e9penses \u00e9tant g\u00e9n\u00e9ralement budg\u00e9taire (on \u00e9pargne ce que l'on doit \u00e9pargner et on d\u00e9pense tout le reste), il n'est pas \u00e9vident de comprendre pourquoi on se mettrait tout d'un coup \u00e0 consommer beaucoup moins alors que nous en aurions les moyens.\n\nSi notre facture d'\u00e9nergie nous coute moins cher parce que nous \u00e9conomisons de l'\u00e9nergie, qu'allons nous faire du surplus ? Jusqu'\u00e0 maintenant la r\u00e9ponse a \u00e9t\u00e9 de consommer autre chose en plus... et donc de consommer un peu plus d'une autre \u00e9nergie (celle pour la mise \u00e0 disposition de ce que nous allons consommer en plus). \n\nLa m\u00eame question se pose aussi pour toute l'\u00e9nergie \"incluse\" dans les produits ou services de la consommation finale : jusqu'\u00e0 maintenant nous avons utilis\u00e9 les marges de manoeuvre budg\u00e9taires d\u00e9gag\u00e9es par la baisse du prix d'un produit ou service pour consommer plus d'autre chose.\n\nSavoir si nous pouvons devenir sobres sans hausse des prix r\u00e9els - ce qui est le but m\u00eame de la taxe carbone - est donc une vraie question. Au regard du climat, l'inflation est-elle une calamit\u00e9 ou une b\u00e9n\u00e9diction ? Pour le moment il existe peu de propositions probantes mariant \"d\u00e9fense du pouvoir d'achat\" et baisse rapide des \u00e9missions..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7018309413862006785,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7018309415040647168,urn:li:activity:7018309415040647168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 59, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7018309415040647168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7018309415040647168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7018309415040647168", + "threadId": "activity:7018309415040647168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018309415040647168", + "urn": "urn:li:activity:7018309415040647168", + "numComments": 140, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7018309415040647168", + "reactionTypeCounts": [ + { + "count": 1169, + "reactionType": "LIKE" + }, + { + "count": 199, + "reactionType": "INTEREST" + }, + { + "count": 181, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7018309415040647168", + "numLikes": 1568, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018309415040647168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1568, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7017863646768726017", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7017863646768726017)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7017863646768726017)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lurgence-%C3%A9cologique-se-heurte-%C3%A0-la-culture-activity-7017863646768726017-gZ9o?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7017863646001123328", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7017863646768726017", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7017863646001123328", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "5WlT8NgZwqS1yHK8BwBeIg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8047021039996732535", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675783088239?e=1677240000&v=beta&t=eDUY3htTypZjPMj78nZ01R5WRYtpmdGbspedR3gVgFs", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675783088239?e=1677240000&v=beta&t=UX8I2pGUrdbZDVeOTvPSP128Xihf__epuPeMnW2zQmc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675783088239?e=1677240000&v=beta&t=avcCbQ_serzL2ZZlJ122k_A69hIFYTWhrj0GpsX74MY", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675783088239?e=1677240000&v=beta&t=uJvypUhkzIiTTBLFF_9so8_2avTBSGUPSWYaGjdZSd8", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGEDH2N_D63tw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8047021039996732535)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8047021039996732535)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L\u2019urgence \u00e9cologique se heurte \u00e0 la culture acad\u00e9mique des universit\u00e9s by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/societe/article/2023/01/06/crise-climatique-dans-les-universites-l-urgence-ecologique-se-heurte-a-la-culture-academique_6156904_3224.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L\u2019urgence \u00e9cologique se heurte \u00e0 la culture acad\u00e9mique des universit\u00e9s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7017863646001123328,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a la th\u00e9orie, et il y a la pratique. La th\u00e9orie, c'\u00e9tait par exemple le rapport du Shift Project \"Mobiliser l'enseignement sup\u00e9rieur pour le climat\" (https://lnkd.in/dNVfiau ), o\u00f9 nous proposions un certain nombre de choses pour que l'enseignement sup\u00e9rieur soit mis en coh\u00e9rence avec la d\u00e9carbonation en particulier, et les limites plan\u00e9taires en g\u00e9n\u00e9ral.\n\nMais en pratique c'est une autre paire de manches. Que faire des enseignements qui ne sont pas ou plus \"raccord\" avec la nouvelle donne ? On peut penser \u00e0 l'\u00e9conomie par exemple, qui int\u00e8gre tr\u00e8s imparfaitement la limite sur les ressources et le r\u00f4le central de l'\u00e9nergie et des machines dans les raisonnements. \n\nQue faire des enseignants qui seront trop nombreux dans un monde qui se d\u00e9carbone ? On peut alors penser aux \u00e9tudes de langues ou d'art par exemple : un monde plus sobre sera un monde avec moins de flux internationaux, et il ne sera peut-\u00eatre plus utile d'avoir autant de traducteurs, d'interpr\u00e8tes ou de guides pour touristes internationaux, et partant plus autant d'\u00e9tudiant(e)s faisant juste des \u00e9tudes de langues \u00e0 l'Universit\u00e9 (mais les langues en \"culture g\u00e9n\u00e9rale\" resteront importantes !).\n\nLa question n'est donc pas seulement d'ajouter un cours avec les bases physiques et biologiques d\u00e9crivant le monde dans lequel nous sommes entr\u00e9s : il faut que le reste de ce qui est enseign\u00e9 ne soit pas en contradiction, et pr\u00e9pare par ailleurs \u00e0 des m\u00e9tiers qui ne le seront pas plus.\n\nEt l\u00e0, nous n'y sommes pas encore. Dans un pays o\u00f9 la libert\u00e9 acad\u00e9mique est un principe tr\u00e8s fort (je ne discute pas du bien fond\u00e9 !), et o\u00f9 les enseignants universitaires sont inamovibles (m\u00eame remarque), r\u00e9orienter le paquebot ne se fera pas rapidement, et la question est m\u00eame pos\u00e9e de savoir ce qui pourrait d\u00e9clencher un changement au bon rythme (c'est \u00e0 dire pour demain matin).\n\nUne autre difficult\u00e9 est aussi soulign\u00e9e en fin de l'article du Monde : pour un enseignant chercheur, modifier le contenu de son cours, c'est potentiellement modifier sa recherche, et cela signifie que, pendant un temps, il ne publie plus (ou plus autant). Avec la sacralisation des classements (dont Shanghai) bas\u00e9s sur le nombre de publications annuelles, rien que cela peut \u00eatre un obstacle tr\u00e8s difficile \u00e0 surmonter pour les universit\u00e9s qui voudraient \"changer de direction\".\n\nIl est donc probable que l'innovation va avoir du mal \u00e0 venir \"d'en haut\". Pour le moment elle vient \"d'\u00e0 c\u00f4t\u00e9\", par exemple avec des cours en ligne que beaucoup d'\u00e9tudiant(e)s peuvent suivre en plus de leur cursus, ou d'\u00e9tablissements \"partis de rien\" (comme le Campus de la Transition cit\u00e9 dans cet article).\n\nIl y aura aussi de l'innovation partie \"d'en bas\", \u00e0 savoir les initiatives individuelles de certain(e)s enseignant(e)s, dont il faut esp\u00e9rer qu'elles inspireront le plus vite possible leurs coll\u00e8gues.\n\nCar, au sens propre chaque \u00e9t\u00e9 d\u00e9sormais, il y a le feu !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7017863646001123328,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7017863646768726017,urn:li:activity:7017863646768726017,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 128, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7017863646768726017,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7017863646768726017,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7017863646768726017", + "threadId": "activity:7017863646768726017", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017863646768726017", + "urn": "urn:li:activity:7017863646768726017", + "numComments": 171, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7017863646768726017", + "reactionTypeCounts": [ + { + "count": 1646, + "reactionType": "LIKE" + }, + { + "count": 212, + "reactionType": "MAYBE" + }, + { + "count": 206, + "reactionType": "INTEREST" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7017863646768726017", + "numLikes": 2117, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017863646768726017", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2117, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7017569097689223168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7017569097689223168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7017569097689223168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_economies-d%C3%A9nergie-la-chasse-au-gaspi-activity-7017569097689223168-Zi03?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7017569096808431616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7017569097689223168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7017569096808431616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "q9zCqyMxGblM0cKFZGyVRg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7653124443252468776", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675701078167?e=1677240000&v=beta&t=07x_uGGcRHYB6MvBCf8pfP9qv9ZT7Egb0PeMXIl6SDQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675701078167?e=1677240000&v=beta&t=H4GATfZ2YRqXDmmaHjrYZt2TPC-rgOomyIigpR1jgoQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675701078167?e=1677240000&v=beta&t=T43V-a5tlS56Nr0SYBhoi2mYDnNtDEXTjEZ2aDI4x_c", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675701078167?e=1677240000&v=beta&t=FzBbD7hwD_IBx91R2sVN91fDNj79zE9Kz5Li1gE3Vp4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE26hMK7K6Qvg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7653124443252468776)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7653124443252468776)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Economies d'\u00e9nergie : la chasse au gaspi ne fait que commencer by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/economies-denergie-la-chasse-au-gaspi-ne-fait-que-commencer-1894540#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Economies d'\u00e9nergie\u00a0: la chasse au gaspi ne fait que commencer" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7017569096808431616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A l'\u00e9poque o\u00f9 le monde \u00e9tait 100% renouvelable, il \u00e9tait moins pilotable qu'aujourd'hui. Il d\u00e9pendait fortement de la biomasse, du vent, du soleil et de l'eau, et ces 4 composantes sont elles-m\u00eames tributaires, de fa\u00e7on tr\u00e8s r\u00e9active (vent par exemple) ou plus lente (biomasse), des conditions du moment.\n\nA l'\u00e9poque, la marine \u00e0 voile avan\u00e7ait quand il y avait du vent, et on ne savait pas exactement \u00e0 quelle heure (ni parfois o\u00f9 !) on toucherait terre.\n\nLes moulins \u00e0 vent tournaient aussi quand il y avait du vent, et il valait mieux avoir un petit stock de farine sous la main pour ne pas risquer de manquer de pain en cas de panne \u00e9olienne un peu prolong\u00e9e. \n\nLes moulins \u00e0 eau \u00e9taient plus r\u00e9guliers, mais, lors d'une ann\u00e9e s\u00e8che ou d'un hiver tr\u00e8s froid (gel), ils pouvaient aussi s'arr\u00eater de tourner. La biomasse pour les animaux \u00e9tait disponible l'\u00e9t\u00e9 et il fallait faire des stocks pour l'hiver... en priant pour qu'ils soient suffisants.\n\nL'\u00e8re des combustibles fossiles a compl\u00e8tement chang\u00e9 la donne, et nous a habitu\u00e9s \u00e0 un monde o\u00f9 la disponibilit\u00e9 d'un produit ou service ne d\u00e9pend en rien des \u00e9l\u00e9ments ext\u00e9rieurs. \n\nAujourd'hui, au sens litt\u00e9ral du terme, nous ne voyons pas pourquoi il serait n\u00e9cessaire qu'il y ait du vent ou du soleil pour qu'un v\u00eatement soit assembl\u00e9 ou transport\u00e9, un aliment mis \u00e0 notre disposition, une classe d'histoire ou une op\u00e9ration de l'appendicite ait lieu, un bus avance ou un coup de fil puisse \u00eatre pass\u00e9.\n\nLa \"chasse au gaspi\" - c'est \u00e0 dire l'av\u00e8nement de l'\u00e8re des \u00e9conomies d'\u00e9nergie impos\u00e9es par insuffisance d'offre - et le retour en force des productions renouvelables non pilotables vont probablement nous remettre, un peu ou beaucoup, dans ce monde moins pr\u00e9visible, moins abondant et plus volatil. \n\nAinsi il a \u00e9t\u00e9 question que les \u00e9coles soient ferm\u00e9es ou une partie du r\u00e9seau t\u00e9l\u00e9phonique inop\u00e9rant les jours sans vent (puisque ce sont les jours, en hiver, o\u00f9 il y a potentiellement un probl\u00e8me d'approvisionnement). Pour le moment cette \u00e9ventualit\u00e9 n'est pas arriv\u00e9e (un temps d\u00e9pressionnaire est plut\u00f4t doux et venteux ; bonne conjonction !) mais son \u00e9vocation montre bien que le monde qui nous attend n'a pas vraiment \u00e9t\u00e9 pens\u00e9 \u00e0 l'avance c\u00f4t\u00e9 consommation.\n\nIl va falloir se faire \u00e0 l'id\u00e9e que tous les kWh ne sont pas \u00e9quivalents. Les combustibles fossiles n'ont pas juste amen\u00e9 des kWh en grande quantit\u00e9 : ils les ont amen\u00e9s \u00e0 la demande. S'organiser sans cette caract\u00e9ristique demandera beaucoup d'efforts : c'est ce que l'on appelle la \"flexibilit\u00e9\". Sa description pr\u00e9cise, et son caract\u00e8re plus ou moins indolore, restent g\u00e9n\u00e9ralement un point (tr\u00e8s) faible des sc\u00e9narios pour l'avenir." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7017569096808431616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7017569097689223168,urn:li:activity:7017569097689223168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 106, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7017569097689223168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7017569097689223168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7017569097689223168", + "threadId": "activity:7017569097689223168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017569097689223168", + "urn": "urn:li:activity:7017569097689223168", + "numComments": 326, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jean Lecordier" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7017569097689223168", + "reactionTypeCounts": [ + { + "count": 2648, + "reactionType": "LIKE" + }, + { + "count": 266, + "reactionType": "INTEREST" + }, + { + "count": 212, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7017569097689223168", + "numLikes": 3197, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017569097689223168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3199, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7017105538584829952", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7017105538584829952)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7017105538584829952)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-r%C3%A9chauffement-climatique-bient%C3%B4t-activity-7017105538584829952-Y_ZL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7017105537964113923", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7017105538584829952", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7017105537964113923", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "Rr/VBLpawq0lVf8pvzocPg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8487082001303440346", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676572886461?e=1677240000&v=beta&t=KkOiaVSp-Q-QesrwMn7FM4Q-k_NA2lQEPhkBYAtlAe8", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676572886461?e=1677240000&v=beta&t=FqFYH8qUnpYZpA4ZegNISBDKX6XfacUazmbGRWPZtjo", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676572886461?e=1677240000&v=beta&t=qWCk_WjS_Kvt254DvdM9z5SDrN4y0WmiDOw8taZt280", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676572886461?e=1677240000&v=beta&t=QooZRPPEjPXUqkonVioLHaxYdOeHaFAqit7Ph8dvT9I", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEBltEFv9DyRQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8487082001303440346)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8487082001303440346)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici : R\u00e9chauffement climatique : bient\u00f4t la fin des saisons ? - Yves Calvi - 02/01/2023 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=bwzeqRt8dNs" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici \u00e9tait invit\u00e9 sur RTL dans l\u2019\u00e9mission d'Yves Calvi le 2 janvier 2023. Vid\u00e9o originale : https://www.youtube.com/watch?v=FMbKODJqb7k Site de Jancovici : https://jancovici.com Page Facebook :..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici : R\u00e9chauffement climatique : bient\u00f4t la fin des saisons ? - Yves Calvi - 02/01/2023" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7017105537964113923,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Faut-il parler de \"d\u00e9r\u00e8glement\", de \"crise\", de \"d\u00e9rive\", ou encore une autre expression pour caract\u00e9riser l'\u00e9volution climatique ?\n\nRestera-t-il des hivers dans un monde qui se r\u00e9chauffe ?\n\nDoit-on encore utiliser le mot de \"normale\" en mati\u00e8re de m\u00e9t\u00e9o ou de climat, puisque l'\u00e9volution que nous avons mise en route enclenche une modification d\u00e9sormais permanente du syst\u00e8me climatique, qui ne permet pas le retour \u00e0 un \u00e9tat stable ? (or, ce que l'on qualifie de \"normale\" est g\u00e9n\u00e9ralement un \u00e9tat stable).\n\nAllons-nous pouvoir g\u00e9rer la question climatique sans que les \"\u00e9lites\" ne se forment de mani\u00e8re approfondie pour en cerner les contours ? (chose que manifestement la personne qui a r\u00e9dig\u00e9 le discours de voeux de Macron n'a pas bien faite :) )\n\nVoici quelques unes des questions abord\u00e9es dans cette br\u00e8ve apparition dans la matinale de RTL. Malgr\u00e9 une quantit\u00e9 de \"heu\" qui ferait sauter en l'air n'importe quel conseiller en communication, j'esp\u00e8re que les r\u00e9ponses apport\u00e9es seront utiles \u00e0 un auditoire qui a aussi droit \u00e0 Pascal Praud 2 heures par jour.\n\nEn particulier, il me semble essentiel que la population comprenne bien que \"l'\u00e9tat normal\" n'existe plus. Car c'est cela qui justifie que, alors m\u00eame que nous allons devoir consacrer plus de moyens \u00e0 la d\u00e9carbonation, nous commencions aussi \u00e0 redoubler d'efforts en mati\u00e8re \"d'adaptation au changement climatique\".\n\nIl faut donc consacrer des comp\u00e9tences et des moyens physiques \u00e0 nous pr\u00e9munir au mieux contre des \u00e9volutions adverses qui ne sont pas encore l\u00e0, mais dont nous savons avec certitude qu'elles vont arriver.\n\nCe qui vient de se produire rappelle qu'un jour l'avenir devient le pr\u00e9sent. Les seuls qui ne sont pas surpris sont les mod\u00e9lisateurs du climat et celles et ceux qui pr\u00eatent attention \u00e0 leurs propos. Mais l'important est que ce soit le reste de la population qui comprenne ce qui se passe et en tire les cons\u00e9quences pour l'action." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7017105537964113923,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7017105538584829952,urn:li:activity:7017105538584829952,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 66, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7017105538584829952,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7017105538584829952,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7017105538584829952", + "threadId": "activity:7017105538584829952", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017105538584829952", + "urn": "urn:li:activity:7017105538584829952", + "numComments": 146, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7017105538584829952", + "reactionTypeCounts": [ + { + "count": 1395, + "reactionType": "LIKE" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 88, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7017105538584829952", + "numLikes": 1650, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017105538584829952", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1650, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7016681335809261568", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7016681335809261568)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7016681335809261568)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-mati%C3%A8re-d%C3%A9nergie-le-mot-%C3%A0-la-mode-est-activity-7016681335809261568-vfwj?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7016681334949486592", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7016681335809261568", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7016681334949486592", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "f55R/Hqg8UqIb8kPj2HCyQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHCB8XtHW9GHw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHCB8XtHW9GHw", + "artifacts": [ + { + "width": 2028, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1672907191445?e=1679529600&v=beta&t=vtfryN3kWNbOYNXBPw9j4rZ_JIxCoNE0NLs8GGFDaxA", + "expiresAt": 1679529600000, + "height": 1142 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1672907192650?e=1679529600&v=beta&t=b4F4DPfwA0oj8ivxE4Gw0hY6-iYFrcVFnblSn0CWFZk", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1672907192650?e=1679529600&v=beta&t=I6WzfaoMsgmQwY36C4LgXb6Gg2HpZZRhuz6fCCk7mjA", + "expiresAt": 1679529600000, + "height": 721 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1672907192650?e=1679529600&v=beta&t=nbiYV6FcfRTugH_N9ayL8036DLy0KAfo8_6GpWhNrcs", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1672907192650?e=1679529600&v=beta&t=Fk3GWirnONYNRwpUUhl1yc6uWl_w6KqxH84OsT8xsWU", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1672907192650?e=1679529600&v=beta&t=4myYwYnLyPgq3klaGIPl0Lq4qhnI8izRJZS5zNfxl7U", + "expiresAt": 1679529600000, + "height": 450 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHCB8XtHW9GHw/feedshare-shrink_" + }, + "displayAspectRatio": 0.5631163708086785 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7016681334949486592,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En mati\u00e8re d'\u00e9nergie, le mot \u00e0 la mode est donc \"sobri\u00e9t\u00e9\" (qui ne figure cependant pas dans le message de voeux pr\u00e9sidentiel). Pour savoir ce que ce terme inspirait \u00e0 nos concitoyens, l'IFOP est aller les cuisiner un peu (cela s'appelle un sondage), et en a retir\u00e9 une analyse de 86 pages (pas en libre acc\u00e8s mais que l'on m'a gentiment fournie quand m\u00eame :) ). \n\nIl y figure notamment le graphique ci-dessous, qui r\u00e9sume ce \u00e0 quoi peut servir la sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique selon les personnes interrog\u00e9es. On y d\u00e9couvre avec \u00e9tonnement (enfin pour moi) que la moiti\u00e9 de la population (environ) pense que la sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique peut contribuer au manque de certaines \u00e9nergies ou au d\u00e9r\u00e8glement climatique. \n\nCela sugg\u00e8re que ce mot apparu de fa\u00e7on r\u00e9cente dans le discours politique est tr\u00e8s loin d'\u00eatre correctement compris par nos concitoyens, du moins si la bonne compr\u00e9hension est la baisse volontaire de la consommation des individus. \n\nAu demeurant, une question sur \"qui doit s'engager en faveur de la sobri\u00e9t\u00e9\", pos\u00e9e un peu plus loin, met les entreprises devant les citoyens, alors que, \u00e0 l'\u00e9vidence, la sobri\u00e9t\u00e9 est bien une affaire de consommation finale...\n\nIl est vraisemblable que, pour l'heure, cette notion de sobri\u00e9t\u00e9 est aussi confondue avec celle d'efficacit\u00e9. Les questions pos\u00e9es dans l'\u00e9tude de l'IFOP sur les actes auxquels les personnes sont pr\u00eates m\u00e9langent du reste un peu les deux (choisir des appareils plus efficaces et isoler son logement se retrouve est dans la m\u00eame liste que moins utiliser sa voiture et moins prendre l'avion). \n\nEnfin il est probable que \"les gens\" n'ont pas du tout les ordres de grandeur en t\u00eate sur l'effort \u00e0 faire. Beaucoup de r\u00e9pondants consid\u00e8rent que de r\u00e9duire sa consommation d'\u00e9nergie de 10% est ce qu'il faut viser, mais la \"sobri\u00e9t\u00e9 des 2\u00b0C\" nous am\u00e8nera tr\u00e8s au-del\u00e0 de cette valeur !\n\nIl ne suffira donc pas de brandir ce mot de \"sobri\u00e9t\u00e9\" pour d\u00e9gager un consensus et d\u00e9crire qui devra faire quoi. Pour parvenir \u00e0 cet objectif, il faudra donner corps \u00e0 ce terme sous forme... d'un plan. Ca ne vous rappelle rien :) ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7016681334949486592,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7016681335809261568,urn:li:activity:7016681335809261568,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 96, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7016681335809261568,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7016681335809261568,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7016681335809261568", + "threadId": "activity:7016681335809261568", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016681335809261568", + "urn": "urn:li:activity:7016681335809261568", + "numComments": 165, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7016681335809261568", + "reactionTypeCounts": [ + { + "count": 1326, + "reactionType": "LIKE" + }, + { + "count": 155, + "reactionType": "MAYBE" + }, + { + "count": 151, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7016681335809261568", + "numLikes": 1666, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016681335809261568", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1667, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7016472206754906113", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7016472206754906113)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7016472206754906113)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_participez-au-concours-dimaginaires-bas-activity-7016472206754906113-Qtan?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7016472206020853760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7016472206754906113", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7016472206020853760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "HGc3VagMTknRvynM4ESYMw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7906247804821788833", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676541270542?e=1677240000&v=beta&t=7tNh6_qMA647heeysbDosS_Bem8GgT93EZbo_OUJdQk", + "expiresAt": 1677240000000, + "height": 413 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676541270542?e=1677240000&v=beta&t=n-fFNTQx01DQ5WebAGdaMcvl8Q8UkgNKih-bCPZQ-D4", + "expiresAt": 1677240000000, + "height": 421 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676541270542?e=1677240000&v=beta&t=JTiEIqmJbqsROTXKCb8_SMneqecq_1gGYYlseRobcrM", + "expiresAt": 1677240000000, + "height": 82 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676541270542?e=1677240000&v=beta&t=1b-i59kHc4RPWbzfwen1Sx-IpL63Hpbrp7BLufX38FY", + "expiresAt": 1677240000000, + "height": 247 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFrGW2ai70isQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7906247804821788833)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7906247804821788833)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Participez au concours d'imaginaires bas carbone des Shifters ! by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/concours-shifters-imaginaires-bas-carbone/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Participez au concours d'imaginaires bas carbone des Shifters !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7016472206020853760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Vous maniez le crayon ou la cam\u00e9ra de mani\u00e8re acceptable ? Contribuer \u00e0 la d\u00e9carbonation vous tente ? Vous n'avez pas la possibilit\u00e9, comme Bruno Le Maire, de le faire en faisant r\u00e9diger un projet de loi sur l'industrie \"verte\" (https://bit.ly/3Cq4rgK ) ?\n\nDevenez auteur de BD \u00e0 succ\u00e8s (c'est possible m\u00eame si on ne s'y attend pas, je peux en t\u00e9moigner :) ), ou rivalisez avec \"Don't Look Up\" ! Pour agir, il faut en avoir envie, et la fiction, en \"donnant \u00e0 voir\", peut \u00eatre un moyen de susciter cette envie. \n\nLes Shifters - l'association des b\u00e9n\u00e9voles soutenant et contribuant aux travaux du Shift Project - organisent donc un concours de (tr\u00e8s) courts m\u00e9trages et de (tr\u00e8s) courtes bandes dessin\u00e9es autour du th\u00e8me \"un lundi en 2050\". Ce Lundi devra \u00e9videmment \u00eatre \u00e0 la fois d\u00e9carbon\u00e9, r\u00e9aliste, et enviable.\n\nL'ann\u00e9e derni\u00e8re, 210 \u00e9crivain(e)s en herbe avaient tent\u00e9 leur chance \u00e0 un concours de nouvelles organis\u00e9 par la m\u00eame association, avec un cahier des charges voisin : https://lnkd.in/eun_dbnd . Cette ann\u00e9e le format est diff\u00e9rent mais l'objectif est le m\u00eame. \n\nIl m'est souvent arriv\u00e9 de le dire, donc je peux le faire une fois de plus : changer de mod\u00e8le de soci\u00e9t\u00e9 n'est pas qu'une affaire d'ing\u00e9nieurs (et peut-\u00eatre m\u00eame pas avant tout une affaire d'ing\u00e9nieurs). C'est aussi et surtout une affaire de valeurs, d'\u00e9thique, de priorit\u00e9s, et d'incarnation de ce qui est possible.\n\nCe petit concours est donc la \"part du colibri\" pour contribuer sur ces plans l\u00e0. Alors, si ce petit d\u00e9fi vous tente, lancez vous !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7016472206020853760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7016472206754906113,urn:li:activity:7016472206754906113,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 164, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7016472206754906113,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7016472206754906113,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7016472206754906113", + "threadId": "activity:7016472206754906113", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016472206754906113", + "urn": "urn:li:activity:7016472206754906113", + "numComments": 218, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7016472206754906113", + "reactionTypeCounts": [ + { + "count": 1652, + "reactionType": "LIKE" + }, + { + "count": 121, + "reactionType": "EMPATHY" + }, + { + "count": 109, + "reactionType": "APPRECIATION" + }, + { + "count": 44, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7016472206754906113", + "numLikes": 1961, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016472206754906113", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1961, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7016101906401927169", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7016101906401927169)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7016101906401927169)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_greenwashing-lutilisation-abusive-du-label-activity-7016101906401927169-r47p?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7016101905554628608", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7016101906401927169", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7016101905554628608", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "oC8FqNa2Sa0SvCfqroKE1g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8137118342388500607", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676285803796?e=1677240000&v=beta&t=69safCPVZC4HoXRpAn_10xjIFqJHZ4rBLAl22S1aajg", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676285803796?e=1677240000&v=beta&t=dPoRbVmgdTrii-edHRz0bmYyGaMeLrE_v_Tzel1GhSo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676285803796?e=1677240000&v=beta&t=YUgDm72eZQ4buviWSaHoAFm7lBucru2G4ZHC6axoXVY", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676285803796?e=1677240000&v=beta&t=ei-rjOjwwhTlOOr4o26ATntyAx1UR0GFQDXVItsKsHI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEVsJxQJmZ4mw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8137118342388500607)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8137118342388500607)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Greenwashing : l'utilisation abusive du label \u00ab neutralit\u00e9 carbone \u00bb punie par la loi by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/conso-distribution/greenwashing-lutilisation-abusive-du-label-neutralite-carbone-punie-par-la-loi-1893390" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Greenwashing\u00a0: l'utilisation abusive du label \u00ab\u00a0neutralit\u00e9 carbone\u00a0\u00bb punie par la loi" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7016101905554628608,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il va devenir un peu plus difficile pour les entreprises de pr\u00e9senter leurs produits comme \"neutres\". Pas totalement impossible (cela aurait \u00e9t\u00e9 l'id\u00e9al : https://lnkd.in/dGTt6Zs), mais plus difficile : l'entreprise qui affirme qu'un de ses produits est neutre ne pourra le faire que si elle a :\n- fait un bilan des \u00e9missions de gaz \u00e0 effet de serre du produit ou service concern\u00e9 sur l'ensemble de son cycle de vie.\n- \u00e9tabli et publi\u00e9 la trajectoire de r\u00e9duction des \u00e9missions de CO2 associ\u00e9es au produit ou au service, avec des objectifs quantifi\u00e9s \u00e0 10 ans\n- pr\u00e9cis\u00e9 la nature et la description des projets utilis\u00e9s pour acheter des cr\u00e9dits (la \"compensation\").\n\nCela peut sembler un peu anecdotique de se concentrer sur la communication des entreprises au lieu de se concentrer sur leurs proc\u00e9d\u00e9s, leurs mati\u00e8res premi\u00e8res, les usages de leurs produits, etc.\n\nSauf que, dans un monde qui doit se d\u00e9carboner, le premier juge de paix auquel confronter les proc\u00e9d\u00e9s, mati\u00e8res premi\u00e8res et usages, c'est justement leur \"contenu en carbone\". Obliger les entreprises \u00e0 le mesurer, et \u00e0 le faire \u00e9voluer dans la bonne direction, est donc une figure impos\u00e9e pour que l'ensemble du syst\u00e8me se mette en mouvement. C'est bien l'objectif qui d\u00e9termine la nature de l'action \u00e0 suivre, et non l'inverse.\n\nLa sanction pr\u00e9vue en cas d'infraction peut aller jusqu'au montant d\u00e9pens\u00e9 dans la communication (donc plus d'un million si c'est \u00e0 la t\u00e9l\u00e9). A cela il faudrait probablement rajouter, en cas de condamnation, la r\u00e9putation un peu \u00e9corn\u00e9e de l'entreprise prise la main dans le pot de peinture verte, qui lui coutera aussi n\u00e9cessairement quelque chose, sur sa capacit\u00e9 \u00e0 recruter par exemple.\n\nEvidemment, l'id\u00e9al serait d'obliger \u00e0 communiquer sur chaque produit ou service son empreinte carbone sans autre forme de commentaire. A ce moment, plus besoin de se demander si un produit est neutre ou pas : on saurait combien a \u00e9t\u00e9 \u00e9mis pour sa fabrication, point. \n\nLa difficult\u00e9 pour en arriver l\u00e0 est que, \u00e0 l'heure des chaines de valeur mondialis\u00e9es (aucun m\u00e9tal incorpor\u00e9 dans un objet disponible dans notre pays ne vient de notre pays, par exemple), on ne peut pas calculer le contenu carbone d'un produit de mani\u00e8re exacte sans que l'ensemble des entreprises - en France ou \u00e0 l'\u00e9tranger - qui ont contribu\u00e9 \u00e0 la sa fabrication ne disposent d'une comptabilit\u00e9 carbone analytique. \n\nComme il est peu probable que, la semaine prochaine, la Chine, l'Allemagne, le Mexique, le Chili, le Maroc et la Turquie, et en fait tous les autres pays, imposent \u00e0 leurs entreprises de tenir une telle comptabilit\u00e9, cela signifie que, pour un temps au moins, il sera plus facile d'interdire ce qui est grossi\u00e8rement faux que de mettre en place ce qui est quantitativement exact." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7016101905554628608,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7016101906401927169,urn:li:activity:7016101906401927169,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 155, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7016101906401927169,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7016101906401927169,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7016101906401927169", + "threadId": "activity:7016101906401927169", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016101906401927169", + "urn": "urn:li:activity:7016101906401927169", + "numComments": 261, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7016101906401927169", + "reactionTypeCounts": [ + { + "count": 5552, + "reactionType": "LIKE" + }, + { + "count": 378, + "reactionType": "PRAISE" + }, + { + "count": 324, + "reactionType": "MAYBE" + }, + { + "count": 185, + "reactionType": "INTEREST" + }, + { + "count": 52, + "reactionType": "EMPATHY" + }, + { + "count": 35, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7016101906401927169", + "numLikes": 6526, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016101906401927169", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6529, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7015751553600880640", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7015751553600880640)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7015751553600880640)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-ces-universit%C3%A9s-qui-interdisent-%C3%A0-activity-7015751553600880640-4mhu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7015751552820772864", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7015751553600880640", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7015751552820772864", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "IfxS+htdL88PeA+z/MUKTQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9150029488320398542", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676616576342?e=1677240000&v=beta&t=FyCtPqizWs4W3ePQ2jAJ96rT0GRu0l8wnQa4T4i154Y", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676616576342?e=1677240000&v=beta&t=knk4TEM_UDQjHQ8YA-DRRF5tVa40Ppe43EzSn9tzjt0", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676616576342?e=1677240000&v=beta&t=49qrQyFKE939zdLe1k-cQLC4y79g9acZ-fjZba0KoaA", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676616576343?e=1677240000&v=beta&t=0YT7aLf9enwQkHHeoCFGjpci0N4UGsF2UW3h7l2_Aek", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHotGCXQDS2RA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9150029488320398542)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9150029488320398542)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "courrierinternational.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat. Ces universit\u00e9s qui interdisent \u00e0 leurs chercheurs de prendre l\u2019avion by courrierinternational.com", + "actionTarget": "https://www.courrierinternational.com/article/climat-ces-universites-qui-interdisent-a-leurs-chercheurs-de-prendre-l-avion" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat. Ces universit\u00e9s qui interdisent \u00e0 leurs chercheurs de prendre l\u2019avion" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7015751552820772864,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "De m\u00e9moire (car je n'ai plus la r\u00e9f\u00e9rence en t\u00eate), un professeur d'universit\u00e9 suisse a (ou avait avant covid) une empreinte carbone li\u00e9e \u00e0 sa profession d'environ 10 tonnes de CO2 par an. En cause : essentiellement les voyages en avion associ\u00e9s aux colloques qui deviennent l'ordinaire des universitaires quand ils se sont fait un nom dans leur sp\u00e9cialit\u00e9.\n\nL'\u00e9tude qui donnait ce r\u00e9sultat indiquait \u00e9galement que cette empreinte carbone \"a\u00e9rienne\" \u00e9tait croissante avec le statut : elle d\u00e9marrait \u00e0 une tonne pour un doctorat ou post-doctorant (ma m\u00e9moire me fait d\u00e9faut sur ce point pr\u00e9cis) pour finir \u00e0 10 tonnes en haut de l'\u00e9chelle (qui en Suisse s'appelle \"professeur ordinaire\" !).\n\nC'est donc une initiative int\u00e9ressante que celle de l\u2019Universit\u00e9 d\u2019Utrecht, aux\u00a0Pays-Bas, qui, apparemment, va interdire \u00e0 son personnel de prendre l'avion sur des distances inf\u00e9rieures \u00e0 700 km.\n\nL'Universit\u00e9 de Neufch\u00e2tel, elle, demande \u00e0 ce que l'avion ne soit utilis\u00e9 que si il n'y a pas d'alternative en train de moins de 10 heures. Notre gouvernement fait p\u00e2le figure avec ses 2h30 et l'exclusion d'un grand nombre de liaisons du dispositif !\n\nCette initiative commence \u00e9videmment par le plus facile, parce que, m\u00eame si 10 heures c'est long, ca reste g\u00e9rable sur une journ\u00e9e, et par ailleurs dans un train un chercheur peut travailler. Certes si son m\u00e9tier est de faire des manips sur des plantes ou des tests de r\u00e9sistance des mat\u00e9riaux il va avoir du mal \u00e0 le faire en se d\u00e9pla\u00e7ant, mais rien ne l'emp\u00eache de traiter son courrier, r\u00e9diger des comptes-rendus, en lire d'autres....\n\nMalheureusement, dans les vols a\u00e9riens, ce qui \u00e9met beaucoup ce sont les long-courrier : en gros, les \u00e9missions d'un vol sont proportionnelles au kilom\u00e9trage (pas tout \u00e0 fait parce que le d\u00e9collage consomme proportionnellement plus, mais en premi\u00e8re approximation on peut retenir ca).\n\nEt pour les long-courrier l'alternative devient moins confortable. Le train pour traverser la Russie ou les USA c'est plusieurs jours d'affil\u00e9e, et le bateau pour traverser l'Atlantique une semaine. R\u00e9duire les long courrier, qui est donc une mesure \"forte\" pour diminuer l'empreinte carbone de la recherche, signifie en pratique r\u00e9duire les colloques, ou les passer en visioconf\u00e9rence (ca va faire grincer quelques dents !).\n\nIl n'emp\u00eache que la recherche, comme le reste de nos activit\u00e9s, devra fatalement \u00e9voluer un jour ou l'autre dans un monde o\u00f9 la mobilit\u00e9 longue distance sera moins facile. Il serait souhaitable que tout nouveau projet qui d\u00e9marre soit compatible, \u00e0 la fois sur le fond et sur le mode op\u00e9ratoire du projet, avec ce cahier des charges." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7015751552820772864,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7015751553600880640,urn:li:activity:7015751553600880640,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 224, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7015751553600880640,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7015751553600880640,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7015751553600880640", + "threadId": "activity:7015751553600880640", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015751553600880640", + "urn": "urn:li:activity:7015751553600880640", + "numComments": 497, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7015751553600880640", + "reactionTypeCounts": [ + { + "count": 3816, + "reactionType": "LIKE" + }, + { + "count": 297, + "reactionType": "MAYBE" + }, + { + "count": 293, + "reactionType": "INTEREST" + }, + { + "count": 90, + "reactionType": "PRAISE" + }, + { + "count": 44, + "reactionType": "APPRECIATION" + }, + { + "count": 33, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7015751553600880640", + "numLikes": 4573, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015751553600880640", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4579, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7015289760269099008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7015289760269099008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7015289760269099008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_v%C5%93ux-2023-aux-fran%C3%A7ais-activity-7015289760269099008-rJ0N?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7015289759484760064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7015289760269099008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7015289759484760064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "nn7lb9Dr94MrblrVOEL0jA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9135926289784138403", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676205431089?e=1677240000&v=beta&t=CVFKCB-CNm3BXsciwVv9Wm5Yfg8NsDticPtsxqPp45Y", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676205431089?e=1677240000&v=beta&t=QDiAYAeBXtqourVqPOFG8ZdSNiOwgV4s_nkfpcBxLew", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676205431089?e=1677240000&v=beta&t=IP5ylVl89ntHHE__-muWSA2-I_F9o2HjNuXpeTA82pY", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676205431089?e=1677240000&v=beta&t=zg7iYGDm5sRYspMLvaMN8ZvFjbUbTsKbPFtLRK4ZKJU", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGGm99cVWgHQQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9135926289784138403)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9135926289784138403)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "elysee.fr \u2022 12 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: V\u0153ux 2023 aux Fran\u00e7ais. by elysee.fr", + "actionTarget": "https://www.elysee.fr/emmanuel-macron/2022/12/31/voeux-2023-aux-francais" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "V\u0153ux 2023 aux Fran\u00e7ais." + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7015289759484760064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est l'\u00e9poque des voeux ! M\u00eame si seul le prononc\u00e9 fait foi, j'ai attentivement lu le texte mis en ligne par l'Elys\u00e9e. \n\nOn y lit \"Qui aurait imagin\u00e9 [il y a un an] que (...) nous\u00a0\u00a0aurions \u00e0 affronter (...) une effroyable crise\u00a0\u00a0\u00e9nerg\u00e9tique, une crise alimentaire mena\u00e7ante, (...) la vague d\u2019inflation, (...) ou la crise climatique\u00a0?\"\n\nQui ? Sur l'\u00e9nergie, tous ceux qui, remarquant que les combustibles fossiles sont \u00e9puisables alors qu'ils fondent la soci\u00e9t\u00e9 moderne, soulignent depuis longtemps que leur baisse subie dans un monde non pr\u00e9par\u00e9 se traduira par des cons\u00e9quences adverses d'ampleur croissante (d\u00e8s Meadows et al au moins : https://bit.ly/2HkwcIl ).\n\nL'Europe \u00e9tait bien avant l'Ukraine en baisse subie sur le p\u00e9trole (depuis 2007), le gaz (depuis 2005), le charbon (depuis les ann\u00e9es 50), et en baisse choisie sur le nucl\u00e9aire (depuis 2005). Notre baisse de production physique (des tonnes charg\u00e9es dans les camions ou des immeubles construits) a commenc\u00e9 d\u00e8s 2008. L'empreinte carbone des fran\u00e7ais a commenc\u00e9 \u00e0 baisser en m\u00eame temps que leur revenu disponible, en 2009 ou 2010, dans la foul\u00e9e de cette d\u00e9crue \u00e9nerg\u00e9tique.\n\nIl n'y a donc pas besoin d'\u00eatre grand clerc pour \"voir venir des ennuis\" avec la d\u00e9crue \u00e9nerg\u00e9tique, sans bien s\u00fbr \u00eatre en mesure de d\u00e9crire ces derniers avec pr\u00e9cision. Pour ce que j'en connais ce qui pr\u00e9c\u00e8de ne fait l'objet d'aucune attention particuli\u00e8re de l'Elys\u00e9e.\n\nSur l'alimentation, m\u00eame motif m\u00eame punition : l'agriculture moderne c'est un climat stable et des combustibles fossiles. Que le climat devienne instable et les combustibles fossiles moins accessibles, et la conclusion devient logique \u00e0 d\u00e9faut d'\u00eatre plaisante. \n\nEnfin, sur la crise climatique, c'est \u00e0 se demander ce qui est pass\u00e9 par la t\u00eate de la personne qui a r\u00e9dig\u00e9 ce discours que de poser la question de savoir \"qui l'aurait pr\u00e9dite\". S\u00e9rieux ?\n\nOn trouve ensuite \"A chaque \u00e9preuve, l\u2019Europe nous a permis d\u2019agir plus vite et plus fort\". C'est vrai et faux : l'Europe avance aujourd'hui sur deux pieds qui contribuent in\u00e9galement au mandat initial de paix et \"prosp\u00e9rit\u00e9\". Le pied \"lib\u00e9ral et concurrentiel\" tire de plus en plus contre son propre camp. On a vu ses effets sur l'\u00e9lectricit\u00e9, sur la perte industrielle ou sur l'incapacit\u00e9 \u00e0 faire \u00e9merger une agriculture \"durable\".\n\nLe pied r\u00e9glementaire prend de la vigueur. On lui doit par exemple la limitation des \u00e9missions des voitures neuves, les \u00e9conomies d'\u00e9nergie dans le b\u00e2timent, les obligations de transparence sur les \u00e9missions ou la \"taxe carbone aux fronti\u00e8res\". Mais l'Europe doit encore apprendre \u00e0 marcher -) donc coordonner ses 2 pieds - dans le monde fini.\n\nSuivent plusieurs paragraphes mentionnant que \"notre travail\" va permettre d'avancer dans la bonne direction. Mais ce discours - qui parle surtout d'intendance \u00e0 court terme, certes utile - ne d\u00e9crit pas de grand projet coh\u00e9rent de long terme qui soit lisible (et donc qui motive \u00e0 travailler). Peut-\u00eatre n'\u00e9tait-ce pas le moment d'en parler." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7015289759484760064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7015289760269099008,urn:li:activity:7015289760269099008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 259, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7015289760269099008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7015289760269099008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7015289760269099008", + "threadId": "activity:7015289760269099008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015289760269099008", + "urn": "urn:li:activity:7015289760269099008", + "numComments": 382, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7015289760269099008", + "reactionTypeCounts": [ + { + "count": 7104, + "reactionType": "LIKE" + }, + { + "count": 570, + "reactionType": "PRAISE" + }, + { + "count": 435, + "reactionType": "INTEREST" + }, + { + "count": 250, + "reactionType": "MAYBE" + }, + { + "count": 72, + "reactionType": "APPRECIATION" + }, + { + "count": 64, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7015289760269099008", + "reacted": "LIKE", + "numLikes": 8495, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015289760269099008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 8514, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7014995835687944192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7014995835687944192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7014995835687944192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_apr%C3%A8s-une-ann%C3%A9e-agit%C3%A9e-le-monde-des-m%C3%A9taux-activity-7014995835687944192-APdy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7014995834752630785", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7014995835687944192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7014995834752630785", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "y0wsrHYQxQYHfZ/Ph7dzpg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9219098135315210715", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675804672450?e=1677240000&v=beta&t=yHsEYzRExqkyqfP3iCzsyH1W048JXDrcoyaU1YUdGKU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675804672450?e=1677240000&v=beta&t=Rjpmnc34ptGnOmX3PZSCy6s0BdpQsAZUy99e8vFBN34", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675804672450?e=1677240000&v=beta&t=C56D_WtSnaJ-xLm4_C--kj2jgQqYaKN3u529dspjME0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675804672450?e=1677240000&v=beta&t=BM9XcqcWkHfQhYMLv9dCmveyKK_lAISEW_e6fLd-I4g", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFDmmheuQatYA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9219098135315210715)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9219098135315210715)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Apr\u00e8s une ann\u00e9e agit\u00e9e, le monde des m\u00e9taux se pr\u00e9pare \u00e0 un supercycle by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/apres-une-annee-agitee-le-monde-des-metaux-se-prepare-a-un-supercycle-1892507" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s une ann\u00e9e agit\u00e9e, le monde des m\u00e9taux se pr\u00e9pare \u00e0 un supercycle" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7014995834752630785,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 374, + "length": 19, + "miniProfile": { + "firstName": "Christophe", + "lastName": "Poinssot", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAA24xQEBcOp94cQTsFmv_bpbgQ-B9153eZ8", + "occupation": "Directeur G\u00e9n\u00e9ral D\u00e9l\u00e9gu\u00e9 et Directeur Scientifique chez BRGM / Deputy CEO and scientific director at French Geological Survey (Brgm)", + "objectUrn": "urn:li:member:230212865", + "entityUrn": "urn:li:fs_miniProfile:ACoAAA24xQEBcOp94cQTsFmv_bpbgQ-B9153eZ8", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1617046772083?e=1681948800&v=beta&t=coZNqswSvg1ZqLHvnCcfdOC5ZTPMl8ojNv9jjIItHcM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1617046772083?e=1681948800&v=beta&t=CrFrd4e9tQsOBBv5Ez7o1EC5YtFYy3BtljlCweDL-Io", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQGD-PEAIuFPVA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "christophe-poinssot-05512165", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1628084112044?e=1681948800&v=beta&t=twpYle4QGNZu1tUE65Nn_xDxxUCpoeAEGM9PO-wecYE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1628084112044?e=1681948800&v=beta&t=-f95a7iK1s3JdEYW7S9B6gjcvlolIh-o5xz46RjKziE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1628084112044?e=1681948800&v=beta&t=wkykgdbKJjwrBkj9_8bjpWdzy2-k59ufptTYayDp-Zg", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1628084112044?e=1681948800&v=beta&t=WG4lYv3R8a4trzjyEo7K-JSQQxnrIibtc8Zw8OvtBZk", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQETwdRSJOoDlA/profile-displayphoto-shrink_" + } + }, + "trackingId": "m6W2V5KUSpm74Td1udvZ5g==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Une des \u00e9quations infernales de la transition \u00e9nerg\u00e9tique, c'est de pouvoir disposer de plus en plus de m\u00e9taux, dans un monde o\u00f9 les flux internationaux seront de plus en plus chahut\u00e9s et l'\u00e9nergie \n\nPour ceux qui ont le temps (ou le prendront !), dans les auditions r\u00e9centes de la commission d'enqu\u00eate sur la perte de souverainet\u00e9 \u00e9nerg\u00e9tique de la France, il y a celle de Christophe Poinssot, qui fournit un certain nombre d'\u00e9l\u00e9ments tr\u00e8s int\u00e9ressants sur les usages et la disponibilit\u00e9 future des m\u00e9taux : https://lnkd.in/ef4BhrY5\n\nOn y apprend notamment que le monde utilisait principalement 10 m\u00e9taux en 1900, alors que c'est d\u00e9sormais de l'ordre de 60, et que nombre d'entre eux sont utilis\u00e9s de mani\u00e8re trop dilu\u00e9e dans les objets qui les contiennent pour pouvoir \u00eatre r\u00e9cup\u00e9r\u00e9s ensuite.\n\nOn y apprend aussi qu'il faut en moyenne 17 ans (dans le monde) entre la d\u00e9cision d'ouvrir une mine et le moment o\u00f9 l'exploitation d\u00e9marre. Ceci explique par exemple que la disponibilit\u00e9 mondiale en cuivre ne va pas beaucoup augmenter (voire l\u00e9g\u00e8rement diminuer) dans les 20 ans qui viennent (information rappel\u00e9e par Poinssot), et il faut voir si cela est compatible avec les plans d'\u00e9lectrification massive qui supposent une consommation accrue de ce m\u00e9tal. \n\nM\u00eame s'il faut toujours \u00eatre prudent avec les pr\u00e9visions de prix des mati\u00e8res premi\u00e8res (un des gags dans le monde du p\u00e9trole consiste \u00e0 dire : \"vous pouvez pr\u00e9voir un prix, vous pouvez pr\u00e9voir une date, mais il ne faut jamais faire les deux en m\u00eame temps !\"), il est logique de penser que cette tension devrait finir par se voir dans les prix. Dans cet article des Echos, les n\u00e9gociants interrog\u00e9s tablent tous sur des hausses significatives pour l'ann\u00e9e prochaine.\n\nDans les sc\u00e9narios de transition \u00e9nerg\u00e9tique, les alternatives sont souvent \u00e9valu\u00e9es \u00e0 l'aune des montants respectifs d'investissements demand\u00e9s. Mais ces derniers peuvent fortement d\u00e9pendre des cours des mati\u00e8res premi\u00e8res, en particulier pour les moyens qui sont \"gourmands\" en m\u00e9tal par kWh produit (ce qui est le cas - pour de b\u00eates raisons physiques - des collecteurs d'\u00e9nergies diffuses).\n\nLa sagesse voudrait donc que nous prenions nos paris avant tout sur la base des param\u00e8tres \"physiques\", en ne donnant pas aux couts actuels plus de valeur pr\u00e9dictive qu'ils n'en ont. Ca sera mon voeu pour 2023, puisque c'est l'\u00e9poque !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7014995834752630785,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7014995835687944192,urn:li:activity:7014995835687944192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7014995835687944192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7014995835687944192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7014995835687944192", + "threadId": "activity:7014995835687944192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014995835687944192", + "urn": "urn:li:activity:7014995835687944192", + "numComments": 130, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7014995835687944192", + "reactionTypeCounts": [ + { + "count": 1379, + "reactionType": "LIKE" + }, + { + "count": 175, + "reactionType": "INTEREST" + }, + { + "count": 148, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7014995835687944192", + "numLikes": 1741, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014995835687944192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1741, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7014531641989603328", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7014531641989603328)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7014531641989603328)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_litt%C3%A9rature-franc-succ%C3%A8s-du-roman-graphique-activity-7014531641989603328-k-0C?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7014531641289105408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7014531641989603328", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7014531641289105408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "bKoJVDn9lZUNEN5SOB4uCQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8198496211263763453", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675683616896?e=1677240000&v=beta&t=UqoKmzYHwn8V7I73dA1Zq4kZWyaT9kBVD0kiayqnbQE", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675683616896?e=1677240000&v=beta&t=_H5DCX7z7BOS41vXOa-yIqPNhY_31CnLfinjKhp_vdY", + "expiresAt": 1677240000000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675683616897?e=1677240000&v=beta&t=pODs7QyriaGn_TiTiQxEbDcCmMsAxcTk6P09EaiMCrM", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675683616897?e=1677240000&v=beta&t=dk4OSUaXf1I6wSl-8zo0ofEaH5spc7TBDoi1RxWC2OA", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF6fZQs7GLi_w/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le livre le plus vendu en France est une bande-dessin\u00e9e intitul\u00e9e \"Le monde sans fin\". Plus d'un demi-million d'exemplaires ont \u00e9t\u00e9 \u00e9coul\u00e9s. L\u2019\u0153uvre est sign\u00e9e Jean-Marc Jancovici, sp\u00e9cialiste du climat et de l\u2019\u00e9nergie, et Christophe Blain, dessinateur." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8198496211263763453)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8198496211263763453)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "francetvinfo.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Litt\u00e9rature : franc succ\u00e8s du roman graphique sur la crise climatiqe \"Le Monde sans fin\" by francetvinfo.fr", + "actionTarget": "https://www.francetvinfo.fr/culture/bd/litterature-franc-succes-du-roman-graphique-sur-la-crise-climatiqe-le-monde-sans-fin_5569977.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Litt\u00e9rature : franc succ\u00e8s du roman graphique sur la crise climatiqe \"Le Monde sans fin\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7014531641289105408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Monde Sans Fin a bien march\u00e9, il semblerait :) . Peut-on tenter de comprendre pourquoi ?\n\nIl y a tout d'abord le th\u00e8me trait\u00e9 qui fait que l'on \"surfe sur la vague\" : arrivant d\u00e9sormais r\u00e9guli\u00e8rement en t\u00eate des sondages sur les pr\u00e9occupations pour l'avenir, le changement climatique, et plus r\u00e9cemment l'\u00e9nergie, int\u00e9ressent de plus en plus de monde. Un livre des m\u00eames auteurs sur la reproduction des bulots aurait probablement connu un destin un peu diff\u00e9rent.\n\nIl y a l'objet ensuite. Lorsque Christophe m'a contact\u00e9, il m'a dit la chose suivante : \"tes conf\u00e9rences sur Youtube permettent de tr\u00e8s bien comprendre la situation, mais quand on veut r\u00e9expliquer \u00e0 quelqu'un d'autre, on se rend compte que l'on n'y arrive pas\". \n\nIl avait donc d\u00e9j\u00e0 en t\u00eate de faire un livre graphique (car plus facile \u00e0 comprendre) qui puisse s'offrir en disant \"tiens, tu vas comprendre\". C'\u00e9tait sa fa\u00e7on de contribuer \u00e0 un acte militant mais tr\u00e8s bien tol\u00e9r\u00e9 (offrir un livre). Et de fait, c'est un album qui a \u00e9t\u00e9 tr\u00e8s souvent achet\u00e9 pour quelqu'un d'autre (quelques entreprises en ont m\u00eame achet\u00e9 des milliers pour leurs salari\u00e9s !).\n\nIl y a Christophe enfin. Il n'est pas qu'un ma\u00eetre du crayon : c'est aussi et surtout un perfectionniste qui ne laisse absolument rien passer sur le fond. Tant qu'un \u00e9l\u00e9ment reste incompris, obscur ou incoh\u00e9rent avec le reste, il y revient. Il ne faut pas du tout croire qu'il a dessin\u00e9 sous ma dict\u00e9e : il m'a bombard\u00e9 de questions, et nous avons pass\u00e9 des heures carr\u00e9es sur chaque case de l'album, jusqu'au moment o\u00f9 l'explication \u00e9tait compl\u00e8te et l'enchainement fluide. Accessoirement (!) c'est aussi lui qui a convaincu Dargaud.\n\nAvions nous une ambition en mati\u00e8re de ventes ? Pour ma part, je souhaitais \"faire beaucoup mieux que les essais\", mais cela d\u00e9marrait \u00e0 50.000 exemplaires, nombre qu'aucun de mes essais n'avait atteint.\n\nChristophe, lui, voulait cr\u00e9er \"un ph\u00e9nom\u00e8ne\". Au moment de notre rencontre il \u00e9tait d\u00e9j\u00e0 \"pris aux tripes\", consid\u00e9rait que le sujet trait\u00e9 \u00e9tait \"le\" sujet, et que ce livre devait \u00eatre \"le\" livre. En cons\u00e9quence, il voulait faire mieux que Quai d'Orsay, dont le premier tome a \u00e9t\u00e9 vendu \u00e0 250.000 exemplaires. C'est lui qui a eu raison :)\n\nPour ma part, j'avais deux autres souhaits : d'abord qu'une BD permette de toucher des gens qui n'auraient jamais achet\u00e9 un essai. Sur ce plan l\u00e0, on peut dire que le pari est r\u00e9ussi. Et ensuite, que plus de femmes s'int\u00e9ressent \u00e0 la question \u00e9nerg\u00e9tique. \n\nPour les mails spontan\u00e9s que je re\u00e7ois, les demandes de connexion linkedin (que je ne peux plus satisfaire la quasi-totalit\u00e9 du temps, car je suis proche de mon quota !), les r\u00e9actions \u00e0 mes posts ici, et quelques autres \"points de sonde\", dans plus de 80% des cas j'ai affaire \u00e0 un homme (et >98% quand c'est un commentaire agressif :) ). \n\nJe ne sais pas si cette nouvelle forme d'expression a un peu corrig\u00e9 ce d\u00e9s\u00e9quilibre (pas pour les agressions !), mais si oui j'en serai heureux." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7014531641289105408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7014531641989603328,urn:li:activity:7014531641989603328,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 320, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7014531641989603328,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7014531641989603328,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7014531641989603328", + "threadId": "activity:7014531641989603328", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014531641989603328", + "urn": "urn:li:activity:7014531641989603328", + "numComments": 484, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7014531641989603328", + "reactionTypeCounts": [ + { + "count": 4978, + "reactionType": "LIKE" + }, + { + "count": 687, + "reactionType": "PRAISE" + }, + { + "count": 250, + "reactionType": "EMPATHY" + }, + { + "count": 77, + "reactionType": "APPRECIATION" + }, + { + "count": 21, + "reactionType": "INTEREST" + }, + { + "count": 20, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7014531641989603328", + "numLikes": 6033, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014531641989603328", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6034, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7014139569486888960", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7014139569486888960)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7014139569486888960)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_patrick-pouyann%C3%A9-pdg-de-totalenergies-audition-activity-7014139569486888960-R4wo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7014139568698368000", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7014139569486888960", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7014139568698368000", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "zteplKjITLJLYTtE1OjJ3w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7334399710424462882", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1675558478787?e=1677240000&v=beta&t=Qubh7r5hmc0FOI3u9HEnfNRCkVzBPnsEVPgzik-hIg0", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675558478787?e=1677240000&v=beta&t=NxGoR36p6qo0VGoWVNJZZN03IMEQBnqTy3445sKbM4I", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675558478788?e=1677240000&v=beta&t=OEt6gJub-B4mpvaAjoULj4Opuz4TUtXLzqCCjgn46q8", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675558478788?e=1677240000&v=beta&t=2eYMz9AULBoFa27mtsYGK7WnCzd-nHCsG8mo4fFSt9k", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH1QiaF0aoWGA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7334399710424462882)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7334399710424462882)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Patrick Pouyann\u00e9 -PDG de TotalEnergies, audition, Assembl\u00e9e nationale, 23 novembre 2022 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=syo0atzlYH0" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Commission d'enqu\u00eate \"Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France\"\n\nSource : www.assemblee-nationale.fr" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Patrick Pouyann\u00e9 -PDG de TotalEnergies, audition, Assembl\u00e9e nationale, 23 novembre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7014139568698368000,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tr\u00e8s int\u00e9ressante audition de Patrick Pouyann\u00e9 par la \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\".\n\nQu'on le veuille ou non, \u00e0 tr\u00e8s court terme la s\u00e9curit\u00e9 d'approvisionnement du pays d\u00e9pend largement du comportement des acteurs du monde p\u00e9trolier et gazier, de fait num\u00e9riquement moins couvert par les auditions de cette commission que le secteur \u00e9lectrique, alors que les hydrocarbures dominent dans l'approvisionnement national. Les quasiment 2 heures pass\u00e9es avec le PDG de Total permettent de comprendre, de fa\u00e7on bienvenue, beaucoup de choses sur le fonctionnement de ce monde l\u00e0.\n\nUne des pr\u00e9occupations du moment est bien sur l'approvisionnement en gaz. Avec l'arr\u00eat des importations russes, la marge de manoeuvre restante est le Gaz Naturel Liqu\u00e9fi\u00e9, pour lequel nous sommes en concurrence avec le reste du monde. Un moyen de faire baisser les prix \u00e0 court terme serait de nouer des contrats de long terme. Mais.... cela signifie que l'on s'engage \u00e0 consommer du gaz longtemps, ce qui est contradictoire avec l'engagement de neutralit\u00e9 !\n\nPouyann\u00e9 explique aussi pourquoi il a investi dans les centrales \u00e9lectriques \u00e0 gaz : l'essor des modes \u00e9lectriques intermittents rend de toute fa\u00e7on n\u00e9cessaires ces moyens de production si l'on veut un approvisionnement \u00e9lectrique continu (\u00e0 ce propos il affirme que le nucl\u00e9aire fran\u00e7ais n'est pas modulable, ce qui est inexact et est une des deux erreurs que j'ai relev\u00e9es dans son propos). \n\nPouyann\u00e9 confirme dans cette audition que le taux naturel de d\u00e9clin des puits de p\u00e9trole en production dans le monde est de 4% \u00e0 5% par an, ce qui lui fait conclure que, pour que son secteur fasse sa part dans les objectifs climat, il suffit d'arr\u00eater d'investir (mais il dit que ce n'est pas encore le moment, ce qui est inexact puisque les \u00e9missions devraient baisser de 5% par an d\u00e8s demain matin pour tenir les 2\u00b0C).\n\nIl indique que Total a regard\u00e9 le nucl\u00e9aire mais a recul\u00e9 \u00e0 cause de la longueur des engagements, qui ne lui semblent compatibles qu'avec le mode de fonctionnement d'une entreprise publique.\n\nIl s'exprime aussi sur le solaire, l'\u00e9olien, la \"concurrence\" sur l'\u00e9lectricit\u00e9, le biogaz, l'hiver 2023 qui sera plus compliqu\u00e9 que l'actuel, la demande \u00e9nerg\u00e9tique des pays \u00e9mergents qui pour le moment est impossible \u00e0 satisfaire sans fossiles additionnel, la Californie et le Qatar...\n\nA d\u00e9faut de fournir les bonnes r\u00e9ponses pour certain(e)s, cette audition permet de poser quelques questions qui piquent un peu. Et quand la r\u00e9ponse de Pouyann\u00e9 nous agace, c'est parfois tout simplement parce qu'il nous place face \u00e0 nos propres contradictions." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7014139568698368000,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7014139569486888960,urn:li:activity:7014139569486888960,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 125, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7014139569486888960,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7014139569486888960,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7014139569486888960", + "threadId": "activity:7014139569486888960", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014139569486888960", + "urn": "urn:li:activity:7014139569486888960", + "numComments": 224, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7014139569486888960", + "reactionTypeCounts": [ + { + "count": 3795, + "reactionType": "LIKE" + }, + { + "count": 590, + "reactionType": "INTEREST" + }, + { + "count": 577, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7014139569486888960", + "numLikes": 5014, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014139569486888960", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5016, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 Edited \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7013918188404899840", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7013918188404899840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7013918188404899840)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_changement-climatique-lagriculture-n%C3%A9erlandaise-activity-7013918188404899840-n2gn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7013918187515691008", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7013918188404899840", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7013918187515691008", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "Oa6Zwh81fso16ywepqgGKQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7180284881110044128", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675856954303?e=1677240000&v=beta&t=uEBZSjrgFPcdFGtOL5DrEJPRdoEvqpT_2JmCWEArtR4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675856954304?e=1677240000&v=beta&t=oFZiEZbBylyp36N6gdzB5Bj3VgGfGJNXAP6lHaKb6rs", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675856954304?e=1677240000&v=beta&t=jlTSxGZNldMTRycqa2Pm_kt90EUaXfwC7G0JdM1pSW0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675856954304?e=1677240000&v=beta&t=vlneTm6qMDTRHy4I0dOZmGIV3YCZ3HE9P_7txZrJnpk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFaWrlSgQyIEg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7180284881110044128)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7180284881110044128)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Changement climatique : l'agriculture n\u00e9erlandaise plong\u00e9e dans une crise sans pr\u00e9c\u00e9dent by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/changement-climatique-lagriculture-neerlandaise-plongee-dans-une-crise-sans-precedent-1892004" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Changement climatique\u00a0: l'agriculture n\u00e9erlandaise plong\u00e9e dans une crise sans pr\u00e9c\u00e9dent" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7013918187515691008,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "On peut appeler cela un miracle ou une h\u00e9r\u00e9sie, selon le point de vue : selon Les Echos, les Pays Bas, pays de 42.000 km2 de superficie, est le 2\u00e8 exportateur mondial de produits agricoles et agroalimentaires, derri\u00e8res les USA, pays 230 fois plus vaste, et devant la France, qui est plus de 10 fois plus vaste, et tout cela avec 52.000 agriculteurs seulement, qui commandent forc\u00e9ment \u00e0 beaucoup beaucoup de machines.\n\nCar, \u00e9videmment, ce n'est pas tant aux vastes terres fertiles de ce pays tr\u00e8s dens\u00e9ment peupl\u00e9 que l'on doit cela, mais \u00e0 l'\u00e9nergie. Le mod\u00e8le n\u00e9erlandais s'est bas\u00e9 largement sur les exploitations intensives qui demandent des engrais (du gaz et du p\u00e9trole), des serres (du gaz pour les chauffer et pour faire le verre), des \u00e9levages intensifs, impossibles \u00e0 approvisionner sans d'importants volumes de transport associ\u00e9s (pour faire venir les aliments) et des produits v\u00e9g\u00e9taux pas chers. Un mod\u00e8le fortement exportateur est aussi un mod\u00e8le fortement d\u00e9pendant des transports internationaux (du p\u00e9trole \u00e0 nouveau).\n\nCe d\u00e9veloppement est \u00e9videmment all\u00e9 avec une augmentation de quelques pressions environnementales (effluents ou \u00e9missions), et est d\u00e9pendant d'une \u00e9nergie abondante et pas ch\u00e8re. Le d\u00e9sir de limiter les nuisances environnementales et la \"crise du gaz\" rebattent fortement les cartes. \n\nRappelons que la production hollandaise de gaz, qui \u00e9tait encore tr\u00e8s significative il y a quelques ann\u00e9es, s'est brusquement effondr\u00e9e apr\u00e8s la d\u00e9cision d'arr\u00eater l'exploitation du plus grand champ gazier d'Europe du Nord (Groninge), qui avait fait de ce pays une petite Norv\u00e8ge pendant de longues d\u00e9cennies.\n\nCet exemple hollandais est en fait embl\u00e9matique de ce qui finira par arriver ailleurs. Une agriculture avec peu de monde, tr\u00e8s m\u00e9canis\u00e9e, tr\u00e8s d\u00e9pendante des transports amont et aval, et tr\u00e8s d\u00e9pendante des engrais et des phytosanitaires, est un enfant de la mondialisation, et aura du mal \u00e0 survivre face \u00e0 la d\u00e9crue \u00e9nerg\u00e9tique. \n\nComme le paysage agricole est tr\u00e8s long \u00e0 r\u00e9orienter (parce que c'est un domaine de traditions, et parce que l'organisation globale mise en place ne se modifie pas en une semaine), il n'est que temps de se demander \u00e0 quoi elle devra ressembler si les conditions climatiques et \u00e9nerg\u00e9tiques de cette ann\u00e9e 2022 deviennent la norme, voire \"moins pire\" que cette derni\u00e8re.\n\nAu Shift Project, cela fait partie de nos ambitions pour 2023 que d'y revenir (le chapitre du PTEF sur l'agriculture n'est pas suffisant \u00e0 nos yeux et manger est raisonnablement vital). Mais nous esp\u00e9rons bien ne pas \u00eatre les seuls \u00e0 avoir envie de mettre un peu de jus de cerveau dans la question !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7013918187515691008,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7013918188404899840,urn:li:activity:7013918188404899840,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 175, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7013918188404899840,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7013918188404899840,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7013918188404899840", + "threadId": "activity:7013918188404899840", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013918188404899840", + "urn": "urn:li:activity:7013918188404899840", + "numComments": 264, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7013918188404899840", + "reactionTypeCounts": [ + { + "count": 4160, + "reactionType": "LIKE" + }, + { + "count": 796, + "reactionType": "INTEREST" + }, + { + "count": 697, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "APPRECIATION" + }, + { + "count": 42, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7013918188404899840", + "numLikes": 5754, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013918188404899840", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5756, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7013550267006656512", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7013550267006656512)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7013550267006656512)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_depuis-quelques-semaines-le-ton-monte-parfois-activity-7013550267006656512-Ld4Y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7013550266134220800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7013550267006656512", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7013550266134220800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "Rboq0LS1JZZSwr6UGEVOOA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGcco5e3bgq2A", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGcco5e3bgq2A", + "artifacts": [ + { + "width": 960, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1672160688444?e=1679529600&v=beta&t=0NtzRPPsLqWL9YK6aCg9nEKkpGSYtL5yXqjRFjLjVYI", + "expiresAt": 1679529600000, + "height": 960 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1672160688455?e=1679529600&v=beta&t=Prf9LxDp9ZwfrAt_t1F6usfb0vIPrSA3vLyVy6_9VK8", + "expiresAt": 1679529600000, + "height": 20 + }, + { + "width": 960, + "fileIdentifyingUrlPathSegment": "1280/0/1672160688455?e=1679529600&v=beta&t=ig8BMsFEz2yhVd0QhrbfdSe_vK-R-Ddf-CC021JdxCw", + "expiresAt": 1679529600000, + "height": 960 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1672160688455?e=1679529600&v=beta&t=ZBymUF-uC8cOMq9iNFut2_3R-nxZ9oZ-ouWr3u51uZU", + "expiresAt": 1679529600000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1672160688455?e=1679529600&v=beta&t=IfdWrERVd7psbdid9rQ8wKLCPNoxU9jONS1hCl9inKg", + "expiresAt": 1679529600000, + "height": 160 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1672160688455?e=1679529600&v=beta&t=si7Z51ZRrGS7HBxMDxLAEo5cinJIpf06UhK6T92_JBU", + "expiresAt": 1679529600000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGcco5e3bgq2A/feedshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "text, engineering drawing, calendar" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7013550266134220800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis quelques semaines, le ton monte parfois sur ce r\u00e9seau \u00e0 propos de certaines de mes prises de position. Puisque la fin de l'ann\u00e9e (ou plut\u00f4t le d\u00e9but de l'ann\u00e9e nouvelle) c'est le moment des bonnes r\u00e9solutions, je voudrais en proposer quelques unes pour les \u00e9changes qui peuvent avoir lieu sur ce que j'aurais dit ou \u00e9crit. \n\nCela s'applique id\u00e9alement \u00e0 ceux qui me critiquent (un exercice utile pour moi car on ne progresse qu'en \u00e9tant sorti de sa zone de confort), et plus encore \u00e0 ceux qui prennent le clavier pour r\u00e9pondre aux premiers.\n\nEssayez de s\u00e9parer le message du messager. Un argument s'examine au fond, et non en fonction de celui qui l'invoque. Si une personne que je d\u00e9teste cordialement dit que 2 et 2 font 4, il n'a pas tort parce que sa t\u00eate ne me revient pas. C'est seulement une fois que l'on a \u00e9ventuellement fait la preuve d'un raisonnement erron\u00e9 que l'on peut se demander si cela a a un rapport avec la profession - ou une autre caract\u00e9ristique - de la personne qui l'a tenu. \n\nMais ca va dans cet ordre l\u00e0 et pas dans le sens inverse. A titre personnel je n'invoque \u00e0 peu pr\u00e8s jamais la profession de mes \"contradicteurs\" dans un argumentaire (m\u00eame si parfois il me semble \u00e9vident qu'elle explique la motivation).\n\nEssayez de rester courtois. L'agressivit\u00e9 - ou pire, l'insulte ou la calomnie - clarifient rarement le d\u00e9bat. Les \u00e9changes \u00e9tant publics, on s'adresse autant \u00e0 son contradicteur qu'\u00e0 toutes les personnes qui vont lire l'\u00e9change, et ces derni\u00e8res apprendront plus avec des argumentaires pos\u00e9s qu'avec des invectives. Linkedin n'est normalement ni un pr\u00e9toire ni un plateau de t\u00e9l\u00e9vision !\n\nNe faites pas dire \u00e0 votre opposant ce qu'il ne dit pas. Le proc\u00e9d\u00e9 qui consiste par commencer \u00e0 d\u00e9former ce que dit l'adversaire pour ensuite mieux le combattre est malheureusement assez r\u00e9pandu, mais dans le d\u00e9bat d'id\u00e9es il va assez souvent se retourner t\u00f4t ou tard contre celui ou celle qui l'emploie. \n\nD\u00e9battre prend du temps. Mieux vaut s'abstenir de r\u00e9pondre que de le faire de mani\u00e8re inappropri\u00e9e faute de temps pour mettre son raisonnement en forme.\n\nDans le m\u00eame esprit, il arrive malheureusement que, avec certaines personnes, il soit impossible de sortir du dialogue de sourds (on revient encore et encore sur les m\u00eames arguments alors que l'on y a r\u00e9pondu N fois). A ce moment il faut savoir qu'\u00e0 l'impossible nul n'est tenu et la meilleure des choses \u00e0 faire est d'arr\u00eater l'\u00e9change.\n\nIl est essentiel qu'en d\u00e9mocratie il y ait confrontation d'id\u00e9es. C'est comme cela que l'on finit par avoir de la convergence (n\u00e9cessaire pour d\u00e9gager des majorit\u00e9s). Mais quand la forme employ\u00e9e aboutit \u00e0 des crispations dures, on s'\u00e9loigne en fait de l'objectif que l'on voulait atteindre (converger). Donc autant l'\u00e9viter, et ce d'autant plus que l'on parle d'un sujet essentiel !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7013550266134220800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7013550267006656512,urn:li:activity:7013550267006656512,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 420, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7013550267006656512,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7013550267006656512,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7013550267006656512", + "threadId": "activity:7013550267006656512", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013550267006656512", + "urn": "urn:li:activity:7013550267006656512", + "numComments": 794, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Valentin Derouet" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7013550267006656512", + "reactionTypeCounts": [ + { + "count": 9279, + "reactionType": "LIKE" + }, + { + "count": 1102, + "reactionType": "PRAISE" + }, + { + "count": 605, + "reactionType": "APPRECIATION" + }, + { + "count": 240, + "reactionType": "EMPATHY" + }, + { + "count": 46, + "reactionType": "INTEREST" + }, + { + "count": 45, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7013550267006656512", + "numLikes": 11317, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013550267006656512", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 11357, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7013230316441976832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7013230316441976832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7013230316441976832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cest-moins-anxiog%C3%A8ne-ces-artisans-qui-activity-7013230316441976832-Qt4-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7013230315577987072", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7013230316441976832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7013230315577987072", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "0z0w9rB4GPM7f0bP+bgkfw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7556560582917123471", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1675845426153?e=1677240000&v=beta&t=oNLpL8088oAYF6YxfWfF8M0syn20v2OmcQJ2aXqKKpw", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675845426153?e=1677240000&v=beta&t=m3tnF3kR4XdDydxNSM87HZEM773bRTckF_vtQUepHRA", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675845426153?e=1677240000&v=beta&t=12mKmqaSrbNsu1SV7k18Ogg8zPFMoJB1A96JldsNtR0", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675845426153?e=1677240000&v=beta&t=52TPCIY5Pgr_4ogh6g3kXv8XE0LNpSnYq72DRhMtfmc", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHbBuUiBMkX6Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le v\u00e9lo cargo d\u00e9livre en centre-ville 60% plus rapidement que celle d'une camionnette diesel selon l'\u00e9tude \u00abThe Promise of LowCarbon Freight\u00bb." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7556560582917123471)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7556560582917123471)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lefigaro.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00abC'est moins anxiog\u00e8ne\u00bb : ces artisans qui font le choix de se d\u00e9placer en v\u00e9lo-cargo by lefigaro.fr", + "actionTarget": "https://www.lefigaro.fr/societes/c-est-moins-anxiogene-ces-artisans-qui-font-le-choix-de-se-deplacer-en-velo-cargo-20221223" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00abC'est moins anxiog\u00e8ne\u00bb : ces artisans qui font le choix de se d\u00e9placer en v\u00e9lo-cargo" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7013230315577987072,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Moins cher, plus rapide en ville, et \u00e9videmment beaucoup plus bas carbone que la camionnette, m\u00eame \u00e9lectrique : le v\u00e9lo-cargo pointe de plus en plus le bout de sa roue en univers urbain (ou de sa p\u00e9dale).\n\nMoins cher \u00e0 l'achat, le v\u00e9lo cargo l'est presque d'un facteur 5 \u00e0 10 si l'on compare son prix neuf avec celui d'un v\u00e9hicule de type Kangoo (thermique ou \u00e9lectrique) neuf. Mais, avec une consommation de l'ordre de 10 Wh par km, il l'est aussi \u00e0 l'usage : face \u00e0 un v\u00e9hicule thermique il n'y a pas photo (6 litres de p\u00e9trole aux 100 km = 600 Wh de p\u00e9trole par km), et m\u00eame face \u00e0 une camionnette \u00e9lectrique il y a plus d'un facteur 10.\n\nSon bilan carbone est aussi consid\u00e9rablement plus faible : \n- la batterie \u00e9tant 100 fois plus petite (0,5 kWh contre 50 en gros) ses \u00e9missions de fabrication le sont aussi \n- le poids \u00e9tant 20 fois plus faible (50 kg contre 1000 kg) les \u00e9missions de fabrication du v\u00e9hicule hors batterie sont en proportion identique.\n\nM\u00eame dans un pays produisant toute son \u00e9lectricit\u00e9 au charbon, passer d'une camionnette thermique \u00e0 un v\u00e9lo cargo divise les \u00e9missions de livraison par un facteur de plusieurs dizaines.\n\nEnfin, en ville, il est plus rapide qu'une camionnette. Cette fois ci c'est l'espace au sol qui lui procure son avantage : les bouchons ont moins de prise !\n\nAjoutons que c'est aussi moins bruyant, et engendre tr\u00e8s peu de pollution locale (les particules des freins et des pneus essentiellement).\n\nPour autant il n'est pas difficile de voir que l'essentiel de ce qui circule en ville (du moins en Occident) reste actionn\u00e9 par un moteur thermique. A l'\u00e9vidence le v\u00e9lo cargo ne peut pas rivaliser sur tous les plans (un r\u00e9servoir avec le plein d'essence procure une bien plus grande autonomie qu'une batterie charg\u00e9e de v\u00e9lo \u00e9lectrique), et par ailleurs les moyens de transport sont toujours dimensionn\u00e9s \u00e0 leur usage de pointe et la charge utile maximale d'une camionnette reste sup\u00e9rieure \u00e0 ce que peut transporter ce genre de v\u00e9hicule. Mais cela ne s'applique pas tout le temps, puisque quelques intr\u00e9pides \"basculent\" !\n \nLe t\u00e9moignage d'une des personnes interrog\u00e9es dans cet article indique qu'il a opt\u00e9 pour ce mode de transport \u00e0 la suite d'une panne de son v\u00e9hicule pr\u00e9c\u00e9dent. Il n'est probablement pas le seul qui ait opt\u00e9 pour le v\u00e9lo (cargo ou pas) contraint au d\u00e9but, par choix ensuite. Comme on disait dans une vieille pub, l'essayer c'est apparemment souvent l'adopter.\n\nPeut-\u00eatre que l'on pourrait imaginer que dans le cadre de toute formation d'artisan il y ait de mani\u00e8re obligatoire l'essai de ce genre de v\u00e9hicule :) ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7013230315577987072,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7013230316441976832,urn:li:activity:7013230316441976832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 269, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7013230316441976832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7013230316441976832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7013230316441976832", + "threadId": "activity:7013230316441976832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013230316441976832", + "urn": "urn:li:activity:7013230316441976832", + "numComments": 674, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7013230316441976832", + "reactionTypeCounts": [ + { + "count": 2967, + "reactionType": "LIKE" + }, + { + "count": 120, + "reactionType": "PRAISE" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 79, + "reactionType": "MAYBE" + }, + { + "count": 61, + "reactionType": "EMPATHY" + }, + { + "count": 39, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7013230316441976832", + "numLikes": 3369, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013230316441976832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3373, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7012438021207654401", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7012438021207654401)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7012438021207654401)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_no%C3%ABl-2022-quelles-sont-les-%C3%A9missions-de-activity-7012438021207654401-BLYG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7012438020716929024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7012438021207654401", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7012438020716929024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "UMW6eLM+ib0x3jFtnehidA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9204072766123965787", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675523063047?e=1677240000&v=beta&t=nHBLLK6hJcw6DTId6ssgI1ZdOeEcjuRuaBFYuWqI6Co", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675523063047?e=1677240000&v=beta&t=jbGlBwzMe6801mfgt6ChUL4OCBtFPC0GTbIDXVg2G_o", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675523063047?e=1677240000&v=beta&t=x90-nfvUND7kInpsZj2VTdmdBdAhLkul6mX_GRfH87Q", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675523063047?e=1677240000&v=beta&t=8QKNvlbqXhFVLYl1-XpQ2eOPK2L-TroGVhGDwD_m3E0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEyPLv-QqAtBg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9204072766123965787)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9204072766123965787)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: No\u00ebl 2022 : quelles sont les \u00e9missions de gaz \u00e0 effet de serre particuli\u00e8res en cette p\u00e9riode de f\u00eate ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900218075-noel-2022-quelles-sont-les-emissions-de-gaz-a-effet-de-serre-particulieres-en-cette-periode-de-fete" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "No\u00ebl 2022 : quelles sont les \u00e9missions de gaz \u00e0 effet de serre particuli\u00e8res en cette p\u00e9riode de f\u00eate ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7012438020716929024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Sapin en plastique artificiel r\u00e9utilisable ou sapin naturel qui ne l'est pas ? C'\u00e9tait traditionnellement la question de la rubrique \u00e9colo sur les radios dans les jours et semaines pr\u00e9c\u00e9dant Noel.\n\nEn fait, cette question est l'arbre qui cache la for\u00eat. Car dans les \u00e9missions de gaz \u00e0 effet de serre associ\u00e9es \u00e0 cette f\u00eate de fin d'ann\u00e9e, les gros morceaux sont ailleurs, et principalement dans les postes suivants :\n- les cadeaux\n- les d\u00e9placements pour se retrouver en famille\n- et apr\u00e8s on va trouver la nourriture (car entre le fois gras et le chapon, c'est rarement un repas pauvre en produits animaux).\n\nDans cette chronique je n'ai pas mentionn\u00e9 les logements secondaires chauff\u00e9s, qui ne sont pas propres \u00e0 Noel, mais concernent toutes les vacances d'hiver, cependant c'est aussi un poste qui va peser quelque chose dans l'ensemble.\n\nFaut-il se priver de tout pour \u00eatre \u00e9colo alors ? Cet exemple illustre lui aussi que d'\u00eatre heureux dans un monde de limites va nous demander un peu de cr\u00e9ativit\u00e9 et des normes sociales qui changent. \n\nIl y a quand m\u00eame une bonne nouvelle dans l'ensemble : \u00e0 condition de ne pas incin\u00e9rer les coquilles ensuite (sinon le CO2 est rel\u00e2ch\u00e9 dans l'air), manger des huitres ne r\u00e9chauffe quasiment pas le climat. En effet le calcaire des coquilles n'est rien d'autre que du carbone atmosph\u00e9rique s\u00e9questr\u00e9 par le m\u00e9tabolisme des petites b\u00eates. \n\n1 kg de coquilles d'huitres contient 450 grammes de CO2. C'est beaucoup plus que les \u00e9missions de son transport depuis le lieu d'\u00e9levage. Il faut certes ajouter les \u00e9missions de l'exploitation ostr\u00e9icole, mais c'est tr\u00e8s certainement la prot\u00e9ine la plus bas carbone du r\u00e9veillon. Et la nuit sera plus calme apr\u00e8s une douzaine d'huitre qu'apr\u00e8s une douzaine de dindes aux marrons !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7012438020716929024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7012438021207654401,urn:li:activity:7012438021207654401,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 93, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7012438021207654401,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7012438021207654401,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7012438021207654401", + "threadId": "activity:7012438021207654401", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012438021207654401", + "urn": "urn:li:activity:7012438021207654401", + "numComments": 156, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7012438021207654401", + "reactionTypeCounts": [ + { + "count": 1320, + "reactionType": "LIKE" + }, + { + "count": 98, + "reactionType": "INTEREST" + }, + { + "count": 36, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "EMPATHY" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7012438021207654401", + "numLikes": 1506, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012438021207654401", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1598, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7012013351413121024", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7012013351413121024)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7012013351413121024)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_souverainet%C3%A9-et-ind%C3%A9pendance-%C3%A9nerg%C3%A9tique-activity-7012013351413121024-O4Qb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7012013350385500161", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7012013351413121024", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7012013350385500161", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "+CQSlayAB6y5KDWNrymdCA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7036454563543430667", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675423596080?e=1677240000&v=beta&t=p9xbqpJ-c1Cz-XgTW4S91ELWetQ-IS-F-7-nTsUrLLI", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675423596080?e=1677240000&v=beta&t=R8G-Q8_0ACC_Z2zV5ta7zRPwsnKJPepmXlXEJdzkzEg", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675423596080?e=1677240000&v=beta&t=MAGbW2dYoxqPb8V-njj9Pfsfd5c_EoKfXKLR3IqyM8s", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675423596080?e=1677240000&v=beta&t=JSO513tt_3CQ5tBRuqd7Xq18vizRPwTunMf2DCmkKUo", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGJBWYjNebuuQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7036454563543430667)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7036454563543430667)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "videos.assemblee-nationale.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Fran\u00e7ois Brottes, Conseiller-ma\u00eetre \u00e0 la Cour des comptes ; M. Jean-Bernard L\u00e9vy, ancien pr\u00e9sident-directeur g\u00e9n\u00e9ral de EDF - Mercredi 14 d\u00e9cembre 2022 on videos.assemblee-nationale.fr", + "actionTarget": "https://videos.assemblee-nationale.fr/video.12647058_6399f0a907461.souverainete-et-independance-energetique-de-la-france--m-francois-brottes-conseiller-maitre-a-la--14-decembre-2022" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "- \u00c0 17 heures : - Audition, ouverte \u00e0 la presse, de M. Fran\u00e7ois Brottes, Conseiller-ma\u00eetre \u00e0 la Cour des comptes, ancien Pr\u00e9sident du directoire de R\u00e9seau de transport d\u2019\u00e9lectricit\u00e9 (RTE), ancien D\u00e9put\u00e9 - \u00c0 18 heures 30 : - Audition, ouverte \u00e0 la..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Fran\u00e7ois Brottes, Conseiller-ma\u00eetre \u00e0 la Cour des comptes ; M. Jean-Bernard L\u00e9vy, ancien pr\u00e9sident-directeur g\u00e9n\u00e9ral de EDF - Mercredi 14 d\u00e9cembre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7012013350385500161,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Certain(e)s d'entre vous se sont peut-\u00eatre demand\u00e9s un jour d'o\u00f9 sortait l'abaissement de la part du nucl\u00e9aire \u00e0 50% de la production \u00e9lectrique (initialement en 2025 quand Hollande est \u00e9lu pr\u00e9sident, en 2012) figurant dans la Loi de Transition Energ\u00e9tique pour la Croissance Verte de 2015.\n\nCette audition de Fran\u00e7ois Brottes (ancien pr\u00e9sident de la Commission des Affaires Economiques \u00e0 l'Assembl\u00e9e au moment de la discussion et du vote de cette loi, ancien pr\u00e9sident de RTE) donne la r\u00e9ponse. Cet objectif d\u00e9coule uniquement d'un \"jugement de Salomon\" rendu dans l'alliance Verts-PS de 2011, entre ceux qui voulaient un objectif de sortie compl\u00e8te du nucl\u00e9aire, et ceux qui voulaient en garder autant. La n\u00e9gociation a d\u00e9bouch\u00e9 sur ces 50% m\u00e9dians, cens\u00e9s contenter \u00e0 peu pr\u00e8s tout le monde.\n\nMais Brottes dit dans la m\u00eame audition que, devenu pr\u00e9sident de RTE, il n'aura eu de cesse d'expliquer au gouvernement que cet objectif de 50% en 2025, qu'il a fait voter comme artisan de la LTCEV, n'\u00e9tait pas r\u00e9aliste ! Il dit aussi qu'il regrette de ne pas avoir pris l'avis de RTE avant de faire voter la loi... comme quoi de temps en temps \u00e9couter les gens du m\u00e9tier avant de d\u00e9cider plut\u00f4t qu'apr\u00e8s n'est pas n\u00e9cessairement une mauvaise id\u00e9e.\n\nBrottes insiste beaucoup sur le fait que la baisse du nucl\u00e9aire \u00e9tait n\u00e9cessaire pour \"d\u00e9velopper les ENR\", et que cela a \u00e9t\u00e9 \"un succ\u00e8s\". Mais la question ne lui est pas pos\u00e9e de savoir pourquoi taper sur le nucl\u00e9aire \u00e9tait un pr\u00e9requis pour augmenter les ENR, ni pourquoi il \u00e9tait pertinent de remplacer une production \u00e9lectrique sans combustion par une autre, sachant que les \u00e9oliennes et panneaux solaires (et le r\u00e9seau \u00e0 d\u00e9velopper, ce qu'indique aussi Brottes) ne sont ni plus ni moins renouvelables que les centrales nucl\u00e9aires (et pas n\u00e9cessairement moins risqu\u00e9s).\n\nOn apprend aussi qu'un r\u00e9seau avec beaucoup de dispositifs de production r\u00e9partis demande de l'\u00e9lectronique partout, alors que les r\u00e9seaux \u00e9lectriques \"descendants\" et les r\u00e9acteurs nucl\u00e9aires peuvent fonctionner de mani\u00e8re analogique. Personne n'a demand\u00e9 si cela \u00e9tait g\u00eanant ou pas pour la souverainet\u00e9 \u00e9nerg\u00e9tique.\n\nBrottes explique aussi qu'il a \u00e9t\u00e9 \u00e0 l'origine de l'arenh, qui a \u00e9t\u00e9 une mani\u00e8re d'\u00e9viter la scission du parc nucl\u00e9aire entre deux exploitants (autre mani\u00e8re de supprimer le monopole, ce qui \u00e9tait l'objectif europ\u00e9en). \n\nEn fait le mal originel a \u00e9t\u00e9 de faire de l'\u00e9lectricit\u00e9 un produit \"ordinaire\", comme des chaussettes ou des yaourts, devant donc faire l'objet d'un march\u00e9 \"ordinaire\", au passage sans monopole d'aucune sorte. Une fois cette d\u00e9cision prise, il n'y avait que de mauvaises mani\u00e8res de s'en sortir...\n\nDans l'ensemble il faut s'armer de patience pour d\u00e9nicher les faits int\u00e9ressants dans cette audition, assez \"louvoyante\" et o\u00f9 l'absence de r\u00e9ponse claire \u00e0 la question pos\u00e9e est plus la r\u00e8gle que l'exception. Mais la compr\u00e9hension est parfois \u00e0 ce prix !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7012013350385500161,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7012013351413121024,urn:li:activity:7012013351413121024,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7012013351413121024,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7012013351413121024,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7012013351413121024", + "threadId": "activity:7012013351413121024", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012013351413121024", + "urn": "urn:li:activity:7012013351413121024", + "numComments": 205, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7012013351413121024", + "reactionTypeCounts": [ + { + "count": 1085, + "reactionType": "LIKE" + }, + { + "count": 185, + "reactionType": "INTEREST" + }, + { + "count": 142, + "reactionType": "MAYBE" + }, + { + "count": 26, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7012013351413121024", + "numLikes": 1447, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012013351413121024", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1449, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:66641273", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:66641273", + "entityUrn": "urn:li:fs_miniCompany:66641273", + "name": "MyCO2 par Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1594818120745?e=1684972800&v=beta&t=iu0KPu8LLJ9RAfjnT2Ns5LZl33RPKeM9HX6-ZLDA21k", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1594818120745?e=1684972800&v=beta&t=_mCrEcZ-7ykNMvdPjukL2wRv9vwlFKKCFeayuZ86FtM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1594818120745?e=1684972800&v=beta&t=oeC9Hq1Uc2ASP0IP9mQN7GVDE17ikFZ9KCBOFO9D33Y", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQG2GlbS3GKBow/company-logo_" + } + }, + "universalName": "myco2-par-carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:66641273", + "trackingId": "1JSq2PrXS32GgCiL3fJ2eQ==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniCompany": { + "objectUrn": "urn:li:company:66641273", + "entityUrn": "urn:li:fs_miniCompany:66641273", + "name": "MyCO2 par Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1594818120745?e=1684972800&v=beta&t=iu0KPu8LLJ9RAfjnT2Ns5LZl33RPKeM9HX6-ZLDA21k", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1594818120745?e=1684972800&v=beta&t=_mCrEcZ-7ykNMvdPjukL2wRv9vwlFKKCFeayuZ86FtM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1594818120745?e=1684972800&v=beta&t=oeC9Hq1Uc2ASP0IP9mQN7GVDE17ikFZ9KCBOFO9D33Y", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQG2GlbS3GKBow/company-logo_" + } + }, + "universalName": "myco2-par-carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:66641273", + "trackingId": "1JSq2PrXS32GgCiL3fJ2eQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "MyCO2 par Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: MyCO2 par Carbone 4", + "actionTarget": "https://www.linkedin.com/company/myco2-par-carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A66641273" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "28,825 followers" + }, + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:66641273", + "followerCount": 28825, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:66641273", + "following": false, + "trackingUrn": "urn:li:company:66641273" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followCompany" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:7010966247366381569", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7010966247366381569)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7010966247366381569)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/myco2-par-carbone-4_les-statistiques-myco2-nous-avons-activity-7010966247366381569-75z4?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7010966246607192064", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:66641273", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7010966246607192064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "OzzoZcg8tEyYDqhFwHYX6w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQFzjFbp3VZe0g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQFzjFbp3VZe0g", + "artifacts": [ + { + "width": 1080, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1671544609460?e=1679529600&v=beta&t=HN7MObth8zSKWDHOhpWQhIKCAtJoGsXEmWgBDHK0LNo", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1671544609424?e=1679529600&v=beta&t=PLQ2KUCY0Lbtlu-UHVb_LMpB2IXMqQgPDZoJTzr88Bg", + "expiresAt": 1679529600000, + "height": 20 + }, + { + "width": 1080, + "fileIdentifyingUrlPathSegment": "1280/0/1671544609424?e=1679529600&v=beta&t=uf-zSDvZJlRVXc6GFt_mKFtc5KqEHGqt_-gxdxhK3sQ", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1671544609424?e=1679529600&v=beta&t=SItFDRx6lDY3WPEYy1HqROkxGbDhPUQyMzPiVxtYu94", + "expiresAt": 1679529600000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1671544609424?e=1679529600&v=beta&t=PrgPxIql5yVMf21oO0UktYUhxIfDwhFs2eH_i6CZD0w", + "expiresAt": 1679529600000, + "height": 160 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1671544609424?e=1679529600&v=beta&t=0bQ-l63afwzRf7s6bIm-DVpW-p6n8HmXoWdanH69q6Q", + "expiresAt": 1679529600000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQFzjFbp3VZe0g/feedshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7010966246607192064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\ud83d\udc4b\u00a0Les statistiques MyCO2 ! \ud83d\udd22\n\nNous avons l\u2019habitude de demander au d\u00e9but de nos conf\u00e9rences aux participant.e.s comment ils ou elle se situent en termes de connaissance sur le sujet de l\u2019empreinte carbone. \ud83e\udd14\n\nD\u00e9j\u00e0 35 000 personnes sensibilis\u00e9es lors des conf\u00e9rences MyCO2 et nous pouvons d\u00e9j\u00e0 tirer de nombreux et riches enseignements gr\u00e2ce aux statistiques et retours que nous avons suite aux centaines d\u2019ateliers d\u00e9j\u00e0 r\u00e9alis\u00e9s.\n\n\ud83d\udc47\u00a0Quelques chiffres cl\u00e9s \ud83d\udc47\n\n\ud83d\udc49\u00a02 tonnes de CO2eq : c\u2019est la diff\u00e9rence qu\u2019il y a entre l\u2019empreinte carbone d\u2019une personne se disant \u201csans connaissance\u201d \u00e0 une conf\u00e9rence MyCO2 et une personne se disant \u201cbien renseign\u00e9e\u201d (soit une empreinte 20% plus faible).\n\nLa corr\u00e9lation forte qu\u2019il y a entre le niveau de connaissance auquel les participant.e.s s\u2019\u00e9valuent et leur empreinte carbone met en \u00e9vidence le lien puissant qui s\u2019op\u00e8re entre la compr\u00e9hension des enjeux et les comportements quotidiens, entre la connaissance des ordres de grandeur et l\u2019efficacit\u00e9 des actions mises en oeuvre.\n\n\ud83d\udd0e\u00a0La compr\u00e9hension des enjeux physiques et surtout des r\u00e9ponses concr\u00e8tes \u00e0 apporter sont essentielles et surtout efficaces pour faire face au d\u00e9fi commun du changement climatique.\n\n\ud83d\udc49\u00a077% : c\u2019est la part de personnes se disant \u201cnovice\u201d ou \u201csans connaissance\u201d sur le sujet de l\u2019empreinte carbone aux conf\u00e9rences MyCO2 (hors conf\u00e9rences Grand Public). Une grande majorit\u00e9 donc !\n\nPour que le changement soit efficace, il doit \u00eatre collectif et c\u2019est l\u2019objectif de MyCO2 que de s\u2019adresser aux personnes novices sur le sujet afin que l\u2019ensemble de la soci\u00e9t\u00e9 puisse s\u2019emparer de la lutte contre le changement climatique d\u00e8s la fin de la conf\u00e9rence !\n\nSi les pouvoirs publics et les entreprises doivent urgemment s\u2019emparer de la transition \u00e9cologique, celle-ci ne pourra se faire sans une implication et une acceptation forte de la soci\u00e9t\u00e9 civile et des individus eux-m\u00eames.\n\n\u23ec\u00a0Ci-dessous une infographie r\u00e9sumant les principaux chiffres issus des conf\u00e9rences MyCO2 ! \u23ec\n\nD\u2019autres sont \u00e0 venir en 2023, nous les analyserons gr\u00e2ce \u00e0 notre partenariat avec le Laboratoire de Neurosciences Cognitives Computationnelles sous la tutelle de ENS !\n\n\ud83d\udc49\u00a0Vous n\u2019avez pas encore particip\u00e9 \u00e0 une conf\u00e9rence MyCO2 ? Inscrivez-vous \u00e0 notre prochaine conf\u00e9rence grand public gratuite en cliquant ici : https://lnkd.in/eC4d4aSC\n\n\u27a1\ufe0f\u00a0Pour organiser une conf\u00e9rence dans votre structure (entreprise, association\u2026), vous pouvez nous contacter \u00e0 l\u2019adresse myco2@carbone4.com." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7010966246607192064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7010966247366381569,urn:li:activity:7010966247366381569,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7010966247366381569,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7010966247366381569,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7010966247366381569", + "threadId": "activity:7010966247366381569", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010966247366381569", + "urn": "urn:li:activity:7010966247366381569", + "numComments": 47, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7010966247366381569", + "reactionTypeCounts": [ + { + "count": 608, + "reactionType": "LIKE" + }, + { + "count": 72, + "reactionType": "INTEREST" + }, + { + "count": 60, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "EMPATHY" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7010966247366381569", + "numLikes": 771, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010966247366381569", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 771, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:7011460603802230784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7011460603802230784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7011460603802230784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-statistiques-myco2-nous-avons-activity-7011460603802230784-_dhv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7011460603047223296", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7011460603802230784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7011460603047223296", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "OzzoZcg8tEyYDqhFwHYX6w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7011460603047223296,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis maintenant presque 2 ans, Carbone 4 propose aux particuliers (gratuitement) et entreprises (en payant ; \u00e0 un moment il faut bien que quelqu'un paye !) un calculateur d'empreinte carbone personnel un peu particulier, MyCO2 (http://www.myco2.fr). \n\nIl est un peu particulier parce que ce calculateur ne peut pas s'utiliser seul. Il faut n\u00e9cessairement participer \u00e0 une d\u00e9couverte collective, une esp\u00e8ce de carboniques anonymes :), au cours d'une \"conf\u00e9rence interactive\". La raison est que l'effet de groupe lib\u00e8re du stress et favorise le passage \u00e0 l'action (ce qui est bien le but). Et l'interactivit\u00e9 permet aux personnes faisant le calcul de poser toutes sortes de questions sur les modalit\u00e9s de ce dernier.\n\nLors de ces conf\u00e9rences interactives, il est possible de collecter quelques informations (non nominatives \u00e9videmment) sur les participant(e)s. La premi\u00e8re est \u00e9videmment le r\u00e9sultat (combien chaque participant \"p\u00e8se\" en carbone). Mais il y a \u00e9galement la r\u00e9ponse \u00e0 quelques questions pos\u00e9es au d\u00e9but de l'exercice. Et notamment celle-ci : \"comment \u00e9valuez vous votre degr\u00e9 de connaissances sur le changement climatique ?\".\n\nEt le r\u00e9sultat, qui figure ci-dessous, est tr\u00e8s int\u00e9ressant : plus les gens d\u00e9clarent en savoir long sur l'enjeu, plus leur empreinte carbone est basse. Dit autrement, il y a une corr\u00e9lation entre degr\u00e9 de connaissance et action. Comme il est peu probable que l'action ait pr\u00e9c\u00e9d\u00e9 la connaissance, le plus vraisemblable est donc l'inverse : avoir compris le probl\u00e8me pousse \u00e0 s'en occuper.\n\nCe n'est donc pas totalement un hasard - et pas juste un effet du radotage du \u00e0 l'\u00e2ge :) - si la bonne compr\u00e9hension des enjeux est de mes chevaux de bataille, notamment pour les gens qui sont \u00e0 des poste de d\u00e9cision. \n\nEn attendant, si vous n'avez pas d'id\u00e9e de cadeau pour No\u00ebl, offrez (ou offrez vous) la d\u00e9couverte de votre empreinte carbone : c'est assur\u00e9ment un cadeau utile !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7011460603047223296,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7011460603802230784,urn:li:activity:7011460603802230784,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 77, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7011460603802230784,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7011460603802230784,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7011460603802230784", + "threadId": "activity:7011460603802230784", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011460603802230784", + "urn": "urn:li:activity:7011460603802230784", + "numComments": 120, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7011460603802230784", + "reactionTypeCounts": [ + { + "count": 1917, + "reactionType": "LIKE" + }, + { + "count": 151, + "reactionType": "INTEREST" + }, + { + "count": 118, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "PRAISE" + }, + { + "count": 30, + "reactionType": "EMPATHY" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7011460603802230784", + "numLikes": 2280, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011460603802230784", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2280, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7011000497289469952", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7011000497289469952)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7011000497289469952)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_like-an-oilwell-in-your-back-yard-irish-activity-7011000497289469952-lBaZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7011000496417034240", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7011000497289469952", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7011000496417034240", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "et07kDE/Vp0CBF8+WrC32Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7772741583642015129", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676441404779?e=1677240000&v=beta&t=QJx9XZAll547t87K_KEt7Lf8Jzea6PJeiIhRGb6qwFE", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676441404779?e=1677240000&v=beta&t=hbFF7aYHt5jhWRcJnyFFjEkCy1eYUHSVWNhWRulTojg", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676441404780?e=1677240000&v=beta&t=te_tL1-1td7MbVtc8JxqA_SDSXkbBc3_mL8TDBL2UCE", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676441404780?e=1677240000&v=beta&t=uucskdg6QRLhXARlcijneQFmNi9LEVJbEbrJUQ8o01A", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGMeVBfIZGZbw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7772741583642015129)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7772741583642015129)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u2018Like an oilwell in your back yard\u2019: Irish people turn to cutting peat to save on energy bills by theguardian.com", + "actionTarget": "https://www.theguardian.com/world/2022/dec/12/like-an-oilwell-in-your-back-yard-irish-turn-to-cutting-peat-to-save-on-energy-bills?amp" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u2018Like an oilwell in your back yard\u2019: Irish people turn to cutting peat to save on energy bills" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7011000496417034240,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a 2 si\u00e8cles, l'\u00e9mergence du charbon \"de terre\" en Europe a contribu\u00e9 \u00e0 sauver ce qui restait des for\u00eats. A cette \u00e9poque, tout terrain de plaine ou \u00e0 peu pr\u00e8s avait \u00e9t\u00e9 d\u00e9frich\u00e9 pour faire place aux cultures, mais il restait des for\u00eats situ\u00e9es sur des terrains trop pauvres ou trop accident\u00e9s pour \u00eatre facilement utilis\u00e9s pour l'agriculture. Ces for\u00eats \u00e9taient mises \u00e0 rude \u00e9preuve par l'utilisation croissante du bois par les forges et le chauffage des villes.\n\nDepuis que les combustibles fossiles ont \u00e9t\u00e9 utilis\u00e9s en quantit\u00e9s croissantes, les for\u00eats sont partiellement revenues. D'abord la pression sur le bois de feu a baiss\u00e9, ce dernier \u00e9tant remplac\u00e9 d'abord par le charbon (chauffage et cuisson), puis par le gaz pour les m\u00eames usages.\n\nLa productivit\u00e9 \u00e0 l'hectare a fortement augment\u00e9 gr\u00e2ce \u00e0 la m\u00e9canisation et aux intrants (engrais et phytosanitaires), c'est \u00e0 dire gr\u00e2ce au p\u00e9trole et au gaz. Cela permet de produire plus avec moins de surfaces (avec quelques effets de bords sur la biodiversit\u00e9...), et a engendr\u00e9 une \"reprise foresti\u00e8re\" sur d'anciens terrains agricoles ou p\u00e2turages cessant d'\u00eatre exploit\u00e9s.\n\nMais voil\u00e0 : le stress croissant sur les \u00e9nergies fossiles est en train d'inverser la donne. Cet article du Guardian explique que les irlandais reviennent \u00e0 la tourbe (le pire en mati\u00e8re d'\u00e9missions de CO2 par unit\u00e9 d'\u00e9nergie) parce que le gaz et le p\u00e9trole sont plus chers (car moins disponibles), et les allemands au bois (mais ca doit probablement \u00eatre aussi vrai pour les fran\u00e7ais), avec dans ce dernier cas du \"braconnage\", c'est \u00e0 dire des pr\u00e9l\u00e8vements ill\u00e9gaux qui augmentent.\n\nIl \u00e9tait \u00e0 craindre que, au moment o\u00f9 les combustibles fossiles feraient d\u00e9faut, cela ferait revenir la pression sur le bois et la biomasse en g\u00e9n\u00e9ral que charbon, p\u00e9trole et gaz avaient supprim\u00e9. C'est exactement ce que l'on constate actuellement : les m\u00e9nages veulent se chauffer, les voitures rouler, les avions voler,et l'industrie tourner \u00e0 la biomasse, et tout cela est en train de cr\u00e9er une pression croissante sur le vivant.\n\nSi nous voulons garder des for\u00eats dans un contexte de pression climatique croissante et de pression \u00e9nerg\u00e9tique croissante, il va falloir \u00e0 la fois (re)planter les bonnes esp\u00e8ces, bien g\u00e9rer les usages aval pour r\u00e9partir au mieux la ressource rare, et... probablement embaucher quelques gardes forestiers de plus." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7011000496417034240,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7011000497289469952,urn:li:activity:7011000497289469952,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 66, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7011000497289469952,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7011000497289469952,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7011000497289469952", + "threadId": "activity:7011000497289469952", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011000497289469952", + "urn": "urn:li:activity:7011000497289469952", + "numComments": 125, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7011000497289469952", + "reactionTypeCounts": [ + { + "count": 1434, + "reactionType": "LIKE" + }, + { + "count": 236, + "reactionType": "INTEREST" + }, + { + "count": 197, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7011000497289469952", + "numLikes": 1907, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011000497289469952", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1908, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7010689509977653249", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7010689509977653249)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7010689509977653249)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cop15-les-entreprises-incit%C3%A9es-%C3%A0-divulguer-activity-7010689509977653249-f_XO?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7010689509080080384", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7010689509977653249", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7010689509080080384", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "OfHvtjRQvtsmXGRn8Sx65w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7320927171555309572", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676619110204?e=1677240000&v=beta&t=CB0gpxrmH1R4SM3nooTIhQ6IzCevzcEjOQh3mRUCUbc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676619110204?e=1677240000&v=beta&t=dsQuT7hytRLXEKEk1L7I0RuEI42KTOvIABGlKYx2YYc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676619110204?e=1677240000&v=beta&t=AjmCmkJuthef54rsxN4KxYxKRRsBeynKqsoDHkB3z1Y", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676619110204?e=1677240000&v=beta&t=3SOOR8Ld7tkJ9GZ_vvJkSpMn1l-Jm0MWIWX7P0sdeA8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEfmciC_NDtuQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7320927171555309572)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7320927171555309572)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: COP15 : les entreprises incit\u00e9es \u00e0 divulguer leur impact sur la biodiversit\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/enjeux-internationaux/cop15-les-entreprises-incitees-a-divulguer-leur-impact-sur-la-biodiversite-1890665" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "COP15\u00a0: les entreprises incit\u00e9es \u00e0 divulguer leur impact sur la biodiversit\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7010689509080080384,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Fin du monde contre fin du mois : l'agenda pr\u00e9sidentiel a factuellement pench\u00e9 du deuxi\u00e8me c\u00f4t\u00e9 pendant la semaine qui vient de s'\u00e9couler. La pr\u00e9servation contre la fin du monde - comprendre la d\u00e9fense de la biodiversit\u00e9 - n'aura justifi\u00e9 aucun d\u00e9placement de haut niveau pour soutenir les n\u00e9gociateurs fran\u00e7ais et europ\u00e9ens, pourtant cr\u00e9dit\u00e9s du succ\u00e8s obtenu au Canada par notre premier magistrat sur ce r\u00e9seau (https://bit.ly/3FDV9P2 ). \n\nLe Qatar et le foot (\u00e0 moins que ce ne soient le foot et le Qatar) auront donc vu deux fois les roues de l'avion pr\u00e9sidentiel (dont Sud Ouest a \u00e9valu\u00e9 l'empreinte carbone : https://bit.ly/3Webuky ) en une semaine, la cote de popularit\u00e9 et le gaz ayant manifestement des charmes que les papillons et coraux n'ont pas.\n\nPourtant, si l'on replace les choses dans le bon ordre, sur une plan\u00e8te sans esp\u00e8ces v\u00e9g\u00e9tales et animales (c'est cela la biodiversit\u00e9), il va \u00eatre un peu difficile d'organiser des tournois de foot... et tout aussi difficile de faire tourner une \u00e9conomie. Incidemment, l'article des Echos ci-dessous contient la phrase \"Il faut rappeler que\u00a0plus de la moiti\u00e9 du PIB mondial est tributaire de la biodiversit\u00e9 et de ses services.\". Objection votre honneur : c'est 100% puisque sans esp\u00e8ces animales et v\u00e9g\u00e9tales il n'y a plus d'humanit\u00e9 et plus de PIB du tout !\n\nLa presse qualifie cet accord de succ\u00e8s parce que les aires prot\u00e9g\u00e9es doivent monter \u00e0 30% de la surface terrestre. Mais la vraie victoire, elle sera \u00e0 chercher, ou pas, dans les r\u00e9glementations nationales - ou \u00e9ventuellement les accords commerciaux - qui imposeront des obligations concr\u00e8tes aux acteurs domestiques. \n\nCar on peut appeler \"prot\u00e9g\u00e9e\" une zone qui en pratique ne l'est pas (par exemple une aire marine prot\u00e9g\u00e9e qui est chalut\u00e9e comme si elle ne l'\u00e9tait pas), ou encore cr\u00e9er une r\u00e9serve avec 3 gardes et demi pour des milliers de km2, qui restent en pratique soumis aux m\u00eames pressions qu'avant ou presque.\n\nLes obligations de transparence cr\u00e9\u00e9es pour les entreprises sont une \u00e9tape bienvenue, mais le Diable sera aussi dans les d\u00e9tails. Pour le moment, les m\u00e9thodes sont \u00e9mergentes (nous le savons \u00e0 Carbone 4 pour travailler dessus !), et les moyens allou\u00e9s par les acteurs \u00e9conomiques pour \"bien compter\" les pressions environnementales (biodiversit\u00e9 ou climat) restent bien plus faibles que pour les euros. On peut aller en prison quand on compte l'argent de travers (fraude fiscale, comptabilit\u00e9 non tenue, etc), mais c'est rarement le cas quand on compte le CO2 ou la biodiversit\u00e9 de travers !\n\nLe vrai s\u00e9rieux des pays ratificataires se mesurera donc \u00e0 l'aune de ce qu'ils seront capables d'imposer \u00e0 leurs acteurs domestiques. Pour la biodiversit\u00e9, comme pour le climat, il va falloir y consacrer un peu plus de temps que celui de simples f\u00e9licitations adress\u00e9es entre deux avions pour aller voir un match." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7010689509080080384,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7010689509977653249,urn:li:activity:7010689509977653249,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 92, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7010689509977653249,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7010689509977653249,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7010689509977653249", + "threadId": "activity:7010689509977653249", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010689509977653249", + "urn": "urn:li:activity:7010689509977653249", + "numComments": 184, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7010689509977653249", + "reactionTypeCounts": [ + { + "count": 4177, + "reactionType": "LIKE" + }, + { + "count": 238, + "reactionType": "APPRECIATION" + }, + { + "count": 201, + "reactionType": "MAYBE" + }, + { + "count": 151, + "reactionType": "PRAISE" + }, + { + "count": 107, + "reactionType": "INTEREST" + }, + { + "count": 46, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7010689509977653249", + "numLikes": 4920, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010689509977653249", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4921, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7010203411170131968", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7010203411170131968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7010203411170131968)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_executive-summary-coal-2022-analysis-activity-7010203411170131968-THNI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7010203410385752064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7010203411170131968", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7010203410385752064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "b1+sYo2qDtQ1mDh9cpEoXw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8533787876617618175", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676530833333?e=1677240000&v=beta&t=OqEF3547iRFk_rZ0ROxfc6QhjMobGu_PeYlxXAu8GnU", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676530833333?e=1677240000&v=beta&t=D6zVPesylIe-wCG1VoA1ykCS8f_-eMxSgl_hRSS5CUY", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676530833333?e=1677240000&v=beta&t=kMWM6ZKCd2U0WsDH3SBWOiQ8VGkrdSj75gqASpMTibs", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676530833334?e=1677240000&v=beta&t=h-r8ZWo1sYblEqd_pl-Lm1oX-bPYX152Osaw3TaHKyE", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF8yJBuWzqvvw/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8533787876617618175)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8533787876617618175)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "iea.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Executive summary \u2013 Coal 2022 \u2013 Analysis - IEA by iea.org", + "actionTarget": "https://www.iea.org/reports/coal-2022/executive-summary" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Executive summary \u2013 Coal 2022 \u2013 Analysis - IEA" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7010203410385752064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce n'est pas une bonne nouvelle pour le climat : la consommation mondiale de charbon en 2022 devrait \u00eatre la plus haute depuis le d\u00e9but de l'utilisation de ce combustible. \n\nEn cause, il y a la tr\u00e8s forte hausse du prix du gaz liqu\u00e9fi\u00e9 qui a suivi les troubles en Europe (laquelle devait compenser au mieux par du GNL les importations disparues d'une partie du gaz russe), et qui a conduit \u00e0 un basculement du gaz vers le charbon pour une partie de la production \u00e9lectrique dans le monde. Rappelons qu'environ 2/3 du charbon plan\u00e9taire sert \u00e0 produire de l'\u00e9lectricit\u00e9 (voir https://bit.ly/3uXedCM - qui date un peu mais l'essentiel reste valable - pour avoir un aper\u00e7u de ses usages dans le monde).\n\nL'AIE publie aussi un graphique qui d\u00e9compose la variation de la production \u00e9lectrique dans le monde de 2021 \u00e0 2022. Les deux \"moteurs\" de la hausse de la consommation de charbon dans ce secteur sont la hausse de la consommation \u00e9lectrique tout court et... la baisse du nucl\u00e9aire. \n\nDans un contexte de stress sur l'approvisionnement en gaz (qui \u00e9tait envisageable pour la p\u00e9riode actuelle \u00e0 d\u00e9faut d'\u00eatre certain), l'arr\u00eat des r\u00e9acteurs de nos voisins du Nord a en particulier directement d\u00e9bouch\u00e9 sur une hausse de la pire mani\u00e8re de produire de l'\u00e9lectricit\u00e9 (voir https://bit.ly/3j60iYh ), ce qui se constate assez facilement en ce moment en regardant par exemple la d\u00e9composition de la production \u00e9lectrique disponible sur https://lnkd.in/ecWPwUDV\n\nL'AIE fournit aussi un pronostic d'ici \u00e0 2025. Dans ce dernier, la hausse attendue de la consommation \u00e9lectrique n'est pas assur\u00e9e en totalit\u00e9 par les renouvelables, et il y a aussi un poil d'augmentation de charbon. Certes la hausse est dans l'\u00e9paisseur du trait selon cette projection, mais si ce combustible solide suivait le chemin demand\u00e9 par la \"trajectoire 2\u00b0C\" il faudrait que sa consommation baisse de 14% (dans le monde) en 3 ans. \n\nAppliqu\u00e9e \u00e0 l'\u00e9lectricit\u00e9, cette baisse signifie 1450 TWh (\u00e9lectriques) de production au charbon en moins en 3 ans (1 TWh = un milliard de kWh). Par ailleurs l'AIE envisage une hausse de la demande \u00e9lectrique de 2500 TWh sur la m\u00eame p\u00e9riode. Pour que l'\u00e9quation soit tenue il faudrait donc 4000 TWh de production non carbon\u00e9e en plus, soit :\n- un doublement de l'hydro\n- ou une multiplication par presque 5 du solaire (qui a augment\u00e9 d'environ 14% par an de 2018 \u00e0 2021)\n- ou une multiplication par 3 de l'\u00e9olien (qui a augment\u00e9 d'environ 10% par an de 2018 \u00e0 2021)\n- ou une multiplication par 2,5 du nucl\u00e9aire (qui est stable de 2018 \u00e0 2021).\n\nM\u00eame en combinant tout cela, on voit le formidable d\u00e9calage entre les discours de d\u00e9carbonation et les actes. Si nous voulons 2\u00b0C, il va surtout falloir consommer moins d'\u00e9lectricit\u00e9 dans le monde...\n\nNB : la photo d'illustration choisie par l'AIE est assez mal venue : il aurait mieux valu montrer une mine ayant remplac\u00e9 la v\u00e9g\u00e9tation, ou un train traversant un paysage dess\u00e9ch\u00e9, cela aurait \u00e9t\u00e9 plus \u00e0 propos ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7010203410385752064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7010203411170131968,urn:li:activity:7010203411170131968,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 99, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7010203411170131968,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7010203411170131968,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7010203411170131968", + "threadId": "activity:7010203411170131968", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010203411170131968", + "urn": "urn:li:activity:7010203411170131968", + "numComments": 190, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7010203411170131968", + "reactionTypeCounts": [ + { + "count": 1309, + "reactionType": "LIKE" + }, + { + "count": 330, + "reactionType": "INTEREST" + }, + { + "count": 300, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7010203411170131968", + "numLikes": 1964, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010203411170131968", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1966, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7009917420706365440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7009917420706365440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7009917420706365440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_entreprises-audacieuses-soutenez-le-shift-activity-7009917420706365440-76OG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7009917419930451969", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7009917420706365440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7009917419930451969", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "vB5DVBh8Bn0uL1nu9qUGIQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7299614099246559126", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675430869943?e=1677240000&v=beta&t=m_h85Ptd4lKTv5NPZARCY0adv4w-azik0xvrjR6v9ao", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675430869943?e=1677240000&v=beta&t=V2X9Ay4pzI4N0CzzeB2292jCgMtGcN2ngvUzdqNii0g", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675430869944?e=1677240000&v=beta&t=p6V4mi778C-WwgNn7VbU2gdm8eGarQyWC9blWstM_dc", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675430869944?e=1677240000&v=beta&t=1AmioKJnSLeBXs61e_Su_q4HLcwfcKPRkHhhwN8QXTY", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHRAzXBsYbayg/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7299614099246559126)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7299614099246559126)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Entreprises audacieuses, soutenez le Shift Project ! by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/shift-appel-entreprises/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Entreprises audacieuses, soutenez le Shift Project !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7009917419930451969,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9cembre, c'est l'\u00e9poque du courrier presque du coeur au P\u00e8re No\u00ebl ! C\u00f4t\u00e9 Shift Project, et m\u00eame si nous savons que les rennes commencent \u00e0 souffrir du r\u00e9chauffement climatique, nous avons aussi un souhait sur le contenu de la hotte. Il s'appelle un(e) chef(fe) d'entreprise militant(e). \n\nPlus pr\u00e9cis\u00e9ment, ce que nous souhaiterions trouver sous le sapin, ce sont des entreprises membres, c'est \u00e0 dire qui adh\u00e8rent \u00e0 l'association et qui versent une cotisation. Cette derni\u00e8re est d'abord bienvenue parce que nous avons en permanence plus d'id\u00e9es que de moyens. Et, quand nous sommes dans une course contre la montre, avoir les moyens de creuser ses id\u00e9es est plus utile avant les ennuis qu'apr\u00e8s !\n\nUne entreprise qui adh\u00e8re c'est aussi un acteur \u00e9conomique de plus qui \"soutient la cause\". Il n'est pas n\u00e9cessaire de soutenir l'int\u00e9gralit\u00e9 de ce que nous faisons ou disons pour adh\u00e9rer : il suffit juste de consid\u00e9rer que notre existence est globalement utile \u00e0 la collectivit\u00e9, sans \u00eatre frontalement antagonistes des activit\u00e9s du membre concern\u00e9.\n\nNous ne cherchons donc pas \u00e0 avoir toute entreprise de ce pays comme membre : juste celles qui ont sinc\u00e8rement envie de nous voir travailler, proposer et exister dans le d\u00e9bat public, parce que c'est leur int\u00e9r\u00eat, ou parce que leurs instances dirigeantes sont profond\u00e9ment convaincues que de toute fa\u00e7on \"nous n'y couperons pas\", et \u00e0 ce moment autant le faire en ayant r\u00e9fl\u00e9chi le plus possible au plan d'ensemble (ce qui est notre ambition).\n\nOn pourra nous reprocher une collusion avec le grand capital. C'est in\u00e9vitable d\u00e8s lors que nous avons choisi une position moins pure que de protester de l'ext\u00e9rieur : nous avons cibl\u00e9 le monde \u00e9conomique, et nous cherchons \u00e0 y mobiliser \"de l'int\u00e9rieur\". C'est moins visible et plus ingrat, mais c'est aussi l\u00e0 que se gagnent une partie des batailles. Nos membres acceptent aussi que nous les asticotions un peu de temps en temps : pour progresser, il faut sortir de sa zone de confort.\n\nOn pourra aussi nous reprocher de ne pas \u00eatre \u00e0 la hauteur de l'enjeu, puisque la situation globale continue \u00e0 \u00e9voluer dans le mauvais sens. Mais, tant qu'il n'y a pas de plan B, il n'y a aucune chance de voir l'\u00e9conomie se r\u00e9orienter : vers quoi le ferait-elle ? Avoir des propositions op\u00e9rationnelles n'est pas suffisant, mais c'est assur\u00e9ment n\u00e9cessaire.\n\nEn 2022, le budget du Shift Project aura \u00e9t\u00e9 de 2 millions. Avec les Shifters, notre force de frappe est multipli\u00e9e par 2 ou 3, mais cela reste faible face aux milliards qui vont, de par le monde, dans la recherche \u00e9conomique \"traditionnelle\", ou aux centaines de milliards qui vont dans la recherche \"purement technologique\", qui ne suffira pas, loin s'en faut, \u00e0 nous faire atterrir en douceur.\n\nSi vous avez le carnet de ch\u00e8ques de votre entreprise, donc, et que vous pensez que quelques cervelles de plus mobilis\u00e9es sur la d\u00e9carbonation ne sont pas de trop, vous savez ce qui nous ferait plaisir sous le sapin !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7009917419930451969,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7009917420706365440,urn:li:activity:7009917420706365440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 56, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7009917420706365440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7009917420706365440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7009917420706365440", + "threadId": "activity:7009917420706365440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009917420706365440", + "urn": "urn:li:activity:7009917420706365440", + "numComments": 147, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7009917420706365440", + "reactionTypeCounts": [ + { + "count": 1848, + "reactionType": "LIKE" + }, + { + "count": 234, + "reactionType": "APPRECIATION" + }, + { + "count": 45, + "reactionType": "EMPATHY" + }, + { + "count": 25, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7009917420706365440", + "numLikes": 2169, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009917420706365440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2170, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7009466059044847616", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7009466059044847616)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7009466059044847616)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_publication-former-une-finance-au-service-activity-7009466059044847616--Tgb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7009466058004692993", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7009466059044847616", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7009466058004692993", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "H+uwPcGj1mORQrd+pGMRcw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7418578237810237887", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676404361478?e=1677240000&v=beta&t=ggVaGavtFimpISphgTljo5T1Q7-bc_3fVtRxWBQdQgo", + "expiresAt": 1677240000000, + "height": 354 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676404361478?e=1677240000&v=beta&t=vTW5uDijW_OKWXGcmqoDHbSpWOduH18IYRhIu4cjuFk", + "expiresAt": 1677240000000, + "height": 361 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676404361478?e=1677240000&v=beta&t=jb---DEVZ3d_-zpPk29aQRoD3RlYDiSOPms4p5yO-L4", + "expiresAt": 1677240000000, + "height": 70 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676404361479?e=1677240000&v=beta&t=htDAq_fW_x8qkoafME6SdV-MReJMDlXj3WEXrTt5la8", + "expiresAt": 1677240000000, + "height": 212 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGERsOAV9mnkA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7418578237810237887)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7418578237810237887)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [Publication] Former une finance au service de la transition by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/climatsup-finance-rapport-final/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[Publication] Former une finance au service de la transition" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7009466058004692993,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 268, + "length": 14, + "miniProfile": { + "firstName": "Bruno", + "lastName": "Le Maire", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "occupation": "Ministre de l\u2019\u00c9conomie, des Finances et de la Souverainet\u00e9 industrielle et num\u00e9rique", + "objectUrn": "urn:li:member:489338904", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1615820384690?e=1681948800&v=beta&t=1lSONwEqNZ6YCfsSa_SSdMyy3lRIBlt7HnIa8FhbD_0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1615820384690?e=1681948800&v=beta&t=mXrkcvswYDvA5nxrWnHwv0uRHbVbSrbb-YTCHNh3hZs", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFtlzemSILDlQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "brunolemaire", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650470576103?e=1681948800&v=beta&t=grYiuKFOw0Vps9r0gskTHNlsABqKydJY1BD9PqrCOZE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650470576103?e=1681948800&v=beta&t=_dq5B-XcARKywCPZ39sHI46v2wiioUaRLXHB6EjQEZA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650470576103?e=1681948800&v=beta&t=hpGqyzWjIXtO01PmwOzhVATdVIHajDaeNdSiiN6I2KY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650470576103?e=1681948800&v=beta&t=sDT3g5ZnR6kL5Ks0S37qtLS2Z-UNhM119fiXH0t1h8I", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQH2hSTPjrAuKw/profile-displayphoto-shrink_" + } + }, + "trackingId": "jNQvIQr9Sz216IV7IgV84A==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 286, + "length": 27, + "miniProfile": { + "firstName": "Fran\u00e7ois Villeroy", + "lastName": "de Galhau", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAC9b73YBapktRkPFyw1DZFtDGlXkCYd1JCI", + "occupation": "Governor of the Banque de France", + "objectUrn": "urn:li:member:794554230", + "entityUrn": "urn:li:fs_miniProfile:ACoAAC9b73YBapktRkPFyw1DZFtDGlXkCYd1JCI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1649147062675?e=1681948800&v=beta&t=MsbRBiX6P0n7C6hxrlDxYJwS6ieVrOjEfj2KRFU3hh4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1649147062675?e=1681948800&v=beta&t=DcwQYEuVGJzz1tvBJBv2-DXkpufPU_frG7t-VMMsNAU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQEr5GQrsYSKbQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "francois-villeroy", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1616086237471?e=1681948800&v=beta&t=2bcB6ZoXIBdEa4LUkoZS2GM-9SjRon1R_KN31hVLsiI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1616086237471?e=1681948800&v=beta&t=YSle_dAUmLeMv4MynvXNkPyYF0uRoiiRxB1oF1ATgUg", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1616086237471?e=1681948800&v=beta&t=kFX3nSgwWyA3wJNHnRsGEM2QXhDegP89vSd1BRd9eNU", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1616086237471?e=1681948800&v=beta&t=VF9lRNFYP1C72-B7C7iVqwxiX4SPjX4bQKD7_VxwATc", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHXvQJDAmH7dA/profile-displayphoto-shrink_" + } + }, + "trackingId": "GFz5aXp9TRyI2yzBRzMuGg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "D\u00e8s que l'on parle d'argent, cela int\u00e9resse du monde :) : pour la pr\u00e9sentation du rapport du Shift Project sur l'int\u00e9gration des enjeux environnementaux dans la formation des futurs (et actuels) salari\u00e9s du monde financier, avaient fait le d\u00e9placement jusqu'\u00e0 l'amphi Bruno Le Maire et Fran\u00e7ois Villeroy de Galhau, entre autres.\n\nNB : Pour celles et ceux qui n'ont pas regard\u00e9 cette pr\u00e9sentation la vid\u00e9o est disponible sur Facebook : https://lnkd.in/eAWNaJKd (aller directement \u00e0 21 minutes du d\u00e9but, car il y a eu un peu de retard, et avant c'est juste un plan fixe sur l'image ayant servi \u00e0 l'annonce).\n\nLe rapport en question a fait l'objet d'une pr\u00e9sentation synth\u00e9tique, mais vous pouvez d'ores et d\u00e9j\u00e0 le t\u00e9l\u00e9charger sur la page d\u00e9di\u00e9e du site du Shift Project (lien ci-dessous) et voir quelles sont nos propositions pour les futurs employ\u00e9s du grand (et du petit, et parfois public) capital.\n\nDeux chiffres essentiel r\u00e9sument l'avant et apr\u00e8s :\n\n- actuellement, sur 1400 cursus (de formation de futurs \"financiers\") examin\u00e9s, seuls 5% int\u00e8grent les enjeux \u00e9cologiques de mani\u00e8re acceptable dans l'enseignement dispens\u00e9, et c'est essentiellement pour des personnes qui suivent un parcours sp\u00e9cialis\u00e9 dans l'extrafinancier. Ailleurs il n'y a rien, ou quasi.\n\n- pour commencer \u00e0 disposer d'une compr\u00e9hension acceptable des enjeux (changement climatique, biodiversit\u00e9, ressources min\u00e9rales, etc), et de la boite \u00e0 outils pour \"penser syst\u00e8me\" et arbitrer les conflits d'objectifs, il faut compter un peu plus de 150 heures de formation. \n\nComme les \u00e9pisodes pr\u00e9c\u00e9dents pour les ing\u00e9nieurs et les gestionnaires, ce rapport aborde des questions tr\u00e8s pratiques, comme par exemple la formation ou le recrutement des enseignants, la conception d'une maquette p\u00e9dagogique, la question des classements, et plein d'autres aspects concrets auxquels est confront\u00e9 tout responsable d'\u00e9tablissement de bonne volont\u00e9.\n\nIl ne se passe d\u00e9sormais plus un jour sans annonce de verdissement dans le secteur financier. Mais pour passer des d\u00e9clarations aux actes il y a des \u00e9tapes incontournables : \u00eatre capable d'inclure la question environnementale (et en particulier climatique) dans les processus du quotidien, avoir des seuils et des objectifs servis par ces processus, et \u00eatre capable d'arbitrer les conflits d'objectifs qui sont in\u00e9vitables d\u00e8s qu'il y a r\u00e9orientation strat\u00e9gique.\n\nCet ensemble demande notamment (mais pas que) des salari\u00e9s correctement form\u00e9s sur les enjeux et les m\u00e9thodes pour les inclure dans les processus. Ce qui a \u00e9t\u00e9 pr\u00e9sent\u00e9 hier soir n'est donc pas suffisant, mais \u00e0 l'\u00e9vidence c'est n\u00e9cessaire : on peut douter de la cr\u00e9dibilit\u00e9 d'entreprises du secteur financier qui ne se pr\u00e9occuperaient pas de la mont\u00e9e en comp\u00e9tence de l'ensemble de leurs salari\u00e9s (c'est bien l'objet du rapport) et pas juste de leur \u00e9quipe RSE. Au travail !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7009466058004692993,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7009466059044847616,urn:li:activity:7009466059044847616,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 52, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7009466059044847616,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7009466059044847616,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7009466059044847616", + "threadId": "activity:7009466059044847616", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009466059044847616", + "urn": "urn:li:activity:7009466059044847616", + "numComments": 75, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7009466059044847616", + "reactionTypeCounts": [ + { + "count": 863, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 57, + "reactionType": "PRAISE" + }, + { + "count": 37, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7009466059044847616", + "numLikes": 1040, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009466059044847616", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1041, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7009114386082504704", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7009114386082504704)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7009114386082504704)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_crise-%C3%A9nerg%C3%A9tique-leurope-se-pr%C3%A9pare-d%C3%A9j%C3%A0-activity-7009114386082504704-gMq1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7009114385205854208", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7009114386082504704", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7009114385205854208", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "x+2Zg8WuzJ45km8F5rAV3w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7528916263422900654", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676110814399?e=1677240000&v=beta&t=iMYIDP4KBmxF4sHs0X5IXrMrH9JOnheOo-m2n3GhVjQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676110814399?e=1677240000&v=beta&t=26im_LCLEijHzcKAaxsquluLnUasTERrYQp3x3q-WMY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676110814399?e=1677240000&v=beta&t=aPI9FGrnvib74KBBeLKFA8I4lxQf1rRZvnaUE84q1sA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676110814399?e=1677240000&v=beta&t=QLEdgJuTWT968aMcmnIa_lFAOTTMcDajMBTKRehrTxA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHY4iSuylKinw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7528916263422900654)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7528916263422900654)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Crise \u00e9nerg\u00e9tique : l'Europe se pr\u00e9pare d\u00e9j\u00e0 \u00e0 un hiver 2023 tr\u00e8s difficile by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/crise-energetique-leurope-se-prepare-deja-a-un-hiver-2023-tres-difficile-1888396" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Crise \u00e9nerg\u00e9tique\u00a0: l'Europe se pr\u00e9pare d\u00e9j\u00e0 \u00e0 un hiver\u00a02023 tr\u00e8s difficile" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7009114385205854208,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Commission est raccord avec The Shift Project, m\u00eame si c'est pour tirer une forme de signal d'alarme (https://lnkd.in/eVVGtZCc ) : la situation gazi\u00e8re actuelle ne fait qu'annoncer un avenir qui sera probablement de plus en plus compliqu\u00e9 \u00e0 g\u00e9rer, et ce d\u00e8s l'hiver prochain.\n\nLors d'un hiver \"normal\", le gaz utilis\u00e9 provient de deux sources :\n- les stocks qui ont \u00e9t\u00e9 constitu\u00e9s pendant l'\u00e9t\u00e9, \u00e0 un moment o\u00f9 l'approvisionnement (via gazoduc ou GNL) d\u00e9passe la consommation\n- mais aussi du gaz qui continue d'\u00eatre achemin\u00e9 en continu par les m\u00eames moyens.\n\nAvant la guerre en Ukraine, le gaz russe repr\u00e9sentait 40% des approvisionnement de l'Union. D\u00e9sormais Nordstream est hors service (il avait une capacit\u00e9 de 25% de la consommation europ\u00e9enne environ), et seul subsiste l'approvisionnement via le gazoduc qui passe par l'Ukraine... qui est un point d'interrogation. On peut tr\u00e8s bien imaginer que d\u00e8s que les russes auront r\u00e9alis\u00e9 les infrastructures physiques leur permettant de commercer avec la Chine, cet approvisionnement l\u00e0 aussi puisse baisser ou dispara\u00eetre (car il permet aussi aux ukrainiens d'avoir du gaz).\n\nAvant m\u00eame que cette hypoth\u00e8que ne se concr\u00e9tise, la faiblesse de l'approvisionnement \"en continu\" depuis la guerre pourrait obliger les europ\u00e9ens \u00e0 compl\u00e8tement vider les stocks pour passer l'hiver, et cette m\u00eame faiblesse nous emp\u00eacher de disposer d'assez de gaz pou faire face \u00e0 la demande l'hiver prochain.\n\nIncidemment cette faiblesse de l'approvisionnement en gaz devrait maintenir des prix de march\u00e9 \u00e9lev\u00e9s, et, \u00e0 \"market design\" identique sur l'\u00e9lectricit\u00e9, maintenir des prix tr\u00e8s \u00e9lev\u00e9s pour l'\u00e9lectricit\u00e9 europ\u00e9enne.\n\nFace \u00e0 cela, les mesures palliatives sur l'offre sont lentes : plus d'ENR (ou de nucl\u00e9aire) demande du temps, outre que les ENR \u00e9lectriques non pilotables concourent peu \u00e0 la s\u00e9curit\u00e9 d'approvisionnement (il suffit de regarder https://lnkd.in/eRvA7w-a depuis une semaine pour voir que l'Allemagne - et nous via importations pour une petite partie - tourne fortement au charbon parce qu'il y a peu de soleil et peu de vent depuis une semaine). \n\nLes mesures \"purement techniques\" sur la demande sont aussi lentes \u00e0 mettre en place : on ne peut pas multiplier par 10 le nombre d'op\u00e9rations lourdes de r\u00e9novation des b\u00e2timents \"comme cela\".\n\nSi la baisse est significative, il y a donc fort \u00e0 parier que ce sont des \"mesures rapides\" sur la demande qui vont devoir faire le job (car de fait on ne peut pas consommer un gaz qui n'existe pas !). Baisse du thermostat, de la consommation \u00e9lectrique et de la production industrielle sont donc \u00e0 envisager. Il faut malheureusement aussi se pr\u00e9parer \u00e0 cela." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7009114385205854208,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7009114386082504704,urn:li:activity:7009114386082504704,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7009114386082504704,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7009114386082504704,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7009114386082504704", + "threadId": "activity:7009114386082504704", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009114386082504704", + "urn": "urn:li:activity:7009114386082504704", + "numComments": 117, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7009114386082504704", + "reactionTypeCounts": [ + { + "count": 751, + "reactionType": "LIKE" + }, + { + "count": 170, + "reactionType": "INTEREST" + }, + { + "count": 140, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7009114386082504704", + "numLikes": 1069, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009114386082504704", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1069, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7008752503869554688", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7008752503869554688)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7008752503869554688)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lunion-europ%C3%A9enne-instaure-la-premi%C3%A8re-taxe-activity-7008752503869554688-Ptv2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7008752502338650112", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7008752503869554688", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7008752502338650112", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "cRnJZ9xe6jYG4GS7GoBJow==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7495116679254268835", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675940365622?e=1677240000&v=beta&t=5tzIuc2O4zjPw3q30H9c-MTxNCZ3mw3Pmh4sbFDiZNM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675940365622?e=1677240000&v=beta&t=YHYkXuI2AyJz_ZibrFCXYgx2cnWzyi8Z4katx4D3JXY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675940365622?e=1677240000&v=beta&t=OEJja4MPtkeDK59yKWGBXiyibDbWbKD6GhOMiZzVtgM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675940365623?e=1677240000&v=beta&t=HuPrAXYSTqKU0a4_mB7nU1NQ0j1RYvF8r47YBYYfG0Q", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE2Fqr-9jW6fg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7495116679254268835)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7495116679254268835)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'Union europ\u00e9enne instaure la premi\u00e8re taxe carbone aux fronti\u00e8res au monde by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/climat-le-parlement-europeen-adopte-la-taxe-carbone-aux-frontieres-1888558" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'Union europ\u00e9enne instaure la premi\u00e8re taxe carbone aux fronti\u00e8res au monde" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7008752502338650112,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Union europ\u00e9enne vient de se doter d'un m\u00e9canisme pour prot\u00e9ger les industriels du continent contre leurs comp\u00e9titeurs \u00e9trangers qui n'ont pas \u00e0 payer pour leurs \u00e9missions de gaz \u00e0 effet de serre. Cette mesure est r\u00e9clam\u00e9e depuis longtemps par les milieux \u00e9conomiques au motif - l\u00e9gitime dans son principe - que, pour des produits soumis \u00e0 la concurrence internationale, payer pour le CO2 rench\u00e9rit les couts face \u00e0 la concurrence.\n\nIl y a certes quelques secteurs qui crient un peu fort avant m\u00eame d'avoir mal. Par exemple le ciment voyage peu, et les \u00e9changes internationaux sont faibles. Mais pour d'autres produits de base - et a fortiori manufactur\u00e9s - c'est plut\u00f4t la r\u00e8gle. L'intention europ\u00e9enne est donc pertinente.\n\nRevenons un peu sur les quotas : ils sont attribu\u00e9s site par site (et non par entreprise) pour un peu plus de 10.000 sites tr\u00e8s \u00e9missifs (centrales \u00e9lectriques, cimenteries, aci\u00e9ries, etc). \n\nDepuis 2013 la les quotas sont vendus aux ench\u00e8res. En d\u00e9but de p\u00e9riode (car les quotas sont valables pour une p\u00e9riode de quelques ann\u00e9es), la Commission permet \u00e0 chaque site concern\u00e9 de se procurer des autorisations administratives d'\u00e9mettre (appel\u00e9es quotas), qui sont payants (vendus aux ench\u00e8res), et disponibles en quantit\u00e9 limit\u00e9 pour un site donn\u00e9 (https://bit.ly/3YlMJ7m ).\n\nC'est donc payant... mais il y a plein de d\u00e9rogations permettant d'avoir ces m\u00eames quotas gratuitement : pour les sites tr\u00e8s expos\u00e9s \u00e0 la concurrence, pour ceux qui se modernisent, etc (https://bit.ly/3hnL28R ).\n\nL'id\u00e9e de cette \"taxe aux fronti\u00e8res\" est justement de pouvoir - entre autres - supprimer ces exceptions parce que les comp\u00e9titeurs internationaux vont aussi devoir payer quelque chose. En pratique l'Europe ne peut pas taxer des usines situ\u00e9es hors de ses fronti\u00e8res : ce sont les importateurs qui vont devoir acheter des quotas. Ce n'est donc pas une taxe carbone \u00e0 proprement parler, \u00e0 savoir un prix fixe par tonne de CO2 \u00e9mise par les industriels qui exportent des produits en Europe.\n\nPour savoir combien de quotas les importateurs vont devoir se procurer, il va donc falloir se mettre d'accord sur un \"contenu en carbone\" par unit\u00e9 de produit import\u00e9e. Il faudra aussi se mettre d'accord sur la source de ces quotas (achet\u00e9s sur le march\u00e9 sans augmentation du volume global de quotas disponibles ? Issus d'une nouvelle enveloppe suppl\u00e9mentaire et vendus aux ench\u00e8res ? Autre ?), et le m\u00e9canisme qui va garantir que le prix moyen \u00e0 la tonne de CO2 pay\u00e9 par l'importateur sera \u00e9quivalent au prix moyen pay\u00e9 par l'industriel europ\u00e9en pour la fabrication du m\u00eame produit (et sur ce dernier point tout n'est pas si simple : une tonne de poutrelle en acier est-elle \u00e9quivalente \u00e0 une tonne de feuille d'acier en rouleau ?).\n\nIl n'emp\u00eache : cette innovation est bienvenue. Rappelons qu'en France, acier, ciment et chimie de base repr\u00e9sentent les 3/4 des \u00e9missions industrielles. Ce syst\u00e8me de compensation aux fronti\u00e8res interagit avec un gros paquet d'\u00e9missions." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7008752502338650112,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7008752503869554688,urn:li:activity:7008752503869554688,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 72, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7008752503869554688,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7008752503869554688,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7008752503869554688", + "threadId": "activity:7008752503869554688", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008752503869554688", + "urn": "urn:li:activity:7008752503869554688", + "numComments": 117, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7008752503869554688", + "reactionTypeCounts": [ + { + "count": 2617, + "reactionType": "LIKE" + }, + { + "count": 252, + "reactionType": "INTEREST" + }, + { + "count": 203, + "reactionType": "MAYBE" + }, + { + "count": 81, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7008752503869554688", + "numLikes": 3189, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008752503869554688", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3190, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7008343783905845248", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7008343783905845248)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7008343783905845248)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_voitures-v%C3%A9los-smartphones-leurope-va-activity-7008343783905845248-Dppi?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7008343783176044544", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7008343783905845248", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7008343783176044544", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "K23EKALDEM6TFqJUqh8Kqw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7482535744954721878", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675761705422?e=1677240000&v=beta&t=Lvz3GK2Mm_4CvcOBUjkoiaQ0iwSlQ76uo5snQdWHaZQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675761705423?e=1677240000&v=beta&t=VVzPaZvmd5Xb8kDngYhyvKAzS4pHfhMDr5AbuBPDLN0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675761705423?e=1677240000&v=beta&t=mJqiNdSpAWu_t00RoXWVbj7fqaaY7TjtVNpQJvjbNJ8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675761705423?e=1677240000&v=beta&t=JgXTHAHa5FbAmCN0k5tLlCc5UU3Y7ZJcNJim-qTfJxc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGQ9Okk73Vr7w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7482535744954721878)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7482535744954721878)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Voitures, v\u00e9los, smartphones : l'Europe va contraindre les industriels \u00e0 verdir leurs batteries by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/voitures-velos-smartphones-leurope-va-contraindre-les-industriels-a-verdir-leurs-batteries-1887966" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Voitures, v\u00e9los, smartphones\u00a0: l'Europe va contraindre les industriels \u00e0 verdir leurs batteries" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7008343783176044544,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans le d\u00e9bat sur la mani\u00e8re de d\u00e9carboner l'industrie europ\u00e9enne, un argument est souvent mis en avant par les adversaires de la taxe carbone : elle cr\u00e9erait une distorsion de concurrence avec les industriels \u00e9trangers, qui n'y seraient pas soumis. \n\nCet argument est de fait souvent recevable (pas toujours : sur les pond\u00e9reux qui voyagent peu, par exemple le ciment, le risque de \"fuites\" aux fronti\u00e8res est limit\u00e9). Il y a une autre mani\u00e8re de faire, que l'Europe vient de d\u00e9cider \u00e0 propos des batteries : limiter l'empreinte carbone d'un produit ou service. \n\nDe fait, pour une voiture \u00e9lectrique, la fabrication de la batterie engendre la moiti\u00e9 des \u00e9missions de fabrication de l'ensemble. Cela n'emp\u00eache pas un v\u00e9hicule \u00e9lectrique d'\u00eatre, sur sa dur\u00e9e de vie, significativement moins \u00e9missif qu'un v\u00e9hicule \u00e0 p\u00e9trole de taille et puissance \u00e9quivalentes pour beaucoup de pays europ\u00e9ens, mais diminuer l'empreinte carbone de la batterie reste un objectif important pour baisser le contenu carbone d'un v\u00e9hicule \u00e9lectrique.\n\nLa l\u00e9gislation europ\u00e9enne qui vient d'\u00eatre d\u00e9cid\u00e9e, dont je confesse ne pas encore avoir regard\u00e9 les d\u00e9tails, est donc pertinente. Il n'\u00e9chappera \u00e0 personne que cette r\u00e9glementation est aussi une arme anti-importation et pro-fili\u00e8re europ\u00e9enne. En effet, la fabrication d'une batterie est un processus assez gourmand en \u00e9lectricit\u00e9 et en \u00e9nergie fossile \"en direct\". Pas juste pour l'assemblage final des packs de cellules (qui est n\u00e9gligeable dans l'ensemble de l'empreinte carbone), mais pour les \u00e9tapes amont : extraction des minerais, raffinage des divers m\u00e9taux (nickel, cobalt, lithium, cuivre), fabrication des principes actifs des composants (anode, cathode, \u00e9lectrolyte), et fabrication des cellules.\n\nPour d\u00e9carboner significativement la fabrication d'une batterie, il faudra donc non seulement des usines d'assemblage (les fameuses \"gigafactories\"), mais surtout rapatrier en Europe - et pr\u00e9f\u00e9rentiellement dans les pays \u00e0 \u00e9lectricit\u00e9 peu carbon\u00e9e, \u00e0 supposer que l'on en ait assez :) - la fraction maximale des \u00e9tapes qui vont juste \u00e0 l'aval de la mine (sachant que la mine sera difficile \u00e0 rapatrier en Europe !) : raffinage des m\u00e9taux, principes actifs, et cellules.\n\nC'est bien ce mouvement que l'Europe cherche \u00e0 enclencher avec le r\u00e8glement europ\u00e9en adopt\u00e9 (rappelons qu'un r\u00e8glement est d'application directe dans les \u00e9tats membres et n'a pas besoin de transposition par les parlements nationaux comme une directive). Reste \u00e0 ce que la physique soit d'accord (pour avoir assez d'\u00e9lectricit\u00e9 d\u00e9carbon\u00e9e pour faire ET des batteries ET de l'hydrog\u00e8ne ET de la mobilit\u00e9 ET alimenter des pompes \u00e0 chaleur ET \u00e9lectrifier d'autres industries...) et que l'industrie soit d'accord pour investir.\n\nIl y aura aussi un d\u00e9bat \u00e0 avoir sur l'usage de ces batteries : avec de quoi \u00e9lectrifier un \"tank \u00e9lectrique\" de plus de 2 tonnes on peut motoriser 200 v\u00e9los \u00e9lectriques. A l'heure de la rar\u00e9faction des ressources ce d\u00e9bat l\u00e0 est aussi essentiel." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7008343783176044544,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7008343783905845248,urn:li:activity:7008343783905845248,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7008343783905845248,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7008343783905845248,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7008343783905845248", + "threadId": "activity:7008343783905845248", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008343783905845248", + "urn": "urn:li:activity:7008343783905845248", + "numComments": 157, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7008343783905845248", + "reactionTypeCounts": [ + { + "count": 1362, + "reactionType": "LIKE" + }, + { + "count": 145, + "reactionType": "INTEREST" + }, + { + "count": 120, + "reactionType": "MAYBE" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7008343783905845248", + "numLikes": 1661, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008343783905845248", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1662, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7008083556673454080", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7008083556673454080)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7008083556673454080)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_invitation-pr%C3%A9sentation-du-rapport-final-activity-7008083556673454080-UFEY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7008083553888423936", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7008083556673454080", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7008083553888423936", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "Nk6OJcPSTRF1NuMPBnfaxw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8690400836592023625", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675988383003?e=1677240000&v=beta&t=ReMEKvevyyAsuLACCgt_7UcLd0pqcGdk1VM7jlh4fLw", + "expiresAt": 1677240000000, + "height": 354 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675988383003?e=1677240000&v=beta&t=rurrLnPvTFcc8tiOTITy2TG6vjXHkkWLQiG_PAZ_1VE", + "expiresAt": 1677240000000, + "height": 361 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675988383004?e=1677240000&v=beta&t=FnuXXdV0Xh0kMWeLs8hXdrenRtvWBYbLTsNkWGZCp9c", + "expiresAt": 1677240000000, + "height": 70 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675988383004?e=1677240000&v=beta&t=9u9tRHXiqsz558OQvTbhG0bzOXi1Wr0WzdmQ0FgqgTM", + "expiresAt": 1677240000000, + "height": 212 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGH-5n4VmAywA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8690400836592023625)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8690400836592023625)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [INVITATION] Pr\u00e9sentation du rapport final \u00ab ClimatSup Finance \u2013 Former pour une finance au service de la transition \u00bb (15 DECEMBRE) - The Shift Project by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-presentation-du-rapport-final-climatsupfinance-15-decembre/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[INVITATION] Pr\u00e9sentation du rapport final \u00ab ClimatSup Finance \u2013\u00a0Former pour une finance au service de la transition \u00bb (15 DECEMBRE) - The Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pourra-t-on un jour avoir une finance \"verte\" ? Un jour viendra peut-\u00eatre o\u00f9 nous aurons le graal d'une performance environnementale et d'une performance financi\u00e8re allant de pair. A ce moment l\u00e0, les financiers pourront faire l'esprit tranquille ce qui est leur m\u00e9tier habituel : maximiser le rendement des capitaux investis pour un risque donn\u00e9, puisque par construction cela minimisera \u00e0 l'occasion le risque environnemental. \n\nPour en arriver l\u00e0, il faut cependant une petite condition aux limites : que l'ensemble des contraintes applicables aux entreprises les poussent dans une direction telle que ce qui est le meilleur pour l'environnement est aussi le plus rentable pour elles (ou le moins \"moins rentable\" !).\n\nMais pour le moment cette convergence n'est pas l\u00e0, comme le rappelle un article r\u00e9cent des Echos (https://lnkd.in/e4BJit5P ), et il est donc n\u00e9cessaire de donner aux acteurs du monde financier les outils et m\u00e9thodes pour arbitrer entre les deux.\n\nLe financier \"de base\" doit donc regarder s\u00e9par\u00e9ment \u00e9conomie et environnement pour savoir si les deux sont raccord ou pas. Cela signifie qu'il ou elle doit comprendre \u00e0 peu pr\u00e8s il retourne quand il est question d'environnement, et plus particuli\u00e8rement de climat et de ressources \u00e9nerg\u00e9tiques.\n\nRemontons d'un cran : pour que notre financier(e) ait les bases en mati\u00e8re d'\u00e9nergie et de climat, il faut bien qu'il ou elle les ait apprises un jour. Il faut aussi qu'il ou elle n'apprenne pas, ou ne \"conserve\" pas, en mati\u00e8re de finance ou d'\u00e9conomie, des choses qui pr\u00e9supposent que les limites plan\u00e9taires n'existent pas. \n\nAdmettons que notre futur(e) financier(e) soit encore en train de suivre sa formation initiale. A ce moment la question devient : que doit-on apprendre, et ne pas apprendre (ou d\u00e9sapprendre !), pour faire converger la logique du secteur et la pr\u00e9servation de l'environnement ?\n\nApr\u00e8s les ing\u00e9nieurs et les gestionnaires, The Shift Project s'attaque \u00e0 cette question de la formation initiale du sup\u00e9rieur pour les futurs salari\u00e9s de ce secteur (on appr\u00e9ciera la gradation de la difficult\u00e9 !), et vous propose, le Jeudi 15 d\u00e9cembre, un webinaire de pr\u00e9sentation de nos travaux sur le sujet.\n\nCela n'\u00e9puise pas le sujet de la formation, puisque les personnes d\u00e9j\u00e0 en activit\u00e9 ne peuvent plus, par la force des choses, retrouver leurs 20 ans et redevenir \u00e9tudiantes. Esp\u00e9rons que nos suggestions, qui incluent le corpus de connaissances de base sur l'environnement qu'il faut absolument avoir acquises pour \u00eatre pertinent sur le sujet, infuseront aussi tr\u00e8s vite la formation continue !\n\nProgramme et modalit\u00e9s d'inscription ci-dessous." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7008083556673454080,urn:li:activity:7008083556673454080,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 67, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7008083556673454080,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7008083556673454080,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7008083556673454080", + "threadId": "activity:7008083556673454080", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008083556673454080", + "urn": "urn:li:activity:7008083556673454080", + "numComments": 91, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7008083556673454080", + "reactionTypeCounts": [ + { + "count": 852, + "reactionType": "LIKE" + }, + { + "count": 46, + "reactionType": "INTEREST" + }, + { + "count": 43, + "reactionType": "PRAISE" + }, + { + "count": 36, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7008083556673454080", + "numLikes": 996, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008083556673454080", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 998, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7007679410803744768", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7007679410803744768)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7007679410803744768)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_commission-denqu%C3%AAte-%C3%A0-lassembl%C3%A9e-s%C3%A9gol%C3%A8ne-activity-7007679410803744768-JvER?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7007679409943924736", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7007679410803744768", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7007679409943924736", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "OgykErWMf/U9IVBV1kLQYQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8349937802885585333", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 790, + "fileIdentifyingUrlPathSegment": "800/0/1676197050742?e=1677240000&v=beta&t=O_WtHaUy3WUrnNDpTDfeZFJg9zzh6r74HRIknZOTmZw", + "expiresAt": 1677240000000, + "height": 498 + }, + { + "width": 790, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676197050742?e=1677240000&v=beta&t=b0Ze7caMO2lDPOAhTgyuEH5zyEU1lFC6VbRjT4VWBxs", + "expiresAt": 1677240000000, + "height": 498 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676197050742?e=1677240000&v=beta&t=D4ws-1WJ0LmLdAu4I_Fh3E_e9GS7kwRbfUFIbOtNpBY", + "expiresAt": 1677240000000, + "height": 100 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676197050742?e=1677240000&v=beta&t=J9xdjlCDCsI4zu8wwHjwkDUUF2EWUPdg7tm2L-kcK1w", + "expiresAt": 1677240000000, + "height": 302 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGn7WzLuyUAwQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.6303797468354431 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8349937802885585333)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8349937802885585333)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "marianne.net \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Commission d\u2019enqu\u00eate \u00e0 l'Assembl\u00e9e\u2009: S\u00e9gol\u00e8ne Royal attendue de pied ferme sur le plafonnement du nucl\u00e9aire by marianne.net", + "actionTarget": "https://www.marianne.net/politique/petites-indiscretions-grosses-revelations/commission-denquete-a-lassemblee-segolene-royal-attendue-de-pied-ferme-sur-le-plafonnement-du-nucleaire" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Commission d\u2019enqu\u00eate \u00e0 l'Assembl\u00e9e\u2009: S\u00e9gol\u00e8ne Royal attendue de pied ferme sur le plafonnement du nucl\u00e9aire" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Commission d'enqu\u00eate \"visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\", devant laquelle j'ai \u00e9t\u00e9 auditionn\u00e9 (https://bit.ly/3FHL0BV ), va passer \u00e0 ce qui \u00e9tait probablement son objectif premier depuis le d\u00e9but : nommer des \"responsables\" \u00e0 la situation difficile dans laquelle nous sommes, pr\u00e9f\u00e9rentiellement des adversaires politiques de l'initiateur :). \n\nCe n'est pas la premi\u00e8re fois que je le constate : j'ai \u00e9t\u00e9 convoqu\u00e9 par deux autres Commissions d'enqu\u00eate du Parlement :\n- une sur \"l'impact \u00e9conomique, industriel et environnemental des \u00e9nergies renouvelables, sur la transparence des financements et sur l'acceptabilit\u00e9 sociale des politiques de transition \u00e9nerg\u00e9tique\" pilot\u00e9e par un d\u00e9put\u00e9 LR : https://bit.ly/3iSJ9kV\n- une sur le \"co\u00fbt r\u00e9el de l'\u00e9lectricit\u00e9 afin d'en d\u00e9terminer l'imputation aux diff\u00e9rents agents \u00e9conomiques\" demand\u00e9 par un s\u00e9nateur Vert : https://bit.ly/3PjgRw3\n\nA chaque fois un des buts \u00e9tait bien \"d'\u00e9pingler\" des adversaires politiques, au motif qu'ils avaient d\u00e9cid\u00e9 d'actions contraires \u00e0 la conviction du parlementaire qui d\u00e9clenchait la Commission.\n\nCela n'emp\u00eache \u00e9videmment pas d'apprendre des choses int\u00e9ressantes pour qui prend le temps d'\u00e9couter les auditions ou de lire les rapports, et c'est bien en entrant dans ce niveau de d\u00e9tail que l'on peut profiter de ces travaux. La partie \"tribunal pour politiques\" n'est qu'une partie \u00e9merg\u00e9e - et pas la plus int\u00e9ressante - de l'iceberg, sauf \u00e0 permettre \u00e0 l'ensemble de la classe politique de devenir plus adulte ensuite, et ce n'est pas garanti !\n\nA l'\u00e9vidence, fermer Fessenheim a priv\u00e9 le pays d'une production \u00e9lectrique bas carbone qui serait pr\u00e9cieuse aujourd'hui. Mais qui en est responsable ? Royal parce qu'elle a sign\u00e9 le d\u00e9cret ? Hollande parce qu'il a pris cet engagement dans la campagne ? Macron parce qu'il n'est pas revenu dessus alors qu'il le pouvait ? La presse qui a longtemps et majoritairement pr\u00e9sent\u00e9 le nucl\u00e9aire comme bien plus dangereux que ses alternatives et facile \u00e0 remplacer sans trop se demander si l'argumentation \u00e9tait factuellement solide ? Jospin qui a donn\u00e9 le coup d'envoi de 20 ans de nucl\u00e9aire honteux ? Les experts techniques qui n'ont pas su faire la p\u00e9dagogie des seuls faits ? L'Education Nationale qui a laiss\u00e9 circuler des manuels scolaires contenant des contre-v\u00e9rit\u00e9s ? L'Allemagne qui a fait tout ce qu'elle a pu pour faire \u00e9merger des r\u00e8gles europ\u00e9ennes d\u00e9favorables au nucl\u00e9aire et nous jeter dans les bras des russes ?\n\nClouer Royal au pilori ne nous aidera que peu \u00e0 mieux r\u00e9fl\u00e9chir \u00e0 l'avenir. Plus que des noms, notre premier objet d'attention doit \u00eatre l'ad\u00e9quation entre processus de d\u00e9cision et probl\u00e8me \u00e0 traiter. Ce sont les m\u00e9canismes structurels \u00e0 l'oeuvre (cadre de march\u00e9, partage des faits, horizon temporel de l'action), qu'il faut examiner et \u00e9ventuellement corriger. C'est moins spectaculaire que de conspuer un individu (m\u00eame peu sympathique), mais bien plus fondamental." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7007679410803744768,urn:li:activity:7007679410803744768,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 361, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7007679410803744768,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7007679410803744768,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7007679410803744768", + "threadId": "activity:7007679410803744768", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007679410803744768", + "urn": "urn:li:activity:7007679410803744768", + "numComments": 602, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7007679410803744768", + "reactionTypeCounts": [ + { + "count": 5801, + "reactionType": "LIKE" + }, + { + "count": 485, + "reactionType": "PRAISE" + }, + { + "count": 479, + "reactionType": "MAYBE" + }, + { + "count": 228, + "reactionType": "INTEREST" + }, + { + "count": 73, + "reactionType": "APPRECIATION" + }, + { + "count": 45, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7007679410803744768", + "numLikes": 7111, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007679410803744768", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7121, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7007412643036545024", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7007412643036545024)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7007412643036545024)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_20000-personnes-dans-30-pays-tel-est-l%C3%A9chantillon-activity-7007412643036545024-0Ki9?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7007412642214477824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7007412643036545024", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7007412642214477824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "+zyHLQ/XZV9WqOCxBLXw5Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:D4E22AQH31vNWmrMYug", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:D4E22AQH31vNWmrMYug", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1670697363822?e=1679529600&v=beta&t=zmTNjSjxr3_vTJ_uOrLsA--1bVz588PceyOI2GaKpoI", + "expiresAt": 1679529600000, + "height": 1154 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1670697364338?e=1679529600&v=beta&t=IfTiXei25O-1j0490HkrfXY-37CMTDeEMtVTQXPDXDs", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1670697364338?e=1679529600&v=beta&t=05adXSL3Lq0cbJ7xzElsh3pqfmZDDMTYOW-ximE-YTo", + "expiresAt": 1679529600000, + "height": 721 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1670697364338?e=1679529600&v=beta&t=XoLjmGdSr1jRfegFJGk-wgemCLpCoRQfyGmxRZtQC_0", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1670697364338?e=1679529600&v=beta&t=PWOpQGDt2HDlAFTQAI364kjjrYLkbw-KCPDvtXxczT4", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1670697364338?e=1679529600&v=beta&t=8OTZHo0DVEHC_naKX_nFhTyWxwf-5VsVlW41RyOzIoI", + "expiresAt": 1679529600000, + "height": 451 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E22AQH31vNWmrMYug/feedshare-shrink_" + }, + "displayAspectRatio": 0.5634765625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "20.000 personnes dans 30 pays : tel est l'\u00e9chantillon dont Ipsos a sond\u00e9 d\u00e9but septembre les coeurs et les reins pour avoir des avis sur un certain nombre de sujets concernant l'environnement et l'\u00e9nergie.\n\nLe rapport complet propose 100 pages de tableaux de chiffres : https://bit.ly/3W8qaB0 Id\u00e9alement il faut tout lire (et ne pas juste lire les enseignements - disponibles sur https://bit.ly/3HqkBKn) pour se faire sa propre id\u00e9e. \n\nL'environnement c'est important, mais la hausse du cout de la vie l'est un peu plus dans tous les pays... sauf un : l'Inde, o\u00f9 la hi\u00e9rarchie est inverse.\n\nLa Chine est le pays o\u00f9 il y a le plus fort taux de r\u00e9pondants consid\u00e9rant que la situation environnementale y est bonne ou tr\u00e8s bonne (chacun peut voir midi \u00e0 sa porte !). La Cor\u00e9e du Sud et l'Espagne sont les pays de l'autre extr\u00e9mit\u00e9 du spectre.\n\nLe pays le plus climatosceptique de l'\u00e9chantillon est l'Arabie Saoudite, suivie juste apr\u00e8s par les USA puis la Russie. En Europe c'est la Norv\u00e8ge. Il y aurait comme un lien entre le climatoscepticisme et l'importance des hydrocarbures dans l'\u00e9conomie domestique :) (en Norv\u00e8ge il y a en plus une majorit\u00e9 qui consid\u00e8re que le r\u00e9chauffement est globalement neutre ou positif pour le pays).\n\nSur un sujet qui concerne plus directement EDF, dans l'essentiel des pays sond\u00e9s le nucl\u00e9aire est majoritairement vu comme une source significative de gaz \u00e0 effet de serre (alors que pour l'agriculture ou le digital seule une minorit\u00e9 l'affirme), ce qui n'emp\u00eache pas le soutien (dans une autre question) du remplacement des centrales \u00e0 combustibles fossiles par du nucl\u00e9aire !\n\nLes br\u00e9siliens et indon\u00e9siens pr\u00e9f\u00e8rent m\u00eame le charbon au nucl\u00e9aire, et pr\u00e9f\u00e8rent remplacer le charbon par du gaz plut\u00f4t que par du nucl\u00e9aire. Ils sont loin de Poutine ! Les chinois sont les plus favorables au nucl\u00e9aire et les colombiens le moins. Toutes les populations sont favorables au solaire et \u00e0 l'\u00e9olien.\n\nCe sont les japonais les plus s\u00e9v\u00e8res avec leurs responsables politiques (qui sont vus comme tr\u00e8s peu actifs) et les chinois les plus laudatifs. C'est aussi en Chine qu'il y a la plus grande fraction de la population qui consid\u00e8re que leur pays est dans le peloton de t\u00eate des efforts contre le changement climatique.\n\nCe sont les turcs les plus nombreux \u00e0 vouloir que l'on privil\u00e9gie l'environnement sur la croissance (65% vs 25%). Mais ce sont les chinois les plus persuad\u00e9s que leur pays va donner la priorit\u00e9 \u00e0 l'environnement dans un avenir proche m\u00eame si cela nuit \u00e0 la croissance !\n\nA la fin de l'enqu\u00eate sont test\u00e9es les acceptabilit\u00e9s d'un certain nombre de mesures. Sans grande surprise, tout ce qui est taxes et limitations est bien moins accept\u00e9 que le d\u00e9veloppement (gratuit on suppose !) des \u00e9nergies bas carbone (y compris le nucl\u00e9aire).\n\nEvidemment on sort de cette avalanche de chiffres en voyant bien des contradictions dans les r\u00e9ponses. Mais on y voir aussi des indications utiles pour que certaines actions de sobri\u00e9t\u00e9 soient d'ores et d\u00e9j\u00e0 men\u00e9es." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7007412643036545024,urn:li:activity:7007412643036545024,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7007412643036545024,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7007412643036545024,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7007412643036545024", + "threadId": "activity:7007412643036545024", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007412643036545024", + "urn": "urn:li:activity:7007412643036545024", + "numComments": 73, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7007412643036545024", + "reactionTypeCounts": [ + { + "count": 959, + "reactionType": "LIKE" + }, + { + "count": 200, + "reactionType": "INTEREST" + }, + { + "count": 151, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7007412643036545024", + "numLikes": 1325, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007412643036545024", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1328, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7006908707229868032", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7006908707229868032)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7006908707229868032)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_towards-biodiversity-certificates-proposal-activity-7006908707229868032-3yZz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7006908706328059904", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7006908707229868032", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7006908706328059904", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "lMtSoYD2D/jXZhWZTb3TWg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8922422006420302619", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676537279279?e=1677240000&v=beta&t=nkvYMTkiYvQtKgNmOqCxXjas49T8ChIQjNcieIMVqUE", + "expiresAt": 1677240000000, + "height": 1200 + }, + { + "width": 533, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676537279279?e=1677240000&v=beta&t=6t05O6Iuxu5cZrsHqfUwJExkxn0miT43WNrBjVR1jkw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676537279280?e=1677240000&v=beta&t=ep-qrTU6nSdV0htS9ThL304-U9WU-ybnfXZL7kHGDSI", + "expiresAt": 1677240000000, + "height": 240 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676537279280?e=1677240000&v=beta&t=ATczr6KiocZ-83euiNdo21P-3q0I-PkeFwFjNyBLWHU", + "expiresAt": 1677240000000, + "height": 720 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFDIWdEacXhUg/articleshare-shrink_" + }, + "displayAspectRatio": 1.5 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8922422006420302619)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8922422006420302619)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Towards biodiversity certificates: proposal for a methodological framework | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-biodiversity-certificates-obc" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Towards biodiversity certificates: proposal for a methodological framework | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7006908706328059904,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis sa cr\u00e9ation, Carbone 4 s'est historiquement int\u00e9ress\u00e9 au carbone fossile, celui des combustibles \u00e9ponymes. Mais il y a aussi du carbone \"vivant\" : la biodiversit\u00e9. Nous avons d\u00e9cid\u00e9, il y a un peu plus d'un an, de nous lancer aussi dans cette direction l\u00e0. \n\nPour chaque nouveau domaine ou secteur, notre mani\u00e8re de faire est toujours la m\u00eame : nous commen\u00e7ons par nous creuser un peu la cervelle pour savoir ce que nous pourrions apporter d'utile et de nouveau en mati\u00e8re de m\u00e9thodes. Et la m\u00e9thode qui d\u00e9coule de notre r\u00e9flexion est g\u00e9n\u00e9ralement rendue disponible en acc\u00e8s libre.\n\nLa comptabilit\u00e9 carbone pratiqu\u00e9e par Carbone 4 est ainsi venue apr\u00e8s la cr\u00e9ation du Bilan Carbone. Notre approche de la neutralit\u00e9 apr\u00e8s la mise au point de Net Zero Initiative (https://bit.ly/3uAeYl1 ). Les \u00e9tudes de r\u00e9silience d'une activit\u00e9 face aux risques physiques du changement climatique apr\u00e8s la mise au point d'Ocara (https://bit.ly/3W6LpTI ). La notation carbone d'une entreprise apr\u00e8s la mise au point de CIA (https://bit.ly/3FCFIYh ) et de CRIS (https://bit.ly/3F7CTNq). L'alignement (= la \"compatibilit\u00e9\") d'une infrastructure avec une trajectoire 2\u00b0C sur les \u00e9missions apr\u00e8s la mise au point de CIARA (https://lnkd.in/dAMBzut).\n\nEt, dans cette m\u00eame veine, nos premiers pas dans la biodiversit\u00e9 ont concern\u00e9 la cr\u00e9ation de m\u00e9thodes dont nous esp\u00e9rons qu'elles \"am\u00e8nent quelque chose\" \u00e0 la prise en compte de ces enjeux dans l'activit\u00e9 \u00e9conomique.\n\nLa premi\u00e8re brique a \u00e9t\u00e9 Biodiversity Impact Analytics (https://bit.ly/3iMwdwQ ), d\u00e9velopp\u00e9 en partenariat avec la CDC Biodiversit\u00e9, et qui permet de \"noter\" les titres (actions ou obligations) d'une entreprise (c'est donc une m\u00e9thode destin\u00e9e au secteur financier). \n\nNous venons d'en publier une deuxi\u00e8me, portant sur des \"certificats biodiversit\u00e9\". De quoi s'agit-il ? De fournir une r\u00e9ponse \u00e0 la question suivante : comment compter le b\u00e9n\u00e9fice associ\u00e9 \u00e0 une action qui vise \u00e0 restaurer de la biodiversit\u00e9, ou \u00e0 emp\u00eacher sa d\u00e9gradation ? En effet, si l'on veut attirer des moyens dans la pr\u00e9servation ou la restauration de la biodiversit\u00e9, il faut pouvoir comparer des alternatives entre elles pour savoir o\u00f9 ces moyens seront le plus utiles. Mais cela soul\u00e8ve de multiples questions.\n\nComment \u00e9valuer des gains biodiversit\u00e9 alors que la nature est souvent consid\u00e9r\u00e9e comme \u00e9tant trop complexe pour \u00eatre mesur\u00e9e ? Peut-on d\u00e9velopper une m\u00e9thodologie universelle, robuste et facile \u00e0 mettre en \u0153uvre sur le terrain ? Comment d\u00e9passer la logique de compensation, dont on a vu les effets pervers en mati\u00e8re de climat ? Quelle doit \u00eatre la place des certificats dans la strat\u00e9gie biodiversit\u00e9 des entreprises ?\n\nCarbone 4 et le Mus\u00e9um national d'Histoire Naturelle ont con\u00e7u un cadre m\u00e9thodologique pour tenter de r\u00e9pondre \u00e0 ces questions, que nous proposons aux personnes int\u00e9ress\u00e9es de d\u00e9couvrir et de commenter. Ce n'est bien \u00e9videmment qu'une premi\u00e8re \u00e9tape, mais il faut bien commencer un jour !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7006908706328059904,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7006908707229868032,urn:li:activity:7006908707229868032,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 57, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7006908707229868032,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7006908707229868032,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7006908707229868032", + "threadId": "activity:7006908707229868032", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006908707229868032", + "urn": "urn:li:activity:7006908707229868032", + "numComments": 67, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7006908707229868032", + "reactionTypeCounts": [ + { + "count": 837, + "reactionType": "LIKE" + }, + { + "count": 91, + "reactionType": "PRAISE" + }, + { + "count": 61, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7006908707229868032", + "numLikes": 1056, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006908707229868032", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1056, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7006525348163014657", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7006525348163014657)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7006525348163014657)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-sncf-va-prendre-en-compte-le-prix-du-carbone-activity-7006525348163014657-mGx3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7006525347370262528", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7006525348163014657", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7006525347370262528", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "MuWbd6PitnxfdXw5Lk9piw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8044829150830183589", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 707, + "fileIdentifyingUrlPathSegment": "800/0/1675756968260?e=1677240000&v=beta&t=dDULs5A-OGmmE8q6SF99MJZaU0i2NBSf7yhvZ5cDKxM", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 707, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675756968260?e=1677240000&v=beta&t=hZOe8YUAltR-q-9DHfvqre1xQ482HhOzViAFypoXIGI", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675756968260?e=1677240000&v=beta&t=b9p1mn0UC3RflK4w0-NxWLXt5joF4BwPQyYVObaJB-4", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675756968260?e=1677240000&v=beta&t=9iVJK7iH0CPqRBo9HecIFj2qq9m0pOJQcI6a9Ewn-EI", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHOtXbNvsBx1Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.6661951909476662 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8044829150830183589)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8044829150830183589)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "novethic.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La SNCF va prendre en compte le prix du carbone dans ses appels d'offres by novethic.fr", + "actionTarget": "https://www.novethic.fr/actualite/entreprise-responsable/isr-rse/la-sncf-va-prendre-en-compte-le-prix-du-carbone-dans-ses-appels-d-offre-151217.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La SNCF va prendre en compte le prix du carbone dans ses appels d'offres" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 778, + "length": 17, + "miniProfile": { + "firstName": "Mika\u00ebl", + "lastName": "Lemarchand", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAB0vwQBlSktLEmYdTdyOGWrd7KRp7YnXkA", + "occupation": "Chief Sustainability Officer / Directeur de l'engagement social, territorial et environnemental. Directeur du Projet d'entreprise. Membre du COMEX.Vice-Pr\u00e9sident de la Fondation SNCF.", + "objectUrn": "urn:li:member:7651076", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAB0vwQBlSktLEmYdTdyOGWrd7KRp7YnXkA", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1617166213063?e=1681948800&v=beta&t=jkSa3vunXUPrGO39bw6CGVf_v2pQd-Q5FRKsdozekuc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1617166213063?e=1681948800&v=beta&t=oRxuYz4FxnQKUlzDZpQVL2c4cZ_NjTOoMe3Jdu1ZL2c", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQEQY-jW4ws5jg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "mika\u00ebl-lemarchand", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516278647887?e=1681948800&v=beta&t=E-hMUmZP67EMWIr_OWJg3zxR-zaGh92f239kNzlW6gc", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516278647887?e=1681948800&v=beta&t=rzujsePk5rgQmqZj3-itViw7U7eYCbWv1ozx46StTRo", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516278647887?e=1681948800&v=beta&t=jZz18hYdaIzdGh4SVmhKExX3cfjIZ3ETaMTx5JKHGNA", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516278647887?e=1681948800&v=beta&t=JrI_z5CqwwKYbpkfuWhpTWepa_NIVw6yoQwBOQ1kvTY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHo0SxCAyGx4g/profile-displayphoto-shrink_" + } + }, + "trackingId": "vR/lgUcSRCC/UtaBadu6AQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "On n'en attendait pas moins de la soci\u00e9t\u00e9 qui \"h\u00e9berge\" l'un des auteurs de la commission qui a fix\u00e9 une trajectoire de prix pour la \"valeur tut\u00e9laire du carbone\" (Alain Quinet) : la SNCF a annonc\u00e9 qu'elle allait introduire un \"prix du carbone\" dans ses achats.\n\nLe m\u00e9canisme pr\u00e9cis n'est pas d\u00e9taill\u00e9 dans cet article de Novethic (et pas plus dans les autres articles qui sont disponibles dans l'espace public), mais, \"vu de Mars\" (pardon Elon, on t'emprunte ta future r\u00e9sidence secondaire), j'imagine qu'il s'agit de recalculer des prix en ajoutant \u00e0 l'offre en euros un montant correspondant au contenu carbone de l'offre (fourni ou d\u00e9duit du bilan carbone du fournisseur) multipli\u00e9 par le prix de la tonne de carbone (si ce n'est pas ce m\u00e9canisme, il serait int\u00e9ressant que Mika\u00ebl Lemarchand pr\u00e9cise en commentaire quelle proc\u00e9dure sera utilis\u00e9e).\n\nDans le monde des soci\u00e9t\u00e9s marchandes, seule la contrainte fait avancer les entreprises commerciales \u00e0 la bonne vitesse. La contrainte peut venir de la r\u00e9glementation, des clients, des ressources humaines (les \"ressources rares\" qui ont le choix de leur employeur orientent un peu l'action de ces derniers)...\n\nQue le client mette une haie \u00e0 franchir qui s'appelle le carbone va donc dans le bon sens. Accessoirement une partie des fournisseurs de la SNCF sont des soci\u00e9t\u00e9s importantes (de travaux publics, de mat\u00e9riel roulant ou fixe, etc) qui seront soumises \u00e0 l'obligation de publier un bilan carbone au titre de la nouvelle r\u00e9glementation europ\u00e9enne CSRD. \n\nUne des \"conditions aux limites\" qui fera de ce genre de mesure un acc\u00e9l\u00e9rateur de la d\u00e9carbonation s'appelle la formation. En effet, seule la formation large des salari\u00e9s permet de d\u00e9centraliser l'action et l'initiative de terrain apr\u00e8s avoir annonc\u00e9 une intention : sans cela, il faut garder une fonction centralis\u00e9e de d\u00e9cision et de contr\u00f4le qui g\u00e8re quasi-exclusivement le sujet et impose les r\u00e9sultats aux autres entit\u00e9s de l'entreprise, o\u00f9 il n'y aura alors que peu de capacit\u00e9 d'initiative ou de motivation (voire une franche r\u00e9sistance !).\n\nLa formation n'est \u00e9videmment jamais suffisante. Mais c'est une condition n\u00e9cessaire pour que les \"d\u00e9cisions intelligentes\" (et mettre le carbone dans la relation client-fournisseur en est une) produisent leurs pleins effets." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7006525348163014657,urn:li:activity:7006525348163014657,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 57, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7006525348163014657,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7006525348163014657,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7006525348163014657", + "threadId": "activity:7006525348163014657", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006525348163014657", + "urn": "urn:li:activity:7006525348163014657", + "numComments": 99, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7006525348163014657", + "reactionTypeCounts": [ + { + "count": 1501, + "reactionType": "LIKE" + }, + { + "count": 111, + "reactionType": "MAYBE" + }, + { + "count": 102, + "reactionType": "INTEREST" + }, + { + "count": 68, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7006525348163014657", + "numLikes": 1802, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006525348163014657", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1802, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7006225119303880704", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7006225119303880704)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7006225119303880704)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_quand-bien-m%C3%AAme-il-ny-aurait-pas-eu-de-guerre-activity-7006225119303880704-Sq4T?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7006225118406279168", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7006225119303880704", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7006225118406279168", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "XDDU0IM9AW3SFGOB5ayiSQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQG6NenqEshWWg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQG6NenqEshWWg", + "artifacts": [ + { + "width": 1434, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1670414236027?e=1679529600&v=beta&t=XYTghidqbyL_wu7UqAS8vAC1beSuWqQGwARUlVh6NI4", + "expiresAt": 1679529600000, + "height": 998 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1670414236066?e=1679529600&v=beta&t=dq7Farb1DEDJrG6ilDNTFyfnzef2hGlRu1W4n3KnZJ4", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1670414236066?e=1679529600&v=beta&t=CQCjBitZpuvmLtkI6WD_7F0b87M4Z4wUQaR_Po3KTp4", + "expiresAt": 1679529600000, + "height": 890 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1670414236066?e=1679529600&v=beta&t=9SKVjRY357GgI5XUyY7Do6xsobej1jZdXom98IFf83I", + "expiresAt": 1679529600000, + "height": 334 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1670414236066?e=1679529600&v=beta&t=CBhvRNmhCBvaIaxbtZ68wBwmjv-KdjBXm19d4RxO7rY", + "expiresAt": 1679529600000, + "height": 111 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1670414236066?e=1679529600&v=beta&t=4fKQQzbwmOtG-ebkq5cdec_g7k9uBz9zN3JCj6BMzh8", + "expiresAt": 1679529600000, + "height": 556 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQG6NenqEshWWg/feedshare-shrink_" + }, + "displayAspectRatio": 0.6959553695955369 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, surface chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7006225118406279168,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quand bien m\u00eame il n'y aurait pas eu de guerre en Ukraine, notre continent allait de toute fa\u00e7on devoir faire face \u00e0 une baisse \"physique\" de la possibilit\u00e9 d'importer du gaz \u00e0 l'avenir. Bien \u00e9videmment, nos d\u00e9m\u00eal\u00e9s avec un pays qui fournissait, avant conflit, 40% du gaz consomm\u00e9 dans l'Union, agissent comme un acc\u00e9l\u00e9rateur, mais le coup \u00e9tait parti. \n\nTelle est la conclusion \u00e0 laquelle nous parvenons au Shift Project, \u00e0 l'issue d'une analyse portant sur les possibilit\u00e9s d'approvisionnement en gaz de l'Union Europ\u00e9enne sous seule contrainte g\u00e9ologico-technique (on ne prend donc en consid\u00e9ration comme facteurs limitants que le contenu des gisements et la capacit\u00e9 \u00e0 faire des infrastructures d'extraction et de transport) : https://bit.ly/3HhowJ7\n\nCe travail - soutenu financi\u00e8rement par le Minist\u00e8re des Arm\u00e9es, RTE et le BRGM - a \u00e9t\u00e9 men\u00e9 avec comme mati\u00e8re premi\u00e8re l'inventaire de la totalit\u00e9 des gisements mondiaux (y compris ceux restant \u00e0 d\u00e9couvrir) fourni par Rystad Energy, ainsi que les les perspectives de production par gisement, ou encore les contrats d\u00e9j\u00e0 pass\u00e9s en GNL pour chaque pays importateur et chaque pays producteur. \n\nLe graphique ci-dessous r\u00e9sume notre analyse. Il fournit les divers approvisionnements identifi\u00e9s (via gazoducs ou via contrats pour le GNL) pour l'Europe, ainsi que divers niveaux de consommation possibles :\n- la courbe orange est du \"tendanciel avec \u00e9conomies\"\n- la croix jaune est le point d'arriv\u00e9e en 2030 dans le sc\u00e9nario \"Fit for 55\"\n- la croix rouge est le point d'arriv\u00e9e dans \"Repower EU\" (https://bit.ly/3VUBy3s )\n\nOn voit facilement que la situation que nous allons vivre cette hiver ne devrait pas \u00eatre suivie d'un \"retour \u00e0 la normale\" sur les approvisionnements (et il se discute de savoir ce qu'est \"la normale\" quand la consommation de gaz devrait de toute fa\u00e7on baisser tr\u00e8s rapidement pour des raisons de climat !). \n\nPour remplacer les importations qui n'ont plus lieu par gazoduc il faut recourir au GNL, sur lequel nous sommes en concurrence croissante avec les pays asiatiques, et il n'y en aura pas pour tout le monde. En outre le pic mondial sur la production gazi\u00e8re (sous seule contrainte g\u00e9ologique) est attendu aux alentours de 2030 avec les donn\u00e9es fournies par Rystad. \n\nClimat ou pas, Ukraine ou pas, le coup \u00e9tait aussi parti sur le p\u00e9trole (https://bit.ly/3F7Ty3y ). Rappelons que le charbon est aussi en baisse subie depuis les ann\u00e9es 1950 (car les mines europ\u00e9ennes sont de plus en plus vides et le commerce international de ce pond\u00e9reux solide n'est pas si simple). \n\nQuand bien m\u00eame nous ne voudrions pas faire d'efforts parce que l'UE ce n'est que 10% des \u00e9missions, que les am\u00e9ricains ont une empreinte carbone individuelle 2 fois plus \u00e9lev\u00e9e que la n\u00f4tre, etc, nous allons devoir d\u00e9carboner de toute fa\u00e7on. Il est plus qu'urgent de comprendre que nous sommes au d\u00e9but d'une \u00e9volution structurelle, et pas dans un accident de parcours." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7006225118406279168,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7006225119303880704,urn:li:activity:7006225119303880704,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 73, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7006225119303880704,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7006225119303880704,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7006225119303880704", + "threadId": "activity:7006225119303880704", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006225119303880704", + "urn": "urn:li:activity:7006225119303880704", + "numComments": 185, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7006225119303880704", + "reactionTypeCounts": [ + { + "count": 2527, + "reactionType": "LIKE" + }, + { + "count": 499, + "reactionType": "INTEREST" + }, + { + "count": 304, + "reactionType": "MAYBE" + }, + { + "count": 59, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7006225119303880704", + "numLikes": 3405, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006225119303880704", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3406, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7005825581208477696", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7005825581208477696)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7005825581208477696)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rising-prices-and-supply-chain-risks-threaten-activity-7005825581208477696-NdeL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7005825580357033984", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7005825581208477696", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7005825580357033984", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "ENoDoDm+q6kTjLg78CJ3ug==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7627523493011370695", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676381140655?e=1677240000&v=beta&t=_RGTkHmL1SVdUWS8tI4hjbr6ZhL3TAqLk0_xKz2XWoY", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 900, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676381140656?e=1677240000&v=beta&t=ivg2hhqJZOc3JK8837WeLQOoxLr9cmBsSDWJd_rMeMs", + "expiresAt": 1677240000000, + "height": 506 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676381140656?e=1677240000&v=beta&t=72umEvDSZ5SsdC4V4B7U4Oq7xR4Gv-vrLfYMsYPlUko", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676381140656?e=1677240000&v=beta&t=920ortEasOHTHAyvzkhbG3IlWR6x04vKngyFFCFYryw", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEeTs2pCdQnhw/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7627523493011370695)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7627523493011370695)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ft.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Rising prices and supply chain risks threaten Europe\u2019s renewable aims by ft.com", + "actionTarget": "https://www.ft.com/content/de817195-f21c-4055-ae0a-67430f20be1e" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Rising prices and supply chain risks threaten Europe\u2019s renewable aims" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7005825580357033984,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Alors m\u00eame que l'Etat fran\u00e7ais souhaite acc\u00e9l\u00e9rer sur les \u00e9nergies renouvelables (dont l'\u00e9olien et le solaire pour une large part), le contexte international fait ce qu'il peut pour contrarier ce plan, en rench\u00e9rissant fortement le cout des mati\u00e8res premi\u00e8res n\u00e9cessaires.\n\nLa raison ? C'est \"l'imbrication des \u00e9nergies\", \u00e9voqu\u00e9e par Jean-Baptiste Fressoz dans cette vid\u00e9o (et dans d'autres) qui date d'il y a quelques mois : https://lnkd.in/eWKNDxK9\n\nAujourd'hui, toutes les \u00e9nergies sont imbriqu\u00e9es les unes dans les autres. Il faut du charbon pour la m\u00e9tallurgie, du p\u00e9trole pour la chimie organique et les transports, et du gaz pour l'industrie et l'\u00e9lectricit\u00e9, et sans ces \u00e9nergies fossiles l'industrie mondialis\u00e9e est moins disponible, et donc le prix de n'importe quoi augmente... y compris celui des dispositifs de production \u00e0 base de vent et de soleil (et aussi le cout des composants pour le nucl\u00e9aire, bien s\u00fbr !).\n\nLes sc\u00e9narios \u00e9nerg\u00e9tiques que nous avons discut\u00e9s ces derni\u00e8res ann\u00e9es ignorent cette \u00e9ventualit\u00e9. Ils supposent que dans un monde se heurtant aux limites physiques nous conservons un cadre tranquille, sans accidents, sans p\u00e9nuries de mati\u00e8res premi\u00e8res, et sans disruptions des chaines mondialis\u00e9es qui permettent de s'approvisionner en tout et n'importe quoi \u00e0 prix sans cesse en baisse.\n\nIl y a donc une contradiction interne qui commence \u00e0 devenir visible : ces sc\u00e9narios supposent de garder le b\u00e9n\u00e9fice des combustibles fossiles (la formidable \"productivit\u00e9\" de l'\u00e9conomie) tout en se d\u00e9barrassant de ces m\u00eames combustibles. La traduction \u00e9conomique est des prix suppos\u00e9s rester bas pour les dispositifs ENR alors m\u00eame que ces ENR b\u00e9n\u00e9ficient de la productivit\u00e9 fossile.\n\nRTE a annonc\u00e9 publiquement il y a quelques mois avoir mis en chantier une variante de ses sc\u00e9narios appel\u00e9e \"mondialisation contrari\u00e9e\". Il est pertinent de penser les options possibles dans un monde o\u00f9 se procurer tout ce qui est lointain devient de plus en plus difficile, et o\u00f9 la productivit\u00e9 du travail (qui vient avant tout des machines, lesquelles sont avant tout nourries \u00e0 l'\u00e9nergie fossile, et qui sont pour une large part situ\u00e9es \u00e0 l'ext\u00e9rieur du pays) est structurellement orient\u00e9e \u00e0 la baisse et non \u00e0 la hausse.\n\nPour d\u00e9sagr\u00e9able que soit peut-\u00eatre un exercice de pens\u00e9e consistant \u00e0 imaginer que tout puisse aller de travers, il correspond \u00e0 une \u00e9volution possible du monde (car gouverner c'est pr\u00e9voir !). Il y a fort \u00e0 parier que dans un tel cadre :\n- aucune option n'apparait comme sans risque (le risque premier \u00e9tant de ne \"pas y arriver\" et donc d'avoir des p\u00e9nuries \u00e9lectriques chroniques, et les impacts sur le fonctionnement du pays qui vont avec)\n- la hi\u00e9rarchie des options sera bien plus diff\u00e9renci\u00e9e que dans le monde \"en croissance verte\" de tous les sc\u00e9narios d\u00e9j\u00e0 publi\u00e9s (y compris ceux de l'Ademe).\n\nNous n'avons qu'un seul essai pour b\u00e2tir le syst\u00e8me \u00e9nerg\u00e9tique d\u00e9carbon\u00e9 de 2100. Se tromper de plan est pour partie non rattrapable." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7005825580357033984,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7005825581208477696,urn:li:activity:7005825581208477696,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7005825581208477696,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7005825581208477696,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7005825581208477696", + "threadId": "activity:7005825581208477696", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005825581208477696", + "urn": "urn:li:activity:7005825581208477696", + "numComments": 66, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7005825581208477696", + "reactionTypeCounts": [ + { + "count": 658, + "reactionType": "LIKE" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 101, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7005825581208477696", + "numLikes": 881, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005825581208477696", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 882, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7005603227807186944", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7005603227807186944)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7005603227807186944)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_electricit%C3%A9-le-gouvernement-pr%C3%A9pare-les-activity-7005603227807186944-WEjO?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7005603226947313664", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7005603227807186944", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7005603226947313664", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "i26ZFdV9Q4Hs0VR09Ph8JA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7579087810109670610", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676128670297?e=1677240000&v=beta&t=Zory4vDCcetQub6l2KKyzfgroswyc3HJSBv7opOD9I8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676128670297?e=1677240000&v=beta&t=g7MSRoOsUVT39Spfi_73bMIgIUjqbjLdB1Px3ALIo1Y", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676128670297?e=1677240000&v=beta&t=F9v2fqfgybn0VwfLorm7ALjKnxKFEJIGwC7IXKu8LxU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676128670297?e=1677240000&v=beta&t=mllRXWVw8agtKH0Asftn0fUMqIbe_WrfJQlhMjaNxsY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGLr3kXPRWv0w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7579087810109670610)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7579087810109670610)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Electricit\u00e9 : le gouvernement pr\u00e9pare les esprits aux coupures de courant by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/electricite-le-gouvernement-prepare-les-esprits-aux-coupures-de-courant-1884506" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Electricit\u00e9\u00a0: le gouvernement pr\u00e9pare les esprits aux coupures de courant" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7005603226947313664,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il aura fallu la menace de d\u00e9lestages en janvier pour que le pays se rappelle que toute notre soci\u00e9t\u00e9 moderne repose sur l'\u00e9lectricit\u00e9. De fait, sans \u00e9lectricit\u00e9, comment faire pour passer un coup de fil, accueillir les \u00e9l\u00e8ves \u00e0 l'\u00e9cole, conserver le lait au frais, maintenir une ligne de production, faire un retrait d'argent ou un virement, monter dans l'ascenseur, travailler n'importe o\u00f9 apr\u00e8s la tomb\u00e9e du jour ou dans un local sans fen\u00eatres, faire ses courses dans une grande surface (qui a besoin de lumi\u00e8re car il s'agit g\u00e9n\u00e9ralement d'un local borgne, et besoin de caisses enregistreuses), s'informer, ou faire avancer un train ? Il faut des \u00e9lectrons pour tout et partout aujourd'hui, y compris... pour apprendre qu'il n'y en aura peut-\u00eatre pas demain ! \n\nCe qui se discute actuellement, cependant, n'est pas comparable \u00e0 ce qui se passe dans Ravage de Barjavel (un roman bas\u00e9 sur la disparition instantan\u00e9e de l'\u00e9lectricit\u00e9 dans une civilisation \"avanc\u00e9e\", avec retour \u00e0 la barbarie) : il est juste question de possibles d\u00e9lestages de 2 heures, avec un seul d\u00e9lestage par client pour l'ensemble de l'hiver.\n\nMais \u00e0 quelque chose malheur est bon : esp\u00e9rons que cet \u00e9pisode, qui nous fait toucher du doigt que le risque d'un d\u00e9faut d'\u00e9lectricit\u00e9 par manque de moyens de production est possible, va nous inciter (et inciter les politiques) \u00e0 consacrer plus de temps et d'intelligence \u00e0 bien peser les risques dans le choix d'un sc\u00e9nario \u00e9lectrique pour l'avenir. \n\nActuellement, nous voyons un peu la trace des choix faits dans le pass\u00e9 (pas que, il y a aussi le nucl\u00e9aire en r\u00e9paration ou maintenance en France) : capacit\u00e9s nucl\u00e9aires d\u00e9lib\u00e9r\u00e9ment abandonn\u00e9es (Allemagne, en Belgique et en France), moindre disponibilit\u00e9 du gaz qui devait \"assurer la transition\", modes intermittents qui ne sont pas compl\u00e9t\u00e9s par du stockage. \n\nLa cons\u00e9quence est \"juste\" un recours accru au charbon alors que le plan \u00e9tait de s'en passer (les \u00e9missions instantan\u00e9es de l'\u00e9lectricit\u00e9 sont assez \u00e9lev\u00e9es \u00e0 l'heure o\u00f9 je tape ces lignes : https://lnkd.in/eRvA7w-a ), et \u00e9ventuellement un risque de quelques coupures courtes.\n\nMais le syst\u00e8me peut parfaitement devenir bien plus instable. Il suffit pour cela qu'il y ait de moins en moins de gaz \u00e0 l'avenir (rendez vous demain soir pour le savoir ! https://bit.ly/3h23tja ), pas plus de nucl\u00e9aire (ce qui sera le cas pour les 10 \u00e0 15 ans \u00e0 venir), pas beaucoup de capacit\u00e9s de stockage saisonnier (sans lesquels une hausse de l'\u00e9olien et du solaire ne contribuent que tr\u00e8s peu \u00e0 la s\u00e9curit\u00e9 d'approvisionnement), et pas plus - voire moins - de charbon. \n\nDans nos d\u00e9bats sur l'avenir \u00e9lectrique, nous avons souvent consid\u00e9r\u00e9 que le risque majeur \u00e9tait celui li\u00e9 \u00e0 un mode de production (le nucl\u00e9aire). En fait, il est d'abord de se retrouver avec un syst\u00e8me sur lequel on ne peut plus compter en toutes circonstances. En pareil cas il n'y a plus de sortie facile \u00e0 br\u00e8ve \u00e9ch\u00e9ance." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7005603226947313664,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7005603227807186944,urn:li:activity:7005603227807186944,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 146, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7005603227807186944,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7005603227807186944,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7005603227807186944", + "threadId": "activity:7005603227807186944", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005603227807186944", + "urn": "urn:li:activity:7005603227807186944", + "numComments": 300, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7005603227807186944", + "reactionTypeCounts": [ + { + "count": 2672, + "reactionType": "LIKE" + }, + { + "count": 282, + "reactionType": "INTEREST" + }, + { + "count": 248, + "reactionType": "MAYBE" + }, + { + "count": 54, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "EMPATHY" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7005603227807186944", + "numLikes": 3285, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005603227807186944", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3287, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7005239120478224384", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7005239120478224384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7005239120478224384)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_eu-climate-plan-sacrifices-carbon-storage-activity-7005239120478224384-CJct?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7005239119605825536", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7005239120478224384", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7005239119605825536", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "6ba7MloZtCizoOTZzpFPMQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7777078811448406199", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676232472315?e=1677240000&v=beta&t=Dna6-QwOGpbDsSNZmnJ2d83_M4DxLjx_r8gfd5tfRIE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676232472315?e=1677240000&v=beta&t=1Us5wDqEAlDPoMb3dh0HrXOUy2rmCxBMifADLwPrWoA", + "expiresAt": 1677240000000, + "height": 576 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676232472315?e=1677240000&v=beta&t=uUiTMbjNHlmnKDbD9QRZzYuF8zRmZFy0gjcvuxWtGS4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676232472315?e=1677240000&v=beta&t=NcZBSNlhk0YZqe_Kgzt1zSYa3tBcPqHhwkInXAXdlEY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHnJ4MzeszS0g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7777078811448406199)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7777078811448406199)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "nature.com \u2022 11 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EU climate plan sacrifices carbon storage and biodiversity for bioenergy by nature.com", + "actionTarget": "https://www.nature.com/articles/d41586-022-04133-1#ref-CR1" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EU climate plan sacrifices carbon storage and biodiversity for bioenergy" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7005239119605825536,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La biomasse est-elle \"neutre en carbone\" ? Dit autrement, lorsque l'on utilise de la biomasse (du bois b\u00fbche, des granul\u00e9s de bois, du biogaz, un \"biocarburant\"), peut-on compter pour z\u00e9ro les \u00e9missions de CO2 issues de la combustion du carbone organique contenu dans les v\u00e9g\u00e9taux utilis\u00e9s ?\n\nOui disent g\u00e9n\u00e9ralement les inventaires d'\u00e9mission (dont le bilan carbone). Oui, dit actuellement la r\u00e9glementation europ\u00e9enne ou fran\u00e7aise. Certes il faut compter le carbone fossile utilis\u00e9 pendant le proc\u00e9d\u00e9 de transformation qui va de la plante jusqu'au vecteur \u00e9nerg\u00e9tique qui sera utilis\u00e9 (par exemple pour de l'\u00e9thanol qui remplace de l'essence, il faut compter le carburant et la fabrication du tracteur, la distillation du \"jus\" obtenu apr\u00e8s fermentation des betteraves ou du ma\u00efs, et encore quelques bricoles), mais le carbone qui \u00e9tait contenu dans la plante, non.\n\nCa se discute, explique un \"commentaire\" paru dans Nature (un \"commentaire\" est un article qui ne donne pas lieu \u00e0 un processus de revue par les pairs, la r\u00e9daction de la revue d\u00e9cidant seule si elle le prend ou pas). Car si l'on regarde au plan mondial, il y a de la d\u00e9forestation nette pour obtenir de nouvelles surfaces agricoles.\n\nSi l'Europe rajoute des cultures \u00e9nerg\u00e9tiques en plus des cultures alimentaires, il faut disposer de plus de surface au total. Soit l'Europe d\u00e9foreste chez elle, soit elle importe directement de la biomasse \u00e9nerg\u00e9tique, et alors elle va accro\u00eetre encore plus la d\u00e9forestation \u00e0 l'ext\u00e9rieur, par effet de domino si ce n'est en direct. \n\nSi la population de l'Europe continue d'augmenter un peu, et que les r\u00e9gimes alimentaires ne changent pas, le recours accru \u00e0 la biomasse est donc assur\u00e9 d'engendrer plus de d\u00e9forestation de mani\u00e8re globale. \n\nIncidemment, les auteurs ont postul\u00e9 - de mani\u00e8re surprenante puisque le GIEC souligne abondamment le risque d'un stress accru sur les rendements agricoles - sur une augmentation \u00e0 l'avenir des rendements des cultures. Si l'on enl\u00e8ve cette hypoth\u00e8se optimiste, la conclusion est encore plus nette.\n\nIl y a 20 ans, nous aurions pu choisir d'\u00e9conomiser du gaz et du p\u00e9trole essentiellement par une baisse de la consommation (consommation des v\u00e9hicules neufs baissant bien plus vite, trafic a\u00e9rien limit\u00e9 en volume, r\u00e9novation plus vigoureuse des b\u00e2timents), ce qui aurait permis de diminuer la quantit\u00e9 de p\u00e9trole et de gaz utilis\u00e9s sans avoir besoin de compenser par la biomasse.\n\nEt aujourd'hui ? L'option nucl\u00e9aire en plus comme l'option \u00e9lectricit\u00e9 ENR en plus prenant des d\u00e9cennies pour des quantit\u00e9s significatives, et la rotation du parc (de voitures, de b\u00e2timents r\u00e9nov\u00e9s) \u00e9tant lente, si nous voulons faire manger de la biomasse \u00e0 nos voitures et nos b\u00e2timents existants, il faut en manger moins nous-m\u00eames, sauf \u00e0 sacrifier un peu plus la biodiversit\u00e9. Il n'y a qu'un sol !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7005239119605825536,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7005239120478224384,urn:li:activity:7005239120478224384,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 63, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7005239120478224384,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7005239120478224384,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7005239120478224384", + "threadId": "activity:7005239120478224384", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005239120478224384", + "urn": "urn:li:activity:7005239120478224384", + "numComments": 122, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7005239120478224384", + "reactionTypeCounts": [ + { + "count": 974, + "reactionType": "LIKE" + }, + { + "count": 150, + "reactionType": "INTEREST" + }, + { + "count": 134, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7005239120478224384", + "numLikes": 1277, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005239120478224384", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1277, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7004752069165203457", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7004752069165203457)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7004752069165203457)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_invitation-nouveau-rapport-du-shift-sur-activity-7004752069165203457-5F0y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7004752068309581824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7004752069165203457", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7004752068309581824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "M/k3cyYNN2Tz8bO8BxE0xw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7196578192530557346", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676331116371?e=1677240000&v=beta&t=hU9dAJeAR1dtr2tKDeNDIInagtDe9dOknv613A49B98", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676331116371?e=1677240000&v=beta&t=q4bc8ZN55Pnd_HljdK0tvFjy5fOvVoZ7JOAGHaWHCZ0", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676331116371?e=1677240000&v=beta&t=ijhyQykymxO_G0l_Yp-QR7hpYk_BMhIXaz-hAP3KN_s", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676331116371?e=1677240000&v=beta&t=HHrbcvsgM-2pD-Jw6s0NGlUHv0x9J4Uyc7dxnc3EcC4", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEhDFyuTKuKOQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7196578192530557346)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7196578192530557346)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [INVITATION] Nouveau rapport du Shift sur le gaz | 6 d\u00e9c. \u00e0 18h by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-rapport-gaz-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[INVITATION] Nouveau rapport du Shift sur le gaz | 6 d\u00e9c. \u00e0 18h" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7004752068309581824,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Aurons nous du gaz cet hiver ? Derri\u00e8re cette question s'en cache une autre, qui est la m\u00eame mais \u00e0 des horizons de temps plus \u00e9loign\u00e9s : aurons nous du gaz les hivers d'apr\u00e8s ? The Shift Project vous propose d'assister, le 6 d\u00e9cembre prochain \u00e0 18h, \u00e0 la pr\u00e9sentation d'un travail qui a \u00e9t\u00e9 men\u00e9 par notre association et qui permet entre autres de disserter sur cette question. \n\nPlus pr\u00e9cis\u00e9ment, nous fournirons notre analyse sur les possibilit\u00e9s \"physiques\" maximales (donc avec pour seules limites les capacit\u00e9s de production contraintes par la seule g\u00e9ologie, et les capacit\u00e9s de transport d\u00e9ployables \u00e0 l'avenir) d'approvisionnement en gaz de l'Union Europ\u00e9enne d'ici \u00e0 2050.\n\nNous avons utilis\u00e9 la m\u00eame m\u00e9thode que celle qui avait \u00e9t\u00e9 suivie pour les perspectives d'approvisionnement en p\u00e9trole dans l'Union Europ\u00e9enne d'ici \u00e0 2050 (https://lnkd.in/dwPcgve ). Nous avions alors eu acc\u00e8s \u00e0 une base de donn\u00e9es (non publique) recensant l'int\u00e9gralit\u00e9 des gisements p\u00e9troliers dans le monde, exploit\u00e9s ou non, incluant les gisements restants \u00e0 d\u00e9couvrir (en volume), et des experts du secteur (mentionn\u00e9s en t\u00eate du rapport) en ont d\u00e9duit, apr\u00e8s analyse, la production maximale possible d'ici \u00e0 2050, sous seule contrainte g\u00e9ologique, des 16 premiers pays fournissant l'Europe (qui sont aussi les 16 premiers producteurs mondiaux, hors Br\u00e9sil et Canada).\n\nNous avons reproduit la m\u00eame d\u00e9marche avec les gisements de gaz. Incidemment ces derniers sont pour partie aussi ceux fournissant du p\u00e9trole, puisqu'une partie du gaz produit dans le monde est issu de gisements mixtes (contenant du p\u00e9trole et du gaz).\n\nCe travail - in\u00e9dit en France dans l'espace public - a fait l'objet d'un financement sp\u00e9cifique de RTE (rappelons que 20% environ de l'\u00e9lectricit\u00e9 europ\u00e9enne \u00e9tait produite avec du gaz en 2021), de la Direction g\u00e9n\u00e9rale des relations internationales et de la strat\u00e9gie (DGRIS) du Minist\u00e8re des Arm\u00e9es, et du BRGM, le service g\u00e9ologique national (https://lnkd.in/etMp4BRp).\n\nC'est donc Mardi prochain que vous pourrez \"venir au r\u00e9sultat\". Sans divulg\u00e2cher le r\u00e9sultat, comme disent nos amis qu\u00e9becois, et sans mauvais jeu de mots, vous d\u00e9couvrirez en quoi, apr\u00e8s le p\u00e9trole (dont le flux entrant en Europe devrait baisser de mani\u00e8re massive d'ici \u00e0 2050 m\u00eame si la question climatique n'est pas g\u00e9r\u00e9e), ca risque aussi d'\u00eatre chaud pour le gaz...\n\nInscription gratuite \u00e0 partir de la page en lien dans l'image. Si vous \u00eates journaliste, une conf\u00e9rence de presse aura lieu le m\u00eame jour \u00e0 9h30 (d\u00e9tails d'inscription sur la m\u00eame page). A vos cols roul\u00e9s ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7004752068309581824,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7004752069165203457,urn:li:activity:7004752069165203457,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 31, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7004752069165203457,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7004752069165203457,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7004752069165203457", + "threadId": "activity:7004752069165203457", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004752069165203457", + "urn": "urn:li:activity:7004752069165203457", + "numComments": 86, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7004752069165203457", + "reactionTypeCounts": [ + { + "count": 973, + "reactionType": "LIKE" + }, + { + "count": 92, + "reactionType": "MAYBE" + }, + { + "count": 79, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7004752069165203457", + "numLikes": 1174, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004752069165203457", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1175, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7004364148159471617", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7004364148159471617)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7004364148159471617)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_russia-is-using-energy-as-a-weapon-activity-7004364148159471617-wnvo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7004364146745995264", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7004364148159471617", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7004364146745995264", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "+e+zyrbZ4G+6ReVqoflyUw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9013362913010070605", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675783101554?e=1677240000&v=beta&t=9UnxAAu09oNCZI0y6rULc3Kl3nM9f0f8AOe0QrUfB7Q", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675783101554?e=1677240000&v=beta&t=sdhXF9yc3_bGtwX5GWPpvNlfEJcdc11QU6TzRrFB2ZA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675783101555?e=1677240000&v=beta&t=ult9fJx2cRvoRyqI-KqMyL33CFoockOkPOrswyMcH8o", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675783101555?e=1677240000&v=beta&t=PryQDLdW0XBF4f_4vBkj6Vzl2W8Gt2G4lWHq0__jOqs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHnQFMSY0aQmA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9013362913010070605)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9013362913010070605)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "economist.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Russia is using energy as a weapon by economist.com", + "actionTarget": "https://www.economist.com/interactive/graphic-detail/2022/11/26/high-fuel-prices-could-kill-more-europeans-than-fighting-in-ukraine-has" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Russia is using energy as a weapon" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7004364146745995264,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"Ile ne passera pas l'hiver\" : cette vieille maxime rappelle que le froid tue. Il tue en direct car il augmente les risques cardiovasculaires (le froid stresse un peu le syst\u00e8me circulatoire), et en indirect car il favorise la survie des virus pendant leur s\u00e9jour dans l'air, et nous rassemble dans des int\u00e9rieurs peu ventil\u00e9s o\u00f9 la contamination est plus rapide (c'est pour ces deux raisons que les \u00e9pid\u00e9mies de grippe ont lieu l'hiver).\n\nChez les \u00eatres humains, une saison hivernale plus froide tue donc un peu plus (ce n'est pas le cas pour nombre de v\u00e9g\u00e9taux des moyennes latitudes, o\u00f9 un hiver trop doux n'\u00e9limine pas les ravageurs). En Europe, cet effet de surmortalit\u00e9 hivernale est d'autant plus prononc\u00e9 que la temp\u00e9rature moyenne du pays est \u00e9lev\u00e9e. Un hiver \"plus froid que la normale\" fait donc plus de morts au Portugal qu'en Finlande, parce que dans les pays du Nord les infrastructures sont con\u00e7ues \"\u00e0 la base\" pour prot\u00e9ger les gens du froid alors que ce n'est pas autant le cas au sud.\n\nPar ailleurs, quand les prix de l'\u00e9nergie sont \u00e9lev\u00e9s, les gens se chauffent moins, et cela fait des morts en plus. Cet effet avait d\u00e9j\u00e0 \u00e9t\u00e9 constat\u00e9 au Japon suite \u00e0 Fukushima, et avec l'envol\u00e9e des prix du gaz et de l'\u00e9lectricit\u00e9 sur notre continent, il va malheureusement aussi s'appliquer l'hiver prochain (et possiblement les hivers d'apr\u00e8s, car nous n'avons pas fini d'avoir des sujets avec l'approvisionnement en gaz sur notre continent : https://lnkd.in/dmPNvP3V ).\n\nThe Economist a ainsi fait des simulations sur le nombre de morts que la guerre en Ukraine allait provoquer avec cet effet de hausse des prix. La conclusion est que les morts par d\u00e9faut de chauffage seront plus nombreux que ceux directement li\u00e9s au conflit. Mais \u00e9videmment ce ne sont pas les m\u00eames : sans que ce constat ne porte en quoi que ce soit un jugement de valeur, la guerre tue surtout des gens jeunes et \"bien portants\", le froid surtout des gens \u00e2g\u00e9s et/ou d\u00e9j\u00e0 en mauvaise condition sanitaire.\n\nCe serait en Italie que cet effet serait le plus ample, et en France et en Espagne le moins. \n\nCet \u00e9pisode rappelle qu'il y a une diff\u00e9rence importante entre la sobri\u00e9t\u00e9 et la pauvret\u00e9 : les deux vont avec une baisse de l'\u00e9nergie utilis\u00e9e parce que nous nous passons de services auparavant utilis\u00e9s (par exemple des m\u00e8tres carr\u00e9s chauff\u00e9s), mais dans le premier cas c'est d\u00e9sir\u00e9 et planifi\u00e9 (par exemple on optimise l'occupation des b\u00e2timents existants en diminuant l'\u00e9nergie pour chauffer ou refroidir le parc, mais sans diminuer le confort thermique des occupants), ce qui minimise les cons\u00e9quences d\u00e9sagr\u00e9ables ; dans le second c'est subi alors que nous n'avions rien demand\u00e9, et fatalement ca se passe moins bien." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7004364146745995264,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7004364148159471617,urn:li:activity:7004364148159471617,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 43, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7004364148159471617,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7004364148159471617,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7004364148159471617", + "threadId": "activity:7004364148159471617", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004364148159471617", + "urn": "urn:li:activity:7004364148159471617", + "numComments": 113, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7004364148159471617", + "reactionTypeCounts": [ + { + "count": 1049, + "reactionType": "LIKE" + }, + { + "count": 242, + "reactionType": "INTEREST" + }, + { + "count": 183, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7004364148159471617", + "numLikes": 1490, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004364148159471617", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1490, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7003671719844446208", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7003671719844446208)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7003671719844446208)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_chaleur-renouvelable-la-grande-oubli%C3%A9e-activity-7003671719844446208-feFe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7003671719206879232", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7003671719844446208", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7003671719206879232", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "9uqwDQqVq2LtGAd6tzulKQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8585409607354519917", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676548360767?e=1677240000&v=beta&t=BQCp4N22cu_N9qcnpeoDmA6vyYWox4jBdJz00947Ya0", + "expiresAt": 1677240000000, + "height": 599 + }, + { + "width": 1067, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676548360767?e=1677240000&v=beta&t=FKoVBE-gpJlVEXJBqHCGG9vmC_2mowISwYnrqGVm63g", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676548360767?e=1677240000&v=beta&t=tv1ZYPraSMa833VWWoWZK_RoQSHypygt9e73pcGkXV4", + "expiresAt": 1677240000000, + "height": 119 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676548360767?e=1677240000&v=beta&t=GvGrhaNw9bE3tmiM-K0wn9KsmgYc-9uMJG2OgeSx9lU", + "expiresAt": 1677240000000, + "height": 359 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEDoFy4e7cplA/articleshare-shrink_" + }, + "displayAspectRatio": 0.74875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8585409607354519917)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8585409607354519917)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Chaleur renouvelable : la grande oubli\u00e9e de la strat\u00e9gie \u00e9nerg\u00e9tique fran\u00e7aise ? | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-chaleur-renouvelable" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Chaleur renouvelable : la grande oubli\u00e9e de la strat\u00e9gie \u00e9nerg\u00e9tique fran\u00e7aise ? | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7003671719206879232,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quand on prononce l'expression \"\u00e9nergie renouvelable\", nombre d'entre nous vont inconsciemment remplacer \"\u00e9nergie\" par \"\u00e9lectricit\u00e9\", et, aid\u00e9s en cela par l'image d'Epinal du panneau solaire et de l'\u00e9olienne, au sein de l'\u00e9lectricit\u00e9 on ne pense pas souvent aux barrages, pourtant la premi\u00e8re source d'\u00e9lectricit\u00e9 renouvelable dans le monde (16% du total vs environ 7% pour l'\u00e9olien et 4% pour le solaire) et en France.\n\nMais dans l'\u00e9nergie il n'y a pas que l'\u00e9lectricit\u00e9. Carbone 4 vous propose une publication de 50 pages sur la chaleur, et plus pr\u00e9cis\u00e9ment la chaleur renouvelable, qui, de fait, a re\u00e7u consid\u00e9rablement moins d'attention et de moyens de la part de la puissance publique que l'\u00e9lectricit\u00e9 ces derni\u00e8res d\u00e9cennies, alors que la chaleur est bien plus fossile que l'\u00e9lectricit\u00e9 dans notre pays. D'o\u00f9 la question pos\u00e9e dans le titre : n'avons nous pas \"oubli\u00e9\" l'essentiel, sachant que la chaleur c'est 45% des usages \u00e9nerg\u00e9tiques finaux en France (l'\u00e9lectricit\u00e9 c'est environ 20%).\n\nPompes \u00e0 chaleur a\u00e9rothermiques ou g\u00e9othermiques, pour le chauffage (chaleur basse temp\u00e9rature) ou l'industrie (chaleur haute temp\u00e9rature), bois, solaire thermique, biogaz... : l'\u00e9quipe de Carbone 4 a pass\u00e9 en revue les diverses sources \u00e9ligibles, leurs usages possibles, les potentiels, et les couts. \n\nComme dans l'\u00e9lectricit\u00e9, toutes les sources de chaleur renouvelable ne se valent pas : pas les m\u00eames gisements, pas les m\u00eames efficacit\u00e9s, pas les m\u00eames couts de mise en oeuvre et couts \u00e0 tonne de CO2 \u00e9vit\u00e9e. Comme pour l'\u00e9lectricit\u00e9, certaines sources sont b\u00e9n\u00e9fiques pour le CO2 mais pas sans contreparties sur d'autres impacts : c'est notamment le cas pour la biomasse et la biodiversit\u00e9. \n\n2 applications sont largement sous-d\u00e9velopp\u00e9es (au sens premier du terme : pas assez d\u00e9velopp\u00e9es) en France : le solaire thermique et la g\u00e9othermie (incluant les pompes \u00e0 chaleur).\n\nEn conclusion \"La d\u00e9carbonation de la chaleur en France ne suit pas une trajectoire qui permettrait d\u2019atteindre les objectifs fix\u00e9s dans la loi pour respecter une neutralit\u00e9 carbone \u00e0 horizon 2050\". Avant de savoir quoi faire pour que cette conclusion soit un peu moins valable, cette publication vous permet de comprendre de quelle situation nous partons (et en plus c'est gratuit, c'est pas beau \u00e7a ?)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7003671719206879232,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7003671719844446208,urn:li:activity:7003671719844446208,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 144, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7003671719844446208,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7003671719844446208,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7003671719844446208", + "threadId": "activity:7003671719844446208", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003671719844446208", + "urn": "urn:li:activity:7003671719844446208", + "numComments": 214, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7003671719844446208", + "reactionTypeCounts": [ + { + "count": 2280, + "reactionType": "LIKE" + }, + { + "count": 254, + "reactionType": "INTEREST" + }, + { + "count": 156, + "reactionType": "MAYBE" + }, + { + "count": 51, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "EMPATHY" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7003671719844446208", + "numLikes": 2787, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003671719844446208", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2787, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7003260990230274048", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7003260990230274048)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7003260990230274048)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-cop-27-sest-achev%C3%A9e-il-y-a-peu-il-est-activity-7003260990230274048-SRQ0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7003260989353689088", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7003260990230274048", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7003260989353689088", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "gBtNAdAa106J3B8r0BYGJw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGOEGTIiL_H7Q", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGOEGTIiL_H7Q", + "artifacts": [ + { + "width": 767, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1669707532955?e=1679529600&v=beta&t=NlLx-UB6aFn87i2zEznRCtcrX1TUUYofRjzF5xvP6gw", + "expiresAt": 1679529600000, + "height": 477 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1669707533110?e=1679529600&v=beta&t=Lh7LuBSBKHRkVWbQAloi5UbXCqnMHlMgCWd_5k95UkA", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 767, + "fileIdentifyingUrlPathSegment": "1280/0/1669707533110?e=1679529600&v=beta&t=B7VeYs6XDQm1oy6t1n_kqoGuwVYZEnfAofKSR9wjSxA", + "expiresAt": 1679529600000, + "height": 477 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1669707533110?e=1679529600&v=beta&t=MFi_44HT1B3oVfybH9qVPeH1UQ4KEopS3lf-ovNH8vU", + "expiresAt": 1679529600000, + "height": 299 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1669707533110?e=1679529600&v=beta&t=iX4_CsRKgAZdFcRSVmNlxm-e-aMZb_j3EFDbJ2ih9_4", + "expiresAt": 1679529600000, + "height": 100 + }, + { + "width": 767, + "fileIdentifyingUrlPathSegment": "800/0/1669707533110?e=1679529600&v=beta&t=5o7jBQwLNfiyA9_3My6B80GrY3dwSreE9yGGXUxGpKY", + "expiresAt": 1679529600000, + "height": 477 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGOEGTIiL_H7Q/feedshare-shrink_" + }, + "displayAspectRatio": 0.621903520208605 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7003260989353689088,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La COP 27 s'est achev\u00e9e il y a peu. Il est trop t\u00f4t pour savoir si cette COP aura contribu\u00e9, comme la COP 26, \u00e0 polariser l'opinion de mani\u00e8re plus prononc\u00e9e qu'avant (un article en libre acc\u00e8s dans Nature montre que la COP 26 a conduit la twittosph\u00e8re \u00e0 se polariser bien plus qu'avant, avec un camp \"d'anti\", largement pioch\u00e9 dans les milieux tr\u00e8s conservateurs, qui monte en puissance : https://lnkd.in/eVRJBvhn ).\n\nPar contre il est toujours temps de faire un bilan de l'\u00e9volution des \u00e9missions depuis la signature de la Convention Climat, au Sommet de la Terre en 1992. C'est en effet dans le cadre de cette Convention que se tiennent des rencontres annuelles depuis 1995, appel\u00e9es COP (Convention Of the Parties), qui donnent lieu \u00e0 de nombreux commentaires sur le fait qu'elles aient \u00e9t\u00e9 un succ\u00e8s ou un \u00e9chec.\n\nLe bilan que je vous propose est tout simplement la variation des \u00e9missions plan\u00e9taires de gaz \u00e0 effet de serre entre 1992 et 2021 (graphique ci-dessous). Pour chaque gaz, et chaque source principale pour le CO2, j'ai regard\u00e9 de combien avaient vari\u00e9 les \u00e9missions de 1992 quand on les regarde aujourd'hui. Par exemple, les \u00e9missions de CO2 issu du charbon \u00e9taient en 2021 75% plus \u00e9lev\u00e9 qu'en 1992.\n\nPour l'ensemble du CO2 les \u00e9missions ont augment\u00e9 d'environ 60% en 29 ans, et ainsi de suite.\n\nDans l'ensemble des \u00e9nergies fossiles, c'est aujourd'hui le charbon qui engendre les \u00e9missions les plus fortes, mais c'est le gaz qui a connu la plus forte augmentation sur la p\u00e9riode. \n\n\"Lime calcination\" d\u00e9signe en fran\u00e7ais la calcination du calcaire, c'est \u00e0 dire la r\u00e9action qui a lieu dans les fours \u00e0 ciment (chauff\u00e9s \u00e0 plus de 1000 \u00b0C), o\u00f9 la mol\u00e9cule de calcaire - CaCO3 - est d\u00e9compos\u00e9e en chaux vive - CaO - et du CO2, ce dernier partant dans l'air. la chaux vive se combine avec d'autres min\u00e9raux (marne et argile) pour former le clinker qui, broy\u00e9, donnera le composant principal du ciment. Il se produit annuellement environ 4 milliards de tonnes de ciment dans le monde, conduisant \u00e0 l'\u00e9mission d'environ 2,5 milliards de tonnes de CO2.\n\nLe m\u00e9thane a augment\u00e9 de 25% sur la p\u00e9riode et les autres gaz (protoxyde d'azote et gaz halog\u00e9n\u00e9s) d'environ 50% Aucun n'a baiss\u00e9.\n\nEn regardant ce tableau il est \u00e9vident que d'avoir sign\u00e9 la Convention Climat n'a pour l'heure pas suffit \u00e0 inverser la tendance. On peut au moins en d\u00e9duire une conclusion simple : compter essentiellement sur ces r\u00e9unions pour r\u00e9gler le probl\u00e8me \"\u00e0 notre place\" est une illusion. Si nous voulons que les valeurs de ce graphique deviennent n\u00e9gatives (ce qui est l'objectif) il faudra prendre le taureau par les cornes dans chaque pays pris individuellement.\n\nEn Europe, comme de toute fa\u00e7on la d\u00e9crue d'approvisionnement en combustibles fossiles \u00e9tait amorc\u00e9e avant Poutine, la direction n'est pas n\u00e9gociable. Seules les modalit\u00e9s de la p\u00e9dagogie du probl\u00e8me et les modalit\u00e9s de gestion de la baisse le sont.\n\nDonn\u00e9es diverses et compilation de votre serviteur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7003260989353689088,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7003260990230274048,urn:li:activity:7003260990230274048,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7003260990230274048,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7003260990230274048,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7003260990230274048", + "threadId": "activity:7003260990230274048", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003260990230274048", + "urn": "urn:li:activity:7003260990230274048", + "numComments": 115, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7003260990230274048", + "reactionTypeCounts": [ + { + "count": 1014, + "reactionType": "LIKE" + }, + { + "count": 170, + "reactionType": "INTEREST" + }, + { + "count": 98, + "reactionType": "MAYBE" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7003260990230274048", + "numLikes": 1315, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003260990230274048", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1315, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002900350407966720", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002900350407966720)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002900350407966720)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sondage-exclusif-les-fran%C3%A7ais-trouvent-activity-7002900350407966720-nU0y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002900349405569024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002900350407966720", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002900349405569024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "hoKcJwMpxP8WO52AQwHWbg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8036308201381245324", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675670372974?e=1677240000&v=beta&t=G0WzxIoKLR1_wltPY-Obdk_O7oatLCMsLS6phybYoXc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675670372974?e=1677240000&v=beta&t=fzszG6ZvbnoIvPBXS6wmpLd4LBgEgaFbvz5SM2or5A0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675670372974?e=1677240000&v=beta&t=UM5RmY9T6ra8XHPlyzYiF7-lJdRhYhDWQWfVEEkvC2k", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675670372974?e=1677240000&v=beta&t=9fIDs0KmhYKXbY1KRf1QoiNAWR_makJ5tF48HOQlAUQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHDs8Y3iG5jPg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8036308201381245324)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8036308201381245324)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: SONDAGE EXCLUSIF - Les Fran\u00e7ais trouvent peu lisible la politique \u00e9nerg\u00e9tique du gouvernement by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/politique-societe/societe/sondage-exclusif-les-francais-trouvent-illisible-la-politique-energetique-du-gouvernement-1881508" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "SONDAGE EXCLUSIF - Les Fran\u00e7ais trouvent peu lisible la politique \u00e9nerg\u00e9tique du gouvernement" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002900349405569024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un sondage effectu\u00e9 pour Les Echos sur la politique \u00e9nerg\u00e9tique du gouvernement est publi\u00e9 dans ce journal (\u00e9lectronique ; on devrait plut\u00f4t dire \"publi\u00e9 sur cet \u00e9cran !).\n\nIl fait appara\u00eetre quelques enseignements int\u00e9ressants :\n\n- aucune des questions reproduites dans l'article ne contient les mots \"p\u00e9trole\" ou \"gaz\". Les questions portent quasi-exclusivement sur l'\u00e9lectricit\u00e9 (un travers classique des d\u00e9bats sur l'\u00e9nergie). Il y a une question sur l'ind\u00e9pendance \u00e9nerg\u00e9tique qui peut \u00e9ventuellement s'interpr\u00e9ter en pensant p\u00e9trole, mais c'est tout.\n\n- ensuite les r\u00e9ponses sont parfois gentiment contradictoires les unes avec les autres (ce que fait remarquer l'article), parce que la r\u00e9ponse est souvent dans la question avec cette mani\u00e8re de proc\u00e9der. Les anglais posent souvent des questions comportant leurs propres contreparties (par exemple \"sachant que d'avoir au moins y% d'\u00e9olien demandera qu'\u00e0 un moment il y ait une \u00e9olienne de plus de z m de haut \u00e0 moins de x km de chez vous si vous habitez dans une agglom\u00e9ration de moins de N habitants, \u00eates vous favorable \u00e0 ce d\u00e9veloppement ?\" \n\n- nonobstant ce qui pr\u00e9c\u00e8de on d\u00e9couvre (avec \u00e9tonnement pour moi parce que c'est probablement un revirement r\u00e9cent) que la construction de nouvelles centrales nucl\u00e9aires est vue plus favorablement que la construction de nouvelles \u00e9oliennes. \n\n- la strat\u00e9gie du gouvernement est consid\u00e9r\u00e9e comme \"pas claire\" sur l'\u00e9nergie (en fait l'\u00e9lectricit\u00e9, donc). Mais il est impossible de savoir au vu de ce seul sondage si cela r\u00e9sulte du fait que le gouvernement est consid\u00e9r\u00e9 comme \"pas clair\" quoi qu'il fasse (ce qui est possible voire probable si le pouvoir en place a \u00e9t\u00e9 \"mal \u00e9lu\"), ou bien si l'\u00e9nergie - l'\u00e9lectricit\u00e9 donc - est \"nettement moins claire\" que le reste. Dans ce dernier cas il y a \u00e0 nouveau deux possibilit\u00e9s : que ce soit le r\u00e9sultat logique de revirements (sur le nucl\u00e9aire par exemple), ou un jugement qui cache en fait le d\u00e9sarroi face \u00e0 la valse actuelle des prix (la question n'est pas pos\u00e9e).\n\nSavoir ce que pensent nos concitoyens est essentiel en d\u00e9mocratie. Mais pour avoir une mati\u00e8re suffisamment d\u00e9taill\u00e9e pour en tirer des conclusions pour l'action (l'action pouvant inclure la p\u00e9dagogie du probl\u00e8me quand il est manifeste que ce dernier n'est pas bien appr\u00e9hend\u00e9), il faut aller au del\u00e0 des questions \"trop simples\" des sondages, qui donnent souvent une information incompl\u00e8te - et parfois incoh\u00e9rente - sur la hi\u00e9rarchie des pr\u00e9f\u00e9rences quand on ne peut pas tout avoir. La premi\u00e8re conclusion que je tire de la lecture des r\u00e9sultats est qu'il faut en savoir plus !\n\nNous n'aurons pas deux essais pour b\u00e2tir un syst\u00e8me d\u00e9carbon\u00e9 et durable au 21\u00e8 si\u00e8cle. Pour se donner les meilleures chances d'y parvenir, il faut comprendre \u00e0 la fois les barri\u00e8res physiques et les pr\u00e9f\u00e9rences et barri\u00e8res sociales. Les sondages ne servent \u00e0 rien pour les premi\u00e8res, et pour les secondes il doivent imp\u00e9rativement \u00eatre compl\u00e9t\u00e9s par des analyses plus d\u00e9taill\u00e9es." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002900349405569024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002900350407966720,urn:li:activity:7002900350407966720,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002900350407966720,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002900350407966720,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002900350407966720", + "threadId": "activity:7002900350407966720", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002900350407966720", + "urn": "urn:li:activity:7002900350407966720", + "numComments": 115, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002900350407966720", + "reactionTypeCounts": [ + { + "count": 774, + "reactionType": "LIKE" + }, + { + "count": 60, + "reactionType": "INTEREST" + }, + { + "count": 58, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002900350407966720", + "numLikes": 908, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002900350407966720", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 914, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002749696876150784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002749696876150784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002749696876150784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sales-commercial-marketing-projet-r%C3%A9glementaire-activity-7002749696876150784-3K-J?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002749696234397697", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002749696876150784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002749696234397697", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "XRXpjhwf8Vom24TmYjV8/g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7566106737272260772", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675670043036?e=1677240000&v=beta&t=x1ru5RvXQ49McxndMr5GlDc_RC1phb3s-zKdZ5Em7cw", + "expiresAt": 1677240000000, + "height": 418 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675670043036?e=1677240000&v=beta&t=H7ARJdDbe9KBHwswMCXvK-reBmg1bjSIELTqMLLFYw8", + "expiresAt": 1677240000000, + "height": 627 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675670043036?e=1677240000&v=beta&t=WsZJgYnwBx9JnkqNZ8R3ytkVEMk6ZlsH4IODRfMgrXU", + "expiresAt": 1677240000000, + "height": 83 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675670043036?e=1677240000&v=beta&t=bCu3II122KWOkPJG0sZteD-2r2ErJ_Ox5kvKFOMYSzc", + "expiresAt": 1677240000000, + "height": 250 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHEi-G2uVKrIA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7566106737272260772)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7566106737272260772)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "welcometothejungle.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Sales (Commercial, Marketing, Projet, R\u00e9glementaire) - Carbon4 Finance - CDI \u00e0 Paris by welcometothejungle.com", + "actionTarget": "https://www.welcometothejungle.com/fr/companies/carbon4-finance/jobs/sales-junior-commercial-marketing-projet-reglementaire_paris" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Sales (Commercial, Marketing, Projet, R\u00e9glementaire) - Carbon4 Finance - CDI \u00e0 Paris" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002749696234397697,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Imaginons que vous veniez de terminer des \u00e9tudes sup\u00e9rieures en vue d'avoir une activit\u00e9 dans le monde financier ou dans une fonction commerciale. Imaginons que, pendant vos \u00e9tudes, vous ayez par ailleurs r\u00e9alis\u00e9 que vous ne souhaitiez pas vendre ou financer des voitures \u00e0 essence, des m\u00e8tres carr\u00e9s de centres commerciaux, de l'imperm\u00e9abilisation des sols, des v\u00eatements qui seront port\u00e9s 3 fois, des aliments ou boissons avec plein de sucre, des engins digitaux alimentant la course aux d\u00e9bits, et j'en passe.\n\nIl se pourrait alors que cette annonce de Carbon 4 Finance vous int\u00e9resse : nous cherchons un(e) \"junior sales\" (en bon fran\u00e7ais dans le texte !), qui id\u00e9alement connaisse \u00e0 la fois la finance et les questions environnementales, pour renforcer notre \u00e9quipe commerciale.\n\nTous les d\u00e9tails dans l'annonce ci-dessous !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002749696234397697,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002749696876150784,urn:li:activity:7002749696876150784,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002749696876150784,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002749696876150784,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002749696876150784", + "threadId": "activity:7002749696876150784", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002749696876150784", + "urn": "urn:li:activity:7002749696876150784", + "numComments": 54, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002749696876150784", + "reactionTypeCounts": [ + { + "count": 688, + "reactionType": "LIKE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002749696876150784", + "numLikes": 751, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002749696876150784", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 751, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002601952358375426", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002601952358375426)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002601952358375426)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_air-quality-in-europe-2022-activity-7002601952358375426-xEsX?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002601951557251072", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002601952358375426", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002601951557251072", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "hQyf+kV/Iqv7surn9JU32A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8151027872525130342", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1669316510253?e=1677240000&v=beta&t=lZOCKeTcrBgj3OD_p1FDP8fCrSpyLfcZ3emcslcoCt8", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1669316510253?e=1677240000&v=beta&t=0vyP1Yffr0uIRHdNikiRm4XUQYTglJwFS9R5kW7JGfU", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1669316510253?e=1677240000&v=beta&t=ZUey7RbLLqkJ8fr_JbJq9KZxygaIW1VhErW5LLDJsYA", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1669316510253?e=1677240000&v=beta&t=LHOkK7PguJRoeVo9uy_YBLN3-OP_4u85Djyk2zu_4g0", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE2_RweuB2cWQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8151027872525130342)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8151027872525130342)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "eea.europa.eu \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Air quality in Europe 2022 by eea.europa.eu", + "actionTarget": "https://www.eea.europa.eu/publications/air-quality-in-europe-2022/air-quality-in-europe-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Air quality in Europe 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002601951557251072,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans un rapport qui vient d'\u00eatre publi\u00e9 par l'Agence Europ\u00e9enne de l'Environnement (qui est une des instances officielles de l'Union europ\u00e9enne), figure un chiffre un peu impressionnant : la pollution aux particules fines (en particulier aux particules les plus fines, sous 2,5 microns) a engendr\u00e9 en 2020 plus de 200.000 morts pr\u00e9matur\u00e9s au sein des 27 pays membres, ou encore des millions d'ann\u00e9es de vie perdues.\n\nCette pollution engendre aussi de la morbidit\u00e9 chronique (affections bronchiques et pulmonaires notamment) qui peuvent conduire \u00e0 des invalidit\u00e9s partielles. Ce sont les pays de l'Est qui payent le plus lourd tribut \u00e0 cette pollution en nombre de vies perdues pour 100.000 habitants.\n\nLa pollution aux oxydes d'azote (qui vient de toute source de combustion) engendre elle aussi des morts pr\u00e9matur\u00e9 ainsi que du diab\u00e8te, et l'ozone des probl\u00e8mes respiratoires et aussi des morts pr\u00e9matur\u00e9s.\n\n90% de la population urbaine europ\u00e9enne est ainsi expos\u00e9e \u00e0 des niveaux de pollution qui exc\u00e8dent les seuils recommand\u00e9s par l'OMS. Les particules les plus fines viennent surtout de la combustion des \u00e9nergies fossiles : transports (qui sont aussi la premi\u00e8re source d'oxydes d'azote), chaudi\u00e8res de b\u00e2timents, et \u00e9lectricit\u00e9 faite au gaz et au charbon (une centrale \u00e0 charbon en rejette des dizaines de tonnes par milliard de kWh produit). \n\nDiminuer la quantit\u00e9 d'\u00e9nergies fossiles que nous utilisons a donc aussi un b\u00e9n\u00e9fice sanitaire. En fait il est m\u00eame double : passer \u00e0 plus de modes actifs dans les transports (marcher ou p\u00e9daler) \u00e9vite \u00e0 la fois des \u00e9missions de CO2 et de polluants locaux, et \u00e9vite de la s\u00e9dentarit\u00e9, qui est aussi un facteur important de baisse de la condition sanitaire. \n\nL'\u00e9quation n'est \u00e9videmment pas si simple, parce que, compar\u00e9 \u00e0 il y a un si\u00e8cle, l'\u00e9nergie abondante est aussi ce qui nous a amen\u00e9 la suffisance alimentaire (production accrue de nourriture et moyens de stockage et de transport performants), la protection contre les \u00e9l\u00e9ments (froid notamment), et la prophylaxie (eau potable, d\u00e9tergents et d\u00e9sinfectants). Mais il est tout \u00e0 fait possible de bouger progressivement le curseur pour conserver ces acquis tout en d\u00e9carbonant fortement notre mode de vie. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002601951557251072,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002601952358375426,urn:li:activity:7002601952358375426,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 90, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002601952358375426,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002601952358375426,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002601952358375426", + "threadId": "activity:7002601952358375426", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002601952358375426", + "urn": "urn:li:activity:7002601952358375426", + "numComments": 165, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002601952358375426", + "reactionTypeCounts": [ + { + "count": 1868, + "reactionType": "LIKE" + }, + { + "count": 231, + "reactionType": "INTEREST" + }, + { + "count": 117, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "APPRECIATION" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002601952358375426", + "numLikes": 2286, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002601952358375426", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2287, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002220857016119296", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002220857016119296)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002220857016119296)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_laugmentation-des-tarifs-de-lassurance-activity-7002220857016119296-_SG_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002220856265297920", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002220857016119296", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002220856265297920", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "I66IvLBFoubs8yScBSggew==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8423740630780296532", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675805509728?e=1677240000&v=beta&t=-Echq-g8P-gZ5EuK7PfmVNLAyRlRJnW5gDd2iYwyq_A", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675805509728?e=1677240000&v=beta&t=lvHY1vbDuQsuXhtOrwabVkXtJ9UsZbyt9rbC-V45xiY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675805509728?e=1677240000&v=beta&t=eSCSksqnoHXZQXDjw8sG1s4ycxs_ruailwGSd5JIzk4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675805509728?e=1677240000&v=beta&t=mZj_7DZkjXTou8JGTaXv0YIUukEnW_7hnlGORA-qTII", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHmip5sxOcWHA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8423740630780296532)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8423740630780296532)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab L'augmentation des tarifs de l'assurance est in\u00e9vitable \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/banque-assurances/laugmentation-des-tarifs-de-lassurance-est-inevitable-1882711" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0L'augmentation des tarifs de l'assurance est in\u00e9vitable\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002220856265297920,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a fort fort longtemps, la gestion du risque se faisait en ne comptant que sur ses propres forces et une solidarit\u00e9 \"de proximit\u00e9\". Le paysan normand du Moyen Age qui avait de mauvaises r\u00e9coltes ne pouvait gu\u00e8re compter sur le proven\u00e7al ou le lorrain pour le sortir de ce mauvais pas. Le portugais qiu a vu sa maison d\u00e9truire par le s\u00e9isme de Lisbonne en 1755 ne pouvait pas vraiment compter sur le ch'ti ou m\u00eame le basque pour l'aider \u00e0 reconstruire plus vite.\n\nNous vivons aujourd'hui dans un monde o\u00f9 il en va tout autrement. Tout d'abord, gr\u00e2ce \u00e0 l'\u00e9nergie abondante, la r\u00e9paration apr\u00e8s dommage est bien plus facile. Notre maison est reconstruite par des cimenteries, des camions, des grues et des aci\u00e9ries (donc de l'\u00e9nergie) ; les r\u00e9coltes insuffisantes ici sont compens\u00e9es par des cultures exc\u00e9dentaires \"ailleurs\" qui sont elles-m\u00eames produites et achemin\u00e9es gr\u00e2ce \u00e0 des usines d'engrais, tracteurs, camions, entrep\u00f4ts et j'en passe (de l'\u00e9nergie \u00e0 nouveau).\n\nLa mise \u00e0 disposition des victimes des ressources physiques permettent de reconstruire ou compenser est par ailleurs effectu\u00e9e par la mise en commun de moyens \u00e9conomiques, par le biais de l'assurance.\n\nDeux \u00e9volutions vont venir contrarier ce m\u00e9canismes \u00e0 l'avenir :\n\n- le premier, largement \u00e9voqu\u00e9 dans cette interview du DG de Groupama dans Les Echos, est l'augmentation des sinistres que l'\u00e9volution climatique va engendrer : r\u00e9coltes plus souvent atteintes, patrimoine b\u00e2ti plus souvent d\u00e9grad\u00e9 (voir \u00e0 ce propos https://bit.ly/3OH6C4f qui rappelle que la s\u00e9cheresse cause d'importants dommages par r\u00e9tractation gonflement des argiles)\n\n- le second, non \u00e9voqu\u00e9, est que notre capacit\u00e9 \u00e0 reconstruire va s'affaiblir, puisque la d\u00e9crue \u00e9nerg\u00e9tique va fatalement diminuer aussi la quantit\u00e9 d'acier, de ciment, de camions et de grues dont nous pourrons disposer.\n\nLa traduction \u00e9conomique de cette double \u00e9volution n'est pas difficile \u00e0 deviner, et c'est exactement celle \u00e9voqu\u00e9e dans cette interview : des primes plus \u00e9lev\u00e9es (il va donc y avoir aussi de l'inflation \"r\u00e9elle\" - rapport\u00e9e au revenu en clair - dans l'assurance, comme en fait partout d\u00e8s lors que les ressources physiques baissent ; c'est m\u00e9canique) et des dommages moins bien couverts (l'interview\u00e9 parle d'exclusion croissante de certains biens de l'assurance dommage des habitations par exemple).\n\nDans un monde structurellement inflationniste par rapport aux revenus r\u00e9els, nous allons devoir renoncer. Il est probablement plus facile de renoncer \u00e0 la 5G pour regarder Netflix dans le m\u00e9tro, \u00e0 la construction de stades climatis\u00e9s pour jouer au foot, ou au Black Friday pour avoir un v\u00eatement en plus, que de renoncer \u00e0 garder un toit en cas de coup dur ou avoir de quoi manger si le climat est adverse.\n\nEn tout \u00e9tat de cause, cette interview rappelle - m\u00eame si ce n'est pas sympathique - qu'\u00e0 ne vouloir rien abandonner nous prenons le risque de perdre beaucoup plus." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002220856265297920,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002220857016119296,urn:li:activity:7002220857016119296,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 102, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002220857016119296,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002220857016119296,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002220857016119296", + "threadId": "activity:7002220857016119296", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002220857016119296", + "urn": "urn:li:activity:7002220857016119296", + "numComments": 164, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002220857016119296", + "reactionTypeCounts": [ + { + "count": 2115, + "reactionType": "LIKE" + }, + { + "count": 302, + "reactionType": "INTEREST" + }, + { + "count": 237, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002220857016119296", + "numLikes": 2724, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002220857016119296", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2726, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7001982091718443008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7001982091718443008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7001982091718443008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-m%C3%AAme-%C3%A0-lautomne-la-s%C3%A9cheresse-reste-activity-7001982091718443008-KWuL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7001982090997047297", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7001982091718443008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7001982090997047297", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "343zj8ry/TVVSX0GBF3EJA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9089597486000845732", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675646722797?e=1677240000&v=beta&t=He1rK_g2f3pezbcmLz-o1cVeRN7pvFZfZNbFz36e3A8", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675646722798?e=1677240000&v=beta&t=X7LOGLkKzK9RUSq6TdhegvG5--G32Xkscyaw3Uzh_4c", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675646722798?e=1677240000&v=beta&t=DcazK0DmmPw18mtC5ABkdr1Aibx9RaSnJjWn2UYLnoE", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675646722798?e=1677240000&v=beta&t=pf5syXLkO4oeoGwesABh4bZ7RI1lQRaRFOWc5RzzxWs", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEvkcZbNlZTqg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9089597486000845732)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9089597486000845732)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "courrierinternational.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat. M\u00eame \u00e0 l\u2019automne, la s\u00e9cheresse reste d\u2019actualit\u00e9 en Espagne by courrierinternational.com", + "actionTarget": "https://www.courrierinternational.com/article/climat-meme-a-l-automne-la-secheresse-reste-d-actualite-en-espagne" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat. M\u00eame \u00e0 l\u2019automne, la s\u00e9cheresse reste d\u2019actualit\u00e9 en Espagne" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7001982090997047297,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Cela fait maintenant 2 mois que c'est l'automne. Normalement c'est la saison des feuilles mortes, et surtout l'\u00e9poque d'un temps nettement plus humide que ne l'a \u00e9t\u00e9 la p\u00e9riode estivale.\n\nMais en Espagne il y a eu un d\u00e9ficit de pr\u00e9cipitations d'environ 25% depuis le 1er septembre, rapporte Courrier International. En cons\u00e9quence, les r\u00e9serves d'eau sont bien plus vides que celles de gaz, et notre voisin va devoir imposer des restrictions sur l'usage de l'eau alors que nous devrions ne plus avoir de tels probl\u00e8mes \u00e0 cette \u00e9poque.\n\nLa France n'est pas non plus \u00e9pargn\u00e9e en totalit\u00e9 : il y a encore de nombreuses r\u00e9gions en France qui sont toujours en niveau \"crise\" pour l'approvisionnement en eau : https://lnkd.in/gG9eZM8\n\nRappelons, m\u00eame si ce n'est pas dr\u00f4le, qu'il est pr\u00e9vu que la d\u00e9rive climatique entra\u00eene une baisse des pr\u00e9cipitations sur toute la partie sud de l'Europe, Espagne et France comprises. Cela va mettre sous pression la production agricole, les \u00e9cosyst\u00e8mes, la production hydro\u00e9lectrique, et les infrastructures, puisque la s\u00e9cheresse favorise la r\u00e9tractation-gonflement des argiles, qui peut fortement d\u00e9grader une bonne partie des b\u00e2timents et voies de communication construits r\u00e9cemment (https://lnkd.in/ee_AXXbQ ).\n\nIl n'est donc toujours pas temps d'utiliser l'expression \"beau temps\" quand il fait soleil. Il faudrait attendre la disparition de la totalit\u00e9 des restrictions d'usage de l'eau en France et en Espagne !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7001982090997047297,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7001982091718443008,urn:li:activity:7001982091718443008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 59, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7001982091718443008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7001982091718443008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7001982091718443008", + "threadId": "activity:7001982091718443008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001982091718443008", + "urn": "urn:li:activity:7001982091718443008", + "numComments": 102, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7001982091718443008", + "reactionTypeCounts": [ + { + "count": 1064, + "reactionType": "LIKE" + }, + { + "count": 169, + "reactionType": "INTEREST" + }, + { + "count": 161, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7001982091718443008", + "numLikes": 1429, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001982091718443008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1431, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7001543092705095681", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7001543092705095681)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7001543092705095681)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_black-friday-de-bonnes-affaires-sauf-pour-activity-7001543092705095681-Tm7L?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7001543092034011136", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7001543092705095681", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7001543092034011136", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "N66efto4bH00mc3s9A3q8g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7798340498303405476", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675595431832?e=1677240000&v=beta&t=0jruQcEIxQoE7WzvHM5ThEk8BWxsMd6-wpn20LGWzb0", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1199, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675595431832?e=1677240000&v=beta&t=A_KvfPDKYEJWZlbCUmxOlhQDmhzs2NVYK7OuJWyecB4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675595431832?e=1677240000&v=beta&t=8amhkhstLZHm_IwJzv6yIjfmflewJMr94fXaTTlf11M", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675595431832?e=1677240000&v=beta&t=zaQ5oy8-YR7NvwDUUB9pI9qaP5MetgWj9dTRdj_uVtQ", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQERbGygi-59dQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7798340498303405476)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7798340498303405476)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Black Friday, de bonnes affaires sauf pour le climat | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/analyse-black-friday" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Black Friday, de bonnes affaires sauf pour le climat | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7001543092034011136,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le \"Vendredi noir\" commence demain (et est devenu un week-end noir en pratique, m\u00eame s'il n'est pas question d'accidents de la route). Cette f\u00eate commerciale venue tout droit des USA apr\u00e8s Halloween (\"where else\" pourrait demander un acteur c\u00e9l\u00e8bre) est une incitation de plus \u00e0 se ruer dans les magasins puis sur son compte en banque pour acheter \u00e0 moiti\u00e9 prix des choses sans lesquelles nous allons n\u00e9cessairement nous trouver tr\u00e8s mal.\n\nCette journ\u00e9e de promotion augmente de mani\u00e8re tr\u00e8s forte les ventes en ligne, qui elles-m\u00eames augmentent de mani\u00e8re forte le fret a\u00e9rien - le plus polluant de tous - ainsi que la livraison du dernier kilom\u00e8tre, bien plus souvent faite en camionnette qu'en v\u00e9lo \u00e9lectrique.\n\nC'est une des cons\u00e9quences du fait que les objets promus sont rarement fabriqu\u00e9s en France, qu'il s'agisse d'\u00e9lectrom\u00e9nager, de v\u00eatements, ou encore d'\u00e9lectronique. Sur ce dernier poste, du reste, cette journ\u00e9e vient se combiner avec la coupe du monde, qui, dans le pass\u00e9, a \u00e9t\u00e9 un gros acc\u00e9l\u00e9rateur de la vente de t\u00e9l\u00e9visions \u00e0 grand \u00e9cran (pour mieux voir les matchs), des objets eux-m\u00eames tr\u00e8s \u00e9nergivores \u00e0 la fabrication. \n\nUn petit clic sur un site de vente en ligne sera donc une petite claque pour le climat, puisque les objets command\u00e9s n'arrivent pas par pigeon voyageur, ne sont pas fabriqu\u00e9s uniquement en rotin dans le village d'\u00e0-cot\u00e9, et poussent \u00e0 la hausse la fabrication d'emballages... et les d\u00e9chets qui vont avec.\n\nUne autre cons\u00e9quence de la fabrication \"lointaine\" des objets sur lesquels nous allons nous ruer est que leur consommation accrue d\u00e9s\u00e9quilibre la balance commerciale (puisque quasiment tout est import\u00e9). \n\nCette incitation \u00e0 faire un peu plus les cigales ne va donc pas vraiment dans la bonne direction c\u00f4t\u00e9 climat, comme le rappelle cet article publi\u00e9 sur le site de Carbone 4, et n'est pas vraiment raccord avec la sobri\u00e9t\u00e9 tant vant\u00e9e par le gouvernement (mais nous ne sommes pas \u00e0 une contradiction pr\u00e8s). \n\nPlut\u00f4t que de singer les am\u00e9ricains, nous devrions faire un Vendredi vert, avec des promotions sur les v\u00e9los (qu'il faut fabriquer plus en France, composants inclus), les isolants pour les murs, les pompes \u00e0 chaleur et la reprise des cols de chemise \u00e9lim\u00e9s !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7001543092034011136,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7001543092705095681,urn:li:activity:7001543092705095681,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 270, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7001543092705095681,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7001543092705095681,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7001543092705095681", + "threadId": "activity:7001543092705095681", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001543092705095681", + "urn": "urn:li:activity:7001543092705095681", + "numComments": 394, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7001543092705095681", + "reactionTypeCounts": [ + { + "count": 6669, + "reactionType": "LIKE" + }, + { + "count": 541, + "reactionType": "PRAISE" + }, + { + "count": 291, + "reactionType": "APPRECIATION" + }, + { + "count": 106, + "reactionType": "MAYBE" + }, + { + "count": 90, + "reactionType": "INTEREST" + }, + { + "count": 70, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7001543092705095681", + "numLikes": 7767, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001543092705095681", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7774, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7001300260295696384", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7001300260295696384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7001300260295696384)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_augustin-de-romanet-la-course-au-volume-activity-7001300260295696384-SAV6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7001300259519758336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7001300260295696384", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7001300259519758336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "IQy7r1/PPJWtQh3uq4SMsg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8259246450223429300", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675931543568?e=1677240000&v=beta&t=kCucKym5y9DMjKYciFFxE-U9X5q03oy02ENRMexWK2o", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675931543568?e=1677240000&v=beta&t=iO5EgkW6ga8KjwdMcc61yHd5H8W27CoWKVKM51mqBuM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675931543569?e=1677240000&v=beta&t=RYrDBqjeQ1KdEWeHBPyxbAFqJF-CFpB853OFsF1rIoA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675931543569?e=1677240000&v=beta&t=KqyRfrq7KorueY2p1138FBuaWv3Dz24C56K2c-1tHPE", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQG94VINE3HRvA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8259246450223429300)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8259246450223429300)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Augustin de Romanet : \u00abLa course au volume dans l'a\u00e9rien doit passer apr\u00e8s la d\u00e9carbonation\u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/augustin-de-romanet-laerien-doit-cesser-la-course-au-volume-1880072" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Augustin de Romanet\u00a0: \u00abLa course au volume dans l'a\u00e9rien doit passer apr\u00e8s la d\u00e9carbonation\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7001300259519758336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si dans une interview vous lisez les propos suivants :\n- qu'il faut faire passer la d\u00e9carbonation avant la croissance en volume dans l'a\u00e9rien\n- qu'il est d\u00e9raisonnable de multiplier les vols long-courriers pour un week-end ou quelques jours de vacances\n- que si les gens ne sont pas raisonnables il finira par y avoir des quotas de vols par an et par personne\n\n\u00e0 qui aurez vous envie de les attribuer ? \n\nUne premi\u00e8re r\u00e9ponse \"intuitive\" ne sera probablement pas l'auteur effectif de ces propos, \u00e0 savoir... le patron d'A\u00e9roports de Paris. Et pourtant c'est tr\u00e8s exactement ce qui est contenu dans cette interview parue dans Les Echos.\n\nCertes l'auteur des propos ajoute qu'il n'est pas favorable \u00e0 de tels quotas, et qu'il ne souhaite pas que l'on prive les fran\u00e7ais de la possibilit\u00e9 de d\u00e9couvrir le monde gr\u00e2ce \u00e0 l'avion. Mais il n'emp\u00eache : cet appel \u00e0 la mod\u00e9ration est une premi\u00e8re dans le secteur a\u00e9rien en France, o\u00f9 la r\u00e8gle jusqu'\u00e0 maintenant \u00e9tait plut\u00f4t que la technique allait se charger de r\u00e9gler la question carbonique pendant que le trafic poursuivrait sa croissance, et qu'il \u00e9tait hors de question d'entraver cette derni\u00e8re volontairement.\n\nLa situation actuelle n'est pourtant pas durable. L'aviation consommait environ 8% du p\u00e9trole mondial avant covid. Si on transformait en agrocarburants la totalit\u00e9 des 4 premi\u00e8res cultures mondiales (bl\u00e9 - ma\u00efs - riz - soja) cela ferait \"juste\" 25% du p\u00e9trole mondial : il est d\u00e8s lors difficile d'imaginer que l'on va massivement se priver de cultures v\u00e9g\u00e9tales (au surplus dans un monde o\u00f9 les rendements vont \u00eatre attaqu\u00e9s par le r\u00e9chauffement climatique) pour avoir simplement le plaisir de passer d'un continent \u00e0 l'autre pour aller \u00e0 l'h\u00f4tel. \n\nCertes si on d\u00e9vie massivement des cultures pour alimenter des avions plut\u00f4t que des estomacs ce ne seront pas les m\u00eames qui profiteront des voyages et qui auront faim, mais quand m\u00eame.\n\nSi l'on parle d'hydrog\u00e8ne, pour servir en carburant les avions d\u00e9collant de France il faudrait y consacrer un petit quart de la production \u00e9lectrique fran\u00e7aise : l\u00e0 aussi je pense que toute personne un peu sens\u00e9e ne prendra pas le pari sur ses propres \u00e9conomies que l'on va y arriver bient\u00f4t.\n\nDonc oui, dans un monde sans carbone et donc sans p\u00e9trole il y aura beaucoup moins d'avions qu'aujourd'hui. Se pr\u00e9parer \u00e0 la d\u00e9crue dans ce domaine n'est surement pas l'option la plus confortable intellectuellement \u00e0 court terme, mais \u00e0 un horizon plus lointain c'est n\u00e9anmoins la meilleure. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7001300259519758336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7001300260295696384,urn:li:activity:7001300260295696384,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 175, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7001300260295696384,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7001300260295696384,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7001300260295696384", + "threadId": "activity:7001300260295696384", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001300260295696384", + "urn": "urn:li:activity:7001300260295696384", + "numComments": 329, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7001300260295696384", + "reactionTypeCounts": [ + { + "count": 5578, + "reactionType": "LIKE" + }, + { + "count": 413, + "reactionType": "INTEREST" + }, + { + "count": 364, + "reactionType": "MAYBE" + }, + { + "count": 258, + "reactionType": "PRAISE" + }, + { + "count": 56, + "reactionType": "APPRECIATION" + }, + { + "count": 37, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7001300260295696384", + "reacted": "LIKE", + "numLikes": 6706, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001300260295696384", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6710, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7000731729195888642", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7000731729195888642)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7000731729195888642)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_coupe-du-monde-2022-le-mirage-de-la-compensation-activity-7000731729195888642-J80S?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7000731728361222144", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7000731729195888642", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7000731728361222144", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "lvztjMSFj9sKP2+WntzEiQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8534559222220643578", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676412388842?e=1677240000&v=beta&t=U0Z1Q1-5ccDYHFjsDXM7Q_DfRIf7uQne2QNs705d0OM", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676412388843?e=1677240000&v=beta&t=syzE4CzJlz3EKQoSFFiNjKRvC7TON5KA9MkLH65x1f0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676412388843?e=1677240000&v=beta&t=LL9Fas58rSzWCWckICpN9JL-Y028Uu9VZCuur3LY_P8", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676412388843?e=1677240000&v=beta&t=eybCRC6o0tmiS3EhPz3h02m_I8TAhb5KGIe1OOM5gOE", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGgqymP3wEOAQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8534559222220643578)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8534559222220643578)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Coupe du monde 2022 : le mirage de la compensation carbone pour atteindre la \u00ab neutralit\u00e9 \u00bb promise par la FIFA by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/football/article/2022/11/18/coupe-du-monde-2022-le-mirage-de-la-compensation-carbone-pour-atteindre-la-neutralite-promise-par-la-fifa_6150404_1616938.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Coupe du monde 2022\u00a0: le mirage de la compensation carbone pour atteindre la \u00ab\u00a0neutralit\u00e9\u00a0\u00bb promise par la FIFA" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7000731728361222144,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si cette information rapport\u00e9e par Le Monde est exacte, la F\u00e9d\u00e9ration Internationale de Football (FIFA) a des progr\u00e8s \u00e0 faire en mati\u00e8re de compr\u00e9hension de la science du climat.\n\nDe Google \u00e0 Microsoft, en passant par le transport a\u00e9rien ou... La Poste, de nombreuses entreprises ou organisations ont affirm\u00e9 pouvoir r\u00e9duire leur impact sur le climat \u00e0 z\u00e9ro par le biais de la \"compensation\". La technique est en apparence simple et de bon gout : on compte les \u00e9missions associ\u00e9es \u00e0 l'organisation (id\u00e9alement en les limitant au plus petit p\u00e9rim\u00e8tre possible), puis on ach\u00e8te des \"cr\u00e9dits carbone\" qui sont cens\u00e9s correspondre \u00e0 des \u00e9missions \u00e9vit\u00e9es (ou du carbone s\u00e9questr\u00e9 par reforestation) ailleurs, et le tour est jou\u00e9 : plus et moins ca fait z\u00e9ro.\n\nSauf que... pour les raisons expliqu\u00e9es en r\u00e9sum\u00e9 sur https://lnkd.in/dGTt6Zs , cette approche n'a pas de fondement scientifique. Elle donne donc au final l'illusion que l'activit\u00e9 consid\u00e9r\u00e9e peut continuer comme aujourd'hui dans un monde neutre en carbone, alors que c'est l'exact inverse qui est vrai : dans un tel monde, la quasi-totalit\u00e9 des organisations ou entreprises ne peuvent garder les m\u00eames clients, pour leur vendre la m\u00eame chose, fabriqu\u00e9e ou mise \u00e0 disposition de la m\u00eame mani\u00e8re. \n\nPar ailleurs la comptabilit\u00e9 m\u00eame des cr\u00e9dits carbone est tr\u00e8s discutable : elle ne tient pas compte du moment effectif d'\u00e9vitement (maintenant ou beaucoup plus tard), et attribue \u00e0 l'acheteur du cr\u00e9dit la totalit\u00e9 des \u00e9missions \u00e9vit\u00e9es par un projet alors m\u00eame que l'acheteur ne finance qu'une partie de ce qui permet cet \u00e9vitement. \n\nLa FIFA nous raconte donc des salades en consid\u00e9rant que, dans un monde sans \u00e9missions du tout, elle pourra continuer \u00e0 organiser des manifestations demandant 1 million de touristes a\u00e9roport\u00e9s, se rendant dans un stade climatis\u00e9, l'ensemble \u00e9tant financ\u00e9 par des recettes publicitaires de vendeurs de tout un tas de trucs qui ne pourront plus fabriquer une large partie de leurs produits.\n\nCette affirmation de \"neutralit\u00e9\" est - c'est de circonstance - se mettre la t\u00eate dans le sable, parce que \u00e0 l'\u00e9vidence dans un monde sans \u00e9missions les manifestations sportives \"plan\u00e9taires\" seront plus rares et plus modestes.\n\nEt, pour parler de neutralit\u00e9, la bonne approche est de compter s\u00e9par\u00e9ment sa contribution aux puits et ses \u00e9missions induites, et de se demander ce qui passe toujours dans un monde o\u00f9 les \u00e9missions globales baissent de 5% par an. Le bagage m\u00e9thodologique existe pour cela (voir https://lnkd.in/db7JzB2q ), mais s'y lancer demande \u00e9videmment plus de courage que de faire un communiqu\u00e9 de presse sans fondement !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7000731728361222144,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7000731729195888642,urn:li:activity:7000731729195888642,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 129, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7000731729195888642,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7000731729195888642,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7000731729195888642", + "threadId": "activity:7000731729195888642", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000731729195888642", + "urn": "urn:li:activity:7000731729195888642", + "numComments": 181, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7000731729195888642", + "reactionTypeCounts": [ + { + "count": 3001, + "reactionType": "LIKE" + }, + { + "count": 260, + "reactionType": "INTEREST" + }, + { + "count": 215, + "reactionType": "PRAISE" + }, + { + "count": 96, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "APPRECIATION" + }, + { + "count": 17, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7000731729195888642", + "numLikes": 3629, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000731729195888642", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3642, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7000475429773963264", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7000475429773963264)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7000475429773963264)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_autonomie-%C3%A9nerg%C3%A9tique-ces-villes-qui-y-activity-7000475429773963264-Jlqq?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7000475428607901696", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7000475429773963264", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7000475428607901696", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "f/BA4ybp1CilKh3HN4oKzQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8392422123000208391", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676302316259?e=1677240000&v=beta&t=knQHvM3w1p7CfRWt7HLljKWLGtSmRK_JyBX_IgtSfXQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676302316259?e=1677240000&v=beta&t=hLwVRg_QnCoChvXOzmjy9fVZ0NcMWVxCQJsX5zeRGjo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676302316259?e=1677240000&v=beta&t=0JXBaU49PmY1cKrNIWLWmpVEJl-J15P980uhoBMR_uo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676302316260?e=1677240000&v=beta&t=DHvhJDRpNpzieKhUfVWzt5vp1zbtndy-WWrYN-NmoJs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFFJ3l1Gux0RA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8392422123000208391)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8392422123000208391)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Autonomie \u00e9nerg\u00e9tique : ces villes qui y sont presque by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/autonomie-energetique-ces-villes-qui-y-sont-presque-1879686" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Autonomie \u00e9nerg\u00e9tique\u00a0: ces villes qui y sont presque" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7000475428607901696,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les Echos sont tomb\u00e9s dans le panneau... publicitaire de certains \u00e9lus locaux. Un certain nombre de communes revendiquent d\u00e9sormais une \"autonomie \u00e9nerg\u00e9tique\". Cette expression v\u00e9hicule explicitement l'id\u00e9e qu'un territoire pourrait se replier sur lui-m\u00eame, et vivre \u00e0 l'avenir en ne comptant que sur ses propres forces. Fini la d\u00e9pendance aux autres, et en route vers le paradis !\n\nMalheureusement, cette expression rel\u00e8ve d'une illusion d'optique. Tout d'abord, m\u00eame en se limitant aux consommations directes des m\u00e9nages (sans parler des entreprises, g\u00e9n\u00e9ralement non prises en compte), l'\u00e9nergie consid\u00e9r\u00e9e est le plus souvent (voire quasiment toujours ) limit\u00e9e \u00e0 l'\u00e9lectricit\u00e9, le gaz \u00e9tant parfois (mais rarement) inclus. C'est oublier un peu vite que la premi\u00e8re \u00e9nergie finale consomm\u00e9e en France c'est le p\u00e9trole. Et les puits de p\u00e9trole sont rares en France !\n\nM\u00eame les communes qui produiraient des cultures pour agrocarburants ne peuvent utiliser ces derniers purs : il n'existe pas de moteur de voiture \u00e0 l'\u00e9thanol ou \u00e0 l'huile de colza en France. \n\nEnsuite une large partie de l'\u00e9nergie consomm\u00e9e par les m\u00e9nages est incorpor\u00e9e dans les aliments, v\u00eatements, objets et services publics ou priv\u00e9s dont ils b\u00e9n\u00e9ficient : o\u00f9 est l'autonomie \u00e9nerg\u00e9tique quand on d\u00e9pend des mines de charbon australiennes et de la marine marchande mondiale pour avoir des objets en acier ?\n\nEnfin cette notion \"d'autonomie \u00e9nerg\u00e9tique\" (et \"d'\u00e9nergie positive\") est apparue avec les renouvelables. Je n'ai jamais entendu une commune poss\u00e9dant un barrage ou une centrale nucl\u00e9aire la revendiquer, alors qu'elle serait nettement plus justifi\u00e9e dans ces derniers cas si le concept \u00e9tait valide !\n\nIncidemment, si l'autonomie uniquement \u00e9lectrique \u00e9tait r\u00e9elle pour les communes qui la revendiquent \u00e0 cause de leurs \u00e9oliennes (cas \u00e9voqu\u00e9 dans l'article), cela signifierait que l'on pourrait couper la commune en question du r\u00e9seau national (si on est autonome on n'a plus besoin des autres, correct ?). Mais... avoir une production annuelle \u00e9quivalente \u00e0 la consommation annuelle ne garantirait pas pour autant de l'\u00e9lectricit\u00e9 aux habitants concern\u00e9s les jours avec peu ou pas de vent. Ces communes restent d\u00e9pendantes du r\u00e9seau et donc... ne sont pas autonomes, m\u00eame pour l'\u00e9lectricit\u00e9.\n\nEn fait, dans notre pays, aucune commune ne peut s'extraire de la mondialisation (et donc de l'\u00e9nergie utilis\u00e9e \"ailleurs\"), qui fournit \u00e0 nos habitants logements (qui contiennent de l'acier alors que nous n'avons plus de minerai de fer en France), v\u00e9hicules, aliments et v\u00eatements, et m\u00eame... les \u00e9oliennes qui rendent \"autonomes\" qui sont fabriqu\u00e9es ailleurs !\n\nCela ne nous fait pas courir plus vite dans la bonne direction que de se tromper sur le sens des mots. Pire : en cr\u00e9ant l'illusion d'une s\u00e9curit\u00e9 qui n'existe pas, nous augmentons le risque." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7000475428607901696,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7000475429773963264,urn:li:activity:7000475429773963264,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 133, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7000475429773963264,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7000475429773963264,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7000475429773963264", + "threadId": "activity:7000475429773963264", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000475429773963264", + "urn": "urn:li:activity:7000475429773963264", + "numComments": 258, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7000475429773963264", + "reactionTypeCounts": [ + { + "count": 2875, + "reactionType": "LIKE" + }, + { + "count": 300, + "reactionType": "INTEREST" + }, + { + "count": 191, + "reactionType": "PRAISE" + }, + { + "count": 106, + "reactionType": "MAYBE" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7000475429773963264", + "numLikes": 3506, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000475429773963264", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3515, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7000055382219837440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7000055382219837440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7000055382219837440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-marc-jancovici-the-shift-project-activity-7000055382219837440-qqX7?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7000055381280313344", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7000055382219837440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7000055381280313344", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "qEChE3h2xIs/sX1sdStMqw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7567828376856683698", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676311096259?e=1677240000&v=beta&t=j1ENF_uJOE2upWwOSx8Hhpv7dh9X1BSL3otAgriSX_I", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676311096259?e=1677240000&v=beta&t=j2p3q2NmfdkASONWmfKd0dX5Iu4a54lB8Bpf156vNTQ", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676311096259?e=1677240000&v=beta&t=D_VaU6fhSvzbaOmM_m7YgHq5TIcnjgfPyS3ohEA225M", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676311096259?e=1677240000&v=beta&t=J0gdlKo8X94MhOoSAeJAsRaQCUU7OKqhy-PpjKQn14Y", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGcbPSVCiClrQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7567828376856683698)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7567828376856683698)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lecho.be \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean-Marc Jancovici (The Shift Project): \"Si votre entreprise ne parvient pas \u00e0 d\u00e9carboner, elle devra t\u00f4t ou tard fermer boutique\" by lecho.be", + "actionTarget": "https://www.lecho.be/dossiers/climat/jean-marc-jancovici-the-shift-project-si-votre-entreprise-ne-parvient-pas-a-decarboner-elle-devra-tot-ou-tard-fermer-boutique/10429041" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici (The Shift Project): \"Si votre entreprise ne parvient pas \u00e0 d\u00e9carboner, elle devra t\u00f4t ou tard fermer boutique\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7000055381280313344,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 51, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "9yAvbhjBRkGfQ6M//O60Tw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "A l'occasion d'un p\u00e9riple en Belgique organis\u00e9 par Les Shifters (belges !), l'Echo a publi\u00e9 une interview de votre serviteur. COP 27, hydrog\u00e8ne, sobri\u00e9t\u00e9, nucl\u00e9aire, d\u00e9croissance, taxe carbone et capitalisme (entre autres) ont fait l'objet du classique jeu de questions-r\u00e9ponses. Je profite de l'occasion pour rappeler quelques pr\u00e9cautions d'emploi en pareil cas.\n\nApr\u00e8s une interview (que je ne sollicite jamais, pas plus qu'un portrait, exercice que je trouve plein d'effets pervers), le texte publi\u00e9 est r\u00e9dig\u00e9 par le/la journaliste que j'ai rencontr\u00e9(e), et non par bibi. M\u00eame si je demande toujours \u00e0 me relire, le r\u00e9sultat n'est jamais ce que j'aurais \u00e9crit si j'avais r\u00e9dig\u00e9 les r\u00e9ponses en partant de z\u00e9ro.\n\nEn particulier, mon style oral et mon style \u00e9crit sont diff\u00e9rents. A l'oral, l'intonation, l'expression faciale ou le contexte autorisent des tournures qui ne prennent pas la m\u00eame signification \u00e0 l'\u00e9crit, sans ces \"\u00e0-c\u00f4t\u00e9s\". La seule mani\u00e8re d'\u00e9viter les malentendus est d'utiliser un style adapt\u00e9 \u00e0 chaque cas.\n\nPourtant, les transcriptions \u00e9crites reprennent souvent une partie des verbatim de l'interview. Cela peut donner une impression injustifi\u00e9e de radicalit\u00e9 qui n'aurait pas exist\u00e9 en style \u00e9crit utilis\u00e9 d'embl\u00e9e.\n\nUne autre pr\u00e9caution d'usage concerne le chap\u00f4 qui pr\u00e9sente l'interview\u00e9(e) : il est fait par la r\u00e9daction du journal, sans relecture, et n'engage pas la personne concern\u00e9e. C'est aussi le cas pour tout \"portrait\" publi\u00e9 dans la presse.\n\nIncidemment, \"ma\" page Wikipedia est un portrait parmi d'autres, essentiellement bas\u00e9 sur des portraits ou avis de journalistes rapportant des avis de tiers (il suffit de regarder les r\u00e9f\u00e9rences), soit de l'information de 3\u00e8 main ou plus. Je n'en ai pas \u00e9crit une ligne, et elle comporte plusieurs dizaines d'erreurs factuelles ou de conclusions erron\u00e9es.\n\nL'Echo a repris l'expression \"rock star de l'\u00e9cologie\" utilis\u00e9e r\u00e9cemment par Le Monde. S'exprimer parfois dans des amphis bien remplis n'est pas vraiment comparable \u00e0 remplir le Stade de France ! M\u00eame avec l'audience digitale, le compte n'y est pas : sur Youtube \"ma\" vid\u00e9o la plus regard\u00e9e d\u00e9passe 3 millions de vues ; pour Rihanna ou DJ Khaled on d\u00e9passe le milliard de vues (https://bit.ly/3Ep4nhb ).\n\nEnfin l'expression servant de titre correspond toujours \u00e0 un sujet \u00e9voqu\u00e9, mais pas n\u00e9cessairement celui sur lequel j'ai le plus insist\u00e9, alors que c'est l'impression que cela donne. Cet effet s'amplifie si d'autres journalistes reprennent cette expression comme si elle \u00e9tait de moi mot \u00e0 mot : ce qui \u00e9tait une mise en exergue d'un(e) journaliste devient ce qui fait foi !\n\nTout ca pour dire que, pour moi comme pour n'importe qui, la seule chose qui m'engage est ce que j'\u00e9cris en direct, ou prononce \u00e0 l'oral dans un enregistrement non mont\u00e9. Tout le reste incorpore peu ou prou l'avis de quelqu'un d'autre, m\u00eame une interview. Dans le cas pr\u00e9sent on est dans la nuance, mais dans un portrait il peut y avoir des erreurs grossi\u00e8res." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7000055381280313344,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7000055382219837440,urn:li:activity:7000055382219837440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7000055382219837440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7000055382219837440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7000055382219837440", + "threadId": "activity:7000055382219837440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000055382219837440", + "urn": "urn:li:activity:7000055382219837440", + "numComments": 76, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7000055382219837440", + "reactionTypeCounts": [ + { + "count": 964, + "reactionType": "LIKE" + }, + { + "count": 54, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "APPRECIATION" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 28, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7000055382219837440", + "numLikes": 1126, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000055382219837440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1127, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6999689020733554688", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6999689020733554688)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6999689020733554688)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cop-27-jean-marc-jancovici-explique-pourquoi-activity-6999689020733554688-_8Pn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6999689019898871808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6999689020733554688", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6999689019898871808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "oh9OrOvbdo7XnEm9FNl88Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8045091743199397876", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676292863883?e=1677240000&v=beta&t=mGFUiF12pQB91rDSnhfNXj0NYKmLv7jR_s3OsFWHxq8", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1199, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676292863883?e=1677240000&v=beta&t=VkueliHYtQCNoZtEhYTckb2Zcn5YLUVh3lM5WioY7LE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676292863883?e=1677240000&v=beta&t=7USaFvbMxD_EYguGlANr1D926y1UIIhNvWZWtDu6J2Q", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676292863883?e=1677240000&v=beta&t=f0M2TEcQh4KJUaRW1A0M7Q5owZzl0Y5Dhf1f8-OweQo", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGKNHYgSZo8Pg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8045091743199397876)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8045091743199397876)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: COP 27 : Jean-Marc Jancovici explique pourquoi \u00e7a n'est pas un succ\u00e8s by rtl.fr", + "actionTarget": "https://www.rtl.fr/actu/debats-societe/cop27-jean-marc-jancovici-explique-pourquoi-ca-n-est-pas-un-succes-7900207731" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "COP 27 : Jean-Marc Jancovici explique pourquoi \u00e7a n'est pas un succ\u00e8s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6999689019898871808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Que penser de la COP 27, qui se termine (normalement) aujourd'hui en Egypte ? Rien de plus et rien de moins que ce qu'il faut penser des autres COP, ai-je tent\u00e9 d'expliquer aujourd'hui aux auditrices et auditeurs (matinaux !) de RTL : le processus onusien conduira par nature \u00e0 aboutir \u00e0 un texte qui ne peut pas juridiquement contraindre quelque pays que ce soit \u00e0 faire plus que ce qu'il d\u00e9sire d\u00e9j\u00e0 faire.\n\nRappelons que, depuis le Trait\u00e9 de Westphalie, les \u00e9tats sont souverains : un \u00e9tat ne peut imposer \u00e0 un autre ses r\u00e8gles par le droit. Le processus onusien en prend acte, et demande \u00e0 ce que les d\u00e9cisions soient prises \u00e0 l'unanimit\u00e9 et par consensus. Une telle dynamique conduit n\u00e9cessairement \u00e0 un texte qui ne cr\u00e9e aucune obligation nouvelle significative pour les pays.\n\nIl y a eu une exception dans l'histoire des COP, que je rappelle dans cette chronique, et qui a pourtant correspondu \u00e0 l'ann\u00e9e o\u00f9 la presse a conclu le plus rapidement que cela avait \u00e9t\u00e9 un \u00e9chec : Copenhague (la COP 15, en 2009). \n\nLes \"moins de 2\u00b0C\" d\u00e9sormais associ\u00e9s \u00e0 l'Accord de Paris datent en effet... de Copenhague, comme toutes les autres dispositions fortes qui ont \u00e9t\u00e9 avalis\u00e9es \u00e0 Paris. Et ces \u00e9l\u00e9ments ont pu \u00eatre act\u00e9s parce que Copenhague a \u00e9t\u00e9, de fa\u00e7on impr\u00e9vue, la seule COP qui ait \u00e9t\u00e9 une OPA du G20 sur les Nations Unies. \n\nAu retour de la COP - o\u00f9 j'avais \u00e9t\u00e9 les 15 jours - j'avais pris la plume pour expliquer pourquoi elle \u00e9tait en fait l'un des rares succ\u00e8s des discussions internationales : https://bit.ly/3GuuPIT Ce mot d'\u00e9chec est arriv\u00e9 parce que c'est le processus et non le fond qui a \u00e9t\u00e9 comment\u00e9 par les ONG, les seules \u00e0 pouvoir s'exprimer dans la presse \u00e0 l'approche de la fin de la COP, alors que les d\u00e9l\u00e9gations nationales \u00e9taient tenues au silence devant la r\u00e9union des pr\u00e9sidents en cours.\n\nComme les danois avaient fait une erreur logistique en ne pr\u00e9voyant pas assez de place pour laisser rentrer tout le monde la 2\u00e8 semaine (alors que les d\u00e9l\u00e9gations pr\u00e9sidentielles \u00e9taient arriv\u00e9s en masse), les repr\u00e9sentants des ONG \u00e9taient pass\u00e9s de 5000 \u00e0... 90, et ceux toujours admis \u00e0 rentrer dans l'enceinte de la COP \u00e9taient du coup tr\u00e8s \u00e9nerv\u00e9s par ce qu'elles consid\u00e9raient \u00eatre une entorse majeure au principe de transparence des n\u00e9gociations. \n\nSi on y ajoute la forme de la discussion (exit les d\u00e9l\u00e9gations nationales, remplac\u00e9es au pied lev\u00e9 par des pr\u00e9sidents discutant en direct dans une salle), cette fin de COP n'avait plus rien d'onusien, et c'est cela qui a conduit les ONG \u00e0 parler d'\u00e9chec \u00e0 la presse, constat discutable mais devenu depuis l'\u00e9vidence pour le public. \n\nC'est pourtant \u00e0 cet \"\u00e9chec\" que l'on doit l'objectif politique des 2\u00b0C, d\u00e9sormais si pr\u00e9cieux pour cadrer toute l'action - m\u00eame insuffisante - des entreprises et des \u00e9tats dans les d\u00e9bats domestiques. \n\nSi, du point de vue du formalisme onusien, elle est un succ\u00e8s, la COP 27 ne changera pas plus le cours des choses \"\u00e0 notre place\" que les autres. Quoi qu'en dise la presse..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6999689019898871808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6999689020733554688,urn:li:activity:6999689020733554688,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 71, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6999689020733554688,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6999689020733554688,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6999689020733554688", + "threadId": "activity:6999689020733554688", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999689020733554688", + "urn": "urn:li:activity:6999689020733554688", + "numComments": 118, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6999689020733554688", + "reactionTypeCounts": [ + { + "count": 1090, + "reactionType": "LIKE" + }, + { + "count": 140, + "reactionType": "INTEREST" + }, + { + "count": 129, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6999689020733554688", + "numLikes": 1387, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999689020733554688", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1388, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6999439943286554624", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6999439943286554624)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6999439943286554624)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carrefour-acte-le-d%C3%A9classement-de-la-soci%C3%A9t%C3%A9-activity-6999439943286554624-9L7t?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6999439942372229121", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6999439943286554624", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6999439942372229121", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "XDPASjNqVC2bacAwiJRxCQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7401995635390681707", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676110940690?e=1677240000&v=beta&t=Q0iwGL79t_1wR29hVmUjGgFAZlisR2KNLoPKC7-dHZU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676110940690?e=1677240000&v=beta&t=2X-iiwUNBW_yBvmlagYgAOwBkE9ILZAx7BdouiOuyi4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676110940690?e=1677240000&v=beta&t=hIXV7-LuUHHrjo-RFV3QbPTee0tD3fFhfjp7bR4SDd4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676110940690?e=1677240000&v=beta&t=xKwh0WdV_RtRE9QmpBthd-gpFZXnTc-LiChW87DXFmc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFs7-hl2Mq0yw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7401995635390681707)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7401995635390681707)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carrefour acte le d\u00e9classement de la soci\u00e9t\u00e9 fran\u00e7aise by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/carrefour-acte-le-declassement-de-la-societe-francaise-1879303" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carrefour acte le d\u00e9classement de la soci\u00e9t\u00e9 fran\u00e7aise" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6999439942372229121,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Vive la croissance verte ! Vous savez, celle qui ne suppose pas de consommer plus de ressources, et qui va donc permettre de marier PIB en hausse et flux physiques en baisse.\n\nSauf que... cette croissance l\u00e0, \u00e0 supposer qu'elle arrive, ne permet pas d'avoir la constance en volume des objets parfaitement mat\u00e9riels que les fran\u00e7aises et les fran\u00e7ais ach\u00e8tent. Et il se trouve que, pour le moment, et probablement pour un certain temps encore, les brosses \u00e0 dents, machines \u00e0 laver, m\u00e8tres carr\u00e9s de moquette, pantalons, produits alimentaires, m\u00e8tres carr\u00e9s de logement, tonnes de voitures, sans oublier les m\u00e8tres cubes de gaz ou d'eau qui entrent dans un logement sont parfaitement mat\u00e9riels.\n\nSi les flux physiques de production baissent parce que la quantit\u00e9 d'\u00e9nergie disponible - et donc la quantit\u00e9 de machines au travail - baisse, peu importe la fa\u00e7on dont les choses se passeront sur le plan des prix : de fait il sera plus difficile \u00e0 la population de ce procurer tout ce qui est \"physique\", du tube de colle aux kilom\u00e8tres en voiture, en passant par les t\u00e9l\u00e9phones, les cartables et les p\u00e2tes \u00e0 la tomate.\n\nOr, l'\u00e9nergie disponible baisse en Europe depuis 2007. Donc la production domestique de ce qui est \"physique\" y baisse (la confirmation se trouve dans les s\u00e9ries longues des tonnes charg\u00e9es dans les camions et des m\u00e8tres carr\u00e9s construits en Europe). On peut temporairement compenser par des importations pay\u00e9es par des revenus \"autres\" (activit\u00e9s financi\u00e8res et b\u00e9n\u00e9fices rapatri\u00e9s, par exemple), mais cette mani\u00e8re de proc\u00e9der a ses limites.\n\nIl se trouve que cette baisse de la possibilit\u00e9 d'acheter se traduit d\u00e9j\u00e0 de fa\u00e7on mon\u00e9taire. Le revenu disponible des m\u00e9nages est en effet pass\u00e9 par un maximum en 2010 et a fortement baiss\u00e9 ensuite, avant de remonter \u00e0 partir de 2014 (quand l'\u00e9nergie disponible en Europe est remont\u00e9e gr\u00e2ce au shale oil !), sans pour autant revenir au niveau ant\u00e9rieur. \n\nEt surtout la logique voudrait malheureusement que cet indicateur reparte \u00e0 la baisse, dans le droit fil de l'approvisionnement \u00e9nerg\u00e9tique europ\u00e9en qui va faire de m\u00eame (NB: la s\u00e9rie de l'INSEE que j'ai obtenue sur https://bit.ly/3UR7BRR s'arr\u00eate en 2019).\n\nL'article des Echos qui annonce la cr\u00e9ation par Carrefour d'une nouvelle enseigne ciblant les faibles revenus ouvre probablement une nouvelle \u00e8re : celle de l'\u00e9conomie... des \u00e9conomies. L'auteur rappelle \u00e0 juste titre que l'on peut mettre dans le m\u00eame panier que cette nouvelle enseigne Blablacar, AirBnb, la colocation, les bus Macron et Too Good to Go : \u00e0 chaque fois c'est une r\u00e9ponse pour conserver des services dans un monde avec mat\u00e9riellement moins. \n\nFaut-il se plaindre d'avoir moins de r\u00e9f\u00e9rences et moins d'emballages dans les magasins ? Faut-il appeler cela d\u00e9classement (donc pauvret\u00e9), comme le font Les Echos, ou sobri\u00e9t\u00e9 ? Tant que nous vivrons dans une soci\u00e9t\u00e9 de la tentation, c'est probablement la premi\u00e8re r\u00e9ponse qui sera la bonne, h\u00e9las. Il reste \u00e0 inventer le r\u00e9cit pour passer \u00e0 la seconde." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6999439942372229121,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6999439943286554624,urn:li:activity:6999439943286554624,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 58, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6999439943286554624,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6999439943286554624,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6999439943286554624", + "threadId": "activity:6999439943286554624", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999439943286554624", + "urn": "urn:li:activity:6999439943286554624", + "numComments": 93, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6999439943286554624", + "reactionTypeCounts": [ + { + "count": 1208, + "reactionType": "LIKE" + }, + { + "count": 131, + "reactionType": "MAYBE" + }, + { + "count": 124, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6999439943286554624", + "numLikes": 1501, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999439943286554624", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1502, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 Edited \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6999135868418465792", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6999135868418465792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6999135868418465792)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_il-arrive-aux-instances-de-supervision-activity-6999135868418465792-PfwE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6999135867332087808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6999135868418465792", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6999135867332087808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "+e1ioAZV7UEiS/0Gxz4pZQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGVmp0-xQNHdw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGVmp0-xQNHdw", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1668724027136?e=1679529600&v=beta&t=TnFLTaAyNYZNtMpzh5tmiyKlF4vuH-NkMhrtXhIq_ss", + "expiresAt": 1679529600000, + "height": 290 + }, + { + "width": 2332, + "fileIdentifyingUrlPathSegment": "20/0/1668724027085?e=1679529600&v=beta&t=wYBVI2Dbq7OUSq2rcHnWsVWMMobmUlNh7gmi0Vtybi4", + "expiresAt": 1679529600000, + "height": 330 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1668724027085?e=1679529600&v=beta&t=z3_AESExjt1u-qJoPVUSHmjv1ayG9k8lyBWyP45-5Lo", + "expiresAt": 1679529600000, + "height": 181 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1668724027085?e=1679529600&v=beta&t=Qax37wLUFbH0z7pTiAiOgmF_I8HZ595x8bnE5e2DzQg", + "expiresAt": 1679529600000, + "height": 68 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1668724027085?e=1679529600&v=beta&t=sIFOkhWDpFeLBnR_ncynlHm43VDuglVB5C0kwwbkM9w", + "expiresAt": 1679529600000, + "height": 23 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1668724027085?e=1679529600&v=beta&t=tE6lgs0USJhwCz22KcFuGHQIrNSdehyighKkOkAzvdY", + "expiresAt": 1679529600000, + "height": 113 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGVmp0-xQNHdw/feedshare-shrink_" + }, + "displayAspectRatio": 0.14150943396226415 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6999135867332087808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il arrive aux instances de supervision - qui ont pour mission de faire \u00e0 la fois les r\u00e8gles et parfois la police dans un secteur r\u00e9glement\u00e9, par exemple la comptabilit\u00e9 ou l'assurance - de faire des consultations.\n\nCe genre de d\u00e9marche vise \u00e0 prendre l'avis de \"qui veut\" (en fait c'est plut\u00f4t \"qui est au courant et a le temps de r\u00e9pondre\" !) pour ensuite nourrir une future \u00e9volution des r\u00e8gles applicables au secteur.\n\nLes 3 autorit\u00e9s europ\u00e9ennes qui concernent le monde bancaire et financier (European Banking Authority, European Insurance and Occupational Pensions Authority, et European Securities and Market Authority, qui supervisent respectivement les banques, les compagnies d'assurance et les places de march\u00e9) viennent de lancer une consultation sur... le greenwashing : https://lnkd.in/eif8F2XC\n\nJe n'y aurais pas pens\u00e9, mais l'id\u00e9e est franchement excellente. En effet, le meilleur moyen de corriger une r\u00e9glementation qui n'atteint pas encore son but est de se faire expliquer toutes les mani\u00e8res de la d\u00e9voyer !\n\nDe fait, le \"verdissement\" du secteur financier dans son ensemble est aujourd'hui discutable. Les annonces de finance durable se multiplient comme les petits pains, mais dans les faits les pratiques sont toujours \u00e0 peu pr\u00e8s les m\u00eames, et l'\u00e9conomie financ\u00e9e toujours la m\u00eame (ce n'est pas un jugement de valeur mais un fait). Il est donc tout \u00e0 fait pertinent de poser la question des techniques utilis\u00e9es pour faire prendre des vessies pour des lanternes.\n\nCe proc\u00e9d\u00e9 pourrait utilement \u00eatre \u00e9tendu \u00e0 d'autres secteurs, et notamment la publicit\u00e9. Le Bureau de V\u00e9rification de la Publicit\u00e9 pourrait ouvrir une grande consultation en demandant aux r\u00e9pondantes de d\u00e9crire toutes les formes possibles de publicit\u00e9 mensong\u00e8re en mati\u00e8re d'environnement. A l'inverse du message pr\u00e9c\u00e9dant souvent les oeuvres de fiction, on y verrait assez souvent un rapport avec des faits et des personnages ayant exist\u00e9 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6999135867332087808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6999135868418465792,urn:li:activity:6999135868418465792,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6999135868418465792,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6999135868418465792,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6999135868418465792", + "threadId": "activity:6999135868418465792", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999135868418465792", + "urn": "urn:li:activity:6999135868418465792", + "numComments": 31, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6999135868418465792", + "reactionTypeCounts": [ + { + "count": 488, + "reactionType": "LIKE" + }, + { + "count": 46, + "reactionType": "MAYBE" + }, + { + "count": 24, + "reactionType": "INTEREST" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6999135868418465792", + "numLikes": 589, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999135868418465792", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 591, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6998765435470888961", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6998765435470888961)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6998765435470888961)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_ce-gigantesque-village-de-marque-et-ses-100-activity-6998765435470888961-SpLz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6998765434871128064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6998765435470888961", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6998765434871128064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "F8B8ln8Gka1HccCSS84CDQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8757585883586012526", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676178950553?e=1677240000&v=beta&t=8nkBAQV7PUu0khMDChZvoJxzPpmpLTkqNBBXgP3lnt0", + "expiresAt": 1677240000000, + "height": 493 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676178950553?e=1677240000&v=beta&t=S1hM41RuQiasoJvut-aqbvvugobzrg4EMjqE0WwmABs", + "expiresAt": 1677240000000, + "height": 789 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676178950553?e=1677240000&v=beta&t=SUjxh9ctotm2uya3zCGtwTBrspIfb8la6ZToPhTofIg", + "expiresAt": 1677240000000, + "height": 98 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676178950554?e=1677240000&v=beta&t=TIiScrRgFSQe6NeyjCQu-kP9CqdA_o6sQRai5W2f4DQ", + "expiresAt": 1677240000000, + "height": 295 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEYeYYCcuIcOg/articleshare-shrink_" + }, + "displayAspectRatio": 0.61625 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Une centaine de boutiques de grandes marques comme Adidas ou Levis vont ouvrir." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8757585883586012526)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8757585883586012526)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "actu.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Ce gigantesque village de marque et ses 100 magasins vont sortir de terre \u00e0 1 heure de Lyon by actu.fr", + "actionTarget": "https://actu.fr/auvergne-rhone-alpes/valserhone_01033/ce-gigantesque-village-de-marque-et-ses-100-magasins-vont-sortir-de-terre-a-1-heure-de-lyon_55210956.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Ce gigantesque village de marque et ses 100 magasins vont sortir de terre \u00e0 1 heure de Lyon" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6998765434871128064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Prenez un pays qui souhaite limiter l'usage de la voiture. Qui souhaite inciter \u00e0 la sobri\u00e9t\u00e9. Qui souhaite limiter ses importations. Qui souhaite baisser ses \u00e9missions de gaz \u00e0 effet de serre. Et qui souhaite arr\u00eater l'artificialisation des sols. \n\nDans un tel pays on se dirait que l'on va inciter \u00e0 ce que les nouveaux commerces soient \u00e9tablis pr\u00e8s des logements,\n de telle sorte que l'on puisse y aller au maximum sans voiture ; on va \u00e9viter de construire de nouveaux parkings g\u00e9ants qui imperm\u00e9abilisent le sol et sont des aspirateurs \u00e0 voiture ; on va \u00e9viter de cr\u00e9er des \"villages de la tentation\" pour inciter \u00e0 consommer encore plus d'objets (notamment v\u00eatements et accessoires) alors que ce n'est peut-\u00eatre pas la priorit\u00e9 ; enfin on va \u00e9viter de favoriser la consommation de biens import\u00e9s (sachant que les \"marques pas ch\u00e8res\" se fournissent pour l'essentiel hors de France, puisque la condition des prix bas est de ne pas fabriquer dans l'Hexagone).\n\nLe \"gigantesque village de marques\" qui s'ouvrira bient\u00f4t entre Lyon et Gen\u00e8ve illustre \u00e0 merveille que pour le moment les grands discours ne sont pas n\u00e9cessairement incarn\u00e9s dans les projets concrets. Dans le cas pr\u00e9sent le probl\u00e8me n'est pas un d\u00e9faut de financement ou de comp\u00e9tences pour faire ce qu'il faut faire : il est un d\u00e9faut de r\u00e8gles emp\u00eachant l'apparition de projets qui contribuent \u00e0 nous entra\u00eener dans mauvaise direction. \n\nCar c'est une chose de modifier l'existant, et une autre de ne pas en rajouter aux probl\u00e8mes. Le deuxi\u00e8me cas de figure est \u00e0 l'\u00e9vidence bien plus facile. Tant que le pays ne se dotera pas de la capacit\u00e9 \u00e0 emp\u00eacher d'en rajouter aux difficult\u00e9s, on peut malheureusement \u00eatre un peu pessimiste sur notre capacit\u00e9 \u00e0 modifier l'existant, ce qui est g\u00e9n\u00e9ralement un cran au dessus question difficult\u00e9 \u00e0 faire." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6998765434871128064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6998765435470888961,urn:li:activity:6998765435470888961,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 643, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6998765435470888961,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6998765435470888961,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6998765435470888961", + "threadId": "activity:6998765435470888961", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6998765435470888961", + "urn": "urn:li:activity:6998765435470888961", + "numComments": 1036, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6998765435470888961", + "reactionTypeCounts": [ + { + "count": 17946, + "reactionType": "LIKE" + }, + { + "count": 1677, + "reactionType": "MAYBE" + }, + { + "count": 1376, + "reactionType": "PRAISE" + }, + { + "count": 531, + "reactionType": "INTEREST" + }, + { + "count": 382, + "reactionType": "APPRECIATION" + }, + { + "count": 73, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6998765435470888961", + "numLikes": 21985, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6998765435470888961", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 22024, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6997830447921561600", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6997830447921561600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6997830447921561600)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-capitalisme-ne-sadaptera-au-d%C3%A9fi-climatique-activity-6997830447921561600-PuUI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6997830446734524416", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6997830447921561600", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6997830446734524416", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "yDlLfHDG0S1JQU5E0owIkA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7864941750132445850", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 639, + "fileIdentifyingUrlPathSegment": "800/0/1675664003015?e=1677240000&v=beta&t=N4bFqc3BN3Xj-ZGbJcdGfdKb6B__Ei1h6qwPxim3uR8", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 639, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675664003015?e=1677240000&v=beta&t=b0QcqNJrTROWC9XVv-GuwND5p6oYrGUG0aJSiwI84Js", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675664003015?e=1677240000&v=beta&t=FkwdSfq2D_aLwpDeoxqRmkfhQ5RMdNi7-ZJFF0HpkOM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675664003015?e=1677240000&v=beta&t=ILyc_iBgTvC90fXz1oyJiGprs-ptTZ-mimqJmSwuBRY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHlYDPowtEfOg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5633802816901409 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7864941750132445850)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7864941750132445850)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "xerficanal.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le capitalisme ne s'adaptera au d\u00e9fi climatique que par la contrainte by xerficanal.com", + "actionTarget": "https://www.xerficanal.com/economie/emission/Anton-Brender-Le-capitalisme-ne-s-adaptera-au-defi-climatique-que-par-la-contrainte_3748380.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le capitalisme ne s'adaptera au d\u00e9fi climatique que par la contrainte" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6997830446734524416,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"il faut que les \u00e9tats exercent une pression sur le capitalisme\" pour que ce dernier ait des activit\u00e9s qui soient compatibles avec la pr\u00e9servation de l'environnement. Il ne faut pas compter sur les chefs d'entreprise, \"dont ce n'est pas la logique\", pour le faire spontan\u00e9ment, parce que la nature n'a pas de prix. M\u00eame si les dirigeants d'entreprise \"comprennent\" le probl\u00e8me, leur logique - comprendre la pr\u00e9\u00e9minence des euros sur les indicateurs environnementaux dans le cadre juridique actuel - les pousse dans une direction qui est inverse \u00e0 celle qui pr\u00e9serve les ressources.\n\nCes propos seraient d'une banalit\u00e9 affligeante s'ils venaient de la bouche d'un Gael Giraud ou d'un d\u00e9put\u00e9 LFI. Mais en l'esp\u00e8ce ils sont tenus par un \u00e9conomiste de chez Candriam, une soci\u00e9t\u00e9 de gestion d'actifs, qui appartient donc, au sens large, \u00e0 la \"finance mondialis\u00e9e lib\u00e9rale\".\n\nEt le m\u00eame de rappeler que, de m\u00eame que le travail des enfants n'a pas \u00e9t\u00e9 supprim\u00e9 par la bont\u00e9 d'\u00e2me des patrons, mais parce que la puissance publique l'a interdit (dans un contexte o\u00f9 les machines pouvaient prendre le relais, il ne faut pas l'oublier !), ce ne sont pas les chefs d'entreprise qui vont d'eux-m\u00eames se mettre dans le cadre de l'accord de Paris : c'est \u00e0 l'Etat de les y pousser, par des taxes et des interdictions.\n\nIl se trouve que, pas plus tard que le week-end dernier, j'ai d\u00e9fendu \u00e0 peu pr\u00e8s la m\u00eame th\u00e8se au micro de RTL dans le cadre de ma chronique hebdomadaire, qui portait sur la \"finance verte\" : https://lnkd.in/eG2t9mvQ\n\nL'id\u00e9e qu'un chef d'entreprise \"vert\" est en pratique un chef d'entreprise qui accepte - voire d\u00e9sire - que l'Etat mette des contraintes pour orienter l'activit\u00e9 \u00e9conomique du \"bon c\u00f4t\u00e9\" fait de plus en plus de chemin. Accepter ses propres limites n'est pas un aveu de faiblesse : c'est en les ignorant que l'on se met \u00e0 risque.\n\nIncidemment c'est cette population que The Shift project cherche \u00e0 rassembler : depuis le d\u00e9but notre think tank ambitionne (que l'on y parvienne est une autre histoire !) de coaliser des dirigeants qui pensent sinc\u00e8rement qu'il faut mettre des contraintes sur les \u00e9missions de gaz \u00e0 effet de serre. Comme cette population n'est pas compl\u00e8tement na\u00efve, ils et elles le souhaitent \u00e9videmment parce qu'ils et elles pensent que ca sera bon pour leur entreprise.\n\nSauf \u00e0 compl\u00e8tement supprimer le capitalisme, que je comprends ici comme la propri\u00e9t\u00e9 individuelle de tout ou partie des moyens de production (laquelle propri\u00e9t\u00e9 priv\u00e9e est, sous une forme ou sous une autre, pr\u00e9sente depuis la s\u00e9dentarisation de notre esp\u00e8ce il y a 10.000 ans), la voie \u00e0 explorer est donc d'encadrer ce dernier pour le forcer \u00e0 \"rentrer dans le monde fini\". Vaste mais n\u00e9cessaire programme." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6997830446734524416,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6997830447921561600,urn:li:activity:6997830447921561600,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 257, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6997830447921561600,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6997830447921561600,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6997830447921561600", + "threadId": "activity:6997830447921561600", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997830447921561600", + "urn": "urn:li:activity:6997830447921561600", + "numComments": 453, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6997830447921561600", + "reactionTypeCounts": [ + { + "count": 4843, + "reactionType": "LIKE" + }, + { + "count": 333, + "reactionType": "MAYBE" + }, + { + "count": 308, + "reactionType": "INTEREST" + }, + { + "count": 179, + "reactionType": "PRAISE" + }, + { + "count": 90, + "reactionType": "APPRECIATION" + }, + { + "count": 44, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6997830447921561600", + "numLikes": 5797, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997830447921561600", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5800, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 Edited \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6997515090895732736", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6997515090895732736)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6997515090895732736)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_terrawater-le-sc%C3%A9nario-%C3%A9nerg%C3%A9tiquedes-activity-6997515090895732736-vuxZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6997515089960402944", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6997515090895732736", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6997515089960402944", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "666BNyz1Q1DhZv2NWrqg0A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8782828938415420476", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 768, + "fileIdentifyingUrlPathSegment": "800/0/1675705386746?e=1677240000&v=beta&t=Q3OzTro5raoywjJTp1cHSirxdNJOh7wfFF1ZitEQqX0", + "expiresAt": 1677240000000, + "height": 768 + }, + { + "width": 768, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675705386746?e=1677240000&v=beta&t=S9iLHCj8YsY2pakelZ-9-VTEqwfzx70z2VddQUVQiII", + "expiresAt": 1677240000000, + "height": 768 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675705386747?e=1677240000&v=beta&t=2kbVHicQ26IrV6wqZ_8sDI1w3UlEcxN8esN15vvn1kg", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675705386747?e=1677240000&v=beta&t=NEUDg6vicHw3REvvqdv2eiEaRxvuIgURgbzAKdq0S8o", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFphLqMFYQx8w/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8782828938415420476)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8782828938415420476)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "voix-du-nucleaire.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: TerraWater : le sc\u00e9nario \u00e9nerg\u00e9tique des Voix by voix-du-nucleaire.org", + "actionTarget": "https://www.voix-du-nucleaire.org/terrawater-scenario-energetique-des-voix/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "TerraWater : le sc\u00e9nario \u00e9nerg\u00e9tique\u00a0des\u00a0Voix" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6997515089960402944,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un sc\u00e9nario \u00e9lectrique qui concilie d\u00e9fense de l'environnement et augmentation de la capacit\u00e9 nucl\u00e9aire ? Ce n'est pas s\u00e9rieux voyons ! \n\nM\u00eame si l'adh\u00e9sion \u00e0 l'\u00e9nergie atomique a connu r\u00e9cemment un regain de faveur - en fait depuis les chocs p\u00e9troliers le meilleur marqueur du soutien \u00e0 cette forme de production est le prix des alternatives :), et en ce moment cet \u00e9l\u00e9ment est bien pr\u00e9sent - nous n'en sommes pas encore au point o\u00f9 la population adh\u00e8re massivement \u00e0 l'id\u00e9e que le nucl\u00e9aire est ce qu'il y a de plus \u00e9colo et durable - et de moins dangereux - pour une production \u00e9lectrique un peu cons\u00e9quente et disponible plus ou moins \u00e0 la demande.\n\nDe fait, l'essentiel des sc\u00e9narios \u00e9lectriques produits ces derniers temps pour notre pays voient tous une diminution de la puissance \u00e9lectrique install\u00e9e pour le nucl\u00e9aire dans les d\u00e9cennies \u00e0 venir et jusqu'\u00e0 la fin du si\u00e8cle. \n\nMais un \"nouveau venu\" - les Voix du Nucl\u00e9aire - propose (sans surprise avec un tel nom !) une trajectoire o\u00f9 le nucl\u00e9aire augmente fortement - et la production \u00e9lectrique aussi - d'ici \u00e0 2100. Dans ce m\u00eame sc\u00e9nario \u00e9olien et solaire augmentent aussi jusqu'au milieu du si\u00e8cle, et surtout du stockage assur\u00e9 par des stations de pompage-turbinage (des STEP), qui seraient massivement construites d\u00e8s maintenant. Elle serviront d'abord \u00e0 \u00e9quilibrer les ENR intermittentes, et ensuite \u00e0 assurer la flexibilit\u00e9 journali\u00e8re et hebdomadaire en compl\u00e9ment d'un nucl\u00e9aire plus important qu'aujourd'hui.\n\nEn pratique ce sc\u00e9nario repose sur les axes suivants :\n- \u00e0 court terme d\u00e9ploiement de solaire, \u00e9olien, ainsi que de STEP pour assurer le pilotage du r\u00e9seau\n- maintien en service des r\u00e9acteurs actuels aussi longtemps que possible (sous contr\u00f4le de l'ASN bien s\u00fbr), soit un peu plus de 60 ans (dur\u00e9e d\u00e9j\u00e0 autoris\u00e9e aux USA pour tous les r\u00e9acteurs \u00e0 eau pressuris\u00e9e)\n- d\u00e9ploiement d\u00e8s maintenant d'EPR2\n- d\u00e8s 2050 d\u00e9but du d\u00e9ploiement de r\u00e9acteurs de la 4\u00e8 g\u00e9n\u00e9ration et d\u00e9crue corr\u00e9lative des ENR intermittentes. Les STEP sont conserv\u00e9es pour assurer la flexibilit\u00e9 en compl\u00e9ment d'un nucl\u00e9aire utilis\u00e9 essentiellement en base.\n- d\u00e9ploiement de turbines \u00e0 combustion biomasse pour l'hyperpointe\n\nCe sc\u00e9nario est purement \u00e9lectrique, et fait passer la production de 500 TWh actuellement \u00e0 800 TWh en 2070. Il n'est formellement pas incompatible avec la sobri\u00e9t\u00e9 puisqu'aujourd'hui la France utilise 1600 TWh d'\u00e9nergie finale tout compris.\n\nIl est trop t\u00f4t pour dire si ce sc\u00e9nario est, dans ses moindres d\u00e9tails, pertinent ou pas. Mais il offre une base de r\u00e9flexion int\u00e9ressante d\u00e8s lors que l'on souhaite discuter du meilleur compromis possible dans un monde qui va se d\u00e9mondialiser, et o\u00f9 tout ce qui est physique (espace au sol, biomasse, m\u00e9taux) va devenir de plus en plus difficile d'acc\u00e8s, hypoth\u00e8se g\u00e9n\u00e9ralement peu pr\u00e9sente dans les autres sc\u00e9narios de place qui postulent \u00e0 peu pr\u00e8s tous l'inverse.\n\nEsp\u00e9rons aussi qu'il contribuera \u00e0 nourrir un d\u00e9bat pacifi\u00e9 et non \u00e0 renforcer la fr\u00e9quence des noms d'oiseau !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6997515089960402944,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6997515090895732736,urn:li:activity:6997515090895732736,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 74, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6997515090895732736,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6997515090895732736,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6997515090895732736", + "threadId": "activity:6997515090895732736", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997515090895732736", + "urn": "urn:li:activity:6997515090895732736", + "numComments": 248, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6997515090895732736", + "reactionTypeCounts": [ + { + "count": 1905, + "reactionType": "LIKE" + }, + { + "count": 222, + "reactionType": "MAYBE" + }, + { + "count": 216, + "reactionType": "INTEREST" + }, + { + "count": 34, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "EMPATHY" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6997515090895732736", + "numLikes": 2428, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997515090895732736", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2428, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6997237239227244544", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6997237239227244544)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6997237239227244544)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_reporting-extra-financier-ladoption-du-activity-6997237239227244544-FgD2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6997237238065418241", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6997237239227244544", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6997237238065418241", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "OPJIQcC4TzLwdvkAQiNLtQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7336260786284283234", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676538389786?e=1677240000&v=beta&t=uAmX5va8gSM6U-TB_DAZl3q1YiFXfPjSe2oGTS3Govs", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676538389786?e=1677240000&v=beta&t=j-6H7o2P4lROfiHhsdsuDfEO-QOoE2crqZSxQfBnYq4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676538389786?e=1677240000&v=beta&t=CXtH7PWjD8K33XlWUe9rGQ5GAwe3o0ku3b0LL8Hc9J0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676538389786?e=1677240000&v=beta&t=K9Q3bJdeB2okES3YR1Y-tlOo5696bVdkeXS7JERB2TI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHcNy7Dy0tBDA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7336260786284283234)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7336260786284283234)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Reporting extra-financier : l'adoption du cadre europ\u00e9en laisse de nombreuses questions en suspens by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/reporting-extra-financier-ladoption-du-cadre-europeen-laisse-de-nombreuses-questions-en-suspens-1877784" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Reporting extra-financier\u00a0: l'adoption du cadre europ\u00e9en laisse de nombreuses questions en suspens" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6997237238065418241,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Parlement europ\u00e9en a vot\u00e9 Jeudi dernier une nouvelle directive qui renforce les obligations pour les entreprises europ\u00e9ennes en mati\u00e8re de publication d'informations \"non financi\u00e8res\". On met dans ce vocable les informations relatives \u00e0 la pression sur l'environnement (voir liste dans le graphique en commentaire), aux sujets sociaux (idem) et concernant la gouvernance (idem).\n\nL'\u00e9laboration des \"comptes extrafinanciers\" \u00e9tant bien plus r\u00e9cente que celle des comptes financiers, la r\u00e9glementation - ou son absence - qui s'y applique est aussi bien plus r\u00e9cente. C'est un domaine dans lequel l'Europe - et au sein de l'Europe la France - est globalement en avance sur le reste du monde.\n\nUn pas de plus vient donc d'\u00eatre franchi avec cette directive CSRD (pour Corporate Sustainability Reporting Directive). Comme c'est une directive, elle devra \u00eatre transpos\u00e9e dans les l\u00e9gislations nationales avant de s'appliquer.\n\nToutes les soci\u00e9t\u00e9s cot\u00e9es de plus de 500 salari\u00e9s devront s'y conformer d\u00e8s 2024. Ca sera 2025 ou 2026 pour celles comprises entre 10 et 500 salari\u00e9s. Dans le non cot\u00e9, seules les entreprises de moins de 250 salari\u00e9s y \u00e9chapperont, \u00e0 condition qu'elles ne fassent pas plus de 40 M\u20ac de CA et 20 M\u20ac de total de bilan (ce qui \u00e9vite d'exon\u00e9rer les soci\u00e9t\u00e9s d'investissement avec beaucoup d'actifs et peu d'effectifs).\n\nLe contenu pr\u00e9cis des modalit\u00e9s \u00e0 respecter \u00e0 \u00e9t\u00e9 d\u00e9l\u00e9gu\u00e9 \u00e0 l'EFRAG (European Financial Reporting Advisory Group), une association cr\u00e9\u00e9e en 2001, qui est majoritairement financ\u00e9e par la Commission, mais o\u00f9 sont repr\u00e9sent\u00e9es nombre de \"parties prenantes\" (voir https://bit.ly/3GaRBW9 ).\n\nCette instance a fait des propositions qui tiennent en 220 pages de rapport et plus de 400 pages d'annexes (https://bit.ly/3g0Re5W ). Ouf !\n\nOn note dans ces propositions :\n\n- que les entreprises ne doivent pas juste publier les informations qui vont avec un risque financier direct pour elles (\"simple mat\u00e9rialit\u00e9\" dans le jargon), mais aussi les informations permettant d'appr\u00e9cier les impacts qu'elles ont sur leur environnement, m\u00eame si cet impact n'est pas porteur de risque financier pour l'entreprise (la somme des deux s'appelant \"double mat\u00e9rialit\u00e9\").\n\n- que les informations communiqu\u00e9es pour les impacts doivent concerner l'ensemble de la cha\u00eene de valeur (et donc inclure le \"scope 3\" dans le jargon pour les \u00e9missions de gaz \u00e0 effet de serre)\n\n- que le sujet le plus mature pour un reporting normatif et quantifi\u00e9 est le climat (au sein de l'environnement qui globalement est le sujet le plus simple des 3 E S et G)\n\n- qu'en mati\u00e8re de climat il faudrait parler \u00e0 la fois \u00e9missions et vuln\u00e9rabilit\u00e9 aux risques physiques\n\n- et que la biodiversit\u00e9 est aussi un domaine qui devra \u00eatre couvert\n\nComme d'habitude, d'aucuns vont consid\u00e9rer que l'Europe se tire une balle dans le pied pendant que d'autres se f\u00e9liciteront de ce cadre un peu contraignant. Consid\u00e9rant qu'une entreprise n'innove que sous la contrainte, j'appartiens plut\u00f4t \u00e0 la 2\u00e8 cat\u00e9gorie :)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6997237238065418241,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6997237239227244544,urn:li:activity:6997237239227244544,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 125, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6997237239227244544,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6997237239227244544,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6997237239227244544", + "threadId": "activity:6997237239227244544", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997237239227244544", + "urn": "urn:li:activity:6997237239227244544", + "numComments": 158, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6997237239227244544", + "reactionTypeCounts": [ + { + "count": 2650, + "reactionType": "LIKE" + }, + { + "count": 247, + "reactionType": "INTEREST" + }, + { + "count": 175, + "reactionType": "MAYBE" + }, + { + "count": 74, + "reactionType": "PRAISE" + }, + { + "count": 27, + "reactionType": "EMPATHY" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6997237239227244544", + "numLikes": 3186, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997237239227244544", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3189, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6996901590204870656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6996901590204870656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6996901590204870656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_el-mundo-sin-fin-norma-editorial-activity-6996901590204870656-jNFe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6996901588053164032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6996901590204870656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6996901588053164032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "MRUxgMvAX/oz84SUdZRO7A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9149176262847108493", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 779, + "fileIdentifyingUrlPathSegment": "800/0/1675595650829?e=1677240000&v=beta&t=LwPDaDGVzHdFyslug_EKCcyQhjwAEbF9YtKbyHZqJgQ", + "expiresAt": 1677240000000, + "height": 941 + }, + { + "width": 662, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675595650829?e=1677240000&v=beta&t=ovqKWUauEHAz4B83ELLahXUiMPhXuow5k-V_Eip4eD4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675595650829?e=1677240000&v=beta&t=1xkRfIdjh82Jnq_R-pCxoOMPsxgBYzD-dJMSGnXGq8E", + "expiresAt": 1677240000000, + "height": 193 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675595650829?e=1677240000&v=beta&t=ixHmRK8RIi3JPgSq6AUS25A--1EmmsL44fpGHPPXzOI", + "expiresAt": 1677240000000, + "height": 579 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEsohMCBcJHNA/articleshare-shrink_" + }, + "displayAspectRatio": 1.2079589216944802 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "EL MUNDO SIN FIN" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9149176262847108493)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9149176262847108493)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "normaeditorial.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EL MUNDO SIN FIN - Norma Editorial by normaeditorial.com", + "actionTarget": "https://www.normaeditorial.com/ficha/comic-europeo/el-mundo-sin-fin" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EL MUNDO SIN FIN - Norma Editorial" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6996901588053164032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s \u00eatre all\u00e9 au nord (Allemagne : https://lnkd.in/e-Qc7Q8P - Pays Bas/Belgique : https://lnkd.in/e7YeMvnm ), et au Nord Ouest (version digitale anglaise : https://lnkd.in/e4zr_Pgh ) Le Monde Sans fin met le cap au Sud, et plus pr\u00e9cis\u00e9ment en Espagne.\n\nCe n'est pas une mais deux versions espagnoles qui viennent de sortir :\n- une en castillan (lien dans l'image ci-dessous)\n- une en catalan : https://lnkd.in/eHxRTkEC (qui a m\u00eame une couverture bleue, histoire de montrer que vraiment c'est pas comme l'autre !)\n\nSi vous avez des relations au pays de Don Quichotte qui ont le mauvais go\u00fbt de ne pas parler fran\u00e7ais (!), il est d\u00e9sormais possible de leur sugg\u00e9rer de la lecture en espagnol, quel que soit ce dernier !\n\nEt tant que nous y sommes, au sud-est il y a aussi une version croate : https://lnkd.in/e3TznwXi \n\nD'ici quelques mois on devrait pers\u00e9v\u00e9rer au sud (de l'Europe) avec une version italienne et une portugaise, et pers\u00e9v\u00e9rer \u00e0 l'est (de l'Europe) avec une version polonaise. L'Europe s'est b\u00e2tie sur l'\u00e9nergie, ne l'oublions pas !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6996901588053164032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6996901590204870656,urn:li:activity:6996901590204870656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 212, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6996901590204870656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6996901590204870656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6996901590204870656", + "threadId": "activity:6996901590204870656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996901590204870656", + "urn": "urn:li:activity:6996901590204870656", + "numComments": 259, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6996901590204870656", + "reactionTypeCounts": [ + { + "count": 4698, + "reactionType": "LIKE" + }, + { + "count": 521, + "reactionType": "PRAISE" + }, + { + "count": 190, + "reactionType": "EMPATHY" + }, + { + "count": 59, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6996901590204870656", + "numLikes": 5484, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996901590204870656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5485, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6996436027229765634", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6996436027229765634)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6996436027229765634)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-spectacle-vivant-au-d%C3%A9fi-de-la-transition-activity-6996436027229765634-DbXR?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6996436026411909121", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6996436027229765634", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6996436026411909121", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "T73izRZmg+MF9q4Kj5eVyg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7741171083256221759", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675670386167?e=1677240000&v=beta&t=q-pqBiRJvFKr9MFX7FNSdsXiu-IYmFdJ2Yic-wuz9TQ", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675670386167?e=1677240000&v=beta&t=w2tgpgc4QX7KcXDwwKaMuV8_QyBU6auaet358JB-LGI", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675670386168?e=1677240000&v=beta&t=QaTdVPc-sn4WMckhC5JO8yNUFiaSojRG4AsdULJP2Ig", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675670386168?e=1677240000&v=beta&t=fUJbYr2qa_9SFjpKmxsCuppbEcxGHI3oS3y6no7T7As", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGE-d7dTWr4-g/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7741171083256221759)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7741171083256221759)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le spectacle vivant au d\u00e9fi de la transition \u00e9cologique by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/culture/article/2022/11/05/le-spectacle-vivant-au-defi-de-la-sobriete-energetique_6148598_3246.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le spectacle vivant au d\u00e9fi de la transition \u00e9cologique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6996436026411909121,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La d\u00e9carbonation ? Une affaire d'ing\u00e9nieurs (de l'inerte ou du vivant) pardi ! Eoliennes, m\u00e9thaniseurs, voitures \u00e9lectriques et bornes de recharge, ampoules \u00e0 LED, mat\u00e9riaux isolants et pompes \u00e0 chaleur, s\u00e9questration du CO2, r\u00e9gimes alimentaires des bovins, arr\u00eat du labour, hydrog\u00e8ne, batteries, trains, v\u00e9los.... la liste des objets techniques qui arrivent dans les d\u00e9bats est presque infinie d\u00e8s lors qu'il est question de baisser les \u00e9missions plan\u00e9taires de CO2.\n\nJuste apr\u00e8s on va trouver l'argent, \u00e2prement discut\u00e9 \u00e0 la COP 27 incidemment. Ce faisant, nous ratons peut-\u00eatre l'essentiel : notre repr\u00e9sentation de l'id\u00e9al, ce qui nous attire et nous repousse, le mod\u00e8le sur lequel on essaie de se caler, les habitudes qu'il faut prendre et celles dont il faut se d\u00e9partir, en un mot ce qui rel\u00e8ve du bien ou d\u00e9sirable et ce qui rel\u00e8ve du mal et du repoussant. \n\nIl y a donc un tout petit sujet culturel dans cette histoire. La culture, en fait, a un double rapport avec les \u00e9missions de gaz \u00e0 effet de serre. Tout d'abord son fonctionnement m\u00eame en engendre. \n\nLes mus\u00e9es sont parfois des aspirateur \u00e0 touristes a\u00e9roport\u00e9s (le Louvre ou le Moma), et les festivals, cin\u00e9mas, sites historiques ou remarquables (comme le Mont Saint Michel), des aspirateurs \u00e0 voitures. Les b\u00e2timents doivent aussi \u00eatre chauff\u00e9s et les d\u00e9cors fabriqu\u00e9s, et enfin l'audiovisuel - qui fait partie de la culture, porno compris :) - est le premier motif d'emploi du digital, lequel engendre 4% des \u00e9missions plan\u00e9taires environ.\n\nComme toute activit\u00e9 \"moderne\", la culture est elle aussi devenue d\u00e9pendante des combustibles fossiles. \n\nMais elle a un autre rapport \u00e0 la question : celle de \"cr\u00e9atrice de tendances\". Hollywood a surement fait autant - sinon plus - pour l'id\u00e9alisation du mode de vie \u00e9nergivore des am\u00e9ricains que toutes les campagnes publicitaires ou marketing des constructeurs de grosses voitures ou de maisons individuelles.\n\nC'est pour cela que, dans le Plan de Transformation de l'Economie Fran\u00e7aise, il y a un chapitre entier sur la culture (https://bit.ly/3UnN8ni ). Ce n'est pas juste un petit truc dont il faut s'occuper pour donner le change pendant que les sujets vraiment s\u00e9rieux se discutent avec les industriels. C'est un secteur qui contribue puissamment aux effets de mode et qui est par ailleurs issu de l'anthropoc\u00e8ne dans sa forme actuelle. \n\nCet article du Monde \u00e9voque quelques initiatives sur le sujet, soit port\u00e9es par des acteurs individuels (compagnies de th\u00e9\u00e2tre, organisateurs de festivals) soit par des entit\u00e9s collectives (associations professionnelles ou syndicats). \n\nSelon l'article du Monde, le travail du Shift Project sert \"de r\u00e9f\u00e9rence\" au secteur. M\u00eame si cette affirmation ne refl\u00e8te que le dixi\u00e8me de la r\u00e9alit\u00e9, cela signifie quand m\u00eame que nous sommes identifi\u00e9s comme utiles pour que les acteurs de ce domaine s'emparent de la question climatique. C'est indispensable pour que le reste de la soci\u00e9t\u00e9 fasse de la d\u00e9carbonation un but d\u00e9sirable. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6996436026411909121,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6996436027229765634,urn:li:activity:6996436027229765634,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6996436027229765634,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6996436027229765634,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6996436027229765634", + "threadId": "activity:6996436027229765634", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996436027229765634", + "urn": "urn:li:activity:6996436027229765634", + "numComments": 109, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6996436027229765634", + "reactionTypeCounts": [ + { + "count": 1235, + "reactionType": "LIKE" + }, + { + "count": 86, + "reactionType": "INTEREST" + }, + { + "count": 75, + "reactionType": "PRAISE" + }, + { + "count": 43, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "EMPATHY" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6996436027229765634", + "numLikes": 1472, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996436027229765634", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1472, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6995781404512952320", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6995781404512952320)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6995781404512952320)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climatsup-business-former-les-acteurs-de-activity-6995781404512952320-70v_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6995781403606929410", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6995781404512952320", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6995781403606929410", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "gSGz2AhmbLyn8LcJwpOPOA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8459012764171481968", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676596121923?e=1677240000&v=beta&t=mQcuJKnoZipMWKudDoCL8QNgQ5Um8fJ8yW2JgA5Szuw", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676596121923?e=1677240000&v=beta&t=l_5dQeoNwEuQIG2Qm8SktdZA0E65KSoofB1b1hlXH08", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676596121923?e=1677240000&v=beta&t=29IAA03gIOdM100ACzbxxsgD6i_2MuqrAzWOMpxIq9c", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676596121923?e=1677240000&v=beta&t=ZBAzvvpnQT8Mz4Fq_2GtEHvRLIW9SL1AsnG64tG_eQo", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGzKG2KtofCCA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8459012764171481968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8459012764171481968)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: ClimatSup Business - Former les acteurs de l'\u00e9conomie de demain by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/rapport-final-climat-sup-business/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "ClimatSup Business - Former les acteurs de l'\u00e9conomie de demain" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6995781403606929410,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Comment apprendre aux \u00e9l\u00e8ves des \u00e9coles de gestion \u00e0 faire un business plan compatible accord de Paris ? Du marketing ou de la publicit\u00e9 compatible avec les limites plan\u00e9taires ? Du management \"bas carbone\" ?\n\nApr\u00e8s avoir travaill\u00e9 sur la mise en harmonie de l'enseignement dans les \u00e9coles d'ing\u00e9nieur avec la n\u00e9cessaire d\u00e9carbonation (sous contrainte d'autres ressources) de l'\u00e9conomie, The Shift Project r\u00e9cidive (si l'on peut dire) avec les \u00e9coles de gestion (en attendant de compl\u00e9ter la trilogie dans pas longtemps avec l'enseignement de la finance).\n\nLe travail effectu\u00e9 par notre think tank a consist\u00e9 \u00e0 cr\u00e9er une \"m\u00e9thode op\u00e9rationnelle\" pour aider un \u00e9tablissement d'enseignement sup\u00e9rieur en gestion \u00e0 proposer un enseignement compatible avec les d\u00e9fis de demain et non avec ceux d'hier.\n\nUne fois cela dit, un certain nombre de probl\u00e8mes pratiques se posent pour passer \u00e0 l'action :\n- comment r\u00e9viser les programmes ? Faut-il proposer la m\u00eame chose qu'actuellement avec en plus un peu de RSE ou de physique, ou bien il faut revoir tout l'enseignement, y compris faire un tri s\u00e9v\u00e8re dans ce qui existe ?\n- Aura-t-on besoin des m\u00eames enseignants qu\u2019il faudra juste former \u00e0 de nouvelles approches, ou bien l\u2019angle sera tellement diff\u00e9rent que le corps enseignant apte \u00e0 officier dans ce nouveau contexte viendra surtout de l\u2019ext\u00e9rieur ?\n-\u00a0Faut-il s\u00e9lectionner les \u00e9l\u00e8ves sur des bases diff\u00e9rentes ?\n- Faut-il changer les syst\u00e8mes de classement des \u00e9tablissements, pour que le salaire \u00e0 la sortie ne soit plus le principal crit\u00e8re prix en compte ? \n- Pour une \u00e9cole qui voudrait \"faire sa r\u00e9volution\", comment cesser de servir un syst\u00e8me que l\u2019on sait aller dans le mur sans aller dans le mur soi-m\u00eame parce que l\u2019on est sorti du jeu ?\n- Faut-il \u00e9couter les recruteurs, qui sont par nature l\u2019incarnation de l\u2019existant dont il faut se d\u00e9partir, ou \u00e9couter des \u00e9l\u00e8ves, qui peuvent avoir des aspirations qui ne correspondent pas (encore) \u00e0 des emplois existants ?\n\nLe rapport du Shift Project ne fournira pas de r\u00e9ponse exhaustive \u00e0 toutes ces questions, et \u00e0 toutes les autres qui viennent \u00e0 l'esprit, mais il devrait n\u00e9anmoins int\u00e9resser toute personne qui partagerait nos souhaits de voir cet enseignement sup\u00e9rieur \"shifter\" un peu plus rapidement que maintenant. \n\nCar si nous prenons l'accord de Paris au pied de la lettre - et ne pas le faire en pleine COP est os\u00e9 :) - il reste 30 ans pour amener les \u00e9missions \u00e0 z\u00e9ro. Les cadres arrivant aujourd'hui sur le march\u00e9 du travail devraient donc d\u00e9j\u00e0 avoir les r\u00e9flexes adapt\u00e9s \u00e0 un monde o\u00f9 l'\u00e9nergie facile va se contracter, ce qui est l'\u00e9volution inverse de celle qui a men\u00e9 \u00e0 la mondialisation dont les anciens des \u00e9coles de gestion sont les b\u00e9n\u00e9ficiaires directs. \n\nNB : Si par chance vous \u00eates disponible dans 45 minutes (!) la pr\u00e9sentation du rapport aura lieu \u00e0 Audencia (\u00e0 Nantes) et en visio sur la page https://lnkd.in/eaSz8idj (il y aura un replay sinon)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6995781403606929410,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6995781404512952320,urn:li:activity:6995781404512952320,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 110, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6995781404512952320,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6995781404512952320,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6995781404512952320", + "threadId": "activity:6995781404512952320", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995781404512952320", + "urn": "urn:li:activity:6995781404512952320", + "numComments": 144, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6995781404512952320", + "reactionTypeCounts": [ + { + "count": 1748, + "reactionType": "LIKE" + }, + { + "count": 129, + "reactionType": "INTEREST" + }, + { + "count": 125, + "reactionType": "PRAISE" + }, + { + "count": 87, + "reactionType": "MAYBE" + }, + { + "count": 35, + "reactionType": "APPRECIATION" + }, + { + "count": 26, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6995781404512952320", + "numLikes": 2150, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995781404512952320", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2150, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6995652656836837376", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6995652656836837376)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6995652656836837376)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_letat-r%C3%A9clame-plus-defforts-de-d%C3%A9carbonation-activity-6995652656836837376-aFC3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6995652655922487296", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6995652656836837376", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6995652655922487296", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "QdaeresbuSEkurnK1NnY0g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8979046753261814202", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675759221812?e=1677240000&v=beta&t=3O_5Z-W14bzk2hKGftC-p4zcfCPcRz1nqxMrG1sTRN8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675759221812?e=1677240000&v=beta&t=7Dt_UKvUlJo_2BkN7TjnjboOm4nqQfd40swI52RPGVY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675759221812?e=1677240000&v=beta&t=p2GoxTcKSLaIMOp3hKQjeW3jnd-25UHlMATsQC-6AQA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675759221812?e=1677240000&v=beta&t=Exybn4d77Fqb4K6leh_49183uk9WkO-AwsKUmfG0pCU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG5QbMuSz8lqw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8979046753261814202)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8979046753261814202)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'Etat r\u00e9clame plus d'efforts de d\u00e9carbonation aux industriels by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/letat-reclame-plus-defforts-de-decarbonation-aux-industriels-1876669#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'Etat r\u00e9clame plus d'efforts de d\u00e9carbonation aux industriels" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6995652655922487296,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans le chapitre \"industrie\" du Plan de Transformation de l'Economie Fran\u00e7aise (https://lnkd.in/esiqHkbf), nous avions fait le constat que les 3/4 des \u00e9missions directes (donc hors \u00e9missions associ\u00e9es \u00e0 la consommation \u00e9lectrique du secteur, et bien \u00e9videmment hors \u00e9missions du \"scope 3\") du secteur industriel en France viennent de 3 activit\u00e9s qui repr\u00e9sentent chacune environ un quart du total du secteur :\n- l'aci\u00e9rie\n- la cimenterie et activit\u00e9s connexes (production de chaux par exemple, mais le ciment domine de la t\u00eate et des \u00e9paules)\n- la chimie de base (production des monom\u00e8res, de la soude et du chlore, de l'hydrog\u00e8ne, etc).\n\nNos propositions permettaient de viser, pour ces secteurs, une division par 5 \u00e0 10 des \u00e9missions \u00e0 l'horizon 2050 - ce n'est pas encore la neutralit\u00e9 mais on s'en rapproche - en combinant sobri\u00e9t\u00e9 - il y a une baisse des volumes - et avanc\u00e9es techniques (par exemple la r\u00e9duction directe \u00e0 l'hydrog\u00e8ne dans la m\u00e9tallurgie ou un m\u00e9lange de capture et s\u00e9questration du carbone et de combustibles non fossiles dans la cimenterie).\n\nJe ne sais pas si l'Elys\u00e9e a lu le PTEF, mais l'\u00e9v\u00e9nement rapport\u00e9 par Les Echos s'inscrit dans la m\u00eame logique : porter une attention particuli\u00e8re aux sites fortement \u00e9missifs, o\u00f9 la d\u00e9carbonation va souvent avec des investissements lourds qu'il faut donc pouvoir \"s\u00e9curiser\".\n\n\"s\u00e9curiser\" signifie en pratique que, sur leur dur\u00e9e de vie, ces investissements vont \u00e9viter plus de couts qu'ils n'en engendreront. La logique est que, comme les sites gros \u00e9metteurs sont soumis aux quotas, et que ces derniers sont d\u00e9sormais payants, tout le CO2 non \u00e9mis peut se convertir en quotas non achet\u00e9s, et cet argent peut \u00eatre mis en face de l'amortissement de l'investissement r\u00e9alis\u00e9.\n\nPour que le syst\u00e8me fonctionne bien, il y a un point que cet article n'\u00e9voque pas : la garantie d'un prix \u00e9lev\u00e9 et stable du CO2 \u00e0 l'avenir. Le march\u00e9 ne peut pas garantir cela. Il faut donc que la puissance publique s'en m\u00eale, or pour le moment la Commission (car cela d\u00e9pend d'elle) est r\u00e9tive \u00e0 l'id\u00e9e de mettre un prix plancher aux quotas mis aux ench\u00e8res.\n\nLe deuxi\u00e8me point qui n'est pas \u00e9voqu\u00e9 est la protection aux fronti\u00e8res : si les couts de production domestiques qui n'engendrent que peu de CO2 sont sup\u00e9rieurs \u00e0 ceux des concurrents \u00e9trangers qui \u00e9mettent plus, il faut pouvoir compenser la diff\u00e9rence aux fronti\u00e8res (comme pour la TVA). \n\nDans les commodit\u00e9s certaines voyagent peu en pratique (le ciment), mais d'autres beaucoup plus (acier ou polym\u00e8res). Si l'Etat veut que les industriels avancent - et il a raison de le vouloir - il faut qu'il fasse sa part dans la planification, en s'occupant des deux \u00e9l\u00e9ments \u00e9voqu\u00e9s plus haut. Une troisi\u00e8me alternative est qu'il prenne \u00e0 sa charge les investissements des industriels, en allant \u00e9ventuellement jusqu'\u00e0 une nationalisation ou une cogestion - une \u00e9ventualit\u00e9 aujourd'hui tr\u00e8s peu compatible avec l'orientation \u00e9conomique lib\u00e9rale, mais l'histoire n'a pas fini d'\u00eatre \u00e9crite !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6995652655922487296,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6995652656836837376,urn:li:activity:6995652656836837376,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 42, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6995652656836837376,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6995652656836837376,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6995652656836837376", + "threadId": "activity:6995652656836837376", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995652656836837376", + "urn": "urn:li:activity:6995652656836837376", + "numComments": 67, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6995652656836837376", + "reactionTypeCounts": [ + { + "count": 966, + "reactionType": "LIKE" + }, + { + "count": 98, + "reactionType": "MAYBE" + }, + { + "count": 92, + "reactionType": "INTEREST" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6995652656836837376", + "numLikes": 1189, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995652656836837376", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1189, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6995295509888299008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6995295509888299008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6995295509888299008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_agriculture-il-faut-abandonner-le-labour-activity-6995295509888299008-tR2d?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6995295508894220288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6995295509888299008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6995295508894220288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "x/2T5ojYnFzWEnVMZ14Chw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7352330957760746843", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676368873920?e=1677240000&v=beta&t=oSKXCH78m-dui7lavcEXHFJ5NPFiGSfqnoU-H2soLeQ", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676368873920?e=1677240000&v=beta&t=TorH-d6o01axdCngyF_5lTaYDnR4mqZZHS3RIP0fymo", + "expiresAt": 1677240000000, + "height": 526 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676368873921?e=1677240000&v=beta&t=ks4ZMq7wd94h2L6Onl6Lcsiw0qbd4XfNoBJIvOt9GJ8", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676368873921?e=1677240000&v=beta&t=U4iR0h-I2rqsRSK_Y98XbATNe86cXo5jZghTu9R4QsU", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQH90A8YSrTHmg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7352330957760746843)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7352330957760746843)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "letelegramme.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Agriculture : \u00ab Il faut abandonner le labour \u00bb by letelegramme.fr", + "actionTarget": "https://www.letelegramme.fr/dossiers/en-quete-de-demain/agriculture-il-faut-abandonner-le-labour-04-11-2022-13210066.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Agriculture\u00a0: \u00ab\u00a0Il faut abandonner le labour\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6995295508894220288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 67, + "length": 14, + "miniProfile": { + "firstName": "Lionel", + "lastName": "Alletto", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB2KoKkBj0_b_myDoXow3e41vHVaBIz6tEg", + "occupation": "Directeur de recherche chez INRAE", + "objectUrn": "urn:li:member:495624361", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB2KoKkBj0_b_myDoXow3e41vHVaBIz6tEg", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1517601436955?e=1681948800&v=beta&t=6UDhR5DaDQc0abluUVzw5DIRZdzIDUqZ8laPProAioE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1517601436955?e=1681948800&v=beta&t=3kj7moF6B14uDTKAL3l58_lUZuh2devx1C3v18QRsM4", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5116AQF2X3nHXIo75w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "lionel-alletto-7a1b97119", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1519478248294?e=1681948800&v=beta&t=xRv5YFR8F6qpGh64kDFcFg2INTWRXm47nZITXBkNQk0", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1519478248294?e=1681948800&v=beta&t=cQSJzvyxVOq_542c3A4h8TkF0sI0-unWUlWb6D906b0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1519478248294?e=1681948800&v=beta&t=GAsalzLUw4G74zryvfm0gjVeQXqsYqVNh07P1Dxd_9Q", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1519478248294?e=1681948800&v=beta&t=BC9H48gVjSWv8g5FtdZq3y35szq7clYTuNLSKPXtVgU", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQF0oKakpSHzWQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "bcxSG5OlSmSudjwoiTnFeg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans un entretien au T\u00e9l\u00e9gramme (qui \u00e0 une \u00e9poque fut \"de Brest\"), Lionel Alletto \u00e9voque les modifications des pratiques agricoles qu'il serait pertinent de mettre en oeuvre pour gagner en r\u00e9silience et diminuer la pression sur l'environnement (NB : je soup\u00e7onne la transcription de l'interview de comporter quelques erreurs ici ou l\u00e0, qui conduisent certaines phrases \u00e0 \u00eatre \u00e9tranges ou en d\u00e9calage).\n\nQuelques \u00e9l\u00e9ments int\u00e9ressants de cette interview :\n- les techniques sans labour semblent am\u00e9liorer la r\u00e9sistance \u00e0 la s\u00e9cheresse (un avantage qui pourrait ne pas \u00eatre mince avec ce qui nous attend)\n- la diversification des cultures - dont la polyculture \u00e9levage - permet de diminuer l'usage des phytosanitaires\n- le seul phytosanitaire vraiment utile en agriculture de conservation c'est... le glyphosate (tous les \u00e9chos que j'ai eus laissent penser que ce n'est pas celui dont l'interdiction est la plus prioritaire...)\n- en \"p\u00e9riode de temps calme\" sur le prix de l'\u00e9nergie, l'agriculture de conservation ne change pas la donne sur le plan \u00e9conomique (donc elle ne rapporte rien de plus... mais ne coute pas plus non plus), mais quand les prix des hydrocarbures grimpent au plafond elle donne un avantage\n\nJ'avais retenu par ailleurs que d'avoir un couvert v\u00e9g\u00e9tal sur l'ensemble de l'ann\u00e9e favorise la s\u00e9questration de carbone dans le sol. \n\n\"sur le papier\", dixit l'urbain que je suis qui ne tient pas souvent une fourche ou une b\u00eache :), cette technique semble donc \u00e0 g\u00e9n\u00e9raliser. Que manque-t-il pour que cela soit le cas ? La liste des \"conditions du succ\u00e8s\" n'est pas tr\u00e8s diff\u00e9rente ici de ce qu'elle est pour tout passage \u00e0 l'\u00e9chelle d'une mani\u00e8re de faire pour laquelle des pionniers montrent que globalement ca fonctionne :\n- une valorisation \"culturelle\" d'un changement de pratique dans un monde o\u00f9 c'est plut\u00f4t l'inverse qui est la r\u00e8gle. Les terroirs, AOC, etc, valorisent le fait de \"faire toujours pareil\", et l\u00e0 il s'agit de valoriser l'inverse !\n- du coup il faut un accompagnement et de la formation, \u00e0 la fois par la recherche (c'est donc une tr\u00e8s bonne chose que l'INRAE s'en m\u00eale) et par les entit\u00e9s d\u00e9volues \u00e0 cet effet (chambres d'agriculture et conseil interne des coop\u00e9ratives notamment)\n- il faut aussi que les r\u00e8gles \u00e9conomiques ne dissuadent pas explicitement les modifications de pratiques, voire les encouragent (il n'y a pas que les prix de vente pour cela : l'Etat, comme il l'a fait pour le covid, pourrait reprendre de la dette d'agriculteurs qui accepteraient de changer de pratiques, par exemple). Or le premier souci des r\u00e8gles \u00e9conomiques aujourd'hui n'est pas d'assurer la \"durabilit\u00e9 physique\" !\n\nTout est r\u00e9sum\u00e9 dans cette phrase de l'interview : \"Les syst\u00e8mes [agricoles]\u00a0doivent (...) gagner en r\u00e9silience et (...) \u00eatre moins d\u00e9pendants des ressources externes, \u00eatre plus diversifi\u00e9s pour faire face aux al\u00e9as, maximiser les services \u00e9cosyst\u00e9miques\". Il n'y a plus qu'\u00e0 :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6995295508894220288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6995295509888299008,urn:li:activity:6995295509888299008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 194, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6995295509888299008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6995295509888299008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6995295509888299008", + "threadId": "activity:6995295509888299008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995295509888299008", + "urn": "urn:li:activity:6995295509888299008", + "numComments": 320, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6995295509888299008", + "reactionTypeCounts": [ + { + "count": 1800, + "reactionType": "LIKE" + }, + { + "count": 187, + "reactionType": "INTEREST" + }, + { + "count": 176, + "reactionType": "MAYBE" + }, + { + "count": 46, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "EMPATHY" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6995295509888299008", + "numLikes": 2246, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995295509888299008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2247, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6994982486191566848", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6994982486191566848)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6994982486191566848)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_aujourdhui-commence-la-cop-27-%C3%A0-charm-el-cheikh-activity-6994982486191566848-5yPd?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6994982484799037440", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6994982486191566848", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6994982484799037440", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "OTR4LT9piJ+X6AiC94OVNA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHyVFCilO5z7g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHyVFCilO5z7g", + "artifacts": [ + { + "width": 1530, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1667733782241?e=1679529600&v=beta&t=E76FRm9Gog9U9xAl9hvwLkEN4q4nGln5JAmo0TtQSMg", + "expiresAt": 1679529600000, + "height": 978 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1667733784190?e=1679529600&v=beta&t=VOWkEpgiTvYBGBugRdds3g0Aeby8hDcRFJphHtLwVB4", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1667733784190?e=1679529600&v=beta&t=HA2EVhpqJD87lljIQXa14UZWyNHm-GxsbpsW1DlW7s8", + "expiresAt": 1679529600000, + "height": 818 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1667733784190?e=1679529600&v=beta&t=sjOjBFsypelUKUIl5khRlgGMSh_i6JtW2JIBRlRWuQM", + "expiresAt": 1679529600000, + "height": 307 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1667733784190?e=1679529600&v=beta&t=PNWXm69zmjFs7ssCfPQRkZajU-OKUPgV9bLMCGG5K-s", + "expiresAt": 1679529600000, + "height": 102 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1667733784190?e=1679529600&v=beta&t=1SiZkvv8Dcw_dYgVNMF8TZuOVEFERA9RHtiq8qM5CVg", + "expiresAt": 1679529600000, + "height": 511 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHyVFCilO5z7g/feedshare-shrink_" + }, + "displayAspectRatio": 0.6392156862745098 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6994982484799037440,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Aujourd'hui commence la COP 27 \u00e0 Charm el-Cheikh, au bord de la Mer Rouge. Esp\u00e9rons que la proximit\u00e9 d'un d\u00e9sert et les 28 \u00e0 30 \u00b0C en novembre (https://bbc.in/3FNxQ6R ) permettront aux participant(e)s de se sentir plus concern\u00e9s que quand tout le monde est en doudoune !\n\nIl y sera question d'agir pour limiter le r\u00e9chauffement. Or, c'est physique, cela signifie se contraindre sur les \u00e9missions. De combien ? Cela d\u00e9pend de l'objectif !\n\nLe graphique ci-dessous donne les trajectoires d'\u00e9missions qui vont avec des r\u00e9chauffements donn\u00e9s en 2100. Tout en bas, le trait bleu ciel correspond \u00e0 1,5 \u00b0C et, et tout en haut la rouge fonc\u00e9e du haut \u00e0 4,5 \u00b0C. On trouvera en commentaire le graphique des \u00e9l\u00e9vations de temp\u00e9rature fait avec le m\u00eame code couleur.\n\nPour 1,5\u00b0C en 2100 on voit que les \u00e9missions doivent \u00eatre nulles en 2060, puis \"n\u00e9gatives\" : cela signifie que la totalit\u00e9 de l'\u00e9nergie utilis\u00e9e se d\u00e9carbone en 40 ans, et ensuite on arrive \u00e0 reprendre du CO2 depuis l'air via des pr\u00e9c\u00e9d\u00e9s technologiques d\u00e9ploy\u00e9s \u00e0 large \u00e9chelle. Pour \"moins de 2\u00b0C en 2100\" c'est pareil mais d\u00e9cal\u00e9 de 20 ans.\n\nAvec des \u00e9missions qui seraient surtout contraintes \u00e0 l'avenir par la disponibilit\u00e9 en \u00e9nergie fossile (pic p\u00e9trolier maintenant, pic gazier en 2030, pic charbonnier d'ici 2050) on est un peu en dessous de 3\u00b0C en 2100 (courbe orange).\n\nEnfin les deux courbes du haut signifient une \"\u00e9conomie fossile\" non limit\u00e9e - ni par l'\u00e9puisement des gisements d'hydrocarbures, ni par les cons\u00e9quences du changement climatique, ni par d'autres limites plan\u00e9taires - jusqu'en 2100.\n\nQuelques commentaires :\n\n- m\u00eame en diminuant les \u00e9missions mondiales de 7% par an d\u00e8s demain matin, la temp\u00e9rature continue d'augmenter d'environ 0,2 \u00b0C par d\u00e9cennie pour les 20 ans qui viennent. Cela est du \u00e0 l'inertie chimique du CO2 : tant que les \u00e9missions ne sont pas nulles la concentration de ce gaz dans l'air - et \u00e0 la suite la temp\u00e9rature - augmente.\n\n- comme je ne crois pas que l'on puisse compter sur la reprise du CO2 de l'atmosph\u00e8re \u00e0 l'\u00e9chelle imagin\u00e9e pour les sc\u00e9narios 1,5 \u00b0C et 2\u00b0C, sauf pand\u00e9mie ou chute de com\u00e8te on va se prendre 1,5\u00b0C de toute fa\u00e7on, et c'est presque pareil pour 2\u00b0C -> il faut penser massivement r\u00e9silience (et non juste \"adaptation\", terme qui suppose une absence d'inconv\u00e9nient si on s'y prend bien) d\u00e8s \u00e0 pr\u00e9sent\n\n- baisser les \u00e9missions de 5% par an c'est tr\u00e8s probablement baisser le PIB de 3 \u00e0 4% par an (https://bit.ly/3T2QevC ). J'ai quelques doutes sur le fait que ca puisse \u00eatre un objectif consensuel dans l'enceinte des Nations Unies (o\u00f9 tout se d\u00e9cide par consensus).\n\nCOP 27 ou pas, en Europe, la \"voiture balai\" de la baisse subie des combustibles fossiles est d\u00e9j\u00e0 en cours (et l'\u00e9tait avant Poutine !). Ca ne va pas arr\u00eater la d\u00e9rive climatique, mais ca nous force d\u00e9j\u00e0 \u00e0 conjuguer d\u00e9crue des moyens mat\u00e9riels \u00e0 notre disposition et accroissement des dommages climatiques. Il serait temps de se creuser la cervelle pour l'avenir avec le bon cahier des charges. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6994982484799037440,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6994982486191566848,urn:li:activity:6994982486191566848,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 81, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6994982486191566848,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6994982486191566848,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6994982486191566848", + "threadId": "activity:6994982486191566848", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994982486191566848", + "urn": "urn:li:activity:6994982486191566848", + "numComments": 206, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6994982486191566848", + "reactionTypeCounts": [ + { + "count": 2411, + "reactionType": "LIKE" + }, + { + "count": 337, + "reactionType": "INTEREST" + }, + { + "count": 180, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "APPRECIATION" + }, + { + "count": 28, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6994982486191566848", + "numLikes": 2997, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994982486191566848", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2998, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6994608569127968768", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6994608569127968768)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6994608569127968768)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_assurer-le-risque-climatique-laffaire-activity-6994608569127968768-I5uI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6994608568117174272", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6994608569127968768", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6994608568117174272", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "DJ6brDHcGg4qKe/zNVehKQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8973742835780954443", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676035233502?e=1677240000&v=beta&t=aoF78Vj7tIBuES_kZTi7d8egvBTZJBWuWTPfTLJzi5M", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676035233502?e=1677240000&v=beta&t=FUSlvnHm-OGfpjYxgpdvNeHxvLZfUVC8FJC9sb5PrLM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676035233502?e=1677240000&v=beta&t=wp8Q4reARiRcL4toRvnF1uBW_qFLzNoTYN-J-Z4pKkA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676035233502?e=1677240000&v=beta&t=lD0QDQ_ta9YHWInqf0vw0aBB_0dPLyLIDTtut8fi4bA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFIxxGc--M1BQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8973742835780954443)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8973742835780954443)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Assurer le risque climatique ? L'affaire du public et du priv\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/assurer-le-risque-climatique-laffaire-du-public-et-du-prive-1873039" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Assurer le risque climatique\u00a0? L'affaire du public et du priv\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6994608568117174272,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"Un monde \u00e0 4\u00b0C n'est pas assurable\" : on se souvient (ou pas !) de cette d\u00e9claration d'Henri de Castries (ex-patron d'Axa), pour rappeler qu'on ne pouvait compter sur les assureurs pour servir de filet de s\u00e9curit\u00e9 en cas de r\u00e9chauffement trop prononc\u00e9.\n\nDans une tribune r\u00e9cente parue dans Les Echos, le pr\u00e9sident du premier r\u00e9assureur fran\u00e7ais (SCOR) confirme que ceux qui sont \u00e0 risque dans cette histoire sont les assur\u00e9s et non les assureurs. Il a largement raison.\n\nTout d'abord, le changement climatique va surtout endommager des actifs naturels qui valent z\u00e9ro par convention dans l'\u00e9conomie, et ne peuvent \u00eatre ni assur\u00e9s, ni remis en \u00e9tat. La Mer de Glace, la pluviom\u00e9trie en France ou les coraux tropicaux ne peuvent pas \u00eatre remis en \u00e9tat si n\u00e9cessaire par une bonne police d'assurance ! Et dans ces cas de figure le risque est \u00e0 l'\u00e9vidence port\u00e9 par les humains qui b\u00e9n\u00e9ficient des services naturels, non par l'assureur.\n\nCe qui peut \u00e9ventuellement \u00eatre assur\u00e9 est le d\u00e9faut d'activit\u00e9 \u00e9conomique qui fait suite \u00e0 la disparition d'actifs naturels : si le Rhin baisse trop pour que les barges passent, l'industriel en bord de Rhin peut essayer de s'assurer pour les pertes d'exploitation qui en r\u00e9sultent. Mais ca ne fait pas revenir le Rhin.\n\nIl y a ensuite l'argument que l'assureur n'aimerait pas le risque. C'est tout le contraire : sans risque il n'y a pas besoin d'assurance. Le m\u00e9tier de l'assureur est, pour un risque donn\u00e9, de \"pr\u00e9voir\" l'ampleur des dommages possibles pour les assur\u00e9s, et de faire payer \u00e0 ces derniers le cout de son service pour le m\u00eame montant plus sa marge.\n\nQuand il y a un risque de devoir payer plus que les primes encaiss\u00e9es (alea trop volatil et pr\u00e9vision des dommages trop impr\u00e9cise, et/ou consentement \u00e0 payer de l'assur\u00e9 pas assez \u00e9lev\u00e9), alors l'assureur cesse de proposer ses services. Pour l'assureur, le risque est \"juste\" une diminution de son activit\u00e9 dans le segment consid\u00e9r\u00e9.\n\nPourquoi est-ce que cela ne semble pas chagriner plus que ca l'auteur de cette tribune qui rappelle ce fait ? Probablement parce que toutes les projections \u00e9conomiques \"voient\" de la croissance \u00e0 l'infini, climat ou pas (m\u00eame les sc\u00e9narios \"compatibles accord de Paris\" utilis\u00e9s pour les mod\u00e9lisations du GIEC postulent de la croissance \u00e9conomique ininterrompue jusqu'en 2100). \n\nLe secteur de l'assurance sait que son chiffre d'affaire est grosso modo proportionnel au PIB. La seule crainte que lui inspire la d\u00e9rive climatique est alors de devoir basculer sur d'autres types de risques, mais comme la solvabilit\u00e9 globale de ses clients est cens\u00e9e suivre la croissance, le climat est juste un motif d'arbitrage de son portefeuille de risques assur\u00e9s.\n\nEvidemment l'\u00e9quation change du tout au tout si la d\u00e9rive climatique peut contracter le PIB (et non juste le faire croitre moins vite). Pour avoir vraiment peur, les assureurs devront donc se convaincre que la d\u00e9rive climatique est susceptible d'engendrer une r\u00e9cession structurelle. Nous n'y sommes pas." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6994608568117174272,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6994608569127968768,urn:li:activity:6994608569127968768,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 77, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6994608569127968768,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6994608569127968768,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6994608569127968768", + "threadId": "activity:6994608569127968768", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994608569127968768", + "urn": "urn:li:activity:6994608569127968768", + "numComments": 100, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6994608569127968768", + "reactionTypeCounts": [ + { + "count": 1707, + "reactionType": "LIKE" + }, + { + "count": 274, + "reactionType": "MAYBE" + }, + { + "count": 266, + "reactionType": "INTEREST" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6994608569127968768", + "numLikes": 2281, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994608569127968768", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2282, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6994209415067279360", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6994209415067279360)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6994209415067279360)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-audition-%C3%A0-lassembl%C3%A9e-nationale-activity-6994209415067279360-fmrw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6994209414270320641", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6994209415067279360", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6994209414270320641", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "NVi06T+N60iacQauZvLIcA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8737146986113728955", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676509249480?e=1677240000&v=beta&t=aKmtczLLBoZuv7UPzf6ovQfl42lu_bFPT7baIrZMFT0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676509249480?e=1677240000&v=beta&t=6BUjz0YCLIRdhxQGF49S7Bejq55MJFJsPU5BjW05UVc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676509249480?e=1677240000&v=beta&t=JvgSAvHlBmAgSq1UBKkQf3MJItYxm9pMdwLB7NYdpro", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676509249480?e=1677240000&v=beta&t=OTlidCxsswX5D-rOQHjefiBOVEo7uqO-A8yjKXudoRo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGW7zT2IOjyIg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8737146986113728955)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8737146986113728955)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici : Audition \u00e0 l'Assembl\u00e9e nationale - 02/11/2022 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=oweVFXFFh04" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Audition de Jean-Marc Jancovici, membre du Haut Conseil pour le climat, par la commission d'enqu\u00eate de l'Assembl\u00e9e Nationale visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France ( infos sur cette..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici : Audition \u00e0 l'Assembl\u00e9e nationale - 02/11/2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6994209414270320641,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Assembl\u00e9e Nationale vient de cr\u00e9er une \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\" (https://bit.ly/3FJnu81 ). Les commissions d'enqu\u00eate du Parlement sont des instances qui servent \u00e0 contr\u00f4ler l'action du gouvernement (https://bit.ly/3E0VxaA ). \n\nElles ont des pouvoirs d'investigation \u00e9tendus : une personne convoqu\u00e9e par une commission d'enqu\u00eate ne peut refuser d'y aller sous peine de sanctions p\u00e9nales, et la Commission peut se faire communiquer tout document qu'elle juge utile (sauf ce qui est couvert par le secret d\u00e9fense ou assimil\u00e9) pour mener ses travaux.\n\nLa possibilit\u00e9 de cr\u00e9er une commission d'enqu\u00eate fait partie des pr\u00e9rogatives des groupes politiques \u00e0 l'Assembl\u00e9e, et ces commissions d'enqu\u00eate s'inscrivent \u00e9videmment dans le jeu politique o\u00f9 un groupe de l'opposition va pr\u00e9f\u00e9rentiellement choisir un sujet qui \"agace\" le pouvoir en place.\n\nLa commission pour laquelle j'ai \u00e9t\u00e9 convoqu\u00e9 a \u00e9t\u00e9 cr\u00e9\u00e9e par les R\u00e9publicains, et je parierais volontiers qu'elle veut pouvoir conclure que Hollande et Macron (voire avant) ont fait \"n'importe quoi\" en mati\u00e8re de politique \u00e9lectrique. Cela \u00e9tant, mon audition n'a que peu port\u00e9 sur l'\u00e9valuation des politiques publiques men\u00e9es ces 10 ou 20 derni\u00e8res ann\u00e9es. \n\n\"On\" m'a surtout pos\u00e9 des questions sur les avantages et inconv\u00e9nients de tel ou tel type d'\u00e9nergie, sans oublier de parler de sobri\u00e9t\u00e9 ou de d\u00e9pendance - et sur quoi - de notre pays \u00e0 des approvisionnements \u00e9trangers. Car, de fait, depuis la fin de l'\u00e8re renouvelable, notre pays est d\u00e9pendant de pays producteurs d'hydrocarbures ou de minerais, et le restera demain.\n\nDepuis la mise en ligne de cette vid\u00e9o, des extraits de 10 secondes (!) ou 2 minutes ont commenc\u00e9 \u00e0 circuler, avec comme commentaire \"voici ce que pense Jancovici\". Mais... dans une vid\u00e9o de plus de 2 heures, chacun pourra trouver un court extrait qui lui plait plus particuli\u00e8rement et cens\u00e9 r\u00e9sumer ma pens\u00e9e !\n\nToutes les \u00e9nergies ont des avantages, toutes ont des inconv\u00e9nients, et dans cette audition j'ai du \u00e9voquer les avantages de toutes les \u00e9nergies potentiellement disponibles. Avec un bon logiciel de montage on peut donc me pr\u00e9senter comme \u00e9tant favorable \u00e0... n'importe laquelle de nos \u00e9nergies !\n\nBien \u00e9videmment, il est impossible de r\u00e9sumer en quelques minutes la totalit\u00e9 de ce qu'il faut comprendre pour se faire une opinion sur la question. Un r\u00e9sum\u00e9 est toujours un exercice imparfait (h\u00e9las) et il faut du temps (h\u00e9las \u00e0 nouveau) pour suffisamment faire le tour de la question pour avoir une conclusion \u00e9tay\u00e9e.\n\nIl y a 10 ans j'avais \u00e9t\u00e9 auditionn\u00e9 par une autre commission d'enqu\u00eate (sur le \"cout r\u00e9el de l'\u00e9lectricit\u00e9\" : https://bit.ly/3NBhxMr ). Selon que l'on aime les verres \u00e0 moiti\u00e9 vides ou \u00e0 moiti\u00e9 pleins, on pourra se r\u00e9jouir que les questions soient moins na\u00efves et brossent plus large, ou que certains faits \"\u00e9l\u00e9mentaires\" fassent toujours l'objet d'un dialogue de sourds." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6994209414270320641,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6994209415067279360,urn:li:activity:6994209415067279360,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 183, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6994209415067279360,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6994209415067279360,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6994209415067279360", + "threadId": "activity:6994209415067279360", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994209415067279360", + "urn": "urn:li:activity:6994209415067279360", + "numComments": 355, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6994209415067279360", + "reactionTypeCounts": [ + { + "count": 3673, + "reactionType": "LIKE" + }, + { + "count": 329, + "reactionType": "INTEREST" + }, + { + "count": 273, + "reactionType": "PRAISE" + }, + { + "count": 167, + "reactionType": "MAYBE" + }, + { + "count": 66, + "reactionType": "APPRECIATION" + }, + { + "count": 43, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6994209415067279360", + "numLikes": 4551, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994209415067279360", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4554, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "ptilXgRfSgeDbMTslPagRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6993985139571580929", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6993985139571580929)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6993985139571580929)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_frank-elderson-membre-du-comit%C3%A9-ex%C3%A9cutif-activity-6993985139571580929-zGjJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6993985138636259329", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6993985139571580929", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6993985138636259329", + "excludedFromSeen": false, + "trackingData": { + "requestId": "3e6539e0-ee0c-4a02-9700-521668aa58aa", + "trackingId": "1u2hBkD99Jk+eIGOwepPRQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHwjgrhmtYhIA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHwjgrhmtYhIA", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1667495998379?e=1679529600&v=beta&t=H8y6XUiphaldLUGsn1SElCY1EozWTNlrcZZXgXvBqrk", + "expiresAt": 1679529600000, + "height": 804 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1667495998664?e=1679529600&v=beta&t=b-bHORho5AWUogMaE4E8EjOLaF7lKaypdvGa3gkJnEc", + "expiresAt": 1679529600000, + "height": 8 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1667495998664?e=1679529600&v=beta&t=J1qrsyh2nQhK71CK1F2sEXdBmnIir91WTt0s2Z7Ltrc", + "expiresAt": 1679529600000, + "height": 502 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1667495998664?e=1679529600&v=beta&t=OlKSlrfk_tdZBua0_g6opDtsrOVEKCnJ_ESJqKKgRR0", + "expiresAt": 1679529600000, + "height": 188 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1667495998664?e=1679529600&v=beta&t=vfkF5jP5xM35Dm90QSaPHekdHzPVv6SsaNfMEfqSzWs", + "expiresAt": 1679529600000, + "height": 63 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1667495998664?e=1679529600&v=beta&t=b86bgqoVhBjrcKsC_F5YZwRCAUT8F1bSaiZuXU90kGE", + "expiresAt": 1679529600000, + "height": 314 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHwjgrhmtYhIA/feedshare-shrink_" + }, + "displayAspectRatio": 0.392578125 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, text, application" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6993985138636259329,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Frank Elderson, membre du comit\u00e9 ex\u00e9cutif de la Banque Centrale Europ\u00e9enne, utilise le blog de la BCE pour dire aux banques de la zone euro qu'elles ne tiennent pas assez compte des sujets climatiques et environnementaux dans la conduite de leurs affaires \"ordinaires\" : https://bit.ly/3NunD0U . Sa conclusion repose sur l'examen de 186 banques supervis\u00e9es par la BCE, avec un total de bilan cumul\u00e9 de 25.000 milliards d'euros.\n\nL'auteur consid\u00e8re que les banques ne sont pas encore \"en mesure d'identifier, d'\u00e9valuer, de contr\u00f4ler et d'att\u00e9nuer les risques in\u00e9vitables d\u00e9coulant des crises climatiques et environnementales\". Plus pr\u00e9cis\u00e9ment, trois points sont l'objet de faiblesses importantes :\n\n- la m\u00e9thode : 96% des banques audit\u00e9es ne savent pas identifier correctement les risques li\u00e9s au climat et \u00e0 l'environnement dans leurs actifs. En particulier, elles ne collectent pas de donn\u00e9es granulaires sur les contreparties et les actifs qui permettraient de faire des analyses fines sur les risques. Le dirigeant de la BCE fait aussi remarquer que le concept de \"net zero en 2050\" est souvent avanc\u00e9 sans d\u00e9finition claire de ce que cela recouvre, et sans d\u00e9finition d'objectifs interm\u00e9diaires indispensables pour l'action.\n\n- un \u00e9cart entre discours et actes : alors que les documents de r\u00e9f\u00e9rence des banques \u00e9voquent abondamment le climat, dans la pratique les sources de revenus des banques sont aujourd'hui \u00e0 peu pr\u00e8s les m\u00eames \"qu'avant\". Lorsque des initiatives sont prises pour les clients les plus \"intensifs en carbone\", il n'est pas expliqu\u00e9 en quoi cela pr\u00e9figure une action plus syst\u00e9mique pour rendre la banque globalement compatible avec une \u00e9conomie qui se d\u00e9carbone rapidement\n\n- enfin des politiques annonc\u00e9es mais non mises en oeuvre en pratique, y compris en ignorant des avertissements d'experts internes dans un certain nombre de cas.\n\nLes bons points - car il y en a quand m\u00eame - vont aux banques qui int\u00e8grent les risques physiques et de transition dans la couverture en capital de leurs engagements en fonction des \"caract\u00e9ristiques climat\" de ces derniers.\n\nDans les recommandations du r\u00e9gulateur, il y a notamment :\n- l'utilisation d'outils pour planifier la transition, avec la fixation d'objectifs interm\u00e9diaires. \n- la collecte large d'informations, pour calculer des risques de mani\u00e8re granulaire\n- l'int\u00e9gration des risques de transition et physique de long terme dans l'\u00e9valuation des besoins en capitaux (argh ! le mot qui f\u00e2che une banque est l\u00e2ch\u00e9 :) ).\n- la gestion des risques li\u00e9s \u00e0 la perte de biodiversit\u00e9\n\nL'article se termine en disant que, en 2024, toutes les banques devront \u00eatre \"align\u00e9es avec les les exigences du r\u00e9gulateur\". L'auteur ne dit pas ce que la BCE fera si cet objectif n'est pas atteint, mais la mani\u00e8re classique de g\u00e9rer un risque consid\u00e9r\u00e9 comme \u00e9lev\u00e9 dans le monde bancaire est d'exiger une couverture \u00e9lev\u00e9e en fonds propre pour les engagements concern\u00e9s. La question est pos\u00e9e de savoir si c'est cela que la BCE a en t\u00eate." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6993985138636259329,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6993985139571580929,urn:li:activity:6993985139571580929,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6993985139571580929,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6993985139571580929,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6993985139571580929", + "threadId": "activity:6993985139571580929", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6993985139571580929", + "urn": "urn:li:activity:6993985139571580929", + "numComments": 37, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6993985139571580929", + "reactionTypeCounts": [ + { + "count": 524, + "reactionType": "LIKE" + }, + { + "count": 80, + "reactionType": "INTEREST" + }, + { + "count": 66, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6993985139571580929", + "numLikes": 679, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6993985139571580929", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 679, + "links": [] + }, + "elements": [] + } + } + } +] \ No newline at end of file diff --git a/out_posts_1.json b/out_posts_1.json new file mode 100644 index 0000000..dc22e5f --- /dev/null +++ b/out_posts_1.json @@ -0,0 +1,48108 @@ +[ + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "12h \u2022 ", + "accessibilityText": "12 hours ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7032115801016938496", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7032115801016938496)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7032115801016938496)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-recrute-une-cheffe-de-projet-agriculture-activity-7032115801016938496-lQSy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7032115800496848896", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7032115801016938496", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7032115800496848896", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "TfE/0hIjXUbI4d1AFF255A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7508397560141145240", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676589776974?e=1677240000&v=beta&t=AUF_ALjzwld6RGorfZVpCNvAqsPm2sYkT6ZIIlartnM", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676589776974?e=1677240000&v=beta&t=imfhXK_jGt5qNv_MGqkHFYJ0lJGSuuNzqtBM2hmTZFI", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676589776974?e=1677240000&v=beta&t=-juGnXkSoa6rtMN47WjvlGm0ooKIowR69ciK3ZtSvCM", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676589776974?e=1677240000&v=beta&t=pQLZePdjbvWEqd5yoQS7e3m99jF29QQkP3BXUCANBS8", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQENdzDIiQ--jA/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7508397560141145240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7508397560141145240)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift recrute un.e Chef.fe de projet Agriculture ! [CDD 18 mois] by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/offre-emploi-chef-projet-agriculture/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift recrute un.e Chef.fe de projet Agriculture ! [CDD 18 mois]" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7032115800496848896,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce n'\u00e9tait pas le secteur le plus travaill\u00e9 dans le Plan de Transformation de l'Economie Fran\u00e7aise, et donc le Shift Project a d\u00e9cid\u00e9 d'y revenir. Car la production et cuisson de nos aliments, en incluant les \u00e9missions industrielles amont (fabrication des engrais, des intrants en g\u00e9n\u00e9ral, et des machines agricoles), les \u00e9missions dans les exploitations, et celles \u00e0 l'aval (industries agro-alimentaires, transports, emballages, d\u00e9placements des consommateurs pour faire les courses, cuisson, etc) c'est un tiers des \u00e9missions mondiales, et pas loin du m\u00eame pourcentage en France.\n\nIl semble donc difficile de dire que nous allons devenir \"neutres\", ce qui suppose de supprimer la quasi-totali\u00e9 de nos \u00e9missions actuelles, sans s'occuper s\u00e9rieusement de ce secteur. C'est pour cela que The Shift Project se cherche le mouton ou la brebis \u00e0 5 pattes (c'est de circonstance) pour piloter la r\u00e9flexion \u00e0 venir sur la bonne mani\u00e8re de d\u00e9carboner notre assiette.\n\nSi faire un petit tour par les locaux de cette association vous tente, \u00e0 vos CV ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7032115800496848896,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7032115801016938496,urn:li:activity:7032115801016938496,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7032115801016938496,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7032115801016938496,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7032115801016938496", + "threadId": "activity:7032115801016938496", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7032115801016938496", + "urn": "urn:li:activity:7032115801016938496", + "numComments": 34, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7032115801016938496", + "reactionTypeCounts": [ + { + "count": 264, + "reactionType": "LIKE" + }, + { + "count": 9, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7032115801016938496", + "numLikes": 285, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7032115801016938496", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 285, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1d \u2022 ", + "accessibilityText": "1 day ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7031764966638559232", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7031764966638559232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7031764966638559232)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_b8-d%C3%A9pendance-%C3%A9nerg%C3%A9tique-du-secteur-de-activity-7031764966638559232-jEQv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7031764966009376769", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7031764966638559232", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7031764966009376769", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "it0Mz2EXT/h0Fk7c727F9g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7201673045911734909", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676576622421?e=1677240000&v=beta&t=5TXO_S0Ag1DjFHUS1SWl74oRn-PON6N7bnQrD5dI-xg", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676576622421?e=1677240000&v=beta&t=iRzT-Wg_IPxva_zCTD7yDKeZb0js1vNqJA7RHEAa33U", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676576622421?e=1677240000&v=beta&t=IFJgDBKj5RSGrKiYAY6RH7xOgTU5upPDrhQ4JKy7fgQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676576622421?e=1677240000&v=beta&t=J4yj3jU3KJFjhxqK_ZMAF6WaQgHscZNRFYpMfgBZszo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQEZhL5YyD4zww/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7201673045911734909)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7201673045911734909)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: B8- D\u00e9pendance \u00e9nerg\u00e9tique du secteur de la sant\u00e9 [Jean-Marc Jancovici] on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=LSe5XItXVtE" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "* Module de formation de M\u00e9decine et Sant\u00e9 Environnementale produit par la Conf\u00e9rence des Doyens des Facult\u00e9s de M\u00e9decine de France * \ud83c\udfe5 Le syst\u00e8me de la sant\u00e9 pourrait-il fonctionner dans un \u00e9tat de contraction \u00e9nerg\u00e9tique ? #h\u00f4pital #\u00e9nergie #sant\u00e9..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "B8- D\u00e9pendance \u00e9nerg\u00e9tique du secteur de la sant\u00e9 [Jean-Marc Jancovici]" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7031764966009376769,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s les ing\u00e9nieurs et les gestionnaires, c'est au tour des futurs m\u00e9decins de se faire former aux enjeux climatiques et environnementaux.\n\nD'ici \u00e0 septembre 2023, toutes les facult\u00e9s de m\u00e9decine de France vont inclure dans leur enseignement un module intitul\u00e9 \"m\u00e9decine et sant\u00e9 environnementale\" pour fournir des bases sur les enjeux, mais aussi sur la mani\u00e8re de les aborder. \n\nCe module est essentiellement constitu\u00e9 de vid\u00e9os dont la liste est accessible l\u00e0 : https://lnkd.in/dhmUtKmy\n\nMa \"partition\" dans cet ensemble consiste \u00e0 exposer l'apport de l'\u00e9nergie - c'est \u00e0 dire de notre costume d'Ironman - \u00e0 l'augmentation de l'esp\u00e9rance de vie, au travers de l'alimentation, de la prophylaxie, de la fabrication des vaccins et m\u00e9dicaments, et plus r\u00e9cemment au fonctionnement de l'h\u00f4pital moderne. \n\nLe grand paradoxe, dans la sant\u00e9, est que l'\u00e9mergence des combustibles fossiles a globalement fortement allong\u00e9 la dur\u00e9e de vie... tout en faisant na\u00eetre une menace croissante sur le maintien de cette dur\u00e9e \u00e0 l'avenir.\n\nCette courte vid\u00e9o ne d\u00e9taille pas du tout les futurs impacts possibles du changement climatique sur la sant\u00e9. Elle porte uniquement sur le pass\u00e9, pour faire comprendre en quoi l'\u00e9nergie a jou\u00e9 un r\u00f4le central dans le fait que l'esp\u00e9rance de vie (en fait l'\u00e2ge moyen du d\u00e9c\u00e8s) soit pass\u00e9e d'un peu moins de 30 ans en 1800 \u00e0 environ 80 aujourd'hui.\n\nComment ne pas retourner \u00e0 30 ans dans un monde sobre en \u00e9nergie ? C'est \u00e0 ce d\u00e9fi que devront participer les m\u00e9decins - et les autres professionnels de la sant\u00e9 - \u00e0 l'avenir. Esp\u00e9rons que ce module leur donnera des cl\u00e9s de lecture utiles !\n\nNB : en farfouillant dans la liste vous y trouverez quelques \"usual suspects\" (Bourg, Bihouix, Keller, Gouyon, Selosse, Auzanneau...) sur des formats assez courts : il n'y a plus qu'\u00e0 d\u00e9guster !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7031764966009376769,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7031764966638559232,urn:li:activity:7031764966638559232,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7031764966638559232,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7031764966638559232,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7031764966638559232", + "threadId": "activity:7031764966638559232", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031764966638559232", + "urn": "urn:li:activity:7031764966638559232", + "numComments": 59, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7031764966638559232", + "reactionTypeCounts": [ + { + "count": 661, + "reactionType": "LIKE" + }, + { + "count": 107, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "EMPATHY" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7031764966638559232", + "numLikes": 808, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031764966638559232", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 808, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3d \u2022 ", + "accessibilityText": "3 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7031166740847837185", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7031166740847837185)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7031166740847837185)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-s%C3%A9cheresse-pointe-sous-lanticyclone-activity-7031166740847837185-sdcK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7031166740042506240", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7031166740847837185", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7031166740042506240", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "iA4rewCtfA4sP1wSoS6LRA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8489194875064209322", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 700, + "fileIdentifyingUrlPathSegment": "800/0/1676581927584?e=1677240000&v=beta&t=hkKeAPDPF3hZ_waK9ol9aw-MtY-l0TrorQ33zl-gvTM", + "expiresAt": 1677240000000, + "height": 542 + }, + { + "width": 700, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676581927584?e=1677240000&v=beta&t=o3HJZu5CZ1vGIepW9RBTE1MmvB1jyAKDviWVbF6WMeI", + "expiresAt": 1677240000000, + "height": 542 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676581927585?e=1677240000&v=beta&t=lXH5zNdwoT9u2a3zQqsmJ9i-uxuhD9QhBtJRQhrjZ-M", + "expiresAt": 1677240000000, + "height": 124 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676581927585?e=1677240000&v=beta&t=BJ3LuL7w-kXzMF2z7Z0AwSWd5nfjQf-pgwkvx2tcm9I", + "expiresAt": 1677240000000, + "height": 372 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEwLB0r1VF0JQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.7742857142857142 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Pression r\u00e9duite au niveau de la mer moyenne du 21 janvier au 7 f\u00e9vrier" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8489194875064209322)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8489194875064209322)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "meteofrance.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La s\u00e9cheresse pointe sous l'anticyclone by meteofrance.com", + "actionTarget": "https://meteofrance.com/actualites-et-dossiers-0/la-secheresse-pointe-sous-lanticyclone" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La s\u00e9cheresse pointe sous l'anticyclone" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7031166740042506240,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il va falloir r\u00e9viser le sens des mots en mati\u00e8re de m\u00e9t\u00e9o. Quand on \u00e9coute le bulletin, \"il fait beau\", utilise un adjectif qui est g\u00e9n\u00e9ralement associ\u00e9 \u00e0 quelque chose de positif : il est assez rare que l'on emploie \"beau\" pour une situation dont on ne voudrait pas !\n\nMalheureusement, \"il fait beau\", en hiver (et m\u00eame en \u00e9t\u00e9 !), peut d\u00e9sormais \u00eatre associ\u00e9 \u00e0 un certain nombre d'inconv\u00e9nients dont on se passerait bien.\n\nTout d'abord, s'il \"fait beau\" c'est qu'il ne pleut pas. Notre pays s'appr\u00eate \u00e0 battre un record de dur\u00e9e de jours secs en hiver, avec plus de 3 semaines cons\u00e9cutives \u00e0 moins de 1 mm de pluie par jour sur le pays : https://bit.ly/3RZ2pdK\n\nCette s\u00e9cheresse hivernale survient alors que les nappes phr\u00e9atiques, au 1er janvier, \u00e9taient toujours \u00e0 un niveau bien trop bas sur une large partie du pays : https://bit.ly/3E7IALE (\"Plus des trois-quarts des nappes demeurent sous les normales mensuelles. Les niveaux sont nettement inf\u00e9rieurs \u00e0 ceux de d\u00e9cembre 2021\"). Rappelons que la recharge des nappes l'hiver c'est le confort - voire la survie - de la v\u00e9g\u00e9tation l'\u00e9t\u00e9.\n\nQuand \"il fait beau\", c'est g\u00e9n\u00e9ralement que nous sommes en conditions anticycloniques, avec peu de vent, et donc la production \u00e9olienne est faible, ce qui est effectivement le cas en France en moyenne sur les derni\u00e8res semaines : https://bit.ly/3lttNod \n\nLa carte des contenus carbone des pays europ\u00e9ens \u00e0 l'instant o\u00f9 je tape ce post refl\u00e8te cette faiblesse, avec des moyens fossiles qui sont utilis\u00e9s de mani\u00e8re significative : https://lnkd.in/eRvA7w-a Deuxi\u00e8me cons\u00e9quence de \"il fait beau\", donc : les \u00e9missions de CO2 augmentent, ainsi que les \u00e9missions de polluants associ\u00e9s \u00e0 la production \u00e9lectrique fossile (oxydes d'azote et particules fines).\n\nQuand \"il fait beau\" en hiver, avec un ciel d\u00e9gag\u00e9, il fait g\u00e9n\u00e9ralement aussi froid. Cela augmente d'autant la consommation \u00e9lectrique - une deuxi\u00e8me raison d'avoir des centrales \u00e0 charbon qui fonctionnent plus - ainsi que le chauffage fossile ou au bois, qui \u00e9mettent aussi des polluants. Avec l'air qui circule peu (puisqu'il y a un anticyclone), et les autres sources de particules (agriculture et transports), on se retrouve avec un \u00e9pisode de pollution aux particules fines un peu prononc\u00e9 : http://www2.prevair.org/ (choisir \"Europe\" et \"PM 2.5\" dans les menus d\u00e9roulants pour avoir une vue d'ensemble de l'Europe pour les particules les plus dangereuses). Les parisiens peuvent jeter un coup d'oeil \u00e0 https://airparif.asso.fr/ \n\nR\u00e9sumons : \"Il fait beau\" signifie donc une v\u00e9g\u00e9tation qui va souffrir l'\u00e9t\u00e9 prochain, une pollution (qui tue) et des \u00e9missions de CO2 en hausse. Si ces cons\u00e9quences \u00e9taient rappel\u00e9es \u00e0 chaque bulletin m\u00e9t\u00e9o, peut-\u00eatre que cela nous motiverait un peu plus \u00e0 d\u00e9carboner rapidement notre \u00e9conomie, et \u00e0 commencer \u00e0 nous exciter un peu plus s\u00e9rieusement sur la pr\u00e9paration au mieux \u00e0 un climat qui va devenir plus hostile pour tout ce qui pousse.\n\nC'\u00e9taient les bonnes nouvelles du jour :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7031166740042506240,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7031166740847837185,urn:li:activity:7031166740847837185,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 294, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7031166740847837185,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7031166740847837185,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7031166740847837185", + "threadId": "activity:7031166740847837185", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031166740847837185", + "urn": "urn:li:activity:7031166740847837185", + "numComments": 436, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7031166740847837185", + "reactionTypeCounts": [ + { + "count": 7370, + "reactionType": "LIKE" + }, + { + "count": 1640, + "reactionType": "INTEREST" + }, + { + "count": 377, + "reactionType": "APPRECIATION" + }, + { + "count": 247, + "reactionType": "PRAISE" + }, + { + "count": 42, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7031166740847837185", + "numLikes": 9710, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031166740847837185", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 9726, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3d \u2022 ", + "accessibilityText": "3 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7030856557022072832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030856557022072832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030856557022072832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_biodiversit%C3%A9-ni-lampleur-ni-la-rapidit%C3%A9-activity-7030856557022072832-3dG6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7030856556048973824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7030856557022072832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7030856556048973824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "hGZ3cw3UUteD+i8rJnFPzQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8887778663049763473", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676616168242?e=1677240000&v=beta&t=30OSGvxwUAC2aVVVpTkCkzWWzoCjnDdu6Cghb7AIOaw", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676616168242?e=1677240000&v=beta&t=UKxp1GGnhnRlJE_fxAIUH7z54q4r3WNjGn4ATx0IHvE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676616168242?e=1677240000&v=beta&t=aikSswvbL8W1dm1x0AEhEx0xHZE9qBFe87c_qfRNiwA", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676616168242?e=1677240000&v=beta&t=nR77RBG9xsy77ILzA15sTImI8zWJXQyQexxLB17u00A", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQEX5Bg_2Ik79Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8887778663049763473)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8887778663049763473)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Biodiversit\u00e9 : \u00ab Ni l\u2019ampleur, ni la rapidit\u00e9, ni le caract\u00e8re syst\u00e9mique de l\u2019\u00e9croulement des insectes n\u2019ont \u00e9t\u00e9 anticip\u00e9s par les scientifiques \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/idees/article/2023/02/12/biodiversite-ni-l-ampleur-ni-la-rapidite-ni-le-caractere-systemique-de-l-ecroulement-des-insectes-n-ont-ete-anticipes-par-les-scientifiques_6161496_3232.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Biodiversit\u00e9\u00a0: \u00ab\u00a0Ni l\u2019ampleur, ni la rapidit\u00e9, ni le caract\u00e8re syst\u00e9mique de l\u2019\u00e9croulement des insectes n\u2019ont \u00e9t\u00e9 anticip\u00e9s par les scientifiques\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7030856556048973824,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 512, + "length": 16, + "miniProfile": { + "firstName": "Stephane", + "lastName": "Foucart", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAABv2IoBn0BOirWMxsoYYR5uscV_zSBgOsQ", + "occupation": "Science correspondent at Le Monde", + "objectUrn": "urn:li:member:7329930", + "entityUrn": "urn:li:fs_miniProfile:ACoAAABv2IoBn0BOirWMxsoYYR5uscV_zSBgOsQ", + "publicIdentifier": "stephane-foucart-a365552", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1671650011916?e=1681948800&v=beta&t=sfTLd37tuMTn6GnoUXgIh3p8Kd1Q8nGH6Jb0NOsYVik", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1671650011916?e=1681948800&v=beta&t=294ugk_qvRG2tyRBFSIp_x6b10jnkKoB_E77n3IvYjU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1671650011916?e=1681948800&v=beta&t=6mVeDPnhS5EiphvG29TceeHVP10ornsRqKhxz_rOQNI", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1671650011916?e=1681948800&v=beta&t=dwsqw7IVhyIFy4qgvPS_VaLwq93SG6umZhm1YhiVNBc", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQGHs1C_06t5hA/profile-displayphoto-shrink_" + } + }, + "trackingId": "ABl0DN/HTq29Awug9VciZQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Ils p\u00e8seraient environ 1 milliard de tonnes, soit autant que la masse combin\u00e9e des humains et de leurs animaux d'\u00e9levage. Qui ? Les arthropodes terrestres, que nous appelons plus commun\u00e9ment les insectes : https://bit.ly/3XpnsYk (car les araign\u00e9es et les mille-pattes ne sont pas des insectes, ces derniers ayant 6 pattes).\n\nPourtant, leurs effectifs sont en baisse rapide. Ils le sont chez nous, mais aussi \"ailleurs\", comme par exemple en Asie : https://bit.ly/3Xto9j4\n\nDans cette tribune parue dans Le Monde, Stephane Foucart, journaliste sciences, rappelle une fois de plus cet effondrement en cours, tout en soulignant que, \u00e0 la diff\u00e9rence du climat, nous n'avons pas de \"ph\u00e9nom\u00e8ne extr\u00eame\" qui survienne de temps \u00e0 autres pour nous r\u00e9veiller un peu (ce qui, m\u00eame pour le climat, est h\u00e9las peu impactant, puisqu'aucun ouragan ou aucune s\u00e9cheresse n'a pour le moment conduit \u00e0 une baisse des \u00e9missions mondiales).\n\nLa cause de cette baisse est connue : ce sont les substances que nous introduisons dans l'environnement pr\u00e9cis\u00e9ment pour supprimer ces bestioles rampantes ou volantes. Depuis les d\u00e9buts de l'agriculture, notre esp\u00e8ce fait tout ce qu'elle a pu pour partager le moins possible le r\u00e9sultat de cette activit\u00e9 avec d'autres esp\u00e8ces.\n\nNous ne souhaitons pas que le champ pr\u00e9vu pour accueillir du bl\u00e9 ou des poireaux accueille aussi des \"mauvaises herbes\", qui captent une partie des nutriments et du soleil : c'est la raison de l'usage des herbicides, qui sont les premiers pesticides utilis\u00e9s en tonnage en France. \n\nNous ne souhaitons pas que les \u00e9pis de ma\u00efs ou les cerises soient partag\u00e9s avec des papillons ou des mouches : c'est la raison de l'usage des insecticides qui permettent d'avoir le produit des cultures \"rien que pour nous\". \n\nLa cons\u00e9quence n'est pas une surprise : les effectifs de ces insectes diminuent. La solution semble donc \u00e9vidente, et sa contrepartie aussi : pour pr\u00e9server les insectes, il faut utiliser moins d'insecticides... et accepter alors de laisser une petite partie de ce que nous cultivons \u00e0 ces animaux, qui serviront eux-m\u00eames de nourriture aux oiseaux et \u00e0 d'autres esp\u00e8ces animales. \n\nCela fera fatalement baisser les rendements agricoles, et donc monter le prix de la nourriture. La bonne question est de savoir si nous \u00e9chapperons de toute fa\u00e7on \u00e0 une hausse de prix pour ce que nous mangeons. Car, sans insectes pollinisateurs, il y aura des baisses de rendement pour un certain nombre de productions, et sans insectes tout court probablement des \"surprises\" pour certains services \u00e9cosyst\u00e9miques dont nous b\u00e9n\u00e9ficions aujourd'hui.\n\nIl est \u00e0 craindre que, pour la biodiversit\u00e9 plus encore que pour le climat, il n'y ait pas d'action \u00e0 large \u00e9chelle tant que nous ne serons pas \"atteints dans notre chair\", avec au surplus la capacit\u00e9 \u00e0 faire le lien entre ce qui nous arrive et la v\u00e9ritable cause. Pour la biodiversit\u00e9 comme pour le climat, un de nos adversaires les plus redoutables est le sentiment que nous avons encore bien le temps." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030856556048973824,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030856557022072832,urn:li:activity:7030856557022072832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 119, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030856557022072832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030856557022072832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7030856557022072832", + "threadId": "activity:7030856557022072832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030856557022072832", + "urn": "urn:li:activity:7030856557022072832", + "numComments": 264, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030856557022072832", + "reactionTypeCounts": [ + { + "count": 3756, + "reactionType": "LIKE" + }, + { + "count": 607, + "reactionType": "INTEREST" + }, + { + "count": 334, + "reactionType": "APPRECIATION" + }, + { + "count": 68, + "reactionType": "PRAISE" + }, + { + "count": 32, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030856557022072832", + "numLikes": 4807, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030856557022072832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4808, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4d \u2022 ", + "accessibilityText": "4 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7030653289532661760", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030653289532661760)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030653289532661760)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_souverainet%C3%A9-et-ind%C3%A9pendance-%C3%A9nerg%C3%A9tique-activity-7030653289532661760-omeJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7030653288962252800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7030653289532661760", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7030653288962252800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "OgTL/hWb3qe3dHTqM4rIhQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:6974363340135969765", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676239082694?e=1677240000&v=beta&t=7HrNYzrmbVTOVl6n6WyGxdqbFLHhwFnda_kFTlalVWk", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676239082694?e=1677240000&v=beta&t=5qq5g4E2fSzkZ8NtHGk588grxIkkqCMacxjWkMpsMb8", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676239082694?e=1677240000&v=beta&t=ymNJHi36buX2txOd83yeD1Bj0t8l8DeULnFoh03nKog", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676239082694?e=1677240000&v=beta&t=g3HH3q2STSeA5DOvGGbRiWOVj1Be_K0Gf2x8iVBWUWY", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQERtm7gKRZcgQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5612499999999999 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6974363340135969765)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6974363340135969765)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "videos.assemblee-nationale.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et M. Olivier Gupta, Directeur g\u00e9n\u00e9ral - Mardi 24 janvier 2023 on videos.assemblee-nationale.fr", + "actionTarget": "https://videos.assemblee-nationale.fr/video.12773673_63cff1a1b41bb.souverainete-et-independance-energetique-de-la-france--m-bernard-doroszczuk-president-de-l-autori-24-janvier-2023" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "- \u00c0 16 heures : - Audition, ouverte \u00e0 la presse, de MM. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et Olivier Gupta, Directeur g\u00e9n\u00e9ral" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et M. Olivier Gupta, Directeur g\u00e9n\u00e9ral - Mardi 24 janvier 2023" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7030653288962252800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A quoi sert l'Autorit\u00e9 de S\u00fbret\u00e9 Nucl\u00e9aire ? Si vous vous \u00eates pos\u00e9 la question un jour, cette vid\u00e9o est faite pour vous. Il s'agit de l'audition du patron de l'ASN dans le cadre des auditions de la \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\".\n\nEn 3 heures de temps, sont pass\u00e9s en revue le mandat et le fonctionnement de cette instance, ses moyens, et l'articulation avec d'autres organismes impliqu\u00e9s dans la s\u00fbret\u00e9 nucl\u00e9aire (comme l'IRSN, qui vient par ailleurs de faire l'objet d'une annonce inattendue de rattachement partiel \u00e0 l'ASN apr\u00e8s cette audition : https://lnkd.in/eQV9WjJU).\n\nEn 3 heures, il y a \u00e9videmment du temps pour aborder des questions un peu techniques, dont les suivantes :\n\n- est-ce le changement de cadre r\u00e9glementaire en cours de route qui explique une partie du retard \u00e0 Flamanville ?\n\n- pourquoi en France les installations doivent \u00eatre conformes \u00e0 l'\u00e9tat de l'art alors qu'aux USA il leur suffit d'\u00eatre conformes \u00e0 leurs sp\u00e9cifications d'origine ?\n\n- l'ASN met-elle en balance la s\u00e9curit\u00e9 d'approvisionnement avec la s\u00fbret\u00e9 nucl\u00e9aire ?\n\n- le niveau de s\u00fbret\u00e9 des installations nucl\u00e9aires fran\u00e7aises s'est-il d\u00e9grad\u00e9 parce que le parc est plus \u00e2g\u00e9 ?\n\n- y a-t-il un risque \u00e0 prolonger les centrales au-del\u00e0 de 40 ans ?\n\n- y a-t-il un risque de pertes de comp\u00e9tences \u00e0 utiliser des sous-traitants dans le nucl\u00e9aire ?\n\n- le parc - actuel ou futur - int\u00e8gre-t-il des mesures d'adaptation au changement climatique ?\n\n- l'EPR est-il un r\u00e9acteur trop compliqu\u00e9 parce qu'il est franco-allemand ?\n\n- la fili\u00e8re est-elle suffisamment attractive pour disposer des comp\u00e9tences qui seront n\u00e9cessaires pour mener un chantier ambitieux de \"renouveau nucl\u00e9aire\" ?\n\n- le pr\u00e9sident de l'ASN voit-il sa responsabilit\u00e9 personnelle n\u00e9cessairement engag\u00e9e en cas d'accident nucl\u00e9aire en France ? (cette question d\u00e9coulait d'une affirmation de Corinne Lepage soutenant que c'\u00e9tait le cas)\n\nDans cette intervention le pr\u00e9sident de l'ASN fait part \u00e0 plusieurs reprises d'une crainte forte : celle d'\u00eatre mis dans la situation o\u00f9 il serait amen\u00e9 \u00e0 choisir entre plonger le pays dans le noir et laisser fonctionner une installation qu'il aurait arr\u00eat\u00e9e \"en temps normal\". Cette situation se pr\u00e9sentera, dit-il, si la politique \u00e9nerg\u00e9tique se base sur des paris incertains ou un d\u00e9faut d'anticipation qui am\u00e8neraient le pays \u00e0 se retrouver sans marges. A bon entendeur..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030653288962252800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030653289532661760,urn:li:activity:7030653289532661760,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 21, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030653289532661760,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030653289532661760,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7030653289532661760", + "threadId": "activity:7030653289532661760", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030653289532661760", + "urn": "urn:li:activity:7030653289532661760", + "numComments": 43, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030653289532661760", + "reactionTypeCounts": [ + { + "count": 544, + "reactionType": "LIKE" + }, + { + "count": 159, + "reactionType": "INTEREST" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030653289532661760", + "numLikes": 727, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030653289532661760", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 727, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5d \u2022 ", + "accessibilityText": "5 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7030130262550147072", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030130262550147072)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030130262550147072)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_des-chercheurs-sugg%C3%A8rent-de-cr%C3%A9er-un-%C3%A9cran-activity-7030130262550147072-8284?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7030130261799366656", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7030130262550147072", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7030130261799366656", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "mWoYE3XTeq+lh2gvJX9w/Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7133322728601584016", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676121323841?e=1677240000&v=beta&t=oO_ZoJao1XKyGMkt7M6y3pp-xFTTb2WiJFRtCw7gUJY", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676121323841?e=1677240000&v=beta&t=6p1FvpGlkmRSEhbl51Q-VIQsibkjJYT-pmwtfxwhh3Q", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676121323842?e=1677240000&v=beta&t=-u3RC2pA6kwlY0N5NqV351SfPswMGqlVULy_aStfnwI", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676121323842?e=1677240000&v=beta&t=syLJQzXu0F-CG---m2tCyPYZXtLOwq0tfW0pUN4FCoc", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQH6bX0STNeXig/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7133322728601584016)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7133322728601584016)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "msn.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Des chercheurs sugg\u00e8rent de cr\u00e9er un \u00e9cran de poussi\u00e8re lunaire entre la Terre et le soleil pour att\u00e9nuer le changement climatique by msn.com", + "actionTarget": "https://www.msn.com/fr-fr/actualite/technologie-et-sciences/des-chercheurs-sugg%C3%A8rent-de-cr%C3%A9er-un-%C3%A9cran-de-poussi%C3%A8re-lunaire-entre-la-terre-et-le-soleil-pour-att%C3%A9nuer-le-changement-climatique/ar-AA17iku5" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Des chercheurs sugg\u00e8rent de cr\u00e9er un \u00e9cran de poussi\u00e8re lunaire entre la Terre et le soleil pour att\u00e9nuer le changement climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7030130261799366656,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En route pour la g\u00e9oing\u00e9nierie ! Si nous avons un exc\u00e8s d'effet de serre (= un exc\u00e8s de rayonnement infrarouge en provenance de l'atmosph\u00e8re), il suffit de diminuer un peu le rayonnement solaire re\u00e7u par la plan\u00e8te, et l'ensemble nous remet \u00e0 la bonne temp\u00e9rature. C'est b\u00eate comme chou non ?\n\nUne id\u00e9e pour y parvenir consiste \u00e0 placer entre la terre et le soleil un objet suffisamment vaste, et l\u00e9g\u00e8rement opaque, qui va intercepter une partie du rayonnement solaire et ainsi contribuer \u00e0 \"refroidir la terre\".\n\nLa m\u00e9canique c\u00e9leste nous indique en effet que, sur la ligne qui joint la terre au soleil, il existe un point - appel\u00e9 point de Lagrange - o\u00f9 l'attraction de la terre et celle du soleil dont de m\u00eame intensit\u00e9. Si l'on peut y placer un objet, ce dernier y reste (il est \"tir\u00e9 de chaque c\u00f4t\u00e9\" avec une force \u00e9gale), et se met alors \u00e0 orbiter autour du soleil \u00e0 la m\u00eame vitesse que la terre. \n\nIl y a donc p\u00e9riodiquement l'id\u00e9e de placer \u00e0 cet endroit de quoi rafra\u00eechir notre plan\u00e8te : de grands miroirs, ou, r\u00e9cemment, un nuage de poussi\u00e8re r\u00e9fl\u00e9chissante (https://bit.ly/3RYkybW ). A partir du pouvoir r\u00e9flexif des particules de poussi\u00e8re et de leur densit\u00e9, les chercheurs ont calcul\u00e9 qu'avec 10 millions de tonnes de poussi\u00e8re on pourrait diminuer la puissance solaire d'un peu moins de 2%. \n\nLa puissance solaire re\u00e7ue au niveau du sol \u00e9tant de 170 watts par m2 en moyenne (sur toute a surface et toute l'ann\u00e9e), 2% en moins ca fait 3 watts par m2, soit \u00e0 peu pr\u00e8s le for\u00e7age actuellement du au suppl\u00e9ment humain d'effet de serre. CQFD.\n\nSauf que... 10 Mt repr\u00e9senterait 700 fois la masse combin\u00e9e de tout ce que les humains ont envoy\u00e9 dans l'espace depuis le d\u00e9but des fus\u00e9es. Si ca fait trop depuis la Terre, partons de la Lune ! Car en plus sur notre satellite il y a de la poussi\u00e8re \u00e0 volont\u00e9... Il n'y a qu'\u00e0 y construire une base permanente, et y d\u00e9velopper une industrie permettant de fabriquer fus\u00e9es et carburant \u00e0 partir de mat\u00e9riaux locaux et de rayonnement solaire (pour \u00e9viter d'amener sur la lune le poids des fus\u00e9es+carburants depuis la terre, ce qui \"ram\u00e8nerait au probl\u00e8me pr\u00e9c\u00e9dent\"). Une formalit\u00e9 :)\n\nPar ailleurs en arrivant au point de Lagrange les grains de poussi\u00e8re ont une \u00e9nergie cin\u00e9tique (la \"vitesse\" qui leur a permis de se d\u00e9placer depuis le point de lancement) et pas de p\u00e9dale de frein : ils ne peuvent \u00eatre \"arr\u00eat\u00e9s\" au bon endroit. Pire : si la position initiale d'un grain de poussi\u00e8re \"arr\u00eat\u00e9\" est \u00e9loign\u00e9e d'un km du point de Lagrange, au bout d'un an il se sera \u00e9loign\u00e9 \u00e0 plus de 1000 km du point en question (c'est un \u00e9quilibre metastable). Il faudrait donc r\u00e9alimenter ce nuage en permanence.\n\nQu'en d\u00e9duire ? Que la conclusion \u00e9vidente \u00e0 tirer de ce papier est que cette solution ne sera jamais \u00e0 l'\u00e9chelle. C'est pourtant l'inverse que laissent penser quelques titres \u00e0 sensation relev\u00e9s ici ou l\u00e0. Avis aux journalistes qui ont relay\u00e9 ou veulent le faire : commencez par lire les petites lignes, comme avec les contrats d'assurance..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030130261799366656,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030130262550147072,urn:li:activity:7030130262550147072,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 206, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030130262550147072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030130262550147072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7030130262550147072", + "threadId": "activity:7030130262550147072", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030130262550147072", + "urn": "urn:li:activity:7030130262550147072", + "numComments": 439, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030130262550147072", + "reactionTypeCounts": [ + { + "count": 1868, + "reactionType": "LIKE" + }, + { + "count": 414, + "reactionType": "INTEREST" + }, + { + "count": 49, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "EMPATHY" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030130262550147072", + "numLikes": 2368, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030130262550147072", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2564, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6d \u2022 Edited \u2022 ", + "accessibilityText": "6 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7029872348539314176", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029872348539314176)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029872348539314176)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_agriculture-et-climat-lurgence-de-sadapter-activity-7029872348539314176-51Dz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7029872347792691200", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7029872348539314176", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7029872347792691200", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "/j3UWoR3ibLaGBhXsbgmzw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7517892329526013595", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676144116328?e=1677240000&v=beta&t=_OizRdJU7RJ_j74QoFS51PZZCWTh1nd6IL9QbKSKKcg", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676144116328?e=1677240000&v=beta&t=lkcH_OJjERDu7rIMigDWnMRe3J7JbwJwJ8fLTcay2No", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676144116328?e=1677240000&v=beta&t=7cAetDuhYdYHQ8-Kd9S5iq4wVHI4Fl5DdhNe5CNrnxc", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676144116328?e=1677240000&v=beta&t=dgD1rkEs5dnpqHwGL4Oar4GqaG3hCZQyxelvIPj4Uwk", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFDOjF-xY0lYQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7517892329526013595)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7517892329526013595)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Agriculture et climat : l\u2019urgence de s\u2019adapter ! | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-agriculture-climat-adaptation" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Agriculture et climat : l\u2019urgence de s\u2019adapter ! | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7029872347792691200,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "2022 ne restera pas dans les m\u00e9moires des agriculteurs comme une ann\u00e9e tr\u00e8s sympathique. Au mieux les cultures n'ont pas souffert par rapport \u00e0 2021, et au pire elles ont connu une baisse de rendement, de l'ordre de 15% pour le ma\u00efs ou le soja.\n\nMais c'est surtout sur l'herbe, qui fait l'objet de peu de syst\u00e8mes irrigu\u00e9s, que la chute a \u00e9t\u00e9 la plus forte : il y a eu un d\u00e9ficit de production des p\u00e2turages d'un tiers par rapport \u00e0 la moyenne 1989 - 2018, ce qui a fortement baiss\u00e9 une partie de la production de fromage AOP (par exemple pas de Salers cet \u00e9t\u00e9).\n\nCet article de Carbone 4 vous propose un petit tour d'horizon de l'ann\u00e9e \u00e9coul\u00e9e, compl\u00e9t\u00e9e par une analyse prospective sur 4 d\u00e9partements du Sud-Ouest (Aveyron, Tarn, Tarn-et-Garonne et Lot).\n\nA cause de l'inertie de la d\u00e9rive climatique (qui s'amplifie tant que les \u00e9missions mondiales nettes ne sont pas nulles), les situations adverses vont se multiplier, et il est plus que temps de r\u00e9fl\u00e9chir \u00e0 ce que nous allons faire en face, surtout qu'\u00e0 l'horizon de quelques d\u00e9cennies il va aussi y avoir un sujet sur la disponibilit\u00e9 de l'\u00e9nergie fossile, qui est partout dans les cultures : pour fabriquer les engrais azot\u00e9s, pour les amener dans les champs, pour faire avancer les tracteurs, pour faire avancer les camions \u00e0 l'aval du champ, pour faire tourner le secteur agroalimentaire.... \n\nL'agriculture est par ailleurs un syst\u00e8me humainement inerte : les actifs y aiment les traditions (ce qui est une mani\u00e8re de dire qu'ils n'aiment pas le changement !), la rotation du capital y est lente, et enfin y faire venir du monde ne se fait pas en un claquement de doigts.\n\nPour minimiser les d\u00e9g\u00e2ts, le ma\u00eetre mot, l\u00e0 comme ailleurs, est donc l'anticipation. Mais comment anticiper alors que nous avons b\u00e2ti un syst\u00e8me \u00e9conomique et r\u00e9glementaire dont la premi\u00e8re priorit\u00e9 est de tirer les prix vers le bas - ce qui prive le secteur de moyens d'investissement - sur la base de la comp\u00e9tition - qui raccourcit les horizons de temps - et pas du tout d'assurer la p\u00e9rennit\u00e9 physique d'un syst\u00e8me r\u00e9silient ?\n\nLe secteur agricole n'est ni assez riche ni assez libre de ses mouvements pour d\u00e9cider en toute autonomie de moyens de \"faire ce qu'il faut\" pour rendre son activit\u00e9 la plus r\u00e9siliente possible, tout en abaissant la pression environnementale (\u00e9missions de gaz \u00e0 effet de serre, phytosanitaires) dont il est \u00e0 l'origine. Rappelons qu'il ne b\u00e9n\u00e9ficie aujourd'hui que de 2% des revenus \u00e9conomiques du pays, ce qui est peu pour un secteur dont 100% des autres activit\u00e9s d\u00e9pendent. \n\nSi nous voulons une agriculture \u00e0 la fois plus r\u00e9siliente face \u00e0 l'amplification de la d\u00e9rive climatique \u00e0 venir et moins perturbatrice ce l'environnement, il y a un \u00e9l\u00e9ment que nous allons difficilement pouvoir \u00e9viter : d\u00e9cider de payer la nourriture plus cher. Sinon c'est ce qui finira par arriver de toute fa\u00e7on, mais de mani\u00e8re moins bien organis\u00e9e !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029872347792691200,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029872348539314176,urn:li:activity:7029872348539314176,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029872348539314176,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029872348539314176,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7029872348539314176", + "threadId": "activity:7029872348539314176", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029872348539314176", + "urn": "urn:li:activity:7029872348539314176", + "numComments": 102, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029872348539314176", + "reactionTypeCounts": [ + { + "count": 1063, + "reactionType": "LIKE" + }, + { + "count": 158, + "reactionType": "INTEREST" + }, + { + "count": 37, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029872348539314176", + "numLikes": 1283, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029872348539314176", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1283, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7029567522739773440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029567522739773440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029567522739773440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_abandoned-farm-fields-take-decades-to-recover-activity-7029567522739773440-WGjz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7029567522039308288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7029567522739773440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7029567522039308288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "cNOC5TTPvugGT/Fu7nbySA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7867305761321344434", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676524860543?e=1677240000&v=beta&t=S9NYAsadUBfk0HkSWHqt75uF6WQlvgKRrujz2pHRpAw", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676524860543?e=1677240000&v=beta&t=wlfUMYlmzAlWPPbxFzPJy-iEuV_R3p6aLudbyTYeSBQ", + "expiresAt": 1677240000000, + "height": 667 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676524860544?e=1677240000&v=beta&t=5qGbWHjSz7hvBMWxWFT24DdVBWdXCF_KGJoxLGzDjv4", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676524860544?e=1677240000&v=beta&t=5eq6JdjmqX7uisUnZEcpSgG2jJIBr9fkyzriTG4ywFA", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D5627AQE6di4YUuavCg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7867305761321344434)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7867305761321344434)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "modernfarmer.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Abandoned Farm Fields Take Decades to Recover Biodiversity\u2014If They Can At All - Modern Farmer by modernfarmer.com", + "actionTarget": "https://modernfarmer.com/2023/02/grassland-recovery/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Abandoned Farm Fields Take Decades to Recover Biodiversity\u2014If They Can At All - Modern Farmer" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7029567522039308288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La biodiversit\u00e9 est-elle r\u00e9siliente ? Dit autrement, si l'on se met \u00e0 \"laisser en paix\" un endroit qui \u00e9tait autrefois perturb\u00e9 par les activit\u00e9s humaines, est-ce que la biodiversit\u00e9 revient au niveau qu'elle aurait eu si nous n'avions jamais touch\u00e9 \u00e0 rien ?\n\nCela n'est pas garanti, indique une \u00e9tude parue dans Journal of Ecology (https://lnkd.in/e7G9q24e ), qui a examin\u00e9 le nombre et l'abondance des esp\u00e8ces sur des parcelles de prairie situ\u00e9es aux USA et anciennement agricoles qui ont \u00e9t\u00e9 laiss\u00e9es \"\u00e0 l'abandon\" depuis 3 ans \u00e0 presque un si\u00e8cle. \n\nSur aucune des parcelles les esp\u00e8ces n'\u00e9taient au niveau de ce que l'on trouvait sur des prairies identiques n'ayant jamais \u00e9t\u00e9 exploit\u00e9s pour l'agriculture. Une soixantaine de plantes poussant sur les prairies \"primaires\" ne s'observaient sur aucune des parcelles de prairie \"secondaire\", m\u00eame au bout de plusieurs d\u00e9cennies. En moyenne, un tiers des esp\u00e8ces manque \u00e0 l'appel sur les parcelles ayant \u00e9t\u00e9 cultiv\u00e9es par rapport \u00e0 celles ne l'ayant jamais \u00e9t\u00e9. \n\nPour beaucoup d'entre nous, il y a l'id\u00e9e de r\u00e9versibilit\u00e9 dans l'\u00e9tat des \u00e9cosyst\u00e8mes : si la pression qui a conduit \u00e0 la baisse de la biodiversit\u00e9 est all\u00e9g\u00e9e ou supprim\u00e9e, alors la biodiversit\u00e9 se r\u00e9tablit pour l'essentiel. Cette \u00e9tude montre que la r\u00e9alit\u00e9 n'est pas si simple, et que la recolonisation d'un \u00e9cosyst\u00e8me d\u00e9grad\u00e9 n'est pas n\u00e9cessairement automatique.\n\nEn outre cette \u00e9tude a \u00e9t\u00e9 men\u00e9e avec une d\u00e9rive climatique limit\u00e9e : pour les esp\u00e8ces v\u00e9g\u00e9tales qui avaient \u00e9t\u00e9 supprim\u00e9es par l'exploitation agricole, le climat d'aujourd'hui est encore relativement proche de celui qui existait au moment de la mise de la prairie en culture. \n\nMais \u00e0 l'avenir le climat existant au moment de l'arr\u00eat de la pression sera de plus en plus diff\u00e9rent de celui qui existait au moment du d\u00e9marrage de la pression. La question de la r\u00e9versibilit\u00e9 sera n\u00e9cessairement encore plus pos\u00e9e dans ce contexte.\n\nCe que sugg\u00e8re l'article dans sa partie finale est de donner un \"coup de pouce\" \u00e0 la restauration de la biodiversit\u00e9, par exemple en plantant des graines des esp\u00e8ces qui ont du mal \u00e0 revenir spontan\u00e9ment. \n\nEn somme, la proposition est de corriger la baisse de la biodiversit\u00e9 caus\u00e9e par l'agriculture par... une autre forme d'agriculture ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029567522039308288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029567522739773440,urn:li:activity:7029567522739773440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 111, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029567522739773440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029567522739773440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7029567522739773440", + "threadId": "activity:7029567522739773440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029567522739773440", + "urn": "urn:li:activity:7029567522739773440", + "numComments": 153, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029567522739773440", + "reactionTypeCounts": [ + { + "count": 1597, + "reactionType": "LIKE" + }, + { + "count": 604, + "reactionType": "INTEREST" + }, + { + "count": 22, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029567522739773440", + "numLikes": 2253, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029567522739773440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2255, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7029152901151227904", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029152901151227904)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029152901151227904)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_r%C3%A9chauffement-climatique-christophe-b%C3%A9chu-activity-7029152901151227904-Ko6p?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7029152900555665408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7029152901151227904", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7029152900555665408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "0j1g+oK6nn6S4n/KDbnStw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7714865795466691610", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676104521119?e=1677240000&v=beta&t=qFR-DbsPypP9HON0uLf_iXeoN9A2eK_48ZIPP7b8lac", + "expiresAt": 1677240000000, + "height": 468 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676104521119?e=1677240000&v=beta&t=INp-tw69neKrCL7lknXMWaz0sexDp2KP_PDX9fyDbTU", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676104521119?e=1677240000&v=beta&t=6MdM-QlBFD29SovmAYHX19YGGC9GPHxwccdgC6T9dfY", + "expiresAt": 1677240000000, + "height": 93 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676104521119?e=1677240000&v=beta&t=0rn5ttLSlJ_X4r4N1vAy1BUUwIgsBN26Curx-kXJCMY", + "expiresAt": 1677240000000, + "height": 281 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQGv6oPpoZDTJg/articleshare-shrink_" + }, + "displayAspectRatio": 0.585 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7714865795466691610)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7714865795466691610)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemans.maville.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: R\u00e9chauffement climatique. Christophe B\u00e9chu demande la prise en compte d\u2019un sc\u00e9nario \u00e0 by lemans.maville.com", + "actionTarget": "https://lemans.maville.com/actu/actudet_-rechauffement-climatique.-christophe-bechu-demande-la-prise-en-compte-d-un-scenario-a-+-4-c-_54135-5613674_actu.Htm" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "R\u00e9chauffement climatique. Christophe B\u00e9chu demande la prise en compte d\u2019un sc\u00e9nario \u00e0" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7029152900555665408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'automobiliste qui boucle sa ceinture s'attend-il \u00e0 avoir un accident ? Le particulier qui paye sa prime d'assurance contre l'incendie s'attend-il \u00e0 voir son domicile en proie aux flammes ? Le navigateur qui enfile son gilet de sauvetage \u00e0 finir par-dessus bord ?\n\nLorsque le coup du sort est possible, la prudence veut que l'on prenne ses pr\u00e9cautions, pour parer des \u00e9ventualit\u00e9s alors m\u00eame que la personne qui est victime n'est pas en d\u00e9faut sur son propre comportement (comme un conducteur saoul qui ne vous a pas vu ou un coup de foudre).\n\nIl en va de m\u00eame pour le climat. Si l'\u00e9volution des conditions climatiques en France ne d\u00e9pendait que des \u00e9missions fran\u00e7aises (une chose que pensait un ministre que j'ai rencontr\u00e9 dans le gouvernement Macron I, accessoirement), on pourrait consid\u00e9rer que de pr\u00e9parer le pays \u00e0 une \u00e9volution climatique \"incompatible accords de Paris\" est une d\u00e9mission.\n\nMais ce que sera le climat de la France en 2100 d\u00e9pend avant tout de ce que vont \u00e9mettre tous les autres pays que le n\u00f4tre d'ici \u00e0 2100. Avons nous de la prise dessus ? La r\u00e9ponse est oui pour partie : d'une part l'humain est animal mim\u00e9tique (merci la mode pour nous le rappeler !), et d'autre part si nous trouvons des \"solutions\" chez nous nous pourrons ensuite les exporter.\n\nMais nous avons au mieux un pouvoir d'influence et non un pouvoir absolu. La prudence veut donc que l'on ait un plan B si la baisse des \u00e9missions ne va pas assez vite dans le monde (et actuellement elle ne va pas assez vite...). \n\nEn pratique, avoir ce plan B signifie \"durcir\" tout ce que nous pouvons durcir en France pour r\u00e9sister au mieux \u00e0 des conditions climatiques qui d\u00e9riveraient fortement par rapport au sc\u00e9nario \"id\u00e9al\" d'une hausse limit\u00e9e \u00e0 1,5 \u00b0C dans le monde (ce qui signifie plus en France car les terres \u00e9merg\u00e9es se r\u00e9chauffent plus vite que la moyenne).\n\nCe n'est pas une fois que la situation est \"cata\" que nous aurons la possibilit\u00e9 d'avoir en une semaine une for\u00eat constitu\u00e9e des bonnes esp\u00e8ces, des cultures r\u00e9sistant aux canicules ou hivers doux, des infrastructures et des voies de communication en \u00e9tat de fonctionner, ou encore des logements qui ne soient pas des fournaises.\n\nLe principe m\u00eame de s'y prendre maintenant pour \u00eatre \"pr\u00eat\" dans 50 ans, et d'utiliser d'un sc\u00e9nario tr\u00e8s adverse est donc une bonne chose : cela s'appelle de la prudence. \n\nPour passer \u00e0 l'action, il va d'abord falloir mod\u00e9liser pour chaque acteur les cons\u00e9quences possibles de 4\u00b0C de r\u00e9chauffement en France. Que risque un bailleur social ? Une installation industrielle ? Un pont ? Un r\u00e9seau d'eau ? Un agriculteur ? Un r\u00e9seau de communications ? Un h\u00f4pital ? \n\nPuis il faudra ensuite imaginer les moyens d'y r\u00e9pondre (et parfois le seul sera l'abandon...) et enfin les mettre en oeuvre.\n\nTout cela demandera des moyens intellectuels puis mat\u00e9riels (et donc des sous). Sans obligation s\u00e9rieuse de la puissance publique, il est peu probable qu'ils arrivent tous seuls \u00e0 la bonne vitesse !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029152900555665408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029152901151227904,urn:li:activity:7029152901151227904,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 90, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029152901151227904,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029152901151227904,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7029152901151227904", + "threadId": "activity:7029152901151227904", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029152901151227904", + "urn": "urn:li:activity:7029152901151227904", + "numComments": 167, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029152901151227904", + "reactionTypeCounts": [ + { + "count": 1520, + "reactionType": "LIKE" + }, + { + "count": 221, + "reactionType": "INTEREST" + }, + { + "count": 70, + "reactionType": "PRAISE" + }, + { + "count": 29, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029152901151227904", + "numLikes": 1858, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029152901151227904", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1861, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7028725477036969984", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7028725477036969984)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7028725477036969984)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-danemark-et-totalenergies-acc%C3%A9l%C3%A8rent-sur-activity-7028725477036969984-M7II?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7028725474373574656", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7028725477036969984", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7028725474373574656", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "NT0VAEE81VoeJwWzFOE07g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8168114166776751448", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675778791122?e=1677240000&v=beta&t=kFtGANzAa7XLEWR5j6xAVHKmvWAVPe1iEgMPOOBP-CY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675778791122?e=1677240000&v=beta&t=re6knlcLcthhnCd7O8LIiQGGcsJe7Smh-Mle2Tbbpn4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675778791122?e=1677240000&v=beta&t=pTo6ITl13Z-YbislXXt-3Jkzrrf0tkDT9LX8dt_rOrM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675778791122?e=1677240000&v=beta&t=nkKsJHpM0KACVI6goA6MI6XuhoYeBrzxCKLbj6435VI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQHRbnwo7trS3g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8168114166776751448)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8168114166776751448)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Danemark et TotalEnergies acc\u00e9l\u00e8rent sur le stockage de CO2 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/le-danemark-et-totalenergies-accelerent-sur-le-stockage-de-co2-1903841" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Danemark et TotalEnergies acc\u00e9l\u00e8rent sur le stockage de CO2" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7028725474373574656,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Une des solutions qui permettrait d'utiliser des combustibles fossiles sans d\u00e9ranger le climat s'appelle la capture et s\u00e9questration du CO2 (en anglais CCS pour Carbon Capture and Sequestration), et passe par les op\u00e9rations suivantes :\n\n- on \"attrape\" le CO2 d'une installation de combustion avant qu'il ne s'\u00e9chappe dans l'atmosph\u00e8re. Pour cela la fum\u00e9e barbote dans un liquide sp\u00e9cial - g\u00e9n\u00e9ralement des amines - qui va \"accrocher\" les mol\u00e9cules de CO2 (on parle d'adsorption) et laisser partir le reste.\n\n- le CO2 est r\u00e9cup\u00e9r\u00e9 en faisant chauffer la solution qui l'a adsorb\u00e9,\n\n- il est compress\u00e9, transport\u00e9 dans un tuyau et enfin inject\u00e9 sous forme supercritique (une forme interm\u00e9diaire entre le gaz et le liquide) sous le sol dans une formation g\u00e9ologique dont il ne sortira plus\n\nCette op\u00e9ration n'a de sens que pour des installation fixes importantes (centrales \u00e0 charbon ou \u00e0 gaz, cimenteries ou aci\u00e9ries). La capture demande 20% \u00e0 30% de l'\u00e9nergie du site, et fait baisser la production (d'\u00e9lectricit\u00e9, d'acier...) d'autant. C'est de loin la premi\u00e8re barri\u00e8re \u00e0 l'utilisation de ce proc\u00e9d\u00e9.\n\nIl faut ensuite trouver o\u00f9 injecter ce CO2. Les anciens gisements de p\u00e9trole et de gaz sont une premi\u00e8re possibilit\u00e9. Ce sont de bons candidats, car, avant exploitation, ils \u00e9taient aptes \u00e0 retenir longtemps au m\u00eame endroit du liquide et du gaz sous pression. Il faut juste v\u00e9rifier que les forages d'exploitation (normalement scell\u00e9s \u00e0 la fin de vie du gisement) ne changent pas l'\u00e9tanch\u00e9it\u00e9.\n\nLes aquif\u00e8res souterrains - un m\u00e9lange de roche et d'eau - sont une deuxi\u00e8me possibilit\u00e9. Le CO2 inject\u00e9 finit par se dissoudre puis se transformer lentement en carbonates avec le temps.\n\nLes p\u00e9troliers connaissent assez bien l'injection du CO2 sous le sol :\n- dans beaucoup de gisements p\u00e9troliers le fait d'injecter du CO2 permet de mieux \"laver\" le gisement. En pareil cas le moteur de l'action n'est donc pas la vertu environnementale mais tout simplement l'augmentation du p\u00e9trole produit !\n- le gaz naturel extrait de terre contient toujours un peu de CO2, et ce dernier doit \u00eatre enlev\u00e9 avant le transport par gazoduc, sinon il y a un risque fort de corrosion des infrastructures (la pr\u00e9sence simultan\u00e9e d'eau et de CO2 cr\u00e9e un m\u00e9lange acide). Les op\u00e9rateurs doivent donc s\u00e9parer le gaz du CO2 en t\u00eate de puits, et en Norv\u00e8ge ce CO2 doit \u00eatre r\u00e9inject\u00e9 sinon le p\u00e9trolier paye une p\u00e9nalit\u00e9 \u00e0 la tonne. \n\nCe n'est donc pas un hasard si Total - un p\u00e9trolier - et le Danemark - la Mer du Nord - regardent ensemble ce qu'ils pourraient mettre comme CO2 sous la mer. Il reste \u00e0 trouver des industriels acceptant d'investir pour capturer le CO2 \u00e0 la source et \u00e0 se faire payer pour ca. \n\nOn parle potentiellement de 10 Mt de CO2 par an, soit 500 M\u20ac/an environ au cours actuel du CO2. C'est assez d'argent pour que ca vaille le coup de reconvertir une plate-forte, mais cela \u00e9vitera juste les \u00e9missions d'une centrale \u00e0 charbon. On ne va pas pouvoir compter que sur ca !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7028725474373574656,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7028725477036969984,urn:li:activity:7028725477036969984,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 107, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7028725477036969984,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7028725477036969984,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7028725477036969984", + "threadId": "activity:7028725477036969984", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028725477036969984", + "urn": "urn:li:activity:7028725477036969984", + "numComments": 201, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7028725477036969984", + "reactionTypeCounts": [ + { + "count": 1963, + "reactionType": "LIKE" + }, + { + "count": 579, + "reactionType": "INTEREST" + }, + { + "count": 129, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7028725477036969984", + "numLikes": 2707, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028725477036969984", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2710, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:39029", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "jXv7TiNdQgWuwQw/vdMCLQ==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "jXv7TiNdQgWuwQw/vdMCLQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "L'Express" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 Edited \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: L'Express", + "actionTarget": "https://www.linkedin.com/company/lexpress/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A39029" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "55,114 followers" + }, + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:39029", + "followerCount": 55114, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:39029", + "following": false, + "trackingUrn": "urn:li:company:39029" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followCompany" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:7028059990707838976", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7028059990707838976)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7028059990707838976)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/lexpress_jancovici-linfluent-gourou-du-climat-activity-7028059990707838976-RQxN?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7028059989986430976", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:39029", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7028059989986430976", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "aw2M2y/AA9BGXoRrwbYk6A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7697564446898559605", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675620078165?e=1677240000&v=beta&t=l9Jj0dkoYOdfshI4QGzA1u72egpBdnceYOYuT8EUWUo", + "expiresAt": 1677240000000, + "height": 689 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675620078165?e=1677240000&v=beta&t=Qgvz_4cFjYvwvGSnGtQ38ZxvPJyp2G_KrgIpQ8EczlE", + "expiresAt": 1677240000000, + "height": 258 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675620078165?e=1677240000&v=beta&t=sH75AxOWezsv9WN4PWAUHXcB_WZD8C2sBODfgweCZhw", + "expiresAt": 1677240000000, + "height": 86 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675620078165?e=1677240000&v=beta&t=yS43L0iEGdYXMkx4L8KxdoYTvqaieG3NkHmfh__hTi4", + "expiresAt": 1677240000000, + "height": 431 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E34AQGIjXrLZwZ7TA/ugc-proxy-shrink_" + }, + "displayAspectRatio": 0.53828125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7697564446898559605)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7697564446898559605)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lexpress.fr \u2022 10 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jancovici, l'influent gourou du climat : ses liens avec Hulot, son film r\u00eav\u00e9 avec Besson, ses r\u00e9seaux by lexpress.fr", + "actionTarget": "https://www.lexpress.fr/politique/jancovici-linfluent-gourou-du-climat-ses-liens-avec-hulot-son-film-reve-avec-besson-ses-reseaux-YGVZI5C26FAGNBBLB5MKBR5S5Q/?utm_medium=Social&utm_source=LinkedIn#Echobox=1675616762-2" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jancovici, l'influent gourou du climat : ses liens avec Hulot, son film r\u00eav\u00e9 avec Besson, ses r\u00e9seaux" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7028059989986430976,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 52, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 886, + "length": 12, + "miniProfile": { + "firstName": "Emilie", + "lastName": "LANEZ", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABHRrtsBMC8nh_z8X50VQpbmZDi4bHNYSqQ", + "occupation": "Grand reporter", + "objectUrn": "urn:li:member:298954459", + "entityUrn": "urn:li:fs_miniProfile:ACoAABHRrtsBMC8nh_z8X50VQpbmZDi4bHNYSqQ", + "publicIdentifier": "emilie-lanez", + "trackingId": "w9l3OYdbSQS0/EMFps7QJg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Longtemps seul contre tous \u00e0 d\u00e9fendre le nucl\u00e9aire, Jean-Marc Jancovici est convaincu d\u2019avoir toujours eu raison. En partie vrai.\n\nMal l\u00e9ch\u00e9 et brillantissime, talentueux et bougon, d\u00e9daigneux et populaire : qui est cette idole des trentenaires urbains, qu\u2019Edouard Philippe re\u00e7oit \u00e0 d\u00e9jeuner dans sa th\u00e9ba\u00efde du Havre, que Bruno Le Maire \u00e9coute, que Gabriel Attal invite, que la d\u00e9put\u00e9e \u00e9colo Delphine Batho cite, que Julien Aubert, vice-pr\u00e9sident LR consulte, que le math\u00e9maticien et ancien d\u00e9put\u00e9 C\u00e9dric Villani r\u00e9v\u00e8re et que Marine Tondelier, nouvelle patronne des Verts, accuse publiquement d\u2019\u00eatre un \"menteur\" ?\n\nFaut-il se r\u00e9jouir qu\u2019enfin notre franchouillard Greta Thunberg \u00e9lectrise des cohortes de cadres sup accroch\u00e9s \u00e0 leur bagnole et mangeant des fraises en hiver ? D\u2019o\u00f9 vient ce ph\u00e9nom\u00e8ne ?\n\nEnqu\u00eate sur un sexag\u00e9naire ronchon et pessimiste devenu l\u2019idole des jeunes, par Emilie LANEZ \u2935\ufe0f" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7028059989986430976,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7028059990707838976,urn:li:activity:7028059990707838976,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7028059990707838976,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7028059990707838976,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7028059990707838976", + "threadId": "activity:7028059990707838976", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028059990707838976", + "urn": "urn:li:activity:7028059990707838976", + "numComments": 103, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7028059990707838976", + "reactionTypeCounts": [ + { + "count": 219, + "reactionType": "LIKE" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "INTEREST" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7028059990707838976", + "numLikes": 237, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028059990707838976", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 244, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:7028122019623772160", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7028122019623772160)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7028122019623772160)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-linfluent-gourou-du-climat-activity-7028122019623772160-KtIx?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7028122018780708864", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7028122019623772160", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7028122018780708864", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "aw2M2y/AA9BGXoRrwbYk6A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7028122018780708864,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 50, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "y9BzV++iR3GWVo77baMkxw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 807, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "f3jzwO0TQ8CrRaZ7Kkjj3A==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Il y a une grosse heure, j'ai comment\u00e9 ce post de L'Express pour corriger une affirmation erron\u00e9e contenue dans ce portrait auquel je n'ai pas contribu\u00e9 (le commentaire expliquait justement pourquoi).\n\nL'Express ayant supprim\u00e9 mon commentaire peu apr\u00e8s, je le reproduis donc en post. Je dois dire que je ne comprends pas ce qui motiv\u00e9 cette suppression : soit la personne de permanence sur le compte linkedin de l'Express un Dimanche soir regardait la t\u00e9l\u00e9 sans faire attention \u00e0 ce qu'elle faisait, soit elle a laiss\u00e9 le clavier \u00e0 son enfant de 2 ans, soit... le vilain mot de censure vient \u00e0 l'esprit, ce qui pour un media d'une d\u00e9mocratie ne serait pas terrible. Je suis volontiers preneur de l'explication si le journal veut bien me la fournir. \n\nVoici donc mot \u00e0 mot le commentaire que j'avais mis :\n\n\"L'Express la cause invoqu\u00e9e dans ce portrait pour mon refus de parler \u00e0 la journaliste est erron\u00e9e : j'ai d\u00e9clin\u00e9 avant tout parce que je consid\u00e8re que les portraits sont contreproductifs, et non d'abord par manque de temps.\n\nJ'ai expliqu\u00e9 par mail \u00e0 la journaliste que le \"portrait\" focalisait le propos sur le messager (qui est secondaire) et non sur le message, qu'il donnait toujours l'impression d'un parcours solitaire alors que tout travail se fait en \u00e9quipe, et enfin qu'il \u00e9tait par construction b\u00e2ti sur des points saillants (pour lesquels c'est facile de mettre des \u00e9tiquettes pour ou contre) qui crispent le d\u00e9bat alors que nous avons besoin de nous parler. J'ai ajout\u00e9 qu'en cons\u00e9quence je ne souhaitais pas y passer du temps. \n\nC'est pour le m\u00eame genre de raison que je n'avais pas envie d'\u00eatre nomm\u00e9 \"personnalit\u00e9 de l'ann\u00e9e\" : ce n'est pas sur moi qu'il faut concentrer les moyens \u00e9ditoriaux mais sur le fond. \n\nLe r\u00e9sultat me donne h\u00e9las raison : je ne vois pas en quoi cet article va aider la prise de d\u00e9cision pour notre avenir. Il servira au mieux \u00e0 alimenter \"ma\" page wikipedia (dont je n'ai pas \u00e9crit une ligne) o\u00f9, la derni\u00e8re fois que j'ai regard\u00e9, j'ai compt\u00e9 plus de 90 erreurs factuelles ou d'interpr\u00e9tation.\"\n\nMon commentaire ne caresse pas le magazine dans le sens du poil, mais il fait partie d'un droit de r\u00e9ponse normal, et je n'ai pas l'impression qu'il soit injurieux ou insultant. Sa suppression reste donc une \u00e9nigme. \n\nPuisqu'un post offre plus de place qu'un commentaire j'en profite pour rajouter deux \u00e9l\u00e9ments.\n\n1 - Mon temps professionnel est essentiellement affect\u00e9 (dans cet ordre) au quotidien de Carbone 4, \u00e0 celui du Shift Project, \u00e0 des conf\u00e9rences et interventions, et \u00e0 des publications. Les media et les politiques sont marginaux en termes de temps pass\u00e9. Ce portrait ne mentionne ni C4 ni The Shift Project...\n\n2 - c'est \u00e0 nouveau le nucl\u00e9aire qui m'est coll\u00e9 sur la figure comme \"premier \u00e9l\u00e9ment distinctif\". Il suffit pourtant d'\u00e9couter n'importe laquelle de mes conf\u00e9rences (https://bit.ly/3l9HEzR ) pour voir que cela ne correspond pas \u00e0 mon discours. Mais \"pronucl\u00e9aire\" ca doit faire plus de clics que \"vulgarisateur\"..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7028122018780708864,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7028122019623772160,urn:li:activity:7028122019623772160,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 284, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7028122019623772160,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7028122019623772160,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7028122019623772160", + "threadId": "activity:7028122019623772160", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028122019623772160", + "urn": "urn:li:activity:7028122019623772160", + "numComments": 398, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7028122019623772160", + "reactionTypeCounts": [ + { + "count": 8810, + "reactionType": "LIKE" + }, + { + "count": 767, + "reactionType": "PRAISE" + }, + { + "count": 660, + "reactionType": "APPRECIATION" + }, + { + "count": 163, + "reactionType": "INTEREST" + }, + { + "count": 72, + "reactionType": "MAYBE" + }, + { + "count": 72, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7028122019623772160", + "numLikes": 10544, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028122019623772160", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 10571, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7027994566683193344", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7027994566683193344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7027994566683193344)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_m%C3%A9tro-rer-val%C3%A9rie-p%C3%A9cresse-cherche-des-activity-7027994566683193344-utYA?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7027994565676527616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7027994566683193344", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7027994565676527616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "+MMyZtaFH9/NMpXsU0H+lw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8220200705461401985", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675608332996?e=1677240000&v=beta&t=NevZkHjZzFlp88L6kQ7JGRc8gtwYCfx9o_hLaXZMnrc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675608332996?e=1677240000&v=beta&t=plDSFYLKncqLc9HLFyLnDSN1DDETi612za6gAwmamr8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675608332996?e=1677240000&v=beta&t=aF1rReHtImmf13V-NJa3m4w2GznjnMD0sYgHGqcB_20", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675608332996?e=1677240000&v=beta&t=BXesrOt5P0SmnCoh0aXx26eQ2l6410zgA2LNU4QJajQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQH-4_tZMQq8Hw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8220200705461401985)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8220200705461401985)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: M\u00e9tro, RER : Val\u00e9rie P\u00e9cresse cherche des financeurs tous azimuts by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/tourisme-transport/metro-rer-valerie-pecresse-cherche-des-financeurs-tous-azimuts-1899774" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "M\u00e9tro, RER\u00a0: Val\u00e9rie P\u00e9cresse cherche des financeurs tous azimuts" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7027994565676527616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans notre pays, \u00e0 peu pr\u00e8s tout le monde est d'accord pour avoir plus de transports en commun. Par contre, quand il s'agit de d\u00e9cider qui doit passer \u00e0 la caisse pour le permettre, l'unanimit\u00e9 est un peu moins de mise !\n\nC'\u00e9tait d\u00e9j\u00e0 un sujet quand l'\u00e9conomie \u00e9tait en croissance, et paradoxalement une \u00e9conomie mal portante pourrait contribuer \u00e0 augmenter encore la demande.\n\nCela vient du fait que notre comportement en mati\u00e8re de d\u00e9placements du quotidien a ob\u00e9it depuis longtemps \u00e0 une double logique budg\u00e9taire (ce que montrent les statistiques des \u00e9conomistes des transports).\n\nLa premi\u00e8re est \u00e9conomique : nous utilisons g\u00e9n\u00e9ralement pour nous d\u00e9placer le moyen le plus cher que notre revenu nous autorise. En premi\u00e8re approximation les personnes qui peuvent se payer une voiture et qui ont une place de parking chez eux et au travail utilisent l'automobile, et les autres les transports en commun (tendance que le covid a renforc\u00e9e).\n\nLorsque la conjoncture devient plus difficile sans pour autant priver les gens de leur motifs d\u00e9placement, une partie de la population a plus de mal \u00e0 utiliser son v\u00e9hicule, et voudrait plus en transports en commun. Cet effet est encore renforc\u00e9 lorsque la difficult\u00e9 \u00e9conomique vient de l'\u00e9nergie (moindre disponibilit\u00e9 et/ou prix qui montent tr\u00e8s fort, comme en 2008).\n\nA cela vient s'ajouter le fait que, sur s\u00e9rie longue, nous avons fonctionn\u00e9 \u00e0 temps de d\u00e9placement constant. L'arriv\u00e9e de voitures en masse depuis l'apr\u00e8s-guerre n'a pas \u00e9t\u00e9 utilis\u00e9 pour aller plus vite au m\u00eame endroit, mais pour passer le m\u00eame temps \u00e0 faire plus de km (parce que cela \u00e9largit l'univers de choix pour le logement, le travail, l'\u00e9cole...). \n\nL'augmentation du nombre de voitures - en France le parc auto est pass\u00e9 de 3 \u00e0 38 millions d'unit\u00e9s de 1945 \u00e0 maintenant) - a donc induit de l'\u00e9talement urbain, cr\u00e9ant des zones avec des densit\u00e9s d'habitants au km2 plus faibles qu'en ville, peupl\u00e9es de gens qui font des dizaines de km en auto tous les jours (cela se constate partout dans le monde).\n\nAller \"chercher\" en transports en commun des p\u00e9riurbains qui n'(aur)ont plus les moyens \u00e9conomiques d'utiliser leur voiture coute(ra) beaucoup plus cher par personne que pour les urbains, puisque les couts d'un syst\u00e8me de transports en commun sont pour partie des couts fixes.\n\nEnfin m\u00eame pour les infrastructures existantes les charges augmentent avec la fr\u00e9quentation : par exemple s'il y a une fr\u00e9quence de passage plus importante cela signifie plus de personnel, plus de mat\u00e9riel roulant, plus d'\u00e9nergie, plus de maintenance...\n\nLe casse t\u00eate du Syndicat des Transports d'Ile de France (90% du trafic du quotidien fran\u00e7ais en mode ferr\u00e9) n'est donc pas r\u00e9solu demain matin. En effet, \u00e0 l'horizon de quelques d\u00e9cennies l'\u00e9nergie sera de moins en moins disponible, et \u00e0 la suite les flux physiques sous-jacents de l'\u00e9conomie aussi. Qui peut-on et doit-on \"transporter en commun\" quand il y a globalement moins de moyens : c'est d\u00e9sormais la question qui se pose." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7027994565676527616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7027994566683193344,urn:li:activity:7027994566683193344,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 67, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7027994566683193344,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7027994566683193344,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7027994566683193344", + "threadId": "activity:7027994566683193344", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027994566683193344", + "urn": "urn:li:activity:7027994566683193344", + "numComments": 155, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7027994566683193344", + "reactionTypeCounts": [ + { + "count": 859, + "reactionType": "LIKE" + }, + { + "count": 127, + "reactionType": "INTEREST" + }, + { + "count": 69, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7027994566683193344", + "numLikes": 1069, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027994566683193344", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1070, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 Edited \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7027692001311498240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7027692001311498240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7027692001311498240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carburants-les-gilets-jaunes-ont-ils-activity-7027692001311498240-vtZx?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7027692000636203008", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7027692001311498240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7027692000636203008", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "jsrGIUP72+6uUroKmTniCw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8462332020454373656", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675719684036?e=1677240000&v=beta&t=J9Nc6Hk1UoYficFB4nvvwC6D9Ro_Ilh_FaINn-u1ALM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675719684036?e=1677240000&v=beta&t=6X7IEa1k_3jQXbmmI3TVE3qEkD1Nskrf4xUCtrmw8QA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675719684036?e=1677240000&v=beta&t=jcX6iT9yBNwBUZ2OLdlCgZ3aJF4k9_M-6Fhpt-__gEs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675719684036?e=1677240000&v=beta&t=RwjeViOHm-TQI9ILxw-AHCY196gOxNqsKNmg35_QK10", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEAoiGuleTReQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8462332020454373656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8462332020454373656)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carburants : les \u00ab gilets jaunes \u00bb ont-ils raison de d\u00e9noncer une hausse des prix ? by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/carburants-les-gilets-jaunes-ont-ils-raison-de-denoncer-une-hausse-des-prix-149158" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carburants\u00a0: les \u00ab\u00a0gilets jaunes\u00a0\u00bb ont-ils raison de d\u00e9noncer une hausse des prix\u00a0?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7027692000636203008,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 2018, la France a v\u00e9cu l'\u00e9pisode des \"gilets jaunes\". A l'\u00e9poque essence et gazole \u00e9taient \u00e0 environ 1,5 euro le litre. C'est d\u00e9sormais entre 1,8 et 2 euros selon la pompe et le type de carburant (https://bit.ly/2SBEC4o ). Et.... rien. Pas d'\u00e9meute, alors que dans le m\u00eame temps le prix du gaz et de l'\u00e9lectricit\u00e9 ont fortement augment\u00e9, sans parler du reste. \n\nSi la raison premi\u00e8re de ce qui s'est pass\u00e9 il y a 4 ans \u00e9tait juste le niveau de prix dans l'absolu, pourquoi tout le monde fait le dos rond actuellement ?\n\nTentons une hypoth\u00e8se : \u00e0 l'\u00e9poque l'Etat avait prononc\u00e9 le mot \"taxe carbone\". Or parler de fiscalit\u00e9 des carburants, c'est d\u00e9battre de la part \u00e0 la main de notre pays, pour laquelle il ne d\u00e9pend \u00e9videmment que de nous de la monter... ou de la baisser. \n\nActuellement, c'est la faute \u00e0 \"pas de chance\". C'est pas de chance si Poutine a envahi l'Ukraine. C'est \"pas de chance\" si le prix de march\u00e9 du baril monte fortement. Et on ne va quand m\u00eame pas menacer la Russie ou l'Irak de l'arme nucl\u00e9aire pour que ces pays augmentent leur production d'or noir !\n\nIl est facile de constater que nous acceptons souvent bien plus facilement les efforts d\u00e9clench\u00e9s par \"pas de chance\" que ceux qui sont le r\u00e9sultat d'une d\u00e9marche intentionnelle. Si les taxes sur les carburants augmentent, on ne nous enl\u00e8vera pas de la t\u00eate que notre pr\u00e9sident, qui devrait nous prendre sous son aile, prend un malin plaisir \u00e0 nous rendre la vie plus difficile !\n\nEt pourtant, l\u00e0 o\u00f9 l'\u00e9volution actuelle est \"pas de chance\", c'est qu'elle est beaucoup plus dommageable pour la population que la taxe carbone envisag\u00e9e \u00e0 l'\u00e9poque par le gouvernement. \n\nL'imp\u00f4t est un recyclage national. Ce que nous payons en plus pour les carburants, l'Etat peut nous le rendre sous forme de travaux d'isolation, de pompes \u00e0 chaleur, de subventions aux v\u00e9hicules \u00e9lectriques ou de pistes cyclables. \n\nQuand le prix du baril monte, cela appauvrit la France (en augmentant le d\u00e9ficit commercial) et personne ne reverra cet argent pour aider le pays \u00e0 s'organiser avec moins d'\u00e9nergie fossile. \n\nEt le paradoxe de l'affaire est que c'est l'un ou l'autre. En effet, le p\u00e9trole \u00e9tant \u00e9puisable (et le pic conventionnel pass\u00e9), si nous ne provoquons pas la baisse de son usage par des mesures qui sont fatalement contraignantes pour quelqu'un, il y aura p\u00e9riodiquement des envol\u00e9es de prix comme celle que nous vivons actuellement ou pire. \n\nIl y a donc d\u00e9carboner et d\u00e9carboner. La voie qui consiste \u00e0 attendre que \"y'en a plus\" enrichit les producteurs et laissera la population au d\u00e9pourvu. Celle qui consiste \u00e0 agir demandera des efforts \u00e0 plus court terme mais beaucoup moins \"plus tard\". \n\nIl reste une condition du succ\u00e8s essentielle : que le gouvernement sache faire la p\u00e9dagogie du probl\u00e8me (pour le moment il ne comprend pas que l'Europe est en d\u00e9clin subi sur le p\u00e9trole depuis 2007) et que toute mesure d'effort s'inscrive dans un plan d'ensemble per\u00e7u comme pertinent. Et l\u00e0 nous n'y sommes pas encore." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7027692000636203008,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7027692001311498240,urn:li:activity:7027692001311498240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 165, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7027692001311498240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7027692001311498240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7027692001311498240", + "threadId": "activity:7027692001311498240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027692001311498240", + "urn": "urn:li:activity:7027692001311498240", + "numComments": 263, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7027692001311498240", + "reactionTypeCounts": [ + { + "count": 3318, + "reactionType": "LIKE" + }, + { + "count": 425, + "reactionType": "INTEREST" + }, + { + "count": 176, + "reactionType": "MAYBE" + }, + { + "count": 96, + "reactionType": "PRAISE" + }, + { + "count": 34, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7027692001311498240", + "numLikes": 4065, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027692001311498240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4066, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7027244366859530240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7027244366859530240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7027244366859530240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_devant-lurgence-climatique-de-plus-en-plus-activity-7027244366859530240-uwL-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7027244365743804417", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7027244366859530240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7027244365743804417", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "TV+Qs0RahXSSB4jS6o12JQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6921286453414376786", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676123224260?e=1677240000&v=beta&t=qq8EJP7Cnr-nWOBXIy6EobrMwhcuQ3ddAOeGsVNrjio", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676123224260?e=1677240000&v=beta&t=HZpA4044i0OS1ffFlcimmWkMQxLtVFR6-Y95QL5BJoc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676123224260?e=1677240000&v=beta&t=gu5yUmRF1fiw1QUChGZ5u5s7E0y5WE460xwvNo5kpo0", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676123224260?e=1677240000&v=beta&t=7mrP9qCy4gW6FUek7QqJF7LXXfb2YaxI1yBOCnph7Cc", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQG1GnbrKVT1dg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6921286453414376786)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6921286453414376786)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Devant l\u2019urgence climatique, de plus en plus de scientifiques tent\u00e9s par la radicalit\u00e9 : \u00ab La d\u00e9sob\u00e9issance civile est un acte d\u00e9sesp\u00e9r\u00e9, pour alerter sur la situation dramatique dans laquelle on est \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/planete/article/2023/01/26/face-a-la-crise-ecologique-des-scientifiques-tentes-par-la-radicalite-sortez-de-vos-labos-allez-dans-la-rue_6159367_3244.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Devant l\u2019urgence climatique, de plus en plus de scientifiques tent\u00e9s par la radicalit\u00e9\u00a0: \u00ab\u00a0La d\u00e9sob\u00e9issance civile est un acte d\u00e9sesp\u00e9r\u00e9, pour alerter sur la situation dramatique dans laquelle on est\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7027244365743804417,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un m\u00e9decin peut-il se contenter de poser le diagnostic sans recommander de traitement ? En mati\u00e8re de climat, c'est le mandat qui a \u00e9t\u00e9 donn\u00e9 au GIEC : \u00eatre \"policy relevant but not policy prescriptive\", c'est \u00e0 dire d\u00e9crire la situation, mais sans fournir de recommandation sur la voie \u00e0 suivre.\n\nQuand on y r\u00e9fl\u00e9chit bien, ce n'est pas infond\u00e9 : apr\u00e8s tout, se restreindre maintenant pour pr\u00e9server l'avenir n'est pas une d\u00e9cision scientifique mais un choix. Un m\u00e9decin, pour reprendre le parall\u00e8le, peut dire au fumeur qu'il prend des risques, et les lui d\u00e9crire par le menu, mais il ne peut pas physiquement le contraindre \u00e0 s'arr\u00eater (il y a 20 ans je m'\u00e9tais amus\u00e9 - enfin si l'on peut dire - \u00e0 comparer plus largement effet de serre et tabac, car il me semble qu'il y a beaucoup de points communs, et \u00e0 me relire je ne vois pas grand chose \u00e0 changer : https://bit.ly/3YjUeL9 )\n\nIl y a par ailleurs des cas de figure o\u00f9 la r\u00e9ponse \u00e0 la question initiale est oui, parce que m\u00eame en m\u00e9decine on change d'interlocuteur entre diagnostic et th\u00e9rapie. Le radiologue qui vous fait passer l'IRM ne sera pas celui qui vous proposera un traitement derri\u00e8re. La g\u00e9n\u00e9raliste \u00e0 qui vous dites que vous avez \"mal au dos\" n'est pas n\u00e9cessairement celle qui vous recommandera la solution au probl\u00e8me.\n\nEn mati\u00e8re de climat, cette difficult\u00e9 est encore plus grande : le physicien ou la biologiste d\u00e9crivant l'\u00e9volution du syst\u00e8me terre sous l'effet d'\u00e9missions croissantes n'a pas, du seul fait de son m\u00e9tier, de comp\u00e9tences techniques particuli\u00e8res pour proposer la mani\u00e8re de modifier l'organisation humaine et mat\u00e9rielle qui en est \u00e0 l'origine (m\u00eame si les journalistes adorent faire du \"tout en un\" en demandant au scientifique cuisin\u00e9 sur la situation ce qu'il faut faire \u00e0 partir de l\u00e0). \n\nLa question de savoir si des scientifiques doivent ou non \"descendre dans la rue\" pour mieux se faire entendre d\u00e9pend donc de l'effet recherch\u00e9 et du discours tenu.\n\nSi c'est pour militer pour que le diagnostic soit mieux connu, \u00e0 ce moment le/la scientifique est l\u00e9gitime, mais en pratique ce n'est pas d'abord la puissance publique qui est vis\u00e9e, mais d'abord la presse, puisque c'est d'elle dont d\u00e9pend le volume et la qualit\u00e9 de l'information diffus\u00e9e sur le sujet et son lien avec l'organisation du monde. \n\nQu'un(e) climatologue s'encha\u00eene aux grilles de l'Elys\u00e9e ou \u00e0 une centrale \u00e0 charbon fera-t-il des media plus prolixes et performants sur le climat ? Une fois que l'information est connue, la d\u00e9cision qui en d\u00e9coule n'est plus un probl\u00e8me scientifique.\n\nSi ce militantisme a pour objet de faire adopter des mesures particuli\u00e8res (taxe carbone, investissements dans le train, ou isolation des b\u00e2timents), alors la question doit \u00eatre pos\u00e9e sans invoquer la qualit\u00e9 de scientifique : il s'agit de savoir, quel que soit le m\u00e9tier de la personne concern\u00e9e, si bloquer un a\u00e9roport au nom du climat est plus ou moins immoral que de bloquer les trains au nom des retraites. Int\u00e9ressante question !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7027244365743804417,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7027244366859530240,urn:li:activity:7027244366859530240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7027244366859530240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7027244366859530240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7027244366859530240", + "threadId": "activity:7027244366859530240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027244366859530240", + "urn": "urn:li:activity:7027244366859530240", + "numComments": 143, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7027244366859530240", + "reactionTypeCounts": [ + { + "count": 705, + "reactionType": "LIKE" + }, + { + "count": 104, + "reactionType": "INTEREST" + }, + { + "count": 62, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7027244366859530240", + "numLikes": 899, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027244366859530240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 900, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 Edited \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7026974946824192000", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7026974946824192000)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7026974946824192000)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-influenceurs-br%C3%BBlent-le-monde-avec-activity-7026974946824192000-e51E?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7026974945939226624", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7026974946824192000", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7026974945939226624", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "HVgWTyTBeeIT6rLZEIrnzA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8154188842981148828", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676022195813?e=1677240000&v=beta&t=BI44AFvzi7U8mjhFe6h7ZBJy-hW1CqkFE7ngAVDqLSY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676022195814?e=1677240000&v=beta&t=RLy8N8TGMnSQs9drDFt6a22jWIE8C6-B2JQlW5hFEDM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676022195814?e=1677240000&v=beta&t=119jvpd2x3hjmXoC8C4KiHyF7rpo-TuUMo02KGotGuQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676022195814?e=1677240000&v=beta&t=UPoaLK0PWvbKWfmKetq_sevl8rrDS4HT8BBHFk8AUfM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEn527yRLnsxg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8154188842981148828)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8154188842981148828)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: LES INFLUENCEURS BR\u00dbLENT LE MONDE ? (avec JILL) | LIMIT #episode1 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=xmtCBulbID8" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\u2799 Cette cha\u00eene vit int\u00e9gralement gr\u00e2ce \u00e0 vos dons ! https://linktr.ee/limit.media Secouer le monde de l'influence sur les questions li\u00e9es aux Limites Plan\u00e9taires ? C'est ce que nous allons tenter de faire dans cette nouvelle \u00e9mission : \"Bad Influence\"..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "LES INFLUENCEURS BR\u00dbLENT LE MONDE ? (avec JILL) | LIMIT #episode1" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7026974945939226624,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 350, + "length": 10, + "miniProfile": { + "firstName": "Vinz", + "lastName": "Kant\u00e9", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABnoaesBFyeDnfMQ7vVH_WdqzzSE1gZnFeI", + "occupation": "Cr\u00e9ateur, Animateur, Prod, conf\u00e9rencier chez #LIMIT #SchoolUp \ud83c\udf0d\ud83d\udc9a", + "objectUrn": "urn:li:member:434661867", + "entityUrn": "urn:li:fs_miniProfile:ACoAABnoaesBFyeDnfMQ7vVH_WdqzzSE1gZnFeI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1643988095695?e=1681948800&v=beta&t=7C2zsu2AnUIGYGJLxdwy6H0Pfz49i4bCG42UTyrDQiU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1643988095695?e=1681948800&v=beta&t=4mbItdC9wOaAB8PKJJb-Yb_-TvLU7cJhmTKvMc1TnoE", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQGwWxvh-yImnw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "vinzkante", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1652368741388?e=1681948800&v=beta&t=oBVj0OP183lIxUjW-ObsX93mvqUUhnlf8CUv9CYdkL8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1652368741388?e=1681948800&v=beta&t=QLthymcqCv14W4AiYsuUqj2QbfpGNDM6Pj43wuQjwBY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1652368741388?e=1681948800&v=beta&t=qpYGcnw-PgEP8UZgyFGsOXkDPZUoHvFO1KR2QFlKBb4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1652368741388?e=1681948800&v=beta&t=_jJyLbpMGXX6ocxEt866mRbwvojncDU-oE19Bdveik8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFVgbwuDHeE9Q/profile-displayphoto-shrink_" + } + }, + "trackingId": "M02RptDCSCSVSKdi8xqPbQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Les \"influenceurs\" ne sont g\u00e9n\u00e9ralement pas consid\u00e9r\u00e9s comme des grands amis de la lutte contre le changement climatique. Promouvoir des chaussures, des t\u00e9l\u00e9phones, des s\u00e9jours \u00e0 l'\u00e9tranger ou des cosm\u00e9tiques, tout en sautant d'un avion \u00e0 l'autre pour les prises de vues, c'est un peu compliqu\u00e9 \u00e0 marier avec la sobri\u00e9t\u00e9.\n\nC'est apr\u00e8s ce constat que Vinz Kant\u00e9 a bascul\u00e9 de la promotion publicitaire au militantisme climat (avec la cr\u00e9ation de la chaine Limit : https://lnkd.in/eGdVN6Vw ). Mais il y a un prix \u00e0 payer, au sens propre du terme : comme il le dit lui-m\u00eame dans cette vid\u00e9o, cela s'est accompagn\u00e9 d'une tr\u00e8s forte baisse de ses revenus.\n\nIl lui est r\u00e9cemment venu l'id\u00e9e d'aller dialoguer avec des \"coll\u00e8gues\" de l'influence (qui l'accepteraient) comment ils et elles voyaient la question environnementale dans leur m\u00e9tier (et si ca leur causait ou pas des \u00e9tats d'\u00e2me). \n\nLa premi\u00e8re qui a accept\u00e9 de se pr\u00eater au jeu s'appelle Jill (elle est belge, comme celui qui la passe sur le grill). Il en r\u00e9sulte un dialogue int\u00e9ressant entre 2 militant(e)s \u00e0 leur fa\u00e7on, l'un pass\u00e9 \"dehors\" (c'est \u00e0 dire devenu un influenceur \"d\u00e9di\u00e9 climat\"), l'autre rest\u00e9e \"dedans\" (elle fait toujours le m\u00eame m\u00e9tier, mais dit pouvoir ainsi parler \u00e0 des gens pas convaincus).\n\nUne partie de l'\u00e9change tourne donc autour de cette question \u00e9ternelle : pour changer le syst\u00e8me, est-ce plus efficace d'\u00eatre dedans ou dehors ? En fait c'est probablement un faux d\u00e9bat : il faut les deux. Depuis \"dehors\" on d\u00e9stabilise (et sans d\u00e9stabilisation personne ne cherche \u00e0 changer) ; depuis \"dedans\" on construit (phase indispensable apr\u00e8s la d\u00e9stabilisation). \n\nLa meilleure partie de la vid\u00e9o est \u00e0 la fin, avec tout d'abord des statistiques (dont je ne sais pas si elles sont repr\u00e9sentatives du m\u00e9tier) sur les diverses cat\u00e9gories de produits dont Jill a fait la promotion. En premi\u00e8re approximation, la quasi-totalit\u00e9 de ce qui permet \u00e0 cette influenceuse de gagner sa vie est constitu\u00e9 de produits ou services \"pas durables\" (sans que la d\u00e9finition en soit donn\u00e9e, mais quand on regarde la d\u00e9composition par cat\u00e9gorie de produits on arrive assez facilement \u00e0 cette conclusion).\n\nPuis vient le bilan carbone de la cobaye du jour : sans surprise, il est nettement sup\u00e9rieur \u00e0 la moyenne, avion oblige, alors m\u00eame que l'int\u00e9ress\u00e9e consid\u00e9rait avoir fait beaucoup de chemin en installant des panneaux PV sur le toit, en limitant la viande et en minimisant ses d\u00e9placements du quotidien en voiture. \n\nCela illustre l'un des d\u00e9fis de la d\u00e9carbonation : familiariser le grand public avec la notion d'empreinte carbone et de \"contenu carbone\" d'un produit ou service. Car l\u00e0 comme ailleurs il n'y a pas de progr\u00e8s sans mesure !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7026974945939226624,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7026974946824192000,urn:li:activity:7026974946824192000,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 39, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7026974946824192000,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7026974946824192000,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7026974946824192000", + "threadId": "activity:7026974946824192000", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026974946824192000", + "urn": "urn:li:activity:7026974946824192000", + "numComments": 49, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7026974946824192000", + "reactionTypeCounts": [ + { + "count": 893, + "reactionType": "LIKE" + }, + { + "count": 104, + "reactionType": "INTEREST" + }, + { + "count": 47, + "reactionType": "MAYBE" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7026974946824192000", + "numLikes": 1084, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026974946824192000", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1086, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7026294163922911233", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7026294163922911233)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7026294163922911233)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-pr%C3%A9sident-de-la-cop28-appelle-%C3%A0-lutter-activity-7026294163922911233-922j?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7026294163201515520", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7026294163922911233", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7026294163201515520", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "fyZm26zViRxQiiKKBoCyNA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8878644420238475260", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676444749074?e=1677240000&v=beta&t=HdzuGwnWeDcS5CaMX3KhVFYZKSr3AlHg0jAdBSUHjmI", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676444749074?e=1677240000&v=beta&t=42ogJq9VCXhOKN7cU_b0F3MeiXYd7eBMbt_6WNn383M", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676444749075?e=1677240000&v=beta&t=PHj4un-PLkxMnKrZNOcUU1oMUe5fNlBuTJ4cLLJmzRw", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676444749075?e=1677240000&v=beta&t=fo2cn5deOZ7E_-pGe1Mvmp4KlrhC7_dboSc1_efm-DA", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D5627AQFU01I3pkKatw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le ministre de l'Industrie des \u00c9mirats arabes unis, Sultan Ahmed Al Jaber, prend la parole lors de l'exposition et de la conf\u00e9rence internationales sur le p\u00e9trole d'Abu Dhabi (ADIPEC) \u00e0 Abu Dhabi, aux \u00c9mirats arabes unis, le 31 octobre 2022." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8878644420238475260)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8878644420238475260)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lefigaro.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le pr\u00e9sident de la COP28 appelle \u00e0 lutter contre le r\u00e9chauffement \u00absans ralentir\u00bb l'\u00e9conomie by lefigaro.fr", + "actionTarget": "https://www.lefigaro.fr/flash-actu/le-president-de-la-cop28-appelle-a-lutter-contre-le-rechauffement-sans-ralentir-l-economie-20230130" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le pr\u00e9sident de la COP28 appelle \u00e0 lutter contre le r\u00e9chauffement \u00absans ralentir\u00bb l'\u00e9conomie" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7026294163201515520,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un certain nombre de personnes se sont \u00e9mues que le pr\u00e9sident de la future COP (ce qui signifie \"Convention Of the Parties\", jargon onusien pour d\u00e9signer la r\u00e9union annuelle de tous les pays qui ont ratifi\u00e9 la Convention Climat) soit le patron de l'op\u00e9rateur national d'un \u00e9tat p\u00e9trolier, qui dit que la croissance ne doit pas \u00eatre affect\u00e9e par les politiques climatiques.\n\nMauvaise nouvelle : il ne fait que r\u00e9citer le texte de la Convention Climat (https://bit.ly/3XTBWAv ).\n\nDans ce document on peut en effet trouver plein d'affirmations qui disent \u00e0 peu pr\u00e8s - voire explicitement - la m\u00eame chose, comme par exemple :\n\n\"(...) the share of global emissions originating in developing countries will grow to meet their social and development needs\".\n\n\"(...) responses to climate change should [avoid] adverse impacts on [economic development], taking into full account the legitimate priority needs of developing countries for the achievement of sustained economic growth (...)\".\n\n\"Policies and measures to protect the climate system against human-induced change should [take] into account that economic development is essential for adopting measures to address climate change\"\n\nSi l'on traduit ces \u00a7 en fran\u00e7ais ordinaire cela donne :\n\n- les pays \"en d\u00e9veloppment\" (cat\u00e9gorie dans laquelle se rangent tous les pays hors OCDE pour faire simple,et donc les \u00e9tats producteurs d'hydrocarbures du Moyen Orient ainsi que la Chine ou l'Inde) s'estiment l\u00e9gitimement en mesure d'augmenter leur part des \u00e9missions sans sortir du cadre de cette Convention.\n\n- les politiques climat (partout) ne doivent pas avoir d'effet adverse sur \"le d\u00e9veloppement\" (en clair la croissance \u00e9conomique), \n\n- et m\u00eame que la croissance est un pr\u00e9requis de toute politique climat !\n\nIl y a \u00e9galement un \u00a7 de la Convention qui concerne directement les \u00e9tats p\u00e9troliers et qui affirme :\n\n\"Recalling also that States have (...) the sovereign right to exploit their own resources pursuant to their own (...) developmental policies, and the responsibility to ensure that activities within their jurisdiction or control do not cause damage to the environment of other States\"\n\nLes p\u00e9troliers ont donc le droit souverain d'extraire le p\u00e9trole de leur sous-sol en \"s'assurant que leurs activit\u00e9s ne causent pas de dommage \u00e0 l'environnement des autres pays\". Cette formulation est pour le moins ambigue. Pourquoi ne pas avoir \u00e9crit explicitement \"(...) the responsibility to ensure that activities (...) do not cause CLIMATE damage to other states\" ?\n\n\"ne pas causer de dommage \u00e0 l'environnement\" peut juste signifier d'\u00e9viter les mar\u00e9es noires...\n\nBref il n'y a pas lieu de s'\u00e9mouvoir tant que cela de cette d\u00e9claration, tr\u00e8s \"ONU compatible\" (rappelons que l'item N\u00b0 8 des Objectifs du D\u00e9veloppement Durable c'est la croissance \u00e9conomique : https://sdgs.un.org/goals ).\n\nL'enseignement qu'il faut en tirer est connu depuis longtemps : aucun miracle ne viendra des COP. L'action doit venir d'ailleurs." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7026294163201515520,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7026294163922911233,urn:li:activity:7026294163922911233,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 84, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7026294163922911233,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7026294163922911233,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7026294163922911233", + "threadId": "activity:7026294163922911233", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026294163922911233", + "urn": "urn:li:activity:7026294163922911233", + "numComments": 181, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7026294163922911233", + "reactionTypeCounts": [ + { + "count": 1736, + "reactionType": "LIKE" + }, + { + "count": 325, + "reactionType": "INTEREST" + }, + { + "count": 144, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "PRAISE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7026294163922911233", + "numLikes": 2282, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026294163922911233", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2323, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7025948734551117824", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7025948734551117824)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7025948734551117824)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_a-ivry-sur-seine-l%C3%A9coquartier-gagarine-truillot-activity-7025948734551117824-3zMv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7025948733804544000", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7025948734551117824", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7025948733804544000", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "48tseSTsM/IbiwXrg6Cp5Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9040031523336314907", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676541953918?e=1677240000&v=beta&t=EzMfFKPd7rqg-ehQYPfWDxj96MQiZhg-qKj2BbHhdjk", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676541953919?e=1677240000&v=beta&t=UE1Eo44UlGITYQfi1deemCrpZMchhpSOCE-rRo9pxNY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676541953919?e=1677240000&v=beta&t=rdqaihgFR2mstGlVd3q7S4LM9OucEU72qzBTUo_Bgms", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676541953919?e=1677240000&v=beta&t=cbjyJ6lAhSt7tTdp9wMkTZRngCKKnvq_0m746IczIlw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFyrTAKGfzlXw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9040031523336314907)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9040031523336314907)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: A Ivry-sur-Seine, l'\u00e9coquartier Gagarine-Truillot veut acc\u00e9l\u00e9rer sur l'agriculture urbaine by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/pme-regions/ile-de-france/a-ivry-sur-seine-lecoquartier-gagarine-truillot-veut-accelerer-sur-lagriculture-urbaine-1898826" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "A Ivry-sur-Seine, l'\u00e9coquartier Gagarine-Truillot veut acc\u00e9l\u00e9rer sur l'agriculture urbaine" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7025948733804544000,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La commune d'Ivry sur Seine, qui fait partie de la proche banlieue sud de Paris, d\u00e9marre une op\u00e9ration d'am\u00e9nagement qui comportera 1400 logements (h\u00e9bergeant donc environ 3000 personnes si l'on compte 2,2 personnes par logement). Mais il y aura aussi 2,3 hectares d'agriculture urbaine, permettant aux \u00e9lus de qualifier ce nouveau quartier \"d'agrocit\u00e9\". Est-ce que l'alimentation des habitants du lieu va vraiment significativement changer avec l'arriv\u00e9e d'une surface agricole \u00e0 proximit\u00e9 ?\n\nEn 2015 (la valeur est du m\u00eame ordre de grandeur aujourd'hui), la plan\u00e8te offrait \u00e0 chaque terrien 0,6 hectare de terre agricole (voir graphique en commentaire). Avec 2,3 hectares, on nourrit donc... 4 personnes. Certes, on ne va pas avoir sur cette parcelle \u00e0 la fois des poireaux, des patates, du bl\u00e9, une vache, des pommiers, des poules et du ma\u00efs pour nourrir en totalit\u00e9 4 personnes pendant que les autres habitants n'en verront rien.\n\nMais, quoi que l'on y mette, cela permettra d'\u00e9viter 1 pour mille des flux logistiques associ\u00e9s \u00e0 la nourriture des habitants du futur quartier. Dire dans l'article que cette op\u00e9ration va contribuer de mani\u00e8re discernable \u00e0 une \"logique de circuits courts\" est donc un tout petit peu survendre l'affaire !\n\nEst-ce \u00e0 dire que ce genre de chose ne sert \u00e0 rien ? Pas n\u00e9cessairement :\n- cela a\u00e8re l'espace\n- cela peut permettre \u00e0 des enfants (voire des adultes) de d\u00e9couvrir ce qu'est un mouton ou un plant de pomme de terre\n- cela peut permettre de rappeler qu'une ville n'existe pas sans cultures pour la nourrir, et que le changement climatique met donc en danger les villes par cet aspect l\u00e0 aussi.\n\nMais, tant qu'\u00e0 laisser un espace non b\u00e2ti dans une ville, on peut aussi y mettre des arbres (qui apaisent les habitants et qui \u00e9vitent un peu l'effet ilot de chaleur) et/ou un espace (non imperm\u00e9abilis\u00e9) pour que les enfants aillent se d\u00e9fouler, chose qui est plus difficile quand on doit \u00e9viter de pi\u00e9tiner des plants de salade ou de faire peur aux poules.\n\nUn tel espace ne peut donc avoir qu'une vertu p\u00e9dagogique ou r\u00e9cr\u00e9ative, mais, malheureusement, rien de plus. Par d\u00e9finition m\u00eame, une ville est une concentration d'individus qui se mettent au m\u00eame endroit, en pratique pour \u00e9changer et coop\u00e9rer plus facilement, et par construction m\u00eame c'est donc la cr\u00e9ation d'un d\u00e9s\u00e9quilibre entre la production alimentaire locale et les bouches \u00e0 nourrir.\n\nUne ville doit donc fatalement importer sa nourriture (et tout le reste : v\u00eatements, mat\u00e9riaux de construction, objets pour le logement, etc) d'ailleurs, et plus une ville est grosse plus ses \"tentacules logistiques\" doivent aller chercher loin. C'est pour cela que dans un monde sobre en \u00e9nergie les grosses villes vont avoir du mal \u00e0 survivre : il leur faudra un hinterland bien plus important que ce que les possibilit\u00e9s de transport pourront alors fournir. \n\nDe ce fait, aucune \"agrocit\u00e9\" ne pourra, h\u00e9las, \u00eatre autre chose qu'une cit\u00e9 ordinaire avec une appellation vendeuse. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7025948733804544000,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7025948734551117824,urn:li:activity:7025948734551117824,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 167, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7025948734551117824,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7025948734551117824,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7025948734551117824", + "threadId": "activity:7025948734551117824", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025948734551117824", + "urn": "urn:li:activity:7025948734551117824", + "numComments": 271, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7025948734551117824", + "reactionTypeCounts": [ + { + "count": 1852, + "reactionType": "LIKE" + }, + { + "count": 282, + "reactionType": "INTEREST" + }, + { + "count": 122, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7025948734551117824", + "numLikes": 2313, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025948734551117824", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2323, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7025499114272387072", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7025499114272387072)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7025499114272387072)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9carbonation-les-pme-et-les-eti-en-ordre-activity-7025499114272387072-ZEWu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7025499113316085760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7025499114272387072", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7025499113316085760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "raFvhuCh/wid6kjAPxYG2A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7703886279211765749", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676467730494?e=1677240000&v=beta&t=AcsdPyJWvc6BGBGDmEXNv_toOaHRgN28IT2kimJ0e3g", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676467730494?e=1677240000&v=beta&t=9K65Tw5eJAeIH57tWy5YmldhlHwR3U8X-WaF4FDJAPw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676467730494?e=1677240000&v=beta&t=IVvA_vVyPwz1a2YcAwZGeL3CRp-z96E5G0dkSzXiI8g", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676467730494?e=1677240000&v=beta&t=iJmx_cI620TjGv9VgzasfG7m1s1uSdMfHTI19-ztfN4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEgbWHTTquFgg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7703886279211765749)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7703886279211765749)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: D\u00e9carbonation : les PME et les ETI en ordre dispers\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/pme-regions/actualite-pme/decarbonation-les-pme-et-les-eti-en-ordre-disperse-1901217" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9carbonation\u00a0: les PME et les ETI en ordre dispers\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7025499113316085760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1790, + "length": 13, + "miniProfile": { + "firstName": "Cl\u00e9ment", + "lastName": "Ramos", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAJ_kowBTgD4YvBxiCLnHECQS6-R87bx81Q", + "occupation": "Business strategy, Energy & Climate Change | Principal at Carbone 4", + "objectUrn": "urn:li:member:41915020", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAJ_kowBTgD4YvBxiCLnHECQS6-R87bx81Q", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1549373027172?e=1681948800&v=beta&t=vaTqIPfjkIf7gkzU-iYDkLZUZ8DBdinHEejt5hN1bBQ", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1549373027172?e=1681948800&v=beta&t=c2gPGoKF_PvehjIsoxJAiB0u54xCNTCuCxv1_-F12JQ", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQF8LHhZFoKl5A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "clementramos", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517778324190?e=1681948800&v=beta&t=5EhRf7YrFpsgXEhC0mSkPTnS86yyjCLrljHaANLSVV8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517778324190?e=1681948800&v=beta&t=1ldYL9bsWZJaDfKoOI2J47pebd5GvJLMgsaVvCgSw1U", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517778324190?e=1681948800&v=beta&t=9ikfNIke-mbTlj83WRPI5cKvEBIS4CJYfH9VzOeqPIQ", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517778324190?e=1681948800&v=beta&t=ha1l25OB-4YD65t8yNnuXqLuHvjSlF77DxJpGYOWW6s", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHtnW54XLAC1A/profile-displayphoto-shrink_" + } + }, + "trackingId": "KHwufQK9R7uobJkIqeJU5A==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Plus une entreprise est grosse, plus elle se pr\u00e9occupe de climat. On pourrait trouver cela paradoxal, dans la mesure o\u00f9 les plus grandes entreprises sont aussi, souvent, les plus mondialis\u00e9es et le plus financiaris\u00e9es, donc celles o\u00f9 les possibilit\u00e9s effectives de changer de mod\u00e8le sans y laisser une part significative de leur chiffre d'affaire apparaissent d'embl\u00e9e comme \"pas \u00e9videntes\".\n\nEn effet, \"se d\u00e9carboner\", en pratique, n'est pas juste remplacer les combustibles fossiles utilis\u00e9s en direct par des \u00e9nergies dites sans carbone (en fait il y en a toujours un peu) : il s'agit d'\u00eatre capable de survivre dans un monde o\u00f9 les \u00e9missions baissent globalement de quelques % par an tous les ans et d\u00e8s maintenant.\n\nCela signifie donc survivre alors que des mat\u00e9riaux, des circuits logistiques, des usages \u00e0 l'aval, des pouvoirs d'achat ou du temps libres seront de moins en moins disponibles. Et commet les entreprises qui ont le plus profit\u00e9 de ce que les combustibles fossiles nous ont amen\u00e9 sont aussi souvent les plus grosses, on pourrait penser qu'un ph\u00e9nom\u00e8ne de d\u00e9ni les \u00e9loigne le plus de regarder la question.\n\nIl n'emp\u00eache : selon cet article des Echos, 20\u00a0% des PME fran\u00e7aises ont calcul\u00e9 leur empreinte carbone, alors que ce pourcentage monte \u00e0 37\u00a0% lorsque toutes les tailles d'entreprises sont prises en compte.\n\nCertes la r\u00e9glementation explique beaucoup cela : ce calcul d'empreinte carbone est devenu obligatoire pour les entreprises de plus de 500 salari\u00e9s (et sous certaines conditions va l'\u00eatre pour plus de 250). Un autre \u00e9l\u00e9ment joue aussi : les PME comportent g\u00e9n\u00e9ralement une proportion de cadres plus faible que les grands groupes, avec fatalement moins de personnes aptes \u00e0 consacrer du temps \u00e0 des sujets non imm\u00e9diatement op\u00e9rationnels.\n\nComme l'explique Cl\u00e9ment Ramos dans une interview adjacente \u00e0 cette article (https://bit.ly/3HGegKv ), pour les PME non financi\u00e8res c'est souvent un client important (priv\u00e9 ou public) qui est \u00e0 l'origine du premier bilan carbone, parce qu'il en fait une condition de son achat.\n\nPourtant cette approche poss\u00e8de une valeur ajout\u00e9e tr\u00e8s forte pour la raison suivante : les \u00e9missions viennent toujours de processus physiques ou chimiques. Tracer les \u00e9missions dont d\u00e9pend son entreprise, c'est doc inventorier les flux physiques (et parfois les processus chimiques) dont elle d\u00e9pend. \n\nC'est donc un premier pas indispensable pour comprendre combien il sera facile ou pas de survivre dans un monde qui va se d\u00e9carboner t\u00f4t ou tard, de gr\u00e9 pour cause de climat ou de force pour cause d'\u00e9puisement des combustibles fossiles et de for\u00eats \u00e0 couper. Voir un bilan carbone uniquement comme une obligation r\u00e9glementaire est rater l'essentiel de ce qu'il am\u00e8ne au pilotage strat\u00e9gique \u00e0 moyen terme (voire \u00e0 court terme), m\u00eame pour une PME qui consid\u00e8re tr\u00e8s souvent avoir peu de prise sur sa trajectoire globale." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7025499113316085760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7025499114272387072,urn:li:activity:7025499114272387072,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 62, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7025499114272387072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7025499114272387072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7025499114272387072", + "threadId": "activity:7025499114272387072", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025499114272387072", + "urn": "urn:li:activity:7025499114272387072", + "numComments": 82, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7025499114272387072", + "reactionTypeCounts": [ + { + "count": 1043, + "reactionType": "LIKE" + }, + { + "count": 121, + "reactionType": "INTEREST" + }, + { + "count": 61, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7025499114272387072", + "numLikes": 1253, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025499114272387072", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1253, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7025160160046129153", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7025160160046129153)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7025160160046129153)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-jean-marc-jancovici-explique-pourquoi-activity-7025160160046129153-RaAH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7025160159395991552", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7025160160046129153", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7025160159395991552", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "Q12Kt+KGF2pkbUM1MvJJtQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8092899943283074825", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676406251527?e=1677240000&v=beta&t=xTc_CMEn0zgM9xPDFuujjTkxxqI5TeT9AQZgaSYOY24", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676406251527?e=1677240000&v=beta&t=GTKO4VDGv9-2R33yGuDWwgGdQM5QdQ5P55muVdkYDo8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676406251527?e=1677240000&v=beta&t=cQ5hHn9PvGhsg4UdnQ21xilKlRTTZ6NWC5LjLKHk0ls", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676406251527?e=1677240000&v=beta&t=1gGEEFfWJ1JpS4nkDBjSws1aA2Qr5cWXrcFboNpbG1Y", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFCDv5onsOKlA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8092899943283074825)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8092899943283074825)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : Jean-Marc Jancovici explique pourquoi le secteur de la montagne est en p\u00e9ril by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900229868-climat-jean-marc-jancovici-explique-pourquoi-le-secteur-de-la-montagne-est-en-peril" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat : Jean-Marc Jancovici explique pourquoi le secteur de la montagne est en p\u00e9ril" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7025160159395991552,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans une semaine c'est le d\u00e9but des vacances scolaires de f\u00e9vrier. Celles et ceux qui ont aujourd'hui la chance de profiter des sports d'hiver auront-il (ou leurs enfants) toujours la possibilit\u00e9 d'y partir \u00e0 l'avenir ?\n\nAvant l'\u00e9nergie abondante - disons avant guerre - les habitants des pays de montagne \u00e9taient parmi les plus pauvres d'un pays. La Suisse - largement compos\u00e9e de montagne - \u00e9tait elle-m\u00eame un des pays les plus pauvres d'Europe. \n\nEt puis l'arriv\u00e9e des \u00e9nergies fossiles a donn\u00e9 des cong\u00e9s pay\u00e9s aux m\u00e9nages (parce que les machines travaillent \u00e0 notre place), une voiture \u00e0 chacun d'entre eux, a permis l'augmentation de la production de b\u00e9ton et d'acier - indispensables pour \"am\u00e9nager\" les stations de ski, et enfin a permis de chauffer les b\u00e2timents et de permettre la douche chaude alors qu'il fait -15 \u00b0C dehors. \n\nEt voici que les zones recul\u00e9es de montagne sont devenus des \"paradis \u00e9conomiques\". 50% du PIB de la Savoie repose aujourd'hui sur le tourisme !\n\nBien sur, pour qu'il y ait des sports d'hiver, il faut aussi un hiver, ou plus pr\u00e9cis\u00e9ment de la neige. D\u00e9sormais cette derni\u00e8re peut \u00eatre artificielle (on dit pudiquement \"de culture\" ;) ) mais cela demande quand m\u00eame qu'il fasse assez froid.\n\nLes sports d'hiver, c'est donc de la neige toujours l\u00e0 et de l'\u00e9nergie abondante. Mais les deux sont d\u00e9sormais menac\u00e9s : la neige par le r\u00e9chauffement climatique, qui va raccourcir - et supprimer \u00e0 basse altitude - la pr\u00e9sence de neige naturelle, voire artificielle s'il faut vraiment trop chaud, et l'\u00e9nergie par la d\u00e9crue des combustibles fossiles, parce que les moyens de transport collectifs pour aller en station ne sont pas souvent \u00e0 l'\u00e9chelle.\n\nUn Samedi de f\u00e9vrier il va arriver 5000 \u00e0 10000 personnes dans une grosse station : il faudrait 6 \u00e0 12 TGV par station avec tous les vacanciers venant du m\u00eame endroit ou presque pour acheminer la m\u00eame quantit\u00e9 de monde ! \n\nL'avenir des stations de ski dans un monde sobre et sans neige est donc un gros point d'interrogation. Il n'est h\u00e9las pas sur que, pour les \u00e9lus des communes qui h\u00e9bergent ces activit\u00e9s (et pour les entreprises qui en vivent), il y ait partout une intense r\u00e9flexion sur la mani\u00e8re d'anticiper plut\u00f4t que de subir. Ca serait surement utile !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7025160159395991552,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7025160160046129153,urn:li:activity:7025160160046129153,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 91, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7025160160046129153,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7025160160046129153,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7025160160046129153", + "threadId": "activity:7025160160046129153", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025160160046129153", + "urn": "urn:li:activity:7025160160046129153", + "numComments": 193, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7025160160046129153", + "reactionTypeCounts": [ + { + "count": 1499, + "reactionType": "LIKE" + }, + { + "count": 218, + "reactionType": "INTEREST" + }, + { + "count": 79, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7025160160046129153", + "numLikes": 1834, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025160160046129153", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1837, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7024641174925664256", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7024641174925664256)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7024641174925664256)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pour-soccuper-s%C3%A9rieusement-denvironnement-activity-7024641174925664256-wusy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7024641172417474561", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7024641174925664256", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7024641172417474561", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "ieIhYquwEoZ8H+neJ6OG7g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGGpQwktMajlw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGGpQwktMajlw", + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1674804966150?e=1679529600&v=beta&t=4nvMQobPmiQmQ0cQySUBrzXvVffEKJ3rt4lydaeOr4I", + "expiresAt": 1679529600000, + "height": 533 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1674804966143?e=1679529600&v=beta&t=L1cFbAmVbQWYTfu0_yw8S8engShDwhqJL2RIBFmI56o", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280/0/1674804966143?e=1679529600&v=beta&t=AAO9KvyhTo6uL1trVaXdLebl0EO3Rc6XsaYGwWKMfW0", + "expiresAt": 1679529600000, + "height": 533 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1674804966143?e=1679529600&v=beta&t=zcW7DEJx9fV9GZ9b3R13Tc7dVTfB8cSK2mbbKG0hv6E", + "expiresAt": 1679529600000, + "height": 319 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1674804966143?e=1679529600&v=beta&t=yDbg19929du6KWGypryW05rZ9DQ7lTlOG_obABHow9g", + "expiresAt": 1679529600000, + "height": 106 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1674804966143?e=1679529600&v=beta&t=n057-2A7XTJJWiXaF5eL_6Fnw03qbnjPEfC5zdRvbek", + "expiresAt": 1679529600000, + "height": 533 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGGpQwktMajlw/feedshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7024641172417474561,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pour s'occuper s\u00e9rieusement d'environnement, il faut certes poser des objectifs et imaginer des actions, mais il faut aussi des gens pour s'en occuper. L'incendie climatique ne s'\u00e9teindra pas sans pompiers appropri\u00e9s !\n\nPour une fois ce post va donc concerner ce pour quoi Linkedin a \u00e9t\u00e9 con\u00e7u :) : des offres d'emploi, pour quelques entit\u00e9s et des postes en lien avec la question.\n\nA tout seigneur, tout honneur : on commence par la puissance publique. \n\nLa Direction G\u00e9n\u00e9rale du Tr\u00e9sor (Bercy) cherche :\n\ud83d\udc49Un(e) adjoint(e) au chef du p\u00f4le \"Z\u00e9ro carbone\" : https://bit.ly/407hmOD\n\ud83d\udc49Un(e) adjoint(e) chef du bureau Politique \u00e9conomique France en charge de la transition \u00e9cologique : https://bit.ly/3Hubtno\n\nLa Direction G\u00e9n\u00e9rale des Entreprises (Bercy) cherche :\n\ud83d\udc49 Un(e) directeur de projets \"D\u00e9carbonation, Comp\u00e9titivit\u00e9 et D\u00e9veloppement de l'Industrie\" : https://bit.ly/3wOtoiN\n\ud83d\udc49Un(e) \u00e9conomiste \u2013 d\u00e9carbonation, comp\u00e9titivit\u00e9 et comp\u00e9tences dans l'industrie : https://bit.ly/3H9vHBz\n\ud83d\udc49Un(e) \u00e9conomiste \u2013 transition \u00e9cologique des services marchands : https://bit.ly/4066Mra\n\ud83d\udc49Un(e) \u00e9conomiste \u2013 comp\u00e9titivit\u00e9, la transition \u00e9cologique et les comp\u00e9tences : https://bit.ly/3Y0TACj\n\ud83d\udc49Un(e) charg\u00e9(e) de mission Transition \u00e9cologique transports-d\u00e9veloppement nouvelles mobilit\u00e9s : https://bit.ly/3kIbYkZ\n\nFrance Strat\u00e9gie cherche :\n\ud83d\udc49 Un(e) chef(fe) de projet au secr\u00e9tariat permanent de la Plateforme RSE : https://bit.ly/3WHSiea\n\nAu Haut Conseil pour le Climat l'offre du jour est pour :\n\ud83d\udc49 Un(e) charg\u00e9(e) de mission agriculture et alimentation : https://bit.ly/3ZVjh8W\n\nPlus g\u00e9n\u00e9ralement, les minist\u00e8res et les collectivit\u00e9s cherchent de plus en plus sur ces sujets climat-\u00e9nergie, \u00e0 savoir :\n\ud83d\udc49Ici des dizaines d'offres \"d\u00e9carbonation\" : https://lnkd.in/e9cDvwnA\n\ud83d\udc49Ici des dizaines d'offres \"climat\" : https://lnkd.in/eRWGRuH5\n\ud83d\udc49Ici des dizaines d'offres \"sobri\u00e9t\u00e9\" : https://lnkd.in/eBsy266J\n\nEnsuite on va passer au monde associatif.\n\nAu Shift Project nous recrutons :\n\ud83d\udc49 Un(e) charg\u00e9(e) de gestion administrative : https://lnkd.in/ed2AqeNM\n\ud83d\udc49 Un(e) responsable adjoint(e) Administration et Finances : https://lnkd.in/eqB_MJth\n\nBloom (association militant pour une p\u00eache durable) recrute :\n\ud83d\udc49 Un(e) responsable de campagne internationale avec profil ing\u00e9nieur sp\u00e9cialiste de la p\u00eache : https://bit.ly/3R3OVNC\n\nNB : Bloom et The Shift Project ont actuellement une collaboration et ce poste y est associ\u00e9.\n\nLe CJD - Centre des jeunes dirigeants - propose en alternance un poste de charg\u00e9(e) de projet transition VTE Vert : https://bit.ly/3wylpGa\n\nEnfin, dans le monde priv\u00e9, charit\u00e9 bien ordonn\u00e9e etc, c'est \u00e0 Carbone 4 qu'il y a une dizaine de postes \u00e0 pourvoir qui sont d\u00e9crits sur https://lnkd.in/dxzysp75\n\nBonne chance !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7024641172417474561,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7024641174925664256,urn:li:activity:7024641174925664256,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 167, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7024641174925664256,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7024641174925664256,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7024641174925664256", + "threadId": "activity:7024641174925664256", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024641174925664256", + "urn": "urn:li:activity:7024641174925664256", + "numComments": 222, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7024641174925664256", + "reactionTypeCounts": [ + { + "count": 3955, + "reactionType": "LIKE" + }, + { + "count": 263, + "reactionType": "PRAISE" + }, + { + "count": 197, + "reactionType": "APPRECIATION" + }, + { + "count": 83, + "reactionType": "EMPATHY" + }, + { + "count": 37, + "reactionType": "INTEREST" + }, + { + "count": 27, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7024641174925664256", + "numLikes": 4562, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024641174925664256", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4565, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7024289540320153600", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7024289540320153600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7024289540320153600)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_souverainet%C3%A9-et-ind%C3%A9pendance-%C3%A9nerg%C3%A9tique-activity-7024289540320153600-IgB-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7024289539351310336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7024289540320153600", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7024289539351310336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "Z0zxuJm7VdPppsDzKIhLSQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7932056655692603002", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676473141565?e=1677240000&v=beta&t=eu0XCViACOW3OmcNMdMo1Oc8nagNk1cGogLKuGag_R8", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676473141565?e=1677240000&v=beta&t=LCcxG_bm0l2EfOt2xYYrLcyiGpFI60bNB41xYGR3kvI", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676473141565?e=1677240000&v=beta&t=d09FP4HlB3D1gruUzRjAHlFka88cxAfTbfOehlBb7gQ", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676473141565?e=1677240000&v=beta&t=brf3LOZwWLz4uvm2fcHGo_7-PRQVV5bus1efMtQRcZE", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGQ_hdPORoVTw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5612499999999999 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7932056655692603002)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7932056655692603002)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "videos.assemblee-nationale.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : Mme Catherine MacGregor, directrice g\u00e9n\u00e9rale du groupe Engie ; M. Daniel Verwaerde, membre de l\u2019Acad\u00e9mie des technologies - Mardi 6 d\u00e9cembre 2022 on videos.assemblee-nationale.fr", + "actionTarget": "https://videos.assemblee-nationale.fr/video.12589032_638f56752774f.souverainete-et-independance-energetique-de-la-france--mme-catherine-macgregor-directrice-generale-6-decembre-2022" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "- \u00c0 16 heures: - Audition, ouverte \u00e0 la presse, de Mme Catherine MacGregor, Directrice g\u00e9n\u00e9rale du groupe Engie - \u00c0 18 heures: - Audition, ouverte \u00e0 la presse, de M. Daniel Verwaerde, ancien Administrateur g\u00e9n\u00e9ral du CEA, et Membre de l\u2019Acad\u00e9mie des..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : Mme Catherine MacGregor, directrice g\u00e9n\u00e9rale du groupe Engie ; M. Daniel Verwaerde, membre de l\u2019Acad\u00e9mie des technologies - Mardi 6 d\u00e9cembre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7024289539351310336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1379, + "length": 19, + "miniProfile": { + "firstName": "Catherine", + "lastName": "Fiamma MacGregor", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAABMcfABmsLl9zpQE2-syajg5lwtdTCOZjw", + "occupation": "Group CEO and Board Member at ENGIE", + "objectUrn": "urn:li:member:5009904", + "entityUrn": "urn:li:fs_miniProfile:ACoAAABMcfABmsLl9zpQE2-syajg5lwtdTCOZjw", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1608050700184?e=1681948800&v=beta&t=cxm9Ma0-2icVn2YAj5mrqFPOrNbwWKzpagc9-24weG4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1608050700184?e=1681948800&v=beta&t=FV3Kw5GJ8e_H3u0YUEctfp_JPq1kJXXr4Q1idjAyRjA", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQFrrX3rVRm71Q/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "catherine-fiamma-macgregor-3008171", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1608050753988?e=1681948800&v=beta&t=WG_rCAC0oM1_fHPqUSvzFpK6jOSm7FlgvHO6qZds1y0", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1608050753988?e=1681948800&v=beta&t=k5cdb5Lsgk7xvYkgBzPhYXRj6QYmeX5MUVGNkN3gV-8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1608050753988?e=1681948800&v=beta&t=i6_539fPpvXp8EVSsfA5EwYShkTNgNkjpXTUwTOZYRY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1608050753988?e=1681948800&v=beta&t=p5IqE_Qe_lIF3g6jypV_Sot3TbOLyvEVqRxDqrX5nsQ", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQGrYmTQGJfdXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "N5TTpQsvSYGkpAU6HGQgxw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "La \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\", c'est un peu le Thinkerview de l'\u00e9nergie du moment. Chaque personne qui passe sur le grill dispose d'une heure et demie minimum pour s'exprimer, et globalement les questions sont assez pr\u00e9cises (les r\u00e9ponses parfois un peu moins !).\n\nQuand on regarde la liste des \"auditionn\u00e9s\", il est facile de constater que globalement c'est l'\u00e9lectricit\u00e9 qui concentre l'essentiel du \"temps d'antenne\". Certes Patrick Pouyann\u00e9 est pass\u00e9 \"dire bonjour\", mais globalement on ne parle pas d'hydrocarbures dans cette enceinte \u00e0 proportion de leur importance dans l'ensemble de notre syst\u00e8me \u00e9nerg\u00e9tique.\n\nLors de cette audition de la patronne d'Engie, qui date du 6 d\u00e9cembre dernier, il a donc beaucoup \u00e9t\u00e9 question, sans surprise, de gaz. Qu'est-ce que que l'on y trouve ?\n\nD'abord, tr\u00e8s peu d'\u00e9changes ont port\u00e9 sur le pass\u00e9 de la DG d'Engie (qui a fait la quasi-totalit\u00e9 de sa carri\u00e8re dans l'amont p\u00e9trolier et gazier : https://bit.ly/3RfZwFd ) ou de son entreprise, alors que c'\u00e9tait le cas pour les autres \"auditionn\u00e9s\". Pourtant, avec le titre de cette commission d'enqu\u00eate, c'est bien du pass\u00e9 dont il est question ! Ont surtout \u00e9t\u00e9 abord\u00e9s les projets d'Engie et le potentiel de ceci ou cela \u00e0 l'avenir, ce qui est n\u00e9anmoins int\u00e9ressant quand m\u00eame, bien s\u00fbr.\n\nCatherine MacGregor affirme en particulier que le gaz fran\u00e7ais sera d\u00e9carbon\u00e9 \u00e0 20% en 2030 et totalement en 2045 (sans donner les volumes concern\u00e9s). Il y a 2 mani\u00e8res de faire du gaz d\u00e9carbon\u00e9 : la m\u00e9thanisation d'une part (par fermentation de biomasse renouvelable), et la production d'hydrog\u00e8ne d\u00e9carbon\u00e9 d'autre part (ce dernier pouvant ensuite \u00eatre utilis\u00e9 tel quel ou associ\u00e9 \u00e0 du carbone biog\u00e9nique pour faire des combustibles gazeux ou liquides).\n\nL'hydrog\u00e8ne d\u00e9carbon\u00e9 s'obtient soit par \u00e9lectrolyse avec de l'\u00e9lectricit\u00e9 d\u00e9carbon\u00e9e, soit par reformage du m\u00e9thane avec capture et s\u00e9questration de l'ensemble du CO2 \u00e9mis par le processus (voir https://bit.ly/3DgTyhr pour un rapide panorama).\n\nEn 2021, le seul gaz d\u00e9carbon\u00e9 vient de la m\u00e9thanisation et c'est 1% du gaz utilis\u00e9 en France (voir graphique en commentaire). La d\u00e9carbonation totale du gaz est donc un gros point d'interrogation qui, dans notre pays, fait l'objet de consid\u00e9rablement moins d'attention m\u00e9diatique que celle de l'\u00e9lectricit\u00e9. \n\nDans cette audition, le biogaz est qualifi\u00e9 d'\u00e9nergie \"locale\". C'est vrai pour le v\u00e9g\u00e9tal qui finira dans le m\u00e9thaniseur. Mais ce dernier est fait de m\u00e9taux qui ne sont pas locaux, et les cultures ou r\u00e9sidus de culture utilis\u00e9s pour la m\u00e9thanisation auront utilis\u00e9 des engrais, pas locaux, ou des tracteurs, qui ne le sont pas plus...\n\nOn retrouve ici la question de l'imbrication des \u00e9nergies, qui rend tr\u00e8s difficile de savoir quel potentiel sera r\u00e9ellement accessible quand (et si) la \"production ENR\" ne b\u00e9n\u00e9ficiera plus de la productivit\u00e9 industrielle globale amen\u00e9e par p\u00e9trole, gaz et charbon." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7024289539351310336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7024289540320153600,urn:li:activity:7024289540320153600,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 43, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7024289540320153600,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7024289540320153600,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7024289540320153600", + "threadId": "activity:7024289540320153600", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024289540320153600", + "urn": "urn:li:activity:7024289540320153600", + "numComments": 102, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7024289540320153600", + "reactionTypeCounts": [ + { + "count": 780, + "reactionType": "LIKE" + }, + { + "count": 174, + "reactionType": "INTEREST" + }, + { + "count": 53, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7024289540320153600", + "numLikes": 1022, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024289540320153600", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1022, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7023553958300250112", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7023553958300250112)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7023553958300250112)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pourquoi-la-france-produit-de-moins-en-moins-activity-7023553958300250112-1zJW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7023553957666922497", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7023553958300250112", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7023553957666922497", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "mX82yClmB9H/NwoEkd0Rzw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8497763868858623232", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676365567578?e=1677240000&v=beta&t=6sF3FLmOwaOxEAqjcG1XSbG_-JRchasA8sZlEJ4lbyw", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676365567578?e=1677240000&v=beta&t=JJ3h_B3P3ouBQgJZD7lqbOoG5c1nu1Zx0P3qy7lu9qg", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676365567578?e=1677240000&v=beta&t=Ji7uWHOOMG2Bkg_nl2rev0iV9CVdV4ci16BgXtqJ4Xs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676365567578?e=1677240000&v=beta&t=n3zsoXCj-sU1FbxUN2OSCZbY1uMFeBG8ndpLKCh1NIk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQFr8j9F7XOroA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8497763868858623232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8497763868858623232)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pourquoi la France produit de moins en moins de viande de boeuf by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/conso-distribution/pourquoi-la-france-produit-de-moins-en-moins-de-viande-de-boeuf-1899504" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pourquoi la France produit de moins en moins de viande de boeuf" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7023553957666922497,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans les \u00e9missions d'origine agricole, l'un des postes importants en France est le m\u00e9thane \u00e9mis par le cheptel bovin. Ce m\u00e9thane vient de la fermentation des v\u00e9g\u00e9taux dans la panse de ces grosses bestioles, et ressort sous forme de rots pour l'essentiel.\n\nA cela il faut rajouter les \u00e9missions des cultures fourrag\u00e8res le cas \u00e9ch\u00e9ant (ma\u00efs, soja, c\u00e9r\u00e9ales, pois...). Ces cultures engendrent des \u00e9missions de CO2 pour la fabrication des engrais, et des \u00e9missions de N2O (un gaz \u00e0 effet de serre 265 fois plus puissant par kg que le CO2) lors de l'\u00e9pandage de ces derniers. Le r\u00e9sultat est que manger un kg de boeuf conduit \u00e0 l'\u00e9mission de plusieurs dizaines de kg d'\u00e9quivalent CO2.\n\nOn pourrait donc se r\u00e9jouir de la baisse du cheptel \u00e9voqu\u00e9e par cet article des Echos, expliquant que, depuis 2016, il y a une tendance en ce sens. Sauf que cette \u00e9volution n'est pas du tout pilot\u00e9e, dans un contexte o\u00f9 les \u00e9leveurs verraient leurs revenus maintenus avec des prix unitaires qui augmentent, et des m\u00e9thodes qu montent en gamme. \n\nElle est subie, \u00e0 cause :\n- du non renouvellement des exploitations (de fait \u00e9leveur est un m\u00e9tier tr\u00e8s contraignant et peu r\u00e9mun\u00e9r\u00e9)\n- de la hausse des couts (\u00e9nergie donc engrais, aliments...).\n\nMais en face les consommateurs n'ont pas modifi\u00e9 leurs habitudes alimentaires. La cons\u00e9quence est donc une hausse des importations, et par ailleurs une constance de l'empreinte carbone (pour \"la plan\u00e8te\", la situation n'a pas chang\u00e9). \n\nDans le m\u00eame temps, les consommateurs mangent de moins en moins de fruits et l\u00e9gumes, en particulier les jeunes : selon le pr\u00e9sident de l'Interprofession des fruits et l\u00e9gumes, les personnes de moins de 35 ans en mangent 4 fois moins que leurs grands parents (https://bit.ly/3Xwb7T5 ).\n\nIl y a donc la th\u00e9orie et il y a les faits. En th\u00e9orie, il faudrait que nous mangions plus de v\u00e9g\u00e9taux et moins de viande, et il faudrait que cela se fasse dans un contexte o\u00f9 les exploitants ne sont pas les premiers p\u00e9nalis\u00e9s par cette \u00e9volution. Rappelons que les exploitants agricoles, aujourd'hui, repr\u00e9sentent 2% du PIB, ce qui signifie que la production des denr\u00e9es agricoles brutes repr\u00e9sente de l'ordre de 2% du budget des m\u00e9nages. C'\u00e9tait plus proche du tiers il y a un si\u00e8cle !\n\nDans les faits, nous mangeons toujours autant de viande (et de plus en plus dans des produits transform\u00e9s) et de moins en moins de v\u00e9g\u00e9taux directement utilisables, et par ailleurs il y a de plus en plus de produits \"industriels\" (dont les boissons) et beaucoup trop de sucre.\n\nId\u00e9alement, il faudrait que le cheptel diminue dans un contexte bien diff\u00e9rent : que des \u00e9leveurs aussi nombreux g\u00e8rent des troupeaux plus petits et mieux valoris\u00e9s, et cela dans un contexte o\u00f9 la population modifie ses habitudes alimentaires pour que ce ne soient pas des importations qui prennent le relais (ce qui se passe aussi dans la volaille). Un sujet de plus o\u00f9 il faudrait se creuser un peu plus les m\u00e9ninges !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7023553957666922497,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7023553958300250112,urn:li:activity:7023553958300250112,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 189, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7023553958300250112,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7023553958300250112,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7023553958300250112", + "threadId": "activity:7023553958300250112", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023553958300250112", + "urn": "urn:li:activity:7023553958300250112", + "numComments": 365, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7023553958300250112", + "reactionTypeCounts": [ + { + "count": 3375, + "reactionType": "LIKE" + }, + { + "count": 516, + "reactionType": "INTEREST" + }, + { + "count": 251, + "reactionType": "MAYBE" + }, + { + "count": 64, + "reactionType": "PRAISE" + }, + { + "count": 37, + "reactionType": "APPRECIATION" + }, + { + "count": 18, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7023553958300250112", + "numLikes": 4261, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023553958300250112", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4262, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 Edited \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7023197816785129472", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7023197816785129472)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7023197816785129472)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_hydrog%C3%A8ne-industrie-macron-et-scholz-relancent-activity-7023197816785129472-ANEu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7023197815887548416", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7023197816785129472", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7023197815887548416", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "6x1bjkzXCFEpRifVHaQOrQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8856854701579573586", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675735775647?e=1677240000&v=beta&t=RY2WBZLCYbQkDxpQzKRDRAzMvcamjaEKNC1uE_J6l_E", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675735775648?e=1677240000&v=beta&t=4ZTgz6wq7E-tbnuE03FyuM5W80nTrp9VA6vrwx5oOVQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675735775648?e=1677240000&v=beta&t=USW9bZW3Yl4lUcNtlLTePM6GDSGjjkFHDiu9VswbhOc", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675735775648?e=1677240000&v=beta&t=jIjKyRvV8uLzeriGk7CY_cyO2srdQqDxunVJoWV94YM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGX80IoBXcWyw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8856854701579573586)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8856854701579573586)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Hydrog\u00e8ne, industrie : Macron et Scholz relancent le couple franco-allemand by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/macron-et-scholz-reaffirment-lamitie-indestructible-entre-la-france-et-lallemagne-1899434" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Hydrog\u00e8ne, industrie\u00a0: Macron et Scholz relancent le couple franco-allemand" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7023197815887548416,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s avoir jet\u00e9 \u00e0 la poubelle une partie de son parc de production \u00e9lectrique d\u00e9carbon\u00e9, l'Allemagne compte d\u00e9sormais sur celui \u00e0 construire \"chez les autres\" pour se fournir en hydrog\u00e8ne \"vert\", c'est-\u00e0-dire produit avec de l'\u00e9lectricit\u00e9 d'origine renouvelable.\n\nDans les diverses annonces que j'ai vues passer sur cette \"strat\u00e9gie\" allemande, il ne figure jamais la r\u00e9ponse aux questions suivantes, qui me semblent pourtant un peu centrales dans l'affaire :\n\n- le nucl\u00e9aire \u00e9tant hors jeu pour nos voisins, pourquoi serait-il plus facile de construire des \u00e9oliennes et des panneaux solaires hors d'Allemagne plut\u00f4t que dans ce pays pour disposer d'\u00e9lectricit\u00e9 bas carbone ?\n\n- les pays d'Afrique du Nord, ou d'autres \"bien insol\u00e9s\", ou \"bien vent\u00e9s\", devront d\u00e9velopper des ENR pour d\u00e9carboner leur propre mix \u00e9lectrique. Pourquoi les premi\u00e8res \u00e9oliennes et les premiers panneaux solaires au sein de ces pays devraient prioritairement servir \u00e0 d\u00e9carboner l'Allemagne plut\u00f4t que leur \u00e9conomie domestique ?\n\n- le rendement de chaine est faible : l'\u00e9lectrolyse \u00e0 partir d'\u00e9lectricit\u00e9 a un rendement de l'ordre de 70% et la liqu\u00e9faction + transport de H2 un rendement de l'ordre de 50% (et je ne connais pas celui de la \"regaz\u00e9ification\" de l'hydrog\u00e8ne). Si on passe par le m\u00e9thane ou l'ammoniac on \u00e9conomise les pertes de liqu\u00e9faction mais on perd l'\u00e9nergie n\u00e9cessaire \u00e0 la synth\u00e8se de CH4 ou NH3. Il faut donc doubler (et peut-\u00eatre plus) la production \u00e9lectrique par rapport \u00e0 une production locale utilis\u00e9e en direct. Pourquoi cela \"tiendrait\" physiquement et \u00e9conomiquement \u00e0 long terme, au surplus dans un monde o\u00f9 les bateaux transportant m\u00e9thane et ammoniac devront utiliser une partie de la cargaison comme carburant puisqu'il n'y a plus droit au p\u00e9trole ?\n\nSortir d'un d\u00e9bat sur l'\u00e9nergie demande toujours de manipuler des chiffres. Lorsqu'elle relaie les annonces gouvernementales, il serait souhaitable que la presse accompagne ces derni\u00e8res de calculs d'ordre de grandeur pour que l'on comprenne ce qui est r\u00e9aliste (ou pas) et \u00e0 quel horizon de temps pour les annonces en question. Si cela conduit \u00e0 prendre quelques jours pour publier un article, le gain en valeur ajout\u00e9e me semble largement justifier le d\u00e9lai.\n\nA tout le moins, la m\u00eame presse pourrait accompagner l'annonce des questions que cela pose. Cela \u00e9viterait, le cas \u00e9ch\u00e9ant, de perdre du temps \u00e0 courir derri\u00e8re des chim\u00e8res, ce qui, quand on est dans une course contre la montre, est un moyen garanti de faire son propre malheur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7023197815887548416,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7023197816785129472,urn:li:activity:7023197816785129472,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 182, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7023197816785129472,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7023197816785129472,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7023197816785129472", + "threadId": "activity:7023197816785129472", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023197816785129472", + "urn": "urn:li:activity:7023197816785129472", + "numComments": 285, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7023197816785129472", + "reactionTypeCounts": [ + { + "count": 3160, + "reactionType": "LIKE" + }, + { + "count": 420, + "reactionType": "INTEREST" + }, + { + "count": 224, + "reactionType": "MAYBE" + }, + { + "count": 120, + "reactionType": "PRAISE" + }, + { + "count": 20, + "reactionType": "EMPATHY" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7023197816785129472", + "numLikes": 3962, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023197816785129472", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3985, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7022876021402042368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7022876021402042368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7022876021402042368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-2011-%C3%A0-une-%C3%A9poque-o%C3%B9-le-gaz-russe-ne-activity-7022876021402042368-GCwD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7022876020517031937", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7022876021402042368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7022876020517031937", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "8RR4EUwD12k80Z1w5ro7+w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHnH9Ao0zcrbA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHnH9Ao0zcrbA", + "artifacts": [ + { + "width": 916, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1674384120996?e=1679529600&v=beta&t=Oi2195liGNQTl-VwNo6eX4R4bMyHtKAjwgX5nA5Y_Qc", + "expiresAt": 1679529600000, + "height": 612 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1674384121145?e=1679529600&v=beta&t=h9Zctk9OuQ88-__5OAeOwQ2R_MczqrnxfCejDQrBaV8", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 916, + "fileIdentifyingUrlPathSegment": "1280/0/1674384121145?e=1679529600&v=beta&t=yzqvYxDNzEjtatFBbYCZIhkss8qFP0S6VD9-PxE3Zr4", + "expiresAt": 1679529600000, + "height": 612 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1674384121145?e=1679529600&v=beta&t=puHSg4Oik6-wAeN9mQVc84Os0gu4PXYrkEiZAYUaudA", + "expiresAt": 1679529600000, + "height": 321 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1674384121145?e=1679529600&v=beta&t=FQSNdAR-Nt3SD6t3AtGm6gUPf49kXYv8PBVdVUMBqTI", + "expiresAt": 1679529600000, + "height": 107 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1674384121145?e=1679529600&v=beta&t=Xiweh-0ed5q5o5mE2Zt719W99cAowF4vS03Ji9LmfEA", + "expiresAt": 1679529600000, + "height": 534 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHnH9Ao0zcrbA/feedshare-shrink_" + }, + "displayAspectRatio": 0.6681222707423581 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7022876020517031937,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 2011, \u00e0 une \u00e9poque o\u00f9 le gaz russe ne faisait pas la une de l'actualit\u00e9, la France a interdit la fracturation hydraulique, mettant ainsi un terme \u00e0 toute exploitation potentielle du gaz dit de schiste sur notre sol. Avons nous \u00e0 l'\u00e9poque supprim\u00e9 une marge de manoeuvre importante pour continuer \u00e0 consommer du gaz ?\n\nC'est la question que j'ai trait\u00e9e dans ma chronique diffus\u00e9e hier matin sur RTL : https://bit.ly/3D5jqNe\n\nPour produire ce type de gaz il faut :\n\n- que le sous-sol comporte une roche m\u00e8re, c'est \u00e0 dire une formation g\u00e9ologique o\u00f9 se sont form\u00e9s des hydrocarbures liquides et gazeux (https://bit.ly/2RsaUS6 ). C'est le cas chez nous.\n\n- que des hydrocarbures y soient toujours pr\u00e9sents. Or, en France, une large partie a tr\u00e8s certainement migr\u00e9 vers les roches-r\u00e9servoir de la Mer du Nord et du bassin aquitain, et il n'y a plus beaucoup de gaz dans la roche m\u00e8re (ce que dit Patrick Pouyann\u00e9 lors d'une audition r\u00e9cente devant une commission d'enqu\u00eate parlementaire : https://bit.ly/3XQMSPd )\n\n- que la roche m\u00e8re soit fracturable (elle peut \u00eatre trop \"molle\" pour cela, comme en Pologne qui a essay\u00e9 pour de vrai)\n\n- qu'il y ait l'espace en surface pour mettre tous les quelques kilom\u00e8tres une installation qui ressemble \u00e0 ce qu'il y a sur la photo (avec les pistes d'acc\u00e8s qui vont avec et qui sont parcourues par des norias de camions pour acheminer l'eau et le sable, et \u00e9vacuer le gaz ou le p\u00e9trole) \n\n- comme la dur\u00e9e de vie d'un puits est faible, il faut qu'il y ait une industrie du forage apte \u00e0 faire en permanence beaucoup de trous (les USA forent environ 100.000 puits par an) qui n'existe pas en Europe\n\nUn dernier point est central : le droit. Aux USA, les ressources mini\u00e8res pr\u00e9sentes sous le sol appartiennent au propri\u00e9taire du sol. Il suffit donc \u00e0 ce dernier de toper avec un exploitant pour que les op\u00e9rations d\u00e9marrent. \n\nEn France, les ressources mini\u00e8res appartiennent \u00e0 l'Etat (j'ai bien peur d'avoir invent\u00e9 dans ma chronique une limite de 10 m\u00e8tres qui n'existe pas ! Heureusement ca ne change pas la suite). \n\nDe ce fait, si vous ou moi avons du gaz (ou du plomb, ou de l'or, ou du lithium) sous notre terrain, nous ne pouvons pas en confier l'extraction \u00e0 un op\u00e9rateur avec partage des recettes : c'est l'Etat qui en est propri\u00e9taire et qui seul peut en attribuer la concession \u00e0 une entreprise. Aux USA, en pareil cas le propri\u00e9taire du terrain devient mon\u00e9tairement riche, alors qu'en France il se fait exproprier !\n\nPour d\u00e9marrer une exploitation \u00e0 large \u00e9chelle de gaz de schiste chez nous, il faudrait donc une concession mini\u00e8re par puits ou ensemble de puits, avec \u00e0 chaque fois des recours possibles \u00e9videmment : il y en aurait pour plus d'une d\u00e9cennie. \n\nEn conclusion, m\u00eame si la fracturation hydraulique \u00e9tait r\u00e9-autoris\u00e9e, le \"gaz de schiste\" ne pourrait pas du tout compenser le d\u00e9clin des importations russes en Europe. Mais le gaz fossile, dont l'usage \u00e9met du CO2, doit dispara\u00eetre d'ici 2050, ce n'est pas vraiment un drame." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7022876020517031937,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7022876021402042368,urn:li:activity:7022876021402042368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 65, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7022876021402042368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7022876021402042368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7022876021402042368", + "threadId": "activity:7022876021402042368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022876021402042368", + "urn": "urn:li:activity:7022876021402042368", + "numComments": 116, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7022876021402042368", + "reactionTypeCounts": [ + { + "count": 733, + "reactionType": "LIKE" + }, + { + "count": 167, + "reactionType": "INTEREST" + }, + { + "count": 64, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7022876021402042368", + "numLikes": 978, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022876021402042368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 981, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7022523538767065088", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7022523538767065088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7022523538767065088)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-pr%C3%A9sident-r%C3%A9pond-%C3%A0-vos-questions-sur-l%C3%A9cologie-activity-7022523538767065088-vcvG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7022523537882001408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7022523538767065088", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7022523537882001408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "PGo/wQtbC/WLw4CzVb/H5w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7813238101893236222", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675718107712?e=1677240000&v=beta&t=tTycSPvq-2cJXqlpoeDYJ-esbvLOS6McsW9PiXCnVhM", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675718107712?e=1677240000&v=beta&t=TGtQVfiZEIEadSEbMen9q5u7hD1PL7U2zyaE9Yns4nI", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675718107712?e=1677240000&v=beta&t=_98YHkqRJl0oPCYH3RRSbGLGaKiE_c5ocf8I6jJNTsQ", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675718107712?e=1677240000&v=beta&t=F-XZ1R-rGoJ-24aUumltjT-4Za3EFwA401Jb1FJMGjI", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHXUyrP0HNczw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7813238101893236222)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7813238101893236222)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "elysee.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Pr\u00e9sident r\u00e9pond \u00e0 vos questions sur l'\u00e9cologie, \u00e9pisode 3. by elysee.fr", + "actionTarget": "https://www.elysee.fr/emmanuel-macron/2023/01/17/le-president-repond-a-vos-questions-sur-lecologie-episode-3" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Pr\u00e9sident r\u00e9pond \u00e0 vos questions sur l'\u00e9cologie, \u00e9pisode 3." + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7022523537882001408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "9YN2WblxQxq9TsrVgb7Q+g==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Emmanuel Macron r\u00e9pond \u00e0 vos questions sur l'\u00e9cologie, \u00e9pisode 3. Je viens de regarder cette courte vid\u00e9o (17 minutes). Ce format a le m\u00e9rite de traiter de questions d\u00e9tour\u00e9es, ce qui rend la critique (que j'esp\u00e8re constructive) circonstanci\u00e9e. Voici quelques commentaires.\n\n- sur le \"qui aurait pu pr\u00e9voir\" : \"on\" pouvait mettre dans le discours de voeux la pr\u00e9cision donn\u00e9e dans cette vid\u00e9o (que ce qui \u00e9tait impr\u00e9visible \u00e9tait la vitesse d'\u00e9volution) et qui levait toute ambiguit\u00e9. Y avoir pens\u00e9 sans l'avoir fait est hautement improbable et il reste toujours \u00e0 savoir pourquoi...\n\n- l'Elys\u00e9e a demand\u00e9 aux 50 sites industriels les plus \u00e9metteurs en France de diviser leurs \u00e9missions par 2 en 10 ans. Il s'agit essentiellement d'industrie lourde (acier, chimie, ciment). Cette derni\u00e8re a besoin de d\u00e9ployer des technologies nouvelles (hydrog\u00e8ne produit par \u00e9lectrolyse, capture et s\u00e9questration du CO2, recyclage chimique) pour baisser ses \u00e9missions de plus de 30% (voir le plan de transformation de l'\u00e9conomie fran\u00e7aise : https://bit.ly/3WqangU ). Cela demande que le pays fasse des investissements de son c\u00f4t\u00e9 (production \u00e9lectrique d\u00e9carbon\u00e9e pour l'\u00e9lectrolyse, organisation de la collecte de mat\u00e9riaux \u00e0 recycler pour les industriels...) qui doivent \u00eatre au rendez vous dans les temps impartis. Cela demande aussi une mani\u00e8re d'obliger les investissements des industriels pour y parvenir. Pour le moment le plan d'ensemble qui le garantisse n'est pas sur la table.\n\n- La \"taxe carbone aux fronti\u00e8res\" n'est pas une taxe (en pratique les importateurs devront acheter des quotas et le prix de ces derniers n'est pas connu \u00e0 l'avance), et surtout ce m\u00e9canisme ne s'appliquera pas, dans un premier temps, \u00e0 l'essentiel des produits import\u00e9s (il s'appliquera en gros aux \"commodit\u00e9s\" : acier, mat\u00e9riaux chimiques de base, ciment). \n\n- la r\u00e9ponse \u00e0 la question \"que faites vous pour le climat\" liste quelques actions dispers\u00e9es, mais ne donne aucune vision d'ensemble (existe-t-elle ?).\n\n- sur le plastique les mesures essentielles sont du c\u00f4t\u00e9 amont (moins d'emballages, plus de de recyclage, etc) \n\n- la for\u00eat doit augmenter sa capacit\u00e9 comme puits tout en contribuant \u00e0 plus d'usages aval, et cela dans un contexte d'adversit\u00e9 climatique croissante. Organiser cela demande des comp\u00e9tences et un plan d'ensemble qui est pour le moment sont plut\u00f4t inexistants c\u00f4t\u00e9 Etat. Ca ne se r\u00e9sume pas \u00e0 \"planter des arbres\".\n\n- la r\u00e9ponse sur les ZFE \u00e9voque des \"solutions\" qui ne seront pas d\u00e9ploy\u00e9es \u00e0 l'\u00e9chelle - voire ne le seront jamais - au moment de l'installation de ces zones. \n\nPersonne ne travaillant seul, pas plus notre pr\u00e9sident que les autres, il est dommage qu'aucune r\u00e9ponse ne parle de la mise \u00e0 niveau de l'\u00e9quipe \u00e9lys\u00e9enne (https://bit.ly/2TcaAU9 ) sur ces sujets. Il me semble qu'il y a l\u00e0 une \"m\u00e8re de toutes les mesures\"." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7022523537882001408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7022523538767065088,urn:li:activity:7022523538767065088,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 74, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7022523538767065088,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7022523538767065088,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7022523538767065088", + "threadId": "activity:7022523538767065088", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022523538767065088", + "urn": "urn:li:activity:7022523538767065088", + "numComments": 112, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7022523538767065088", + "reactionTypeCounts": [ + { + "count": 1231, + "reactionType": "LIKE" + }, + { + "count": 112, + "reactionType": "INTEREST" + }, + { + "count": 60, + "reactionType": "MAYBE" + }, + { + "count": 38, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7022523538767065088", + "numLikes": 1455, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022523538767065088", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1463, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7022131882947407872", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7022131882947407872)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7022131882947407872)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_1973-et-2008-premi%C3%A8res-crises-%C3%A9cologiques-activity-7022131882947407872-AjAs?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7022131881886248960", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7022131882947407872", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7022131881886248960", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "g3Ddffq4l/wSUFspQatQzA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8326292110930180784", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676272478778?e=1677240000&v=beta&t=AZRqA2grv193oYMxVGbEZGQfBmV7nVbgaQVw5iXKktE", + "expiresAt": 1677240000000, + "height": 725 + }, + { + "width": 883, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676272478778?e=1677240000&v=beta&t=7Dq-8kH7JcpEEKaB4wVZsdeOyDyC8mzVLApS2mpHVDw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676272478778?e=1677240000&v=beta&t=-IjAVqsWqa4iNOWh5pEdD61dh9R1HYKzWgxppQ60r3o", + "expiresAt": 1677240000000, + "height": 145 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676272478778?e=1677240000&v=beta&t=M_c4QuIERWmG6JVGnD8EAIzHItRVybRbfHK6d5Y11AQ", + "expiresAt": 1677240000000, + "height": 435 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEHE4OHtSnMnQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.90625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8326292110930180784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8326292110930180784)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 21 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: 1973 et 2008, premi\u00e8res crises \u00e9cologiques des \u00ab limites \u00e0 la croissance \u00bb ? by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/blog/petrole/2023/01/18/1973-et-2008-premieres-crises-ecologiques-des-limites-a-la-croissance/#_ftn1" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "1973 et 2008, premi\u00e8res crises \u00e9cologiques des \u00ab limites \u00e0 la croissance \u00bb ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7022131881886248960,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1077, + "length": 18, + "miniProfile": { + "firstName": "Matthieu", + "lastName": "Auzanneau", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAA2LO4UB7ks-me882mrEhMLuJ2ZBEpiaEbY", + "occupation": "Directeur du Shift Project", + "objectUrn": "urn:li:member:227228549", + "entityUrn": "urn:li:fs_miniProfile:ACoAAA2LO4UB7ks-me882mrEhMLuJ2ZBEpiaEbY", + "publicIdentifier": "matthieu-auzanneau-00512264", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1676289970483?e=1677240000&v=beta&t=myga6sAPvVyeGpm5LCDRWoTkGvnv6JopDw00RoS8VLg", + "expiresAt": 1677240000000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1676289970483?e=1677240000&v=beta&t=I2UeR-BHRgFXLNlkjKerVCtXsT4xJhqPL2-IBDilx0M", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1676289970483?e=1677240000&v=beta&t=NGjxeEOMQT2OBVSe2Iq8A5NgnQU_KwcGe2VmH_t1-3A", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1676289970483?e=1677240000&v=beta&t=c-bzWYW8YWjyis4tmdkXYzlqvfGIA24nSV_baGgrQoQ", + "expiresAt": 1677240000000, + "height": 100 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E35AQFMUHwrYWXYGw/profile-framedphoto-shrink_" + } + }, + "trackingId": "37L3h9sXQ1CMz9nMTZZDLQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2060, + "length": 14, + "miniProfile": { + "firstName": "Michel", + "lastName": "LEPETIT", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAPCu2sBs1ZQWNfIFizcuo9YmjS4ot4sg8A", + "occupation": "Pr\u00e9sident de Global Warning ; Vice-Pr\u00e9sident de The Shift Project", + "objectUrn": "urn:li:member:63093611", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAPCu2sBs1ZQWNfIFizcuo9YmjS4ot4sg8A", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1523477310682?e=1681948800&v=beta&t=ue8_LPuhRYqLcBHpJcVvAHohi2g7yB255issMI8WFWc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1523477310682?e=1681948800&v=beta&t=Nf1OLDZTwcTQonOrp4fD6E2Qj0J3DBw7d_B5qzeeY8o", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHnMKKx14ZNYw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "michel-lepetit", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1526301071435?e=1681948800&v=beta&t=v5P6-ITTB4DhRp7_YX2UEJKwU3kWrY-wKgAHgUHQP24", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1526301071435?e=1681948800&v=beta&t=dg22nwIhKRgV-MvnqXA-YzEeRF21yq4cJ9BfOayE4IE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1526301071435?e=1681948800&v=beta&t=Rq3d8xruf-AjJIxUGFu7BqWSyQztUW2r6v0qdSkqnuk", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1526301071435?e=1681948800&v=beta&t=wh6XyNIs4bp8DCawGp3mG3-isCp60iNvO_vs_2N54mk", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQHcVgn7JKsYxA/profile-displayphoto-shrink_" + } + }, + "trackingId": "NPchfLUgTCSVI/YX9GpgNw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans le premier chapitre de \"Dormez tranquilles jusqu'en 2100\", j'avais fait remarquer que la \"crise des subprime\" avait suivi 3 ans de stagnation de la production de p\u00e9trole accompagn\u00e9e d'une envol\u00e9e de son prix, et que la d\u00e9c\u00e9l\u00e9ration du PIB am\u00e9ricain avait pr\u00e9c\u00e9d\u00e9 la crise financi\u00e8re et non l'avait suivie.\n\nJ'en avais tir\u00e9 l'hypoth\u00e8se que cette crise financi\u00e8re \u00e9tait un sympt\u00f4me - comme la crise de 1973 - d'une rupture de pente sur l'approvisionnement p\u00e9trolier occidental. En 1973, le monde industriel - essentiellement compos\u00e9 de l'OCDE \u00e0 une \u00e9poque o\u00f9 les BRICS ne pesaient vraiment pas lourd dans l'\u00e9conomie mondiale - avait vu la hausse de son approvisionnement p\u00e9trolier passer brutalement de 8% par an \u00e0 une stagnation puis une hausse beaucoup plus modeste (l\u00e9g\u00e8rement sup\u00e9rieure \u00e0 1% par an).\n\nCela avait mis un tr\u00e8s gros coup de frein \u00e0 la croissance \u00e9conomique, et d\u00e9clench\u00e9 le d\u00e9but d'un ph\u00e9nom\u00e8ne qui n'a fait que prendre de l'ampleur depuis : l'endettement.\n\nDans un article beaucoup plus fouill\u00e9 sur le plan \u00e9conomique que ce que j'avais \u00e9crit \u00e0 l'\u00e9poque, Matthieu Auzanneau (par ailleurs directeur du Shift Project dans le civil :) ) revient sur cette \"crise des subprime\" et documente pourquoi, selon lui, elle est doublement d\u00e9termin\u00e9e par un probl\u00e8me d'approvisionnement p\u00e9trolier. \n\nLe premier facteur d\u00e9clencheur est le choc de 1973, qui a ralenti la croissance et engendr\u00e9 une augmentation constante des dettes dans les \u00e9conomies occidentales apr\u00e8s 1973. Ce que soutient Matthieu Auzanneau - et beaucoup d'autres sp\u00e9cialistes du p\u00e9trole avec lui - est que le choc de 1973 est une cons\u00e9quence directe du pic p\u00e9trolier conventionnel am\u00e9ricain de 1970, \u00e0 une \u00e9poque o\u00f9 les USA produisaient un quart de l'or noir mondial (\u00e0 la m\u00eame \u00e9poque l'URSS c'est 15% et l'Arabie Saoudite c'est 8%). \n\nLe deuxi\u00e8me facteur d\u00e9clencheur est le pic p\u00e9trolier conventionnel mondial en 2008. C'est sur cet \u00e9pisode qu'il s'attarde dans son analyse, qui est convergente avec celle d'autres sp\u00e9cialistes du lien entre p\u00e9trole et \u00e9conomie, comme par exemple Michel LEPETIT (chercheur associ\u00e9 au Laboratoire interdisciplinaire des \u00e9nergies de demain - https://bit.ly/3XLS5Yk ).\n\nMatthieu Auzanneau passe par une observation de l'\u00e9volution de l'inflation, du taux directeur de la banque centrale, ou encore du d\u00e9ficit commercial, qu'il relie de mani\u00e8re argument\u00e9e \u00e0 l'\u00e9volution de la production de p\u00e9trole. \n\nDans un travail fouill\u00e9 du Shift Project publi\u00e9 il y a un an (https://bit.ly/3R8e1uV ), nous avions soulign\u00e9 que les 16 principaux producteurs de p\u00e9trole de la plan\u00e8te \u00e9taient probablement pass\u00e9s par leur pic de production en 2018. \n\nSi les m\u00eames causes produisent les m\u00eames effets \u00e0 l'avenir, cela signifie que le paysage \u00e9conomique et financier de demain pourrait bien \u00eatre plus proche de la collection de chocs et de crises qu'un \"retour \u00e0 la normale\", et ce quelles que soient nos aspirations sur les retraites..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7022131881886248960,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7022131882947407872,urn:li:activity:7022131882947407872,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 28, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7022131882947407872,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7022131882947407872,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7022131882947407872", + "threadId": "activity:7022131882947407872", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022131882947407872", + "urn": "urn:li:activity:7022131882947407872", + "numComments": 37, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7022131882947407872", + "reactionTypeCounts": [ + { + "count": 455, + "reactionType": "LIKE" + }, + { + "count": 99, + "reactionType": "INTEREST" + }, + { + "count": 74, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7022131882947407872", + "numLikes": 637, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022131882947407872", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 637, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7021901658376806400", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7021901658376806400)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7021901658376806400)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-novembre-dernier-la-fondation-descartes-activity-7021901658376806400-jFOD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7021901657420505089", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7021901658376806400", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7021901657420505089", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "eNFREMMvDvLrJ1lGEKkJ9w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEBzmKbiVbR_A", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEBzmKbiVbR_A", + "artifacts": [ + { + "width": 914, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1674151813718?e=1679529600&v=beta&t=Xn--UUNyck6BIcyAAm0GeBl3RVSNzsCST2dTyLg1pY8", + "expiresAt": 1679529600000, + "height": 1526 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1674151814620?e=1679529600&v=beta&t=EAu4SK6om7DCLUCnq3PnIcm0V0PPTu5hDK_fpV2X9O0", + "expiresAt": 1679529600000, + "height": 33 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280/0/1674151814620?e=1679529600&v=beta&t=4H0uH9YP8w_w0RINnGVOTBN1BL9oZwxpV6Mm4rHFZT0", + "expiresAt": 1679529600000, + "height": 1526 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1674151814620?e=1679529600&v=beta&t=LyPZZP_uT3TfYvswNjUCIa9RmotU0HDYId_nGTBSRVQ", + "expiresAt": 1679529600000, + "height": 801 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1674151814620?e=1679529600&v=beta&t=HvHvuaU5Em4-lmXmjcRfBqnBfzZssdADnLJiucmrvjk", + "expiresAt": 1679529600000, + "height": 267 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1674151814620?e=1679529600&v=beta&t=xqDKGvyYkrh3WQNC8SoYf6VTnWd_wRfIlwDL64VsOxw", + "expiresAt": 1679529600000, + "height": 1336 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEBzmKbiVbR_A/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "timeline" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7021901657420505089,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En Novembre dernier, la Fondation Descartes a publi\u00e9 une \u00e9tude sur la mani\u00e8re dont les fran\u00e7ais(es) s'informent sur le changement climatique : https://bit.ly/3HqMQZ3 \n\nOn y apprend que le premier canal d'information sur la question est constitu\u00e9 des media g\u00e9n\u00e9ralistes, puis on va trouver l'entourage (proches et amis) et les r\u00e9seaux sociaux. \n\nDans notre pays (et si les r\u00e9ponses ont \u00e9t\u00e9 honn\u00eates :) ) ce ne sont donc pas ces r\u00e9seaux qui constituent le premier vecteur d'information.\n\nAlors qu'un autre graphique (en commentaire) montre que la plus grande cote de confiance est accord\u00e9e aux scientifiques qui travaillent sur la question, il est dommage de ne pas avoir mis dans la liste des r\u00e9ponses les sites des institutions scientifiques.\n\nMais l\u00e0 o\u00f9 ca devient farce, c'est que les media sont par ailleurs, juste avant les r\u00e9seaux sociaux, les modes d'informations que la population consid\u00e8re comme les moins fiables ! Seulement 16% de la population d\u00e9clare en effet leur faire un peu ou beaucoup confiance de mani\u00e8re g\u00e9n\u00e9rale.\n\nCe grand \u00e9cart entre habitudes (puisque nous continuons \u00e0 utiliser les media) et confiance n'est pas une nouveaut\u00e9. La bonne question est de savoir pourquoi c'est une constante que la population aille s'informer essentiellement aupr\u00e8s d'entit\u00e9s \u00e0 qui elle n'accorde que peu de cr\u00e9dit, alors que d\u00e9sormais les organismes \u00e9metteurs d'information le font en direct via leurs sites internet.\n\nTentons une explication : le media vient \u00e0 vous, alors que d'utiliser internet demande d'aller \u00e0 l'information (et donc de savoir naviguer dans un univers plus complexe). En fait, ce que dit probablement cet \u00e9cart, c'est que la population souhaite des interm\u00e9diaires qui feront le tri et la vulgarisation pour elle, mais n'est pas satisfaite de la mani\u00e8re dont les personnes qui assurent aujourd'hui cette fonction s'acquittent de la t\u00e2che l'essentiel du temps. \n\nD'o\u00f9 peut venir ce d\u00e9faut de confiance contre des media qui sont par ailleurs utilis\u00e9s parce que c'est \"normal\" d'\u00e9couter l'information qui vient \u00e0 vous ?\n\nTentons \u00e0 nouveau une hypoth\u00e8se : nous avons tendance \u00e0 caler notre niveau de confiance sur la plus mauvaise surprise v\u00e9cue et non sur la moyenne de ce qui se passe : il suffit donc d'une fois o\u00f9 nous avons pris un media en flagrant d\u00e9lit d'incoh\u00e9rence, ou de m\u00e9connaissance d'un sujet que nous connaissons bien, et ensuite nous deviendrons m\u00e9fiants de fa\u00e7on habituelle.\n\nL'antidote \u00e0 cela est donc qu'un media ne d\u00e9roge jamais \u00e0 quelques r\u00e8gles simples :\n- ne pas traiter une information quand il n'y a pas le temps pour cela\n- bien comprendre qui est l\u00e9gitime pour s'exprimer sur quoi (\u00e9vite les incoh\u00e9rences)\n- \u00eatre transparent sur ce que l'on sait et ce que l'on ne sait pas\n- ne pas confondre les faits et les opinions (y compris la sienne), \n- ne pas confondre la ligne \u00e9ditoriale avec la r\u00e9gie publicitaire.\n\nUne d\u00e9mocratie qui fonctionne bien a besoin de media qui fonctionnent bien. Les houspiller pour les faire progresser est donc utile :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7021901657420505089,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7021901658376806400,urn:li:activity:7021901658376806400,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 46, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7021901658376806400,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7021901658376806400,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7021901658376806400", + "threadId": "activity:7021901658376806400", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021901658376806400", + "urn": "urn:li:activity:7021901658376806400", + "numComments": 76, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7021901658376806400", + "reactionTypeCounts": [ + { + "count": 624, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 61, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7021901658376806400", + "numLikes": 773, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021901658376806400", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 773, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 Edited \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7021435585357586432", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7021435585357586432)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7021435585357586432)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-charbon-de-l%C3%BCtzerath-met-lallemagne-face-activity-7021435585357586432-IoQI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7021435584514523136", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7021435585357586432", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7021435584514523136", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "V4gY7LuUE+hlnjrx4BSdxA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7497948053080086853", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676500910822?e=1677240000&v=beta&t=ovxYBKCUXocaVCTB7ImI60WKOxC85-TVBtS_EJaOKV4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676500910822?e=1677240000&v=beta&t=BRa3iBhwzujzRQmr9NXxpaRvJ6w0hxCvRo1tikC1cTk", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676500910822?e=1677240000&v=beta&t=dTCJFeVUZ4GevrQk3nO4ZgmtjMhrmnFgTxpFc3YoSTQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676500910822?e=1677240000&v=beta&t=dX-jtRUPX5fAKz_lxiiprWdW2-4aHc6ZB8BvQ-gDHOU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFOl7YXRszTzg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7497948053080086853)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7497948053080086853)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le charbon de L\u00fctzerath met l'Allemagne face \u00e0 ses contradictions by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/le-charbon-de-lutzerath-met-lallemagne-face-a-ses-contradictions-1897595" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le charbon de L\u00fctzerath met l'Allemagne face \u00e0 ses contradictions" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7021435584514523136,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Lorsque l'Allemagne a d\u00e9cid\u00e9 - et mis en application - sa sortie du nucl\u00e9aire (que l'on doit \u00e0 Schroeder - avant Fukushima - et non \u00e0 Merkel, contrairement \u00e0 ce qui est souvent dit ou \u00e9crit), d'aucuns s'\u00e9taient \u00e9mus que cela pourrait conduire \u00e0 recourir plus longtemps au charbon, conduisant en cela \u00e0 des \u00e9missions de CO2 suppl\u00e9mentaires - outre d'autres petits \u00e0-c\u00f4t\u00e9 de cette \u00e9nergie : particules fines (des milliers de morts pr\u00e9matur\u00e9s en Europe chaque ann\u00e9e), NOx, pollution des eaux de surface, montagnes de cendres (des milliers de tonnes par jour pour les plus grosses centrales) qui contiennent des m\u00e9taux lourds et des substances toxiques (arsenic, fluor...), et \u00e9videmment destruction totale des \u00e9cosyst\u00e8mes sur les dizaines de km2 d'emprise de l'excavation de lignite.\n\nA l'\u00e9poque d\u00e9j\u00e0, il \u00e9tait possible d'observer depuis le ciel les vastes \u00e9tendues (plusieurs kilom\u00e8tres de c\u00f4t\u00e9) des mines \u00e0 ciel ouvert de lignite, comme celle de Garzweiler, pr\u00e8s de Cologne : https://bit.ly/3Xlzfra (il y en a d'autres pas loin, dont une encore plus grande \u00e0 Hambach : https://bit.ly/3QNlhMo ), dont la cr\u00e9ation a conduit \u00e0 l'\u00e9vacuation d\u00e9finitive d'un peu moins de 100.000 personnes, avec destruction volontaire de leur habitat.\n\nMais tout cela n'aurait pas du arriver avec la substitution du charbon par le gaz, diront d'autres. A cela on peut r\u00e9pondre 2 choses : \n\n- cela serait encore moins arriv\u00e9 si l'Allemagne avait conserv\u00e9 son nucl\u00e9aire. Si on regarde l'\u00e9volution de la puissance pilotable chez nos voisins, elle est rest\u00e9e \u00e0 peu pr\u00e8s constante depuis 2002 : https://bit.ly/3w9Y4KH. Il y avait 22,4 GW de nucl\u00e9aire \u00e0 cette \u00e9poque et 20 GW de lignite. Aujourd'hui il reste 4 GW de nucl\u00e9aire : \u00e0 la place il pourrait ne rester que 2 GW de lignite... et l'agrandissement de L\u00fctzerath ne serait pas n\u00e9cessaire.\n\n- la d\u00e9pendance aux russes \u00e9tait un pari, et l'histoire nous a quand m\u00eame enseign\u00e9 que nos relations avec notre grand voisin n'ont pas toujours \u00e9t\u00e9 tranquilles. Ne pas envisager que ca puisse tourner vinaigre est quand m\u00eame gentiment impr\u00e9voyant.\n\nEn Europe, quand un \u00e9tat n'est pas assez disciplin\u00e9 sur le plan de l'\u00e9quilibre des comptes publics, il est th\u00e9oriquement susceptible de se voir infliger une amende par le Conseil, allant jusqu'\u00e0 0,5% du PIB (soit environ 10 milliards pour la France). Plus g\u00e9n\u00e9ralement, lorsque l'on entend \u00eatre r\u00e9ellement s\u00e9rieux sur le respect d'une obligation, il y a des sanctions en cas de non respect qui sont d'autant plus s\u00e9v\u00e8res que l'obligation \u00e0 respecter est importante.\n\nSi l'Europe \u00e9tait r\u00e9ellement s\u00e9rieuse sur le CO2, il y aurait un syst\u00e8me de sanctions pr\u00e9vu pour non respect d'un plafond d'\u00e9missions de CO2 par un pays donn\u00e9. Et cette sanction pourrait \u00eatre major\u00e9e lorsqu'un pays a fait l'exact inverse de ce qu'il pouvait physiquement faire pour respecter l'obligation." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7021435584514523136,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7021435585357586432,urn:li:activity:7021435585357586432,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 138, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7021435585357586432,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7021435585357586432,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7021435585357586432", + "threadId": "activity:7021435585357586432", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021435585357586432", + "urn": "urn:li:activity:7021435585357586432", + "numComments": 270, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7021435585357586432", + "reactionTypeCounts": [ + { + "count": 4064, + "reactionType": "LIKE" + }, + { + "count": 389, + "reactionType": "INTEREST" + }, + { + "count": 232, + "reactionType": "MAYBE" + }, + { + "count": 179, + "reactionType": "PRAISE" + }, + { + "count": 38, + "reactionType": "APPRECIATION" + }, + { + "count": 26, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7021435585357586432", + "numLikes": 4928, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021435585357586432", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4937, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7021023431466864640", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7021023431466864640)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7021023431466864640)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nappes-deau-souterraine-au-1er-janvier-2023-activity-7021023431466864640-MXp_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7021023430669955073", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7021023431466864640", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7021023430669955073", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "vHuw7/IlCaXfI+7SwK6h+w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8292823613674768012", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676468818461?e=1677240000&v=beta&t=03Qvbhkuvzt7Bn2t4VALKXdBV_ISKCBFLRXGumDU5tY", + "expiresAt": 1677240000000, + "height": 565 + }, + { + "width": 1132, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676468818461?e=1677240000&v=beta&t=yk5yCKeP8ZeRuYw0GCfkISF54XdKdw0xQk9kgIW-0Mk", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676468818461?e=1677240000&v=beta&t=Qlukaqg5zmF7GSCyulmwgB4CPCBZ1nszKHTWM7f3nbI", + "expiresAt": 1677240000000, + "height": 113 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676468818461?e=1677240000&v=beta&t=NL_xgG2sYgW6hbZzu03IhJlwL03Zs7iEyWFwZKDMdig", + "expiresAt": 1677240000000, + "height": 339 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF29HS5kKpu2g/articleshare-shrink_" + }, + "displayAspectRatio": 0.70625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8292823613674768012)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8292823613674768012)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "brgm.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nappes d'eau souterraine au 1er janvier 2023 | BRGM by brgm.fr", + "actionTarget": "https://www.brgm.fr/fr/actualite/communique-presse/nappes-eau-souterraine-au-1er-janvier-2023" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nappes d'eau souterraine au 1er janvier 2023 | BRGM" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7021023430669955073,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il pleut, donc il fait beau. Apr\u00e8s 2 mois d'automne (novembre et d\u00e9cembre), les trois quarts des nappes phr\u00e9atiques fran\u00e7aises ont encore tr\u00e8s soif. En effet, m\u00eame s'il a plu apr\u00e8s la fin octobre, il y a eu un tel d\u00e9ficit accumul\u00e9 avant que la situation d'ensemble reste d\u00e9ficitaire sur une large partie du pays, parfois tr\u00e8s fortement. \n\nAu surplus, fin octobre la v\u00e9g\u00e9tation \u00e9tait encore active \u00e0 cause d'un temps tr\u00e8s chaud, et les premi\u00e8res pluies de novembre ont donc \u00e9t\u00e9 alimenter les plantes et non les nappes. Il a aussi fallu humidifier des sols tr\u00e8s secs, ce qui a aussi utilis\u00e9 une partie de l'eau tomb\u00e9e qui n'est pas all\u00e9e jusqu'aux nappes.\n\nEnfin, lorsque les \u00e9pisodes de pr\u00e9cipitations ont \u00e9t\u00e9 intenses, une fraction a ruissel\u00e9 directement vers les rivi\u00e8res puis la mer, parce que l'infiltration dans un sol tr\u00e8s sec est plus difficile que dans un sol d\u00e9j\u00e0 un peu humidifi\u00e9. \n\nGlobalement, ce n'est pas maintenant que cette faiblesse du niveau des nappes est g\u00eanante. La v\u00e9g\u00e9tation est en dormance, l'agriculture ne pr\u00e9l\u00e8ve pas, et il reste de quoi alimenter les r\u00e9seaux d'eau potable le cas \u00e9ch\u00e9ant (https://lnkd.in/gG9eZM8 ), surtout que ce n'est pas non plus l'\u00e9poque de l'arrosage des pelouses et du remplissage des piscines.\n\nC'est au retour de la saison chaude que cela risque de poser probl\u00e8me. Si d'ici l\u00e0 la recharge n'a pas \u00e9t\u00e9 bonne (et donc qu'il n'y a pas eu suffisamment de ces d\u00e9pressions qui nous am\u00e8nent pluie et parfois vent, ce que nous appelons aujourd'hui \"mauvais temps\"), cela signifie que l'on abordera l'\u00e9t\u00e9 prochain - et ses possibles vagues de chaleur, puisque chaque \u00e9t\u00e9 offrira h\u00e9las l'occasion de battre le record pr\u00e9c\u00e9dent - avec moins d'eau pour l'agriculture, et pour les arbres quand ces derniers ont des racines qui vont jusqu'\u00e0 la nappe.\n\nL'\u00e9volution future d'une nappe est typiquement un processus qui a du mal \u00e0 \u00eatre mod\u00e9lis\u00e9 dans le cadre d'un climat qui se r\u00e9chauffe. Il est possible de faire des projections sur les pr\u00e9cipitations globales (sur une large zone) de l'ann\u00e9e, voire sur l'augmentation des \u00e9pisodes pluvieux intenses (moins bons pour l'infiltration dans le sol, \u00e0 pr\u00e9cipitations \u00e9gales, que des \u00e9pisodes continus), mais ensuite chaque g\u00e9ologie du sol est particuli\u00e8re, adjectif qui s'applique aussi aux usages locaux (qui d\u00e9pendent beaucoup des cultures et de la nature de la v\u00e9g\u00e9tation).\n\nPour autant, les tendances sont claires : il ne faudra pas venir se demander \"qui aurait pu pr\u00e9voir ?\". Il faut donc essayer au maximum d'imaginer ce que l'avenir peut nous r\u00e9server, pour limiter au mieux le risque de manquer de cette pr\u00e9cieuse ressource qu'est l'eau. Actuellement, faisons nous vraiment le maximum en ce sens ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7021023430669955073,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7021023431466864640,urn:li:activity:7021023431466864640,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 143, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7021023431466864640,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7021023431466864640,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7021023431466864640", + "threadId": "activity:7021023431466864640", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021023431466864640", + "urn": "urn:li:activity:7021023431466864640", + "numComments": 243, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7021023431466864640", + "reactionTypeCounts": [ + { + "count": 3850, + "reactionType": "LIKE" + }, + { + "count": 644, + "reactionType": "INTEREST" + }, + { + "count": 330, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "APPRECIATION" + }, + { + "count": 29, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7021023431466864640", + "numLikes": 4900, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021023431466864640", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4900, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7020332265222103041", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7020332265222103041)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7020332265222103041)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pourquoi-le-groupe-sud-ouest-sengage-face-activity-7020332265222103041-2RL5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7020332264400019456", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7020332265222103041", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7020332264400019456", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "DLaNcYpVLppq0W7bgo/KOw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7821471158464017771", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676296478581?e=1677240000&v=beta&t=i6maEpqNKW4utXPWggRacVOKTFO2PEZEd1EW37kQRd8", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676296478581?e=1677240000&v=beta&t=Vm46meJeSt1avBzC8cKY_dWHwg00PSlO8u7hwJhnVJg", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676296478581?e=1677240000&v=beta&t=_I_BiOg7KxA1PF1ovHqhkT7Owr-cB-2cc9Jf4fu1MBg", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676296478581?e=1677240000&v=beta&t=pXFFWqlE28w-qoNrdgfUy8TFphAaG9RiLok9-Ygja20", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEHZkdt_k19zQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7821471158464017771)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7821471158464017771)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "sudouest.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pourquoi le Groupe Sud Ouest s\u2019engage face aux enjeux climatiques et environnementaux by sudouest.fr", + "actionTarget": "https://www.sudouest.fr/declic-pourquoi-le-groupe-sud-ouest-s-engage-face-aux-enjeux-climatiques-et-environnementaux-13648961.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pourquoi le Groupe Sud Ouest s\u2019engage face aux enjeux climatiques et environnementaux" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7020332264400019456,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s The Guardian, qui est probablement le \"grand\" media europ\u00e9en qui a ouvert la voie, en proposant une rubrique \"crise climatique\" (https://lnkd.in/e8q7-6rG ) accessible d\u00e8s la homepage, et apr\u00e8s Radio France qui a pris l'engagement de former l'ensemble de sa r\u00e9daction aux enjeux climatiques, c'est au tour du groupe Sud-Ouest de publier une charte dans laquelle il affirme \"Les \u00e9diteurs du Groupe Sud Ouest s\u2019engagent \u00e0 inscrire les enjeux climatiques et environnementaux au c\u0153ur de leur production \u00e9ditoriale, en organisant des espaces de prise de parole et d\u2019\u00e9change constructifs, en documentant les enjeux locaux et en mettant en relief les connaissances scientifiques, avec rigueur, objectivit\u00e9 et ind\u00e9pendance\".\n\nSuivent 15 engagements, qui incluent la mise en place d'un conseil scientifique, la formation de la r\u00e9daction, la mise en place d'un bilan carbone et d'actions de sobri\u00e9t\u00e9 (y compris num\u00e9rique), l'origine du papier, ou encore le contenu publicitaire.\n\nEn lisant attentivement cette charte, on comprend \u00e9videmment que le Diable sera dans les d\u00e9tails, et en particulier dans l'ambition effective associ\u00e9e \u00e0 chacune des actions. On peut faire un bilan carbone et agir ensuite pour faire baisser ses \u00e9missions de 1% par an, de 5% par an, ou... les faire cro\u00eetre \"moins que plus\", en visant juste une baisse par exemplaire imprim\u00e9 ou diffus\u00e9 sur le serveur, tout en ayant un plan d'augmentation de la diffusion !\n\nSur la publicit\u00e9, l\u00e0 aussi toutes les nuances de gris sont possibles : Sud Ouest dit vouloir proposer des espaces gratuits aux associations, mais on peut imaginer des syst\u00e8mes plus dissuasifs pour la promotion de produits ou services lorsqu'ils vont avec des pressions plus importantes sur l'environnement. \n\nAvoir un encart pour promouvoir l'avion, une voiture, un mode de commerce ou des produits alimentaires \"\u00e9lev\u00e9s en carbone\" couterait donc plus cher que la promotion du march\u00e9 du coin, des v\u00e9los ou des livres.\n\nPour la formation, l\u00e0 aussi il y a un monde entre la demi-heure que le gouvernement a royalement accord\u00e9e au climat et les 150 heures minimum qui sont pr\u00e9conis\u00e9es pour les \u00e9tudiants du sup\u00e9rieur par The Shift Project. \n\nIl faut donc voir cette charte comme un premier pas \u00e9minemment bienvenu. Ce qu'il en adviendra ensuite dans les faits d\u00e9pendra essentiellement des personnes qui vont la mettre en oeuvre (\u00e0 commencer par le patron !), de l'accueil qui lui sera fait en interne et de la pression que mettront les salari\u00e9s, et \u00e9videmment de la r\u00e9ponse du lectorat, puisqu'un m\u00e9dia priv\u00e9 reste une entreprise commerciale qui a du mal \u00e0 agir si cela fait fuir les gens qui consomment l'information.\n\nPour favoriser le fait que toutes les \"parties prenantes\" soutiennent l'\u00e9volution, il sera utile d'avoir un syst\u00e8me d'indicateurs ad\u00e9quats et de r\u00e9guli\u00e8rement en rendre compte. Ca ne devrait pas faire peur \u00e0 des journalistes : c'est de l'information !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7020332264400019456,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7020332265222103041,urn:li:activity:7020332265222103041,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 49, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7020332265222103041,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7020332265222103041,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7020332265222103041", + "threadId": "activity:7020332265222103041", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020332265222103041", + "urn": "urn:li:activity:7020332265222103041", + "numComments": 82, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7020332265222103041", + "reactionTypeCounts": [ + { + "count": 1138, + "reactionType": "LIKE" + }, + { + "count": 73, + "reactionType": "INTEREST" + }, + { + "count": 63, + "reactionType": "MAYBE" + }, + { + "count": 38, + "reactionType": "PRAISE" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7020332265222103041", + "numLikes": 1339, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020332265222103041", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1339, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 Edited \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7020064089167036416", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7020064089167036416)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7020064089167036416)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_transports-jean-marc-jancovici-explique-activity-7020064089167036416-fg6a?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7020064088613351424", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7020064089167036416", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7020064088613351424", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "MOHJYd3O7rWtI2UDKAoM0A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7293133745184405373", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676153159732?e=1677240000&v=beta&t=MG8aQJJda8qiK7a3AmNFgnVmEIcosNBotIDLKff-7HA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676153159732?e=1677240000&v=beta&t=1eLnULUIfs6H8HgypCdA5nKjoYn5ZUolwxPufmVeM0c", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676153159732?e=1677240000&v=beta&t=OBtsdWdf6H9v8K69xA61nic8wKTbRL_YKPhJ3vRdcJ8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676153159732?e=1677240000&v=beta&t=oXRQR7DYUbG81Y8XH79mdA4-ElUOspRV6wPoaFGtMuA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHdKmBnBNhZ2w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7293133745184405373)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7293133745184405373)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Transports : Jean-Marc Jancovici explique l'importance de se mettre au v\u00e9lo by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900225118-transports-jean-marc-jancovici-explique-l-importance-de-se-mettre-au-velo" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Transports : Jean-Marc Jancovici explique l'importance de se mettre au v\u00e9lo" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7020064088613351424,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tou(te)s en selle ! Apparu \u00e0 la fin du 19\u00e8 si\u00e8cle, le v\u00e9lo a rapidement vu son emploi augmenter, et en 1925 il offrait en moyenne \u00e0 un fran\u00e7ais autant de km parcourus par jour que l'automobile (alors nettement moins r\u00e9pandue qu'actuellement, c'est clair !).\n\nMais depuis 1940 son usage plafonne. Aujourd'hui, un habitant du pays fait en moyenne plus de km en avion par an qu'en v\u00e9lo ! Pourtant d\u00e9velopper son usage procure de nombreux b\u00e9n\u00e9fices :\n- moins de CO2\n- moins de pollution\n- moins d'argent \u00e0 d\u00e9penser\n- depuis qu'il y a une assistance \u00e9lectrique, apte \u00e0 transporter enfants et courses, et aussi \u00e0 monter les c\u00f4tes, sans trop souffrir\n- en univers \"congestionn\u00e9\" (ville ou p\u00e9riurbain) pas beaucoup moins rapide qu'une voiture\n- meilleur pour la sant\u00e9\n\nVu comme cela, on se demande vraiment pourquoi ce mode de transport ne repr\u00e9sente pas l'essentiel des km parcourus pour la mobilit\u00e9 dite du quotidien (travail, courses, \u00e9cole etc), qui repr\u00e9sente 2/3 des km faits annuellement en voiture, g\u00e9n\u00e9ralement tr\u00e8s peu remplie (1,1 personne en taux moyen). O\u00f9 est le probl\u00e8me alors ?\n\nLe premier d'entre eux est g\u00e9n\u00e9ralement l'ins\u00e9curit\u00e9 potentiellement ressentie par le ou la cycliste qui chemine au milieu de \"beaucoup plus lourd que son v\u00e9lo\". La cl\u00e9 du d\u00e9veloppement du v\u00e9lo s'appelle donc des pistes cyclables. Et des pistes exclusivement cyclables ! \n\nLes itin\u00e9raires mixtes (pi\u00e9tons et v\u00e9los) n'ont pas plus de pertinence que si on autorisait les pi\u00e9tons \u00e0 descendre sur la chauss\u00e9e dans les rues o\u00f9 la vitesse est limit\u00e9e \u00e0 30. Comme je l'\u00e9voque dans cette chronique, il n'y a rien de commun entre un(e) cycliste allant \u00e0 son travail \u00e0 25 ou 30 km/h et un pi\u00e9ton qui d\u00e9ambule avec enfants ou chien, ou en regardant son t\u00e9l\u00e9phone...\n\nLe deuxi\u00e8me d'entre eux est la possibilit\u00e9 de garer son v\u00e9lo \u00e0 destination (qui peut \u00eatre le lieu d'acc\u00e8s \u00e0 un autre moyen de transport) ou chez soi sans se le faire voler. \n\nLe 3\u00e8 probl\u00e8me est que, l'automobile coutant plus cher, les constructeurs de voiture gagnent beaucoup d'argent que ceux de v\u00e9los, et donc emploient plus de monde. Cela en fait des interlocuteurs plus \u00e9cout\u00e9s des pouvoirs publics... qui tendent \u00e0 maintenir le syst\u00e8me.\n\nOn pourrait ajouter un 4\u00e8 \u00e9l\u00e9ment : la voiture est un objet de statut social. Il faudrait qu'une jolie paire de mollets le devienne un peu plus !\n\nLa voirie n'est pas pay\u00e9e par les automobilistes mais par les contribuables. Un cycliste l'est autant qu'un conducteur d'un engin d'une tonne ou plus. A l'heure de l'imp\u00e9rieuse d\u00e9carbonation, il serait tout \u00e0 fait justifi\u00e9 que la collectivit\u00e9 - qui fonctionne avec les imp\u00f4ts - assure aux utilisateurs de la petite reine autant de facilit\u00e9s \u00e0 se d\u00e9placer qu'aux utilisateurs d'engins motoris\u00e9s d'une tonne, \u00e9lectriques ou pas. \n\nIl n'y a plus qu'\u00e0 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7020064088613351424,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7020064089167036416,urn:li:activity:7020064089167036416,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 316, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7020064089167036416,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7020064089167036416,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7020064089167036416", + "threadId": "activity:7020064089167036416", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020064089167036416", + "urn": "urn:li:activity:7020064089167036416", + "numComments": 727, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7020064089167036416", + "reactionTypeCounts": [ + { + "count": 5511, + "reactionType": "LIKE" + }, + { + "count": 377, + "reactionType": "PRAISE" + }, + { + "count": 333, + "reactionType": "EMPATHY" + }, + { + "count": 118, + "reactionType": "APPRECIATION" + }, + { + "count": 74, + "reactionType": "INTEREST" + }, + { + "count": 45, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7020064089167036416", + "numLikes": 6458, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020064089167036416", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6466, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7019787230227390464", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7019787230227390464)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7019787230227390464)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_projet-de-loi-%C3%A9nergies-renouvelables-la-activity-7019787230227390464-05ON?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7019787229342396417", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7019787230227390464", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7019787229342396417", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "mpvUDnOjvAGOJ75pF+YM6A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7324151095709206240", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 707, + "fileIdentifyingUrlPathSegment": "800/0/1676184990921?e=1677240000&v=beta&t=frqYJQGPT6hXYyzFof0xc1ayH0lEYAOdwPRMhZN8nvQ", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 707, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676184990921?e=1677240000&v=beta&t=F6O1kuPey80t7rAKtn74-AAkgWWQAvwzp_1QachHcx0", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676184990921?e=1677240000&v=beta&t=tPr9MJUMyNBASga9QM5QeGKVZMu7yXN_lzpcxeqRBZM", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676184990921?e=1677240000&v=beta&t=Q-stBGHJ64XWVjcWZ37x0dOz0vFmGY81CoxuxxD1Rrc", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH9Ke5BNHZWUw/articleshare-shrink_" + }, + "displayAspectRatio": 0.6661951909476662 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7324151095709206240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7324151095709206240)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "novethic.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Projet de loi \u00e9nergies renouvelables : la chaleur est la grande oubli\u00e9e by novethic.fr", + "actionTarget": "https://www.novethic.fr/actualite/energie/energies-renouvelables/isr-rse/projet-de-loi-energies-renouvelables-la-chaleur-est-la-grande-oubliee-151282.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Projet de loi \u00e9nergies renouvelables : la chaleur est la grande oubli\u00e9e" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7019787229342396417,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le projet de loi sur les \u00e9nergies renouvelables se concentre essentiellement sur l'\u00e9lectricit\u00e9. De fait, dans l'expos\u00e9 des motifs du projet initialement d\u00e9pos\u00e9 au S\u00e9nat (253 pages ! https://lnkd.in/eq2amZEk ), il est surtout question d'\u00e9olien et de photovolta\u00efque, et un peu de m\u00e9thanisation. \n\nPourtant, dans notre pays, 45% de l'\u00e9nergie sert \u00e0 avoir de la chaleur, et aujourd'hui cette derni\u00e8re est essentiellement fossile. Dans ces usages on va trouver :\n\n- le chauffage des logements et des b\u00e2timents dits tertiaires (en gros tout ce qui n'est ni logements, ni b\u00e2timents industriels : bureaux, commerces, h\u00f4pitaux, \u00e9coles, piscines, casernes, mus\u00e9es...)\n\n- la production d'eau chaude sanitaire dans ces m\u00eames b\u00e2timents, et plus marginalement la cuisson\n\n- la chaleur industrielle, importante dans les mat\u00e9riaux de base (m\u00e9taux, ciment, chimie de base, papier), dans la chimie de sp\u00e9cialit\u00e9 et dans l'agroalimentaire \n\nC'est le gaz qui est la premi\u00e8re source de chaleur en France (dans l'autre sens 55% du gaz sert au chauffage). Par les temps qui courent, il n'est peut-\u00eatre pas idiot de se pencher sur la mani\u00e8re de le remplacer par de la chaleur renouvelable. \n\nFont partie de cette cat\u00e9gorie la biomasse solide (bois buche et granul\u00e9s) ou gazeuse (biogaz), la g\u00e9othermie profonde (on extrait la chaleur du sous-sol pour chauffer des b\u00e2timents), les pompes \u00e0 chaleur (puisant les calories dans l'air ou dans le sol, et qui peuvent aussi servir pour des usages industriels \u00e0 haute temp\u00e9rature), et le solaire thermique (pour l'eau chaude sanitaire ou le chauffage avec un plancher chauffant).\n\nCes solutions sont matures, elles substituent directement du gaz ou du fioul l'essentiel du temps (et quand elles substituent de l'\u00e9lectricit\u00e9 ca sera toujours ca de gagn\u00e9 pour la mobilit\u00e9 \u00e9lectrique ou l'\u00e9lectrification d'usages industriels), ne posent pas de probl\u00e8me particulier d'approvisionnement en m\u00e9taux, et elles sont \u00e9conomiquement \u00e9quivalentes aux alternatives fossiles.\n\nQuestion biodiversit\u00e9, le tableau est plus nuanc\u00e9 : pour les pompes \u00e0 chaleur, le solaire thermique et la g\u00e9othermie, les atteintes sont faibles. Ces dispositifs occupent peu d'espace en plus du b\u00e2ti existant. C'est plus d\u00e9licat pour la biomasse : il faut \u00e9videmment \u00e9viter la d\u00e9forestation, ou la perte de biodiversit\u00e9 en rempla\u00e7ant les for\u00eats diversifi\u00e9es par des plantations monosp\u00e9cifiques d'esp\u00e8ces \u00e0 croissance rapide.\n\nMais globalement il y a beaucoup de potentiel et peu d'effets pervers \u00e0 leur d\u00e9ploiement. Pourtant, la priorit\u00e9 a \u00e9t\u00e9 surtout donn\u00e9e aux ENR \u00e9lectriques. Est-ce si pertinent ?\n \nIncidemment il y a une autre source de chaleur d\u00e9carbon\u00e9e qui n'int\u00e9resse personne : celle issue du refroidissement des centrales nucl\u00e9aires, soit environ 600 milliards de kWh, soit environ ce qui est utilis\u00e9 en France en \u00e9nergie fossile pour le chauffage et l'eau chaude sanitaire ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7019787229342396417,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7019787230227390464,urn:li:activity:7019787230227390464,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 161, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7019787230227390464,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7019787230227390464,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7019787230227390464", + "threadId": "activity:7019787230227390464", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019787230227390464", + "urn": "urn:li:activity:7019787230227390464", + "numComments": 291, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7019787230227390464", + "reactionTypeCounts": [ + { + "count": 2454, + "reactionType": "LIKE" + }, + { + "count": 381, + "reactionType": "INTEREST" + }, + { + "count": 228, + "reactionType": "MAYBE" + }, + { + "count": 37, + "reactionType": "PRAISE" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7019787230227390464", + "numLikes": 3137, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019787230227390464", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3140, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7019403760263122944", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7019403760263122944)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7019403760263122944)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_un-de-mes-coll%C3%A8gues-de-travail-ma-envoy%C3%A9-activity-7019403760263122944-DzI5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7019403759420088320", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7019403760263122944", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7019403759420088320", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "lUDi3w35jKYTeGxBgp3oBA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHkT5OV6xQ0Tg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHkT5OV6xQ0Tg", + "artifacts": [ + { + "width": 1792, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1673556266820?e=1679529600&v=beta&t=qJ40GCnBwLExHbAqZiVDApukzsgXQhdpZRVxV3h1U8U", + "expiresAt": 1679529600000, + "height": 1065 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1673556270057?e=1679529600&v=beta&t=cSAzrow4STLCcvv7nHec7gfEEJxzXrond8kAxdeinMM", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1673556270057?e=1679529600&v=beta&t=o9pwrppHNlnJuuENLs5EILlnQKB6WKUTrIrAJrhfvK8", + "expiresAt": 1679529600000, + "height": 761 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1673556270057?e=1679529600&v=beta&t=fWnPnEc-bqYby6hvCP-UO9GGmI8TYdIbzxPTdno8-20", + "expiresAt": 1679529600000, + "height": 285 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1673556270057?e=1679529600&v=beta&t=eQQbuD5E_tlOCt0rQLpftP_vXPI0_qQI4cVunhy1kEE", + "expiresAt": 1679529600000, + "height": 95 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1673556270057?e=1679529600&v=beta&t=HI9-bK-miuOaYANTKrpn8yMuQDdG1sjpW5vdQ7rJgJg", + "expiresAt": 1679529600000, + "height": 475 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHkT5OV6xQ0Tg/feedshare-shrink_" + }, + "displayAspectRatio": 0.5943080357142857 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7019403759420088320,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un de mes coll\u00e8gues de travail m'a envoy\u00e9 hier la question suivante : \"\u00e0 quand faut-il remonter dans le pass\u00e9 pour avoir des \u00e9missions de 2 tonnes de CO2 par personne ?\"\n\nSi l'on inclut la d\u00e9forestation (qui a toujours accompagn\u00e9 la croissance d\u00e9mographique), la r\u00e9ponse est donn\u00e9e par ce graphique (compilation de l'auteur sur sources diverses) : \u00e0 1860. En effet, le CO2 issu des combustibles fossiles est \"r\u00e9cent\", mais avant il y a eu de la d\u00e9forestation, qui a longtemps \u00e9t\u00e9 le terme dominant dans l'ensemble des \u00e9missions humaines.\n\nSi l'on regarde juste le CO2 issu des \u00e9nergies fossiles (graphique en commentaire), en supposant que l'on arr\u00eate la d\u00e9forestation (ce qui pour le moment est h\u00e9las une vue de l'esprit mais finira par arriver, au plus tard quand il n'y aura plus rien \u00e0 couper !), la r\u00e9ponse fait un peu moins peur : on parle de 1940. \n\nPour \u00eatre \"compatible 2\u00b0C\", il faudra donc a minima ramener en 27 ans les \u00e9missions fossiles moyennes par personne \u00e0 ce qu'elles \u00e9taient il y a 80 ans. En d'autres termes, il va falloir \"descendre\" 3 fois plus vite que nous sommes \"mont\u00e9s\", sachant que \"monter\" ne demande aucune contrainte alors que descendre oui. Ce n'est clairement pas au train o\u00f9 vont les choses que nous allons y arriver.\n\nDans le graphique sur le CO2 fossile seul on constate aussi que les \u00e9missions par personne ont brutalement arr\u00eat\u00e9 de monter au moment des chocs p\u00e9troliers (et en tenant compte de la d\u00e9forestation il y a eu une baisse pendant 30 ans).\n\nCela illustre de mani\u00e8re directe que ces chocs n'ont pas juste \u00e9t\u00e9 une grosse variation de prix \u00e0 cause d'un blocus : ils ont mat\u00e9rialis\u00e9 le premier ralentissement physique de l'\u00e8re industrielle par d\u00e9faut de ressources. La production de p\u00e9trole ne pouvait juste plus physiquement augmenter de 8% par an (surtout que les USA venaient de passer le pic conventionnel en 1970...). La limite physique \u00e0 l'amont s'appliquera de plus en plus si celle \u00e0 l'aval n'est pas g\u00e9r\u00e9e.\n\nLa grosse bosse des ann\u00e9es 2000 correspond \u00e0 l'essor de la Chine (et de son charbon). Cet essor a d\u00e9marr\u00e9 un peu moins de 10 ans apr\u00e8s le Sommet de la Terre de 1992, o\u00f9 a \u00e9t\u00e9 sign\u00e9e la Convention Climat. Pour le moment cette derni\u00e8re a \u00e9t\u00e9 mise KO debout par nos aspirations consum\u00e9ristes et \u00e9conomiques..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7019403759420088320,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7019403760263122944,urn:li:activity:7019403760263122944,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 98, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7019403760263122944,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7019403760263122944,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7019403760263122944", + "threadId": "activity:7019403760263122944", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019403760263122944", + "urn": "urn:li:activity:7019403760263122944", + "numComments": 215, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7019403760263122944", + "reactionTypeCounts": [ + { + "count": 2931, + "reactionType": "LIKE" + }, + { + "count": 868, + "reactionType": "INTEREST" + }, + { + "count": 401, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7019403760263122944", + "numLikes": 4250, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019403760263122944", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4255, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7019063851266535424", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7019063851266535424)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7019063851266535424)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_oceans-were-the-hottest-ever-recorded-in-activity-7019063851266535424-6LO5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7019063850654216192", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7019063851266535424", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7019063850654216192", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "MtoP3nUCC5LewpbkqCMrvw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8745374758198028966", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675874214305?e=1677240000&v=beta&t=M8NMzTG9rYZyrXviyyIdonqfNQ3X4hxpBpJPJAL70OI", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675874214306?e=1677240000&v=beta&t=d-KRSNg-Ted4wQuqqPuOiXqslLO3nF2gWFaCr6i8qcU", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675874214306?e=1677240000&v=beta&t=8lQCo4UGtL56Ar8J_i8XdIA6VrXI_YxA17qoNNw5SI0", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675874214306?e=1677240000&v=beta&t=OUXbz77n84LkBhLPRS0-1hH3htrcBIQM-REct9L_kHM", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGyr8tBrfl1eA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8745374758198028966)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8745374758198028966)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Oceans were the hottest ever recorded in 2022, analysis shows by theguardian.com", + "actionTarget": "https://www.theguardian.com/environment/2023/jan/11/oceans-were-the-hottest-ever-recorded-in-2022-analysis-shows" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Oceans were the hottest ever recorded in 2022, analysis shows" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7019063850654216192,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il n'y a pas que sur terre que 2022 a \u00e9t\u00e9 chaude : pour l'ensemble de l'oc\u00e9an mondial, l'ann\u00e9e pass\u00e9e a \u00e9t\u00e9 la plus chaude depuis le d\u00e9but des relev\u00e9s. \n\nOn le dit peu souvent, mais en fait 90% de l'\u00e9nergie suppl\u00e9mentaire amen\u00e9e \u00e0 la surface de la plan\u00e8te par le suppl\u00e9ment d'effet de serre r\u00e9chauffe les oc\u00e9ans et non la surface de la terre. C'est un ph\u00e9nom\u00e8ne lent mais massif, qui engendre derri\u00e8re des cons\u00e9quences en cascade :\n\n- l'\u00e9l\u00e9vation de temp\u00e9rature est une agression en tant que telle pour de nombreux organismes marins (par exemple les coraux dont 15% sont d\u00e9j\u00e0 morts, et \u00e0 2\u00b0C de r\u00e9chauffement global les coraux tropicaux auront probablement disparu pour l'essentiel)\n\n- cela affaiblit le puits oc\u00e9anique car l'eau chaude dissout moins bien le CO2 que l'eau froide (c'est pour cela que dans le pass\u00e9 l'\u00e9l\u00e9vation de temp\u00e9rature pr\u00e9c\u00e8de l'augmentation du CO2 : lorsque la modification des param\u00e8tres astronomiques de la terre r\u00e9chauffait climat, l'oc\u00e9an se mettait ensuite \u00e0 d\u00e9gazer du CO2 - qui incidemment amplifiait encore le r\u00e9chauffement)\n\n- l'eau chaude \u00e9tant moins dense, cela stratifie l'oc\u00e9an : l'eau chaude surnage en surface et ne communique plus avec les eaux plus profondes, plus froides. Cela diminue la teneur en oxyg\u00e8ne de l'eau de l'oc\u00e9an profond et donc la vie marine associ\u00e9e\n\n- l'eau se dilate quand elle chauffe : plus l'oc\u00e9an chauffe vite et plus son niveau monte vite. En retour cette hausse du niveau de la mer et ce r\u00e9chauffement de l'eau d\u00e9stabilisent de mani\u00e8re acc\u00e9l\u00e9r\u00e9e les langues terminales des glaciers des calottes polaires qui du coup se d\u00e9sagr\u00e8gent plus vite, en produisant plus rapidement des icebergs qui font encore plus monter le niveau de l'eau...\n\n- une eau de surface plus chaude favorise l'apparition de ph\u00e9nom\u00e8nes cycloniques plus intenses (ce qui se constate d\u00e9j\u00e0)\n\nBref que l'oc\u00e9an chauffe vite n'est pas juste une affaire de temp\u00e9rature de l'eau quand on va se baigner. Comme pour d'autres aspects du changement climatique, cela va engendrer des discontinuit\u00e9s qui, \u00e0 mesure que le temps passera, seront de plus en plus amples et peu sympathiques. \n\nIl reste peu de temps pour bien comprendre les risques et organiser au mieux la soci\u00e9t\u00e9 pour ne pas trop en souffrir...\n" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7019063850654216192,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7019063851266535424,urn:li:activity:7019063851266535424,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 45, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7019063851266535424,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7019063851266535424,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7019063851266535424", + "threadId": "activity:7019063851266535424", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019063851266535424", + "urn": "urn:li:activity:7019063851266535424", + "numComments": 77, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7019063851266535424", + "reactionTypeCounts": [ + { + "count": 1408, + "reactionType": "LIKE" + }, + { + "count": 337, + "reactionType": "INTEREST" + }, + { + "count": 135, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7019063851266535424", + "numLikes": 1924, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019063851266535424", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1925, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7018690369332625409", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7018690369332625409)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7018690369332625409)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-investissements-repartent-%C3%A0-la-hausse-activity-7018690369332625409-HQgG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7018690368690958336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7018690369332625409", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7018690368690958336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "OggxCQMmvFAbAd5tQgy8bA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7340652649154548267", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675937217011?e=1677240000&v=beta&t=P6m27VSboerHnWce-qfLvJ9sjCYRGO9-Jx-PB6QF1ek", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675937217011?e=1677240000&v=beta&t=e_yTw0qPsbfl2rpq-l6KsAGB3uonmrK4BoSfD9qDSHo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675937217011?e=1677240000&v=beta&t=KWsXgdGAMf8fCmExC88nU7irVNjfNjkpCl_fAcIf3Pw", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675937217011?e=1677240000&v=beta&t=jKZALKXxRgjmOvVpm_NCAWrw9DjURHnglM7D3ugXV-k", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGpdVhkaDfC-A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7340652649154548267)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7340652649154548267)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les investissements repartent \u00e0 la hausse dans l'exploration et l'extraction p\u00e9troli\u00e8re by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/les-investissements-repartent-a-la-hausse-dans-lexploration-et-lextraction-petroliere-1894533#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les investissements repartent \u00e0 la hausse dans l'exploration et l'extraction p\u00e9troli\u00e8re" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7018690368690958336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A votre avis, quel est le premier crit\u00e8re qui pilote le volume d'investissements dans le p\u00e9trole ? Si vous pensez - ou esp\u00e9rez - que c'est les politiques \u00e9nerg\u00e9tiques de long terme des \u00e9tats, la r\u00e9ponse risque de vous d\u00e9cevoir : depuis plusieurs d\u00e9cennies, le premier d\u00e9terminant du nombre de centaines de milliards de dollars (car c'est l'ordre de grandeur) investi chaque ann\u00e9e dans ce que l'on appelle \"l'amont p\u00e9trolier\" (en pratique l'exploration et la construction des infrastructures de production) est... le prix du baril.\n\nQuand celui-ci est au plus bas, comme par exemple en 2020, les investissements baissent tr\u00e8s fortement. Quand le prix monte fortement (2014 a \u00e9t\u00e9 embl\u00e9matique) alors les investissements font de m\u00eame. En effet, quand le prix est haut, les p\u00e9troliers arrivent \u00e0 rentabiliser des projets qui ne le sont pas quand le prix est bas, ce qui explique cette \"r\u00e9ponse\" des investissements.\n\nC'est particuli\u00e8rement vrai dans le shale oil (non \u00e9voqu\u00e9 dans l'article des Echos) o\u00f9 la production suit d'assez pr\u00e8s l'investissement (forage et fracturation). \n\nCette r\u00e9ponse des investissements au prix est un des \u00e9l\u00e9ments \u00e0 prendre en compte pour savoir si, pour consommer moins de p\u00e9trole, \"il suffit d'attendre qu'il y en ait moins\", ou si c'est utile de baisser la consommation par des r\u00e8glementations et des taxes.\n\nCar de fait nous approchons du peak oil et donc il va y en avoir moins. Mais si nous laissons le march\u00e9 g\u00e9rer la d\u00e9crue, ce \"moins\" se traduit par des envol\u00e9es des prix, donc des investissements additionnels, et donc... un peu plus que \"moins\".\n\nSi la d\u00e9crue est pilot\u00e9e \u00e0 l'aval (quotas de consommation sur les voitures, camions et avions, sur les fours industriels etc) \u00e0 ce moment c'est tout l'inverse qui se passe : la pression sur la demande maintient des prix bas, ce qui \u00e9vite cet effet rebond li\u00e9 \u00e0 un surplus d'investissements quand c'est le march\u00e9 qui r\u00e9gule. Et, cerise sur le g\u00e2teau pour tous les gens qui n'aiment pas les p\u00e9troliers : ces derniers gagnent moins d'argent qu'avec une p\u00e9nurie faisant grimper les prix :)\n\nAjoutons \u00e0 cela que de se contenter du \"peak oil+peak gas+peak coal\" pour limiter notre consommation de fossiles ne permet pas de tenir la limite des 2 \u00b0C. La d\u00e9crue p\u00e9troli\u00e8re est d\u00e9j\u00e0 amorc\u00e9e en Europe, malheureusement elle va \u00e0 la fois trop vite pour pr\u00e9server une \u00e9conomie qui ne se r\u00e9invente pas et pas assez vite pour pr\u00e9server le climat..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7018690368690958336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7018690369332625409,urn:li:activity:7018690369332625409,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 68, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7018690369332625409,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7018690369332625409,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7018690369332625409", + "threadId": "activity:7018690369332625409", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018690369332625409", + "urn": "urn:li:activity:7018690369332625409", + "numComments": 128, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7018690369332625409", + "reactionTypeCounts": [ + { + "count": 1284, + "reactionType": "LIKE" + }, + { + "count": 269, + "reactionType": "INTEREST" + }, + { + "count": 212, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7018690369332625409", + "numLikes": 1794, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018690369332625409", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1794, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7018309415040647168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7018309415040647168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7018309415040647168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-prix-de-l%C3%A9nergie-ils-montent-ils-activity-7018309415040647168-bt9d?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7018309413862006785", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7018309415040647168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7018309413862006785", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "dVV6aWCuPfY5/30BF8m0Vw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQG0JXzfKNejZg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQG0JXzfKNejZg", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1673295353733?e=1679529600&v=beta&t=x2h7b7jx-pUN89hkhC5E5FFanYD7NvD9Fa0JEq4mtsE", + "expiresAt": 1679529600000, + "height": 1298 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1673295357068?e=1679529600&v=beta&t=HyD_wqBJBJlNQPHGXVPpmI_iVNT4mk4IMJ6YLss21N0", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1673295357068?e=1679529600&v=beta&t=lexYzO3c4evsq-cyByOa9DPPqjVR96CtLPCsPVP3LMY", + "expiresAt": 1679529600000, + "height": 811 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1673295357068?e=1679529600&v=beta&t=XBq3trvmtEpesG8ZumCEFNMHfZkFDMSwcTcYMdGIGgc", + "expiresAt": 1679529600000, + "height": 304 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1673295357068?e=1679529600&v=beta&t=YJtfVUAjeUSNuHmRs921OCN8FxS1UL0G8pWlBPKcqvw", + "expiresAt": 1679529600000, + "height": 101 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1673295357068?e=1679529600&v=beta&t=uKo0pWza7or1ly5wQ31L4nPSogG1Ne9RiEti6zobIG4", + "expiresAt": 1679529600000, + "height": 507 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQG0JXzfKNejZg/feedshare-shrink_" + }, + "displayAspectRatio": 0.6337890625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, line chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7018309413862006785,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les prix de l'\u00e9nergie ? Ils montent, ils descendent... mais, depuis les chocs p\u00e9troliers, la part des d\u00e9penses \u00e9nerg\u00e9tiques dans les budgets des m\u00e9nages est rest\u00e9e tr\u00e8s stable. Il faudra voir si 2022 nous rapproche de 1974, car les donn\u00e9es ne sont pas encore disponibles au minist\u00e8re de la transition \u00e9nerg\u00e9tique, d'o\u00f9 sont issus ces chiffres (et plus pr\u00e9cis\u00e9ment de https://lnkd.in/eXsAPG2k ).\n\nDonner \u00e0 manger et \u00e0 boire \u00e0 nos 1000 esclaves \u00e9nerg\u00e9tiques planqu\u00e9s sous le capot de la voiture, \u00e0 ceux qui peuplent cuisines et salles de bains, \u00e0 ceux qui, dans la cave, assurent le chaud et parfois le froid, et encore \u00e0 ceux qui nous \u00e9clairent ou nous permettent de communiquer coute donc un peu moins de 10% de ce que nous gagnons. \n\nBien sur, cette facture n'inclut pas les esclaves \u00e9nerg\u00e9tiques des usines et des transports de marchandises, mais avouez que, quand m\u00eame, pour le service rendu, c'est donn\u00e9 !\n\nEt, depuis 1970, o\u00f9 l'\u00e9nergie coutait aussi 8% de ce que gagnaient nos parents ou grands-parents, l'arm\u00e9e d'esclaves m\u00e9caniques n'a cess\u00e9 de grossir : \u00e0 l'\u00e9poque, pour 8% t'avais presque rien. Il y avait quasiment 3 fois moins de voitures, peu d'\u00e9lectrom\u00e9nager, pas de chauffage central partout, peu de t\u00e9l\u00e9visions, et bien \u00e9videmment pas d'internet ou de box TV.\n\nA l'avenir, nous allons devoir devenir sobres. Est-ce \u00e0 dire qu'avec une consommation divis\u00e9e par 2 ou 3, la part de l'\u00e9nergie dans le budget sera divis\u00e9e par le m\u00eame facteur ? Notre logique de d\u00e9penses \u00e9tant g\u00e9n\u00e9ralement budg\u00e9taire (on \u00e9pargne ce que l'on doit \u00e9pargner et on d\u00e9pense tout le reste), il n'est pas \u00e9vident de comprendre pourquoi on se mettrait tout d'un coup \u00e0 consommer beaucoup moins alors que nous en aurions les moyens.\n\nSi notre facture d'\u00e9nergie nous coute moins cher parce que nous \u00e9conomisons de l'\u00e9nergie, qu'allons nous faire du surplus ? Jusqu'\u00e0 maintenant la r\u00e9ponse a \u00e9t\u00e9 de consommer autre chose en plus... et donc de consommer un peu plus d'une autre \u00e9nergie (celle pour la mise \u00e0 disposition de ce que nous allons consommer en plus). \n\nLa m\u00eame question se pose aussi pour toute l'\u00e9nergie \"incluse\" dans les produits ou services de la consommation finale : jusqu'\u00e0 maintenant nous avons utilis\u00e9 les marges de manoeuvre budg\u00e9taires d\u00e9gag\u00e9es par la baisse du prix d'un produit ou service pour consommer plus d'autre chose.\n\nSavoir si nous pouvons devenir sobres sans hausse des prix r\u00e9els - ce qui est le but m\u00eame de la taxe carbone - est donc une vraie question. Au regard du climat, l'inflation est-elle une calamit\u00e9 ou une b\u00e9n\u00e9diction ? Pour le moment il existe peu de propositions probantes mariant \"d\u00e9fense du pouvoir d'achat\" et baisse rapide des \u00e9missions..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7018309413862006785,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7018309415040647168,urn:li:activity:7018309415040647168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 59, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7018309415040647168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7018309415040647168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7018309415040647168", + "threadId": "activity:7018309415040647168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018309415040647168", + "urn": "urn:li:activity:7018309415040647168", + "numComments": 140, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7018309415040647168", + "reactionTypeCounts": [ + { + "count": 1169, + "reactionType": "LIKE" + }, + { + "count": 199, + "reactionType": "INTEREST" + }, + { + "count": 181, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7018309415040647168", + "numLikes": 1568, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018309415040647168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1568, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7017863646768726017", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7017863646768726017)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7017863646768726017)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lurgence-%C3%A9cologique-se-heurte-%C3%A0-la-culture-activity-7017863646768726017-gZ9o?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7017863646001123328", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7017863646768726017", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7017863646001123328", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "c7sqN7F7V55W+v6fmGhmmA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8047021039996732535", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675783088239?e=1677240000&v=beta&t=eDUY3htTypZjPMj78nZ01R5WRYtpmdGbspedR3gVgFs", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675783088239?e=1677240000&v=beta&t=UX8I2pGUrdbZDVeOTvPSP128Xihf__epuPeMnW2zQmc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675783088239?e=1677240000&v=beta&t=avcCbQ_serzL2ZZlJ122k_A69hIFYTWhrj0GpsX74MY", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675783088239?e=1677240000&v=beta&t=uJvypUhkzIiTTBLFF_9so8_2avTBSGUPSWYaGjdZSd8", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGEDH2N_D63tw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8047021039996732535)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8047021039996732535)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L\u2019urgence \u00e9cologique se heurte \u00e0 la culture acad\u00e9mique des universit\u00e9s by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/societe/article/2023/01/06/crise-climatique-dans-les-universites-l-urgence-ecologique-se-heurte-a-la-culture-academique_6156904_3224.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L\u2019urgence \u00e9cologique se heurte \u00e0 la culture acad\u00e9mique des universit\u00e9s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7017863646001123328,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a la th\u00e9orie, et il y a la pratique. La th\u00e9orie, c'\u00e9tait par exemple le rapport du Shift Project \"Mobiliser l'enseignement sup\u00e9rieur pour le climat\" (https://lnkd.in/dNVfiau ), o\u00f9 nous proposions un certain nombre de choses pour que l'enseignement sup\u00e9rieur soit mis en coh\u00e9rence avec la d\u00e9carbonation en particulier, et les limites plan\u00e9taires en g\u00e9n\u00e9ral.\n\nMais en pratique c'est une autre paire de manches. Que faire des enseignements qui ne sont pas ou plus \"raccord\" avec la nouvelle donne ? On peut penser \u00e0 l'\u00e9conomie par exemple, qui int\u00e8gre tr\u00e8s imparfaitement la limite sur les ressources et le r\u00f4le central de l'\u00e9nergie et des machines dans les raisonnements. \n\nQue faire des enseignants qui seront trop nombreux dans un monde qui se d\u00e9carbone ? On peut alors penser aux \u00e9tudes de langues ou d'art par exemple : un monde plus sobre sera un monde avec moins de flux internationaux, et il ne sera peut-\u00eatre plus utile d'avoir autant de traducteurs, d'interpr\u00e8tes ou de guides pour touristes internationaux, et partant plus autant d'\u00e9tudiant(e)s faisant juste des \u00e9tudes de langues \u00e0 l'Universit\u00e9 (mais les langues en \"culture g\u00e9n\u00e9rale\" resteront importantes !).\n\nLa question n'est donc pas seulement d'ajouter un cours avec les bases physiques et biologiques d\u00e9crivant le monde dans lequel nous sommes entr\u00e9s : il faut que le reste de ce qui est enseign\u00e9 ne soit pas en contradiction, et pr\u00e9pare par ailleurs \u00e0 des m\u00e9tiers qui ne le seront pas plus.\n\nEt l\u00e0, nous n'y sommes pas encore. Dans un pays o\u00f9 la libert\u00e9 acad\u00e9mique est un principe tr\u00e8s fort (je ne discute pas du bien fond\u00e9 !), et o\u00f9 les enseignants universitaires sont inamovibles (m\u00eame remarque), r\u00e9orienter le paquebot ne se fera pas rapidement, et la question est m\u00eame pos\u00e9e de savoir ce qui pourrait d\u00e9clencher un changement au bon rythme (c'est \u00e0 dire pour demain matin).\n\nUne autre difficult\u00e9 est aussi soulign\u00e9e en fin de l'article du Monde : pour un enseignant chercheur, modifier le contenu de son cours, c'est potentiellement modifier sa recherche, et cela signifie que, pendant un temps, il ne publie plus (ou plus autant). Avec la sacralisation des classements (dont Shanghai) bas\u00e9s sur le nombre de publications annuelles, rien que cela peut \u00eatre un obstacle tr\u00e8s difficile \u00e0 surmonter pour les universit\u00e9s qui voudraient \"changer de direction\".\n\nIl est donc probable que l'innovation va avoir du mal \u00e0 venir \"d'en haut\". Pour le moment elle vient \"d'\u00e0 c\u00f4t\u00e9\", par exemple avec des cours en ligne que beaucoup d'\u00e9tudiant(e)s peuvent suivre en plus de leur cursus, ou d'\u00e9tablissements \"partis de rien\" (comme le Campus de la Transition cit\u00e9 dans cet article).\n\nIl y aura aussi de l'innovation partie \"d'en bas\", \u00e0 savoir les initiatives individuelles de certain(e)s enseignant(e)s, dont il faut esp\u00e9rer qu'elles inspireront le plus vite possible leurs coll\u00e8gues.\n\nCar, au sens propre chaque \u00e9t\u00e9 d\u00e9sormais, il y a le feu !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7017863646001123328,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7017863646768726017,urn:li:activity:7017863646768726017,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 128, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7017863646768726017,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7017863646768726017,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7017863646768726017", + "threadId": "activity:7017863646768726017", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017863646768726017", + "urn": "urn:li:activity:7017863646768726017", + "numComments": 171, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7017863646768726017", + "reactionTypeCounts": [ + { + "count": 1646, + "reactionType": "LIKE" + }, + { + "count": 212, + "reactionType": "MAYBE" + }, + { + "count": 206, + "reactionType": "INTEREST" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7017863646768726017", + "numLikes": 2117, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017863646768726017", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2117, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7017569097689223168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7017569097689223168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7017569097689223168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_economies-d%C3%A9nergie-la-chasse-au-gaspi-activity-7017569097689223168-Zi03?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7017569096808431616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7017569097689223168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7017569096808431616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "7RxXj8zxGKCuqjZlisrodg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7653124443252468776", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675701078167?e=1677240000&v=beta&t=07x_uGGcRHYB6MvBCf8pfP9qv9ZT7Egb0PeMXIl6SDQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675701078167?e=1677240000&v=beta&t=H4GATfZ2YRqXDmmaHjrYZt2TPC-rgOomyIigpR1jgoQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675701078167?e=1677240000&v=beta&t=T43V-a5tlS56Nr0SYBhoi2mYDnNtDEXTjEZ2aDI4x_c", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675701078167?e=1677240000&v=beta&t=FzBbD7hwD_IBx91R2sVN91fDNj79zE9Kz5Li1gE3Vp4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE26hMK7K6Qvg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7653124443252468776)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7653124443252468776)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Economies d'\u00e9nergie : la chasse au gaspi ne fait que commencer by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/economies-denergie-la-chasse-au-gaspi-ne-fait-que-commencer-1894540#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Economies d'\u00e9nergie\u00a0: la chasse au gaspi ne fait que commencer" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7017569096808431616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A l'\u00e9poque o\u00f9 le monde \u00e9tait 100% renouvelable, il \u00e9tait moins pilotable qu'aujourd'hui. Il d\u00e9pendait fortement de la biomasse, du vent, du soleil et de l'eau, et ces 4 composantes sont elles-m\u00eames tributaires, de fa\u00e7on tr\u00e8s r\u00e9active (vent par exemple) ou plus lente (biomasse), des conditions du moment.\n\nA l'\u00e9poque, la marine \u00e0 voile avan\u00e7ait quand il y avait du vent, et on ne savait pas exactement \u00e0 quelle heure (ni parfois o\u00f9 !) on toucherait terre.\n\nLes moulins \u00e0 vent tournaient aussi quand il y avait du vent, et il valait mieux avoir un petit stock de farine sous la main pour ne pas risquer de manquer de pain en cas de panne \u00e9olienne un peu prolong\u00e9e. \n\nLes moulins \u00e0 eau \u00e9taient plus r\u00e9guliers, mais, lors d'une ann\u00e9e s\u00e8che ou d'un hiver tr\u00e8s froid (gel), ils pouvaient aussi s'arr\u00eater de tourner. La biomasse pour les animaux \u00e9tait disponible l'\u00e9t\u00e9 et il fallait faire des stocks pour l'hiver... en priant pour qu'ils soient suffisants.\n\nL'\u00e8re des combustibles fossiles a compl\u00e8tement chang\u00e9 la donne, et nous a habitu\u00e9s \u00e0 un monde o\u00f9 la disponibilit\u00e9 d'un produit ou service ne d\u00e9pend en rien des \u00e9l\u00e9ments ext\u00e9rieurs. \n\nAujourd'hui, au sens litt\u00e9ral du terme, nous ne voyons pas pourquoi il serait n\u00e9cessaire qu'il y ait du vent ou du soleil pour qu'un v\u00eatement soit assembl\u00e9 ou transport\u00e9, un aliment mis \u00e0 notre disposition, une classe d'histoire ou une op\u00e9ration de l'appendicite ait lieu, un bus avance ou un coup de fil puisse \u00eatre pass\u00e9.\n\nLa \"chasse au gaspi\" - c'est \u00e0 dire l'av\u00e8nement de l'\u00e8re des \u00e9conomies d'\u00e9nergie impos\u00e9es par insuffisance d'offre - et le retour en force des productions renouvelables non pilotables vont probablement nous remettre, un peu ou beaucoup, dans ce monde moins pr\u00e9visible, moins abondant et plus volatil. \n\nAinsi il a \u00e9t\u00e9 question que les \u00e9coles soient ferm\u00e9es ou une partie du r\u00e9seau t\u00e9l\u00e9phonique inop\u00e9rant les jours sans vent (puisque ce sont les jours, en hiver, o\u00f9 il y a potentiellement un probl\u00e8me d'approvisionnement). Pour le moment cette \u00e9ventualit\u00e9 n'est pas arriv\u00e9e (un temps d\u00e9pressionnaire est plut\u00f4t doux et venteux ; bonne conjonction !) mais son \u00e9vocation montre bien que le monde qui nous attend n'a pas vraiment \u00e9t\u00e9 pens\u00e9 \u00e0 l'avance c\u00f4t\u00e9 consommation.\n\nIl va falloir se faire \u00e0 l'id\u00e9e que tous les kWh ne sont pas \u00e9quivalents. Les combustibles fossiles n'ont pas juste amen\u00e9 des kWh en grande quantit\u00e9 : ils les ont amen\u00e9s \u00e0 la demande. S'organiser sans cette caract\u00e9ristique demandera beaucoup d'efforts : c'est ce que l'on appelle la \"flexibilit\u00e9\". Sa description pr\u00e9cise, et son caract\u00e8re plus ou moins indolore, restent g\u00e9n\u00e9ralement un point (tr\u00e8s) faible des sc\u00e9narios pour l'avenir." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7017569096808431616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7017569097689223168,urn:li:activity:7017569097689223168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 106, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7017569097689223168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7017569097689223168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7017569097689223168", + "threadId": "activity:7017569097689223168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017569097689223168", + "urn": "urn:li:activity:7017569097689223168", + "numComments": 326, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jean Lecordier" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7017569097689223168", + "reactionTypeCounts": [ + { + "count": 2648, + "reactionType": "LIKE" + }, + { + "count": 266, + "reactionType": "INTEREST" + }, + { + "count": 212, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7017569097689223168", + "numLikes": 3197, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017569097689223168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3199, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7017105538584829952", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7017105538584829952)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7017105538584829952)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-r%C3%A9chauffement-climatique-bient%C3%B4t-activity-7017105538584829952-Y_ZL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7017105537964113923", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7017105538584829952", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7017105537964113923", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "ulGOeIeS8BF4cVBzweOcKg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8487082001303440346", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676572886461?e=1677240000&v=beta&t=KkOiaVSp-Q-QesrwMn7FM4Q-k_NA2lQEPhkBYAtlAe8", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676572886461?e=1677240000&v=beta&t=FqFYH8qUnpYZpA4ZegNISBDKX6XfacUazmbGRWPZtjo", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676572886461?e=1677240000&v=beta&t=qWCk_WjS_Kvt254DvdM9z5SDrN4y0WmiDOw8taZt280", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676572886461?e=1677240000&v=beta&t=QooZRPPEjPXUqkonVioLHaxYdOeHaFAqit7Ph8dvT9I", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEBltEFv9DyRQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8487082001303440346)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8487082001303440346)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici : R\u00e9chauffement climatique : bient\u00f4t la fin des saisons ? - Yves Calvi - 02/01/2023 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=bwzeqRt8dNs" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici \u00e9tait invit\u00e9 sur RTL dans l\u2019\u00e9mission d'Yves Calvi le 2 janvier 2023. Vid\u00e9o originale : https://www.youtube.com/watch?v=FMbKODJqb7k Site de Jancovici : https://jancovici.com Page Facebook :..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici : R\u00e9chauffement climatique : bient\u00f4t la fin des saisons ? - Yves Calvi - 02/01/2023" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7017105537964113923,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Faut-il parler de \"d\u00e9r\u00e8glement\", de \"crise\", de \"d\u00e9rive\", ou encore une autre expression pour caract\u00e9riser l'\u00e9volution climatique ?\n\nRestera-t-il des hivers dans un monde qui se r\u00e9chauffe ?\n\nDoit-on encore utiliser le mot de \"normale\" en mati\u00e8re de m\u00e9t\u00e9o ou de climat, puisque l'\u00e9volution que nous avons mise en route enclenche une modification d\u00e9sormais permanente du syst\u00e8me climatique, qui ne permet pas le retour \u00e0 un \u00e9tat stable ? (or, ce que l'on qualifie de \"normale\" est g\u00e9n\u00e9ralement un \u00e9tat stable).\n\nAllons-nous pouvoir g\u00e9rer la question climatique sans que les \"\u00e9lites\" ne se forment de mani\u00e8re approfondie pour en cerner les contours ? (chose que manifestement la personne qui a r\u00e9dig\u00e9 le discours de voeux de Macron n'a pas bien faite :) )\n\nVoici quelques unes des questions abord\u00e9es dans cette br\u00e8ve apparition dans la matinale de RTL. Malgr\u00e9 une quantit\u00e9 de \"heu\" qui ferait sauter en l'air n'importe quel conseiller en communication, j'esp\u00e8re que les r\u00e9ponses apport\u00e9es seront utiles \u00e0 un auditoire qui a aussi droit \u00e0 Pascal Praud 2 heures par jour.\n\nEn particulier, il me semble essentiel que la population comprenne bien que \"l'\u00e9tat normal\" n'existe plus. Car c'est cela qui justifie que, alors m\u00eame que nous allons devoir consacrer plus de moyens \u00e0 la d\u00e9carbonation, nous commencions aussi \u00e0 redoubler d'efforts en mati\u00e8re \"d'adaptation au changement climatique\".\n\nIl faut donc consacrer des comp\u00e9tences et des moyens physiques \u00e0 nous pr\u00e9munir au mieux contre des \u00e9volutions adverses qui ne sont pas encore l\u00e0, mais dont nous savons avec certitude qu'elles vont arriver.\n\nCe qui vient de se produire rappelle qu'un jour l'avenir devient le pr\u00e9sent. Les seuls qui ne sont pas surpris sont les mod\u00e9lisateurs du climat et celles et ceux qui pr\u00eatent attention \u00e0 leurs propos. Mais l'important est que ce soit le reste de la population qui comprenne ce qui se passe et en tire les cons\u00e9quences pour l'action." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7017105537964113923,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7017105538584829952,urn:li:activity:7017105538584829952,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 66, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7017105538584829952,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7017105538584829952,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7017105538584829952", + "threadId": "activity:7017105538584829952", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017105538584829952", + "urn": "urn:li:activity:7017105538584829952", + "numComments": 146, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7017105538584829952", + "reactionTypeCounts": [ + { + "count": 1395, + "reactionType": "LIKE" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 88, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7017105538584829952", + "numLikes": 1650, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017105538584829952", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1650, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7016681335809261568", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7016681335809261568)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7016681335809261568)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-mati%C3%A8re-d%C3%A9nergie-le-mot-%C3%A0-la-mode-est-activity-7016681335809261568-vfwj?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7016681334949486592", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7016681335809261568", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7016681334949486592", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "7TA7d6kq2RpT3SCMgW43uA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHCB8XtHW9GHw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHCB8XtHW9GHw", + "artifacts": [ + { + "width": 2028, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1672907191445?e=1679529600&v=beta&t=vtfryN3kWNbOYNXBPw9j4rZ_JIxCoNE0NLs8GGFDaxA", + "expiresAt": 1679529600000, + "height": 1142 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1672907192650?e=1679529600&v=beta&t=b4F4DPfwA0oj8ivxE4Gw0hY6-iYFrcVFnblSn0CWFZk", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1672907192650?e=1679529600&v=beta&t=I6WzfaoMsgmQwY36C4LgXb6Gg2HpZZRhuz6fCCk7mjA", + "expiresAt": 1679529600000, + "height": 721 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1672907192650?e=1679529600&v=beta&t=nbiYV6FcfRTugH_N9ayL8036DLy0KAfo8_6GpWhNrcs", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1672907192650?e=1679529600&v=beta&t=Fk3GWirnONYNRwpUUhl1yc6uWl_w6KqxH84OsT8xsWU", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1672907192650?e=1679529600&v=beta&t=4myYwYnLyPgq3klaGIPl0Lq4qhnI8izRJZS5zNfxl7U", + "expiresAt": 1679529600000, + "height": 450 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHCB8XtHW9GHw/feedshare-shrink_" + }, + "displayAspectRatio": 0.5631163708086785 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7016681334949486592,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En mati\u00e8re d'\u00e9nergie, le mot \u00e0 la mode est donc \"sobri\u00e9t\u00e9\" (qui ne figure cependant pas dans le message de voeux pr\u00e9sidentiel). Pour savoir ce que ce terme inspirait \u00e0 nos concitoyens, l'IFOP est aller les cuisiner un peu (cela s'appelle un sondage), et en a retir\u00e9 une analyse de 86 pages (pas en libre acc\u00e8s mais que l'on m'a gentiment fournie quand m\u00eame :) ). \n\nIl y figure notamment le graphique ci-dessous, qui r\u00e9sume ce \u00e0 quoi peut servir la sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique selon les personnes interrog\u00e9es. On y d\u00e9couvre avec \u00e9tonnement (enfin pour moi) que la moiti\u00e9 de la population (environ) pense que la sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique peut contribuer au manque de certaines \u00e9nergies ou au d\u00e9r\u00e8glement climatique. \n\nCela sugg\u00e8re que ce mot apparu de fa\u00e7on r\u00e9cente dans le discours politique est tr\u00e8s loin d'\u00eatre correctement compris par nos concitoyens, du moins si la bonne compr\u00e9hension est la baisse volontaire de la consommation des individus. \n\nAu demeurant, une question sur \"qui doit s'engager en faveur de la sobri\u00e9t\u00e9\", pos\u00e9e un peu plus loin, met les entreprises devant les citoyens, alors que, \u00e0 l'\u00e9vidence, la sobri\u00e9t\u00e9 est bien une affaire de consommation finale...\n\nIl est vraisemblable que, pour l'heure, cette notion de sobri\u00e9t\u00e9 est aussi confondue avec celle d'efficacit\u00e9. Les questions pos\u00e9es dans l'\u00e9tude de l'IFOP sur les actes auxquels les personnes sont pr\u00eates m\u00e9langent du reste un peu les deux (choisir des appareils plus efficaces et isoler son logement se retrouve est dans la m\u00eame liste que moins utiliser sa voiture et moins prendre l'avion). \n\nEnfin il est probable que \"les gens\" n'ont pas du tout les ordres de grandeur en t\u00eate sur l'effort \u00e0 faire. Beaucoup de r\u00e9pondants consid\u00e8rent que de r\u00e9duire sa consommation d'\u00e9nergie de 10% est ce qu'il faut viser, mais la \"sobri\u00e9t\u00e9 des 2\u00b0C\" nous am\u00e8nera tr\u00e8s au-del\u00e0 de cette valeur !\n\nIl ne suffira donc pas de brandir ce mot de \"sobri\u00e9t\u00e9\" pour d\u00e9gager un consensus et d\u00e9crire qui devra faire quoi. Pour parvenir \u00e0 cet objectif, il faudra donner corps \u00e0 ce terme sous forme... d'un plan. Ca ne vous rappelle rien :) ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7016681334949486592,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7016681335809261568,urn:li:activity:7016681335809261568,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 96, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7016681335809261568,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7016681335809261568,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7016681335809261568", + "threadId": "activity:7016681335809261568", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016681335809261568", + "urn": "urn:li:activity:7016681335809261568", + "numComments": 165, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7016681335809261568", + "reactionTypeCounts": [ + { + "count": 1326, + "reactionType": "LIKE" + }, + { + "count": 155, + "reactionType": "MAYBE" + }, + { + "count": 151, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7016681335809261568", + "numLikes": 1666, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016681335809261568", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1667, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7016472206754906113", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7016472206754906113)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7016472206754906113)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_participez-au-concours-dimaginaires-bas-activity-7016472206754906113-Qtan?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7016472206020853760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7016472206754906113", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7016472206020853760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "oixfKROyfZi5dPMYg/dmaA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7906247804821788833", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676541270542?e=1677240000&v=beta&t=7tNh6_qMA647heeysbDosS_Bem8GgT93EZbo_OUJdQk", + "expiresAt": 1677240000000, + "height": 413 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676541270542?e=1677240000&v=beta&t=n-fFNTQx01DQ5WebAGdaMcvl8Q8UkgNKih-bCPZQ-D4", + "expiresAt": 1677240000000, + "height": 421 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676541270542?e=1677240000&v=beta&t=JTiEIqmJbqsROTXKCb8_SMneqecq_1gGYYlseRobcrM", + "expiresAt": 1677240000000, + "height": 82 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676541270542?e=1677240000&v=beta&t=1b-i59kHc4RPWbzfwen1Sx-IpL63Hpbrp7BLufX38FY", + "expiresAt": 1677240000000, + "height": 247 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFrGW2ai70isQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7906247804821788833)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7906247804821788833)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Participez au concours d'imaginaires bas carbone des Shifters ! by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/concours-shifters-imaginaires-bas-carbone/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Participez au concours d'imaginaires bas carbone des Shifters !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7016472206020853760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Vous maniez le crayon ou la cam\u00e9ra de mani\u00e8re acceptable ? Contribuer \u00e0 la d\u00e9carbonation vous tente ? Vous n'avez pas la possibilit\u00e9, comme Bruno Le Maire, de le faire en faisant r\u00e9diger un projet de loi sur l'industrie \"verte\" (https://bit.ly/3Cq4rgK ) ?\n\nDevenez auteur de BD \u00e0 succ\u00e8s (c'est possible m\u00eame si on ne s'y attend pas, je peux en t\u00e9moigner :) ), ou rivalisez avec \"Don't Look Up\" ! Pour agir, il faut en avoir envie, et la fiction, en \"donnant \u00e0 voir\", peut \u00eatre un moyen de susciter cette envie. \n\nLes Shifters - l'association des b\u00e9n\u00e9voles soutenant et contribuant aux travaux du Shift Project - organisent donc un concours de (tr\u00e8s) courts m\u00e9trages et de (tr\u00e8s) courtes bandes dessin\u00e9es autour du th\u00e8me \"un lundi en 2050\". Ce Lundi devra \u00e9videmment \u00eatre \u00e0 la fois d\u00e9carbon\u00e9, r\u00e9aliste, et enviable.\n\nL'ann\u00e9e derni\u00e8re, 210 \u00e9crivain(e)s en herbe avaient tent\u00e9 leur chance \u00e0 un concours de nouvelles organis\u00e9 par la m\u00eame association, avec un cahier des charges voisin : https://lnkd.in/eun_dbnd . Cette ann\u00e9e le format est diff\u00e9rent mais l'objectif est le m\u00eame. \n\nIl m'est souvent arriv\u00e9 de le dire, donc je peux le faire une fois de plus : changer de mod\u00e8le de soci\u00e9t\u00e9 n'est pas qu'une affaire d'ing\u00e9nieurs (et peut-\u00eatre m\u00eame pas avant tout une affaire d'ing\u00e9nieurs). C'est aussi et surtout une affaire de valeurs, d'\u00e9thique, de priorit\u00e9s, et d'incarnation de ce qui est possible.\n\nCe petit concours est donc la \"part du colibri\" pour contribuer sur ces plans l\u00e0. Alors, si ce petit d\u00e9fi vous tente, lancez vous !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7016472206020853760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7016472206754906113,urn:li:activity:7016472206754906113,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 164, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7016472206754906113,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7016472206754906113,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7016472206754906113", + "threadId": "activity:7016472206754906113", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016472206754906113", + "urn": "urn:li:activity:7016472206754906113", + "numComments": 218, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7016472206754906113", + "reactionTypeCounts": [ + { + "count": 1652, + "reactionType": "LIKE" + }, + { + "count": 121, + "reactionType": "EMPATHY" + }, + { + "count": 109, + "reactionType": "APPRECIATION" + }, + { + "count": 44, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7016472206754906113", + "numLikes": 1961, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016472206754906113", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1961, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7016101906401927169", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7016101906401927169)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7016101906401927169)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_greenwashing-lutilisation-abusive-du-label-activity-7016101906401927169-r47p?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7016101905554628608", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7016101906401927169", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7016101905554628608", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "XnUVdNrDddjiD9qF6qeeYA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8137118342388500607", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676285803796?e=1677240000&v=beta&t=69safCPVZC4HoXRpAn_10xjIFqJHZ4rBLAl22S1aajg", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676285803796?e=1677240000&v=beta&t=dPoRbVmgdTrii-edHRz0bmYyGaMeLrE_v_Tzel1GhSo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676285803796?e=1677240000&v=beta&t=YUgDm72eZQ4buviWSaHoAFm7lBucru2G4ZHC6axoXVY", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676285803796?e=1677240000&v=beta&t=ei-rjOjwwhTlOOr4o26ATntyAx1UR0GFQDXVItsKsHI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEVsJxQJmZ4mw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8137118342388500607)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8137118342388500607)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Greenwashing : l'utilisation abusive du label \u00ab neutralit\u00e9 carbone \u00bb punie par la loi by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/conso-distribution/greenwashing-lutilisation-abusive-du-label-neutralite-carbone-punie-par-la-loi-1893390" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Greenwashing\u00a0: l'utilisation abusive du label \u00ab\u00a0neutralit\u00e9 carbone\u00a0\u00bb punie par la loi" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7016101905554628608,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il va devenir un peu plus difficile pour les entreprises de pr\u00e9senter leurs produits comme \"neutres\". Pas totalement impossible (cela aurait \u00e9t\u00e9 l'id\u00e9al : https://lnkd.in/dGTt6Zs), mais plus difficile : l'entreprise qui affirme qu'un de ses produits est neutre ne pourra le faire que si elle a :\n- fait un bilan des \u00e9missions de gaz \u00e0 effet de serre du produit ou service concern\u00e9 sur l'ensemble de son cycle de vie.\n- \u00e9tabli et publi\u00e9 la trajectoire de r\u00e9duction des \u00e9missions de CO2 associ\u00e9es au produit ou au service, avec des objectifs quantifi\u00e9s \u00e0 10 ans\n- pr\u00e9cis\u00e9 la nature et la description des projets utilis\u00e9s pour acheter des cr\u00e9dits (la \"compensation\").\n\nCela peut sembler un peu anecdotique de se concentrer sur la communication des entreprises au lieu de se concentrer sur leurs proc\u00e9d\u00e9s, leurs mati\u00e8res premi\u00e8res, les usages de leurs produits, etc.\n\nSauf que, dans un monde qui doit se d\u00e9carboner, le premier juge de paix auquel confronter les proc\u00e9d\u00e9s, mati\u00e8res premi\u00e8res et usages, c'est justement leur \"contenu en carbone\". Obliger les entreprises \u00e0 le mesurer, et \u00e0 le faire \u00e9voluer dans la bonne direction, est donc une figure impos\u00e9e pour que l'ensemble du syst\u00e8me se mette en mouvement. C'est bien l'objectif qui d\u00e9termine la nature de l'action \u00e0 suivre, et non l'inverse.\n\nLa sanction pr\u00e9vue en cas d'infraction peut aller jusqu'au montant d\u00e9pens\u00e9 dans la communication (donc plus d'un million si c'est \u00e0 la t\u00e9l\u00e9). A cela il faudrait probablement rajouter, en cas de condamnation, la r\u00e9putation un peu \u00e9corn\u00e9e de l'entreprise prise la main dans le pot de peinture verte, qui lui coutera aussi n\u00e9cessairement quelque chose, sur sa capacit\u00e9 \u00e0 recruter par exemple.\n\nEvidemment, l'id\u00e9al serait d'obliger \u00e0 communiquer sur chaque produit ou service son empreinte carbone sans autre forme de commentaire. A ce moment, plus besoin de se demander si un produit est neutre ou pas : on saurait combien a \u00e9t\u00e9 \u00e9mis pour sa fabrication, point. \n\nLa difficult\u00e9 pour en arriver l\u00e0 est que, \u00e0 l'heure des chaines de valeur mondialis\u00e9es (aucun m\u00e9tal incorpor\u00e9 dans un objet disponible dans notre pays ne vient de notre pays, par exemple), on ne peut pas calculer le contenu carbone d'un produit de mani\u00e8re exacte sans que l'ensemble des entreprises - en France ou \u00e0 l'\u00e9tranger - qui ont contribu\u00e9 \u00e0 la sa fabrication ne disposent d'une comptabilit\u00e9 carbone analytique. \n\nComme il est peu probable que, la semaine prochaine, la Chine, l'Allemagne, le Mexique, le Chili, le Maroc et la Turquie, et en fait tous les autres pays, imposent \u00e0 leurs entreprises de tenir une telle comptabilit\u00e9, cela signifie que, pour un temps au moins, il sera plus facile d'interdire ce qui est grossi\u00e8rement faux que de mettre en place ce qui est quantitativement exact." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7016101905554628608,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7016101906401927169,urn:li:activity:7016101906401927169,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 155, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7016101906401927169,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7016101906401927169,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7016101906401927169", + "threadId": "activity:7016101906401927169", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016101906401927169", + "urn": "urn:li:activity:7016101906401927169", + "numComments": 261, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7016101906401927169", + "reactionTypeCounts": [ + { + "count": 5552, + "reactionType": "LIKE" + }, + { + "count": 378, + "reactionType": "PRAISE" + }, + { + "count": 324, + "reactionType": "MAYBE" + }, + { + "count": 185, + "reactionType": "INTEREST" + }, + { + "count": 52, + "reactionType": "EMPATHY" + }, + { + "count": 35, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7016101906401927169", + "numLikes": 6526, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016101906401927169", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6529, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7015751553600880640", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7015751553600880640)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7015751553600880640)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-ces-universit%C3%A9s-qui-interdisent-%C3%A0-activity-7015751553600880640-4mhu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7015751552820772864", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7015751553600880640", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7015751552820772864", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "GrSpeN6XalYgzHOSlnrMHQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9150029488320398542", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676616576342?e=1677240000&v=beta&t=FyCtPqizWs4W3ePQ2jAJ96rT0GRu0l8wnQa4T4i154Y", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676616576342?e=1677240000&v=beta&t=knk4TEM_UDQjHQ8YA-DRRF5tVa40Ppe43EzSn9tzjt0", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676616576342?e=1677240000&v=beta&t=49qrQyFKE939zdLe1k-cQLC4y79g9acZ-fjZba0KoaA", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676616576343?e=1677240000&v=beta&t=0YT7aLf9enwQkHHeoCFGjpci0N4UGsF2UW3h7l2_Aek", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHotGCXQDS2RA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9150029488320398542)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9150029488320398542)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "courrierinternational.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat. Ces universit\u00e9s qui interdisent \u00e0 leurs chercheurs de prendre l\u2019avion by courrierinternational.com", + "actionTarget": "https://www.courrierinternational.com/article/climat-ces-universites-qui-interdisent-a-leurs-chercheurs-de-prendre-l-avion" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat. Ces universit\u00e9s qui interdisent \u00e0 leurs chercheurs de prendre l\u2019avion" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7015751552820772864,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "De m\u00e9moire (car je n'ai plus la r\u00e9f\u00e9rence en t\u00eate), un professeur d'universit\u00e9 suisse a (ou avait avant covid) une empreinte carbone li\u00e9e \u00e0 sa profession d'environ 10 tonnes de CO2 par an. En cause : essentiellement les voyages en avion associ\u00e9s aux colloques qui deviennent l'ordinaire des universitaires quand ils se sont fait un nom dans leur sp\u00e9cialit\u00e9.\n\nL'\u00e9tude qui donnait ce r\u00e9sultat indiquait \u00e9galement que cette empreinte carbone \"a\u00e9rienne\" \u00e9tait croissante avec le statut : elle d\u00e9marrait \u00e0 une tonne pour un doctorat ou post-doctorant (ma m\u00e9moire me fait d\u00e9faut sur ce point pr\u00e9cis) pour finir \u00e0 10 tonnes en haut de l'\u00e9chelle (qui en Suisse s'appelle \"professeur ordinaire\" !).\n\nC'est donc une initiative int\u00e9ressante que celle de l\u2019Universit\u00e9 d\u2019Utrecht, aux\u00a0Pays-Bas, qui, apparemment, va interdire \u00e0 son personnel de prendre l'avion sur des distances inf\u00e9rieures \u00e0 700 km.\n\nL'Universit\u00e9 de Neufch\u00e2tel, elle, demande \u00e0 ce que l'avion ne soit utilis\u00e9 que si il n'y a pas d'alternative en train de moins de 10 heures. Notre gouvernement fait p\u00e2le figure avec ses 2h30 et l'exclusion d'un grand nombre de liaisons du dispositif !\n\nCette initiative commence \u00e9videmment par le plus facile, parce que, m\u00eame si 10 heures c'est long, ca reste g\u00e9rable sur une journ\u00e9e, et par ailleurs dans un train un chercheur peut travailler. Certes si son m\u00e9tier est de faire des manips sur des plantes ou des tests de r\u00e9sistance des mat\u00e9riaux il va avoir du mal \u00e0 le faire en se d\u00e9pla\u00e7ant, mais rien ne l'emp\u00eache de traiter son courrier, r\u00e9diger des comptes-rendus, en lire d'autres....\n\nMalheureusement, dans les vols a\u00e9riens, ce qui \u00e9met beaucoup ce sont les long-courrier : en gros, les \u00e9missions d'un vol sont proportionnelles au kilom\u00e9trage (pas tout \u00e0 fait parce que le d\u00e9collage consomme proportionnellement plus, mais en premi\u00e8re approximation on peut retenir ca).\n\nEt pour les long-courrier l'alternative devient moins confortable. Le train pour traverser la Russie ou les USA c'est plusieurs jours d'affil\u00e9e, et le bateau pour traverser l'Atlantique une semaine. R\u00e9duire les long courrier, qui est donc une mesure \"forte\" pour diminuer l'empreinte carbone de la recherche, signifie en pratique r\u00e9duire les colloques, ou les passer en visioconf\u00e9rence (ca va faire grincer quelques dents !).\n\nIl n'emp\u00eache que la recherche, comme le reste de nos activit\u00e9s, devra fatalement \u00e9voluer un jour ou l'autre dans un monde o\u00f9 la mobilit\u00e9 longue distance sera moins facile. Il serait souhaitable que tout nouveau projet qui d\u00e9marre soit compatible, \u00e0 la fois sur le fond et sur le mode op\u00e9ratoire du projet, avec ce cahier des charges." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7015751552820772864,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7015751553600880640,urn:li:activity:7015751553600880640,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 224, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7015751553600880640,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7015751553600880640,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7015751553600880640", + "threadId": "activity:7015751553600880640", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015751553600880640", + "urn": "urn:li:activity:7015751553600880640", + "numComments": 497, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7015751553600880640", + "reactionTypeCounts": [ + { + "count": 3816, + "reactionType": "LIKE" + }, + { + "count": 297, + "reactionType": "MAYBE" + }, + { + "count": 293, + "reactionType": "INTEREST" + }, + { + "count": 90, + "reactionType": "PRAISE" + }, + { + "count": 44, + "reactionType": "APPRECIATION" + }, + { + "count": 33, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7015751553600880640", + "numLikes": 4573, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015751553600880640", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4579, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7015289760269099008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7015289760269099008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7015289760269099008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_v%C5%93ux-2023-aux-fran%C3%A7ais-activity-7015289760269099008-rJ0N?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7015289759484760064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7015289760269099008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7015289759484760064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "gK2Da55oCw9uAoeCw2+QrA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9135926289784138403", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676205431089?e=1677240000&v=beta&t=CVFKCB-CNm3BXsciwVv9Wm5Yfg8NsDticPtsxqPp45Y", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676205431089?e=1677240000&v=beta&t=QDiAYAeBXtqourVqPOFG8ZdSNiOwgV4s_nkfpcBxLew", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676205431089?e=1677240000&v=beta&t=IP5ylVl89ntHHE__-muWSA2-I_F9o2HjNuXpeTA82pY", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676205431089?e=1677240000&v=beta&t=zg7iYGDm5sRYspMLvaMN8ZvFjbUbTsKbPFtLRK4ZKJU", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGGm99cVWgHQQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9135926289784138403)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9135926289784138403)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "elysee.fr \u2022 12 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: V\u0153ux 2023 aux Fran\u00e7ais. by elysee.fr", + "actionTarget": "https://www.elysee.fr/emmanuel-macron/2022/12/31/voeux-2023-aux-francais" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "V\u0153ux 2023 aux Fran\u00e7ais." + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7015289759484760064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est l'\u00e9poque des voeux ! M\u00eame si seul le prononc\u00e9 fait foi, j'ai attentivement lu le texte mis en ligne par l'Elys\u00e9e. \n\nOn y lit \"Qui aurait imagin\u00e9 [il y a un an] que (...) nous\u00a0\u00a0aurions \u00e0 affronter (...) une effroyable crise\u00a0\u00a0\u00e9nerg\u00e9tique, une crise alimentaire mena\u00e7ante, (...) la vague d\u2019inflation, (...) ou la crise climatique\u00a0?\"\n\nQui ? Sur l'\u00e9nergie, tous ceux qui, remarquant que les combustibles fossiles sont \u00e9puisables alors qu'ils fondent la soci\u00e9t\u00e9 moderne, soulignent depuis longtemps que leur baisse subie dans un monde non pr\u00e9par\u00e9 se traduira par des cons\u00e9quences adverses d'ampleur croissante (d\u00e8s Meadows et al au moins : https://bit.ly/2HkwcIl ).\n\nL'Europe \u00e9tait bien avant l'Ukraine en baisse subie sur le p\u00e9trole (depuis 2007), le gaz (depuis 2005), le charbon (depuis les ann\u00e9es 50), et en baisse choisie sur le nucl\u00e9aire (depuis 2005). Notre baisse de production physique (des tonnes charg\u00e9es dans les camions ou des immeubles construits) a commenc\u00e9 d\u00e8s 2008. L'empreinte carbone des fran\u00e7ais a commenc\u00e9 \u00e0 baisser en m\u00eame temps que leur revenu disponible, en 2009 ou 2010, dans la foul\u00e9e de cette d\u00e9crue \u00e9nerg\u00e9tique.\n\nIl n'y a donc pas besoin d'\u00eatre grand clerc pour \"voir venir des ennuis\" avec la d\u00e9crue \u00e9nerg\u00e9tique, sans bien s\u00fbr \u00eatre en mesure de d\u00e9crire ces derniers avec pr\u00e9cision. Pour ce que j'en connais ce qui pr\u00e9c\u00e8de ne fait l'objet d'aucune attention particuli\u00e8re de l'Elys\u00e9e.\n\nSur l'alimentation, m\u00eame motif m\u00eame punition : l'agriculture moderne c'est un climat stable et des combustibles fossiles. Que le climat devienne instable et les combustibles fossiles moins accessibles, et la conclusion devient logique \u00e0 d\u00e9faut d'\u00eatre plaisante. \n\nEnfin, sur la crise climatique, c'est \u00e0 se demander ce qui est pass\u00e9 par la t\u00eate de la personne qui a r\u00e9dig\u00e9 ce discours que de poser la question de savoir \"qui l'aurait pr\u00e9dite\". S\u00e9rieux ?\n\nOn trouve ensuite \"A chaque \u00e9preuve, l\u2019Europe nous a permis d\u2019agir plus vite et plus fort\". C'est vrai et faux : l'Europe avance aujourd'hui sur deux pieds qui contribuent in\u00e9galement au mandat initial de paix et \"prosp\u00e9rit\u00e9\". Le pied \"lib\u00e9ral et concurrentiel\" tire de plus en plus contre son propre camp. On a vu ses effets sur l'\u00e9lectricit\u00e9, sur la perte industrielle ou sur l'incapacit\u00e9 \u00e0 faire \u00e9merger une agriculture \"durable\".\n\nLe pied r\u00e9glementaire prend de la vigueur. On lui doit par exemple la limitation des \u00e9missions des voitures neuves, les \u00e9conomies d'\u00e9nergie dans le b\u00e2timent, les obligations de transparence sur les \u00e9missions ou la \"taxe carbone aux fronti\u00e8res\". Mais l'Europe doit encore apprendre \u00e0 marcher -) donc coordonner ses 2 pieds - dans le monde fini.\n\nSuivent plusieurs paragraphes mentionnant que \"notre travail\" va permettre d'avancer dans la bonne direction. Mais ce discours - qui parle surtout d'intendance \u00e0 court terme, certes utile - ne d\u00e9crit pas de grand projet coh\u00e9rent de long terme qui soit lisible (et donc qui motive \u00e0 travailler). Peut-\u00eatre n'\u00e9tait-ce pas le moment d'en parler." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7015289759484760064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7015289760269099008,urn:li:activity:7015289760269099008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 259, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7015289760269099008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7015289760269099008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7015289760269099008", + "threadId": "activity:7015289760269099008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015289760269099008", + "urn": "urn:li:activity:7015289760269099008", + "numComments": 382, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7015289760269099008", + "reactionTypeCounts": [ + { + "count": 7104, + "reactionType": "LIKE" + }, + { + "count": 570, + "reactionType": "PRAISE" + }, + { + "count": 435, + "reactionType": "INTEREST" + }, + { + "count": 250, + "reactionType": "MAYBE" + }, + { + "count": 72, + "reactionType": "APPRECIATION" + }, + { + "count": 64, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7015289760269099008", + "reacted": "LIKE", + "numLikes": 8495, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015289760269099008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 8514, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7014995835687944192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7014995835687944192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7014995835687944192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_apr%C3%A8s-une-ann%C3%A9e-agit%C3%A9e-le-monde-des-m%C3%A9taux-activity-7014995835687944192-APdy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7014995834752630785", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7014995835687944192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7014995834752630785", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "5EOgrb/ZlZW1Qxi1VnEv+Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9219098135315210715", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675804672450?e=1677240000&v=beta&t=yHsEYzRExqkyqfP3iCzsyH1W048JXDrcoyaU1YUdGKU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675804672450?e=1677240000&v=beta&t=Rjpmnc34ptGnOmX3PZSCy6s0BdpQsAZUy99e8vFBN34", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675804672450?e=1677240000&v=beta&t=C56D_WtSnaJ-xLm4_C--kj2jgQqYaKN3u529dspjME0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675804672450?e=1677240000&v=beta&t=BM9XcqcWkHfQhYMLv9dCmveyKK_lAISEW_e6fLd-I4g", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFDmmheuQatYA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9219098135315210715)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9219098135315210715)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Apr\u00e8s une ann\u00e9e agit\u00e9e, le monde des m\u00e9taux se pr\u00e9pare \u00e0 un supercycle by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/apres-une-annee-agitee-le-monde-des-metaux-se-prepare-a-un-supercycle-1892507" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s une ann\u00e9e agit\u00e9e, le monde des m\u00e9taux se pr\u00e9pare \u00e0 un supercycle" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7014995834752630785,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 374, + "length": 19, + "miniProfile": { + "firstName": "Christophe", + "lastName": "Poinssot", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAA24xQEBcOp94cQTsFmv_bpbgQ-B9153eZ8", + "occupation": "Directeur G\u00e9n\u00e9ral D\u00e9l\u00e9gu\u00e9 et Directeur Scientifique chez BRGM / Deputy CEO and scientific director at French Geological Survey (Brgm)", + "objectUrn": "urn:li:member:230212865", + "entityUrn": "urn:li:fs_miniProfile:ACoAAA24xQEBcOp94cQTsFmv_bpbgQ-B9153eZ8", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1617046772083?e=1681948800&v=beta&t=coZNqswSvg1ZqLHvnCcfdOC5ZTPMl8ojNv9jjIItHcM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1617046772083?e=1681948800&v=beta&t=CrFrd4e9tQsOBBv5Ez7o1EC5YtFYy3BtljlCweDL-Io", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQGD-PEAIuFPVA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "christophe-poinssot-05512165", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1628084112044?e=1681948800&v=beta&t=twpYle4QGNZu1tUE65Nn_xDxxUCpoeAEGM9PO-wecYE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1628084112044?e=1681948800&v=beta&t=-f95a7iK1s3JdEYW7S9B6gjcvlolIh-o5xz46RjKziE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1628084112044?e=1681948800&v=beta&t=wkykgdbKJjwrBkj9_8bjpWdzy2-k59ufptTYayDp-Zg", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1628084112044?e=1681948800&v=beta&t=WG4lYv3R8a4trzjyEo7K-JSQQxnrIibtc8Zw8OvtBZk", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQETwdRSJOoDlA/profile-displayphoto-shrink_" + } + }, + "trackingId": "fjivfgreTr64ThhBPDJWYw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Une des \u00e9quations infernales de la transition \u00e9nerg\u00e9tique, c'est de pouvoir disposer de plus en plus de m\u00e9taux, dans un monde o\u00f9 les flux internationaux seront de plus en plus chahut\u00e9s et l'\u00e9nergie \n\nPour ceux qui ont le temps (ou le prendront !), dans les auditions r\u00e9centes de la commission d'enqu\u00eate sur la perte de souverainet\u00e9 \u00e9nerg\u00e9tique de la France, il y a celle de Christophe Poinssot, qui fournit un certain nombre d'\u00e9l\u00e9ments tr\u00e8s int\u00e9ressants sur les usages et la disponibilit\u00e9 future des m\u00e9taux : https://lnkd.in/ef4BhrY5\n\nOn y apprend notamment que le monde utilisait principalement 10 m\u00e9taux en 1900, alors que c'est d\u00e9sormais de l'ordre de 60, et que nombre d'entre eux sont utilis\u00e9s de mani\u00e8re trop dilu\u00e9e dans les objets qui les contiennent pour pouvoir \u00eatre r\u00e9cup\u00e9r\u00e9s ensuite.\n\nOn y apprend aussi qu'il faut en moyenne 17 ans (dans le monde) entre la d\u00e9cision d'ouvrir une mine et le moment o\u00f9 l'exploitation d\u00e9marre. Ceci explique par exemple que la disponibilit\u00e9 mondiale en cuivre ne va pas beaucoup augmenter (voire l\u00e9g\u00e8rement diminuer) dans les 20 ans qui viennent (information rappel\u00e9e par Poinssot), et il faut voir si cela est compatible avec les plans d'\u00e9lectrification massive qui supposent une consommation accrue de ce m\u00e9tal. \n\nM\u00eame s'il faut toujours \u00eatre prudent avec les pr\u00e9visions de prix des mati\u00e8res premi\u00e8res (un des gags dans le monde du p\u00e9trole consiste \u00e0 dire : \"vous pouvez pr\u00e9voir un prix, vous pouvez pr\u00e9voir une date, mais il ne faut jamais faire les deux en m\u00eame temps !\"), il est logique de penser que cette tension devrait finir par se voir dans les prix. Dans cet article des Echos, les n\u00e9gociants interrog\u00e9s tablent tous sur des hausses significatives pour l'ann\u00e9e prochaine.\n\nDans les sc\u00e9narios de transition \u00e9nerg\u00e9tique, les alternatives sont souvent \u00e9valu\u00e9es \u00e0 l'aune des montants respectifs d'investissements demand\u00e9s. Mais ces derniers peuvent fortement d\u00e9pendre des cours des mati\u00e8res premi\u00e8res, en particulier pour les moyens qui sont \"gourmands\" en m\u00e9tal par kWh produit (ce qui est le cas - pour de b\u00eates raisons physiques - des collecteurs d'\u00e9nergies diffuses).\n\nLa sagesse voudrait donc que nous prenions nos paris avant tout sur la base des param\u00e8tres \"physiques\", en ne donnant pas aux couts actuels plus de valeur pr\u00e9dictive qu'ils n'en ont. Ca sera mon voeu pour 2023, puisque c'est l'\u00e9poque !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7014995834752630785,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7014995835687944192,urn:li:activity:7014995835687944192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7014995835687944192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7014995835687944192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7014995835687944192", + "threadId": "activity:7014995835687944192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014995835687944192", + "urn": "urn:li:activity:7014995835687944192", + "numComments": 130, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7014995835687944192", + "reactionTypeCounts": [ + { + "count": 1379, + "reactionType": "LIKE" + }, + { + "count": 175, + "reactionType": "INTEREST" + }, + { + "count": 148, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7014995835687944192", + "numLikes": 1741, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014995835687944192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1741, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7014531641989603328", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7014531641989603328)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7014531641989603328)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_litt%C3%A9rature-franc-succ%C3%A8s-du-roman-graphique-activity-7014531641989603328-k-0C?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7014531641289105408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7014531641989603328", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7014531641289105408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "Y8Kzlen6sXO6CdGzzMIDBg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8198496211263763453", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675683616896?e=1677240000&v=beta&t=UqoKmzYHwn8V7I73dA1Zq4kZWyaT9kBVD0kiayqnbQE", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675683616896?e=1677240000&v=beta&t=_H5DCX7z7BOS41vXOa-yIqPNhY_31CnLfinjKhp_vdY", + "expiresAt": 1677240000000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675683616897?e=1677240000&v=beta&t=pODs7QyriaGn_TiTiQxEbDcCmMsAxcTk6P09EaiMCrM", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675683616897?e=1677240000&v=beta&t=dk4OSUaXf1I6wSl-8zo0ofEaH5spc7TBDoi1RxWC2OA", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF6fZQs7GLi_w/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le livre le plus vendu en France est une bande-dessin\u00e9e intitul\u00e9e \"Le monde sans fin\". Plus d'un demi-million d'exemplaires ont \u00e9t\u00e9 \u00e9coul\u00e9s. L\u2019\u0153uvre est sign\u00e9e Jean-Marc Jancovici, sp\u00e9cialiste du climat et de l\u2019\u00e9nergie, et Christophe Blain, dessinateur." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8198496211263763453)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8198496211263763453)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "francetvinfo.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Litt\u00e9rature : franc succ\u00e8s du roman graphique sur la crise climatiqe \"Le Monde sans fin\" by francetvinfo.fr", + "actionTarget": "https://www.francetvinfo.fr/culture/bd/litterature-franc-succes-du-roman-graphique-sur-la-crise-climatiqe-le-monde-sans-fin_5569977.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Litt\u00e9rature : franc succ\u00e8s du roman graphique sur la crise climatiqe \"Le Monde sans fin\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7014531641289105408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Monde Sans Fin a bien march\u00e9, il semblerait :) . Peut-on tenter de comprendre pourquoi ?\n\nIl y a tout d'abord le th\u00e8me trait\u00e9 qui fait que l'on \"surfe sur la vague\" : arrivant d\u00e9sormais r\u00e9guli\u00e8rement en t\u00eate des sondages sur les pr\u00e9occupations pour l'avenir, le changement climatique, et plus r\u00e9cemment l'\u00e9nergie, int\u00e9ressent de plus en plus de monde. Un livre des m\u00eames auteurs sur la reproduction des bulots aurait probablement connu un destin un peu diff\u00e9rent.\n\nIl y a l'objet ensuite. Lorsque Christophe m'a contact\u00e9, il m'a dit la chose suivante : \"tes conf\u00e9rences sur Youtube permettent de tr\u00e8s bien comprendre la situation, mais quand on veut r\u00e9expliquer \u00e0 quelqu'un d'autre, on se rend compte que l'on n'y arrive pas\". \n\nIl avait donc d\u00e9j\u00e0 en t\u00eate de faire un livre graphique (car plus facile \u00e0 comprendre) qui puisse s'offrir en disant \"tiens, tu vas comprendre\". C'\u00e9tait sa fa\u00e7on de contribuer \u00e0 un acte militant mais tr\u00e8s bien tol\u00e9r\u00e9 (offrir un livre). Et de fait, c'est un album qui a \u00e9t\u00e9 tr\u00e8s souvent achet\u00e9 pour quelqu'un d'autre (quelques entreprises en ont m\u00eame achet\u00e9 des milliers pour leurs salari\u00e9s !).\n\nIl y a Christophe enfin. Il n'est pas qu'un ma\u00eetre du crayon : c'est aussi et surtout un perfectionniste qui ne laisse absolument rien passer sur le fond. Tant qu'un \u00e9l\u00e9ment reste incompris, obscur ou incoh\u00e9rent avec le reste, il y revient. Il ne faut pas du tout croire qu'il a dessin\u00e9 sous ma dict\u00e9e : il m'a bombard\u00e9 de questions, et nous avons pass\u00e9 des heures carr\u00e9es sur chaque case de l'album, jusqu'au moment o\u00f9 l'explication \u00e9tait compl\u00e8te et l'enchainement fluide. Accessoirement (!) c'est aussi lui qui a convaincu Dargaud.\n\nAvions nous une ambition en mati\u00e8re de ventes ? Pour ma part, je souhaitais \"faire beaucoup mieux que les essais\", mais cela d\u00e9marrait \u00e0 50.000 exemplaires, nombre qu'aucun de mes essais n'avait atteint.\n\nChristophe, lui, voulait cr\u00e9er \"un ph\u00e9nom\u00e8ne\". Au moment de notre rencontre il \u00e9tait d\u00e9j\u00e0 \"pris aux tripes\", consid\u00e9rait que le sujet trait\u00e9 \u00e9tait \"le\" sujet, et que ce livre devait \u00eatre \"le\" livre. En cons\u00e9quence, il voulait faire mieux que Quai d'Orsay, dont le premier tome a \u00e9t\u00e9 vendu \u00e0 250.000 exemplaires. C'est lui qui a eu raison :)\n\nPour ma part, j'avais deux autres souhaits : d'abord qu'une BD permette de toucher des gens qui n'auraient jamais achet\u00e9 un essai. Sur ce plan l\u00e0, on peut dire que le pari est r\u00e9ussi. Et ensuite, que plus de femmes s'int\u00e9ressent \u00e0 la question \u00e9nerg\u00e9tique. \n\nPour les mails spontan\u00e9s que je re\u00e7ois, les demandes de connexion linkedin (que je ne peux plus satisfaire la quasi-totalit\u00e9 du temps, car je suis proche de mon quota !), les r\u00e9actions \u00e0 mes posts ici, et quelques autres \"points de sonde\", dans plus de 80% des cas j'ai affaire \u00e0 un homme (et >98% quand c'est un commentaire agressif :) ). \n\nJe ne sais pas si cette nouvelle forme d'expression a un peu corrig\u00e9 ce d\u00e9s\u00e9quilibre (pas pour les agressions !), mais si oui j'en serai heureux." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7014531641289105408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7014531641989603328,urn:li:activity:7014531641989603328,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 320, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7014531641989603328,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7014531641989603328,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7014531641989603328", + "threadId": "activity:7014531641989603328", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014531641989603328", + "urn": "urn:li:activity:7014531641989603328", + "numComments": 484, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7014531641989603328", + "reactionTypeCounts": [ + { + "count": 4978, + "reactionType": "LIKE" + }, + { + "count": 687, + "reactionType": "PRAISE" + }, + { + "count": 250, + "reactionType": "EMPATHY" + }, + { + "count": 77, + "reactionType": "APPRECIATION" + }, + { + "count": 21, + "reactionType": "INTEREST" + }, + { + "count": 20, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7014531641989603328", + "numLikes": 6033, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014531641989603328", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6034, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7014139569486888960", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7014139569486888960)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7014139569486888960)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_patrick-pouyann%C3%A9-pdg-de-totalenergies-audition-activity-7014139569486888960-R4wo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7014139568698368000", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7014139569486888960", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7014139568698368000", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "1ZBX+Hkdx6DeR6BBeC3usg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7334399710424462882", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1675558478787?e=1677240000&v=beta&t=Qubh7r5hmc0FOI3u9HEnfNRCkVzBPnsEVPgzik-hIg0", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675558478787?e=1677240000&v=beta&t=NxGoR36p6qo0VGoWVNJZZN03IMEQBnqTy3445sKbM4I", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675558478788?e=1677240000&v=beta&t=OEt6gJub-B4mpvaAjoULj4Opuz4TUtXLzqCCjgn46q8", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675558478788?e=1677240000&v=beta&t=2eYMz9AULBoFa27mtsYGK7WnCzd-nHCsG8mo4fFSt9k", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH1QiaF0aoWGA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7334399710424462882)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7334399710424462882)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Patrick Pouyann\u00e9 -PDG de TotalEnergies, audition, Assembl\u00e9e nationale, 23 novembre 2022 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=syo0atzlYH0" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Commission d'enqu\u00eate \"Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France\"\n\nSource : www.assemblee-nationale.fr" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Patrick Pouyann\u00e9 -PDG de TotalEnergies, audition, Assembl\u00e9e nationale, 23 novembre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7014139568698368000,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tr\u00e8s int\u00e9ressante audition de Patrick Pouyann\u00e9 par la \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\".\n\nQu'on le veuille ou non, \u00e0 tr\u00e8s court terme la s\u00e9curit\u00e9 d'approvisionnement du pays d\u00e9pend largement du comportement des acteurs du monde p\u00e9trolier et gazier, de fait num\u00e9riquement moins couvert par les auditions de cette commission que le secteur \u00e9lectrique, alors que les hydrocarbures dominent dans l'approvisionnement national. Les quasiment 2 heures pass\u00e9es avec le PDG de Total permettent de comprendre, de fa\u00e7on bienvenue, beaucoup de choses sur le fonctionnement de ce monde l\u00e0.\n\nUne des pr\u00e9occupations du moment est bien sur l'approvisionnement en gaz. Avec l'arr\u00eat des importations russes, la marge de manoeuvre restante est le Gaz Naturel Liqu\u00e9fi\u00e9, pour lequel nous sommes en concurrence avec le reste du monde. Un moyen de faire baisser les prix \u00e0 court terme serait de nouer des contrats de long terme. Mais.... cela signifie que l'on s'engage \u00e0 consommer du gaz longtemps, ce qui est contradictoire avec l'engagement de neutralit\u00e9 !\n\nPouyann\u00e9 explique aussi pourquoi il a investi dans les centrales \u00e9lectriques \u00e0 gaz : l'essor des modes \u00e9lectriques intermittents rend de toute fa\u00e7on n\u00e9cessaires ces moyens de production si l'on veut un approvisionnement \u00e9lectrique continu (\u00e0 ce propos il affirme que le nucl\u00e9aire fran\u00e7ais n'est pas modulable, ce qui est inexact et est une des deux erreurs que j'ai relev\u00e9es dans son propos). \n\nPouyann\u00e9 confirme dans cette audition que le taux naturel de d\u00e9clin des puits de p\u00e9trole en production dans le monde est de 4% \u00e0 5% par an, ce qui lui fait conclure que, pour que son secteur fasse sa part dans les objectifs climat, il suffit d'arr\u00eater d'investir (mais il dit que ce n'est pas encore le moment, ce qui est inexact puisque les \u00e9missions devraient baisser de 5% par an d\u00e8s demain matin pour tenir les 2\u00b0C).\n\nIl indique que Total a regard\u00e9 le nucl\u00e9aire mais a recul\u00e9 \u00e0 cause de la longueur des engagements, qui ne lui semblent compatibles qu'avec le mode de fonctionnement d'une entreprise publique.\n\nIl s'exprime aussi sur le solaire, l'\u00e9olien, la \"concurrence\" sur l'\u00e9lectricit\u00e9, le biogaz, l'hiver 2023 qui sera plus compliqu\u00e9 que l'actuel, la demande \u00e9nerg\u00e9tique des pays \u00e9mergents qui pour le moment est impossible \u00e0 satisfaire sans fossiles additionnel, la Californie et le Qatar...\n\nA d\u00e9faut de fournir les bonnes r\u00e9ponses pour certain(e)s, cette audition permet de poser quelques questions qui piquent un peu. Et quand la r\u00e9ponse de Pouyann\u00e9 nous agace, c'est parfois tout simplement parce qu'il nous place face \u00e0 nos propres contradictions." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7014139568698368000,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7014139569486888960,urn:li:activity:7014139569486888960,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 125, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7014139569486888960,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7014139569486888960,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7014139569486888960", + "threadId": "activity:7014139569486888960", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014139569486888960", + "urn": "urn:li:activity:7014139569486888960", + "numComments": 224, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7014139569486888960", + "reactionTypeCounts": [ + { + "count": 3795, + "reactionType": "LIKE" + }, + { + "count": 590, + "reactionType": "INTEREST" + }, + { + "count": 577, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7014139569486888960", + "numLikes": 5014, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014139569486888960", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5016, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 Edited \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7013918188404899840", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7013918188404899840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7013918188404899840)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_changement-climatique-lagriculture-n%C3%A9erlandaise-activity-7013918188404899840-n2gn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7013918187515691008", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7013918188404899840", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7013918187515691008", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "gRHkwQ6FrhibrcunCZYrUQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7180284881110044128", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675856954303?e=1677240000&v=beta&t=uEBZSjrgFPcdFGtOL5DrEJPRdoEvqpT_2JmCWEArtR4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675856954304?e=1677240000&v=beta&t=oFZiEZbBylyp36N6gdzB5Bj3VgGfGJNXAP6lHaKb6rs", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675856954304?e=1677240000&v=beta&t=jlTSxGZNldMTRycqa2Pm_kt90EUaXfwC7G0JdM1pSW0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675856954304?e=1677240000&v=beta&t=vlneTm6qMDTRHy4I0dOZmGIV3YCZ3HE9P_7txZrJnpk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFaWrlSgQyIEg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7180284881110044128)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7180284881110044128)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Changement climatique : l'agriculture n\u00e9erlandaise plong\u00e9e dans une crise sans pr\u00e9c\u00e9dent by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/changement-climatique-lagriculture-neerlandaise-plongee-dans-une-crise-sans-precedent-1892004" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Changement climatique\u00a0: l'agriculture n\u00e9erlandaise plong\u00e9e dans une crise sans pr\u00e9c\u00e9dent" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7013918187515691008,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "On peut appeler cela un miracle ou une h\u00e9r\u00e9sie, selon le point de vue : selon Les Echos, les Pays Bas, pays de 42.000 km2 de superficie, est le 2\u00e8 exportateur mondial de produits agricoles et agroalimentaires, derri\u00e8res les USA, pays 230 fois plus vaste, et devant la France, qui est plus de 10 fois plus vaste, et tout cela avec 52.000 agriculteurs seulement, qui commandent forc\u00e9ment \u00e0 beaucoup beaucoup de machines.\n\nCar, \u00e9videmment, ce n'est pas tant aux vastes terres fertiles de ce pays tr\u00e8s dens\u00e9ment peupl\u00e9 que l'on doit cela, mais \u00e0 l'\u00e9nergie. Le mod\u00e8le n\u00e9erlandais s'est bas\u00e9 largement sur les exploitations intensives qui demandent des engrais (du gaz et du p\u00e9trole), des serres (du gaz pour les chauffer et pour faire le verre), des \u00e9levages intensifs, impossibles \u00e0 approvisionner sans d'importants volumes de transport associ\u00e9s (pour faire venir les aliments) et des produits v\u00e9g\u00e9taux pas chers. Un mod\u00e8le fortement exportateur est aussi un mod\u00e8le fortement d\u00e9pendant des transports internationaux (du p\u00e9trole \u00e0 nouveau).\n\nCe d\u00e9veloppement est \u00e9videmment all\u00e9 avec une augmentation de quelques pressions environnementales (effluents ou \u00e9missions), et est d\u00e9pendant d'une \u00e9nergie abondante et pas ch\u00e8re. Le d\u00e9sir de limiter les nuisances environnementales et la \"crise du gaz\" rebattent fortement les cartes. \n\nRappelons que la production hollandaise de gaz, qui \u00e9tait encore tr\u00e8s significative il y a quelques ann\u00e9es, s'est brusquement effondr\u00e9e apr\u00e8s la d\u00e9cision d'arr\u00eater l'exploitation du plus grand champ gazier d'Europe du Nord (Groninge), qui avait fait de ce pays une petite Norv\u00e8ge pendant de longues d\u00e9cennies.\n\nCet exemple hollandais est en fait embl\u00e9matique de ce qui finira par arriver ailleurs. Une agriculture avec peu de monde, tr\u00e8s m\u00e9canis\u00e9e, tr\u00e8s d\u00e9pendante des transports amont et aval, et tr\u00e8s d\u00e9pendante des engrais et des phytosanitaires, est un enfant de la mondialisation, et aura du mal \u00e0 survivre face \u00e0 la d\u00e9crue \u00e9nerg\u00e9tique. \n\nComme le paysage agricole est tr\u00e8s long \u00e0 r\u00e9orienter (parce que c'est un domaine de traditions, et parce que l'organisation globale mise en place ne se modifie pas en une semaine), il n'est que temps de se demander \u00e0 quoi elle devra ressembler si les conditions climatiques et \u00e9nerg\u00e9tiques de cette ann\u00e9e 2022 deviennent la norme, voire \"moins pire\" que cette derni\u00e8re.\n\nAu Shift Project, cela fait partie de nos ambitions pour 2023 que d'y revenir (le chapitre du PTEF sur l'agriculture n'est pas suffisant \u00e0 nos yeux et manger est raisonnablement vital). Mais nous esp\u00e9rons bien ne pas \u00eatre les seuls \u00e0 avoir envie de mettre un peu de jus de cerveau dans la question !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7013918187515691008,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7013918188404899840,urn:li:activity:7013918188404899840,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 175, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7013918188404899840,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7013918188404899840,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7013918188404899840", + "threadId": "activity:7013918188404899840", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013918188404899840", + "urn": "urn:li:activity:7013918188404899840", + "numComments": 264, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7013918188404899840", + "reactionTypeCounts": [ + { + "count": 4160, + "reactionType": "LIKE" + }, + { + "count": 796, + "reactionType": "INTEREST" + }, + { + "count": 697, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "APPRECIATION" + }, + { + "count": 42, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7013918188404899840", + "numLikes": 5754, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013918188404899840", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5756, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7013550267006656512", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7013550267006656512)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7013550267006656512)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_depuis-quelques-semaines-le-ton-monte-parfois-activity-7013550267006656512-Ld4Y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7013550266134220800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7013550267006656512", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7013550266134220800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "LDNFg5TZgXYBtz7AniwyxQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGcco5e3bgq2A", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGcco5e3bgq2A", + "artifacts": [ + { + "width": 960, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1672160688444?e=1679529600&v=beta&t=0NtzRPPsLqWL9YK6aCg9nEKkpGSYtL5yXqjRFjLjVYI", + "expiresAt": 1679529600000, + "height": 960 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1672160688455?e=1679529600&v=beta&t=Prf9LxDp9ZwfrAt_t1F6usfb0vIPrSA3vLyVy6_9VK8", + "expiresAt": 1679529600000, + "height": 20 + }, + { + "width": 960, + "fileIdentifyingUrlPathSegment": "1280/0/1672160688455?e=1679529600&v=beta&t=ig8BMsFEz2yhVd0QhrbfdSe_vK-R-Ddf-CC021JdxCw", + "expiresAt": 1679529600000, + "height": 960 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1672160688455?e=1679529600&v=beta&t=ZBymUF-uC8cOMq9iNFut2_3R-nxZ9oZ-ouWr3u51uZU", + "expiresAt": 1679529600000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1672160688455?e=1679529600&v=beta&t=IfdWrERVd7psbdid9rQ8wKLCPNoxU9jONS1hCl9inKg", + "expiresAt": 1679529600000, + "height": 160 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1672160688455?e=1679529600&v=beta&t=si7Z51ZRrGS7HBxMDxLAEo5cinJIpf06UhK6T92_JBU", + "expiresAt": 1679529600000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGcco5e3bgq2A/feedshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "text, engineering drawing, calendar" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7013550266134220800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis quelques semaines, le ton monte parfois sur ce r\u00e9seau \u00e0 propos de certaines de mes prises de position. Puisque la fin de l'ann\u00e9e (ou plut\u00f4t le d\u00e9but de l'ann\u00e9e nouvelle) c'est le moment des bonnes r\u00e9solutions, je voudrais en proposer quelques unes pour les \u00e9changes qui peuvent avoir lieu sur ce que j'aurais dit ou \u00e9crit. \n\nCela s'applique id\u00e9alement \u00e0 ceux qui me critiquent (un exercice utile pour moi car on ne progresse qu'en \u00e9tant sorti de sa zone de confort), et plus encore \u00e0 ceux qui prennent le clavier pour r\u00e9pondre aux premiers.\n\nEssayez de s\u00e9parer le message du messager. Un argument s'examine au fond, et non en fonction de celui qui l'invoque. Si une personne que je d\u00e9teste cordialement dit que 2 et 2 font 4, il n'a pas tort parce que sa t\u00eate ne me revient pas. C'est seulement une fois que l'on a \u00e9ventuellement fait la preuve d'un raisonnement erron\u00e9 que l'on peut se demander si cela a a un rapport avec la profession - ou une autre caract\u00e9ristique - de la personne qui l'a tenu. \n\nMais ca va dans cet ordre l\u00e0 et pas dans le sens inverse. A titre personnel je n'invoque \u00e0 peu pr\u00e8s jamais la profession de mes \"contradicteurs\" dans un argumentaire (m\u00eame si parfois il me semble \u00e9vident qu'elle explique la motivation).\n\nEssayez de rester courtois. L'agressivit\u00e9 - ou pire, l'insulte ou la calomnie - clarifient rarement le d\u00e9bat. Les \u00e9changes \u00e9tant publics, on s'adresse autant \u00e0 son contradicteur qu'\u00e0 toutes les personnes qui vont lire l'\u00e9change, et ces derni\u00e8res apprendront plus avec des argumentaires pos\u00e9s qu'avec des invectives. Linkedin n'est normalement ni un pr\u00e9toire ni un plateau de t\u00e9l\u00e9vision !\n\nNe faites pas dire \u00e0 votre opposant ce qu'il ne dit pas. Le proc\u00e9d\u00e9 qui consiste par commencer \u00e0 d\u00e9former ce que dit l'adversaire pour ensuite mieux le combattre est malheureusement assez r\u00e9pandu, mais dans le d\u00e9bat d'id\u00e9es il va assez souvent se retourner t\u00f4t ou tard contre celui ou celle qui l'emploie. \n\nD\u00e9battre prend du temps. Mieux vaut s'abstenir de r\u00e9pondre que de le faire de mani\u00e8re inappropri\u00e9e faute de temps pour mettre son raisonnement en forme.\n\nDans le m\u00eame esprit, il arrive malheureusement que, avec certaines personnes, il soit impossible de sortir du dialogue de sourds (on revient encore et encore sur les m\u00eames arguments alors que l'on y a r\u00e9pondu N fois). A ce moment il faut savoir qu'\u00e0 l'impossible nul n'est tenu et la meilleure des choses \u00e0 faire est d'arr\u00eater l'\u00e9change.\n\nIl est essentiel qu'en d\u00e9mocratie il y ait confrontation d'id\u00e9es. C'est comme cela que l'on finit par avoir de la convergence (n\u00e9cessaire pour d\u00e9gager des majorit\u00e9s). Mais quand la forme employ\u00e9e aboutit \u00e0 des crispations dures, on s'\u00e9loigne en fait de l'objectif que l'on voulait atteindre (converger). Donc autant l'\u00e9viter, et ce d'autant plus que l'on parle d'un sujet essentiel !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7013550266134220800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7013550267006656512,urn:li:activity:7013550267006656512,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 420, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7013550267006656512,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7013550267006656512,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7013550267006656512", + "threadId": "activity:7013550267006656512", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013550267006656512", + "urn": "urn:li:activity:7013550267006656512", + "numComments": 794, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Valentin Derouet" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7013550267006656512", + "reactionTypeCounts": [ + { + "count": 9279, + "reactionType": "LIKE" + }, + { + "count": 1102, + "reactionType": "PRAISE" + }, + { + "count": 605, + "reactionType": "APPRECIATION" + }, + { + "count": 240, + "reactionType": "EMPATHY" + }, + { + "count": 46, + "reactionType": "INTEREST" + }, + { + "count": 45, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7013550267006656512", + "numLikes": 11317, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013550267006656512", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 11357, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7013230316441976832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7013230316441976832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7013230316441976832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cest-moins-anxiog%C3%A8ne-ces-artisans-qui-activity-7013230316441976832-Qt4-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7013230315577987072", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7013230316441976832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7013230315577987072", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "tFjDguf6Pj4gurve8Goqeg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7556560582917123471", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1675845426153?e=1677240000&v=beta&t=oNLpL8088oAYF6YxfWfF8M0syn20v2OmcQJ2aXqKKpw", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675845426153?e=1677240000&v=beta&t=m3tnF3kR4XdDydxNSM87HZEM773bRTckF_vtQUepHRA", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675845426153?e=1677240000&v=beta&t=12mKmqaSrbNsu1SV7k18Ogg8zPFMoJB1A96JldsNtR0", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675845426153?e=1677240000&v=beta&t=52TPCIY5Pgr_4ogh6g3kXv8XE0LNpSnYq72DRhMtfmc", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHbBuUiBMkX6Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le v\u00e9lo cargo d\u00e9livre en centre-ville 60% plus rapidement que celle d'une camionnette diesel selon l'\u00e9tude \u00abThe Promise of LowCarbon Freight\u00bb." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7556560582917123471)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7556560582917123471)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lefigaro.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00abC'est moins anxiog\u00e8ne\u00bb : ces artisans qui font le choix de se d\u00e9placer en v\u00e9lo-cargo by lefigaro.fr", + "actionTarget": "https://www.lefigaro.fr/societes/c-est-moins-anxiogene-ces-artisans-qui-font-le-choix-de-se-deplacer-en-velo-cargo-20221223" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00abC'est moins anxiog\u00e8ne\u00bb : ces artisans qui font le choix de se d\u00e9placer en v\u00e9lo-cargo" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7013230315577987072,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Moins cher, plus rapide en ville, et \u00e9videmment beaucoup plus bas carbone que la camionnette, m\u00eame \u00e9lectrique : le v\u00e9lo-cargo pointe de plus en plus le bout de sa roue en univers urbain (ou de sa p\u00e9dale).\n\nMoins cher \u00e0 l'achat, le v\u00e9lo cargo l'est presque d'un facteur 5 \u00e0 10 si l'on compare son prix neuf avec celui d'un v\u00e9hicule de type Kangoo (thermique ou \u00e9lectrique) neuf. Mais, avec une consommation de l'ordre de 10 Wh par km, il l'est aussi \u00e0 l'usage : face \u00e0 un v\u00e9hicule thermique il n'y a pas photo (6 litres de p\u00e9trole aux 100 km = 600 Wh de p\u00e9trole par km), et m\u00eame face \u00e0 une camionnette \u00e9lectrique il y a plus d'un facteur 10.\n\nSon bilan carbone est aussi consid\u00e9rablement plus faible : \n- la batterie \u00e9tant 100 fois plus petite (0,5 kWh contre 50 en gros) ses \u00e9missions de fabrication le sont aussi \n- le poids \u00e9tant 20 fois plus faible (50 kg contre 1000 kg) les \u00e9missions de fabrication du v\u00e9hicule hors batterie sont en proportion identique.\n\nM\u00eame dans un pays produisant toute son \u00e9lectricit\u00e9 au charbon, passer d'une camionnette thermique \u00e0 un v\u00e9lo cargo divise les \u00e9missions de livraison par un facteur de plusieurs dizaines.\n\nEnfin, en ville, il est plus rapide qu'une camionnette. Cette fois ci c'est l'espace au sol qui lui procure son avantage : les bouchons ont moins de prise !\n\nAjoutons que c'est aussi moins bruyant, et engendre tr\u00e8s peu de pollution locale (les particules des freins et des pneus essentiellement).\n\nPour autant il n'est pas difficile de voir que l'essentiel de ce qui circule en ville (du moins en Occident) reste actionn\u00e9 par un moteur thermique. A l'\u00e9vidence le v\u00e9lo cargo ne peut pas rivaliser sur tous les plans (un r\u00e9servoir avec le plein d'essence procure une bien plus grande autonomie qu'une batterie charg\u00e9e de v\u00e9lo \u00e9lectrique), et par ailleurs les moyens de transport sont toujours dimensionn\u00e9s \u00e0 leur usage de pointe et la charge utile maximale d'une camionnette reste sup\u00e9rieure \u00e0 ce que peut transporter ce genre de v\u00e9hicule. Mais cela ne s'applique pas tout le temps, puisque quelques intr\u00e9pides \"basculent\" !\n \nLe t\u00e9moignage d'une des personnes interrog\u00e9es dans cet article indique qu'il a opt\u00e9 pour ce mode de transport \u00e0 la suite d'une panne de son v\u00e9hicule pr\u00e9c\u00e9dent. Il n'est probablement pas le seul qui ait opt\u00e9 pour le v\u00e9lo (cargo ou pas) contraint au d\u00e9but, par choix ensuite. Comme on disait dans une vieille pub, l'essayer c'est apparemment souvent l'adopter.\n\nPeut-\u00eatre que l'on pourrait imaginer que dans le cadre de toute formation d'artisan il y ait de mani\u00e8re obligatoire l'essai de ce genre de v\u00e9hicule :) ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7013230315577987072,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7013230316441976832,urn:li:activity:7013230316441976832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 269, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7013230316441976832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7013230316441976832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7013230316441976832", + "threadId": "activity:7013230316441976832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013230316441976832", + "urn": "urn:li:activity:7013230316441976832", + "numComments": 674, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7013230316441976832", + "reactionTypeCounts": [ + { + "count": 2967, + "reactionType": "LIKE" + }, + { + "count": 120, + "reactionType": "PRAISE" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 79, + "reactionType": "MAYBE" + }, + { + "count": 61, + "reactionType": "EMPATHY" + }, + { + "count": 39, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7013230316441976832", + "numLikes": 3369, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013230316441976832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3373, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7012438021207654401", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7012438021207654401)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7012438021207654401)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_no%C3%ABl-2022-quelles-sont-les-%C3%A9missions-de-activity-7012438021207654401-BLYG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7012438020716929024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7012438021207654401", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7012438020716929024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "VwSM0Gr4XXvDCmbcxntWUA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9204072766123965787", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675523063047?e=1677240000&v=beta&t=nHBLLK6hJcw6DTId6ssgI1ZdOeEcjuRuaBFYuWqI6Co", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675523063047?e=1677240000&v=beta&t=jbGlBwzMe6801mfgt6ChUL4OCBtFPC0GTbIDXVg2G_o", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675523063047?e=1677240000&v=beta&t=x90-nfvUND7kInpsZj2VTdmdBdAhLkul6mX_GRfH87Q", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675523063047?e=1677240000&v=beta&t=8QKNvlbqXhFVLYl1-XpQ2eOPK2L-TroGVhGDwD_m3E0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEyPLv-QqAtBg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9204072766123965787)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9204072766123965787)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: No\u00ebl 2022 : quelles sont les \u00e9missions de gaz \u00e0 effet de serre particuli\u00e8res en cette p\u00e9riode de f\u00eate ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900218075-noel-2022-quelles-sont-les-emissions-de-gaz-a-effet-de-serre-particulieres-en-cette-periode-de-fete" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "No\u00ebl 2022 : quelles sont les \u00e9missions de gaz \u00e0 effet de serre particuli\u00e8res en cette p\u00e9riode de f\u00eate ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7012438020716929024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Sapin en plastique artificiel r\u00e9utilisable ou sapin naturel qui ne l'est pas ? C'\u00e9tait traditionnellement la question de la rubrique \u00e9colo sur les radios dans les jours et semaines pr\u00e9c\u00e9dant Noel.\n\nEn fait, cette question est l'arbre qui cache la for\u00eat. Car dans les \u00e9missions de gaz \u00e0 effet de serre associ\u00e9es \u00e0 cette f\u00eate de fin d'ann\u00e9e, les gros morceaux sont ailleurs, et principalement dans les postes suivants :\n- les cadeaux\n- les d\u00e9placements pour se retrouver en famille\n- et apr\u00e8s on va trouver la nourriture (car entre le fois gras et le chapon, c'est rarement un repas pauvre en produits animaux).\n\nDans cette chronique je n'ai pas mentionn\u00e9 les logements secondaires chauff\u00e9s, qui ne sont pas propres \u00e0 Noel, mais concernent toutes les vacances d'hiver, cependant c'est aussi un poste qui va peser quelque chose dans l'ensemble.\n\nFaut-il se priver de tout pour \u00eatre \u00e9colo alors ? Cet exemple illustre lui aussi que d'\u00eatre heureux dans un monde de limites va nous demander un peu de cr\u00e9ativit\u00e9 et des normes sociales qui changent. \n\nIl y a quand m\u00eame une bonne nouvelle dans l'ensemble : \u00e0 condition de ne pas incin\u00e9rer les coquilles ensuite (sinon le CO2 est rel\u00e2ch\u00e9 dans l'air), manger des huitres ne r\u00e9chauffe quasiment pas le climat. En effet le calcaire des coquilles n'est rien d'autre que du carbone atmosph\u00e9rique s\u00e9questr\u00e9 par le m\u00e9tabolisme des petites b\u00eates. \n\n1 kg de coquilles d'huitres contient 450 grammes de CO2. C'est beaucoup plus que les \u00e9missions de son transport depuis le lieu d'\u00e9levage. Il faut certes ajouter les \u00e9missions de l'exploitation ostr\u00e9icole, mais c'est tr\u00e8s certainement la prot\u00e9ine la plus bas carbone du r\u00e9veillon. Et la nuit sera plus calme apr\u00e8s une douzaine d'huitre qu'apr\u00e8s une douzaine de dindes aux marrons !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7012438020716929024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7012438021207654401,urn:li:activity:7012438021207654401,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 93, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7012438021207654401,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7012438021207654401,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7012438021207654401", + "threadId": "activity:7012438021207654401", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012438021207654401", + "urn": "urn:li:activity:7012438021207654401", + "numComments": 156, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7012438021207654401", + "reactionTypeCounts": [ + { + "count": 1320, + "reactionType": "LIKE" + }, + { + "count": 98, + "reactionType": "INTEREST" + }, + { + "count": 36, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "EMPATHY" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7012438021207654401", + "numLikes": 1506, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012438021207654401", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1598, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7012013351413121024", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7012013351413121024)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7012013351413121024)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_souverainet%C3%A9-et-ind%C3%A9pendance-%C3%A9nerg%C3%A9tique-activity-7012013351413121024-O4Qb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7012013350385500161", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7012013351413121024", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7012013350385500161", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "6F5Ua3et7U/1pwicktpqqQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7036454563543430667", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675423596080?e=1677240000&v=beta&t=p9xbqpJ-c1Cz-XgTW4S91ELWetQ-IS-F-7-nTsUrLLI", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675423596080?e=1677240000&v=beta&t=R8G-Q8_0ACC_Z2zV5ta7zRPwsnKJPepmXlXEJdzkzEg", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675423596080?e=1677240000&v=beta&t=MAGbW2dYoxqPb8V-njj9Pfsfd5c_EoKfXKLR3IqyM8s", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675423596080?e=1677240000&v=beta&t=JSO513tt_3CQ5tBRuqd7Xq18vizRPwTunMf2DCmkKUo", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGJBWYjNebuuQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7036454563543430667)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7036454563543430667)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "videos.assemblee-nationale.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Fran\u00e7ois Brottes, Conseiller-ma\u00eetre \u00e0 la Cour des comptes ; M. Jean-Bernard L\u00e9vy, ancien pr\u00e9sident-directeur g\u00e9n\u00e9ral de EDF - Mercredi 14 d\u00e9cembre 2022 on videos.assemblee-nationale.fr", + "actionTarget": "https://videos.assemblee-nationale.fr/video.12647058_6399f0a907461.souverainete-et-independance-energetique-de-la-france--m-francois-brottes-conseiller-maitre-a-la--14-decembre-2022" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "- \u00c0 17 heures : - Audition, ouverte \u00e0 la presse, de M. Fran\u00e7ois Brottes, Conseiller-ma\u00eetre \u00e0 la Cour des comptes, ancien Pr\u00e9sident du directoire de R\u00e9seau de transport d\u2019\u00e9lectricit\u00e9 (RTE), ancien D\u00e9put\u00e9 - \u00c0 18 heures 30 : - Audition, ouverte \u00e0 la..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Fran\u00e7ois Brottes, Conseiller-ma\u00eetre \u00e0 la Cour des comptes ; M. Jean-Bernard L\u00e9vy, ancien pr\u00e9sident-directeur g\u00e9n\u00e9ral de EDF - Mercredi 14 d\u00e9cembre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7012013350385500161,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Certain(e)s d'entre vous se sont peut-\u00eatre demand\u00e9s un jour d'o\u00f9 sortait l'abaissement de la part du nucl\u00e9aire \u00e0 50% de la production \u00e9lectrique (initialement en 2025 quand Hollande est \u00e9lu pr\u00e9sident, en 2012) figurant dans la Loi de Transition Energ\u00e9tique pour la Croissance Verte de 2015.\n\nCette audition de Fran\u00e7ois Brottes (ancien pr\u00e9sident de la Commission des Affaires Economiques \u00e0 l'Assembl\u00e9e au moment de la discussion et du vote de cette loi, ancien pr\u00e9sident de RTE) donne la r\u00e9ponse. Cet objectif d\u00e9coule uniquement d'un \"jugement de Salomon\" rendu dans l'alliance Verts-PS de 2011, entre ceux qui voulaient un objectif de sortie compl\u00e8te du nucl\u00e9aire, et ceux qui voulaient en garder autant. La n\u00e9gociation a d\u00e9bouch\u00e9 sur ces 50% m\u00e9dians, cens\u00e9s contenter \u00e0 peu pr\u00e8s tout le monde.\n\nMais Brottes dit dans la m\u00eame audition que, devenu pr\u00e9sident de RTE, il n'aura eu de cesse d'expliquer au gouvernement que cet objectif de 50% en 2025, qu'il a fait voter comme artisan de la LTCEV, n'\u00e9tait pas r\u00e9aliste ! Il dit aussi qu'il regrette de ne pas avoir pris l'avis de RTE avant de faire voter la loi... comme quoi de temps en temps \u00e9couter les gens du m\u00e9tier avant de d\u00e9cider plut\u00f4t qu'apr\u00e8s n'est pas n\u00e9cessairement une mauvaise id\u00e9e.\n\nBrottes insiste beaucoup sur le fait que la baisse du nucl\u00e9aire \u00e9tait n\u00e9cessaire pour \"d\u00e9velopper les ENR\", et que cela a \u00e9t\u00e9 \"un succ\u00e8s\". Mais la question ne lui est pas pos\u00e9e de savoir pourquoi taper sur le nucl\u00e9aire \u00e9tait un pr\u00e9requis pour augmenter les ENR, ni pourquoi il \u00e9tait pertinent de remplacer une production \u00e9lectrique sans combustion par une autre, sachant que les \u00e9oliennes et panneaux solaires (et le r\u00e9seau \u00e0 d\u00e9velopper, ce qu'indique aussi Brottes) ne sont ni plus ni moins renouvelables que les centrales nucl\u00e9aires (et pas n\u00e9cessairement moins risqu\u00e9s).\n\nOn apprend aussi qu'un r\u00e9seau avec beaucoup de dispositifs de production r\u00e9partis demande de l'\u00e9lectronique partout, alors que les r\u00e9seaux \u00e9lectriques \"descendants\" et les r\u00e9acteurs nucl\u00e9aires peuvent fonctionner de mani\u00e8re analogique. Personne n'a demand\u00e9 si cela \u00e9tait g\u00eanant ou pas pour la souverainet\u00e9 \u00e9nerg\u00e9tique.\n\nBrottes explique aussi qu'il a \u00e9t\u00e9 \u00e0 l'origine de l'arenh, qui a \u00e9t\u00e9 une mani\u00e8re d'\u00e9viter la scission du parc nucl\u00e9aire entre deux exploitants (autre mani\u00e8re de supprimer le monopole, ce qui \u00e9tait l'objectif europ\u00e9en). \n\nEn fait le mal originel a \u00e9t\u00e9 de faire de l'\u00e9lectricit\u00e9 un produit \"ordinaire\", comme des chaussettes ou des yaourts, devant donc faire l'objet d'un march\u00e9 \"ordinaire\", au passage sans monopole d'aucune sorte. Une fois cette d\u00e9cision prise, il n'y avait que de mauvaises mani\u00e8res de s'en sortir...\n\nDans l'ensemble il faut s'armer de patience pour d\u00e9nicher les faits int\u00e9ressants dans cette audition, assez \"louvoyante\" et o\u00f9 l'absence de r\u00e9ponse claire \u00e0 la question pos\u00e9e est plus la r\u00e8gle que l'exception. Mais la compr\u00e9hension est parfois \u00e0 ce prix !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7012013350385500161,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7012013351413121024,urn:li:activity:7012013351413121024,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7012013351413121024,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7012013351413121024,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7012013351413121024", + "threadId": "activity:7012013351413121024", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012013351413121024", + "urn": "urn:li:activity:7012013351413121024", + "numComments": 205, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7012013351413121024", + "reactionTypeCounts": [ + { + "count": 1085, + "reactionType": "LIKE" + }, + { + "count": 185, + "reactionType": "INTEREST" + }, + { + "count": 142, + "reactionType": "MAYBE" + }, + { + "count": 26, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7012013351413121024", + "numLikes": 1447, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012013351413121024", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1449, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:66641273", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:66641273", + "entityUrn": "urn:li:fs_miniCompany:66641273", + "name": "MyCO2 par Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1594818120745?e=1684972800&v=beta&t=iu0KPu8LLJ9RAfjnT2Ns5LZl33RPKeM9HX6-ZLDA21k", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1594818120745?e=1684972800&v=beta&t=_mCrEcZ-7ykNMvdPjukL2wRv9vwlFKKCFeayuZ86FtM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1594818120745?e=1684972800&v=beta&t=oeC9Hq1Uc2ASP0IP9mQN7GVDE17ikFZ9KCBOFO9D33Y", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQG2GlbS3GKBow/company-logo_" + } + }, + "universalName": "myco2-par-carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:66641273", + "trackingId": "d3RvF0WwTjuJs6du68R80g==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniCompany": { + "objectUrn": "urn:li:company:66641273", + "entityUrn": "urn:li:fs_miniCompany:66641273", + "name": "MyCO2 par Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1594818120745?e=1684972800&v=beta&t=iu0KPu8LLJ9RAfjnT2Ns5LZl33RPKeM9HX6-ZLDA21k", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1594818120745?e=1684972800&v=beta&t=_mCrEcZ-7ykNMvdPjukL2wRv9vwlFKKCFeayuZ86FtM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1594818120745?e=1684972800&v=beta&t=oeC9Hq1Uc2ASP0IP9mQN7GVDE17ikFZ9KCBOFO9D33Y", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQG2GlbS3GKBow/company-logo_" + } + }, + "universalName": "myco2-par-carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:66641273", + "trackingId": "d3RvF0WwTjuJs6du68R80g==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "MyCO2 par Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: MyCO2 par Carbone 4", + "actionTarget": "https://www.linkedin.com/company/myco2-par-carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A66641273" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "28,825 followers" + }, + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:66641273", + "followerCount": 28825, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:66641273", + "following": false, + "trackingUrn": "urn:li:company:66641273" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followCompany" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:7010966247366381569", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7010966247366381569)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7010966247366381569)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/myco2-par-carbone-4_les-statistiques-myco2-nous-avons-activity-7010966247366381569-75z4?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7010966246607192064", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:66641273", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7010966246607192064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "SsRU4RTeBKpIlgJQLUxNeg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQFzjFbp3VZe0g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQFzjFbp3VZe0g", + "artifacts": [ + { + "width": 1080, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1671544609460?e=1679529600&v=beta&t=HN7MObth8zSKWDHOhpWQhIKCAtJoGsXEmWgBDHK0LNo", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1671544609424?e=1679529600&v=beta&t=PLQ2KUCY0Lbtlu-UHVb_LMpB2IXMqQgPDZoJTzr88Bg", + "expiresAt": 1679529600000, + "height": 20 + }, + { + "width": 1080, + "fileIdentifyingUrlPathSegment": "1280/0/1671544609424?e=1679529600&v=beta&t=uf-zSDvZJlRVXc6GFt_mKFtc5KqEHGqt_-gxdxhK3sQ", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1671544609424?e=1679529600&v=beta&t=SItFDRx6lDY3WPEYy1HqROkxGbDhPUQyMzPiVxtYu94", + "expiresAt": 1679529600000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1671544609424?e=1679529600&v=beta&t=PrgPxIql5yVMf21oO0UktYUhxIfDwhFs2eH_i6CZD0w", + "expiresAt": 1679529600000, + "height": 160 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1671544609424?e=1679529600&v=beta&t=0bQ-l63afwzRf7s6bIm-DVpW-p6n8HmXoWdanH69q6Q", + "expiresAt": 1679529600000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQFzjFbp3VZe0g/feedshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7010966246607192064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\ud83d\udc4b\u00a0Les statistiques MyCO2 ! \ud83d\udd22\n\nNous avons l\u2019habitude de demander au d\u00e9but de nos conf\u00e9rences aux participant.e.s comment ils ou elle se situent en termes de connaissance sur le sujet de l\u2019empreinte carbone. \ud83e\udd14\n\nD\u00e9j\u00e0 35 000 personnes sensibilis\u00e9es lors des conf\u00e9rences MyCO2 et nous pouvons d\u00e9j\u00e0 tirer de nombreux et riches enseignements gr\u00e2ce aux statistiques et retours que nous avons suite aux centaines d\u2019ateliers d\u00e9j\u00e0 r\u00e9alis\u00e9s.\n\n\ud83d\udc47\u00a0Quelques chiffres cl\u00e9s \ud83d\udc47\n\n\ud83d\udc49\u00a02 tonnes de CO2eq : c\u2019est la diff\u00e9rence qu\u2019il y a entre l\u2019empreinte carbone d\u2019une personne se disant \u201csans connaissance\u201d \u00e0 une conf\u00e9rence MyCO2 et une personne se disant \u201cbien renseign\u00e9e\u201d (soit une empreinte 20% plus faible).\n\nLa corr\u00e9lation forte qu\u2019il y a entre le niveau de connaissance auquel les participant.e.s s\u2019\u00e9valuent et leur empreinte carbone met en \u00e9vidence le lien puissant qui s\u2019op\u00e8re entre la compr\u00e9hension des enjeux et les comportements quotidiens, entre la connaissance des ordres de grandeur et l\u2019efficacit\u00e9 des actions mises en oeuvre.\n\n\ud83d\udd0e\u00a0La compr\u00e9hension des enjeux physiques et surtout des r\u00e9ponses concr\u00e8tes \u00e0 apporter sont essentielles et surtout efficaces pour faire face au d\u00e9fi commun du changement climatique.\n\n\ud83d\udc49\u00a077% : c\u2019est la part de personnes se disant \u201cnovice\u201d ou \u201csans connaissance\u201d sur le sujet de l\u2019empreinte carbone aux conf\u00e9rences MyCO2 (hors conf\u00e9rences Grand Public). Une grande majorit\u00e9 donc !\n\nPour que le changement soit efficace, il doit \u00eatre collectif et c\u2019est l\u2019objectif de MyCO2 que de s\u2019adresser aux personnes novices sur le sujet afin que l\u2019ensemble de la soci\u00e9t\u00e9 puisse s\u2019emparer de la lutte contre le changement climatique d\u00e8s la fin de la conf\u00e9rence !\n\nSi les pouvoirs publics et les entreprises doivent urgemment s\u2019emparer de la transition \u00e9cologique, celle-ci ne pourra se faire sans une implication et une acceptation forte de la soci\u00e9t\u00e9 civile et des individus eux-m\u00eames.\n\n\u23ec\u00a0Ci-dessous une infographie r\u00e9sumant les principaux chiffres issus des conf\u00e9rences MyCO2 ! \u23ec\n\nD\u2019autres sont \u00e0 venir en 2023, nous les analyserons gr\u00e2ce \u00e0 notre partenariat avec le Laboratoire de Neurosciences Cognitives Computationnelles sous la tutelle de ENS !\n\n\ud83d\udc49\u00a0Vous n\u2019avez pas encore particip\u00e9 \u00e0 une conf\u00e9rence MyCO2 ? Inscrivez-vous \u00e0 notre prochaine conf\u00e9rence grand public gratuite en cliquant ici : https://lnkd.in/eC4d4aSC\n\n\u27a1\ufe0f\u00a0Pour organiser une conf\u00e9rence dans votre structure (entreprise, association\u2026), vous pouvez nous contacter \u00e0 l\u2019adresse myco2@carbone4.com." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7010966246607192064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7010966247366381569,urn:li:activity:7010966247366381569,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7010966247366381569,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7010966247366381569,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7010966247366381569", + "threadId": "activity:7010966247366381569", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010966247366381569", + "urn": "urn:li:activity:7010966247366381569", + "numComments": 47, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7010966247366381569", + "reactionTypeCounts": [ + { + "count": 608, + "reactionType": "LIKE" + }, + { + "count": 72, + "reactionType": "INTEREST" + }, + { + "count": 60, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "EMPATHY" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7010966247366381569", + "numLikes": 771, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010966247366381569", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 771, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:7011460603802230784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7011460603802230784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7011460603802230784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-statistiques-myco2-nous-avons-activity-7011460603802230784-_dhv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7011460603047223296", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7011460603802230784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7011460603047223296", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "SsRU4RTeBKpIlgJQLUxNeg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7011460603047223296,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis maintenant presque 2 ans, Carbone 4 propose aux particuliers (gratuitement) et entreprises (en payant ; \u00e0 un moment il faut bien que quelqu'un paye !) un calculateur d'empreinte carbone personnel un peu particulier, MyCO2 (http://www.myco2.fr). \n\nIl est un peu particulier parce que ce calculateur ne peut pas s'utiliser seul. Il faut n\u00e9cessairement participer \u00e0 une d\u00e9couverte collective, une esp\u00e8ce de carboniques anonymes :), au cours d'une \"conf\u00e9rence interactive\". La raison est que l'effet de groupe lib\u00e8re du stress et favorise le passage \u00e0 l'action (ce qui est bien le but). Et l'interactivit\u00e9 permet aux personnes faisant le calcul de poser toutes sortes de questions sur les modalit\u00e9s de ce dernier.\n\nLors de ces conf\u00e9rences interactives, il est possible de collecter quelques informations (non nominatives \u00e9videmment) sur les participant(e)s. La premi\u00e8re est \u00e9videmment le r\u00e9sultat (combien chaque participant \"p\u00e8se\" en carbone). Mais il y a \u00e9galement la r\u00e9ponse \u00e0 quelques questions pos\u00e9es au d\u00e9but de l'exercice. Et notamment celle-ci : \"comment \u00e9valuez vous votre degr\u00e9 de connaissances sur le changement climatique ?\".\n\nEt le r\u00e9sultat, qui figure ci-dessous, est tr\u00e8s int\u00e9ressant : plus les gens d\u00e9clarent en savoir long sur l'enjeu, plus leur empreinte carbone est basse. Dit autrement, il y a une corr\u00e9lation entre degr\u00e9 de connaissance et action. Comme il est peu probable que l'action ait pr\u00e9c\u00e9d\u00e9 la connaissance, le plus vraisemblable est donc l'inverse : avoir compris le probl\u00e8me pousse \u00e0 s'en occuper.\n\nCe n'est donc pas totalement un hasard - et pas juste un effet du radotage du \u00e0 l'\u00e2ge :) - si la bonne compr\u00e9hension des enjeux est de mes chevaux de bataille, notamment pour les gens qui sont \u00e0 des poste de d\u00e9cision. \n\nEn attendant, si vous n'avez pas d'id\u00e9e de cadeau pour No\u00ebl, offrez (ou offrez vous) la d\u00e9couverte de votre empreinte carbone : c'est assur\u00e9ment un cadeau utile !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7011460603047223296,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7011460603802230784,urn:li:activity:7011460603802230784,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 77, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7011460603802230784,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7011460603802230784,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7011460603802230784", + "threadId": "activity:7011460603802230784", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011460603802230784", + "urn": "urn:li:activity:7011460603802230784", + "numComments": 120, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7011460603802230784", + "reactionTypeCounts": [ + { + "count": 1917, + "reactionType": "LIKE" + }, + { + "count": 151, + "reactionType": "INTEREST" + }, + { + "count": 118, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "PRAISE" + }, + { + "count": 30, + "reactionType": "EMPATHY" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7011460603802230784", + "numLikes": 2280, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011460603802230784", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2280, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7011000497289469952", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7011000497289469952)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7011000497289469952)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_like-an-oilwell-in-your-back-yard-irish-activity-7011000497289469952-lBaZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7011000496417034240", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7011000497289469952", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7011000496417034240", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "6ueobtGSL2W0devS0t+4Sg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7772741583642015129", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676441404779?e=1677240000&v=beta&t=QJx9XZAll547t87K_KEt7Lf8Jzea6PJeiIhRGb6qwFE", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676441404779?e=1677240000&v=beta&t=hbFF7aYHt5jhWRcJnyFFjEkCy1eYUHSVWNhWRulTojg", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676441404780?e=1677240000&v=beta&t=te_tL1-1td7MbVtc8JxqA_SDSXkbBc3_mL8TDBL2UCE", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676441404780?e=1677240000&v=beta&t=uucskdg6QRLhXARlcijneQFmNi9LEVJbEbrJUQ8o01A", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGMeVBfIZGZbw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7772741583642015129)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7772741583642015129)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u2018Like an oilwell in your back yard\u2019: Irish people turn to cutting peat to save on energy bills by theguardian.com", + "actionTarget": "https://www.theguardian.com/world/2022/dec/12/like-an-oilwell-in-your-back-yard-irish-turn-to-cutting-peat-to-save-on-energy-bills?amp" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u2018Like an oilwell in your back yard\u2019: Irish people turn to cutting peat to save on energy bills" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7011000496417034240,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a 2 si\u00e8cles, l'\u00e9mergence du charbon \"de terre\" en Europe a contribu\u00e9 \u00e0 sauver ce qui restait des for\u00eats. A cette \u00e9poque, tout terrain de plaine ou \u00e0 peu pr\u00e8s avait \u00e9t\u00e9 d\u00e9frich\u00e9 pour faire place aux cultures, mais il restait des for\u00eats situ\u00e9es sur des terrains trop pauvres ou trop accident\u00e9s pour \u00eatre facilement utilis\u00e9s pour l'agriculture. Ces for\u00eats \u00e9taient mises \u00e0 rude \u00e9preuve par l'utilisation croissante du bois par les forges et le chauffage des villes.\n\nDepuis que les combustibles fossiles ont \u00e9t\u00e9 utilis\u00e9s en quantit\u00e9s croissantes, les for\u00eats sont partiellement revenues. D'abord la pression sur le bois de feu a baiss\u00e9, ce dernier \u00e9tant remplac\u00e9 d'abord par le charbon (chauffage et cuisson), puis par le gaz pour les m\u00eames usages.\n\nLa productivit\u00e9 \u00e0 l'hectare a fortement augment\u00e9 gr\u00e2ce \u00e0 la m\u00e9canisation et aux intrants (engrais et phytosanitaires), c'est \u00e0 dire gr\u00e2ce au p\u00e9trole et au gaz. Cela permet de produire plus avec moins de surfaces (avec quelques effets de bords sur la biodiversit\u00e9...), et a engendr\u00e9 une \"reprise foresti\u00e8re\" sur d'anciens terrains agricoles ou p\u00e2turages cessant d'\u00eatre exploit\u00e9s.\n\nMais voil\u00e0 : le stress croissant sur les \u00e9nergies fossiles est en train d'inverser la donne. Cet article du Guardian explique que les irlandais reviennent \u00e0 la tourbe (le pire en mati\u00e8re d'\u00e9missions de CO2 par unit\u00e9 d'\u00e9nergie) parce que le gaz et le p\u00e9trole sont plus chers (car moins disponibles), et les allemands au bois (mais ca doit probablement \u00eatre aussi vrai pour les fran\u00e7ais), avec dans ce dernier cas du \"braconnage\", c'est \u00e0 dire des pr\u00e9l\u00e8vements ill\u00e9gaux qui augmentent.\n\nIl \u00e9tait \u00e0 craindre que, au moment o\u00f9 les combustibles fossiles feraient d\u00e9faut, cela ferait revenir la pression sur le bois et la biomasse en g\u00e9n\u00e9ral que charbon, p\u00e9trole et gaz avaient supprim\u00e9. C'est exactement ce que l'on constate actuellement : les m\u00e9nages veulent se chauffer, les voitures rouler, les avions voler,et l'industrie tourner \u00e0 la biomasse, et tout cela est en train de cr\u00e9er une pression croissante sur le vivant.\n\nSi nous voulons garder des for\u00eats dans un contexte de pression climatique croissante et de pression \u00e9nerg\u00e9tique croissante, il va falloir \u00e0 la fois (re)planter les bonnes esp\u00e8ces, bien g\u00e9rer les usages aval pour r\u00e9partir au mieux la ressource rare, et... probablement embaucher quelques gardes forestiers de plus." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7011000496417034240,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7011000497289469952,urn:li:activity:7011000497289469952,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 66, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7011000497289469952,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7011000497289469952,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7011000497289469952", + "threadId": "activity:7011000497289469952", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011000497289469952", + "urn": "urn:li:activity:7011000497289469952", + "numComments": 125, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7011000497289469952", + "reactionTypeCounts": [ + { + "count": 1434, + "reactionType": "LIKE" + }, + { + "count": 236, + "reactionType": "INTEREST" + }, + { + "count": 197, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7011000497289469952", + "numLikes": 1907, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011000497289469952", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1908, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7010689509977653249", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7010689509977653249)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7010689509977653249)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cop15-les-entreprises-incit%C3%A9es-%C3%A0-divulguer-activity-7010689509977653249-f_XO?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7010689509080080384", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7010689509977653249", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7010689509080080384", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "EESvJ7f3HmOqN+ih3Z0wqw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7320927171555309572", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676619110204?e=1677240000&v=beta&t=CB0gpxrmH1R4SM3nooTIhQ6IzCevzcEjOQh3mRUCUbc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676619110204?e=1677240000&v=beta&t=dsQuT7hytRLXEKEk1L7I0RuEI42KTOvIABGlKYx2YYc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676619110204?e=1677240000&v=beta&t=AjmCmkJuthef54rsxN4KxYxKRRsBeynKqsoDHkB3z1Y", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676619110204?e=1677240000&v=beta&t=3SOOR8Ld7tkJ9GZ_vvJkSpMn1l-Jm0MWIWX7P0sdeA8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEfmciC_NDtuQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7320927171555309572)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7320927171555309572)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: COP15 : les entreprises incit\u00e9es \u00e0 divulguer leur impact sur la biodiversit\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/enjeux-internationaux/cop15-les-entreprises-incitees-a-divulguer-leur-impact-sur-la-biodiversite-1890665" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "COP15\u00a0: les entreprises incit\u00e9es \u00e0 divulguer leur impact sur la biodiversit\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7010689509080080384,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Fin du monde contre fin du mois : l'agenda pr\u00e9sidentiel a factuellement pench\u00e9 du deuxi\u00e8me c\u00f4t\u00e9 pendant la semaine qui vient de s'\u00e9couler. La pr\u00e9servation contre la fin du monde - comprendre la d\u00e9fense de la biodiversit\u00e9 - n'aura justifi\u00e9 aucun d\u00e9placement de haut niveau pour soutenir les n\u00e9gociateurs fran\u00e7ais et europ\u00e9ens, pourtant cr\u00e9dit\u00e9s du succ\u00e8s obtenu au Canada par notre premier magistrat sur ce r\u00e9seau (https://bit.ly/3FDV9P2 ). \n\nLe Qatar et le foot (\u00e0 moins que ce ne soient le foot et le Qatar) auront donc vu deux fois les roues de l'avion pr\u00e9sidentiel (dont Sud Ouest a \u00e9valu\u00e9 l'empreinte carbone : https://bit.ly/3Webuky ) en une semaine, la cote de popularit\u00e9 et le gaz ayant manifestement des charmes que les papillons et coraux n'ont pas.\n\nPourtant, si l'on replace les choses dans le bon ordre, sur une plan\u00e8te sans esp\u00e8ces v\u00e9g\u00e9tales et animales (c'est cela la biodiversit\u00e9), il va \u00eatre un peu difficile d'organiser des tournois de foot... et tout aussi difficile de faire tourner une \u00e9conomie. Incidemment, l'article des Echos ci-dessous contient la phrase \"Il faut rappeler que\u00a0plus de la moiti\u00e9 du PIB mondial est tributaire de la biodiversit\u00e9 et de ses services.\". Objection votre honneur : c'est 100% puisque sans esp\u00e8ces animales et v\u00e9g\u00e9tales il n'y a plus d'humanit\u00e9 et plus de PIB du tout !\n\nLa presse qualifie cet accord de succ\u00e8s parce que les aires prot\u00e9g\u00e9es doivent monter \u00e0 30% de la surface terrestre. Mais la vraie victoire, elle sera \u00e0 chercher, ou pas, dans les r\u00e9glementations nationales - ou \u00e9ventuellement les accords commerciaux - qui imposeront des obligations concr\u00e8tes aux acteurs domestiques. \n\nCar on peut appeler \"prot\u00e9g\u00e9e\" une zone qui en pratique ne l'est pas (par exemple une aire marine prot\u00e9g\u00e9e qui est chalut\u00e9e comme si elle ne l'\u00e9tait pas), ou encore cr\u00e9er une r\u00e9serve avec 3 gardes et demi pour des milliers de km2, qui restent en pratique soumis aux m\u00eames pressions qu'avant ou presque.\n\nLes obligations de transparence cr\u00e9\u00e9es pour les entreprises sont une \u00e9tape bienvenue, mais le Diable sera aussi dans les d\u00e9tails. Pour le moment, les m\u00e9thodes sont \u00e9mergentes (nous le savons \u00e0 Carbone 4 pour travailler dessus !), et les moyens allou\u00e9s par les acteurs \u00e9conomiques pour \"bien compter\" les pressions environnementales (biodiversit\u00e9 ou climat) restent bien plus faibles que pour les euros. On peut aller en prison quand on compte l'argent de travers (fraude fiscale, comptabilit\u00e9 non tenue, etc), mais c'est rarement le cas quand on compte le CO2 ou la biodiversit\u00e9 de travers !\n\nLe vrai s\u00e9rieux des pays ratificataires se mesurera donc \u00e0 l'aune de ce qu'ils seront capables d'imposer \u00e0 leurs acteurs domestiques. Pour la biodiversit\u00e9, comme pour le climat, il va falloir y consacrer un peu plus de temps que celui de simples f\u00e9licitations adress\u00e9es entre deux avions pour aller voir un match." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7010689509080080384,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7010689509977653249,urn:li:activity:7010689509977653249,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 92, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7010689509977653249,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7010689509977653249,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7010689509977653249", + "threadId": "activity:7010689509977653249", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010689509977653249", + "urn": "urn:li:activity:7010689509977653249", + "numComments": 184, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7010689509977653249", + "reactionTypeCounts": [ + { + "count": 4177, + "reactionType": "LIKE" + }, + { + "count": 238, + "reactionType": "APPRECIATION" + }, + { + "count": 201, + "reactionType": "MAYBE" + }, + { + "count": 151, + "reactionType": "PRAISE" + }, + { + "count": 107, + "reactionType": "INTEREST" + }, + { + "count": 46, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7010689509977653249", + "numLikes": 4920, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010689509977653249", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4921, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7010203411170131968", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7010203411170131968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7010203411170131968)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_executive-summary-coal-2022-analysis-activity-7010203411170131968-THNI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7010203410385752064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7010203411170131968", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7010203410385752064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "u3ufJiqEixek5xODGamQIg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8533787876617618175", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676530833333?e=1677240000&v=beta&t=OqEF3547iRFk_rZ0ROxfc6QhjMobGu_PeYlxXAu8GnU", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676530833333?e=1677240000&v=beta&t=D6zVPesylIe-wCG1VoA1ykCS8f_-eMxSgl_hRSS5CUY", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676530833333?e=1677240000&v=beta&t=kMWM6ZKCd2U0WsDH3SBWOiQ8VGkrdSj75gqASpMTibs", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676530833334?e=1677240000&v=beta&t=h-r8ZWo1sYblEqd_pl-Lm1oX-bPYX152Osaw3TaHKyE", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF8yJBuWzqvvw/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8533787876617618175)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8533787876617618175)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "iea.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Executive summary \u2013 Coal 2022 \u2013 Analysis - IEA by iea.org", + "actionTarget": "https://www.iea.org/reports/coal-2022/executive-summary" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Executive summary \u2013 Coal 2022 \u2013 Analysis - IEA" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7010203410385752064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce n'est pas une bonne nouvelle pour le climat : la consommation mondiale de charbon en 2022 devrait \u00eatre la plus haute depuis le d\u00e9but de l'utilisation de ce combustible. \n\nEn cause, il y a la tr\u00e8s forte hausse du prix du gaz liqu\u00e9fi\u00e9 qui a suivi les troubles en Europe (laquelle devait compenser au mieux par du GNL les importations disparues d'une partie du gaz russe), et qui a conduit \u00e0 un basculement du gaz vers le charbon pour une partie de la production \u00e9lectrique dans le monde. Rappelons qu'environ 2/3 du charbon plan\u00e9taire sert \u00e0 produire de l'\u00e9lectricit\u00e9 (voir https://bit.ly/3uXedCM - qui date un peu mais l'essentiel reste valable - pour avoir un aper\u00e7u de ses usages dans le monde).\n\nL'AIE publie aussi un graphique qui d\u00e9compose la variation de la production \u00e9lectrique dans le monde de 2021 \u00e0 2022. Les deux \"moteurs\" de la hausse de la consommation de charbon dans ce secteur sont la hausse de la consommation \u00e9lectrique tout court et... la baisse du nucl\u00e9aire. \n\nDans un contexte de stress sur l'approvisionnement en gaz (qui \u00e9tait envisageable pour la p\u00e9riode actuelle \u00e0 d\u00e9faut d'\u00eatre certain), l'arr\u00eat des r\u00e9acteurs de nos voisins du Nord a en particulier directement d\u00e9bouch\u00e9 sur une hausse de la pire mani\u00e8re de produire de l'\u00e9lectricit\u00e9 (voir https://bit.ly/3j60iYh ), ce qui se constate assez facilement en ce moment en regardant par exemple la d\u00e9composition de la production \u00e9lectrique disponible sur https://lnkd.in/ecWPwUDV\n\nL'AIE fournit aussi un pronostic d'ici \u00e0 2025. Dans ce dernier, la hausse attendue de la consommation \u00e9lectrique n'est pas assur\u00e9e en totalit\u00e9 par les renouvelables, et il y a aussi un poil d'augmentation de charbon. Certes la hausse est dans l'\u00e9paisseur du trait selon cette projection, mais si ce combustible solide suivait le chemin demand\u00e9 par la \"trajectoire 2\u00b0C\" il faudrait que sa consommation baisse de 14% (dans le monde) en 3 ans. \n\nAppliqu\u00e9e \u00e0 l'\u00e9lectricit\u00e9, cette baisse signifie 1450 TWh (\u00e9lectriques) de production au charbon en moins en 3 ans (1 TWh = un milliard de kWh). Par ailleurs l'AIE envisage une hausse de la demande \u00e9lectrique de 2500 TWh sur la m\u00eame p\u00e9riode. Pour que l'\u00e9quation soit tenue il faudrait donc 4000 TWh de production non carbon\u00e9e en plus, soit :\n- un doublement de l'hydro\n- ou une multiplication par presque 5 du solaire (qui a augment\u00e9 d'environ 14% par an de 2018 \u00e0 2021)\n- ou une multiplication par 3 de l'\u00e9olien (qui a augment\u00e9 d'environ 10% par an de 2018 \u00e0 2021)\n- ou une multiplication par 2,5 du nucl\u00e9aire (qui est stable de 2018 \u00e0 2021).\n\nM\u00eame en combinant tout cela, on voit le formidable d\u00e9calage entre les discours de d\u00e9carbonation et les actes. Si nous voulons 2\u00b0C, il va surtout falloir consommer moins d'\u00e9lectricit\u00e9 dans le monde...\n\nNB : la photo d'illustration choisie par l'AIE est assez mal venue : il aurait mieux valu montrer une mine ayant remplac\u00e9 la v\u00e9g\u00e9tation, ou un train traversant un paysage dess\u00e9ch\u00e9, cela aurait \u00e9t\u00e9 plus \u00e0 propos ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7010203410385752064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7010203411170131968,urn:li:activity:7010203411170131968,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 99, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7010203411170131968,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7010203411170131968,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7010203411170131968", + "threadId": "activity:7010203411170131968", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010203411170131968", + "urn": "urn:li:activity:7010203411170131968", + "numComments": 190, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7010203411170131968", + "reactionTypeCounts": [ + { + "count": 1309, + "reactionType": "LIKE" + }, + { + "count": 330, + "reactionType": "INTEREST" + }, + { + "count": 300, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7010203411170131968", + "numLikes": 1964, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010203411170131968", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1966, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7009917420706365440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7009917420706365440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7009917420706365440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_entreprises-audacieuses-soutenez-le-shift-activity-7009917420706365440-76OG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7009917419930451969", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7009917420706365440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7009917419930451969", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "x5xEd/ZcPd4piK6Wjpni5A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7299614099246559126", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675430869943?e=1677240000&v=beta&t=m_h85Ptd4lKTv5NPZARCY0adv4w-azik0xvrjR6v9ao", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675430869943?e=1677240000&v=beta&t=V2X9Ay4pzI4N0CzzeB2292jCgMtGcN2ngvUzdqNii0g", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675430869944?e=1677240000&v=beta&t=p6V4mi778C-WwgNn7VbU2gdm8eGarQyWC9blWstM_dc", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675430869944?e=1677240000&v=beta&t=1AmioKJnSLeBXs61e_Su_q4HLcwfcKPRkHhhwN8QXTY", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHRAzXBsYbayg/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7299614099246559126)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7299614099246559126)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Entreprises audacieuses, soutenez le Shift Project ! by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/shift-appel-entreprises/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Entreprises audacieuses, soutenez le Shift Project !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7009917419930451969,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9cembre, c'est l'\u00e9poque du courrier presque du coeur au P\u00e8re No\u00ebl ! C\u00f4t\u00e9 Shift Project, et m\u00eame si nous savons que les rennes commencent \u00e0 souffrir du r\u00e9chauffement climatique, nous avons aussi un souhait sur le contenu de la hotte. Il s'appelle un(e) chef(fe) d'entreprise militant(e). \n\nPlus pr\u00e9cis\u00e9ment, ce que nous souhaiterions trouver sous le sapin, ce sont des entreprises membres, c'est \u00e0 dire qui adh\u00e8rent \u00e0 l'association et qui versent une cotisation. Cette derni\u00e8re est d'abord bienvenue parce que nous avons en permanence plus d'id\u00e9es que de moyens. Et, quand nous sommes dans une course contre la montre, avoir les moyens de creuser ses id\u00e9es est plus utile avant les ennuis qu'apr\u00e8s !\n\nUne entreprise qui adh\u00e8re c'est aussi un acteur \u00e9conomique de plus qui \"soutient la cause\". Il n'est pas n\u00e9cessaire de soutenir l'int\u00e9gralit\u00e9 de ce que nous faisons ou disons pour adh\u00e9rer : il suffit juste de consid\u00e9rer que notre existence est globalement utile \u00e0 la collectivit\u00e9, sans \u00eatre frontalement antagonistes des activit\u00e9s du membre concern\u00e9.\n\nNous ne cherchons donc pas \u00e0 avoir toute entreprise de ce pays comme membre : juste celles qui ont sinc\u00e8rement envie de nous voir travailler, proposer et exister dans le d\u00e9bat public, parce que c'est leur int\u00e9r\u00eat, ou parce que leurs instances dirigeantes sont profond\u00e9ment convaincues que de toute fa\u00e7on \"nous n'y couperons pas\", et \u00e0 ce moment autant le faire en ayant r\u00e9fl\u00e9chi le plus possible au plan d'ensemble (ce qui est notre ambition).\n\nOn pourra nous reprocher une collusion avec le grand capital. C'est in\u00e9vitable d\u00e8s lors que nous avons choisi une position moins pure que de protester de l'ext\u00e9rieur : nous avons cibl\u00e9 le monde \u00e9conomique, et nous cherchons \u00e0 y mobiliser \"de l'int\u00e9rieur\". C'est moins visible et plus ingrat, mais c'est aussi l\u00e0 que se gagnent une partie des batailles. Nos membres acceptent aussi que nous les asticotions un peu de temps en temps : pour progresser, il faut sortir de sa zone de confort.\n\nOn pourra aussi nous reprocher de ne pas \u00eatre \u00e0 la hauteur de l'enjeu, puisque la situation globale continue \u00e0 \u00e9voluer dans le mauvais sens. Mais, tant qu'il n'y a pas de plan B, il n'y a aucune chance de voir l'\u00e9conomie se r\u00e9orienter : vers quoi le ferait-elle ? Avoir des propositions op\u00e9rationnelles n'est pas suffisant, mais c'est assur\u00e9ment n\u00e9cessaire.\n\nEn 2022, le budget du Shift Project aura \u00e9t\u00e9 de 2 millions. Avec les Shifters, notre force de frappe est multipli\u00e9e par 2 ou 3, mais cela reste faible face aux milliards qui vont, de par le monde, dans la recherche \u00e9conomique \"traditionnelle\", ou aux centaines de milliards qui vont dans la recherche \"purement technologique\", qui ne suffira pas, loin s'en faut, \u00e0 nous faire atterrir en douceur.\n\nSi vous avez le carnet de ch\u00e8ques de votre entreprise, donc, et que vous pensez que quelques cervelles de plus mobilis\u00e9es sur la d\u00e9carbonation ne sont pas de trop, vous savez ce qui nous ferait plaisir sous le sapin !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7009917419930451969,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7009917420706365440,urn:li:activity:7009917420706365440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 56, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7009917420706365440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7009917420706365440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7009917420706365440", + "threadId": "activity:7009917420706365440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009917420706365440", + "urn": "urn:li:activity:7009917420706365440", + "numComments": 147, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7009917420706365440", + "reactionTypeCounts": [ + { + "count": 1848, + "reactionType": "LIKE" + }, + { + "count": 234, + "reactionType": "APPRECIATION" + }, + { + "count": 45, + "reactionType": "EMPATHY" + }, + { + "count": 25, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7009917420706365440", + "numLikes": 2169, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009917420706365440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2170, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7009466059044847616", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7009466059044847616)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7009466059044847616)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_publication-former-une-finance-au-service-activity-7009466059044847616--Tgb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7009466058004692993", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7009466059044847616", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7009466058004692993", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "ksxDP2osc8hgFd0qNpgDjw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7418578237810237887", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676404361478?e=1677240000&v=beta&t=ggVaGavtFimpISphgTljo5T1Q7-bc_3fVtRxWBQdQgo", + "expiresAt": 1677240000000, + "height": 354 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676404361478?e=1677240000&v=beta&t=vTW5uDijW_OKWXGcmqoDHbSpWOduH18IYRhIu4cjuFk", + "expiresAt": 1677240000000, + "height": 361 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676404361478?e=1677240000&v=beta&t=jb---DEVZ3d_-zpPk29aQRoD3RlYDiSOPms4p5yO-L4", + "expiresAt": 1677240000000, + "height": 70 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676404361479?e=1677240000&v=beta&t=htDAq_fW_x8qkoafME6SdV-MReJMDlXj3WEXrTt5la8", + "expiresAt": 1677240000000, + "height": 212 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGERsOAV9mnkA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7418578237810237887)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7418578237810237887)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [Publication] Former une finance au service de la transition by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/climatsup-finance-rapport-final/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[Publication] Former une finance au service de la transition" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7009466058004692993,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 268, + "length": 14, + "miniProfile": { + "firstName": "Bruno", + "lastName": "Le Maire", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "occupation": "Ministre de l\u2019\u00c9conomie, des Finances et de la Souverainet\u00e9 industrielle et num\u00e9rique", + "objectUrn": "urn:li:member:489338904", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1615820384690?e=1681948800&v=beta&t=1lSONwEqNZ6YCfsSa_SSdMyy3lRIBlt7HnIa8FhbD_0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1615820384690?e=1681948800&v=beta&t=mXrkcvswYDvA5nxrWnHwv0uRHbVbSrbb-YTCHNh3hZs", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFtlzemSILDlQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "brunolemaire", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650470576103?e=1681948800&v=beta&t=grYiuKFOw0Vps9r0gskTHNlsABqKydJY1BD9PqrCOZE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650470576103?e=1681948800&v=beta&t=_dq5B-XcARKywCPZ39sHI46v2wiioUaRLXHB6EjQEZA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650470576103?e=1681948800&v=beta&t=hpGqyzWjIXtO01PmwOzhVATdVIHajDaeNdSiiN6I2KY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650470576103?e=1681948800&v=beta&t=sDT3g5ZnR6kL5Ks0S37qtLS2Z-UNhM119fiXH0t1h8I", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQH2hSTPjrAuKw/profile-displayphoto-shrink_" + } + }, + "trackingId": "nizF4TQvRbaaHE3Qop30Eg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 286, + "length": 27, + "miniProfile": { + "firstName": "Fran\u00e7ois Villeroy", + "lastName": "de Galhau", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAC9b73YBapktRkPFyw1DZFtDGlXkCYd1JCI", + "occupation": "Governor of the Banque de France", + "objectUrn": "urn:li:member:794554230", + "entityUrn": "urn:li:fs_miniProfile:ACoAAC9b73YBapktRkPFyw1DZFtDGlXkCYd1JCI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1649147062675?e=1681948800&v=beta&t=MsbRBiX6P0n7C6hxrlDxYJwS6ieVrOjEfj2KRFU3hh4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1649147062675?e=1681948800&v=beta&t=DcwQYEuVGJzz1tvBJBv2-DXkpufPU_frG7t-VMMsNAU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQEr5GQrsYSKbQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "francois-villeroy", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1616086237471?e=1681948800&v=beta&t=2bcB6ZoXIBdEa4LUkoZS2GM-9SjRon1R_KN31hVLsiI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1616086237471?e=1681948800&v=beta&t=YSle_dAUmLeMv4MynvXNkPyYF0uRoiiRxB1oF1ATgUg", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1616086237471?e=1681948800&v=beta&t=kFX3nSgwWyA3wJNHnRsGEM2QXhDegP89vSd1BRd9eNU", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1616086237471?e=1681948800&v=beta&t=VF9lRNFYP1C72-B7C7iVqwxiX4SPjX4bQKD7_VxwATc", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHXvQJDAmH7dA/profile-displayphoto-shrink_" + } + }, + "trackingId": "qJxbVqL2Tw6px2RTyPON0g==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "D\u00e8s que l'on parle d'argent, cela int\u00e9resse du monde :) : pour la pr\u00e9sentation du rapport du Shift Project sur l'int\u00e9gration des enjeux environnementaux dans la formation des futurs (et actuels) salari\u00e9s du monde financier, avaient fait le d\u00e9placement jusqu'\u00e0 l'amphi Bruno Le Maire et Fran\u00e7ois Villeroy de Galhau, entre autres.\n\nNB : Pour celles et ceux qui n'ont pas regard\u00e9 cette pr\u00e9sentation la vid\u00e9o est disponible sur Facebook : https://lnkd.in/eAWNaJKd (aller directement \u00e0 21 minutes du d\u00e9but, car il y a eu un peu de retard, et avant c'est juste un plan fixe sur l'image ayant servi \u00e0 l'annonce).\n\nLe rapport en question a fait l'objet d'une pr\u00e9sentation synth\u00e9tique, mais vous pouvez d'ores et d\u00e9j\u00e0 le t\u00e9l\u00e9charger sur la page d\u00e9di\u00e9e du site du Shift Project (lien ci-dessous) et voir quelles sont nos propositions pour les futurs employ\u00e9s du grand (et du petit, et parfois public) capital.\n\nDeux chiffres essentiel r\u00e9sument l'avant et apr\u00e8s :\n\n- actuellement, sur 1400 cursus (de formation de futurs \"financiers\") examin\u00e9s, seuls 5% int\u00e8grent les enjeux \u00e9cologiques de mani\u00e8re acceptable dans l'enseignement dispens\u00e9, et c'est essentiellement pour des personnes qui suivent un parcours sp\u00e9cialis\u00e9 dans l'extrafinancier. Ailleurs il n'y a rien, ou quasi.\n\n- pour commencer \u00e0 disposer d'une compr\u00e9hension acceptable des enjeux (changement climatique, biodiversit\u00e9, ressources min\u00e9rales, etc), et de la boite \u00e0 outils pour \"penser syst\u00e8me\" et arbitrer les conflits d'objectifs, il faut compter un peu plus de 150 heures de formation. \n\nComme les \u00e9pisodes pr\u00e9c\u00e9dents pour les ing\u00e9nieurs et les gestionnaires, ce rapport aborde des questions tr\u00e8s pratiques, comme par exemple la formation ou le recrutement des enseignants, la conception d'une maquette p\u00e9dagogique, la question des classements, et plein d'autres aspects concrets auxquels est confront\u00e9 tout responsable d'\u00e9tablissement de bonne volont\u00e9.\n\nIl ne se passe d\u00e9sormais plus un jour sans annonce de verdissement dans le secteur financier. Mais pour passer des d\u00e9clarations aux actes il y a des \u00e9tapes incontournables : \u00eatre capable d'inclure la question environnementale (et en particulier climatique) dans les processus du quotidien, avoir des seuils et des objectifs servis par ces processus, et \u00eatre capable d'arbitrer les conflits d'objectifs qui sont in\u00e9vitables d\u00e8s qu'il y a r\u00e9orientation strat\u00e9gique.\n\nCet ensemble demande notamment (mais pas que) des salari\u00e9s correctement form\u00e9s sur les enjeux et les m\u00e9thodes pour les inclure dans les processus. Ce qui a \u00e9t\u00e9 pr\u00e9sent\u00e9 hier soir n'est donc pas suffisant, mais \u00e0 l'\u00e9vidence c'est n\u00e9cessaire : on peut douter de la cr\u00e9dibilit\u00e9 d'entreprises du secteur financier qui ne se pr\u00e9occuperaient pas de la mont\u00e9e en comp\u00e9tence de l'ensemble de leurs salari\u00e9s (c'est bien l'objet du rapport) et pas juste de leur \u00e9quipe RSE. Au travail !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7009466058004692993,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7009466059044847616,urn:li:activity:7009466059044847616,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 52, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7009466059044847616,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7009466059044847616,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7009466059044847616", + "threadId": "activity:7009466059044847616", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009466059044847616", + "urn": "urn:li:activity:7009466059044847616", + "numComments": 75, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7009466059044847616", + "reactionTypeCounts": [ + { + "count": 863, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 57, + "reactionType": "PRAISE" + }, + { + "count": 37, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7009466059044847616", + "numLikes": 1040, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009466059044847616", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1041, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7009114386082504704", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7009114386082504704)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7009114386082504704)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_crise-%C3%A9nerg%C3%A9tique-leurope-se-pr%C3%A9pare-d%C3%A9j%C3%A0-activity-7009114386082504704-gMq1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7009114385205854208", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7009114386082504704", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7009114385205854208", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "8skZrFduRrysR4bZEZZlbw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7528916263422900654", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676110814399?e=1677240000&v=beta&t=iMYIDP4KBmxF4sHs0X5IXrMrH9JOnheOo-m2n3GhVjQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676110814399?e=1677240000&v=beta&t=26im_LCLEijHzcKAaxsquluLnUasTERrYQp3x3q-WMY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676110814399?e=1677240000&v=beta&t=aPI9FGrnvib74KBBeLKFA8I4lxQf1rRZvnaUE84q1sA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676110814399?e=1677240000&v=beta&t=QLEdgJuTWT968aMcmnIa_lFAOTTMcDajMBTKRehrTxA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHY4iSuylKinw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7528916263422900654)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7528916263422900654)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Crise \u00e9nerg\u00e9tique : l'Europe se pr\u00e9pare d\u00e9j\u00e0 \u00e0 un hiver 2023 tr\u00e8s difficile by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/crise-energetique-leurope-se-prepare-deja-a-un-hiver-2023-tres-difficile-1888396" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Crise \u00e9nerg\u00e9tique\u00a0: l'Europe se pr\u00e9pare d\u00e9j\u00e0 \u00e0 un hiver\u00a02023 tr\u00e8s difficile" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7009114385205854208,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Commission est raccord avec The Shift Project, m\u00eame si c'est pour tirer une forme de signal d'alarme (https://lnkd.in/eVVGtZCc ) : la situation gazi\u00e8re actuelle ne fait qu'annoncer un avenir qui sera probablement de plus en plus compliqu\u00e9 \u00e0 g\u00e9rer, et ce d\u00e8s l'hiver prochain.\n\nLors d'un hiver \"normal\", le gaz utilis\u00e9 provient de deux sources :\n- les stocks qui ont \u00e9t\u00e9 constitu\u00e9s pendant l'\u00e9t\u00e9, \u00e0 un moment o\u00f9 l'approvisionnement (via gazoduc ou GNL) d\u00e9passe la consommation\n- mais aussi du gaz qui continue d'\u00eatre achemin\u00e9 en continu par les m\u00eames moyens.\n\nAvant la guerre en Ukraine, le gaz russe repr\u00e9sentait 40% des approvisionnement de l'Union. D\u00e9sormais Nordstream est hors service (il avait une capacit\u00e9 de 25% de la consommation europ\u00e9enne environ), et seul subsiste l'approvisionnement via le gazoduc qui passe par l'Ukraine... qui est un point d'interrogation. On peut tr\u00e8s bien imaginer que d\u00e8s que les russes auront r\u00e9alis\u00e9 les infrastructures physiques leur permettant de commercer avec la Chine, cet approvisionnement l\u00e0 aussi puisse baisser ou dispara\u00eetre (car il permet aussi aux ukrainiens d'avoir du gaz).\n\nAvant m\u00eame que cette hypoth\u00e8que ne se concr\u00e9tise, la faiblesse de l'approvisionnement \"en continu\" depuis la guerre pourrait obliger les europ\u00e9ens \u00e0 compl\u00e8tement vider les stocks pour passer l'hiver, et cette m\u00eame faiblesse nous emp\u00eacher de disposer d'assez de gaz pou faire face \u00e0 la demande l'hiver prochain.\n\nIncidemment cette faiblesse de l'approvisionnement en gaz devrait maintenir des prix de march\u00e9 \u00e9lev\u00e9s, et, \u00e0 \"market design\" identique sur l'\u00e9lectricit\u00e9, maintenir des prix tr\u00e8s \u00e9lev\u00e9s pour l'\u00e9lectricit\u00e9 europ\u00e9enne.\n\nFace \u00e0 cela, les mesures palliatives sur l'offre sont lentes : plus d'ENR (ou de nucl\u00e9aire) demande du temps, outre que les ENR \u00e9lectriques non pilotables concourent peu \u00e0 la s\u00e9curit\u00e9 d'approvisionnement (il suffit de regarder https://lnkd.in/eRvA7w-a depuis une semaine pour voir que l'Allemagne - et nous via importations pour une petite partie - tourne fortement au charbon parce qu'il y a peu de soleil et peu de vent depuis une semaine). \n\nLes mesures \"purement techniques\" sur la demande sont aussi lentes \u00e0 mettre en place : on ne peut pas multiplier par 10 le nombre d'op\u00e9rations lourdes de r\u00e9novation des b\u00e2timents \"comme cela\".\n\nSi la baisse est significative, il y a donc fort \u00e0 parier que ce sont des \"mesures rapides\" sur la demande qui vont devoir faire le job (car de fait on ne peut pas consommer un gaz qui n'existe pas !). Baisse du thermostat, de la consommation \u00e9lectrique et de la production industrielle sont donc \u00e0 envisager. Il faut malheureusement aussi se pr\u00e9parer \u00e0 cela." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7009114385205854208,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7009114386082504704,urn:li:activity:7009114386082504704,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7009114386082504704,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7009114386082504704,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7009114386082504704", + "threadId": "activity:7009114386082504704", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009114386082504704", + "urn": "urn:li:activity:7009114386082504704", + "numComments": 117, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7009114386082504704", + "reactionTypeCounts": [ + { + "count": 751, + "reactionType": "LIKE" + }, + { + "count": 170, + "reactionType": "INTEREST" + }, + { + "count": 140, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7009114386082504704", + "numLikes": 1069, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009114386082504704", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1069, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7008752503869554688", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7008752503869554688)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7008752503869554688)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lunion-europ%C3%A9enne-instaure-la-premi%C3%A8re-taxe-activity-7008752503869554688-Ptv2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7008752502338650112", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7008752503869554688", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7008752502338650112", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "VtazRCc5JwT0bzG9O8kQPA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7495116679254268835", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675940365622?e=1677240000&v=beta&t=5tzIuc2O4zjPw3q30H9c-MTxNCZ3mw3Pmh4sbFDiZNM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675940365622?e=1677240000&v=beta&t=YHYkXuI2AyJz_ZibrFCXYgx2cnWzyi8Z4katx4D3JXY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675940365622?e=1677240000&v=beta&t=OEJja4MPtkeDK59yKWGBXiyibDbWbKD6GhOMiZzVtgM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675940365623?e=1677240000&v=beta&t=HuPrAXYSTqKU0a4_mB7nU1NQ0j1RYvF8r47YBYYfG0Q", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE2Fqr-9jW6fg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7495116679254268835)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7495116679254268835)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'Union europ\u00e9enne instaure la premi\u00e8re taxe carbone aux fronti\u00e8res au monde by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/climat-le-parlement-europeen-adopte-la-taxe-carbone-aux-frontieres-1888558" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'Union europ\u00e9enne instaure la premi\u00e8re taxe carbone aux fronti\u00e8res au monde" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7008752502338650112,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Union europ\u00e9enne vient de se doter d'un m\u00e9canisme pour prot\u00e9ger les industriels du continent contre leurs comp\u00e9titeurs \u00e9trangers qui n'ont pas \u00e0 payer pour leurs \u00e9missions de gaz \u00e0 effet de serre. Cette mesure est r\u00e9clam\u00e9e depuis longtemps par les milieux \u00e9conomiques au motif - l\u00e9gitime dans son principe - que, pour des produits soumis \u00e0 la concurrence internationale, payer pour le CO2 rench\u00e9rit les couts face \u00e0 la concurrence.\n\nIl y a certes quelques secteurs qui crient un peu fort avant m\u00eame d'avoir mal. Par exemple le ciment voyage peu, et les \u00e9changes internationaux sont faibles. Mais pour d'autres produits de base - et a fortiori manufactur\u00e9s - c'est plut\u00f4t la r\u00e8gle. L'intention europ\u00e9enne est donc pertinente.\n\nRevenons un peu sur les quotas : ils sont attribu\u00e9s site par site (et non par entreprise) pour un peu plus de 10.000 sites tr\u00e8s \u00e9missifs (centrales \u00e9lectriques, cimenteries, aci\u00e9ries, etc). \n\nDepuis 2013 la les quotas sont vendus aux ench\u00e8res. En d\u00e9but de p\u00e9riode (car les quotas sont valables pour une p\u00e9riode de quelques ann\u00e9es), la Commission permet \u00e0 chaque site concern\u00e9 de se procurer des autorisations administratives d'\u00e9mettre (appel\u00e9es quotas), qui sont payants (vendus aux ench\u00e8res), et disponibles en quantit\u00e9 limit\u00e9 pour un site donn\u00e9 (https://bit.ly/3YlMJ7m ).\n\nC'est donc payant... mais il y a plein de d\u00e9rogations permettant d'avoir ces m\u00eames quotas gratuitement : pour les sites tr\u00e8s expos\u00e9s \u00e0 la concurrence, pour ceux qui se modernisent, etc (https://bit.ly/3hnL28R ).\n\nL'id\u00e9e de cette \"taxe aux fronti\u00e8res\" est justement de pouvoir - entre autres - supprimer ces exceptions parce que les comp\u00e9titeurs internationaux vont aussi devoir payer quelque chose. En pratique l'Europe ne peut pas taxer des usines situ\u00e9es hors de ses fronti\u00e8res : ce sont les importateurs qui vont devoir acheter des quotas. Ce n'est donc pas une taxe carbone \u00e0 proprement parler, \u00e0 savoir un prix fixe par tonne de CO2 \u00e9mise par les industriels qui exportent des produits en Europe.\n\nPour savoir combien de quotas les importateurs vont devoir se procurer, il va donc falloir se mettre d'accord sur un \"contenu en carbone\" par unit\u00e9 de produit import\u00e9e. Il faudra aussi se mettre d'accord sur la source de ces quotas (achet\u00e9s sur le march\u00e9 sans augmentation du volume global de quotas disponibles ? Issus d'une nouvelle enveloppe suppl\u00e9mentaire et vendus aux ench\u00e8res ? Autre ?), et le m\u00e9canisme qui va garantir que le prix moyen \u00e0 la tonne de CO2 pay\u00e9 par l'importateur sera \u00e9quivalent au prix moyen pay\u00e9 par l'industriel europ\u00e9en pour la fabrication du m\u00eame produit (et sur ce dernier point tout n'est pas si simple : une tonne de poutrelle en acier est-elle \u00e9quivalente \u00e0 une tonne de feuille d'acier en rouleau ?).\n\nIl n'emp\u00eache : cette innovation est bienvenue. Rappelons qu'en France, acier, ciment et chimie de base repr\u00e9sentent les 3/4 des \u00e9missions industrielles. Ce syst\u00e8me de compensation aux fronti\u00e8res interagit avec un gros paquet d'\u00e9missions." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7008752502338650112,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7008752503869554688,urn:li:activity:7008752503869554688,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 72, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7008752503869554688,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7008752503869554688,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7008752503869554688", + "threadId": "activity:7008752503869554688", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008752503869554688", + "urn": "urn:li:activity:7008752503869554688", + "numComments": 117, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7008752503869554688", + "reactionTypeCounts": [ + { + "count": 2617, + "reactionType": "LIKE" + }, + { + "count": 252, + "reactionType": "INTEREST" + }, + { + "count": 203, + "reactionType": "MAYBE" + }, + { + "count": 81, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7008752503869554688", + "numLikes": 3189, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008752503869554688", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3190, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7008343783905845248", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7008343783905845248)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7008343783905845248)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_voitures-v%C3%A9los-smartphones-leurope-va-activity-7008343783905845248-Dppi?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7008343783176044544", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7008343783905845248", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7008343783176044544", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "1FxIodxZnaGM86NCTF8ydw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7482535744954721878", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675761705422?e=1677240000&v=beta&t=Lvz3GK2Mm_4CvcOBUjkoiaQ0iwSlQ76uo5snQdWHaZQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675761705423?e=1677240000&v=beta&t=VVzPaZvmd5Xb8kDngYhyvKAzS4pHfhMDr5AbuBPDLN0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675761705423?e=1677240000&v=beta&t=mJqiNdSpAWu_t00RoXWVbj7fqaaY7TjtVNpQJvjbNJ8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675761705423?e=1677240000&v=beta&t=JgXTHAHa5FbAmCN0k5tLlCc5UU3Y7ZJcNJim-qTfJxc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGQ9Okk73Vr7w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7482535744954721878)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7482535744954721878)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Voitures, v\u00e9los, smartphones : l'Europe va contraindre les industriels \u00e0 verdir leurs batteries by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/voitures-velos-smartphones-leurope-va-contraindre-les-industriels-a-verdir-leurs-batteries-1887966" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Voitures, v\u00e9los, smartphones\u00a0: l'Europe va contraindre les industriels \u00e0 verdir leurs batteries" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7008343783176044544,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans le d\u00e9bat sur la mani\u00e8re de d\u00e9carboner l'industrie europ\u00e9enne, un argument est souvent mis en avant par les adversaires de la taxe carbone : elle cr\u00e9erait une distorsion de concurrence avec les industriels \u00e9trangers, qui n'y seraient pas soumis. \n\nCet argument est de fait souvent recevable (pas toujours : sur les pond\u00e9reux qui voyagent peu, par exemple le ciment, le risque de \"fuites\" aux fronti\u00e8res est limit\u00e9). Il y a une autre mani\u00e8re de faire, que l'Europe vient de d\u00e9cider \u00e0 propos des batteries : limiter l'empreinte carbone d'un produit ou service. \n\nDe fait, pour une voiture \u00e9lectrique, la fabrication de la batterie engendre la moiti\u00e9 des \u00e9missions de fabrication de l'ensemble. Cela n'emp\u00eache pas un v\u00e9hicule \u00e9lectrique d'\u00eatre, sur sa dur\u00e9e de vie, significativement moins \u00e9missif qu'un v\u00e9hicule \u00e0 p\u00e9trole de taille et puissance \u00e9quivalentes pour beaucoup de pays europ\u00e9ens, mais diminuer l'empreinte carbone de la batterie reste un objectif important pour baisser le contenu carbone d'un v\u00e9hicule \u00e9lectrique.\n\nLa l\u00e9gislation europ\u00e9enne qui vient d'\u00eatre d\u00e9cid\u00e9e, dont je confesse ne pas encore avoir regard\u00e9 les d\u00e9tails, est donc pertinente. Il n'\u00e9chappera \u00e0 personne que cette r\u00e9glementation est aussi une arme anti-importation et pro-fili\u00e8re europ\u00e9enne. En effet, la fabrication d'une batterie est un processus assez gourmand en \u00e9lectricit\u00e9 et en \u00e9nergie fossile \"en direct\". Pas juste pour l'assemblage final des packs de cellules (qui est n\u00e9gligeable dans l'ensemble de l'empreinte carbone), mais pour les \u00e9tapes amont : extraction des minerais, raffinage des divers m\u00e9taux (nickel, cobalt, lithium, cuivre), fabrication des principes actifs des composants (anode, cathode, \u00e9lectrolyte), et fabrication des cellules.\n\nPour d\u00e9carboner significativement la fabrication d'une batterie, il faudra donc non seulement des usines d'assemblage (les fameuses \"gigafactories\"), mais surtout rapatrier en Europe - et pr\u00e9f\u00e9rentiellement dans les pays \u00e0 \u00e9lectricit\u00e9 peu carbon\u00e9e, \u00e0 supposer que l'on en ait assez :) - la fraction maximale des \u00e9tapes qui vont juste \u00e0 l'aval de la mine (sachant que la mine sera difficile \u00e0 rapatrier en Europe !) : raffinage des m\u00e9taux, principes actifs, et cellules.\n\nC'est bien ce mouvement que l'Europe cherche \u00e0 enclencher avec le r\u00e8glement europ\u00e9en adopt\u00e9 (rappelons qu'un r\u00e8glement est d'application directe dans les \u00e9tats membres et n'a pas besoin de transposition par les parlements nationaux comme une directive). Reste \u00e0 ce que la physique soit d'accord (pour avoir assez d'\u00e9lectricit\u00e9 d\u00e9carbon\u00e9e pour faire ET des batteries ET de l'hydrog\u00e8ne ET de la mobilit\u00e9 ET alimenter des pompes \u00e0 chaleur ET \u00e9lectrifier d'autres industries...) et que l'industrie soit d'accord pour investir.\n\nIl y aura aussi un d\u00e9bat \u00e0 avoir sur l'usage de ces batteries : avec de quoi \u00e9lectrifier un \"tank \u00e9lectrique\" de plus de 2 tonnes on peut motoriser 200 v\u00e9los \u00e9lectriques. A l'heure de la rar\u00e9faction des ressources ce d\u00e9bat l\u00e0 est aussi essentiel." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7008343783176044544,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7008343783905845248,urn:li:activity:7008343783905845248,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7008343783905845248,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7008343783905845248,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7008343783905845248", + "threadId": "activity:7008343783905845248", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008343783905845248", + "urn": "urn:li:activity:7008343783905845248", + "numComments": 157, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7008343783905845248", + "reactionTypeCounts": [ + { + "count": 1362, + "reactionType": "LIKE" + }, + { + "count": 145, + "reactionType": "INTEREST" + }, + { + "count": 120, + "reactionType": "MAYBE" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7008343783905845248", + "numLikes": 1661, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008343783905845248", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1662, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7008083556673454080", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7008083556673454080)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7008083556673454080)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_invitation-pr%C3%A9sentation-du-rapport-final-activity-7008083556673454080-UFEY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7008083553888423936", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7008083556673454080", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7008083553888423936", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "Xxavdj4rjfbK8NxhqOel7g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8690400836592023625", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675988383003?e=1677240000&v=beta&t=ReMEKvevyyAsuLACCgt_7UcLd0pqcGdk1VM7jlh4fLw", + "expiresAt": 1677240000000, + "height": 354 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675988383003?e=1677240000&v=beta&t=rurrLnPvTFcc8tiOTITy2TG6vjXHkkWLQiG_PAZ_1VE", + "expiresAt": 1677240000000, + "height": 361 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675988383004?e=1677240000&v=beta&t=FnuXXdV0Xh0kMWeLs8hXdrenRtvWBYbLTsNkWGZCp9c", + "expiresAt": 1677240000000, + "height": 70 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675988383004?e=1677240000&v=beta&t=9u9tRHXiqsz558OQvTbhG0bzOXi1Wr0WzdmQ0FgqgTM", + "expiresAt": 1677240000000, + "height": 212 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGH-5n4VmAywA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8690400836592023625)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8690400836592023625)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [INVITATION] Pr\u00e9sentation du rapport final \u00ab ClimatSup Finance \u2013 Former pour une finance au service de la transition \u00bb (15 DECEMBRE) - The Shift Project by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-presentation-du-rapport-final-climatsupfinance-15-decembre/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[INVITATION] Pr\u00e9sentation du rapport final \u00ab ClimatSup Finance \u2013\u00a0Former pour une finance au service de la transition \u00bb (15 DECEMBRE) - The Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pourra-t-on un jour avoir une finance \"verte\" ? Un jour viendra peut-\u00eatre o\u00f9 nous aurons le graal d'une performance environnementale et d'une performance financi\u00e8re allant de pair. A ce moment l\u00e0, les financiers pourront faire l'esprit tranquille ce qui est leur m\u00e9tier habituel : maximiser le rendement des capitaux investis pour un risque donn\u00e9, puisque par construction cela minimisera \u00e0 l'occasion le risque environnemental. \n\nPour en arriver l\u00e0, il faut cependant une petite condition aux limites : que l'ensemble des contraintes applicables aux entreprises les poussent dans une direction telle que ce qui est le meilleur pour l'environnement est aussi le plus rentable pour elles (ou le moins \"moins rentable\" !).\n\nMais pour le moment cette convergence n'est pas l\u00e0, comme le rappelle un article r\u00e9cent des Echos (https://lnkd.in/e4BJit5P ), et il est donc n\u00e9cessaire de donner aux acteurs du monde financier les outils et m\u00e9thodes pour arbitrer entre les deux.\n\nLe financier \"de base\" doit donc regarder s\u00e9par\u00e9ment \u00e9conomie et environnement pour savoir si les deux sont raccord ou pas. Cela signifie qu'il ou elle doit comprendre \u00e0 peu pr\u00e8s il retourne quand il est question d'environnement, et plus particuli\u00e8rement de climat et de ressources \u00e9nerg\u00e9tiques.\n\nRemontons d'un cran : pour que notre financier(e) ait les bases en mati\u00e8re d'\u00e9nergie et de climat, il faut bien qu'il ou elle les ait apprises un jour. Il faut aussi qu'il ou elle n'apprenne pas, ou ne \"conserve\" pas, en mati\u00e8re de finance ou d'\u00e9conomie, des choses qui pr\u00e9supposent que les limites plan\u00e9taires n'existent pas. \n\nAdmettons que notre futur(e) financier(e) soit encore en train de suivre sa formation initiale. A ce moment la question devient : que doit-on apprendre, et ne pas apprendre (ou d\u00e9sapprendre !), pour faire converger la logique du secteur et la pr\u00e9servation de l'environnement ?\n\nApr\u00e8s les ing\u00e9nieurs et les gestionnaires, The Shift Project s'attaque \u00e0 cette question de la formation initiale du sup\u00e9rieur pour les futurs salari\u00e9s de ce secteur (on appr\u00e9ciera la gradation de la difficult\u00e9 !), et vous propose, le Jeudi 15 d\u00e9cembre, un webinaire de pr\u00e9sentation de nos travaux sur le sujet.\n\nCela n'\u00e9puise pas le sujet de la formation, puisque les personnes d\u00e9j\u00e0 en activit\u00e9 ne peuvent plus, par la force des choses, retrouver leurs 20 ans et redevenir \u00e9tudiantes. Esp\u00e9rons que nos suggestions, qui incluent le corpus de connaissances de base sur l'environnement qu'il faut absolument avoir acquises pour \u00eatre pertinent sur le sujet, infuseront aussi tr\u00e8s vite la formation continue !\n\nProgramme et modalit\u00e9s d'inscription ci-dessous." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7008083556673454080,urn:li:activity:7008083556673454080,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 67, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7008083556673454080,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7008083556673454080,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7008083556673454080", + "threadId": "activity:7008083556673454080", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008083556673454080", + "urn": "urn:li:activity:7008083556673454080", + "numComments": 91, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7008083556673454080", + "reactionTypeCounts": [ + { + "count": 852, + "reactionType": "LIKE" + }, + { + "count": 46, + "reactionType": "INTEREST" + }, + { + "count": 43, + "reactionType": "PRAISE" + }, + { + "count": 36, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7008083556673454080", + "numLikes": 996, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008083556673454080", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 998, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7007679410803744768", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7007679410803744768)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7007679410803744768)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_commission-denqu%C3%AAte-%C3%A0-lassembl%C3%A9e-s%C3%A9gol%C3%A8ne-activity-7007679410803744768-JvER?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7007679409943924736", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7007679410803744768", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7007679409943924736", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "AmjZJlAnyBxnX5TuavHHCQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8349937802885585333", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 790, + "fileIdentifyingUrlPathSegment": "800/0/1676197050742?e=1677240000&v=beta&t=O_WtHaUy3WUrnNDpTDfeZFJg9zzh6r74HRIknZOTmZw", + "expiresAt": 1677240000000, + "height": 498 + }, + { + "width": 790, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676197050742?e=1677240000&v=beta&t=b0Ze7caMO2lDPOAhTgyuEH5zyEU1lFC6VbRjT4VWBxs", + "expiresAt": 1677240000000, + "height": 498 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676197050742?e=1677240000&v=beta&t=D4ws-1WJ0LmLdAu4I_Fh3E_e9GS7kwRbfUFIbOtNpBY", + "expiresAt": 1677240000000, + "height": 100 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676197050742?e=1677240000&v=beta&t=J9xdjlCDCsI4zu8wwHjwkDUUF2EWUPdg7tm2L-kcK1w", + "expiresAt": 1677240000000, + "height": 302 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGn7WzLuyUAwQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.6303797468354431 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8349937802885585333)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8349937802885585333)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "marianne.net \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Commission d\u2019enqu\u00eate \u00e0 l'Assembl\u00e9e\u2009: S\u00e9gol\u00e8ne Royal attendue de pied ferme sur le plafonnement du nucl\u00e9aire by marianne.net", + "actionTarget": "https://www.marianne.net/politique/petites-indiscretions-grosses-revelations/commission-denquete-a-lassemblee-segolene-royal-attendue-de-pied-ferme-sur-le-plafonnement-du-nucleaire" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Commission d\u2019enqu\u00eate \u00e0 l'Assembl\u00e9e\u2009: S\u00e9gol\u00e8ne Royal attendue de pied ferme sur le plafonnement du nucl\u00e9aire" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Commission d'enqu\u00eate \"visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\", devant laquelle j'ai \u00e9t\u00e9 auditionn\u00e9 (https://bit.ly/3FHL0BV ), va passer \u00e0 ce qui \u00e9tait probablement son objectif premier depuis le d\u00e9but : nommer des \"responsables\" \u00e0 la situation difficile dans laquelle nous sommes, pr\u00e9f\u00e9rentiellement des adversaires politiques de l'initiateur :). \n\nCe n'est pas la premi\u00e8re fois que je le constate : j'ai \u00e9t\u00e9 convoqu\u00e9 par deux autres Commissions d'enqu\u00eate du Parlement :\n- une sur \"l'impact \u00e9conomique, industriel et environnemental des \u00e9nergies renouvelables, sur la transparence des financements et sur l'acceptabilit\u00e9 sociale des politiques de transition \u00e9nerg\u00e9tique\" pilot\u00e9e par un d\u00e9put\u00e9 LR : https://bit.ly/3iSJ9kV\n- une sur le \"co\u00fbt r\u00e9el de l'\u00e9lectricit\u00e9 afin d'en d\u00e9terminer l'imputation aux diff\u00e9rents agents \u00e9conomiques\" demand\u00e9 par un s\u00e9nateur Vert : https://bit.ly/3PjgRw3\n\nA chaque fois un des buts \u00e9tait bien \"d'\u00e9pingler\" des adversaires politiques, au motif qu'ils avaient d\u00e9cid\u00e9 d'actions contraires \u00e0 la conviction du parlementaire qui d\u00e9clenchait la Commission.\n\nCela n'emp\u00eache \u00e9videmment pas d'apprendre des choses int\u00e9ressantes pour qui prend le temps d'\u00e9couter les auditions ou de lire les rapports, et c'est bien en entrant dans ce niveau de d\u00e9tail que l'on peut profiter de ces travaux. La partie \"tribunal pour politiques\" n'est qu'une partie \u00e9merg\u00e9e - et pas la plus int\u00e9ressante - de l'iceberg, sauf \u00e0 permettre \u00e0 l'ensemble de la classe politique de devenir plus adulte ensuite, et ce n'est pas garanti !\n\nA l'\u00e9vidence, fermer Fessenheim a priv\u00e9 le pays d'une production \u00e9lectrique bas carbone qui serait pr\u00e9cieuse aujourd'hui. Mais qui en est responsable ? Royal parce qu'elle a sign\u00e9 le d\u00e9cret ? Hollande parce qu'il a pris cet engagement dans la campagne ? Macron parce qu'il n'est pas revenu dessus alors qu'il le pouvait ? La presse qui a longtemps et majoritairement pr\u00e9sent\u00e9 le nucl\u00e9aire comme bien plus dangereux que ses alternatives et facile \u00e0 remplacer sans trop se demander si l'argumentation \u00e9tait factuellement solide ? Jospin qui a donn\u00e9 le coup d'envoi de 20 ans de nucl\u00e9aire honteux ? Les experts techniques qui n'ont pas su faire la p\u00e9dagogie des seuls faits ? L'Education Nationale qui a laiss\u00e9 circuler des manuels scolaires contenant des contre-v\u00e9rit\u00e9s ? L'Allemagne qui a fait tout ce qu'elle a pu pour faire \u00e9merger des r\u00e8gles europ\u00e9ennes d\u00e9favorables au nucl\u00e9aire et nous jeter dans les bras des russes ?\n\nClouer Royal au pilori ne nous aidera que peu \u00e0 mieux r\u00e9fl\u00e9chir \u00e0 l'avenir. Plus que des noms, notre premier objet d'attention doit \u00eatre l'ad\u00e9quation entre processus de d\u00e9cision et probl\u00e8me \u00e0 traiter. Ce sont les m\u00e9canismes structurels \u00e0 l'oeuvre (cadre de march\u00e9, partage des faits, horizon temporel de l'action), qu'il faut examiner et \u00e9ventuellement corriger. C'est moins spectaculaire que de conspuer un individu (m\u00eame peu sympathique), mais bien plus fondamental." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7007679410803744768,urn:li:activity:7007679410803744768,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 361, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7007679410803744768,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7007679410803744768,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7007679410803744768", + "threadId": "activity:7007679410803744768", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007679410803744768", + "urn": "urn:li:activity:7007679410803744768", + "numComments": 602, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7007679410803744768", + "reactionTypeCounts": [ + { + "count": 5801, + "reactionType": "LIKE" + }, + { + "count": 485, + "reactionType": "PRAISE" + }, + { + "count": 479, + "reactionType": "MAYBE" + }, + { + "count": 228, + "reactionType": "INTEREST" + }, + { + "count": 73, + "reactionType": "APPRECIATION" + }, + { + "count": 45, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7007679410803744768", + "numLikes": 7111, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007679410803744768", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7121, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7007412643036545024", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7007412643036545024)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7007412643036545024)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_20000-personnes-dans-30-pays-tel-est-l%C3%A9chantillon-activity-7007412643036545024-0Ki9?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7007412642214477824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7007412643036545024", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7007412642214477824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "m87YYM62WTyOC/M72oycIQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:D4E22AQH31vNWmrMYug", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:D4E22AQH31vNWmrMYug", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1670697363822?e=1679529600&v=beta&t=zmTNjSjxr3_vTJ_uOrLsA--1bVz588PceyOI2GaKpoI", + "expiresAt": 1679529600000, + "height": 1154 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1670697364338?e=1679529600&v=beta&t=IfTiXei25O-1j0490HkrfXY-37CMTDeEMtVTQXPDXDs", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1670697364338?e=1679529600&v=beta&t=05adXSL3Lq0cbJ7xzElsh3pqfmZDDMTYOW-ximE-YTo", + "expiresAt": 1679529600000, + "height": 721 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1670697364338?e=1679529600&v=beta&t=XoLjmGdSr1jRfegFJGk-wgemCLpCoRQfyGmxRZtQC_0", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1670697364338?e=1679529600&v=beta&t=PWOpQGDt2HDlAFTQAI364kjjrYLkbw-KCPDvtXxczT4", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1670697364338?e=1679529600&v=beta&t=8OTZHo0DVEHC_naKX_nFhTyWxwf-5VsVlW41RyOzIoI", + "expiresAt": 1679529600000, + "height": 451 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E22AQH31vNWmrMYug/feedshare-shrink_" + }, + "displayAspectRatio": 0.5634765625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "20.000 personnes dans 30 pays : tel est l'\u00e9chantillon dont Ipsos a sond\u00e9 d\u00e9but septembre les coeurs et les reins pour avoir des avis sur un certain nombre de sujets concernant l'environnement et l'\u00e9nergie.\n\nLe rapport complet propose 100 pages de tableaux de chiffres : https://bit.ly/3W8qaB0 Id\u00e9alement il faut tout lire (et ne pas juste lire les enseignements - disponibles sur https://bit.ly/3HqkBKn) pour se faire sa propre id\u00e9e. \n\nL'environnement c'est important, mais la hausse du cout de la vie l'est un peu plus dans tous les pays... sauf un : l'Inde, o\u00f9 la hi\u00e9rarchie est inverse.\n\nLa Chine est le pays o\u00f9 il y a le plus fort taux de r\u00e9pondants consid\u00e9rant que la situation environnementale y est bonne ou tr\u00e8s bonne (chacun peut voir midi \u00e0 sa porte !). La Cor\u00e9e du Sud et l'Espagne sont les pays de l'autre extr\u00e9mit\u00e9 du spectre.\n\nLe pays le plus climatosceptique de l'\u00e9chantillon est l'Arabie Saoudite, suivie juste apr\u00e8s par les USA puis la Russie. En Europe c'est la Norv\u00e8ge. Il y aurait comme un lien entre le climatoscepticisme et l'importance des hydrocarbures dans l'\u00e9conomie domestique :) (en Norv\u00e8ge il y a en plus une majorit\u00e9 qui consid\u00e8re que le r\u00e9chauffement est globalement neutre ou positif pour le pays).\n\nSur un sujet qui concerne plus directement EDF, dans l'essentiel des pays sond\u00e9s le nucl\u00e9aire est majoritairement vu comme une source significative de gaz \u00e0 effet de serre (alors que pour l'agriculture ou le digital seule une minorit\u00e9 l'affirme), ce qui n'emp\u00eache pas le soutien (dans une autre question) du remplacement des centrales \u00e0 combustibles fossiles par du nucl\u00e9aire !\n\nLes br\u00e9siliens et indon\u00e9siens pr\u00e9f\u00e8rent m\u00eame le charbon au nucl\u00e9aire, et pr\u00e9f\u00e8rent remplacer le charbon par du gaz plut\u00f4t que par du nucl\u00e9aire. Ils sont loin de Poutine ! Les chinois sont les plus favorables au nucl\u00e9aire et les colombiens le moins. Toutes les populations sont favorables au solaire et \u00e0 l'\u00e9olien.\n\nCe sont les japonais les plus s\u00e9v\u00e8res avec leurs responsables politiques (qui sont vus comme tr\u00e8s peu actifs) et les chinois les plus laudatifs. C'est aussi en Chine qu'il y a la plus grande fraction de la population qui consid\u00e8re que leur pays est dans le peloton de t\u00eate des efforts contre le changement climatique.\n\nCe sont les turcs les plus nombreux \u00e0 vouloir que l'on privil\u00e9gie l'environnement sur la croissance (65% vs 25%). Mais ce sont les chinois les plus persuad\u00e9s que leur pays va donner la priorit\u00e9 \u00e0 l'environnement dans un avenir proche m\u00eame si cela nuit \u00e0 la croissance !\n\nA la fin de l'enqu\u00eate sont test\u00e9es les acceptabilit\u00e9s d'un certain nombre de mesures. Sans grande surprise, tout ce qui est taxes et limitations est bien moins accept\u00e9 que le d\u00e9veloppement (gratuit on suppose !) des \u00e9nergies bas carbone (y compris le nucl\u00e9aire).\n\nEvidemment on sort de cette avalanche de chiffres en voyant bien des contradictions dans les r\u00e9ponses. Mais on y voir aussi des indications utiles pour que certaines actions de sobri\u00e9t\u00e9 soient d'ores et d\u00e9j\u00e0 men\u00e9es." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7007412643036545024,urn:li:activity:7007412643036545024,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7007412643036545024,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7007412643036545024,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7007412643036545024", + "threadId": "activity:7007412643036545024", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007412643036545024", + "urn": "urn:li:activity:7007412643036545024", + "numComments": 73, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7007412643036545024", + "reactionTypeCounts": [ + { + "count": 959, + "reactionType": "LIKE" + }, + { + "count": 200, + "reactionType": "INTEREST" + }, + { + "count": 151, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7007412643036545024", + "numLikes": 1325, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007412643036545024", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1328, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7006908707229868032", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7006908707229868032)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7006908707229868032)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_towards-biodiversity-certificates-proposal-activity-7006908707229868032-3yZz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7006908706328059904", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7006908707229868032", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7006908706328059904", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "ok+LGvuq7J1Jn+YVsxHhRw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8922422006420302619", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676537279279?e=1677240000&v=beta&t=nkvYMTkiYvQtKgNmOqCxXjas49T8ChIQjNcieIMVqUE", + "expiresAt": 1677240000000, + "height": 1200 + }, + { + "width": 533, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676537279279?e=1677240000&v=beta&t=6t05O6Iuxu5cZrsHqfUwJExkxn0miT43WNrBjVR1jkw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676537279280?e=1677240000&v=beta&t=ep-qrTU6nSdV0htS9ThL304-U9WU-ybnfXZL7kHGDSI", + "expiresAt": 1677240000000, + "height": 240 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676537279280?e=1677240000&v=beta&t=ATczr6KiocZ-83euiNdo21P-3q0I-PkeFwFjNyBLWHU", + "expiresAt": 1677240000000, + "height": 720 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFDIWdEacXhUg/articleshare-shrink_" + }, + "displayAspectRatio": 1.5 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8922422006420302619)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8922422006420302619)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Towards biodiversity certificates: proposal for a methodological framework | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-biodiversity-certificates-obc" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Towards biodiversity certificates: proposal for a methodological framework | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7006908706328059904,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis sa cr\u00e9ation, Carbone 4 s'est historiquement int\u00e9ress\u00e9 au carbone fossile, celui des combustibles \u00e9ponymes. Mais il y a aussi du carbone \"vivant\" : la biodiversit\u00e9. Nous avons d\u00e9cid\u00e9, il y a un peu plus d'un an, de nous lancer aussi dans cette direction l\u00e0. \n\nPour chaque nouveau domaine ou secteur, notre mani\u00e8re de faire est toujours la m\u00eame : nous commen\u00e7ons par nous creuser un peu la cervelle pour savoir ce que nous pourrions apporter d'utile et de nouveau en mati\u00e8re de m\u00e9thodes. Et la m\u00e9thode qui d\u00e9coule de notre r\u00e9flexion est g\u00e9n\u00e9ralement rendue disponible en acc\u00e8s libre.\n\nLa comptabilit\u00e9 carbone pratiqu\u00e9e par Carbone 4 est ainsi venue apr\u00e8s la cr\u00e9ation du Bilan Carbone. Notre approche de la neutralit\u00e9 apr\u00e8s la mise au point de Net Zero Initiative (https://bit.ly/3uAeYl1 ). Les \u00e9tudes de r\u00e9silience d'une activit\u00e9 face aux risques physiques du changement climatique apr\u00e8s la mise au point d'Ocara (https://bit.ly/3W6LpTI ). La notation carbone d'une entreprise apr\u00e8s la mise au point de CIA (https://bit.ly/3FCFIYh ) et de CRIS (https://bit.ly/3F7CTNq). L'alignement (= la \"compatibilit\u00e9\") d'une infrastructure avec une trajectoire 2\u00b0C sur les \u00e9missions apr\u00e8s la mise au point de CIARA (https://lnkd.in/dAMBzut).\n\nEt, dans cette m\u00eame veine, nos premiers pas dans la biodiversit\u00e9 ont concern\u00e9 la cr\u00e9ation de m\u00e9thodes dont nous esp\u00e9rons qu'elles \"am\u00e8nent quelque chose\" \u00e0 la prise en compte de ces enjeux dans l'activit\u00e9 \u00e9conomique.\n\nLa premi\u00e8re brique a \u00e9t\u00e9 Biodiversity Impact Analytics (https://bit.ly/3iMwdwQ ), d\u00e9velopp\u00e9 en partenariat avec la CDC Biodiversit\u00e9, et qui permet de \"noter\" les titres (actions ou obligations) d'une entreprise (c'est donc une m\u00e9thode destin\u00e9e au secteur financier). \n\nNous venons d'en publier une deuxi\u00e8me, portant sur des \"certificats biodiversit\u00e9\". De quoi s'agit-il ? De fournir une r\u00e9ponse \u00e0 la question suivante : comment compter le b\u00e9n\u00e9fice associ\u00e9 \u00e0 une action qui vise \u00e0 restaurer de la biodiversit\u00e9, ou \u00e0 emp\u00eacher sa d\u00e9gradation ? En effet, si l'on veut attirer des moyens dans la pr\u00e9servation ou la restauration de la biodiversit\u00e9, il faut pouvoir comparer des alternatives entre elles pour savoir o\u00f9 ces moyens seront le plus utiles. Mais cela soul\u00e8ve de multiples questions.\n\nComment \u00e9valuer des gains biodiversit\u00e9 alors que la nature est souvent consid\u00e9r\u00e9e comme \u00e9tant trop complexe pour \u00eatre mesur\u00e9e ? Peut-on d\u00e9velopper une m\u00e9thodologie universelle, robuste et facile \u00e0 mettre en \u0153uvre sur le terrain ? Comment d\u00e9passer la logique de compensation, dont on a vu les effets pervers en mati\u00e8re de climat ? Quelle doit \u00eatre la place des certificats dans la strat\u00e9gie biodiversit\u00e9 des entreprises ?\n\nCarbone 4 et le Mus\u00e9um national d'Histoire Naturelle ont con\u00e7u un cadre m\u00e9thodologique pour tenter de r\u00e9pondre \u00e0 ces questions, que nous proposons aux personnes int\u00e9ress\u00e9es de d\u00e9couvrir et de commenter. Ce n'est bien \u00e9videmment qu'une premi\u00e8re \u00e9tape, mais il faut bien commencer un jour !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7006908706328059904,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7006908707229868032,urn:li:activity:7006908707229868032,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 57, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7006908707229868032,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7006908707229868032,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7006908707229868032", + "threadId": "activity:7006908707229868032", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006908707229868032", + "urn": "urn:li:activity:7006908707229868032", + "numComments": 67, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7006908707229868032", + "reactionTypeCounts": [ + { + "count": 837, + "reactionType": "LIKE" + }, + { + "count": 91, + "reactionType": "PRAISE" + }, + { + "count": 61, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7006908707229868032", + "numLikes": 1056, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006908707229868032", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1056, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7006525348163014657", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7006525348163014657)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7006525348163014657)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-sncf-va-prendre-en-compte-le-prix-du-carbone-activity-7006525348163014657-mGx3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7006525347370262528", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7006525348163014657", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7006525347370262528", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "fdFst9ABT/taCq47LvmRRQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8044829150830183589", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 707, + "fileIdentifyingUrlPathSegment": "800/0/1675756968260?e=1677240000&v=beta&t=dDULs5A-OGmmE8q6SF99MJZaU0i2NBSf7yhvZ5cDKxM", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 707, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675756968260?e=1677240000&v=beta&t=hZOe8YUAltR-q-9DHfvqre1xQ482HhOzViAFypoXIGI", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675756968260?e=1677240000&v=beta&t=b9p1mn0UC3RflK4w0-NxWLXt5joF4BwPQyYVObaJB-4", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675756968260?e=1677240000&v=beta&t=9iVJK7iH0CPqRBo9HecIFj2qq9m0pOJQcI6a9Ewn-EI", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHOtXbNvsBx1Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.6661951909476662 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8044829150830183589)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8044829150830183589)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "novethic.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La SNCF va prendre en compte le prix du carbone dans ses appels d'offres by novethic.fr", + "actionTarget": "https://www.novethic.fr/actualite/entreprise-responsable/isr-rse/la-sncf-va-prendre-en-compte-le-prix-du-carbone-dans-ses-appels-d-offre-151217.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La SNCF va prendre en compte le prix du carbone dans ses appels d'offres" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 778, + "length": 17, + "miniProfile": { + "firstName": "Mika\u00ebl", + "lastName": "Lemarchand", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAB0vwQBlSktLEmYdTdyOGWrd7KRp7YnXkA", + "occupation": "Chief Sustainability Officer / Directeur de l'engagement social, territorial et environnemental. Directeur du Projet d'entreprise. Membre du COMEX.Vice-Pr\u00e9sident de la Fondation SNCF.", + "objectUrn": "urn:li:member:7651076", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAB0vwQBlSktLEmYdTdyOGWrd7KRp7YnXkA", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1617166213063?e=1681948800&v=beta&t=jkSa3vunXUPrGO39bw6CGVf_v2pQd-Q5FRKsdozekuc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1617166213063?e=1681948800&v=beta&t=oRxuYz4FxnQKUlzDZpQVL2c4cZ_NjTOoMe3Jdu1ZL2c", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQEQY-jW4ws5jg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "mika\u00ebl-lemarchand", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516278647887?e=1681948800&v=beta&t=E-hMUmZP67EMWIr_OWJg3zxR-zaGh92f239kNzlW6gc", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516278647887?e=1681948800&v=beta&t=rzujsePk5rgQmqZj3-itViw7U7eYCbWv1ozx46StTRo", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516278647887?e=1681948800&v=beta&t=jZz18hYdaIzdGh4SVmhKExX3cfjIZ3ETaMTx5JKHGNA", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516278647887?e=1681948800&v=beta&t=JrI_z5CqwwKYbpkfuWhpTWepa_NIVw6yoQwBOQ1kvTY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHo0SxCAyGx4g/profile-displayphoto-shrink_" + } + }, + "trackingId": "mTA0YDLWRrWgjJdRKSCENw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "On n'en attendait pas moins de la soci\u00e9t\u00e9 qui \"h\u00e9berge\" l'un des auteurs de la commission qui a fix\u00e9 une trajectoire de prix pour la \"valeur tut\u00e9laire du carbone\" (Alain Quinet) : la SNCF a annonc\u00e9 qu'elle allait introduire un \"prix du carbone\" dans ses achats.\n\nLe m\u00e9canisme pr\u00e9cis n'est pas d\u00e9taill\u00e9 dans cet article de Novethic (et pas plus dans les autres articles qui sont disponibles dans l'espace public), mais, \"vu de Mars\" (pardon Elon, on t'emprunte ta future r\u00e9sidence secondaire), j'imagine qu'il s'agit de recalculer des prix en ajoutant \u00e0 l'offre en euros un montant correspondant au contenu carbone de l'offre (fourni ou d\u00e9duit du bilan carbone du fournisseur) multipli\u00e9 par le prix de la tonne de carbone (si ce n'est pas ce m\u00e9canisme, il serait int\u00e9ressant que Mika\u00ebl Lemarchand pr\u00e9cise en commentaire quelle proc\u00e9dure sera utilis\u00e9e).\n\nDans le monde des soci\u00e9t\u00e9s marchandes, seule la contrainte fait avancer les entreprises commerciales \u00e0 la bonne vitesse. La contrainte peut venir de la r\u00e9glementation, des clients, des ressources humaines (les \"ressources rares\" qui ont le choix de leur employeur orientent un peu l'action de ces derniers)...\n\nQue le client mette une haie \u00e0 franchir qui s'appelle le carbone va donc dans le bon sens. Accessoirement une partie des fournisseurs de la SNCF sont des soci\u00e9t\u00e9s importantes (de travaux publics, de mat\u00e9riel roulant ou fixe, etc) qui seront soumises \u00e0 l'obligation de publier un bilan carbone au titre de la nouvelle r\u00e9glementation europ\u00e9enne CSRD. \n\nUne des \"conditions aux limites\" qui fera de ce genre de mesure un acc\u00e9l\u00e9rateur de la d\u00e9carbonation s'appelle la formation. En effet, seule la formation large des salari\u00e9s permet de d\u00e9centraliser l'action et l'initiative de terrain apr\u00e8s avoir annonc\u00e9 une intention : sans cela, il faut garder une fonction centralis\u00e9e de d\u00e9cision et de contr\u00f4le qui g\u00e8re quasi-exclusivement le sujet et impose les r\u00e9sultats aux autres entit\u00e9s de l'entreprise, o\u00f9 il n'y aura alors que peu de capacit\u00e9 d'initiative ou de motivation (voire une franche r\u00e9sistance !).\n\nLa formation n'est \u00e9videmment jamais suffisante. Mais c'est une condition n\u00e9cessaire pour que les \"d\u00e9cisions intelligentes\" (et mettre le carbone dans la relation client-fournisseur en est une) produisent leurs pleins effets." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7006525348163014657,urn:li:activity:7006525348163014657,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 57, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7006525348163014657,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7006525348163014657,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7006525348163014657", + "threadId": "activity:7006525348163014657", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006525348163014657", + "urn": "urn:li:activity:7006525348163014657", + "numComments": 99, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7006525348163014657", + "reactionTypeCounts": [ + { + "count": 1501, + "reactionType": "LIKE" + }, + { + "count": 111, + "reactionType": "MAYBE" + }, + { + "count": 102, + "reactionType": "INTEREST" + }, + { + "count": 68, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7006525348163014657", + "numLikes": 1802, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006525348163014657", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1802, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7006225119303880704", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7006225119303880704)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7006225119303880704)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_quand-bien-m%C3%AAme-il-ny-aurait-pas-eu-de-guerre-activity-7006225119303880704-Sq4T?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7006225118406279168", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7006225119303880704", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7006225118406279168", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "qO6v85OetqoJg/IRTvG/PQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQG6NenqEshWWg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQG6NenqEshWWg", + "artifacts": [ + { + "width": 1434, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1670414236027?e=1679529600&v=beta&t=XYTghidqbyL_wu7UqAS8vAC1beSuWqQGwARUlVh6NI4", + "expiresAt": 1679529600000, + "height": 998 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1670414236066?e=1679529600&v=beta&t=dq7Farb1DEDJrG6ilDNTFyfnzef2hGlRu1W4n3KnZJ4", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1670414236066?e=1679529600&v=beta&t=CQCjBitZpuvmLtkI6WD_7F0b87M4Z4wUQaR_Po3KTp4", + "expiresAt": 1679529600000, + "height": 890 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1670414236066?e=1679529600&v=beta&t=9SKVjRY357GgI5XUyY7Do6xsobej1jZdXom98IFf83I", + "expiresAt": 1679529600000, + "height": 334 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1670414236066?e=1679529600&v=beta&t=CBhvRNmhCBvaIaxbtZ68wBwmjv-KdjBXm19d4RxO7rY", + "expiresAt": 1679529600000, + "height": 111 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1670414236066?e=1679529600&v=beta&t=4fKQQzbwmOtG-ebkq5cdec_g7k9uBz9zN3JCj6BMzh8", + "expiresAt": 1679529600000, + "height": 556 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQG6NenqEshWWg/feedshare-shrink_" + }, + "displayAspectRatio": 0.6959553695955369 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, surface chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7006225118406279168,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quand bien m\u00eame il n'y aurait pas eu de guerre en Ukraine, notre continent allait de toute fa\u00e7on devoir faire face \u00e0 une baisse \"physique\" de la possibilit\u00e9 d'importer du gaz \u00e0 l'avenir. Bien \u00e9videmment, nos d\u00e9m\u00eal\u00e9s avec un pays qui fournissait, avant conflit, 40% du gaz consomm\u00e9 dans l'Union, agissent comme un acc\u00e9l\u00e9rateur, mais le coup \u00e9tait parti. \n\nTelle est la conclusion \u00e0 laquelle nous parvenons au Shift Project, \u00e0 l'issue d'une analyse portant sur les possibilit\u00e9s d'approvisionnement en gaz de l'Union Europ\u00e9enne sous seule contrainte g\u00e9ologico-technique (on ne prend donc en consid\u00e9ration comme facteurs limitants que le contenu des gisements et la capacit\u00e9 \u00e0 faire des infrastructures d'extraction et de transport) : https://bit.ly/3HhowJ7\n\nCe travail - soutenu financi\u00e8rement par le Minist\u00e8re des Arm\u00e9es, RTE et le BRGM - a \u00e9t\u00e9 men\u00e9 avec comme mati\u00e8re premi\u00e8re l'inventaire de la totalit\u00e9 des gisements mondiaux (y compris ceux restant \u00e0 d\u00e9couvrir) fourni par Rystad Energy, ainsi que les les perspectives de production par gisement, ou encore les contrats d\u00e9j\u00e0 pass\u00e9s en GNL pour chaque pays importateur et chaque pays producteur. \n\nLe graphique ci-dessous r\u00e9sume notre analyse. Il fournit les divers approvisionnements identifi\u00e9s (via gazoducs ou via contrats pour le GNL) pour l'Europe, ainsi que divers niveaux de consommation possibles :\n- la courbe orange est du \"tendanciel avec \u00e9conomies\"\n- la croix jaune est le point d'arriv\u00e9e en 2030 dans le sc\u00e9nario \"Fit for 55\"\n- la croix rouge est le point d'arriv\u00e9e dans \"Repower EU\" (https://bit.ly/3VUBy3s )\n\nOn voit facilement que la situation que nous allons vivre cette hiver ne devrait pas \u00eatre suivie d'un \"retour \u00e0 la normale\" sur les approvisionnements (et il se discute de savoir ce qu'est \"la normale\" quand la consommation de gaz devrait de toute fa\u00e7on baisser tr\u00e8s rapidement pour des raisons de climat !). \n\nPour remplacer les importations qui n'ont plus lieu par gazoduc il faut recourir au GNL, sur lequel nous sommes en concurrence croissante avec les pays asiatiques, et il n'y en aura pas pour tout le monde. En outre le pic mondial sur la production gazi\u00e8re (sous seule contrainte g\u00e9ologique) est attendu aux alentours de 2030 avec les donn\u00e9es fournies par Rystad. \n\nClimat ou pas, Ukraine ou pas, le coup \u00e9tait aussi parti sur le p\u00e9trole (https://bit.ly/3F7Ty3y ). Rappelons que le charbon est aussi en baisse subie depuis les ann\u00e9es 1950 (car les mines europ\u00e9ennes sont de plus en plus vides et le commerce international de ce pond\u00e9reux solide n'est pas si simple). \n\nQuand bien m\u00eame nous ne voudrions pas faire d'efforts parce que l'UE ce n'est que 10% des \u00e9missions, que les am\u00e9ricains ont une empreinte carbone individuelle 2 fois plus \u00e9lev\u00e9e que la n\u00f4tre, etc, nous allons devoir d\u00e9carboner de toute fa\u00e7on. Il est plus qu'urgent de comprendre que nous sommes au d\u00e9but d'une \u00e9volution structurelle, et pas dans un accident de parcours." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7006225118406279168,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7006225119303880704,urn:li:activity:7006225119303880704,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 73, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7006225119303880704,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7006225119303880704,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7006225119303880704", + "threadId": "activity:7006225119303880704", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006225119303880704", + "urn": "urn:li:activity:7006225119303880704", + "numComments": 185, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7006225119303880704", + "reactionTypeCounts": [ + { + "count": 2527, + "reactionType": "LIKE" + }, + { + "count": 499, + "reactionType": "INTEREST" + }, + { + "count": 304, + "reactionType": "MAYBE" + }, + { + "count": 59, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7006225119303880704", + "numLikes": 3405, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006225119303880704", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3406, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7005825581208477696", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7005825581208477696)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7005825581208477696)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rising-prices-and-supply-chain-risks-threaten-activity-7005825581208477696-NdeL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7005825580357033984", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7005825581208477696", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7005825580357033984", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "F3pZnR28WvC9B0D6Q8cQFg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7627523493011370695", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676381140655?e=1677240000&v=beta&t=_RGTkHmL1SVdUWS8tI4hjbr6ZhL3TAqLk0_xKz2XWoY", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 900, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676381140656?e=1677240000&v=beta&t=ivg2hhqJZOc3JK8837WeLQOoxLr9cmBsSDWJd_rMeMs", + "expiresAt": 1677240000000, + "height": 506 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676381140656?e=1677240000&v=beta&t=72umEvDSZ5SsdC4V4B7U4Oq7xR4Gv-vrLfYMsYPlUko", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676381140656?e=1677240000&v=beta&t=920ortEasOHTHAyvzkhbG3IlWR6x04vKngyFFCFYryw", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEeTs2pCdQnhw/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7627523493011370695)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7627523493011370695)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ft.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Rising prices and supply chain risks threaten Europe\u2019s renewable aims by ft.com", + "actionTarget": "https://www.ft.com/content/de817195-f21c-4055-ae0a-67430f20be1e" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Rising prices and supply chain risks threaten Europe\u2019s renewable aims" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7005825580357033984,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Alors m\u00eame que l'Etat fran\u00e7ais souhaite acc\u00e9l\u00e9rer sur les \u00e9nergies renouvelables (dont l'\u00e9olien et le solaire pour une large part), le contexte international fait ce qu'il peut pour contrarier ce plan, en rench\u00e9rissant fortement le cout des mati\u00e8res premi\u00e8res n\u00e9cessaires.\n\nLa raison ? C'est \"l'imbrication des \u00e9nergies\", \u00e9voqu\u00e9e par Jean-Baptiste Fressoz dans cette vid\u00e9o (et dans d'autres) qui date d'il y a quelques mois : https://lnkd.in/eWKNDxK9\n\nAujourd'hui, toutes les \u00e9nergies sont imbriqu\u00e9es les unes dans les autres. Il faut du charbon pour la m\u00e9tallurgie, du p\u00e9trole pour la chimie organique et les transports, et du gaz pour l'industrie et l'\u00e9lectricit\u00e9, et sans ces \u00e9nergies fossiles l'industrie mondialis\u00e9e est moins disponible, et donc le prix de n'importe quoi augmente... y compris celui des dispositifs de production \u00e0 base de vent et de soleil (et aussi le cout des composants pour le nucl\u00e9aire, bien s\u00fbr !).\n\nLes sc\u00e9narios \u00e9nerg\u00e9tiques que nous avons discut\u00e9s ces derni\u00e8res ann\u00e9es ignorent cette \u00e9ventualit\u00e9. Ils supposent que dans un monde se heurtant aux limites physiques nous conservons un cadre tranquille, sans accidents, sans p\u00e9nuries de mati\u00e8res premi\u00e8res, et sans disruptions des chaines mondialis\u00e9es qui permettent de s'approvisionner en tout et n'importe quoi \u00e0 prix sans cesse en baisse.\n\nIl y a donc une contradiction interne qui commence \u00e0 devenir visible : ces sc\u00e9narios supposent de garder le b\u00e9n\u00e9fice des combustibles fossiles (la formidable \"productivit\u00e9\" de l'\u00e9conomie) tout en se d\u00e9barrassant de ces m\u00eames combustibles. La traduction \u00e9conomique est des prix suppos\u00e9s rester bas pour les dispositifs ENR alors m\u00eame que ces ENR b\u00e9n\u00e9ficient de la productivit\u00e9 fossile.\n\nRTE a annonc\u00e9 publiquement il y a quelques mois avoir mis en chantier une variante de ses sc\u00e9narios appel\u00e9e \"mondialisation contrari\u00e9e\". Il est pertinent de penser les options possibles dans un monde o\u00f9 se procurer tout ce qui est lointain devient de plus en plus difficile, et o\u00f9 la productivit\u00e9 du travail (qui vient avant tout des machines, lesquelles sont avant tout nourries \u00e0 l'\u00e9nergie fossile, et qui sont pour une large part situ\u00e9es \u00e0 l'ext\u00e9rieur du pays) est structurellement orient\u00e9e \u00e0 la baisse et non \u00e0 la hausse.\n\nPour d\u00e9sagr\u00e9able que soit peut-\u00eatre un exercice de pens\u00e9e consistant \u00e0 imaginer que tout puisse aller de travers, il correspond \u00e0 une \u00e9volution possible du monde (car gouverner c'est pr\u00e9voir !). Il y a fort \u00e0 parier que dans un tel cadre :\n- aucune option n'apparait comme sans risque (le risque premier \u00e9tant de ne \"pas y arriver\" et donc d'avoir des p\u00e9nuries \u00e9lectriques chroniques, et les impacts sur le fonctionnement du pays qui vont avec)\n- la hi\u00e9rarchie des options sera bien plus diff\u00e9renci\u00e9e que dans le monde \"en croissance verte\" de tous les sc\u00e9narios d\u00e9j\u00e0 publi\u00e9s (y compris ceux de l'Ademe).\n\nNous n'avons qu'un seul essai pour b\u00e2tir le syst\u00e8me \u00e9nerg\u00e9tique d\u00e9carbon\u00e9 de 2100. Se tromper de plan est pour partie non rattrapable." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7005825580357033984,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7005825581208477696,urn:li:activity:7005825581208477696,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7005825581208477696,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7005825581208477696,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7005825581208477696", + "threadId": "activity:7005825581208477696", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005825581208477696", + "urn": "urn:li:activity:7005825581208477696", + "numComments": 66, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7005825581208477696", + "reactionTypeCounts": [ + { + "count": 658, + "reactionType": "LIKE" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 101, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7005825581208477696", + "numLikes": 881, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005825581208477696", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 882, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7005603227807186944", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7005603227807186944)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7005603227807186944)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_electricit%C3%A9-le-gouvernement-pr%C3%A9pare-les-activity-7005603227807186944-WEjO?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7005603226947313664", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7005603227807186944", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7005603226947313664", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "xO1iiKfK7+bfwaqWyND95g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7579087810109670610", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676128670297?e=1677240000&v=beta&t=Zory4vDCcetQub6l2KKyzfgroswyc3HJSBv7opOD9I8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676128670297?e=1677240000&v=beta&t=g7MSRoOsUVT39Spfi_73bMIgIUjqbjLdB1Px3ALIo1Y", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676128670297?e=1677240000&v=beta&t=F9v2fqfgybn0VwfLorm7ALjKnxKFEJIGwC7IXKu8LxU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676128670297?e=1677240000&v=beta&t=mllRXWVw8agtKH0Asftn0fUMqIbe_WrfJQlhMjaNxsY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGLr3kXPRWv0w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7579087810109670610)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7579087810109670610)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Electricit\u00e9 : le gouvernement pr\u00e9pare les esprits aux coupures de courant by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/electricite-le-gouvernement-prepare-les-esprits-aux-coupures-de-courant-1884506" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Electricit\u00e9\u00a0: le gouvernement pr\u00e9pare les esprits aux coupures de courant" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7005603226947313664,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il aura fallu la menace de d\u00e9lestages en janvier pour que le pays se rappelle que toute notre soci\u00e9t\u00e9 moderne repose sur l'\u00e9lectricit\u00e9. De fait, sans \u00e9lectricit\u00e9, comment faire pour passer un coup de fil, accueillir les \u00e9l\u00e8ves \u00e0 l'\u00e9cole, conserver le lait au frais, maintenir une ligne de production, faire un retrait d'argent ou un virement, monter dans l'ascenseur, travailler n'importe o\u00f9 apr\u00e8s la tomb\u00e9e du jour ou dans un local sans fen\u00eatres, faire ses courses dans une grande surface (qui a besoin de lumi\u00e8re car il s'agit g\u00e9n\u00e9ralement d'un local borgne, et besoin de caisses enregistreuses), s'informer, ou faire avancer un train ? Il faut des \u00e9lectrons pour tout et partout aujourd'hui, y compris... pour apprendre qu'il n'y en aura peut-\u00eatre pas demain ! \n\nCe qui se discute actuellement, cependant, n'est pas comparable \u00e0 ce qui se passe dans Ravage de Barjavel (un roman bas\u00e9 sur la disparition instantan\u00e9e de l'\u00e9lectricit\u00e9 dans une civilisation \"avanc\u00e9e\", avec retour \u00e0 la barbarie) : il est juste question de possibles d\u00e9lestages de 2 heures, avec un seul d\u00e9lestage par client pour l'ensemble de l'hiver.\n\nMais \u00e0 quelque chose malheur est bon : esp\u00e9rons que cet \u00e9pisode, qui nous fait toucher du doigt que le risque d'un d\u00e9faut d'\u00e9lectricit\u00e9 par manque de moyens de production est possible, va nous inciter (et inciter les politiques) \u00e0 consacrer plus de temps et d'intelligence \u00e0 bien peser les risques dans le choix d'un sc\u00e9nario \u00e9lectrique pour l'avenir. \n\nActuellement, nous voyons un peu la trace des choix faits dans le pass\u00e9 (pas que, il y a aussi le nucl\u00e9aire en r\u00e9paration ou maintenance en France) : capacit\u00e9s nucl\u00e9aires d\u00e9lib\u00e9r\u00e9ment abandonn\u00e9es (Allemagne, en Belgique et en France), moindre disponibilit\u00e9 du gaz qui devait \"assurer la transition\", modes intermittents qui ne sont pas compl\u00e9t\u00e9s par du stockage. \n\nLa cons\u00e9quence est \"juste\" un recours accru au charbon alors que le plan \u00e9tait de s'en passer (les \u00e9missions instantan\u00e9es de l'\u00e9lectricit\u00e9 sont assez \u00e9lev\u00e9es \u00e0 l'heure o\u00f9 je tape ces lignes : https://lnkd.in/eRvA7w-a ), et \u00e9ventuellement un risque de quelques coupures courtes.\n\nMais le syst\u00e8me peut parfaitement devenir bien plus instable. Il suffit pour cela qu'il y ait de moins en moins de gaz \u00e0 l'avenir (rendez vous demain soir pour le savoir ! https://bit.ly/3h23tja ), pas plus de nucl\u00e9aire (ce qui sera le cas pour les 10 \u00e0 15 ans \u00e0 venir), pas beaucoup de capacit\u00e9s de stockage saisonnier (sans lesquels une hausse de l'\u00e9olien et du solaire ne contribuent que tr\u00e8s peu \u00e0 la s\u00e9curit\u00e9 d'approvisionnement), et pas plus - voire moins - de charbon. \n\nDans nos d\u00e9bats sur l'avenir \u00e9lectrique, nous avons souvent consid\u00e9r\u00e9 que le risque majeur \u00e9tait celui li\u00e9 \u00e0 un mode de production (le nucl\u00e9aire). En fait, il est d'abord de se retrouver avec un syst\u00e8me sur lequel on ne peut plus compter en toutes circonstances. En pareil cas il n'y a plus de sortie facile \u00e0 br\u00e8ve \u00e9ch\u00e9ance." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7005603226947313664,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7005603227807186944,urn:li:activity:7005603227807186944,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 146, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7005603227807186944,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7005603227807186944,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7005603227807186944", + "threadId": "activity:7005603227807186944", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005603227807186944", + "urn": "urn:li:activity:7005603227807186944", + "numComments": 300, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7005603227807186944", + "reactionTypeCounts": [ + { + "count": 2672, + "reactionType": "LIKE" + }, + { + "count": 282, + "reactionType": "INTEREST" + }, + { + "count": 248, + "reactionType": "MAYBE" + }, + { + "count": 54, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "EMPATHY" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7005603227807186944", + "numLikes": 3285, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005603227807186944", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3287, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7005239120478224384", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7005239120478224384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7005239120478224384)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_eu-climate-plan-sacrifices-carbon-storage-activity-7005239120478224384-CJct?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7005239119605825536", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7005239120478224384", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7005239119605825536", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "0J/Hsa2kMU6EUkijPJgRqg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7777078811448406199", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676232472315?e=1677240000&v=beta&t=Dna6-QwOGpbDsSNZmnJ2d83_M4DxLjx_r8gfd5tfRIE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676232472315?e=1677240000&v=beta&t=1Us5wDqEAlDPoMb3dh0HrXOUy2rmCxBMifADLwPrWoA", + "expiresAt": 1677240000000, + "height": 576 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676232472315?e=1677240000&v=beta&t=uUiTMbjNHlmnKDbD9QRZzYuF8zRmZFy0gjcvuxWtGS4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676232472315?e=1677240000&v=beta&t=NcZBSNlhk0YZqe_Kgzt1zSYa3tBcPqHhwkInXAXdlEY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHnJ4MzeszS0g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7777078811448406199)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7777078811448406199)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "nature.com \u2022 11 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EU climate plan sacrifices carbon storage and biodiversity for bioenergy by nature.com", + "actionTarget": "https://www.nature.com/articles/d41586-022-04133-1#ref-CR1" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EU climate plan sacrifices carbon storage and biodiversity for bioenergy" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7005239119605825536,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La biomasse est-elle \"neutre en carbone\" ? Dit autrement, lorsque l'on utilise de la biomasse (du bois b\u00fbche, des granul\u00e9s de bois, du biogaz, un \"biocarburant\"), peut-on compter pour z\u00e9ro les \u00e9missions de CO2 issues de la combustion du carbone organique contenu dans les v\u00e9g\u00e9taux utilis\u00e9s ?\n\nOui disent g\u00e9n\u00e9ralement les inventaires d'\u00e9mission (dont le bilan carbone). Oui, dit actuellement la r\u00e9glementation europ\u00e9enne ou fran\u00e7aise. Certes il faut compter le carbone fossile utilis\u00e9 pendant le proc\u00e9d\u00e9 de transformation qui va de la plante jusqu'au vecteur \u00e9nerg\u00e9tique qui sera utilis\u00e9 (par exemple pour de l'\u00e9thanol qui remplace de l'essence, il faut compter le carburant et la fabrication du tracteur, la distillation du \"jus\" obtenu apr\u00e8s fermentation des betteraves ou du ma\u00efs, et encore quelques bricoles), mais le carbone qui \u00e9tait contenu dans la plante, non.\n\nCa se discute, explique un \"commentaire\" paru dans Nature (un \"commentaire\" est un article qui ne donne pas lieu \u00e0 un processus de revue par les pairs, la r\u00e9daction de la revue d\u00e9cidant seule si elle le prend ou pas). Car si l'on regarde au plan mondial, il y a de la d\u00e9forestation nette pour obtenir de nouvelles surfaces agricoles.\n\nSi l'Europe rajoute des cultures \u00e9nerg\u00e9tiques en plus des cultures alimentaires, il faut disposer de plus de surface au total. Soit l'Europe d\u00e9foreste chez elle, soit elle importe directement de la biomasse \u00e9nerg\u00e9tique, et alors elle va accro\u00eetre encore plus la d\u00e9forestation \u00e0 l'ext\u00e9rieur, par effet de domino si ce n'est en direct. \n\nSi la population de l'Europe continue d'augmenter un peu, et que les r\u00e9gimes alimentaires ne changent pas, le recours accru \u00e0 la biomasse est donc assur\u00e9 d'engendrer plus de d\u00e9forestation de mani\u00e8re globale. \n\nIncidemment, les auteurs ont postul\u00e9 - de mani\u00e8re surprenante puisque le GIEC souligne abondamment le risque d'un stress accru sur les rendements agricoles - sur une augmentation \u00e0 l'avenir des rendements des cultures. Si l'on enl\u00e8ve cette hypoth\u00e8se optimiste, la conclusion est encore plus nette.\n\nIl y a 20 ans, nous aurions pu choisir d'\u00e9conomiser du gaz et du p\u00e9trole essentiellement par une baisse de la consommation (consommation des v\u00e9hicules neufs baissant bien plus vite, trafic a\u00e9rien limit\u00e9 en volume, r\u00e9novation plus vigoureuse des b\u00e2timents), ce qui aurait permis de diminuer la quantit\u00e9 de p\u00e9trole et de gaz utilis\u00e9s sans avoir besoin de compenser par la biomasse.\n\nEt aujourd'hui ? L'option nucl\u00e9aire en plus comme l'option \u00e9lectricit\u00e9 ENR en plus prenant des d\u00e9cennies pour des quantit\u00e9s significatives, et la rotation du parc (de voitures, de b\u00e2timents r\u00e9nov\u00e9s) \u00e9tant lente, si nous voulons faire manger de la biomasse \u00e0 nos voitures et nos b\u00e2timents existants, il faut en manger moins nous-m\u00eames, sauf \u00e0 sacrifier un peu plus la biodiversit\u00e9. Il n'y a qu'un sol !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7005239119605825536,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7005239120478224384,urn:li:activity:7005239120478224384,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 63, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7005239120478224384,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7005239120478224384,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7005239120478224384", + "threadId": "activity:7005239120478224384", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005239120478224384", + "urn": "urn:li:activity:7005239120478224384", + "numComments": 122, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7005239120478224384", + "reactionTypeCounts": [ + { + "count": 974, + "reactionType": "LIKE" + }, + { + "count": 150, + "reactionType": "INTEREST" + }, + { + "count": 134, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7005239120478224384", + "numLikes": 1277, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005239120478224384", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1277, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7004752069165203457", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7004752069165203457)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7004752069165203457)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_invitation-nouveau-rapport-du-shift-sur-activity-7004752069165203457-5F0y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7004752068309581824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7004752069165203457", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7004752068309581824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "8uu0DZ4WaLmJG4A77h0ZmQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7196578192530557346", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676331116371?e=1677240000&v=beta&t=hU9dAJeAR1dtr2tKDeNDIInagtDe9dOknv613A49B98", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676331116371?e=1677240000&v=beta&t=q4bc8ZN55Pnd_HljdK0tvFjy5fOvVoZ7JOAGHaWHCZ0", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676331116371?e=1677240000&v=beta&t=ijhyQykymxO_G0l_Yp-QR7hpYk_BMhIXaz-hAP3KN_s", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676331116371?e=1677240000&v=beta&t=HHrbcvsgM-2pD-Jw6s0NGlUHv0x9J4Uyc7dxnc3EcC4", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEhDFyuTKuKOQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7196578192530557346)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7196578192530557346)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [INVITATION] Nouveau rapport du Shift sur le gaz | 6 d\u00e9c. \u00e0 18h by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-rapport-gaz-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[INVITATION] Nouveau rapport du Shift sur le gaz | 6 d\u00e9c. \u00e0 18h" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7004752068309581824,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Aurons nous du gaz cet hiver ? Derri\u00e8re cette question s'en cache une autre, qui est la m\u00eame mais \u00e0 des horizons de temps plus \u00e9loign\u00e9s : aurons nous du gaz les hivers d'apr\u00e8s ? The Shift Project vous propose d'assister, le 6 d\u00e9cembre prochain \u00e0 18h, \u00e0 la pr\u00e9sentation d'un travail qui a \u00e9t\u00e9 men\u00e9 par notre association et qui permet entre autres de disserter sur cette question. \n\nPlus pr\u00e9cis\u00e9ment, nous fournirons notre analyse sur les possibilit\u00e9s \"physiques\" maximales (donc avec pour seules limites les capacit\u00e9s de production contraintes par la seule g\u00e9ologie, et les capacit\u00e9s de transport d\u00e9ployables \u00e0 l'avenir) d'approvisionnement en gaz de l'Union Europ\u00e9enne d'ici \u00e0 2050.\n\nNous avons utilis\u00e9 la m\u00eame m\u00e9thode que celle qui avait \u00e9t\u00e9 suivie pour les perspectives d'approvisionnement en p\u00e9trole dans l'Union Europ\u00e9enne d'ici \u00e0 2050 (https://lnkd.in/dwPcgve ). Nous avions alors eu acc\u00e8s \u00e0 une base de donn\u00e9es (non publique) recensant l'int\u00e9gralit\u00e9 des gisements p\u00e9troliers dans le monde, exploit\u00e9s ou non, incluant les gisements restants \u00e0 d\u00e9couvrir (en volume), et des experts du secteur (mentionn\u00e9s en t\u00eate du rapport) en ont d\u00e9duit, apr\u00e8s analyse, la production maximale possible d'ici \u00e0 2050, sous seule contrainte g\u00e9ologique, des 16 premiers pays fournissant l'Europe (qui sont aussi les 16 premiers producteurs mondiaux, hors Br\u00e9sil et Canada).\n\nNous avons reproduit la m\u00eame d\u00e9marche avec les gisements de gaz. Incidemment ces derniers sont pour partie aussi ceux fournissant du p\u00e9trole, puisqu'une partie du gaz produit dans le monde est issu de gisements mixtes (contenant du p\u00e9trole et du gaz).\n\nCe travail - in\u00e9dit en France dans l'espace public - a fait l'objet d'un financement sp\u00e9cifique de RTE (rappelons que 20% environ de l'\u00e9lectricit\u00e9 europ\u00e9enne \u00e9tait produite avec du gaz en 2021), de la Direction g\u00e9n\u00e9rale des relations internationales et de la strat\u00e9gie (DGRIS) du Minist\u00e8re des Arm\u00e9es, et du BRGM, le service g\u00e9ologique national (https://lnkd.in/etMp4BRp).\n\nC'est donc Mardi prochain que vous pourrez \"venir au r\u00e9sultat\". Sans divulg\u00e2cher le r\u00e9sultat, comme disent nos amis qu\u00e9becois, et sans mauvais jeu de mots, vous d\u00e9couvrirez en quoi, apr\u00e8s le p\u00e9trole (dont le flux entrant en Europe devrait baisser de mani\u00e8re massive d'ici \u00e0 2050 m\u00eame si la question climatique n'est pas g\u00e9r\u00e9e), ca risque aussi d'\u00eatre chaud pour le gaz...\n\nInscription gratuite \u00e0 partir de la page en lien dans l'image. Si vous \u00eates journaliste, une conf\u00e9rence de presse aura lieu le m\u00eame jour \u00e0 9h30 (d\u00e9tails d'inscription sur la m\u00eame page). A vos cols roul\u00e9s ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7004752068309581824,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7004752069165203457,urn:li:activity:7004752069165203457,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 31, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7004752069165203457,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7004752069165203457,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7004752069165203457", + "threadId": "activity:7004752069165203457", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004752069165203457", + "urn": "urn:li:activity:7004752069165203457", + "numComments": 86, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7004752069165203457", + "reactionTypeCounts": [ + { + "count": 973, + "reactionType": "LIKE" + }, + { + "count": 92, + "reactionType": "MAYBE" + }, + { + "count": 79, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7004752069165203457", + "numLikes": 1174, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004752069165203457", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1175, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7004364148159471617", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7004364148159471617)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7004364148159471617)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_russia-is-using-energy-as-a-weapon-activity-7004364148159471617-wnvo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7004364146745995264", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7004364148159471617", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7004364146745995264", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "izQL+2SeZptmUi5nLcDf8Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9013362913010070605", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675783101554?e=1677240000&v=beta&t=9UnxAAu09oNCZI0y6rULc3Kl3nM9f0f8AOe0QrUfB7Q", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675783101554?e=1677240000&v=beta&t=sdhXF9yc3_bGtwX5GWPpvNlfEJcdc11QU6TzRrFB2ZA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675783101555?e=1677240000&v=beta&t=ult9fJx2cRvoRyqI-KqMyL33CFoockOkPOrswyMcH8o", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675783101555?e=1677240000&v=beta&t=PryQDLdW0XBF4f_4vBkj6Vzl2W8Gt2G4lWHq0__jOqs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHnQFMSY0aQmA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9013362913010070605)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9013362913010070605)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "economist.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Russia is using energy as a weapon by economist.com", + "actionTarget": "https://www.economist.com/interactive/graphic-detail/2022/11/26/high-fuel-prices-could-kill-more-europeans-than-fighting-in-ukraine-has" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Russia is using energy as a weapon" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7004364146745995264,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"Ile ne passera pas l'hiver\" : cette vieille maxime rappelle que le froid tue. Il tue en direct car il augmente les risques cardiovasculaires (le froid stresse un peu le syst\u00e8me circulatoire), et en indirect car il favorise la survie des virus pendant leur s\u00e9jour dans l'air, et nous rassemble dans des int\u00e9rieurs peu ventil\u00e9s o\u00f9 la contamination est plus rapide (c'est pour ces deux raisons que les \u00e9pid\u00e9mies de grippe ont lieu l'hiver).\n\nChez les \u00eatres humains, une saison hivernale plus froide tue donc un peu plus (ce n'est pas le cas pour nombre de v\u00e9g\u00e9taux des moyennes latitudes, o\u00f9 un hiver trop doux n'\u00e9limine pas les ravageurs). En Europe, cet effet de surmortalit\u00e9 hivernale est d'autant plus prononc\u00e9 que la temp\u00e9rature moyenne du pays est \u00e9lev\u00e9e. Un hiver \"plus froid que la normale\" fait donc plus de morts au Portugal qu'en Finlande, parce que dans les pays du Nord les infrastructures sont con\u00e7ues \"\u00e0 la base\" pour prot\u00e9ger les gens du froid alors que ce n'est pas autant le cas au sud.\n\nPar ailleurs, quand les prix de l'\u00e9nergie sont \u00e9lev\u00e9s, les gens se chauffent moins, et cela fait des morts en plus. Cet effet avait d\u00e9j\u00e0 \u00e9t\u00e9 constat\u00e9 au Japon suite \u00e0 Fukushima, et avec l'envol\u00e9e des prix du gaz et de l'\u00e9lectricit\u00e9 sur notre continent, il va malheureusement aussi s'appliquer l'hiver prochain (et possiblement les hivers d'apr\u00e8s, car nous n'avons pas fini d'avoir des sujets avec l'approvisionnement en gaz sur notre continent : https://lnkd.in/dmPNvP3V ).\n\nThe Economist a ainsi fait des simulations sur le nombre de morts que la guerre en Ukraine allait provoquer avec cet effet de hausse des prix. La conclusion est que les morts par d\u00e9faut de chauffage seront plus nombreux que ceux directement li\u00e9s au conflit. Mais \u00e9videmment ce ne sont pas les m\u00eames : sans que ce constat ne porte en quoi que ce soit un jugement de valeur, la guerre tue surtout des gens jeunes et \"bien portants\", le froid surtout des gens \u00e2g\u00e9s et/ou d\u00e9j\u00e0 en mauvaise condition sanitaire.\n\nCe serait en Italie que cet effet serait le plus ample, et en France et en Espagne le moins. \n\nCet \u00e9pisode rappelle qu'il y a une diff\u00e9rence importante entre la sobri\u00e9t\u00e9 et la pauvret\u00e9 : les deux vont avec une baisse de l'\u00e9nergie utilis\u00e9e parce que nous nous passons de services auparavant utilis\u00e9s (par exemple des m\u00e8tres carr\u00e9s chauff\u00e9s), mais dans le premier cas c'est d\u00e9sir\u00e9 et planifi\u00e9 (par exemple on optimise l'occupation des b\u00e2timents existants en diminuant l'\u00e9nergie pour chauffer ou refroidir le parc, mais sans diminuer le confort thermique des occupants), ce qui minimise les cons\u00e9quences d\u00e9sagr\u00e9ables ; dans le second c'est subi alors que nous n'avions rien demand\u00e9, et fatalement ca se passe moins bien." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7004364146745995264,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7004364148159471617,urn:li:activity:7004364148159471617,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 43, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7004364148159471617,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7004364148159471617,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7004364148159471617", + "threadId": "activity:7004364148159471617", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004364148159471617", + "urn": "urn:li:activity:7004364148159471617", + "numComments": 113, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7004364148159471617", + "reactionTypeCounts": [ + { + "count": 1049, + "reactionType": "LIKE" + }, + { + "count": 242, + "reactionType": "INTEREST" + }, + { + "count": 183, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7004364148159471617", + "numLikes": 1490, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004364148159471617", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1490, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7003671719844446208", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7003671719844446208)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7003671719844446208)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_chaleur-renouvelable-la-grande-oubli%C3%A9e-activity-7003671719844446208-feFe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7003671719206879232", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7003671719844446208", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7003671719206879232", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "0YMSoHykCRaxDxKQtLLI7A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8585409607354519917", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676548360767?e=1677240000&v=beta&t=BQCp4N22cu_N9qcnpeoDmA6vyYWox4jBdJz00947Ya0", + "expiresAt": 1677240000000, + "height": 599 + }, + { + "width": 1067, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676548360767?e=1677240000&v=beta&t=FKoVBE-gpJlVEXJBqHCGG9vmC_2mowISwYnrqGVm63g", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676548360767?e=1677240000&v=beta&t=tv1ZYPraSMa833VWWoWZK_RoQSHypygt9e73pcGkXV4", + "expiresAt": 1677240000000, + "height": 119 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676548360767?e=1677240000&v=beta&t=GvGrhaNw9bE3tmiM-K0wn9KsmgYc-9uMJG2OgeSx9lU", + "expiresAt": 1677240000000, + "height": 359 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEDoFy4e7cplA/articleshare-shrink_" + }, + "displayAspectRatio": 0.74875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8585409607354519917)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8585409607354519917)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Chaleur renouvelable : la grande oubli\u00e9e de la strat\u00e9gie \u00e9nerg\u00e9tique fran\u00e7aise ? | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-chaleur-renouvelable" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Chaleur renouvelable : la grande oubli\u00e9e de la strat\u00e9gie \u00e9nerg\u00e9tique fran\u00e7aise ? | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7003671719206879232,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quand on prononce l'expression \"\u00e9nergie renouvelable\", nombre d'entre nous vont inconsciemment remplacer \"\u00e9nergie\" par \"\u00e9lectricit\u00e9\", et, aid\u00e9s en cela par l'image d'Epinal du panneau solaire et de l'\u00e9olienne, au sein de l'\u00e9lectricit\u00e9 on ne pense pas souvent aux barrages, pourtant la premi\u00e8re source d'\u00e9lectricit\u00e9 renouvelable dans le monde (16% du total vs environ 7% pour l'\u00e9olien et 4% pour le solaire) et en France.\n\nMais dans l'\u00e9nergie il n'y a pas que l'\u00e9lectricit\u00e9. Carbone 4 vous propose une publication de 50 pages sur la chaleur, et plus pr\u00e9cis\u00e9ment la chaleur renouvelable, qui, de fait, a re\u00e7u consid\u00e9rablement moins d'attention et de moyens de la part de la puissance publique que l'\u00e9lectricit\u00e9 ces derni\u00e8res d\u00e9cennies, alors que la chaleur est bien plus fossile que l'\u00e9lectricit\u00e9 dans notre pays. D'o\u00f9 la question pos\u00e9e dans le titre : n'avons nous pas \"oubli\u00e9\" l'essentiel, sachant que la chaleur c'est 45% des usages \u00e9nerg\u00e9tiques finaux en France (l'\u00e9lectricit\u00e9 c'est environ 20%).\n\nPompes \u00e0 chaleur a\u00e9rothermiques ou g\u00e9othermiques, pour le chauffage (chaleur basse temp\u00e9rature) ou l'industrie (chaleur haute temp\u00e9rature), bois, solaire thermique, biogaz... : l'\u00e9quipe de Carbone 4 a pass\u00e9 en revue les diverses sources \u00e9ligibles, leurs usages possibles, les potentiels, et les couts. \n\nComme dans l'\u00e9lectricit\u00e9, toutes les sources de chaleur renouvelable ne se valent pas : pas les m\u00eames gisements, pas les m\u00eames efficacit\u00e9s, pas les m\u00eames couts de mise en oeuvre et couts \u00e0 tonne de CO2 \u00e9vit\u00e9e. Comme pour l'\u00e9lectricit\u00e9, certaines sources sont b\u00e9n\u00e9fiques pour le CO2 mais pas sans contreparties sur d'autres impacts : c'est notamment le cas pour la biomasse et la biodiversit\u00e9. \n\n2 applications sont largement sous-d\u00e9velopp\u00e9es (au sens premier du terme : pas assez d\u00e9velopp\u00e9es) en France : le solaire thermique et la g\u00e9othermie (incluant les pompes \u00e0 chaleur).\n\nEn conclusion \"La d\u00e9carbonation de la chaleur en France ne suit pas une trajectoire qui permettrait d\u2019atteindre les objectifs fix\u00e9s dans la loi pour respecter une neutralit\u00e9 carbone \u00e0 horizon 2050\". Avant de savoir quoi faire pour que cette conclusion soit un peu moins valable, cette publication vous permet de comprendre de quelle situation nous partons (et en plus c'est gratuit, c'est pas beau \u00e7a ?)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7003671719206879232,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7003671719844446208,urn:li:activity:7003671719844446208,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 144, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7003671719844446208,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7003671719844446208,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7003671719844446208", + "threadId": "activity:7003671719844446208", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003671719844446208", + "urn": "urn:li:activity:7003671719844446208", + "numComments": 214, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7003671719844446208", + "reactionTypeCounts": [ + { + "count": 2280, + "reactionType": "LIKE" + }, + { + "count": 254, + "reactionType": "INTEREST" + }, + { + "count": 156, + "reactionType": "MAYBE" + }, + { + "count": 51, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "EMPATHY" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7003671719844446208", + "numLikes": 2787, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003671719844446208", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2787, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7003260990230274048", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7003260990230274048)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7003260990230274048)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-cop-27-sest-achev%C3%A9e-il-y-a-peu-il-est-activity-7003260990230274048-SRQ0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7003260989353689088", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7003260990230274048", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7003260989353689088", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "tK4PDKi8GZEMITo0hJMNNQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGOEGTIiL_H7Q", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGOEGTIiL_H7Q", + "artifacts": [ + { + "width": 767, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1669707532955?e=1679529600&v=beta&t=NlLx-UB6aFn87i2zEznRCtcrX1TUUYofRjzF5xvP6gw", + "expiresAt": 1679529600000, + "height": 477 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1669707533110?e=1679529600&v=beta&t=Lh7LuBSBKHRkVWbQAloi5UbXCqnMHlMgCWd_5k95UkA", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 767, + "fileIdentifyingUrlPathSegment": "1280/0/1669707533110?e=1679529600&v=beta&t=B7VeYs6XDQm1oy6t1n_kqoGuwVYZEnfAofKSR9wjSxA", + "expiresAt": 1679529600000, + "height": 477 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1669707533110?e=1679529600&v=beta&t=MFi_44HT1B3oVfybH9qVPeH1UQ4KEopS3lf-ovNH8vU", + "expiresAt": 1679529600000, + "height": 299 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1669707533110?e=1679529600&v=beta&t=iX4_CsRKgAZdFcRSVmNlxm-e-aMZb_j3EFDbJ2ih9_4", + "expiresAt": 1679529600000, + "height": 100 + }, + { + "width": 767, + "fileIdentifyingUrlPathSegment": "800/0/1669707533110?e=1679529600&v=beta&t=5o7jBQwLNfiyA9_3My6B80GrY3dwSreE9yGGXUxGpKY", + "expiresAt": 1679529600000, + "height": 477 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGOEGTIiL_H7Q/feedshare-shrink_" + }, + "displayAspectRatio": 0.621903520208605 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7003260989353689088,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La COP 27 s'est achev\u00e9e il y a peu. Il est trop t\u00f4t pour savoir si cette COP aura contribu\u00e9, comme la COP 26, \u00e0 polariser l'opinion de mani\u00e8re plus prononc\u00e9e qu'avant (un article en libre acc\u00e8s dans Nature montre que la COP 26 a conduit la twittosph\u00e8re \u00e0 se polariser bien plus qu'avant, avec un camp \"d'anti\", largement pioch\u00e9 dans les milieux tr\u00e8s conservateurs, qui monte en puissance : https://lnkd.in/eVRJBvhn ).\n\nPar contre il est toujours temps de faire un bilan de l'\u00e9volution des \u00e9missions depuis la signature de la Convention Climat, au Sommet de la Terre en 1992. C'est en effet dans le cadre de cette Convention que se tiennent des rencontres annuelles depuis 1995, appel\u00e9es COP (Convention Of the Parties), qui donnent lieu \u00e0 de nombreux commentaires sur le fait qu'elles aient \u00e9t\u00e9 un succ\u00e8s ou un \u00e9chec.\n\nLe bilan que je vous propose est tout simplement la variation des \u00e9missions plan\u00e9taires de gaz \u00e0 effet de serre entre 1992 et 2021 (graphique ci-dessous). Pour chaque gaz, et chaque source principale pour le CO2, j'ai regard\u00e9 de combien avaient vari\u00e9 les \u00e9missions de 1992 quand on les regarde aujourd'hui. Par exemple, les \u00e9missions de CO2 issu du charbon \u00e9taient en 2021 75% plus \u00e9lev\u00e9 qu'en 1992.\n\nPour l'ensemble du CO2 les \u00e9missions ont augment\u00e9 d'environ 60% en 29 ans, et ainsi de suite.\n\nDans l'ensemble des \u00e9nergies fossiles, c'est aujourd'hui le charbon qui engendre les \u00e9missions les plus fortes, mais c'est le gaz qui a connu la plus forte augmentation sur la p\u00e9riode. \n\n\"Lime calcination\" d\u00e9signe en fran\u00e7ais la calcination du calcaire, c'est \u00e0 dire la r\u00e9action qui a lieu dans les fours \u00e0 ciment (chauff\u00e9s \u00e0 plus de 1000 \u00b0C), o\u00f9 la mol\u00e9cule de calcaire - CaCO3 - est d\u00e9compos\u00e9e en chaux vive - CaO - et du CO2, ce dernier partant dans l'air. la chaux vive se combine avec d'autres min\u00e9raux (marne et argile) pour former le clinker qui, broy\u00e9, donnera le composant principal du ciment. Il se produit annuellement environ 4 milliards de tonnes de ciment dans le monde, conduisant \u00e0 l'\u00e9mission d'environ 2,5 milliards de tonnes de CO2.\n\nLe m\u00e9thane a augment\u00e9 de 25% sur la p\u00e9riode et les autres gaz (protoxyde d'azote et gaz halog\u00e9n\u00e9s) d'environ 50% Aucun n'a baiss\u00e9.\n\nEn regardant ce tableau il est \u00e9vident que d'avoir sign\u00e9 la Convention Climat n'a pour l'heure pas suffit \u00e0 inverser la tendance. On peut au moins en d\u00e9duire une conclusion simple : compter essentiellement sur ces r\u00e9unions pour r\u00e9gler le probl\u00e8me \"\u00e0 notre place\" est une illusion. Si nous voulons que les valeurs de ce graphique deviennent n\u00e9gatives (ce qui est l'objectif) il faudra prendre le taureau par les cornes dans chaque pays pris individuellement.\n\nEn Europe, comme de toute fa\u00e7on la d\u00e9crue d'approvisionnement en combustibles fossiles \u00e9tait amorc\u00e9e avant Poutine, la direction n'est pas n\u00e9gociable. Seules les modalit\u00e9s de la p\u00e9dagogie du probl\u00e8me et les modalit\u00e9s de gestion de la baisse le sont.\n\nDonn\u00e9es diverses et compilation de votre serviteur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7003260989353689088,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7003260990230274048,urn:li:activity:7003260990230274048,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7003260990230274048,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7003260990230274048,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7003260990230274048", + "threadId": "activity:7003260990230274048", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003260990230274048", + "urn": "urn:li:activity:7003260990230274048", + "numComments": 115, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7003260990230274048", + "reactionTypeCounts": [ + { + "count": 1014, + "reactionType": "LIKE" + }, + { + "count": 170, + "reactionType": "INTEREST" + }, + { + "count": 98, + "reactionType": "MAYBE" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7003260990230274048", + "numLikes": 1315, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003260990230274048", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1315, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002900350407966720", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002900350407966720)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002900350407966720)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sondage-exclusif-les-fran%C3%A7ais-trouvent-activity-7002900350407966720-nU0y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002900349405569024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002900350407966720", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002900349405569024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "jg0y/9KVyHgQ3KI2UnshJQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8036308201381245324", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675670372974?e=1677240000&v=beta&t=G0WzxIoKLR1_wltPY-Obdk_O7oatLCMsLS6phybYoXc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675670372974?e=1677240000&v=beta&t=fzszG6ZvbnoIvPBXS6wmpLd4LBgEgaFbvz5SM2or5A0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675670372974?e=1677240000&v=beta&t=UM5RmY9T6ra8XHPlyzYiF7-lJdRhYhDWQWfVEEkvC2k", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675670372974?e=1677240000&v=beta&t=9fIDs0KmhYKXbY1KRf1QoiNAWR_makJ5tF48HOQlAUQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHDs8Y3iG5jPg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8036308201381245324)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8036308201381245324)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: SONDAGE EXCLUSIF - Les Fran\u00e7ais trouvent peu lisible la politique \u00e9nerg\u00e9tique du gouvernement by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/politique-societe/societe/sondage-exclusif-les-francais-trouvent-illisible-la-politique-energetique-du-gouvernement-1881508" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "SONDAGE EXCLUSIF - Les Fran\u00e7ais trouvent peu lisible la politique \u00e9nerg\u00e9tique du gouvernement" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002900349405569024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un sondage effectu\u00e9 pour Les Echos sur la politique \u00e9nerg\u00e9tique du gouvernement est publi\u00e9 dans ce journal (\u00e9lectronique ; on devrait plut\u00f4t dire \"publi\u00e9 sur cet \u00e9cran !).\n\nIl fait appara\u00eetre quelques enseignements int\u00e9ressants :\n\n- aucune des questions reproduites dans l'article ne contient les mots \"p\u00e9trole\" ou \"gaz\". Les questions portent quasi-exclusivement sur l'\u00e9lectricit\u00e9 (un travers classique des d\u00e9bats sur l'\u00e9nergie). Il y a une question sur l'ind\u00e9pendance \u00e9nerg\u00e9tique qui peut \u00e9ventuellement s'interpr\u00e9ter en pensant p\u00e9trole, mais c'est tout.\n\n- ensuite les r\u00e9ponses sont parfois gentiment contradictoires les unes avec les autres (ce que fait remarquer l'article), parce que la r\u00e9ponse est souvent dans la question avec cette mani\u00e8re de proc\u00e9der. Les anglais posent souvent des questions comportant leurs propres contreparties (par exemple \"sachant que d'avoir au moins y% d'\u00e9olien demandera qu'\u00e0 un moment il y ait une \u00e9olienne de plus de z m de haut \u00e0 moins de x km de chez vous si vous habitez dans une agglom\u00e9ration de moins de N habitants, \u00eates vous favorable \u00e0 ce d\u00e9veloppement ?\" \n\n- nonobstant ce qui pr\u00e9c\u00e8de on d\u00e9couvre (avec \u00e9tonnement pour moi parce que c'est probablement un revirement r\u00e9cent) que la construction de nouvelles centrales nucl\u00e9aires est vue plus favorablement que la construction de nouvelles \u00e9oliennes. \n\n- la strat\u00e9gie du gouvernement est consid\u00e9r\u00e9e comme \"pas claire\" sur l'\u00e9nergie (en fait l'\u00e9lectricit\u00e9, donc). Mais il est impossible de savoir au vu de ce seul sondage si cela r\u00e9sulte du fait que le gouvernement est consid\u00e9r\u00e9 comme \"pas clair\" quoi qu'il fasse (ce qui est possible voire probable si le pouvoir en place a \u00e9t\u00e9 \"mal \u00e9lu\"), ou bien si l'\u00e9nergie - l'\u00e9lectricit\u00e9 donc - est \"nettement moins claire\" que le reste. Dans ce dernier cas il y a \u00e0 nouveau deux possibilit\u00e9s : que ce soit le r\u00e9sultat logique de revirements (sur le nucl\u00e9aire par exemple), ou un jugement qui cache en fait le d\u00e9sarroi face \u00e0 la valse actuelle des prix (la question n'est pas pos\u00e9e).\n\nSavoir ce que pensent nos concitoyens est essentiel en d\u00e9mocratie. Mais pour avoir une mati\u00e8re suffisamment d\u00e9taill\u00e9e pour en tirer des conclusions pour l'action (l'action pouvant inclure la p\u00e9dagogie du probl\u00e8me quand il est manifeste que ce dernier n'est pas bien appr\u00e9hend\u00e9), il faut aller au del\u00e0 des questions \"trop simples\" des sondages, qui donnent souvent une information incompl\u00e8te - et parfois incoh\u00e9rente - sur la hi\u00e9rarchie des pr\u00e9f\u00e9rences quand on ne peut pas tout avoir. La premi\u00e8re conclusion que je tire de la lecture des r\u00e9sultats est qu'il faut en savoir plus !\n\nNous n'aurons pas deux essais pour b\u00e2tir un syst\u00e8me d\u00e9carbon\u00e9 et durable au 21\u00e8 si\u00e8cle. Pour se donner les meilleures chances d'y parvenir, il faut comprendre \u00e0 la fois les barri\u00e8res physiques et les pr\u00e9f\u00e9rences et barri\u00e8res sociales. Les sondages ne servent \u00e0 rien pour les premi\u00e8res, et pour les secondes il doivent imp\u00e9rativement \u00eatre compl\u00e9t\u00e9s par des analyses plus d\u00e9taill\u00e9es." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002900349405569024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002900350407966720,urn:li:activity:7002900350407966720,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002900350407966720,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002900350407966720,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002900350407966720", + "threadId": "activity:7002900350407966720", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002900350407966720", + "urn": "urn:li:activity:7002900350407966720", + "numComments": 115, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002900350407966720", + "reactionTypeCounts": [ + { + "count": 774, + "reactionType": "LIKE" + }, + { + "count": 60, + "reactionType": "INTEREST" + }, + { + "count": 58, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002900350407966720", + "numLikes": 908, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002900350407966720", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 914, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002749696876150784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002749696876150784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002749696876150784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sales-commercial-marketing-projet-r%C3%A9glementaire-activity-7002749696876150784-3K-J?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002749696234397697", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002749696876150784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002749696234397697", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "Or5SfEP2VCW5R9J1++zXnA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7566106737272260772", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675670043036?e=1677240000&v=beta&t=x1ru5RvXQ49McxndMr5GlDc_RC1phb3s-zKdZ5Em7cw", + "expiresAt": 1677240000000, + "height": 418 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675670043036?e=1677240000&v=beta&t=H7ARJdDbe9KBHwswMCXvK-reBmg1bjSIELTqMLLFYw8", + "expiresAt": 1677240000000, + "height": 627 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675670043036?e=1677240000&v=beta&t=WsZJgYnwBx9JnkqNZ8R3ytkVEMk6ZlsH4IODRfMgrXU", + "expiresAt": 1677240000000, + "height": 83 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675670043036?e=1677240000&v=beta&t=bCu3II122KWOkPJG0sZteD-2r2ErJ_Ox5kvKFOMYSzc", + "expiresAt": 1677240000000, + "height": 250 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHEi-G2uVKrIA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7566106737272260772)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7566106737272260772)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "welcometothejungle.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Sales (Commercial, Marketing, Projet, R\u00e9glementaire) - Carbon4 Finance - CDI \u00e0 Paris by welcometothejungle.com", + "actionTarget": "https://www.welcometothejungle.com/fr/companies/carbon4-finance/jobs/sales-junior-commercial-marketing-projet-reglementaire_paris" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Sales (Commercial, Marketing, Projet, R\u00e9glementaire) - Carbon4 Finance - CDI \u00e0 Paris" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002749696234397697,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Imaginons que vous veniez de terminer des \u00e9tudes sup\u00e9rieures en vue d'avoir une activit\u00e9 dans le monde financier ou dans une fonction commerciale. Imaginons que, pendant vos \u00e9tudes, vous ayez par ailleurs r\u00e9alis\u00e9 que vous ne souhaitiez pas vendre ou financer des voitures \u00e0 essence, des m\u00e8tres carr\u00e9s de centres commerciaux, de l'imperm\u00e9abilisation des sols, des v\u00eatements qui seront port\u00e9s 3 fois, des aliments ou boissons avec plein de sucre, des engins digitaux alimentant la course aux d\u00e9bits, et j'en passe.\n\nIl se pourrait alors que cette annonce de Carbon 4 Finance vous int\u00e9resse : nous cherchons un(e) \"junior sales\" (en bon fran\u00e7ais dans le texte !), qui id\u00e9alement connaisse \u00e0 la fois la finance et les questions environnementales, pour renforcer notre \u00e9quipe commerciale.\n\nTous les d\u00e9tails dans l'annonce ci-dessous !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002749696234397697,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002749696876150784,urn:li:activity:7002749696876150784,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002749696876150784,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002749696876150784,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002749696876150784", + "threadId": "activity:7002749696876150784", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002749696876150784", + "urn": "urn:li:activity:7002749696876150784", + "numComments": 54, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002749696876150784", + "reactionTypeCounts": [ + { + "count": 688, + "reactionType": "LIKE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002749696876150784", + "numLikes": 751, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002749696876150784", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 751, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002601952358375426", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002601952358375426)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002601952358375426)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_air-quality-in-europe-2022-activity-7002601952358375426-xEsX?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002601951557251072", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002601952358375426", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002601951557251072", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "njVEFUQdHfgl4QP44Gg2Ow==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8151027872525130342", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1669316510253?e=1677240000&v=beta&t=lZOCKeTcrBgj3OD_p1FDP8fCrSpyLfcZ3emcslcoCt8", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1669316510253?e=1677240000&v=beta&t=0vyP1Yffr0uIRHdNikiRm4XUQYTglJwFS9R5kW7JGfU", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1669316510253?e=1677240000&v=beta&t=ZUey7RbLLqkJ8fr_JbJq9KZxygaIW1VhErW5LLDJsYA", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1669316510253?e=1677240000&v=beta&t=LHOkK7PguJRoeVo9uy_YBLN3-OP_4u85Djyk2zu_4g0", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE2_RweuB2cWQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8151027872525130342)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8151027872525130342)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "eea.europa.eu \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Air quality in Europe 2022 by eea.europa.eu", + "actionTarget": "https://www.eea.europa.eu/publications/air-quality-in-europe-2022/air-quality-in-europe-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Air quality in Europe 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002601951557251072,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans un rapport qui vient d'\u00eatre publi\u00e9 par l'Agence Europ\u00e9enne de l'Environnement (qui est une des instances officielles de l'Union europ\u00e9enne), figure un chiffre un peu impressionnant : la pollution aux particules fines (en particulier aux particules les plus fines, sous 2,5 microns) a engendr\u00e9 en 2020 plus de 200.000 morts pr\u00e9matur\u00e9s au sein des 27 pays membres, ou encore des millions d'ann\u00e9es de vie perdues.\n\nCette pollution engendre aussi de la morbidit\u00e9 chronique (affections bronchiques et pulmonaires notamment) qui peuvent conduire \u00e0 des invalidit\u00e9s partielles. Ce sont les pays de l'Est qui payent le plus lourd tribut \u00e0 cette pollution en nombre de vies perdues pour 100.000 habitants.\n\nLa pollution aux oxydes d'azote (qui vient de toute source de combustion) engendre elle aussi des morts pr\u00e9matur\u00e9 ainsi que du diab\u00e8te, et l'ozone des probl\u00e8mes respiratoires et aussi des morts pr\u00e9matur\u00e9s.\n\n90% de la population urbaine europ\u00e9enne est ainsi expos\u00e9e \u00e0 des niveaux de pollution qui exc\u00e8dent les seuils recommand\u00e9s par l'OMS. Les particules les plus fines viennent surtout de la combustion des \u00e9nergies fossiles : transports (qui sont aussi la premi\u00e8re source d'oxydes d'azote), chaudi\u00e8res de b\u00e2timents, et \u00e9lectricit\u00e9 faite au gaz et au charbon (une centrale \u00e0 charbon en rejette des dizaines de tonnes par milliard de kWh produit). \n\nDiminuer la quantit\u00e9 d'\u00e9nergies fossiles que nous utilisons a donc aussi un b\u00e9n\u00e9fice sanitaire. En fait il est m\u00eame double : passer \u00e0 plus de modes actifs dans les transports (marcher ou p\u00e9daler) \u00e9vite \u00e0 la fois des \u00e9missions de CO2 et de polluants locaux, et \u00e9vite de la s\u00e9dentarit\u00e9, qui est aussi un facteur important de baisse de la condition sanitaire. \n\nL'\u00e9quation n'est \u00e9videmment pas si simple, parce que, compar\u00e9 \u00e0 il y a un si\u00e8cle, l'\u00e9nergie abondante est aussi ce qui nous a amen\u00e9 la suffisance alimentaire (production accrue de nourriture et moyens de stockage et de transport performants), la protection contre les \u00e9l\u00e9ments (froid notamment), et la prophylaxie (eau potable, d\u00e9tergents et d\u00e9sinfectants). Mais il est tout \u00e0 fait possible de bouger progressivement le curseur pour conserver ces acquis tout en d\u00e9carbonant fortement notre mode de vie. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002601951557251072,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002601952358375426,urn:li:activity:7002601952358375426,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 90, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002601952358375426,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002601952358375426,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002601952358375426", + "threadId": "activity:7002601952358375426", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002601952358375426", + "urn": "urn:li:activity:7002601952358375426", + "numComments": 165, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002601952358375426", + "reactionTypeCounts": [ + { + "count": 1868, + "reactionType": "LIKE" + }, + { + "count": 231, + "reactionType": "INTEREST" + }, + { + "count": 117, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "APPRECIATION" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002601952358375426", + "numLikes": 2286, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002601952358375426", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2287, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002220857016119296", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002220857016119296)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002220857016119296)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_laugmentation-des-tarifs-de-lassurance-activity-7002220857016119296-_SG_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002220856265297920", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002220857016119296", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002220856265297920", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "YWGLTp0+OfqvYbGJ+xpNBg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8423740630780296532", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675805509728?e=1677240000&v=beta&t=-Echq-g8P-gZ5EuK7PfmVNLAyRlRJnW5gDd2iYwyq_A", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675805509728?e=1677240000&v=beta&t=lvHY1vbDuQsuXhtOrwabVkXtJ9UsZbyt9rbC-V45xiY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675805509728?e=1677240000&v=beta&t=eSCSksqnoHXZQXDjw8sG1s4ycxs_ruailwGSd5JIzk4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675805509728?e=1677240000&v=beta&t=mZj_7DZkjXTou8JGTaXv0YIUukEnW_7hnlGORA-qTII", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHmip5sxOcWHA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8423740630780296532)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8423740630780296532)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab L'augmentation des tarifs de l'assurance est in\u00e9vitable \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/banque-assurances/laugmentation-des-tarifs-de-lassurance-est-inevitable-1882711" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0L'augmentation des tarifs de l'assurance est in\u00e9vitable\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002220856265297920,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a fort fort longtemps, la gestion du risque se faisait en ne comptant que sur ses propres forces et une solidarit\u00e9 \"de proximit\u00e9\". Le paysan normand du Moyen Age qui avait de mauvaises r\u00e9coltes ne pouvait gu\u00e8re compter sur le proven\u00e7al ou le lorrain pour le sortir de ce mauvais pas. Le portugais qiu a vu sa maison d\u00e9truire par le s\u00e9isme de Lisbonne en 1755 ne pouvait pas vraiment compter sur le ch'ti ou m\u00eame le basque pour l'aider \u00e0 reconstruire plus vite.\n\nNous vivons aujourd'hui dans un monde o\u00f9 il en va tout autrement. Tout d'abord, gr\u00e2ce \u00e0 l'\u00e9nergie abondante, la r\u00e9paration apr\u00e8s dommage est bien plus facile. Notre maison est reconstruite par des cimenteries, des camions, des grues et des aci\u00e9ries (donc de l'\u00e9nergie) ; les r\u00e9coltes insuffisantes ici sont compens\u00e9es par des cultures exc\u00e9dentaires \"ailleurs\" qui sont elles-m\u00eames produites et achemin\u00e9es gr\u00e2ce \u00e0 des usines d'engrais, tracteurs, camions, entrep\u00f4ts et j'en passe (de l'\u00e9nergie \u00e0 nouveau).\n\nLa mise \u00e0 disposition des victimes des ressources physiques permettent de reconstruire ou compenser est par ailleurs effectu\u00e9e par la mise en commun de moyens \u00e9conomiques, par le biais de l'assurance.\n\nDeux \u00e9volutions vont venir contrarier ce m\u00e9canismes \u00e0 l'avenir :\n\n- le premier, largement \u00e9voqu\u00e9 dans cette interview du DG de Groupama dans Les Echos, est l'augmentation des sinistres que l'\u00e9volution climatique va engendrer : r\u00e9coltes plus souvent atteintes, patrimoine b\u00e2ti plus souvent d\u00e9grad\u00e9 (voir \u00e0 ce propos https://bit.ly/3OH6C4f qui rappelle que la s\u00e9cheresse cause d'importants dommages par r\u00e9tractation gonflement des argiles)\n\n- le second, non \u00e9voqu\u00e9, est que notre capacit\u00e9 \u00e0 reconstruire va s'affaiblir, puisque la d\u00e9crue \u00e9nerg\u00e9tique va fatalement diminuer aussi la quantit\u00e9 d'acier, de ciment, de camions et de grues dont nous pourrons disposer.\n\nLa traduction \u00e9conomique de cette double \u00e9volution n'est pas difficile \u00e0 deviner, et c'est exactement celle \u00e9voqu\u00e9e dans cette interview : des primes plus \u00e9lev\u00e9es (il va donc y avoir aussi de l'inflation \"r\u00e9elle\" - rapport\u00e9e au revenu en clair - dans l'assurance, comme en fait partout d\u00e8s lors que les ressources physiques baissent ; c'est m\u00e9canique) et des dommages moins bien couverts (l'interview\u00e9 parle d'exclusion croissante de certains biens de l'assurance dommage des habitations par exemple).\n\nDans un monde structurellement inflationniste par rapport aux revenus r\u00e9els, nous allons devoir renoncer. Il est probablement plus facile de renoncer \u00e0 la 5G pour regarder Netflix dans le m\u00e9tro, \u00e0 la construction de stades climatis\u00e9s pour jouer au foot, ou au Black Friday pour avoir un v\u00eatement en plus, que de renoncer \u00e0 garder un toit en cas de coup dur ou avoir de quoi manger si le climat est adverse.\n\nEn tout \u00e9tat de cause, cette interview rappelle - m\u00eame si ce n'est pas sympathique - qu'\u00e0 ne vouloir rien abandonner nous prenons le risque de perdre beaucoup plus." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002220856265297920,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002220857016119296,urn:li:activity:7002220857016119296,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 102, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002220857016119296,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002220857016119296,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002220857016119296", + "threadId": "activity:7002220857016119296", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002220857016119296", + "urn": "urn:li:activity:7002220857016119296", + "numComments": 164, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002220857016119296", + "reactionTypeCounts": [ + { + "count": 2115, + "reactionType": "LIKE" + }, + { + "count": 302, + "reactionType": "INTEREST" + }, + { + "count": 237, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002220857016119296", + "numLikes": 2724, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002220857016119296", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2726, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7001982091718443008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7001982091718443008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7001982091718443008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-m%C3%AAme-%C3%A0-lautomne-la-s%C3%A9cheresse-reste-activity-7001982091718443008-KWuL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7001982090997047297", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7001982091718443008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7001982090997047297", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "ssjSufYvIMZZPwN4k3866w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9089597486000845732", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675646722797?e=1677240000&v=beta&t=He1rK_g2f3pezbcmLz-o1cVeRN7pvFZfZNbFz36e3A8", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675646722798?e=1677240000&v=beta&t=X7LOGLkKzK9RUSq6TdhegvG5--G32Xkscyaw3Uzh_4c", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675646722798?e=1677240000&v=beta&t=DcazK0DmmPw18mtC5ABkdr1Aibx9RaSnJjWn2UYLnoE", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675646722798?e=1677240000&v=beta&t=pf5syXLkO4oeoGwesABh4bZ7RI1lQRaRFOWc5RzzxWs", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEvkcZbNlZTqg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9089597486000845732)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9089597486000845732)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "courrierinternational.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat. M\u00eame \u00e0 l\u2019automne, la s\u00e9cheresse reste d\u2019actualit\u00e9 en Espagne by courrierinternational.com", + "actionTarget": "https://www.courrierinternational.com/article/climat-meme-a-l-automne-la-secheresse-reste-d-actualite-en-espagne" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat. M\u00eame \u00e0 l\u2019automne, la s\u00e9cheresse reste d\u2019actualit\u00e9 en Espagne" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7001982090997047297,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Cela fait maintenant 2 mois que c'est l'automne. Normalement c'est la saison des feuilles mortes, et surtout l'\u00e9poque d'un temps nettement plus humide que ne l'a \u00e9t\u00e9 la p\u00e9riode estivale.\n\nMais en Espagne il y a eu un d\u00e9ficit de pr\u00e9cipitations d'environ 25% depuis le 1er septembre, rapporte Courrier International. En cons\u00e9quence, les r\u00e9serves d'eau sont bien plus vides que celles de gaz, et notre voisin va devoir imposer des restrictions sur l'usage de l'eau alors que nous devrions ne plus avoir de tels probl\u00e8mes \u00e0 cette \u00e9poque.\n\nLa France n'est pas non plus \u00e9pargn\u00e9e en totalit\u00e9 : il y a encore de nombreuses r\u00e9gions en France qui sont toujours en niveau \"crise\" pour l'approvisionnement en eau : https://lnkd.in/gG9eZM8\n\nRappelons, m\u00eame si ce n'est pas dr\u00f4le, qu'il est pr\u00e9vu que la d\u00e9rive climatique entra\u00eene une baisse des pr\u00e9cipitations sur toute la partie sud de l'Europe, Espagne et France comprises. Cela va mettre sous pression la production agricole, les \u00e9cosyst\u00e8mes, la production hydro\u00e9lectrique, et les infrastructures, puisque la s\u00e9cheresse favorise la r\u00e9tractation-gonflement des argiles, qui peut fortement d\u00e9grader une bonne partie des b\u00e2timents et voies de communication construits r\u00e9cemment (https://lnkd.in/ee_AXXbQ ).\n\nIl n'est donc toujours pas temps d'utiliser l'expression \"beau temps\" quand il fait soleil. Il faudrait attendre la disparition de la totalit\u00e9 des restrictions d'usage de l'eau en France et en Espagne !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7001982090997047297,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7001982091718443008,urn:li:activity:7001982091718443008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 59, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7001982091718443008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7001982091718443008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7001982091718443008", + "threadId": "activity:7001982091718443008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001982091718443008", + "urn": "urn:li:activity:7001982091718443008", + "numComments": 102, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7001982091718443008", + "reactionTypeCounts": [ + { + "count": 1064, + "reactionType": "LIKE" + }, + { + "count": 169, + "reactionType": "INTEREST" + }, + { + "count": 161, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7001982091718443008", + "numLikes": 1429, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001982091718443008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1431, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7001543092705095681", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7001543092705095681)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7001543092705095681)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_black-friday-de-bonnes-affaires-sauf-pour-activity-7001543092705095681-Tm7L?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7001543092034011136", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7001543092705095681", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7001543092034011136", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "kqtnOhl6ANIRoSfkI3b3OA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7798340498303405476", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675595431832?e=1677240000&v=beta&t=0jruQcEIxQoE7WzvHM5ThEk8BWxsMd6-wpn20LGWzb0", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1199, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675595431832?e=1677240000&v=beta&t=A_KvfPDKYEJWZlbCUmxOlhQDmhzs2NVYK7OuJWyecB4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675595431832?e=1677240000&v=beta&t=8amhkhstLZHm_IwJzv6yIjfmflewJMr94fXaTTlf11M", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675595431832?e=1677240000&v=beta&t=zaQ5oy8-YR7NvwDUUB9pI9qaP5MetgWj9dTRdj_uVtQ", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQERbGygi-59dQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7798340498303405476)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7798340498303405476)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Black Friday, de bonnes affaires sauf pour le climat | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/analyse-black-friday" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Black Friday, de bonnes affaires sauf pour le climat | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7001543092034011136,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le \"Vendredi noir\" commence demain (et est devenu un week-end noir en pratique, m\u00eame s'il n'est pas question d'accidents de la route). Cette f\u00eate commerciale venue tout droit des USA apr\u00e8s Halloween (\"where else\" pourrait demander un acteur c\u00e9l\u00e8bre) est une incitation de plus \u00e0 se ruer dans les magasins puis sur son compte en banque pour acheter \u00e0 moiti\u00e9 prix des choses sans lesquelles nous allons n\u00e9cessairement nous trouver tr\u00e8s mal.\n\nCette journ\u00e9e de promotion augmente de mani\u00e8re tr\u00e8s forte les ventes en ligne, qui elles-m\u00eames augmentent de mani\u00e8re forte le fret a\u00e9rien - le plus polluant de tous - ainsi que la livraison du dernier kilom\u00e8tre, bien plus souvent faite en camionnette qu'en v\u00e9lo \u00e9lectrique.\n\nC'est une des cons\u00e9quences du fait que les objets promus sont rarement fabriqu\u00e9s en France, qu'il s'agisse d'\u00e9lectrom\u00e9nager, de v\u00eatements, ou encore d'\u00e9lectronique. Sur ce dernier poste, du reste, cette journ\u00e9e vient se combiner avec la coupe du monde, qui, dans le pass\u00e9, a \u00e9t\u00e9 un gros acc\u00e9l\u00e9rateur de la vente de t\u00e9l\u00e9visions \u00e0 grand \u00e9cran (pour mieux voir les matchs), des objets eux-m\u00eames tr\u00e8s \u00e9nergivores \u00e0 la fabrication. \n\nUn petit clic sur un site de vente en ligne sera donc une petite claque pour le climat, puisque les objets command\u00e9s n'arrivent pas par pigeon voyageur, ne sont pas fabriqu\u00e9s uniquement en rotin dans le village d'\u00e0-cot\u00e9, et poussent \u00e0 la hausse la fabrication d'emballages... et les d\u00e9chets qui vont avec.\n\nUne autre cons\u00e9quence de la fabrication \"lointaine\" des objets sur lesquels nous allons nous ruer est que leur consommation accrue d\u00e9s\u00e9quilibre la balance commerciale (puisque quasiment tout est import\u00e9). \n\nCette incitation \u00e0 faire un peu plus les cigales ne va donc pas vraiment dans la bonne direction c\u00f4t\u00e9 climat, comme le rappelle cet article publi\u00e9 sur le site de Carbone 4, et n'est pas vraiment raccord avec la sobri\u00e9t\u00e9 tant vant\u00e9e par le gouvernement (mais nous ne sommes pas \u00e0 une contradiction pr\u00e8s). \n\nPlut\u00f4t que de singer les am\u00e9ricains, nous devrions faire un Vendredi vert, avec des promotions sur les v\u00e9los (qu'il faut fabriquer plus en France, composants inclus), les isolants pour les murs, les pompes \u00e0 chaleur et la reprise des cols de chemise \u00e9lim\u00e9s !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7001543092034011136,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7001543092705095681,urn:li:activity:7001543092705095681,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 270, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7001543092705095681,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7001543092705095681,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7001543092705095681", + "threadId": "activity:7001543092705095681", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001543092705095681", + "urn": "urn:li:activity:7001543092705095681", + "numComments": 394, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7001543092705095681", + "reactionTypeCounts": [ + { + "count": 6669, + "reactionType": "LIKE" + }, + { + "count": 541, + "reactionType": "PRAISE" + }, + { + "count": 291, + "reactionType": "APPRECIATION" + }, + { + "count": 106, + "reactionType": "MAYBE" + }, + { + "count": 90, + "reactionType": "INTEREST" + }, + { + "count": 70, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7001543092705095681", + "numLikes": 7767, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001543092705095681", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7774, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7001300260295696384", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7001300260295696384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7001300260295696384)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_augustin-de-romanet-la-course-au-volume-activity-7001300260295696384-SAV6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7001300259519758336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7001300260295696384", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7001300259519758336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "+DUVQAkQkSpWPigEtwJuUw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8259246450223429300", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675931543568?e=1677240000&v=beta&t=kCucKym5y9DMjKYciFFxE-U9X5q03oy02ENRMexWK2o", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675931543568?e=1677240000&v=beta&t=iO5EgkW6ga8KjwdMcc61yHd5H8W27CoWKVKM51mqBuM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675931543569?e=1677240000&v=beta&t=RYrDBqjeQ1KdEWeHBPyxbAFqJF-CFpB853OFsF1rIoA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675931543569?e=1677240000&v=beta&t=KqyRfrq7KorueY2p1138FBuaWv3Dz24C56K2c-1tHPE", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQG94VINE3HRvA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8259246450223429300)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8259246450223429300)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Augustin de Romanet : \u00abLa course au volume dans l'a\u00e9rien doit passer apr\u00e8s la d\u00e9carbonation\u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/augustin-de-romanet-laerien-doit-cesser-la-course-au-volume-1880072" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Augustin de Romanet\u00a0: \u00abLa course au volume dans l'a\u00e9rien doit passer apr\u00e8s la d\u00e9carbonation\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7001300259519758336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si dans une interview vous lisez les propos suivants :\n- qu'il faut faire passer la d\u00e9carbonation avant la croissance en volume dans l'a\u00e9rien\n- qu'il est d\u00e9raisonnable de multiplier les vols long-courriers pour un week-end ou quelques jours de vacances\n- que si les gens ne sont pas raisonnables il finira par y avoir des quotas de vols par an et par personne\n\n\u00e0 qui aurez vous envie de les attribuer ? \n\nUne premi\u00e8re r\u00e9ponse \"intuitive\" ne sera probablement pas l'auteur effectif de ces propos, \u00e0 savoir... le patron d'A\u00e9roports de Paris. Et pourtant c'est tr\u00e8s exactement ce qui est contenu dans cette interview parue dans Les Echos.\n\nCertes l'auteur des propos ajoute qu'il n'est pas favorable \u00e0 de tels quotas, et qu'il ne souhaite pas que l'on prive les fran\u00e7ais de la possibilit\u00e9 de d\u00e9couvrir le monde gr\u00e2ce \u00e0 l'avion. Mais il n'emp\u00eache : cet appel \u00e0 la mod\u00e9ration est une premi\u00e8re dans le secteur a\u00e9rien en France, o\u00f9 la r\u00e8gle jusqu'\u00e0 maintenant \u00e9tait plut\u00f4t que la technique allait se charger de r\u00e9gler la question carbonique pendant que le trafic poursuivrait sa croissance, et qu'il \u00e9tait hors de question d'entraver cette derni\u00e8re volontairement.\n\nLa situation actuelle n'est pourtant pas durable. L'aviation consommait environ 8% du p\u00e9trole mondial avant covid. Si on transformait en agrocarburants la totalit\u00e9 des 4 premi\u00e8res cultures mondiales (bl\u00e9 - ma\u00efs - riz - soja) cela ferait \"juste\" 25% du p\u00e9trole mondial : il est d\u00e8s lors difficile d'imaginer que l'on va massivement se priver de cultures v\u00e9g\u00e9tales (au surplus dans un monde o\u00f9 les rendements vont \u00eatre attaqu\u00e9s par le r\u00e9chauffement climatique) pour avoir simplement le plaisir de passer d'un continent \u00e0 l'autre pour aller \u00e0 l'h\u00f4tel. \n\nCertes si on d\u00e9vie massivement des cultures pour alimenter des avions plut\u00f4t que des estomacs ce ne seront pas les m\u00eames qui profiteront des voyages et qui auront faim, mais quand m\u00eame.\n\nSi l'on parle d'hydrog\u00e8ne, pour servir en carburant les avions d\u00e9collant de France il faudrait y consacrer un petit quart de la production \u00e9lectrique fran\u00e7aise : l\u00e0 aussi je pense que toute personne un peu sens\u00e9e ne prendra pas le pari sur ses propres \u00e9conomies que l'on va y arriver bient\u00f4t.\n\nDonc oui, dans un monde sans carbone et donc sans p\u00e9trole il y aura beaucoup moins d'avions qu'aujourd'hui. Se pr\u00e9parer \u00e0 la d\u00e9crue dans ce domaine n'est surement pas l'option la plus confortable intellectuellement \u00e0 court terme, mais \u00e0 un horizon plus lointain c'est n\u00e9anmoins la meilleure. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7001300259519758336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7001300260295696384,urn:li:activity:7001300260295696384,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 175, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7001300260295696384,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7001300260295696384,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7001300260295696384", + "threadId": "activity:7001300260295696384", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001300260295696384", + "urn": "urn:li:activity:7001300260295696384", + "numComments": 329, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7001300260295696384", + "reactionTypeCounts": [ + { + "count": 5578, + "reactionType": "LIKE" + }, + { + "count": 413, + "reactionType": "INTEREST" + }, + { + "count": 364, + "reactionType": "MAYBE" + }, + { + "count": 258, + "reactionType": "PRAISE" + }, + { + "count": 56, + "reactionType": "APPRECIATION" + }, + { + "count": 37, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7001300260295696384", + "reacted": "LIKE", + "numLikes": 6706, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001300260295696384", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6710, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7000731729195888642", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7000731729195888642)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7000731729195888642)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_coupe-du-monde-2022-le-mirage-de-la-compensation-activity-7000731729195888642-J80S?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7000731728361222144", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7000731729195888642", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7000731728361222144", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "O1Fv4IzR5iAiwJwEAD4n3A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8534559222220643578", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676412388842?e=1677240000&v=beta&t=U0Z1Q1-5ccDYHFjsDXM7Q_DfRIf7uQne2QNs705d0OM", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676412388843?e=1677240000&v=beta&t=syzE4CzJlz3EKQoSFFiNjKRvC7TON5KA9MkLH65x1f0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676412388843?e=1677240000&v=beta&t=LL9Fas58rSzWCWckICpN9JL-Y028Uu9VZCuur3LY_P8", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676412388843?e=1677240000&v=beta&t=eybCRC6o0tmiS3EhPz3h02m_I8TAhb5KGIe1OOM5gOE", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGgqymP3wEOAQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8534559222220643578)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8534559222220643578)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Coupe du monde 2022 : le mirage de la compensation carbone pour atteindre la \u00ab neutralit\u00e9 \u00bb promise par la FIFA by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/football/article/2022/11/18/coupe-du-monde-2022-le-mirage-de-la-compensation-carbone-pour-atteindre-la-neutralite-promise-par-la-fifa_6150404_1616938.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Coupe du monde 2022\u00a0: le mirage de la compensation carbone pour atteindre la \u00ab\u00a0neutralit\u00e9\u00a0\u00bb promise par la FIFA" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7000731728361222144,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si cette information rapport\u00e9e par Le Monde est exacte, la F\u00e9d\u00e9ration Internationale de Football (FIFA) a des progr\u00e8s \u00e0 faire en mati\u00e8re de compr\u00e9hension de la science du climat.\n\nDe Google \u00e0 Microsoft, en passant par le transport a\u00e9rien ou... La Poste, de nombreuses entreprises ou organisations ont affirm\u00e9 pouvoir r\u00e9duire leur impact sur le climat \u00e0 z\u00e9ro par le biais de la \"compensation\". La technique est en apparence simple et de bon gout : on compte les \u00e9missions associ\u00e9es \u00e0 l'organisation (id\u00e9alement en les limitant au plus petit p\u00e9rim\u00e8tre possible), puis on ach\u00e8te des \"cr\u00e9dits carbone\" qui sont cens\u00e9s correspondre \u00e0 des \u00e9missions \u00e9vit\u00e9es (ou du carbone s\u00e9questr\u00e9 par reforestation) ailleurs, et le tour est jou\u00e9 : plus et moins ca fait z\u00e9ro.\n\nSauf que... pour les raisons expliqu\u00e9es en r\u00e9sum\u00e9 sur https://lnkd.in/dGTt6Zs , cette approche n'a pas de fondement scientifique. Elle donne donc au final l'illusion que l'activit\u00e9 consid\u00e9r\u00e9e peut continuer comme aujourd'hui dans un monde neutre en carbone, alors que c'est l'exact inverse qui est vrai : dans un tel monde, la quasi-totalit\u00e9 des organisations ou entreprises ne peuvent garder les m\u00eames clients, pour leur vendre la m\u00eame chose, fabriqu\u00e9e ou mise \u00e0 disposition de la m\u00eame mani\u00e8re. \n\nPar ailleurs la comptabilit\u00e9 m\u00eame des cr\u00e9dits carbone est tr\u00e8s discutable : elle ne tient pas compte du moment effectif d'\u00e9vitement (maintenant ou beaucoup plus tard), et attribue \u00e0 l'acheteur du cr\u00e9dit la totalit\u00e9 des \u00e9missions \u00e9vit\u00e9es par un projet alors m\u00eame que l'acheteur ne finance qu'une partie de ce qui permet cet \u00e9vitement. \n\nLa FIFA nous raconte donc des salades en consid\u00e9rant que, dans un monde sans \u00e9missions du tout, elle pourra continuer \u00e0 organiser des manifestations demandant 1 million de touristes a\u00e9roport\u00e9s, se rendant dans un stade climatis\u00e9, l'ensemble \u00e9tant financ\u00e9 par des recettes publicitaires de vendeurs de tout un tas de trucs qui ne pourront plus fabriquer une large partie de leurs produits.\n\nCette affirmation de \"neutralit\u00e9\" est - c'est de circonstance - se mettre la t\u00eate dans le sable, parce que \u00e0 l'\u00e9vidence dans un monde sans \u00e9missions les manifestations sportives \"plan\u00e9taires\" seront plus rares et plus modestes.\n\nEt, pour parler de neutralit\u00e9, la bonne approche est de compter s\u00e9par\u00e9ment sa contribution aux puits et ses \u00e9missions induites, et de se demander ce qui passe toujours dans un monde o\u00f9 les \u00e9missions globales baissent de 5% par an. Le bagage m\u00e9thodologique existe pour cela (voir https://lnkd.in/db7JzB2q ), mais s'y lancer demande \u00e9videmment plus de courage que de faire un communiqu\u00e9 de presse sans fondement !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7000731728361222144,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7000731729195888642,urn:li:activity:7000731729195888642,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 129, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7000731729195888642,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7000731729195888642,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7000731729195888642", + "threadId": "activity:7000731729195888642", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000731729195888642", + "urn": "urn:li:activity:7000731729195888642", + "numComments": 181, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7000731729195888642", + "reactionTypeCounts": [ + { + "count": 3001, + "reactionType": "LIKE" + }, + { + "count": 260, + "reactionType": "INTEREST" + }, + { + "count": 215, + "reactionType": "PRAISE" + }, + { + "count": 96, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "APPRECIATION" + }, + { + "count": 17, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7000731729195888642", + "numLikes": 3629, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000731729195888642", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3642, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7000475429773963264", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7000475429773963264)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7000475429773963264)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_autonomie-%C3%A9nerg%C3%A9tique-ces-villes-qui-y-activity-7000475429773963264-Jlqq?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7000475428607901696", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7000475429773963264", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7000475428607901696", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "nmm9meAD4YoMKU+Rb9U3mw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8392422123000208391", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676302316259?e=1677240000&v=beta&t=knQHvM3w1p7CfRWt7HLljKWLGtSmRK_JyBX_IgtSfXQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676302316259?e=1677240000&v=beta&t=hLwVRg_QnCoChvXOzmjy9fVZ0NcMWVxCQJsX5zeRGjo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676302316259?e=1677240000&v=beta&t=0JXBaU49PmY1cKrNIWLWmpVEJl-J15P980uhoBMR_uo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676302316260?e=1677240000&v=beta&t=DHvhJDRpNpzieKhUfVWzt5vp1zbtndy-WWrYN-NmoJs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFFJ3l1Gux0RA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8392422123000208391)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8392422123000208391)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Autonomie \u00e9nerg\u00e9tique : ces villes qui y sont presque by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/autonomie-energetique-ces-villes-qui-y-sont-presque-1879686" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Autonomie \u00e9nerg\u00e9tique\u00a0: ces villes qui y sont presque" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7000475428607901696,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les Echos sont tomb\u00e9s dans le panneau... publicitaire de certains \u00e9lus locaux. Un certain nombre de communes revendiquent d\u00e9sormais une \"autonomie \u00e9nerg\u00e9tique\". Cette expression v\u00e9hicule explicitement l'id\u00e9e qu'un territoire pourrait se replier sur lui-m\u00eame, et vivre \u00e0 l'avenir en ne comptant que sur ses propres forces. Fini la d\u00e9pendance aux autres, et en route vers le paradis !\n\nMalheureusement, cette expression rel\u00e8ve d'une illusion d'optique. Tout d'abord, m\u00eame en se limitant aux consommations directes des m\u00e9nages (sans parler des entreprises, g\u00e9n\u00e9ralement non prises en compte), l'\u00e9nergie consid\u00e9r\u00e9e est le plus souvent (voire quasiment toujours ) limit\u00e9e \u00e0 l'\u00e9lectricit\u00e9, le gaz \u00e9tant parfois (mais rarement) inclus. C'est oublier un peu vite que la premi\u00e8re \u00e9nergie finale consomm\u00e9e en France c'est le p\u00e9trole. Et les puits de p\u00e9trole sont rares en France !\n\nM\u00eame les communes qui produiraient des cultures pour agrocarburants ne peuvent utiliser ces derniers purs : il n'existe pas de moteur de voiture \u00e0 l'\u00e9thanol ou \u00e0 l'huile de colza en France. \n\nEnsuite une large partie de l'\u00e9nergie consomm\u00e9e par les m\u00e9nages est incorpor\u00e9e dans les aliments, v\u00eatements, objets et services publics ou priv\u00e9s dont ils b\u00e9n\u00e9ficient : o\u00f9 est l'autonomie \u00e9nerg\u00e9tique quand on d\u00e9pend des mines de charbon australiennes et de la marine marchande mondiale pour avoir des objets en acier ?\n\nEnfin cette notion \"d'autonomie \u00e9nerg\u00e9tique\" (et \"d'\u00e9nergie positive\") est apparue avec les renouvelables. Je n'ai jamais entendu une commune poss\u00e9dant un barrage ou une centrale nucl\u00e9aire la revendiquer, alors qu'elle serait nettement plus justifi\u00e9e dans ces derniers cas si le concept \u00e9tait valide !\n\nIncidemment, si l'autonomie uniquement \u00e9lectrique \u00e9tait r\u00e9elle pour les communes qui la revendiquent \u00e0 cause de leurs \u00e9oliennes (cas \u00e9voqu\u00e9 dans l'article), cela signifierait que l'on pourrait couper la commune en question du r\u00e9seau national (si on est autonome on n'a plus besoin des autres, correct ?). Mais... avoir une production annuelle \u00e9quivalente \u00e0 la consommation annuelle ne garantirait pas pour autant de l'\u00e9lectricit\u00e9 aux habitants concern\u00e9s les jours avec peu ou pas de vent. Ces communes restent d\u00e9pendantes du r\u00e9seau et donc... ne sont pas autonomes, m\u00eame pour l'\u00e9lectricit\u00e9.\n\nEn fait, dans notre pays, aucune commune ne peut s'extraire de la mondialisation (et donc de l'\u00e9nergie utilis\u00e9e \"ailleurs\"), qui fournit \u00e0 nos habitants logements (qui contiennent de l'acier alors que nous n'avons plus de minerai de fer en France), v\u00e9hicules, aliments et v\u00eatements, et m\u00eame... les \u00e9oliennes qui rendent \"autonomes\" qui sont fabriqu\u00e9es ailleurs !\n\nCela ne nous fait pas courir plus vite dans la bonne direction que de se tromper sur le sens des mots. Pire : en cr\u00e9ant l'illusion d'une s\u00e9curit\u00e9 qui n'existe pas, nous augmentons le risque." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7000475428607901696,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7000475429773963264,urn:li:activity:7000475429773963264,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 133, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7000475429773963264,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7000475429773963264,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7000475429773963264", + "threadId": "activity:7000475429773963264", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000475429773963264", + "urn": "urn:li:activity:7000475429773963264", + "numComments": 258, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7000475429773963264", + "reactionTypeCounts": [ + { + "count": 2875, + "reactionType": "LIKE" + }, + { + "count": 300, + "reactionType": "INTEREST" + }, + { + "count": 191, + "reactionType": "PRAISE" + }, + { + "count": 106, + "reactionType": "MAYBE" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7000475429773963264", + "numLikes": 3506, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000475429773963264", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3515, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7000055382219837440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7000055382219837440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7000055382219837440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-marc-jancovici-the-shift-project-activity-7000055382219837440-qqX7?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7000055381280313344", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7000055382219837440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7000055381280313344", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "ry7Ygp+5L+MAhMLLD/hxCQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7567828376856683698", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676311096259?e=1677240000&v=beta&t=j1ENF_uJOE2upWwOSx8Hhpv7dh9X1BSL3otAgriSX_I", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676311096259?e=1677240000&v=beta&t=j2p3q2NmfdkASONWmfKd0dX5Iu4a54lB8Bpf156vNTQ", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676311096259?e=1677240000&v=beta&t=D_VaU6fhSvzbaOmM_m7YgHq5TIcnjgfPyS3ohEA225M", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676311096259?e=1677240000&v=beta&t=J0gdlKo8X94MhOoSAeJAsRaQCUU7OKqhy-PpjKQn14Y", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGcbPSVCiClrQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7567828376856683698)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7567828376856683698)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lecho.be \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean-Marc Jancovici (The Shift Project): \"Si votre entreprise ne parvient pas \u00e0 d\u00e9carboner, elle devra t\u00f4t ou tard fermer boutique\" by lecho.be", + "actionTarget": "https://www.lecho.be/dossiers/climat/jean-marc-jancovici-the-shift-project-si-votre-entreprise-ne-parvient-pas-a-decarboner-elle-devra-tot-ou-tard-fermer-boutique/10429041" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici (The Shift Project): \"Si votre entreprise ne parvient pas \u00e0 d\u00e9carboner, elle devra t\u00f4t ou tard fermer boutique\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7000055381280313344,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 51, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "tMQDGtwfRIGxJv/urt5gGw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "A l'occasion d'un p\u00e9riple en Belgique organis\u00e9 par Les Shifters (belges !), l'Echo a publi\u00e9 une interview de votre serviteur. COP 27, hydrog\u00e8ne, sobri\u00e9t\u00e9, nucl\u00e9aire, d\u00e9croissance, taxe carbone et capitalisme (entre autres) ont fait l'objet du classique jeu de questions-r\u00e9ponses. Je profite de l'occasion pour rappeler quelques pr\u00e9cautions d'emploi en pareil cas.\n\nApr\u00e8s une interview (que je ne sollicite jamais, pas plus qu'un portrait, exercice que je trouve plein d'effets pervers), le texte publi\u00e9 est r\u00e9dig\u00e9 par le/la journaliste que j'ai rencontr\u00e9(e), et non par bibi. M\u00eame si je demande toujours \u00e0 me relire, le r\u00e9sultat n'est jamais ce que j'aurais \u00e9crit si j'avais r\u00e9dig\u00e9 les r\u00e9ponses en partant de z\u00e9ro.\n\nEn particulier, mon style oral et mon style \u00e9crit sont diff\u00e9rents. A l'oral, l'intonation, l'expression faciale ou le contexte autorisent des tournures qui ne prennent pas la m\u00eame signification \u00e0 l'\u00e9crit, sans ces \"\u00e0-c\u00f4t\u00e9s\". La seule mani\u00e8re d'\u00e9viter les malentendus est d'utiliser un style adapt\u00e9 \u00e0 chaque cas.\n\nPourtant, les transcriptions \u00e9crites reprennent souvent une partie des verbatim de l'interview. Cela peut donner une impression injustifi\u00e9e de radicalit\u00e9 qui n'aurait pas exist\u00e9 en style \u00e9crit utilis\u00e9 d'embl\u00e9e.\n\nUne autre pr\u00e9caution d'usage concerne le chap\u00f4 qui pr\u00e9sente l'interview\u00e9(e) : il est fait par la r\u00e9daction du journal, sans relecture, et n'engage pas la personne concern\u00e9e. C'est aussi le cas pour tout \"portrait\" publi\u00e9 dans la presse.\n\nIncidemment, \"ma\" page Wikipedia est un portrait parmi d'autres, essentiellement bas\u00e9 sur des portraits ou avis de journalistes rapportant des avis de tiers (il suffit de regarder les r\u00e9f\u00e9rences), soit de l'information de 3\u00e8 main ou plus. Je n'en ai pas \u00e9crit une ligne, et elle comporte plusieurs dizaines d'erreurs factuelles ou de conclusions erron\u00e9es.\n\nL'Echo a repris l'expression \"rock star de l'\u00e9cologie\" utilis\u00e9e r\u00e9cemment par Le Monde. S'exprimer parfois dans des amphis bien remplis n'est pas vraiment comparable \u00e0 remplir le Stade de France ! M\u00eame avec l'audience digitale, le compte n'y est pas : sur Youtube \"ma\" vid\u00e9o la plus regard\u00e9e d\u00e9passe 3 millions de vues ; pour Rihanna ou DJ Khaled on d\u00e9passe le milliard de vues (https://bit.ly/3Ep4nhb ).\n\nEnfin l'expression servant de titre correspond toujours \u00e0 un sujet \u00e9voqu\u00e9, mais pas n\u00e9cessairement celui sur lequel j'ai le plus insist\u00e9, alors que c'est l'impression que cela donne. Cet effet s'amplifie si d'autres journalistes reprennent cette expression comme si elle \u00e9tait de moi mot \u00e0 mot : ce qui \u00e9tait une mise en exergue d'un(e) journaliste devient ce qui fait foi !\n\nTout ca pour dire que, pour moi comme pour n'importe qui, la seule chose qui m'engage est ce que j'\u00e9cris en direct, ou prononce \u00e0 l'oral dans un enregistrement non mont\u00e9. Tout le reste incorpore peu ou prou l'avis de quelqu'un d'autre, m\u00eame une interview. Dans le cas pr\u00e9sent on est dans la nuance, mais dans un portrait il peut y avoir des erreurs grossi\u00e8res." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7000055381280313344,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7000055382219837440,urn:li:activity:7000055382219837440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7000055382219837440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7000055382219837440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7000055382219837440", + "threadId": "activity:7000055382219837440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000055382219837440", + "urn": "urn:li:activity:7000055382219837440", + "numComments": 76, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7000055382219837440", + "reactionTypeCounts": [ + { + "count": 964, + "reactionType": "LIKE" + }, + { + "count": 54, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "APPRECIATION" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 28, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7000055382219837440", + "numLikes": 1126, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000055382219837440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1127, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6999689020733554688", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6999689020733554688)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6999689020733554688)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cop-27-jean-marc-jancovici-explique-pourquoi-activity-6999689020733554688-_8Pn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6999689019898871808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6999689020733554688", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6999689019898871808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "YBR+6q9s6j0gE2w4t9VXUw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8045091743199397876", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676292863883?e=1677240000&v=beta&t=mGFUiF12pQB91rDSnhfNXj0NYKmLv7jR_s3OsFWHxq8", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1199, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676292863883?e=1677240000&v=beta&t=VkueliHYtQCNoZtEhYTckb2Zcn5YLUVh3lM5WioY7LE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676292863883?e=1677240000&v=beta&t=7USaFvbMxD_EYguGlANr1D926y1UIIhNvWZWtDu6J2Q", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676292863883?e=1677240000&v=beta&t=f0M2TEcQh4KJUaRW1A0M7Q5owZzl0Y5Dhf1f8-OweQo", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGKNHYgSZo8Pg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8045091743199397876)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8045091743199397876)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: COP 27 : Jean-Marc Jancovici explique pourquoi \u00e7a n'est pas un succ\u00e8s by rtl.fr", + "actionTarget": "https://www.rtl.fr/actu/debats-societe/cop27-jean-marc-jancovici-explique-pourquoi-ca-n-est-pas-un-succes-7900207731" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "COP 27 : Jean-Marc Jancovici explique pourquoi \u00e7a n'est pas un succ\u00e8s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6999689019898871808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Que penser de la COP 27, qui se termine (normalement) aujourd'hui en Egypte ? Rien de plus et rien de moins que ce qu'il faut penser des autres COP, ai-je tent\u00e9 d'expliquer aujourd'hui aux auditrices et auditeurs (matinaux !) de RTL : le processus onusien conduira par nature \u00e0 aboutir \u00e0 un texte qui ne peut pas juridiquement contraindre quelque pays que ce soit \u00e0 faire plus que ce qu'il d\u00e9sire d\u00e9j\u00e0 faire.\n\nRappelons que, depuis le Trait\u00e9 de Westphalie, les \u00e9tats sont souverains : un \u00e9tat ne peut imposer \u00e0 un autre ses r\u00e8gles par le droit. Le processus onusien en prend acte, et demande \u00e0 ce que les d\u00e9cisions soient prises \u00e0 l'unanimit\u00e9 et par consensus. Une telle dynamique conduit n\u00e9cessairement \u00e0 un texte qui ne cr\u00e9e aucune obligation nouvelle significative pour les pays.\n\nIl y a eu une exception dans l'histoire des COP, que je rappelle dans cette chronique, et qui a pourtant correspondu \u00e0 l'ann\u00e9e o\u00f9 la presse a conclu le plus rapidement que cela avait \u00e9t\u00e9 un \u00e9chec : Copenhague (la COP 15, en 2009). \n\nLes \"moins de 2\u00b0C\" d\u00e9sormais associ\u00e9s \u00e0 l'Accord de Paris datent en effet... de Copenhague, comme toutes les autres dispositions fortes qui ont \u00e9t\u00e9 avalis\u00e9es \u00e0 Paris. Et ces \u00e9l\u00e9ments ont pu \u00eatre act\u00e9s parce que Copenhague a \u00e9t\u00e9, de fa\u00e7on impr\u00e9vue, la seule COP qui ait \u00e9t\u00e9 une OPA du G20 sur les Nations Unies. \n\nAu retour de la COP - o\u00f9 j'avais \u00e9t\u00e9 les 15 jours - j'avais pris la plume pour expliquer pourquoi elle \u00e9tait en fait l'un des rares succ\u00e8s des discussions internationales : https://bit.ly/3GuuPIT Ce mot d'\u00e9chec est arriv\u00e9 parce que c'est le processus et non le fond qui a \u00e9t\u00e9 comment\u00e9 par les ONG, les seules \u00e0 pouvoir s'exprimer dans la presse \u00e0 l'approche de la fin de la COP, alors que les d\u00e9l\u00e9gations nationales \u00e9taient tenues au silence devant la r\u00e9union des pr\u00e9sidents en cours.\n\nComme les danois avaient fait une erreur logistique en ne pr\u00e9voyant pas assez de place pour laisser rentrer tout le monde la 2\u00e8 semaine (alors que les d\u00e9l\u00e9gations pr\u00e9sidentielles \u00e9taient arriv\u00e9s en masse), les repr\u00e9sentants des ONG \u00e9taient pass\u00e9s de 5000 \u00e0... 90, et ceux toujours admis \u00e0 rentrer dans l'enceinte de la COP \u00e9taient du coup tr\u00e8s \u00e9nerv\u00e9s par ce qu'elles consid\u00e9raient \u00eatre une entorse majeure au principe de transparence des n\u00e9gociations. \n\nSi on y ajoute la forme de la discussion (exit les d\u00e9l\u00e9gations nationales, remplac\u00e9es au pied lev\u00e9 par des pr\u00e9sidents discutant en direct dans une salle), cette fin de COP n'avait plus rien d'onusien, et c'est cela qui a conduit les ONG \u00e0 parler d'\u00e9chec \u00e0 la presse, constat discutable mais devenu depuis l'\u00e9vidence pour le public. \n\nC'est pourtant \u00e0 cet \"\u00e9chec\" que l'on doit l'objectif politique des 2\u00b0C, d\u00e9sormais si pr\u00e9cieux pour cadrer toute l'action - m\u00eame insuffisante - des entreprises et des \u00e9tats dans les d\u00e9bats domestiques. \n\nSi, du point de vue du formalisme onusien, elle est un succ\u00e8s, la COP 27 ne changera pas plus le cours des choses \"\u00e0 notre place\" que les autres. Quoi qu'en dise la presse..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6999689019898871808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6999689020733554688,urn:li:activity:6999689020733554688,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 71, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6999689020733554688,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6999689020733554688,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6999689020733554688", + "threadId": "activity:6999689020733554688", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999689020733554688", + "urn": "urn:li:activity:6999689020733554688", + "numComments": 118, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6999689020733554688", + "reactionTypeCounts": [ + { + "count": 1090, + "reactionType": "LIKE" + }, + { + "count": 140, + "reactionType": "INTEREST" + }, + { + "count": 129, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6999689020733554688", + "numLikes": 1387, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999689020733554688", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1388, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6999439943286554624", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6999439943286554624)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6999439943286554624)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carrefour-acte-le-d%C3%A9classement-de-la-soci%C3%A9t%C3%A9-activity-6999439943286554624-9L7t?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6999439942372229121", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6999439943286554624", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6999439942372229121", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "bXgx218cKQW4Y6bvIn9cZw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7401995635390681707", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676110940690?e=1677240000&v=beta&t=Q0iwGL79t_1wR29hVmUjGgFAZlisR2KNLoPKC7-dHZU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676110940690?e=1677240000&v=beta&t=2X-iiwUNBW_yBvmlagYgAOwBkE9ILZAx7BdouiOuyi4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676110940690?e=1677240000&v=beta&t=hIXV7-LuUHHrjo-RFV3QbPTee0tD3fFhfjp7bR4SDd4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676110940690?e=1677240000&v=beta&t=xKwh0WdV_RtRE9QmpBthd-gpFZXnTc-LiChW87DXFmc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFs7-hl2Mq0yw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7401995635390681707)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7401995635390681707)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carrefour acte le d\u00e9classement de la soci\u00e9t\u00e9 fran\u00e7aise by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/carrefour-acte-le-declassement-de-la-societe-francaise-1879303" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carrefour acte le d\u00e9classement de la soci\u00e9t\u00e9 fran\u00e7aise" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6999439942372229121,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Vive la croissance verte ! Vous savez, celle qui ne suppose pas de consommer plus de ressources, et qui va donc permettre de marier PIB en hausse et flux physiques en baisse.\n\nSauf que... cette croissance l\u00e0, \u00e0 supposer qu'elle arrive, ne permet pas d'avoir la constance en volume des objets parfaitement mat\u00e9riels que les fran\u00e7aises et les fran\u00e7ais ach\u00e8tent. Et il se trouve que, pour le moment, et probablement pour un certain temps encore, les brosses \u00e0 dents, machines \u00e0 laver, m\u00e8tres carr\u00e9s de moquette, pantalons, produits alimentaires, m\u00e8tres carr\u00e9s de logement, tonnes de voitures, sans oublier les m\u00e8tres cubes de gaz ou d'eau qui entrent dans un logement sont parfaitement mat\u00e9riels.\n\nSi les flux physiques de production baissent parce que la quantit\u00e9 d'\u00e9nergie disponible - et donc la quantit\u00e9 de machines au travail - baisse, peu importe la fa\u00e7on dont les choses se passeront sur le plan des prix : de fait il sera plus difficile \u00e0 la population de ce procurer tout ce qui est \"physique\", du tube de colle aux kilom\u00e8tres en voiture, en passant par les t\u00e9l\u00e9phones, les cartables et les p\u00e2tes \u00e0 la tomate.\n\nOr, l'\u00e9nergie disponible baisse en Europe depuis 2007. Donc la production domestique de ce qui est \"physique\" y baisse (la confirmation se trouve dans les s\u00e9ries longues des tonnes charg\u00e9es dans les camions et des m\u00e8tres carr\u00e9s construits en Europe). On peut temporairement compenser par des importations pay\u00e9es par des revenus \"autres\" (activit\u00e9s financi\u00e8res et b\u00e9n\u00e9fices rapatri\u00e9s, par exemple), mais cette mani\u00e8re de proc\u00e9der a ses limites.\n\nIl se trouve que cette baisse de la possibilit\u00e9 d'acheter se traduit d\u00e9j\u00e0 de fa\u00e7on mon\u00e9taire. Le revenu disponible des m\u00e9nages est en effet pass\u00e9 par un maximum en 2010 et a fortement baiss\u00e9 ensuite, avant de remonter \u00e0 partir de 2014 (quand l'\u00e9nergie disponible en Europe est remont\u00e9e gr\u00e2ce au shale oil !), sans pour autant revenir au niveau ant\u00e9rieur. \n\nEt surtout la logique voudrait malheureusement que cet indicateur reparte \u00e0 la baisse, dans le droit fil de l'approvisionnement \u00e9nerg\u00e9tique europ\u00e9en qui va faire de m\u00eame (NB: la s\u00e9rie de l'INSEE que j'ai obtenue sur https://bit.ly/3UR7BRR s'arr\u00eate en 2019).\n\nL'article des Echos qui annonce la cr\u00e9ation par Carrefour d'une nouvelle enseigne ciblant les faibles revenus ouvre probablement une nouvelle \u00e8re : celle de l'\u00e9conomie... des \u00e9conomies. L'auteur rappelle \u00e0 juste titre que l'on peut mettre dans le m\u00eame panier que cette nouvelle enseigne Blablacar, AirBnb, la colocation, les bus Macron et Too Good to Go : \u00e0 chaque fois c'est une r\u00e9ponse pour conserver des services dans un monde avec mat\u00e9riellement moins. \n\nFaut-il se plaindre d'avoir moins de r\u00e9f\u00e9rences et moins d'emballages dans les magasins ? Faut-il appeler cela d\u00e9classement (donc pauvret\u00e9), comme le font Les Echos, ou sobri\u00e9t\u00e9 ? Tant que nous vivrons dans une soci\u00e9t\u00e9 de la tentation, c'est probablement la premi\u00e8re r\u00e9ponse qui sera la bonne, h\u00e9las. Il reste \u00e0 inventer le r\u00e9cit pour passer \u00e0 la seconde." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6999439942372229121,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6999439943286554624,urn:li:activity:6999439943286554624,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 58, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6999439943286554624,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6999439943286554624,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6999439943286554624", + "threadId": "activity:6999439943286554624", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999439943286554624", + "urn": "urn:li:activity:6999439943286554624", + "numComments": 93, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6999439943286554624", + "reactionTypeCounts": [ + { + "count": 1208, + "reactionType": "LIKE" + }, + { + "count": 131, + "reactionType": "MAYBE" + }, + { + "count": 124, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6999439943286554624", + "numLikes": 1501, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999439943286554624", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1502, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 Edited \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6999135868418465792", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6999135868418465792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6999135868418465792)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_il-arrive-aux-instances-de-supervision-activity-6999135868418465792-PfwE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6999135867332087808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6999135868418465792", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6999135867332087808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "I8EeUqLC9R8JYdJwuEWd4Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGVmp0-xQNHdw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGVmp0-xQNHdw", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1668724027136?e=1679529600&v=beta&t=TnFLTaAyNYZNtMpzh5tmiyKlF4vuH-NkMhrtXhIq_ss", + "expiresAt": 1679529600000, + "height": 290 + }, + { + "width": 2332, + "fileIdentifyingUrlPathSegment": "20/0/1668724027085?e=1679529600&v=beta&t=wYBVI2Dbq7OUSq2rcHnWsVWMMobmUlNh7gmi0Vtybi4", + "expiresAt": 1679529600000, + "height": 330 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1668724027085?e=1679529600&v=beta&t=z3_AESExjt1u-qJoPVUSHmjv1ayG9k8lyBWyP45-5Lo", + "expiresAt": 1679529600000, + "height": 181 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1668724027085?e=1679529600&v=beta&t=Qax37wLUFbH0z7pTiAiOgmF_I8HZ595x8bnE5e2DzQg", + "expiresAt": 1679529600000, + "height": 68 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1668724027085?e=1679529600&v=beta&t=sIFOkhWDpFeLBnR_ncynlHm43VDuglVB5C0kwwbkM9w", + "expiresAt": 1679529600000, + "height": 23 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1668724027085?e=1679529600&v=beta&t=tE6lgs0USJhwCz22KcFuGHQIrNSdehyighKkOkAzvdY", + "expiresAt": 1679529600000, + "height": 113 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGVmp0-xQNHdw/feedshare-shrink_" + }, + "displayAspectRatio": 0.14150943396226415 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6999135867332087808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il arrive aux instances de supervision - qui ont pour mission de faire \u00e0 la fois les r\u00e8gles et parfois la police dans un secteur r\u00e9glement\u00e9, par exemple la comptabilit\u00e9 ou l'assurance - de faire des consultations.\n\nCe genre de d\u00e9marche vise \u00e0 prendre l'avis de \"qui veut\" (en fait c'est plut\u00f4t \"qui est au courant et a le temps de r\u00e9pondre\" !) pour ensuite nourrir une future \u00e9volution des r\u00e8gles applicables au secteur.\n\nLes 3 autorit\u00e9s europ\u00e9ennes qui concernent le monde bancaire et financier (European Banking Authority, European Insurance and Occupational Pensions Authority, et European Securities and Market Authority, qui supervisent respectivement les banques, les compagnies d'assurance et les places de march\u00e9) viennent de lancer une consultation sur... le greenwashing : https://lnkd.in/eif8F2XC\n\nJe n'y aurais pas pens\u00e9, mais l'id\u00e9e est franchement excellente. En effet, le meilleur moyen de corriger une r\u00e9glementation qui n'atteint pas encore son but est de se faire expliquer toutes les mani\u00e8res de la d\u00e9voyer !\n\nDe fait, le \"verdissement\" du secteur financier dans son ensemble est aujourd'hui discutable. Les annonces de finance durable se multiplient comme les petits pains, mais dans les faits les pratiques sont toujours \u00e0 peu pr\u00e8s les m\u00eames, et l'\u00e9conomie financ\u00e9e toujours la m\u00eame (ce n'est pas un jugement de valeur mais un fait). Il est donc tout \u00e0 fait pertinent de poser la question des techniques utilis\u00e9es pour faire prendre des vessies pour des lanternes.\n\nCe proc\u00e9d\u00e9 pourrait utilement \u00eatre \u00e9tendu \u00e0 d'autres secteurs, et notamment la publicit\u00e9. Le Bureau de V\u00e9rification de la Publicit\u00e9 pourrait ouvrir une grande consultation en demandant aux r\u00e9pondantes de d\u00e9crire toutes les formes possibles de publicit\u00e9 mensong\u00e8re en mati\u00e8re d'environnement. A l'inverse du message pr\u00e9c\u00e9dant souvent les oeuvres de fiction, on y verrait assez souvent un rapport avec des faits et des personnages ayant exist\u00e9 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6999135867332087808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6999135868418465792,urn:li:activity:6999135868418465792,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6999135868418465792,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6999135868418465792,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6999135868418465792", + "threadId": "activity:6999135868418465792", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999135868418465792", + "urn": "urn:li:activity:6999135868418465792", + "numComments": 31, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6999135868418465792", + "reactionTypeCounts": [ + { + "count": 488, + "reactionType": "LIKE" + }, + { + "count": 46, + "reactionType": "MAYBE" + }, + { + "count": 24, + "reactionType": "INTEREST" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6999135868418465792", + "numLikes": 589, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999135868418465792", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 591, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6998765435470888961", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6998765435470888961)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6998765435470888961)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_ce-gigantesque-village-de-marque-et-ses-100-activity-6998765435470888961-SpLz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6998765434871128064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6998765435470888961", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6998765434871128064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "2K9j16NS/KyNDVHdpf4w6g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8757585883586012526", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676178950553?e=1677240000&v=beta&t=8nkBAQV7PUu0khMDChZvoJxzPpmpLTkqNBBXgP3lnt0", + "expiresAt": 1677240000000, + "height": 493 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676178950553?e=1677240000&v=beta&t=S1hM41RuQiasoJvut-aqbvvugobzrg4EMjqE0WwmABs", + "expiresAt": 1677240000000, + "height": 789 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676178950553?e=1677240000&v=beta&t=SUjxh9ctotm2uya3zCGtwTBrspIfb8la6ZToPhTofIg", + "expiresAt": 1677240000000, + "height": 98 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676178950554?e=1677240000&v=beta&t=TIiScrRgFSQe6NeyjCQu-kP9CqdA_o6sQRai5W2f4DQ", + "expiresAt": 1677240000000, + "height": 295 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEYeYYCcuIcOg/articleshare-shrink_" + }, + "displayAspectRatio": 0.61625 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Une centaine de boutiques de grandes marques comme Adidas ou Levis vont ouvrir." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8757585883586012526)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8757585883586012526)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "actu.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Ce gigantesque village de marque et ses 100 magasins vont sortir de terre \u00e0 1 heure de Lyon by actu.fr", + "actionTarget": "https://actu.fr/auvergne-rhone-alpes/valserhone_01033/ce-gigantesque-village-de-marque-et-ses-100-magasins-vont-sortir-de-terre-a-1-heure-de-lyon_55210956.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Ce gigantesque village de marque et ses 100 magasins vont sortir de terre \u00e0 1 heure de Lyon" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6998765434871128064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Prenez un pays qui souhaite limiter l'usage de la voiture. Qui souhaite inciter \u00e0 la sobri\u00e9t\u00e9. Qui souhaite limiter ses importations. Qui souhaite baisser ses \u00e9missions de gaz \u00e0 effet de serre. Et qui souhaite arr\u00eater l'artificialisation des sols. \n\nDans un tel pays on se dirait que l'on va inciter \u00e0 ce que les nouveaux commerces soient \u00e9tablis pr\u00e8s des logements,\n de telle sorte que l'on puisse y aller au maximum sans voiture ; on va \u00e9viter de construire de nouveaux parkings g\u00e9ants qui imperm\u00e9abilisent le sol et sont des aspirateurs \u00e0 voiture ; on va \u00e9viter de cr\u00e9er des \"villages de la tentation\" pour inciter \u00e0 consommer encore plus d'objets (notamment v\u00eatements et accessoires) alors que ce n'est peut-\u00eatre pas la priorit\u00e9 ; enfin on va \u00e9viter de favoriser la consommation de biens import\u00e9s (sachant que les \"marques pas ch\u00e8res\" se fournissent pour l'essentiel hors de France, puisque la condition des prix bas est de ne pas fabriquer dans l'Hexagone).\n\nLe \"gigantesque village de marques\" qui s'ouvrira bient\u00f4t entre Lyon et Gen\u00e8ve illustre \u00e0 merveille que pour le moment les grands discours ne sont pas n\u00e9cessairement incarn\u00e9s dans les projets concrets. Dans le cas pr\u00e9sent le probl\u00e8me n'est pas un d\u00e9faut de financement ou de comp\u00e9tences pour faire ce qu'il faut faire : il est un d\u00e9faut de r\u00e8gles emp\u00eachant l'apparition de projets qui contribuent \u00e0 nous entra\u00eener dans mauvaise direction. \n\nCar c'est une chose de modifier l'existant, et une autre de ne pas en rajouter aux probl\u00e8mes. Le deuxi\u00e8me cas de figure est \u00e0 l'\u00e9vidence bien plus facile. Tant que le pays ne se dotera pas de la capacit\u00e9 \u00e0 emp\u00eacher d'en rajouter aux difficult\u00e9s, on peut malheureusement \u00eatre un peu pessimiste sur notre capacit\u00e9 \u00e0 modifier l'existant, ce qui est g\u00e9n\u00e9ralement un cran au dessus question difficult\u00e9 \u00e0 faire." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6998765434871128064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6998765435470888961,urn:li:activity:6998765435470888961,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 643, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6998765435470888961,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6998765435470888961,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6998765435470888961", + "threadId": "activity:6998765435470888961", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6998765435470888961", + "urn": "urn:li:activity:6998765435470888961", + "numComments": 1036, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6998765435470888961", + "reactionTypeCounts": [ + { + "count": 17946, + "reactionType": "LIKE" + }, + { + "count": 1677, + "reactionType": "MAYBE" + }, + { + "count": 1376, + "reactionType": "PRAISE" + }, + { + "count": 531, + "reactionType": "INTEREST" + }, + { + "count": 382, + "reactionType": "APPRECIATION" + }, + { + "count": 73, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6998765435470888961", + "numLikes": 21985, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6998765435470888961", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 22024, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6997830447921561600", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6997830447921561600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6997830447921561600)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-capitalisme-ne-sadaptera-au-d%C3%A9fi-climatique-activity-6997830447921561600-PuUI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6997830446734524416", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6997830447921561600", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6997830446734524416", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "ms6x8Rpp2GN9BYp5IzaiTg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7864941750132445850", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 639, + "fileIdentifyingUrlPathSegment": "800/0/1675664003015?e=1677240000&v=beta&t=N4bFqc3BN3Xj-ZGbJcdGfdKb6B__Ei1h6qwPxim3uR8", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 639, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675664003015?e=1677240000&v=beta&t=b0QcqNJrTROWC9XVv-GuwND5p6oYrGUG0aJSiwI84Js", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675664003015?e=1677240000&v=beta&t=FkwdSfq2D_aLwpDeoxqRmkfhQ5RMdNi7-ZJFF0HpkOM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675664003015?e=1677240000&v=beta&t=ILyc_iBgTvC90fXz1oyJiGprs-ptTZ-mimqJmSwuBRY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHlYDPowtEfOg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5633802816901409 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7864941750132445850)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7864941750132445850)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "xerficanal.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le capitalisme ne s'adaptera au d\u00e9fi climatique que par la contrainte by xerficanal.com", + "actionTarget": "https://www.xerficanal.com/economie/emission/Anton-Brender-Le-capitalisme-ne-s-adaptera-au-defi-climatique-que-par-la-contrainte_3748380.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le capitalisme ne s'adaptera au d\u00e9fi climatique que par la contrainte" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6997830446734524416,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"il faut que les \u00e9tats exercent une pression sur le capitalisme\" pour que ce dernier ait des activit\u00e9s qui soient compatibles avec la pr\u00e9servation de l'environnement. Il ne faut pas compter sur les chefs d'entreprise, \"dont ce n'est pas la logique\", pour le faire spontan\u00e9ment, parce que la nature n'a pas de prix. M\u00eame si les dirigeants d'entreprise \"comprennent\" le probl\u00e8me, leur logique - comprendre la pr\u00e9\u00e9minence des euros sur les indicateurs environnementaux dans le cadre juridique actuel - les pousse dans une direction qui est inverse \u00e0 celle qui pr\u00e9serve les ressources.\n\nCes propos seraient d'une banalit\u00e9 affligeante s'ils venaient de la bouche d'un Gael Giraud ou d'un d\u00e9put\u00e9 LFI. Mais en l'esp\u00e8ce ils sont tenus par un \u00e9conomiste de chez Candriam, une soci\u00e9t\u00e9 de gestion d'actifs, qui appartient donc, au sens large, \u00e0 la \"finance mondialis\u00e9e lib\u00e9rale\".\n\nEt le m\u00eame de rappeler que, de m\u00eame que le travail des enfants n'a pas \u00e9t\u00e9 supprim\u00e9 par la bont\u00e9 d'\u00e2me des patrons, mais parce que la puissance publique l'a interdit (dans un contexte o\u00f9 les machines pouvaient prendre le relais, il ne faut pas l'oublier !), ce ne sont pas les chefs d'entreprise qui vont d'eux-m\u00eames se mettre dans le cadre de l'accord de Paris : c'est \u00e0 l'Etat de les y pousser, par des taxes et des interdictions.\n\nIl se trouve que, pas plus tard que le week-end dernier, j'ai d\u00e9fendu \u00e0 peu pr\u00e8s la m\u00eame th\u00e8se au micro de RTL dans le cadre de ma chronique hebdomadaire, qui portait sur la \"finance verte\" : https://lnkd.in/eG2t9mvQ\n\nL'id\u00e9e qu'un chef d'entreprise \"vert\" est en pratique un chef d'entreprise qui accepte - voire d\u00e9sire - que l'Etat mette des contraintes pour orienter l'activit\u00e9 \u00e9conomique du \"bon c\u00f4t\u00e9\" fait de plus en plus de chemin. Accepter ses propres limites n'est pas un aveu de faiblesse : c'est en les ignorant que l'on se met \u00e0 risque.\n\nIncidemment c'est cette population que The Shift project cherche \u00e0 rassembler : depuis le d\u00e9but notre think tank ambitionne (que l'on y parvienne est une autre histoire !) de coaliser des dirigeants qui pensent sinc\u00e8rement qu'il faut mettre des contraintes sur les \u00e9missions de gaz \u00e0 effet de serre. Comme cette population n'est pas compl\u00e8tement na\u00efve, ils et elles le souhaitent \u00e9videmment parce qu'ils et elles pensent que ca sera bon pour leur entreprise.\n\nSauf \u00e0 compl\u00e8tement supprimer le capitalisme, que je comprends ici comme la propri\u00e9t\u00e9 individuelle de tout ou partie des moyens de production (laquelle propri\u00e9t\u00e9 priv\u00e9e est, sous une forme ou sous une autre, pr\u00e9sente depuis la s\u00e9dentarisation de notre esp\u00e8ce il y a 10.000 ans), la voie \u00e0 explorer est donc d'encadrer ce dernier pour le forcer \u00e0 \"rentrer dans le monde fini\". Vaste mais n\u00e9cessaire programme." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6997830446734524416,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6997830447921561600,urn:li:activity:6997830447921561600,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 257, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6997830447921561600,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6997830447921561600,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6997830447921561600", + "threadId": "activity:6997830447921561600", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997830447921561600", + "urn": "urn:li:activity:6997830447921561600", + "numComments": 453, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6997830447921561600", + "reactionTypeCounts": [ + { + "count": 4843, + "reactionType": "LIKE" + }, + { + "count": 333, + "reactionType": "MAYBE" + }, + { + "count": 308, + "reactionType": "INTEREST" + }, + { + "count": 179, + "reactionType": "PRAISE" + }, + { + "count": 90, + "reactionType": "APPRECIATION" + }, + { + "count": 44, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6997830447921561600", + "numLikes": 5797, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997830447921561600", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5800, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 Edited \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6997515090895732736", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6997515090895732736)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6997515090895732736)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_terrawater-le-sc%C3%A9nario-%C3%A9nerg%C3%A9tiquedes-activity-6997515090895732736-vuxZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6997515089960402944", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6997515090895732736", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6997515089960402944", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "EUmP8wRlFKo+LTt6oqtz3g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8782828938415420476", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 768, + "fileIdentifyingUrlPathSegment": "800/0/1675705386746?e=1677240000&v=beta&t=Q3OzTro5raoywjJTp1cHSirxdNJOh7wfFF1ZitEQqX0", + "expiresAt": 1677240000000, + "height": 768 + }, + { + "width": 768, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675705386746?e=1677240000&v=beta&t=S9iLHCj8YsY2pakelZ-9-VTEqwfzx70z2VddQUVQiII", + "expiresAt": 1677240000000, + "height": 768 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675705386747?e=1677240000&v=beta&t=2kbVHicQ26IrV6wqZ_8sDI1w3UlEcxN8esN15vvn1kg", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675705386747?e=1677240000&v=beta&t=NEUDg6vicHw3REvvqdv2eiEaRxvuIgURgbzAKdq0S8o", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFphLqMFYQx8w/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8782828938415420476)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8782828938415420476)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "voix-du-nucleaire.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: TerraWater : le sc\u00e9nario \u00e9nerg\u00e9tique des Voix by voix-du-nucleaire.org", + "actionTarget": "https://www.voix-du-nucleaire.org/terrawater-scenario-energetique-des-voix/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "TerraWater : le sc\u00e9nario \u00e9nerg\u00e9tique\u00a0des\u00a0Voix" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6997515089960402944,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un sc\u00e9nario \u00e9lectrique qui concilie d\u00e9fense de l'environnement et augmentation de la capacit\u00e9 nucl\u00e9aire ? Ce n'est pas s\u00e9rieux voyons ! \n\nM\u00eame si l'adh\u00e9sion \u00e0 l'\u00e9nergie atomique a connu r\u00e9cemment un regain de faveur - en fait depuis les chocs p\u00e9troliers le meilleur marqueur du soutien \u00e0 cette forme de production est le prix des alternatives :), et en ce moment cet \u00e9l\u00e9ment est bien pr\u00e9sent - nous n'en sommes pas encore au point o\u00f9 la population adh\u00e8re massivement \u00e0 l'id\u00e9e que le nucl\u00e9aire est ce qu'il y a de plus \u00e9colo et durable - et de moins dangereux - pour une production \u00e9lectrique un peu cons\u00e9quente et disponible plus ou moins \u00e0 la demande.\n\nDe fait, l'essentiel des sc\u00e9narios \u00e9lectriques produits ces derniers temps pour notre pays voient tous une diminution de la puissance \u00e9lectrique install\u00e9e pour le nucl\u00e9aire dans les d\u00e9cennies \u00e0 venir et jusqu'\u00e0 la fin du si\u00e8cle. \n\nMais un \"nouveau venu\" - les Voix du Nucl\u00e9aire - propose (sans surprise avec un tel nom !) une trajectoire o\u00f9 le nucl\u00e9aire augmente fortement - et la production \u00e9lectrique aussi - d'ici \u00e0 2100. Dans ce m\u00eame sc\u00e9nario \u00e9olien et solaire augmentent aussi jusqu'au milieu du si\u00e8cle, et surtout du stockage assur\u00e9 par des stations de pompage-turbinage (des STEP), qui seraient massivement construites d\u00e8s maintenant. Elle serviront d'abord \u00e0 \u00e9quilibrer les ENR intermittentes, et ensuite \u00e0 assurer la flexibilit\u00e9 journali\u00e8re et hebdomadaire en compl\u00e9ment d'un nucl\u00e9aire plus important qu'aujourd'hui.\n\nEn pratique ce sc\u00e9nario repose sur les axes suivants :\n- \u00e0 court terme d\u00e9ploiement de solaire, \u00e9olien, ainsi que de STEP pour assurer le pilotage du r\u00e9seau\n- maintien en service des r\u00e9acteurs actuels aussi longtemps que possible (sous contr\u00f4le de l'ASN bien s\u00fbr), soit un peu plus de 60 ans (dur\u00e9e d\u00e9j\u00e0 autoris\u00e9e aux USA pour tous les r\u00e9acteurs \u00e0 eau pressuris\u00e9e)\n- d\u00e9ploiement d\u00e8s maintenant d'EPR2\n- d\u00e8s 2050 d\u00e9but du d\u00e9ploiement de r\u00e9acteurs de la 4\u00e8 g\u00e9n\u00e9ration et d\u00e9crue corr\u00e9lative des ENR intermittentes. Les STEP sont conserv\u00e9es pour assurer la flexibilit\u00e9 en compl\u00e9ment d'un nucl\u00e9aire utilis\u00e9 essentiellement en base.\n- d\u00e9ploiement de turbines \u00e0 combustion biomasse pour l'hyperpointe\n\nCe sc\u00e9nario est purement \u00e9lectrique, et fait passer la production de 500 TWh actuellement \u00e0 800 TWh en 2070. Il n'est formellement pas incompatible avec la sobri\u00e9t\u00e9 puisqu'aujourd'hui la France utilise 1600 TWh d'\u00e9nergie finale tout compris.\n\nIl est trop t\u00f4t pour dire si ce sc\u00e9nario est, dans ses moindres d\u00e9tails, pertinent ou pas. Mais il offre une base de r\u00e9flexion int\u00e9ressante d\u00e8s lors que l'on souhaite discuter du meilleur compromis possible dans un monde qui va se d\u00e9mondialiser, et o\u00f9 tout ce qui est physique (espace au sol, biomasse, m\u00e9taux) va devenir de plus en plus difficile d'acc\u00e8s, hypoth\u00e8se g\u00e9n\u00e9ralement peu pr\u00e9sente dans les autres sc\u00e9narios de place qui postulent \u00e0 peu pr\u00e8s tous l'inverse.\n\nEsp\u00e9rons aussi qu'il contribuera \u00e0 nourrir un d\u00e9bat pacifi\u00e9 et non \u00e0 renforcer la fr\u00e9quence des noms d'oiseau !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6997515089960402944,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6997515090895732736,urn:li:activity:6997515090895732736,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 74, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6997515090895732736,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6997515090895732736,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6997515090895732736", + "threadId": "activity:6997515090895732736", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997515090895732736", + "urn": "urn:li:activity:6997515090895732736", + "numComments": 248, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6997515090895732736", + "reactionTypeCounts": [ + { + "count": 1905, + "reactionType": "LIKE" + }, + { + "count": 222, + "reactionType": "MAYBE" + }, + { + "count": 216, + "reactionType": "INTEREST" + }, + { + "count": 34, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "EMPATHY" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6997515090895732736", + "numLikes": 2428, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997515090895732736", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2428, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6997237239227244544", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6997237239227244544)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6997237239227244544)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_reporting-extra-financier-ladoption-du-activity-6997237239227244544-FgD2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6997237238065418241", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6997237239227244544", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6997237238065418241", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "Gga3Nx478b3GDSId0tvQAA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7336260786284283234", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676538389786?e=1677240000&v=beta&t=uAmX5va8gSM6U-TB_DAZl3q1YiFXfPjSe2oGTS3Govs", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676538389786?e=1677240000&v=beta&t=j-6H7o2P4lROfiHhsdsuDfEO-QOoE2crqZSxQfBnYq4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676538389786?e=1677240000&v=beta&t=CXtH7PWjD8K33XlWUe9rGQ5GAwe3o0ku3b0LL8Hc9J0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676538389786?e=1677240000&v=beta&t=K9Q3bJdeB2okES3YR1Y-tlOo5696bVdkeXS7JERB2TI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHcNy7Dy0tBDA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7336260786284283234)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7336260786284283234)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Reporting extra-financier : l'adoption du cadre europ\u00e9en laisse de nombreuses questions en suspens by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/reporting-extra-financier-ladoption-du-cadre-europeen-laisse-de-nombreuses-questions-en-suspens-1877784" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Reporting extra-financier\u00a0: l'adoption du cadre europ\u00e9en laisse de nombreuses questions en suspens" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6997237238065418241,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Parlement europ\u00e9en a vot\u00e9 Jeudi dernier une nouvelle directive qui renforce les obligations pour les entreprises europ\u00e9ennes en mati\u00e8re de publication d'informations \"non financi\u00e8res\". On met dans ce vocable les informations relatives \u00e0 la pression sur l'environnement (voir liste dans le graphique en commentaire), aux sujets sociaux (idem) et concernant la gouvernance (idem).\n\nL'\u00e9laboration des \"comptes extrafinanciers\" \u00e9tant bien plus r\u00e9cente que celle des comptes financiers, la r\u00e9glementation - ou son absence - qui s'y applique est aussi bien plus r\u00e9cente. C'est un domaine dans lequel l'Europe - et au sein de l'Europe la France - est globalement en avance sur le reste du monde.\n\nUn pas de plus vient donc d'\u00eatre franchi avec cette directive CSRD (pour Corporate Sustainability Reporting Directive). Comme c'est une directive, elle devra \u00eatre transpos\u00e9e dans les l\u00e9gislations nationales avant de s'appliquer.\n\nToutes les soci\u00e9t\u00e9s cot\u00e9es de plus de 500 salari\u00e9s devront s'y conformer d\u00e8s 2024. Ca sera 2025 ou 2026 pour celles comprises entre 10 et 500 salari\u00e9s. Dans le non cot\u00e9, seules les entreprises de moins de 250 salari\u00e9s y \u00e9chapperont, \u00e0 condition qu'elles ne fassent pas plus de 40 M\u20ac de CA et 20 M\u20ac de total de bilan (ce qui \u00e9vite d'exon\u00e9rer les soci\u00e9t\u00e9s d'investissement avec beaucoup d'actifs et peu d'effectifs).\n\nLe contenu pr\u00e9cis des modalit\u00e9s \u00e0 respecter \u00e0 \u00e9t\u00e9 d\u00e9l\u00e9gu\u00e9 \u00e0 l'EFRAG (European Financial Reporting Advisory Group), une association cr\u00e9\u00e9e en 2001, qui est majoritairement financ\u00e9e par la Commission, mais o\u00f9 sont repr\u00e9sent\u00e9es nombre de \"parties prenantes\" (voir https://bit.ly/3GaRBW9 ).\n\nCette instance a fait des propositions qui tiennent en 220 pages de rapport et plus de 400 pages d'annexes (https://bit.ly/3g0Re5W ). Ouf !\n\nOn note dans ces propositions :\n\n- que les entreprises ne doivent pas juste publier les informations qui vont avec un risque financier direct pour elles (\"simple mat\u00e9rialit\u00e9\" dans le jargon), mais aussi les informations permettant d'appr\u00e9cier les impacts qu'elles ont sur leur environnement, m\u00eame si cet impact n'est pas porteur de risque financier pour l'entreprise (la somme des deux s'appelant \"double mat\u00e9rialit\u00e9\").\n\n- que les informations communiqu\u00e9es pour les impacts doivent concerner l'ensemble de la cha\u00eene de valeur (et donc inclure le \"scope 3\" dans le jargon pour les \u00e9missions de gaz \u00e0 effet de serre)\n\n- que le sujet le plus mature pour un reporting normatif et quantifi\u00e9 est le climat (au sein de l'environnement qui globalement est le sujet le plus simple des 3 E S et G)\n\n- qu'en mati\u00e8re de climat il faudrait parler \u00e0 la fois \u00e9missions et vuln\u00e9rabilit\u00e9 aux risques physiques\n\n- et que la biodiversit\u00e9 est aussi un domaine qui devra \u00eatre couvert\n\nComme d'habitude, d'aucuns vont consid\u00e9rer que l'Europe se tire une balle dans le pied pendant que d'autres se f\u00e9liciteront de ce cadre un peu contraignant. Consid\u00e9rant qu'une entreprise n'innove que sous la contrainte, j'appartiens plut\u00f4t \u00e0 la 2\u00e8 cat\u00e9gorie :)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6997237238065418241,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6997237239227244544,urn:li:activity:6997237239227244544,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 125, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6997237239227244544,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6997237239227244544,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6997237239227244544", + "threadId": "activity:6997237239227244544", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997237239227244544", + "urn": "urn:li:activity:6997237239227244544", + "numComments": 158, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6997237239227244544", + "reactionTypeCounts": [ + { + "count": 2650, + "reactionType": "LIKE" + }, + { + "count": 247, + "reactionType": "INTEREST" + }, + { + "count": 175, + "reactionType": "MAYBE" + }, + { + "count": 74, + "reactionType": "PRAISE" + }, + { + "count": 27, + "reactionType": "EMPATHY" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6997237239227244544", + "numLikes": 3186, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997237239227244544", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3189, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6996901590204870656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6996901590204870656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6996901590204870656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_el-mundo-sin-fin-norma-editorial-activity-6996901590204870656-jNFe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6996901588053164032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6996901590204870656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6996901588053164032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "VOf0FFGjQBRj+Vdl9FG9iQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9149176262847108493", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 779, + "fileIdentifyingUrlPathSegment": "800/0/1675595650829?e=1677240000&v=beta&t=LwPDaDGVzHdFyslug_EKCcyQhjwAEbF9YtKbyHZqJgQ", + "expiresAt": 1677240000000, + "height": 941 + }, + { + "width": 662, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675595650829?e=1677240000&v=beta&t=ovqKWUauEHAz4B83ELLahXUiMPhXuow5k-V_Eip4eD4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675595650829?e=1677240000&v=beta&t=1xkRfIdjh82Jnq_R-pCxoOMPsxgBYzD-dJMSGnXGq8E", + "expiresAt": 1677240000000, + "height": 193 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675595650829?e=1677240000&v=beta&t=ixHmRK8RIi3JPgSq6AUS25A--1EmmsL44fpGHPPXzOI", + "expiresAt": 1677240000000, + "height": 579 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEsohMCBcJHNA/articleshare-shrink_" + }, + "displayAspectRatio": 1.2079589216944802 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "EL MUNDO SIN FIN" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9149176262847108493)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9149176262847108493)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "normaeditorial.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EL MUNDO SIN FIN - Norma Editorial by normaeditorial.com", + "actionTarget": "https://www.normaeditorial.com/ficha/comic-europeo/el-mundo-sin-fin" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EL MUNDO SIN FIN - Norma Editorial" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6996901588053164032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s \u00eatre all\u00e9 au nord (Allemagne : https://lnkd.in/e-Qc7Q8P - Pays Bas/Belgique : https://lnkd.in/e7YeMvnm ), et au Nord Ouest (version digitale anglaise : https://lnkd.in/e4zr_Pgh ) Le Monde Sans fin met le cap au Sud, et plus pr\u00e9cis\u00e9ment en Espagne.\n\nCe n'est pas une mais deux versions espagnoles qui viennent de sortir :\n- une en castillan (lien dans l'image ci-dessous)\n- une en catalan : https://lnkd.in/eHxRTkEC (qui a m\u00eame une couverture bleue, histoire de montrer que vraiment c'est pas comme l'autre !)\n\nSi vous avez des relations au pays de Don Quichotte qui ont le mauvais go\u00fbt de ne pas parler fran\u00e7ais (!), il est d\u00e9sormais possible de leur sugg\u00e9rer de la lecture en espagnol, quel que soit ce dernier !\n\nEt tant que nous y sommes, au sud-est il y a aussi une version croate : https://lnkd.in/e3TznwXi \n\nD'ici quelques mois on devrait pers\u00e9v\u00e9rer au sud (de l'Europe) avec une version italienne et une portugaise, et pers\u00e9v\u00e9rer \u00e0 l'est (de l'Europe) avec une version polonaise. L'Europe s'est b\u00e2tie sur l'\u00e9nergie, ne l'oublions pas !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6996901588053164032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6996901590204870656,urn:li:activity:6996901590204870656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 212, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6996901590204870656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6996901590204870656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6996901590204870656", + "threadId": "activity:6996901590204870656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996901590204870656", + "urn": "urn:li:activity:6996901590204870656", + "numComments": 259, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6996901590204870656", + "reactionTypeCounts": [ + { + "count": 4698, + "reactionType": "LIKE" + }, + { + "count": 521, + "reactionType": "PRAISE" + }, + { + "count": 190, + "reactionType": "EMPATHY" + }, + { + "count": 59, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6996901590204870656", + "numLikes": 5484, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996901590204870656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5485, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6996436027229765634", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6996436027229765634)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6996436027229765634)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-spectacle-vivant-au-d%C3%A9fi-de-la-transition-activity-6996436027229765634-DbXR?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6996436026411909121", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6996436027229765634", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6996436026411909121", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "DCuQPAdynSlNnYGl2GJe8g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7741171083256221759", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675670386167?e=1677240000&v=beta&t=q-pqBiRJvFKr9MFX7FNSdsXiu-IYmFdJ2Yic-wuz9TQ", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675670386167?e=1677240000&v=beta&t=w2tgpgc4QX7KcXDwwKaMuV8_QyBU6auaet358JB-LGI", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675670386168?e=1677240000&v=beta&t=QaTdVPc-sn4WMckhC5JO8yNUFiaSojRG4AsdULJP2Ig", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675670386168?e=1677240000&v=beta&t=fUJbYr2qa_9SFjpKmxsCuppbEcxGHI3oS3y6no7T7As", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGE-d7dTWr4-g/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7741171083256221759)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7741171083256221759)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le spectacle vivant au d\u00e9fi de la transition \u00e9cologique by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/culture/article/2022/11/05/le-spectacle-vivant-au-defi-de-la-sobriete-energetique_6148598_3246.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le spectacle vivant au d\u00e9fi de la transition \u00e9cologique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6996436026411909121,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La d\u00e9carbonation ? Une affaire d'ing\u00e9nieurs (de l'inerte ou du vivant) pardi ! Eoliennes, m\u00e9thaniseurs, voitures \u00e9lectriques et bornes de recharge, ampoules \u00e0 LED, mat\u00e9riaux isolants et pompes \u00e0 chaleur, s\u00e9questration du CO2, r\u00e9gimes alimentaires des bovins, arr\u00eat du labour, hydrog\u00e8ne, batteries, trains, v\u00e9los.... la liste des objets techniques qui arrivent dans les d\u00e9bats est presque infinie d\u00e8s lors qu'il est question de baisser les \u00e9missions plan\u00e9taires de CO2.\n\nJuste apr\u00e8s on va trouver l'argent, \u00e2prement discut\u00e9 \u00e0 la COP 27 incidemment. Ce faisant, nous ratons peut-\u00eatre l'essentiel : notre repr\u00e9sentation de l'id\u00e9al, ce qui nous attire et nous repousse, le mod\u00e8le sur lequel on essaie de se caler, les habitudes qu'il faut prendre et celles dont il faut se d\u00e9partir, en un mot ce qui rel\u00e8ve du bien ou d\u00e9sirable et ce qui rel\u00e8ve du mal et du repoussant. \n\nIl y a donc un tout petit sujet culturel dans cette histoire. La culture, en fait, a un double rapport avec les \u00e9missions de gaz \u00e0 effet de serre. Tout d'abord son fonctionnement m\u00eame en engendre. \n\nLes mus\u00e9es sont parfois des aspirateur \u00e0 touristes a\u00e9roport\u00e9s (le Louvre ou le Moma), et les festivals, cin\u00e9mas, sites historiques ou remarquables (comme le Mont Saint Michel), des aspirateurs \u00e0 voitures. Les b\u00e2timents doivent aussi \u00eatre chauff\u00e9s et les d\u00e9cors fabriqu\u00e9s, et enfin l'audiovisuel - qui fait partie de la culture, porno compris :) - est le premier motif d'emploi du digital, lequel engendre 4% des \u00e9missions plan\u00e9taires environ.\n\nComme toute activit\u00e9 \"moderne\", la culture est elle aussi devenue d\u00e9pendante des combustibles fossiles. \n\nMais elle a un autre rapport \u00e0 la question : celle de \"cr\u00e9atrice de tendances\". Hollywood a surement fait autant - sinon plus - pour l'id\u00e9alisation du mode de vie \u00e9nergivore des am\u00e9ricains que toutes les campagnes publicitaires ou marketing des constructeurs de grosses voitures ou de maisons individuelles.\n\nC'est pour cela que, dans le Plan de Transformation de l'Economie Fran\u00e7aise, il y a un chapitre entier sur la culture (https://bit.ly/3UnN8ni ). Ce n'est pas juste un petit truc dont il faut s'occuper pour donner le change pendant que les sujets vraiment s\u00e9rieux se discutent avec les industriels. C'est un secteur qui contribue puissamment aux effets de mode et qui est par ailleurs issu de l'anthropoc\u00e8ne dans sa forme actuelle. \n\nCet article du Monde \u00e9voque quelques initiatives sur le sujet, soit port\u00e9es par des acteurs individuels (compagnies de th\u00e9\u00e2tre, organisateurs de festivals) soit par des entit\u00e9s collectives (associations professionnelles ou syndicats). \n\nSelon l'article du Monde, le travail du Shift Project sert \"de r\u00e9f\u00e9rence\" au secteur. M\u00eame si cette affirmation ne refl\u00e8te que le dixi\u00e8me de la r\u00e9alit\u00e9, cela signifie quand m\u00eame que nous sommes identifi\u00e9s comme utiles pour que les acteurs de ce domaine s'emparent de la question climatique. C'est indispensable pour que le reste de la soci\u00e9t\u00e9 fasse de la d\u00e9carbonation un but d\u00e9sirable. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6996436026411909121,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6996436027229765634,urn:li:activity:6996436027229765634,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6996436027229765634,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6996436027229765634,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6996436027229765634", + "threadId": "activity:6996436027229765634", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996436027229765634", + "urn": "urn:li:activity:6996436027229765634", + "numComments": 109, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6996436027229765634", + "reactionTypeCounts": [ + { + "count": 1235, + "reactionType": "LIKE" + }, + { + "count": 86, + "reactionType": "INTEREST" + }, + { + "count": 75, + "reactionType": "PRAISE" + }, + { + "count": 43, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "EMPATHY" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6996436027229765634", + "numLikes": 1472, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996436027229765634", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1472, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6995781404512952320", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6995781404512952320)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6995781404512952320)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climatsup-business-former-les-acteurs-de-activity-6995781404512952320-70v_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6995781403606929410", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6995781404512952320", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6995781403606929410", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "+cwbNPmiI35KzGxQDqabkA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8459012764171481968", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676596121923?e=1677240000&v=beta&t=mQcuJKnoZipMWKudDoCL8QNgQ5Um8fJ8yW2JgA5Szuw", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676596121923?e=1677240000&v=beta&t=l_5dQeoNwEuQIG2Qm8SktdZA0E65KSoofB1b1hlXH08", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676596121923?e=1677240000&v=beta&t=29IAA03gIOdM100ACzbxxsgD6i_2MuqrAzWOMpxIq9c", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676596121923?e=1677240000&v=beta&t=ZBAzvvpnQT8Mz4Fq_2GtEHvRLIW9SL1AsnG64tG_eQo", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGzKG2KtofCCA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8459012764171481968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8459012764171481968)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: ClimatSup Business - Former les acteurs de l'\u00e9conomie de demain by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/rapport-final-climat-sup-business/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "ClimatSup Business - Former les acteurs de l'\u00e9conomie de demain" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6995781403606929410,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Comment apprendre aux \u00e9l\u00e8ves des \u00e9coles de gestion \u00e0 faire un business plan compatible accord de Paris ? Du marketing ou de la publicit\u00e9 compatible avec les limites plan\u00e9taires ? Du management \"bas carbone\" ?\n\nApr\u00e8s avoir travaill\u00e9 sur la mise en harmonie de l'enseignement dans les \u00e9coles d'ing\u00e9nieur avec la n\u00e9cessaire d\u00e9carbonation (sous contrainte d'autres ressources) de l'\u00e9conomie, The Shift Project r\u00e9cidive (si l'on peut dire) avec les \u00e9coles de gestion (en attendant de compl\u00e9ter la trilogie dans pas longtemps avec l'enseignement de la finance).\n\nLe travail effectu\u00e9 par notre think tank a consist\u00e9 \u00e0 cr\u00e9er une \"m\u00e9thode op\u00e9rationnelle\" pour aider un \u00e9tablissement d'enseignement sup\u00e9rieur en gestion \u00e0 proposer un enseignement compatible avec les d\u00e9fis de demain et non avec ceux d'hier.\n\nUne fois cela dit, un certain nombre de probl\u00e8mes pratiques se posent pour passer \u00e0 l'action :\n- comment r\u00e9viser les programmes ? Faut-il proposer la m\u00eame chose qu'actuellement avec en plus un peu de RSE ou de physique, ou bien il faut revoir tout l'enseignement, y compris faire un tri s\u00e9v\u00e8re dans ce qui existe ?\n- Aura-t-on besoin des m\u00eames enseignants qu\u2019il faudra juste former \u00e0 de nouvelles approches, ou bien l\u2019angle sera tellement diff\u00e9rent que le corps enseignant apte \u00e0 officier dans ce nouveau contexte viendra surtout de l\u2019ext\u00e9rieur ?\n-\u00a0Faut-il s\u00e9lectionner les \u00e9l\u00e8ves sur des bases diff\u00e9rentes ?\n- Faut-il changer les syst\u00e8mes de classement des \u00e9tablissements, pour que le salaire \u00e0 la sortie ne soit plus le principal crit\u00e8re prix en compte ? \n- Pour une \u00e9cole qui voudrait \"faire sa r\u00e9volution\", comment cesser de servir un syst\u00e8me que l\u2019on sait aller dans le mur sans aller dans le mur soi-m\u00eame parce que l\u2019on est sorti du jeu ?\n- Faut-il \u00e9couter les recruteurs, qui sont par nature l\u2019incarnation de l\u2019existant dont il faut se d\u00e9partir, ou \u00e9couter des \u00e9l\u00e8ves, qui peuvent avoir des aspirations qui ne correspondent pas (encore) \u00e0 des emplois existants ?\n\nLe rapport du Shift Project ne fournira pas de r\u00e9ponse exhaustive \u00e0 toutes ces questions, et \u00e0 toutes les autres qui viennent \u00e0 l'esprit, mais il devrait n\u00e9anmoins int\u00e9resser toute personne qui partagerait nos souhaits de voir cet enseignement sup\u00e9rieur \"shifter\" un peu plus rapidement que maintenant. \n\nCar si nous prenons l'accord de Paris au pied de la lettre - et ne pas le faire en pleine COP est os\u00e9 :) - il reste 30 ans pour amener les \u00e9missions \u00e0 z\u00e9ro. Les cadres arrivant aujourd'hui sur le march\u00e9 du travail devraient donc d\u00e9j\u00e0 avoir les r\u00e9flexes adapt\u00e9s \u00e0 un monde o\u00f9 l'\u00e9nergie facile va se contracter, ce qui est l'\u00e9volution inverse de celle qui a men\u00e9 \u00e0 la mondialisation dont les anciens des \u00e9coles de gestion sont les b\u00e9n\u00e9ficiaires directs. \n\nNB : Si par chance vous \u00eates disponible dans 45 minutes (!) la pr\u00e9sentation du rapport aura lieu \u00e0 Audencia (\u00e0 Nantes) et en visio sur la page https://lnkd.in/eaSz8idj (il y aura un replay sinon)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6995781403606929410,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6995781404512952320,urn:li:activity:6995781404512952320,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 110, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6995781404512952320,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6995781404512952320,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6995781404512952320", + "threadId": "activity:6995781404512952320", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995781404512952320", + "urn": "urn:li:activity:6995781404512952320", + "numComments": 144, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6995781404512952320", + "reactionTypeCounts": [ + { + "count": 1748, + "reactionType": "LIKE" + }, + { + "count": 129, + "reactionType": "INTEREST" + }, + { + "count": 125, + "reactionType": "PRAISE" + }, + { + "count": 87, + "reactionType": "MAYBE" + }, + { + "count": 35, + "reactionType": "APPRECIATION" + }, + { + "count": 26, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6995781404512952320", + "numLikes": 2150, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995781404512952320", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2150, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6995652656836837376", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6995652656836837376)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6995652656836837376)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_letat-r%C3%A9clame-plus-defforts-de-d%C3%A9carbonation-activity-6995652656836837376-aFC3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6995652655922487296", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6995652656836837376", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6995652655922487296", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "a8wUzwPCOI1nft/gBGbX/A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8979046753261814202", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675759221812?e=1677240000&v=beta&t=3O_5Z-W14bzk2hKGftC-p4zcfCPcRz1nqxMrG1sTRN8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675759221812?e=1677240000&v=beta&t=7Dt_UKvUlJo_2BkN7TjnjboOm4nqQfd40swI52RPGVY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675759221812?e=1677240000&v=beta&t=p2GoxTcKSLaIMOp3hKQjeW3jnd-25UHlMATsQC-6AQA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675759221812?e=1677240000&v=beta&t=Exybn4d77Fqb4K6leh_49183uk9WkO-AwsKUmfG0pCU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG5QbMuSz8lqw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8979046753261814202)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8979046753261814202)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'Etat r\u00e9clame plus d'efforts de d\u00e9carbonation aux industriels by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/letat-reclame-plus-defforts-de-decarbonation-aux-industriels-1876669#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'Etat r\u00e9clame plus d'efforts de d\u00e9carbonation aux industriels" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6995652655922487296,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans le chapitre \"industrie\" du Plan de Transformation de l'Economie Fran\u00e7aise (https://lnkd.in/esiqHkbf), nous avions fait le constat que les 3/4 des \u00e9missions directes (donc hors \u00e9missions associ\u00e9es \u00e0 la consommation \u00e9lectrique du secteur, et bien \u00e9videmment hors \u00e9missions du \"scope 3\") du secteur industriel en France viennent de 3 activit\u00e9s qui repr\u00e9sentent chacune environ un quart du total du secteur :\n- l'aci\u00e9rie\n- la cimenterie et activit\u00e9s connexes (production de chaux par exemple, mais le ciment domine de la t\u00eate et des \u00e9paules)\n- la chimie de base (production des monom\u00e8res, de la soude et du chlore, de l'hydrog\u00e8ne, etc).\n\nNos propositions permettaient de viser, pour ces secteurs, une division par 5 \u00e0 10 des \u00e9missions \u00e0 l'horizon 2050 - ce n'est pas encore la neutralit\u00e9 mais on s'en rapproche - en combinant sobri\u00e9t\u00e9 - il y a une baisse des volumes - et avanc\u00e9es techniques (par exemple la r\u00e9duction directe \u00e0 l'hydrog\u00e8ne dans la m\u00e9tallurgie ou un m\u00e9lange de capture et s\u00e9questration du carbone et de combustibles non fossiles dans la cimenterie).\n\nJe ne sais pas si l'Elys\u00e9e a lu le PTEF, mais l'\u00e9v\u00e9nement rapport\u00e9 par Les Echos s'inscrit dans la m\u00eame logique : porter une attention particuli\u00e8re aux sites fortement \u00e9missifs, o\u00f9 la d\u00e9carbonation va souvent avec des investissements lourds qu'il faut donc pouvoir \"s\u00e9curiser\".\n\n\"s\u00e9curiser\" signifie en pratique que, sur leur dur\u00e9e de vie, ces investissements vont \u00e9viter plus de couts qu'ils n'en engendreront. La logique est que, comme les sites gros \u00e9metteurs sont soumis aux quotas, et que ces derniers sont d\u00e9sormais payants, tout le CO2 non \u00e9mis peut se convertir en quotas non achet\u00e9s, et cet argent peut \u00eatre mis en face de l'amortissement de l'investissement r\u00e9alis\u00e9.\n\nPour que le syst\u00e8me fonctionne bien, il y a un point que cet article n'\u00e9voque pas : la garantie d'un prix \u00e9lev\u00e9 et stable du CO2 \u00e0 l'avenir. Le march\u00e9 ne peut pas garantir cela. Il faut donc que la puissance publique s'en m\u00eale, or pour le moment la Commission (car cela d\u00e9pend d'elle) est r\u00e9tive \u00e0 l'id\u00e9e de mettre un prix plancher aux quotas mis aux ench\u00e8res.\n\nLe deuxi\u00e8me point qui n'est pas \u00e9voqu\u00e9 est la protection aux fronti\u00e8res : si les couts de production domestiques qui n'engendrent que peu de CO2 sont sup\u00e9rieurs \u00e0 ceux des concurrents \u00e9trangers qui \u00e9mettent plus, il faut pouvoir compenser la diff\u00e9rence aux fronti\u00e8res (comme pour la TVA). \n\nDans les commodit\u00e9s certaines voyagent peu en pratique (le ciment), mais d'autres beaucoup plus (acier ou polym\u00e8res). Si l'Etat veut que les industriels avancent - et il a raison de le vouloir - il faut qu'il fasse sa part dans la planification, en s'occupant des deux \u00e9l\u00e9ments \u00e9voqu\u00e9s plus haut. Une troisi\u00e8me alternative est qu'il prenne \u00e0 sa charge les investissements des industriels, en allant \u00e9ventuellement jusqu'\u00e0 une nationalisation ou une cogestion - une \u00e9ventualit\u00e9 aujourd'hui tr\u00e8s peu compatible avec l'orientation \u00e9conomique lib\u00e9rale, mais l'histoire n'a pas fini d'\u00eatre \u00e9crite !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6995652655922487296,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6995652656836837376,urn:li:activity:6995652656836837376,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 42, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6995652656836837376,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6995652656836837376,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6995652656836837376", + "threadId": "activity:6995652656836837376", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995652656836837376", + "urn": "urn:li:activity:6995652656836837376", + "numComments": 67, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6995652656836837376", + "reactionTypeCounts": [ + { + "count": 966, + "reactionType": "LIKE" + }, + { + "count": 98, + "reactionType": "MAYBE" + }, + { + "count": 92, + "reactionType": "INTEREST" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6995652656836837376", + "numLikes": 1189, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995652656836837376", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1189, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6995295509888299008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6995295509888299008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6995295509888299008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_agriculture-il-faut-abandonner-le-labour-activity-6995295509888299008-tR2d?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6995295508894220288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6995295509888299008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6995295508894220288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "nMrOI++QfrqoTtE2SA/KaA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7352330957760746843", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676368873920?e=1677240000&v=beta&t=oSKXCH78m-dui7lavcEXHFJ5NPFiGSfqnoU-H2soLeQ", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676368873920?e=1677240000&v=beta&t=TorH-d6o01axdCngyF_5lTaYDnR4mqZZHS3RIP0fymo", + "expiresAt": 1677240000000, + "height": 526 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676368873921?e=1677240000&v=beta&t=ks4ZMq7wd94h2L6Onl6Lcsiw0qbd4XfNoBJIvOt9GJ8", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676368873921?e=1677240000&v=beta&t=U4iR0h-I2rqsRSK_Y98XbATNe86cXo5jZghTu9R4QsU", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQH90A8YSrTHmg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7352330957760746843)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7352330957760746843)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "letelegramme.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Agriculture : \u00ab Il faut abandonner le labour \u00bb by letelegramme.fr", + "actionTarget": "https://www.letelegramme.fr/dossiers/en-quete-de-demain/agriculture-il-faut-abandonner-le-labour-04-11-2022-13210066.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Agriculture\u00a0: \u00ab\u00a0Il faut abandonner le labour\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6995295508894220288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 67, + "length": 14, + "miniProfile": { + "firstName": "Lionel", + "lastName": "Alletto", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB2KoKkBj0_b_myDoXow3e41vHVaBIz6tEg", + "occupation": "Directeur de recherche chez INRAE", + "objectUrn": "urn:li:member:495624361", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB2KoKkBj0_b_myDoXow3e41vHVaBIz6tEg", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1517601436955?e=1681948800&v=beta&t=6UDhR5DaDQc0abluUVzw5DIRZdzIDUqZ8laPProAioE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1517601436955?e=1681948800&v=beta&t=3kj7moF6B14uDTKAL3l58_lUZuh2devx1C3v18QRsM4", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5116AQF2X3nHXIo75w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "lionel-alletto-7a1b97119", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1519478248294?e=1681948800&v=beta&t=xRv5YFR8F6qpGh64kDFcFg2INTWRXm47nZITXBkNQk0", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1519478248294?e=1681948800&v=beta&t=cQSJzvyxVOq_542c3A4h8TkF0sI0-unWUlWb6D906b0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1519478248294?e=1681948800&v=beta&t=GAsalzLUw4G74zryvfm0gjVeQXqsYqVNh07P1Dxd_9Q", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1519478248294?e=1681948800&v=beta&t=BC9H48gVjSWv8g5FtdZq3y35szq7clYTuNLSKPXtVgU", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQF0oKakpSHzWQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "XlUTgut6SzuKV7ARw63X4Q==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans un entretien au T\u00e9l\u00e9gramme (qui \u00e0 une \u00e9poque fut \"de Brest\"), Lionel Alletto \u00e9voque les modifications des pratiques agricoles qu'il serait pertinent de mettre en oeuvre pour gagner en r\u00e9silience et diminuer la pression sur l'environnement (NB : je soup\u00e7onne la transcription de l'interview de comporter quelques erreurs ici ou l\u00e0, qui conduisent certaines phrases \u00e0 \u00eatre \u00e9tranges ou en d\u00e9calage).\n\nQuelques \u00e9l\u00e9ments int\u00e9ressants de cette interview :\n- les techniques sans labour semblent am\u00e9liorer la r\u00e9sistance \u00e0 la s\u00e9cheresse (un avantage qui pourrait ne pas \u00eatre mince avec ce qui nous attend)\n- la diversification des cultures - dont la polyculture \u00e9levage - permet de diminuer l'usage des phytosanitaires\n- le seul phytosanitaire vraiment utile en agriculture de conservation c'est... le glyphosate (tous les \u00e9chos que j'ai eus laissent penser que ce n'est pas celui dont l'interdiction est la plus prioritaire...)\n- en \"p\u00e9riode de temps calme\" sur le prix de l'\u00e9nergie, l'agriculture de conservation ne change pas la donne sur le plan \u00e9conomique (donc elle ne rapporte rien de plus... mais ne coute pas plus non plus), mais quand les prix des hydrocarbures grimpent au plafond elle donne un avantage\n\nJ'avais retenu par ailleurs que d'avoir un couvert v\u00e9g\u00e9tal sur l'ensemble de l'ann\u00e9e favorise la s\u00e9questration de carbone dans le sol. \n\n\"sur le papier\", dixit l'urbain que je suis qui ne tient pas souvent une fourche ou une b\u00eache :), cette technique semble donc \u00e0 g\u00e9n\u00e9raliser. Que manque-t-il pour que cela soit le cas ? La liste des \"conditions du succ\u00e8s\" n'est pas tr\u00e8s diff\u00e9rente ici de ce qu'elle est pour tout passage \u00e0 l'\u00e9chelle d'une mani\u00e8re de faire pour laquelle des pionniers montrent que globalement ca fonctionne :\n- une valorisation \"culturelle\" d'un changement de pratique dans un monde o\u00f9 c'est plut\u00f4t l'inverse qui est la r\u00e8gle. Les terroirs, AOC, etc, valorisent le fait de \"faire toujours pareil\", et l\u00e0 il s'agit de valoriser l'inverse !\n- du coup il faut un accompagnement et de la formation, \u00e0 la fois par la recherche (c'est donc une tr\u00e8s bonne chose que l'INRAE s'en m\u00eale) et par les entit\u00e9s d\u00e9volues \u00e0 cet effet (chambres d'agriculture et conseil interne des coop\u00e9ratives notamment)\n- il faut aussi que les r\u00e8gles \u00e9conomiques ne dissuadent pas explicitement les modifications de pratiques, voire les encouragent (il n'y a pas que les prix de vente pour cela : l'Etat, comme il l'a fait pour le covid, pourrait reprendre de la dette d'agriculteurs qui accepteraient de changer de pratiques, par exemple). Or le premier souci des r\u00e8gles \u00e9conomiques aujourd'hui n'est pas d'assurer la \"durabilit\u00e9 physique\" !\n\nTout est r\u00e9sum\u00e9 dans cette phrase de l'interview : \"Les syst\u00e8mes [agricoles]\u00a0doivent (...) gagner en r\u00e9silience et (...) \u00eatre moins d\u00e9pendants des ressources externes, \u00eatre plus diversifi\u00e9s pour faire face aux al\u00e9as, maximiser les services \u00e9cosyst\u00e9miques\". Il n'y a plus qu'\u00e0 :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6995295508894220288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6995295509888299008,urn:li:activity:6995295509888299008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 194, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6995295509888299008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6995295509888299008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6995295509888299008", + "threadId": "activity:6995295509888299008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995295509888299008", + "urn": "urn:li:activity:6995295509888299008", + "numComments": 320, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6995295509888299008", + "reactionTypeCounts": [ + { + "count": 1800, + "reactionType": "LIKE" + }, + { + "count": 187, + "reactionType": "INTEREST" + }, + { + "count": 176, + "reactionType": "MAYBE" + }, + { + "count": 46, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "EMPATHY" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6995295509888299008", + "numLikes": 2246, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995295509888299008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2247, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6994982486191566848", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6994982486191566848)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6994982486191566848)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_aujourdhui-commence-la-cop-27-%C3%A0-charm-el-cheikh-activity-6994982486191566848-5yPd?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6994982484799037440", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6994982486191566848", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6994982484799037440", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "tIXIYmfwHdZU2c9hHDduSw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHyVFCilO5z7g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHyVFCilO5z7g", + "artifacts": [ + { + "width": 1530, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1667733782241?e=1679529600&v=beta&t=E76FRm9Gog9U9xAl9hvwLkEN4q4nGln5JAmo0TtQSMg", + "expiresAt": 1679529600000, + "height": 978 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1667733784190?e=1679529600&v=beta&t=VOWkEpgiTvYBGBugRdds3g0Aeby8hDcRFJphHtLwVB4", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1667733784190?e=1679529600&v=beta&t=HA2EVhpqJD87lljIQXa14UZWyNHm-GxsbpsW1DlW7s8", + "expiresAt": 1679529600000, + "height": 818 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1667733784190?e=1679529600&v=beta&t=sjOjBFsypelUKUIl5khRlgGMSh_i6JtW2JIBRlRWuQM", + "expiresAt": 1679529600000, + "height": 307 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1667733784190?e=1679529600&v=beta&t=PNWXm69zmjFs7ssCfPQRkZajU-OKUPgV9bLMCGG5K-s", + "expiresAt": 1679529600000, + "height": 102 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1667733784190?e=1679529600&v=beta&t=1SiZkvv8Dcw_dYgVNMF8TZuOVEFERA9RHtiq8qM5CVg", + "expiresAt": 1679529600000, + "height": 511 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHyVFCilO5z7g/feedshare-shrink_" + }, + "displayAspectRatio": 0.6392156862745098 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6994982484799037440,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Aujourd'hui commence la COP 27 \u00e0 Charm el-Cheikh, au bord de la Mer Rouge. Esp\u00e9rons que la proximit\u00e9 d'un d\u00e9sert et les 28 \u00e0 30 \u00b0C en novembre (https://bbc.in/3FNxQ6R ) permettront aux participant(e)s de se sentir plus concern\u00e9s que quand tout le monde est en doudoune !\n\nIl y sera question d'agir pour limiter le r\u00e9chauffement. Or, c'est physique, cela signifie se contraindre sur les \u00e9missions. De combien ? Cela d\u00e9pend de l'objectif !\n\nLe graphique ci-dessous donne les trajectoires d'\u00e9missions qui vont avec des r\u00e9chauffements donn\u00e9s en 2100. Tout en bas, le trait bleu ciel correspond \u00e0 1,5 \u00b0C et, et tout en haut la rouge fonc\u00e9e du haut \u00e0 4,5 \u00b0C. On trouvera en commentaire le graphique des \u00e9l\u00e9vations de temp\u00e9rature fait avec le m\u00eame code couleur.\n\nPour 1,5\u00b0C en 2100 on voit que les \u00e9missions doivent \u00eatre nulles en 2060, puis \"n\u00e9gatives\" : cela signifie que la totalit\u00e9 de l'\u00e9nergie utilis\u00e9e se d\u00e9carbone en 40 ans, et ensuite on arrive \u00e0 reprendre du CO2 depuis l'air via des pr\u00e9c\u00e9d\u00e9s technologiques d\u00e9ploy\u00e9s \u00e0 large \u00e9chelle. Pour \"moins de 2\u00b0C en 2100\" c'est pareil mais d\u00e9cal\u00e9 de 20 ans.\n\nAvec des \u00e9missions qui seraient surtout contraintes \u00e0 l'avenir par la disponibilit\u00e9 en \u00e9nergie fossile (pic p\u00e9trolier maintenant, pic gazier en 2030, pic charbonnier d'ici 2050) on est un peu en dessous de 3\u00b0C en 2100 (courbe orange).\n\nEnfin les deux courbes du haut signifient une \"\u00e9conomie fossile\" non limit\u00e9e - ni par l'\u00e9puisement des gisements d'hydrocarbures, ni par les cons\u00e9quences du changement climatique, ni par d'autres limites plan\u00e9taires - jusqu'en 2100.\n\nQuelques commentaires :\n\n- m\u00eame en diminuant les \u00e9missions mondiales de 7% par an d\u00e8s demain matin, la temp\u00e9rature continue d'augmenter d'environ 0,2 \u00b0C par d\u00e9cennie pour les 20 ans qui viennent. Cela est du \u00e0 l'inertie chimique du CO2 : tant que les \u00e9missions ne sont pas nulles la concentration de ce gaz dans l'air - et \u00e0 la suite la temp\u00e9rature - augmente.\n\n- comme je ne crois pas que l'on puisse compter sur la reprise du CO2 de l'atmosph\u00e8re \u00e0 l'\u00e9chelle imagin\u00e9e pour les sc\u00e9narios 1,5 \u00b0C et 2\u00b0C, sauf pand\u00e9mie ou chute de com\u00e8te on va se prendre 1,5\u00b0C de toute fa\u00e7on, et c'est presque pareil pour 2\u00b0C -> il faut penser massivement r\u00e9silience (et non juste \"adaptation\", terme qui suppose une absence d'inconv\u00e9nient si on s'y prend bien) d\u00e8s \u00e0 pr\u00e9sent\n\n- baisser les \u00e9missions de 5% par an c'est tr\u00e8s probablement baisser le PIB de 3 \u00e0 4% par an (https://bit.ly/3T2QevC ). J'ai quelques doutes sur le fait que ca puisse \u00eatre un objectif consensuel dans l'enceinte des Nations Unies (o\u00f9 tout se d\u00e9cide par consensus).\n\nCOP 27 ou pas, en Europe, la \"voiture balai\" de la baisse subie des combustibles fossiles est d\u00e9j\u00e0 en cours (et l'\u00e9tait avant Poutine !). Ca ne va pas arr\u00eater la d\u00e9rive climatique, mais ca nous force d\u00e9j\u00e0 \u00e0 conjuguer d\u00e9crue des moyens mat\u00e9riels \u00e0 notre disposition et accroissement des dommages climatiques. Il serait temps de se creuser la cervelle pour l'avenir avec le bon cahier des charges. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6994982484799037440,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6994982486191566848,urn:li:activity:6994982486191566848,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 81, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6994982486191566848,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6994982486191566848,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6994982486191566848", + "threadId": "activity:6994982486191566848", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994982486191566848", + "urn": "urn:li:activity:6994982486191566848", + "numComments": 206, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6994982486191566848", + "reactionTypeCounts": [ + { + "count": 2411, + "reactionType": "LIKE" + }, + { + "count": 337, + "reactionType": "INTEREST" + }, + { + "count": 180, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "APPRECIATION" + }, + { + "count": 28, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6994982486191566848", + "numLikes": 2997, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994982486191566848", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2998, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6994608569127968768", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6994608569127968768)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6994608569127968768)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_assurer-le-risque-climatique-laffaire-activity-6994608569127968768-I5uI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6994608568117174272", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6994608569127968768", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6994608568117174272", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "UYw6UofzWIJIpuwc4900vg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8973742835780954443", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676035233502?e=1677240000&v=beta&t=aoF78Vj7tIBuES_kZTi7d8egvBTZJBWuWTPfTLJzi5M", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676035233502?e=1677240000&v=beta&t=FUSlvnHm-OGfpjYxgpdvNeHxvLZfUVC8FJC9sb5PrLM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676035233502?e=1677240000&v=beta&t=wp8Q4reARiRcL4toRvnF1uBW_qFLzNoTYN-J-Z4pKkA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676035233502?e=1677240000&v=beta&t=lD0QDQ_ta9YHWInqf0vw0aBB_0dPLyLIDTtut8fi4bA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFIxxGc--M1BQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8973742835780954443)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8973742835780954443)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Assurer le risque climatique ? L'affaire du public et du priv\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/assurer-le-risque-climatique-laffaire-du-public-et-du-prive-1873039" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Assurer le risque climatique\u00a0? L'affaire du public et du priv\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6994608568117174272,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"Un monde \u00e0 4\u00b0C n'est pas assurable\" : on se souvient (ou pas !) de cette d\u00e9claration d'Henri de Castries (ex-patron d'Axa), pour rappeler qu'on ne pouvait compter sur les assureurs pour servir de filet de s\u00e9curit\u00e9 en cas de r\u00e9chauffement trop prononc\u00e9.\n\nDans une tribune r\u00e9cente parue dans Les Echos, le pr\u00e9sident du premier r\u00e9assureur fran\u00e7ais (SCOR) confirme que ceux qui sont \u00e0 risque dans cette histoire sont les assur\u00e9s et non les assureurs. Il a largement raison.\n\nTout d'abord, le changement climatique va surtout endommager des actifs naturels qui valent z\u00e9ro par convention dans l'\u00e9conomie, et ne peuvent \u00eatre ni assur\u00e9s, ni remis en \u00e9tat. La Mer de Glace, la pluviom\u00e9trie en France ou les coraux tropicaux ne peuvent pas \u00eatre remis en \u00e9tat si n\u00e9cessaire par une bonne police d'assurance ! Et dans ces cas de figure le risque est \u00e0 l'\u00e9vidence port\u00e9 par les humains qui b\u00e9n\u00e9ficient des services naturels, non par l'assureur.\n\nCe qui peut \u00e9ventuellement \u00eatre assur\u00e9 est le d\u00e9faut d'activit\u00e9 \u00e9conomique qui fait suite \u00e0 la disparition d'actifs naturels : si le Rhin baisse trop pour que les barges passent, l'industriel en bord de Rhin peut essayer de s'assurer pour les pertes d'exploitation qui en r\u00e9sultent. Mais ca ne fait pas revenir le Rhin.\n\nIl y a ensuite l'argument que l'assureur n'aimerait pas le risque. C'est tout le contraire : sans risque il n'y a pas besoin d'assurance. Le m\u00e9tier de l'assureur est, pour un risque donn\u00e9, de \"pr\u00e9voir\" l'ampleur des dommages possibles pour les assur\u00e9s, et de faire payer \u00e0 ces derniers le cout de son service pour le m\u00eame montant plus sa marge.\n\nQuand il y a un risque de devoir payer plus que les primes encaiss\u00e9es (alea trop volatil et pr\u00e9vision des dommages trop impr\u00e9cise, et/ou consentement \u00e0 payer de l'assur\u00e9 pas assez \u00e9lev\u00e9), alors l'assureur cesse de proposer ses services. Pour l'assureur, le risque est \"juste\" une diminution de son activit\u00e9 dans le segment consid\u00e9r\u00e9.\n\nPourquoi est-ce que cela ne semble pas chagriner plus que ca l'auteur de cette tribune qui rappelle ce fait ? Probablement parce que toutes les projections \u00e9conomiques \"voient\" de la croissance \u00e0 l'infini, climat ou pas (m\u00eame les sc\u00e9narios \"compatibles accord de Paris\" utilis\u00e9s pour les mod\u00e9lisations du GIEC postulent de la croissance \u00e9conomique ininterrompue jusqu'en 2100). \n\nLe secteur de l'assurance sait que son chiffre d'affaire est grosso modo proportionnel au PIB. La seule crainte que lui inspire la d\u00e9rive climatique est alors de devoir basculer sur d'autres types de risques, mais comme la solvabilit\u00e9 globale de ses clients est cens\u00e9e suivre la croissance, le climat est juste un motif d'arbitrage de son portefeuille de risques assur\u00e9s.\n\nEvidemment l'\u00e9quation change du tout au tout si la d\u00e9rive climatique peut contracter le PIB (et non juste le faire croitre moins vite). Pour avoir vraiment peur, les assureurs devront donc se convaincre que la d\u00e9rive climatique est susceptible d'engendrer une r\u00e9cession structurelle. Nous n'y sommes pas." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6994608568117174272,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6994608569127968768,urn:li:activity:6994608569127968768,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 77, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6994608569127968768,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6994608569127968768,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6994608569127968768", + "threadId": "activity:6994608569127968768", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994608569127968768", + "urn": "urn:li:activity:6994608569127968768", + "numComments": 100, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6994608569127968768", + "reactionTypeCounts": [ + { + "count": 1707, + "reactionType": "LIKE" + }, + { + "count": 274, + "reactionType": "MAYBE" + }, + { + "count": 266, + "reactionType": "INTEREST" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6994608569127968768", + "numLikes": 2281, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994608569127968768", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2282, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6994209415067279360", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6994209415067279360)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6994209415067279360)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-audition-%C3%A0-lassembl%C3%A9e-nationale-activity-6994209415067279360-fmrw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6994209414270320641", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6994209415067279360", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6994209414270320641", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "xoY7JQlVKoZ9HXRBw/fctg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8737146986113728955", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676509249480?e=1677240000&v=beta&t=aKmtczLLBoZuv7UPzf6ovQfl42lu_bFPT7baIrZMFT0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676509249480?e=1677240000&v=beta&t=6BUjz0YCLIRdhxQGF49S7Bejq55MJFJsPU5BjW05UVc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676509249480?e=1677240000&v=beta&t=JvgSAvHlBmAgSq1UBKkQf3MJItYxm9pMdwLB7NYdpro", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676509249480?e=1677240000&v=beta&t=OTlidCxsswX5D-rOQHjefiBOVEo7uqO-A8yjKXudoRo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGW7zT2IOjyIg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8737146986113728955)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8737146986113728955)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici : Audition \u00e0 l'Assembl\u00e9e nationale - 02/11/2022 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=oweVFXFFh04" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Audition de Jean-Marc Jancovici, membre du Haut Conseil pour le climat, par la commission d'enqu\u00eate de l'Assembl\u00e9e Nationale visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France ( infos sur cette..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici : Audition \u00e0 l'Assembl\u00e9e nationale - 02/11/2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6994209414270320641,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Assembl\u00e9e Nationale vient de cr\u00e9er une \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\" (https://bit.ly/3FJnu81 ). Les commissions d'enqu\u00eate du Parlement sont des instances qui servent \u00e0 contr\u00f4ler l'action du gouvernement (https://bit.ly/3E0VxaA ). \n\nElles ont des pouvoirs d'investigation \u00e9tendus : une personne convoqu\u00e9e par une commission d'enqu\u00eate ne peut refuser d'y aller sous peine de sanctions p\u00e9nales, et la Commission peut se faire communiquer tout document qu'elle juge utile (sauf ce qui est couvert par le secret d\u00e9fense ou assimil\u00e9) pour mener ses travaux.\n\nLa possibilit\u00e9 de cr\u00e9er une commission d'enqu\u00eate fait partie des pr\u00e9rogatives des groupes politiques \u00e0 l'Assembl\u00e9e, et ces commissions d'enqu\u00eate s'inscrivent \u00e9videmment dans le jeu politique o\u00f9 un groupe de l'opposition va pr\u00e9f\u00e9rentiellement choisir un sujet qui \"agace\" le pouvoir en place.\n\nLa commission pour laquelle j'ai \u00e9t\u00e9 convoqu\u00e9 a \u00e9t\u00e9 cr\u00e9\u00e9e par les R\u00e9publicains, et je parierais volontiers qu'elle veut pouvoir conclure que Hollande et Macron (voire avant) ont fait \"n'importe quoi\" en mati\u00e8re de politique \u00e9lectrique. Cela \u00e9tant, mon audition n'a que peu port\u00e9 sur l'\u00e9valuation des politiques publiques men\u00e9es ces 10 ou 20 derni\u00e8res ann\u00e9es. \n\n\"On\" m'a surtout pos\u00e9 des questions sur les avantages et inconv\u00e9nients de tel ou tel type d'\u00e9nergie, sans oublier de parler de sobri\u00e9t\u00e9 ou de d\u00e9pendance - et sur quoi - de notre pays \u00e0 des approvisionnements \u00e9trangers. Car, de fait, depuis la fin de l'\u00e8re renouvelable, notre pays est d\u00e9pendant de pays producteurs d'hydrocarbures ou de minerais, et le restera demain.\n\nDepuis la mise en ligne de cette vid\u00e9o, des extraits de 10 secondes (!) ou 2 minutes ont commenc\u00e9 \u00e0 circuler, avec comme commentaire \"voici ce que pense Jancovici\". Mais... dans une vid\u00e9o de plus de 2 heures, chacun pourra trouver un court extrait qui lui plait plus particuli\u00e8rement et cens\u00e9 r\u00e9sumer ma pens\u00e9e !\n\nToutes les \u00e9nergies ont des avantages, toutes ont des inconv\u00e9nients, et dans cette audition j'ai du \u00e9voquer les avantages de toutes les \u00e9nergies potentiellement disponibles. Avec un bon logiciel de montage on peut donc me pr\u00e9senter comme \u00e9tant favorable \u00e0... n'importe laquelle de nos \u00e9nergies !\n\nBien \u00e9videmment, il est impossible de r\u00e9sumer en quelques minutes la totalit\u00e9 de ce qu'il faut comprendre pour se faire une opinion sur la question. Un r\u00e9sum\u00e9 est toujours un exercice imparfait (h\u00e9las) et il faut du temps (h\u00e9las \u00e0 nouveau) pour suffisamment faire le tour de la question pour avoir une conclusion \u00e9tay\u00e9e.\n\nIl y a 10 ans j'avais \u00e9t\u00e9 auditionn\u00e9 par une autre commission d'enqu\u00eate (sur le \"cout r\u00e9el de l'\u00e9lectricit\u00e9\" : https://bit.ly/3NBhxMr ). Selon que l'on aime les verres \u00e0 moiti\u00e9 vides ou \u00e0 moiti\u00e9 pleins, on pourra se r\u00e9jouir que les questions soient moins na\u00efves et brossent plus large, ou que certains faits \"\u00e9l\u00e9mentaires\" fassent toujours l'objet d'un dialogue de sourds." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6994209414270320641,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6994209415067279360,urn:li:activity:6994209415067279360,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 183, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6994209415067279360,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6994209415067279360,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6994209415067279360", + "threadId": "activity:6994209415067279360", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994209415067279360", + "urn": "urn:li:activity:6994209415067279360", + "numComments": 355, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6994209415067279360", + "reactionTypeCounts": [ + { + "count": 3673, + "reactionType": "LIKE" + }, + { + "count": 329, + "reactionType": "INTEREST" + }, + { + "count": 273, + "reactionType": "PRAISE" + }, + { + "count": 167, + "reactionType": "MAYBE" + }, + { + "count": 66, + "reactionType": "APPRECIATION" + }, + { + "count": 43, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6994209415067279360", + "numLikes": 4551, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994209415067279360", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4554, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "b4SOPedqT8Cj/v+xhS5Ruw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6993985139571580929", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6993985139571580929)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6993985139571580929)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_frank-elderson-membre-du-comit%C3%A9-ex%C3%A9cutif-activity-6993985139571580929-zGjJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6993985138636259329", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6993985139571580929", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6993985138636259329", + "excludedFromSeen": false, + "trackingData": { + "requestId": "8598921a-a834-4dfe-8993-755fd6b9be02", + "trackingId": "6KKyzWeyiKat/vZsLpzFIg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHwjgrhmtYhIA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHwjgrhmtYhIA", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1667495998379?e=1679529600&v=beta&t=H8y6XUiphaldLUGsn1SElCY1EozWTNlrcZZXgXvBqrk", + "expiresAt": 1679529600000, + "height": 804 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1667495998664?e=1679529600&v=beta&t=b-bHORho5AWUogMaE4E8EjOLaF7lKaypdvGa3gkJnEc", + "expiresAt": 1679529600000, + "height": 8 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1667495998664?e=1679529600&v=beta&t=J1qrsyh2nQhK71CK1F2sEXdBmnIir91WTt0s2Z7Ltrc", + "expiresAt": 1679529600000, + "height": 502 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1667495998664?e=1679529600&v=beta&t=OlKSlrfk_tdZBua0_g6opDtsrOVEKCnJ_ESJqKKgRR0", + "expiresAt": 1679529600000, + "height": 188 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1667495998664?e=1679529600&v=beta&t=vfkF5jP5xM35Dm90QSaPHekdHzPVv6SsaNfMEfqSzWs", + "expiresAt": 1679529600000, + "height": 63 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1667495998664?e=1679529600&v=beta&t=b86bgqoVhBjrcKsC_F5YZwRCAUT8F1bSaiZuXU90kGE", + "expiresAt": 1679529600000, + "height": 314 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHwjgrhmtYhIA/feedshare-shrink_" + }, + "displayAspectRatio": 0.392578125 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, text, application" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6993985138636259329,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Frank Elderson, membre du comit\u00e9 ex\u00e9cutif de la Banque Centrale Europ\u00e9enne, utilise le blog de la BCE pour dire aux banques de la zone euro qu'elles ne tiennent pas assez compte des sujets climatiques et environnementaux dans la conduite de leurs affaires \"ordinaires\" : https://bit.ly/3NunD0U . Sa conclusion repose sur l'examen de 186 banques supervis\u00e9es par la BCE, avec un total de bilan cumul\u00e9 de 25.000 milliards d'euros.\n\nL'auteur consid\u00e8re que les banques ne sont pas encore \"en mesure d'identifier, d'\u00e9valuer, de contr\u00f4ler et d'att\u00e9nuer les risques in\u00e9vitables d\u00e9coulant des crises climatiques et environnementales\". Plus pr\u00e9cis\u00e9ment, trois points sont l'objet de faiblesses importantes :\n\n- la m\u00e9thode : 96% des banques audit\u00e9es ne savent pas identifier correctement les risques li\u00e9s au climat et \u00e0 l'environnement dans leurs actifs. En particulier, elles ne collectent pas de donn\u00e9es granulaires sur les contreparties et les actifs qui permettraient de faire des analyses fines sur les risques. Le dirigeant de la BCE fait aussi remarquer que le concept de \"net zero en 2050\" est souvent avanc\u00e9 sans d\u00e9finition claire de ce que cela recouvre, et sans d\u00e9finition d'objectifs interm\u00e9diaires indispensables pour l'action.\n\n- un \u00e9cart entre discours et actes : alors que les documents de r\u00e9f\u00e9rence des banques \u00e9voquent abondamment le climat, dans la pratique les sources de revenus des banques sont aujourd'hui \u00e0 peu pr\u00e8s les m\u00eames \"qu'avant\". Lorsque des initiatives sont prises pour les clients les plus \"intensifs en carbone\", il n'est pas expliqu\u00e9 en quoi cela pr\u00e9figure une action plus syst\u00e9mique pour rendre la banque globalement compatible avec une \u00e9conomie qui se d\u00e9carbone rapidement\n\n- enfin des politiques annonc\u00e9es mais non mises en oeuvre en pratique, y compris en ignorant des avertissements d'experts internes dans un certain nombre de cas.\n\nLes bons points - car il y en a quand m\u00eame - vont aux banques qui int\u00e8grent les risques physiques et de transition dans la couverture en capital de leurs engagements en fonction des \"caract\u00e9ristiques climat\" de ces derniers.\n\nDans les recommandations du r\u00e9gulateur, il y a notamment :\n- l'utilisation d'outils pour planifier la transition, avec la fixation d'objectifs interm\u00e9diaires. \n- la collecte large d'informations, pour calculer des risques de mani\u00e8re granulaire\n- l'int\u00e9gration des risques de transition et physique de long terme dans l'\u00e9valuation des besoins en capitaux (argh ! le mot qui f\u00e2che une banque est l\u00e2ch\u00e9 :) ).\n- la gestion des risques li\u00e9s \u00e0 la perte de biodiversit\u00e9\n\nL'article se termine en disant que, en 2024, toutes les banques devront \u00eatre \"align\u00e9es avec les les exigences du r\u00e9gulateur\". L'auteur ne dit pas ce que la BCE fera si cet objectif n'est pas atteint, mais la mani\u00e8re classique de g\u00e9rer un risque consid\u00e9r\u00e9 comme \u00e9lev\u00e9 dans le monde bancaire est d'exiger une couverture \u00e9lev\u00e9e en fonds propre pour les engagements concern\u00e9s. La question est pos\u00e9e de savoir si c'est cela que la BCE a en t\u00eate." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6993985138636259329,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6993985139571580929,urn:li:activity:6993985139571580929,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6993985139571580929,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6993985139571580929,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6993985139571580929", + "threadId": "activity:6993985139571580929", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6993985139571580929", + "urn": "urn:li:activity:6993985139571580929", + "numComments": 37, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6993985139571580929", + "reactionTypeCounts": [ + { + "count": 524, + "reactionType": "LIKE" + }, + { + "count": 80, + "reactionType": "INTEREST" + }, + { + "count": 66, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6993985139571580929", + "numLikes": 679, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6993985139571580929", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 679, + "links": [] + }, + "elements": [] + } + } + } +] \ No newline at end of file diff --git a/out_posts_2.json b/out_posts_2.json new file mode 100644 index 0000000..949382c --- /dev/null +++ b/out_posts_2.json @@ -0,0 +1,48108 @@ +[ + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "12h \u2022 ", + "accessibilityText": "12 hours ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7032115801016938496", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7032115801016938496)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7032115801016938496)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-recrute-une-cheffe-de-projet-agriculture-activity-7032115801016938496-lQSy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7032115800496848896", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7032115801016938496", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7032115800496848896", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "hVy33yYycOJpCGxlJEyiQA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7508397560141145240", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676589776974?e=1677240000&v=beta&t=AUF_ALjzwld6RGorfZVpCNvAqsPm2sYkT6ZIIlartnM", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676589776974?e=1677240000&v=beta&t=imfhXK_jGt5qNv_MGqkHFYJ0lJGSuuNzqtBM2hmTZFI", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676589776974?e=1677240000&v=beta&t=-juGnXkSoa6rtMN47WjvlGm0ooKIowR69ciK3ZtSvCM", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676589776974?e=1677240000&v=beta&t=pQLZePdjbvWEqd5yoQS7e3m99jF29QQkP3BXUCANBS8", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQENdzDIiQ--jA/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7508397560141145240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7508397560141145240)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift recrute un.e Chef.fe de projet Agriculture ! [CDD 18 mois] by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/offre-emploi-chef-projet-agriculture/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift recrute un.e Chef.fe de projet Agriculture ! [CDD 18 mois]" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7032115800496848896,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce n'\u00e9tait pas le secteur le plus travaill\u00e9 dans le Plan de Transformation de l'Economie Fran\u00e7aise, et donc le Shift Project a d\u00e9cid\u00e9 d'y revenir. Car la production et cuisson de nos aliments, en incluant les \u00e9missions industrielles amont (fabrication des engrais, des intrants en g\u00e9n\u00e9ral, et des machines agricoles), les \u00e9missions dans les exploitations, et celles \u00e0 l'aval (industries agro-alimentaires, transports, emballages, d\u00e9placements des consommateurs pour faire les courses, cuisson, etc) c'est un tiers des \u00e9missions mondiales, et pas loin du m\u00eame pourcentage en France.\n\nIl semble donc difficile de dire que nous allons devenir \"neutres\", ce qui suppose de supprimer la quasi-totali\u00e9 de nos \u00e9missions actuelles, sans s'occuper s\u00e9rieusement de ce secteur. C'est pour cela que The Shift Project se cherche le mouton ou la brebis \u00e0 5 pattes (c'est de circonstance) pour piloter la r\u00e9flexion \u00e0 venir sur la bonne mani\u00e8re de d\u00e9carboner notre assiette.\n\nSi faire un petit tour par les locaux de cette association vous tente, \u00e0 vos CV ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7032115800496848896,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7032115801016938496,urn:li:activity:7032115801016938496,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7032115801016938496,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7032115801016938496,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7032115801016938496", + "threadId": "activity:7032115801016938496", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7032115801016938496", + "urn": "urn:li:activity:7032115801016938496", + "numComments": 35, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7032115801016938496", + "reactionTypeCounts": [ + { + "count": 265, + "reactionType": "LIKE" + }, + { + "count": 9, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7032115801016938496", + "numLikes": 286, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7032115801016938496", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 286, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1d \u2022 ", + "accessibilityText": "1 day ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7031764966638559232", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7031764966638559232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7031764966638559232)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_b8-d%C3%A9pendance-%C3%A9nerg%C3%A9tique-du-secteur-de-activity-7031764966638559232-jEQv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7031764966009376769", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7031764966638559232", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7031764966009376769", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "dYc8A9QaJOpOQwMPTMtp8w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7201673045911734909", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676576622421?e=1677240000&v=beta&t=5TXO_S0Ag1DjFHUS1SWl74oRn-PON6N7bnQrD5dI-xg", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676576622421?e=1677240000&v=beta&t=iRzT-Wg_IPxva_zCTD7yDKeZb0js1vNqJA7RHEAa33U", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676576622421?e=1677240000&v=beta&t=IFJgDBKj5RSGrKiYAY6RH7xOgTU5upPDrhQ4JKy7fgQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676576622421?e=1677240000&v=beta&t=J4yj3jU3KJFjhxqK_ZMAF6WaQgHscZNRFYpMfgBZszo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQEZhL5YyD4zww/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7201673045911734909)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7201673045911734909)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: B8- D\u00e9pendance \u00e9nerg\u00e9tique du secteur de la sant\u00e9 [Jean-Marc Jancovici] on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=LSe5XItXVtE" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "* Module de formation de M\u00e9decine et Sant\u00e9 Environnementale produit par la Conf\u00e9rence des Doyens des Facult\u00e9s de M\u00e9decine de France * \ud83c\udfe5 Le syst\u00e8me de la sant\u00e9 pourrait-il fonctionner dans un \u00e9tat de contraction \u00e9nerg\u00e9tique ? #h\u00f4pital #\u00e9nergie #sant\u00e9..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "B8- D\u00e9pendance \u00e9nerg\u00e9tique du secteur de la sant\u00e9 [Jean-Marc Jancovici]" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7031764966009376769,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s les ing\u00e9nieurs et les gestionnaires, c'est au tour des futurs m\u00e9decins de se faire former aux enjeux climatiques et environnementaux.\n\nD'ici \u00e0 septembre 2023, toutes les facult\u00e9s de m\u00e9decine de France vont inclure dans leur enseignement un module intitul\u00e9 \"m\u00e9decine et sant\u00e9 environnementale\" pour fournir des bases sur les enjeux, mais aussi sur la mani\u00e8re de les aborder. \n\nCe module est essentiellement constitu\u00e9 de vid\u00e9os dont la liste est accessible l\u00e0 : https://lnkd.in/dhmUtKmy\n\nMa \"partition\" dans cet ensemble consiste \u00e0 exposer l'apport de l'\u00e9nergie - c'est \u00e0 dire de notre costume d'Ironman - \u00e0 l'augmentation de l'esp\u00e9rance de vie, au travers de l'alimentation, de la prophylaxie, de la fabrication des vaccins et m\u00e9dicaments, et plus r\u00e9cemment au fonctionnement de l'h\u00f4pital moderne. \n\nLe grand paradoxe, dans la sant\u00e9, est que l'\u00e9mergence des combustibles fossiles a globalement fortement allong\u00e9 la dur\u00e9e de vie... tout en faisant na\u00eetre une menace croissante sur le maintien de cette dur\u00e9e \u00e0 l'avenir.\n\nCette courte vid\u00e9o ne d\u00e9taille pas du tout les futurs impacts possibles du changement climatique sur la sant\u00e9. Elle porte uniquement sur le pass\u00e9, pour faire comprendre en quoi l'\u00e9nergie a jou\u00e9 un r\u00f4le central dans le fait que l'esp\u00e9rance de vie (en fait l'\u00e2ge moyen du d\u00e9c\u00e8s) soit pass\u00e9e d'un peu moins de 30 ans en 1800 \u00e0 environ 80 aujourd'hui.\n\nComment ne pas retourner \u00e0 30 ans dans un monde sobre en \u00e9nergie ? C'est \u00e0 ce d\u00e9fi que devront participer les m\u00e9decins - et les autres professionnels de la sant\u00e9 - \u00e0 l'avenir. Esp\u00e9rons que ce module leur donnera des cl\u00e9s de lecture utiles !\n\nNB : en farfouillant dans la liste vous y trouverez quelques \"usual suspects\" (Bourg, Bihouix, Keller, Gouyon, Selosse, Auzanneau...) sur des formats assez courts : il n'y a plus qu'\u00e0 d\u00e9guster !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7031764966009376769,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7031764966638559232,urn:li:activity:7031764966638559232,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7031764966638559232,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7031764966638559232,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7031764966638559232", + "threadId": "activity:7031764966638559232", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031764966638559232", + "urn": "urn:li:activity:7031764966638559232", + "numComments": 59, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7031764966638559232", + "reactionTypeCounts": [ + { + "count": 661, + "reactionType": "LIKE" + }, + { + "count": 107, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "EMPATHY" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7031764966638559232", + "numLikes": 808, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031764966638559232", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 808, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3d \u2022 ", + "accessibilityText": "3 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7031166740847837185", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7031166740847837185)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7031166740847837185)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-s%C3%A9cheresse-pointe-sous-lanticyclone-activity-7031166740847837185-sdcK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7031166740042506240", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7031166740847837185", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7031166740042506240", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "yFLHxmSwmYKZdEDX5URQjg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8489194875064209322", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 700, + "fileIdentifyingUrlPathSegment": "800/0/1676581927584?e=1677240000&v=beta&t=hkKeAPDPF3hZ_waK9ol9aw-MtY-l0TrorQ33zl-gvTM", + "expiresAt": 1677240000000, + "height": 542 + }, + { + "width": 700, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676581927584?e=1677240000&v=beta&t=o3HJZu5CZ1vGIepW9RBTE1MmvB1jyAKDviWVbF6WMeI", + "expiresAt": 1677240000000, + "height": 542 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676581927585?e=1677240000&v=beta&t=lXH5zNdwoT9u2a3zQqsmJ9i-uxuhD9QhBtJRQhrjZ-M", + "expiresAt": 1677240000000, + "height": 124 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676581927585?e=1677240000&v=beta&t=BJ3LuL7w-kXzMF2z7Z0AwSWd5nfjQf-pgwkvx2tcm9I", + "expiresAt": 1677240000000, + "height": 372 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEwLB0r1VF0JQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.7742857142857142 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Pression r\u00e9duite au niveau de la mer moyenne du 21 janvier au 7 f\u00e9vrier" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8489194875064209322)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8489194875064209322)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "meteofrance.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La s\u00e9cheresse pointe sous l'anticyclone by meteofrance.com", + "actionTarget": "https://meteofrance.com/actualites-et-dossiers-0/la-secheresse-pointe-sous-lanticyclone" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La s\u00e9cheresse pointe sous l'anticyclone" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7031166740042506240,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il va falloir r\u00e9viser le sens des mots en mati\u00e8re de m\u00e9t\u00e9o. Quand on \u00e9coute le bulletin, \"il fait beau\", utilise un adjectif qui est g\u00e9n\u00e9ralement associ\u00e9 \u00e0 quelque chose de positif : il est assez rare que l'on emploie \"beau\" pour une situation dont on ne voudrait pas !\n\nMalheureusement, \"il fait beau\", en hiver (et m\u00eame en \u00e9t\u00e9 !), peut d\u00e9sormais \u00eatre associ\u00e9 \u00e0 un certain nombre d'inconv\u00e9nients dont on se passerait bien.\n\nTout d'abord, s'il \"fait beau\" c'est qu'il ne pleut pas. Notre pays s'appr\u00eate \u00e0 battre un record de dur\u00e9e de jours secs en hiver, avec plus de 3 semaines cons\u00e9cutives \u00e0 moins de 1 mm de pluie par jour sur le pays : https://bit.ly/3RZ2pdK\n\nCette s\u00e9cheresse hivernale survient alors que les nappes phr\u00e9atiques, au 1er janvier, \u00e9taient toujours \u00e0 un niveau bien trop bas sur une large partie du pays : https://bit.ly/3E7IALE (\"Plus des trois-quarts des nappes demeurent sous les normales mensuelles. Les niveaux sont nettement inf\u00e9rieurs \u00e0 ceux de d\u00e9cembre 2021\"). Rappelons que la recharge des nappes l'hiver c'est le confort - voire la survie - de la v\u00e9g\u00e9tation l'\u00e9t\u00e9.\n\nQuand \"il fait beau\", c'est g\u00e9n\u00e9ralement que nous sommes en conditions anticycloniques, avec peu de vent, et donc la production \u00e9olienne est faible, ce qui est effectivement le cas en France en moyenne sur les derni\u00e8res semaines : https://bit.ly/3lttNod \n\nLa carte des contenus carbone des pays europ\u00e9ens \u00e0 l'instant o\u00f9 je tape ce post refl\u00e8te cette faiblesse, avec des moyens fossiles qui sont utilis\u00e9s de mani\u00e8re significative : https://lnkd.in/eRvA7w-a Deuxi\u00e8me cons\u00e9quence de \"il fait beau\", donc : les \u00e9missions de CO2 augmentent, ainsi que les \u00e9missions de polluants associ\u00e9s \u00e0 la production \u00e9lectrique fossile (oxydes d'azote et particules fines).\n\nQuand \"il fait beau\" en hiver, avec un ciel d\u00e9gag\u00e9, il fait g\u00e9n\u00e9ralement aussi froid. Cela augmente d'autant la consommation \u00e9lectrique - une deuxi\u00e8me raison d'avoir des centrales \u00e0 charbon qui fonctionnent plus - ainsi que le chauffage fossile ou au bois, qui \u00e9mettent aussi des polluants. Avec l'air qui circule peu (puisqu'il y a un anticyclone), et les autres sources de particules (agriculture et transports), on se retrouve avec un \u00e9pisode de pollution aux particules fines un peu prononc\u00e9 : http://www2.prevair.org/ (choisir \"Europe\" et \"PM 2.5\" dans les menus d\u00e9roulants pour avoir une vue d'ensemble de l'Europe pour les particules les plus dangereuses). Les parisiens peuvent jeter un coup d'oeil \u00e0 https://airparif.asso.fr/ \n\nR\u00e9sumons : \"Il fait beau\" signifie donc une v\u00e9g\u00e9tation qui va souffrir l'\u00e9t\u00e9 prochain, une pollution (qui tue) et des \u00e9missions de CO2 en hausse. Si ces cons\u00e9quences \u00e9taient rappel\u00e9es \u00e0 chaque bulletin m\u00e9t\u00e9o, peut-\u00eatre que cela nous motiverait un peu plus \u00e0 d\u00e9carboner rapidement notre \u00e9conomie, et \u00e0 commencer \u00e0 nous exciter un peu plus s\u00e9rieusement sur la pr\u00e9paration au mieux \u00e0 un climat qui va devenir plus hostile pour tout ce qui pousse.\n\nC'\u00e9taient les bonnes nouvelles du jour :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7031166740042506240,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7031166740847837185,urn:li:activity:7031166740847837185,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 294, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7031166740847837185,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7031166740847837185,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7031166740847837185", + "threadId": "activity:7031166740847837185", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031166740847837185", + "urn": "urn:li:activity:7031166740847837185", + "numComments": 437, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7031166740847837185", + "reactionTypeCounts": [ + { + "count": 7372, + "reactionType": "LIKE" + }, + { + "count": 1640, + "reactionType": "INTEREST" + }, + { + "count": 378, + "reactionType": "APPRECIATION" + }, + { + "count": 247, + "reactionType": "PRAISE" + }, + { + "count": 42, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7031166740847837185", + "numLikes": 9713, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031166740847837185", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 9729, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3d \u2022 ", + "accessibilityText": "3 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7030856557022072832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030856557022072832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030856557022072832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_biodiversit%C3%A9-ni-lampleur-ni-la-rapidit%C3%A9-activity-7030856557022072832-3dG6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7030856556048973824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7030856557022072832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7030856556048973824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "RUycpewekMPfZgKU5WYsjw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8887778663049763473", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676616168242?e=1677240000&v=beta&t=30OSGvxwUAC2aVVVpTkCkzWWzoCjnDdu6Cghb7AIOaw", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676616168242?e=1677240000&v=beta&t=UKxp1GGnhnRlJE_fxAIUH7z54q4r3WNjGn4ATx0IHvE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676616168242?e=1677240000&v=beta&t=aikSswvbL8W1dm1x0AEhEx0xHZE9qBFe87c_qfRNiwA", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676616168242?e=1677240000&v=beta&t=nR77RBG9xsy77ILzA15sTImI8zWJXQyQexxLB17u00A", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQEX5Bg_2Ik79Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8887778663049763473)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8887778663049763473)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Biodiversit\u00e9 : \u00ab Ni l\u2019ampleur, ni la rapidit\u00e9, ni le caract\u00e8re syst\u00e9mique de l\u2019\u00e9croulement des insectes n\u2019ont \u00e9t\u00e9 anticip\u00e9s par les scientifiques \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/idees/article/2023/02/12/biodiversite-ni-l-ampleur-ni-la-rapidite-ni-le-caractere-systemique-de-l-ecroulement-des-insectes-n-ont-ete-anticipes-par-les-scientifiques_6161496_3232.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Biodiversit\u00e9\u00a0: \u00ab\u00a0Ni l\u2019ampleur, ni la rapidit\u00e9, ni le caract\u00e8re syst\u00e9mique de l\u2019\u00e9croulement des insectes n\u2019ont \u00e9t\u00e9 anticip\u00e9s par les scientifiques\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7030856556048973824,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 512, + "length": 16, + "miniProfile": { + "firstName": "Stephane", + "lastName": "Foucart", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAABv2IoBn0BOirWMxsoYYR5uscV_zSBgOsQ", + "occupation": "Science correspondent at Le Monde", + "objectUrn": "urn:li:member:7329930", + "entityUrn": "urn:li:fs_miniProfile:ACoAAABv2IoBn0BOirWMxsoYYR5uscV_zSBgOsQ", + "publicIdentifier": "stephane-foucart-a365552", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1671650011916?e=1681948800&v=beta&t=sfTLd37tuMTn6GnoUXgIh3p8Kd1Q8nGH6Jb0NOsYVik", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1671650011916?e=1681948800&v=beta&t=294ugk_qvRG2tyRBFSIp_x6b10jnkKoB_E77n3IvYjU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1671650011916?e=1681948800&v=beta&t=6mVeDPnhS5EiphvG29TceeHVP10ornsRqKhxz_rOQNI", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1671650011916?e=1681948800&v=beta&t=dwsqw7IVhyIFy4qgvPS_VaLwq93SG6umZhm1YhiVNBc", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQGHs1C_06t5hA/profile-displayphoto-shrink_" + } + }, + "trackingId": "9JH8/7t5SiuOeMEximrcsw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Ils p\u00e8seraient environ 1 milliard de tonnes, soit autant que la masse combin\u00e9e des humains et de leurs animaux d'\u00e9levage. Qui ? Les arthropodes terrestres, que nous appelons plus commun\u00e9ment les insectes : https://bit.ly/3XpnsYk (car les araign\u00e9es et les mille-pattes ne sont pas des insectes, ces derniers ayant 6 pattes).\n\nPourtant, leurs effectifs sont en baisse rapide. Ils le sont chez nous, mais aussi \"ailleurs\", comme par exemple en Asie : https://bit.ly/3Xto9j4\n\nDans cette tribune parue dans Le Monde, Stephane Foucart, journaliste sciences, rappelle une fois de plus cet effondrement en cours, tout en soulignant que, \u00e0 la diff\u00e9rence du climat, nous n'avons pas de \"ph\u00e9nom\u00e8ne extr\u00eame\" qui survienne de temps \u00e0 autres pour nous r\u00e9veiller un peu (ce qui, m\u00eame pour le climat, est h\u00e9las peu impactant, puisqu'aucun ouragan ou aucune s\u00e9cheresse n'a pour le moment conduit \u00e0 une baisse des \u00e9missions mondiales).\n\nLa cause de cette baisse est connue : ce sont les substances que nous introduisons dans l'environnement pr\u00e9cis\u00e9ment pour supprimer ces bestioles rampantes ou volantes. Depuis les d\u00e9buts de l'agriculture, notre esp\u00e8ce fait tout ce qu'elle a pu pour partager le moins possible le r\u00e9sultat de cette activit\u00e9 avec d'autres esp\u00e8ces.\n\nNous ne souhaitons pas que le champ pr\u00e9vu pour accueillir du bl\u00e9 ou des poireaux accueille aussi des \"mauvaises herbes\", qui captent une partie des nutriments et du soleil : c'est la raison de l'usage des herbicides, qui sont les premiers pesticides utilis\u00e9s en tonnage en France. \n\nNous ne souhaitons pas que les \u00e9pis de ma\u00efs ou les cerises soient partag\u00e9s avec des papillons ou des mouches : c'est la raison de l'usage des insecticides qui permettent d'avoir le produit des cultures \"rien que pour nous\". \n\nLa cons\u00e9quence n'est pas une surprise : les effectifs de ces insectes diminuent. La solution semble donc \u00e9vidente, et sa contrepartie aussi : pour pr\u00e9server les insectes, il faut utiliser moins d'insecticides... et accepter alors de laisser une petite partie de ce que nous cultivons \u00e0 ces animaux, qui serviront eux-m\u00eames de nourriture aux oiseaux et \u00e0 d'autres esp\u00e8ces animales. \n\nCela fera fatalement baisser les rendements agricoles, et donc monter le prix de la nourriture. La bonne question est de savoir si nous \u00e9chapperons de toute fa\u00e7on \u00e0 une hausse de prix pour ce que nous mangeons. Car, sans insectes pollinisateurs, il y aura des baisses de rendement pour un certain nombre de productions, et sans insectes tout court probablement des \"surprises\" pour certains services \u00e9cosyst\u00e9miques dont nous b\u00e9n\u00e9ficions aujourd'hui.\n\nIl est \u00e0 craindre que, pour la biodiversit\u00e9 plus encore que pour le climat, il n'y ait pas d'action \u00e0 large \u00e9chelle tant que nous ne serons pas \"atteints dans notre chair\", avec au surplus la capacit\u00e9 \u00e0 faire le lien entre ce qui nous arrive et la v\u00e9ritable cause. Pour la biodiversit\u00e9 comme pour le climat, un de nos adversaires les plus redoutables est le sentiment que nous avons encore bien le temps." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030856556048973824,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030856557022072832,urn:li:activity:7030856557022072832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 119, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030856557022072832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030856557022072832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7030856557022072832", + "threadId": "activity:7030856557022072832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030856557022072832", + "urn": "urn:li:activity:7030856557022072832", + "numComments": 264, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030856557022072832", + "reactionTypeCounts": [ + { + "count": 3756, + "reactionType": "LIKE" + }, + { + "count": 607, + "reactionType": "INTEREST" + }, + { + "count": 334, + "reactionType": "APPRECIATION" + }, + { + "count": 68, + "reactionType": "PRAISE" + }, + { + "count": 32, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030856557022072832", + "numLikes": 4807, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030856557022072832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4808, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4d \u2022 ", + "accessibilityText": "4 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7030653289532661760", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030653289532661760)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030653289532661760)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_souverainet%C3%A9-et-ind%C3%A9pendance-%C3%A9nerg%C3%A9tique-activity-7030653289532661760-omeJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7030653288962252800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7030653289532661760", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7030653288962252800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "XTgkn/i4bPO5KQVvVH3xsQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:6974363340135969765", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676239082694?e=1677240000&v=beta&t=7HrNYzrmbVTOVl6n6WyGxdqbFLHhwFnda_kFTlalVWk", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676239082694?e=1677240000&v=beta&t=5qq5g4E2fSzkZ8NtHGk588grxIkkqCMacxjWkMpsMb8", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676239082694?e=1677240000&v=beta&t=ymNJHi36buX2txOd83yeD1Bj0t8l8DeULnFoh03nKog", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676239082694?e=1677240000&v=beta&t=g3HH3q2STSeA5DOvGGbRiWOVj1Be_K0Gf2x8iVBWUWY", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQERtm7gKRZcgQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5612499999999999 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6974363340135969765)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6974363340135969765)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "videos.assemblee-nationale.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et M. Olivier Gupta, Directeur g\u00e9n\u00e9ral - Mardi 24 janvier 2023 on videos.assemblee-nationale.fr", + "actionTarget": "https://videos.assemblee-nationale.fr/video.12773673_63cff1a1b41bb.souverainete-et-independance-energetique-de-la-france--m-bernard-doroszczuk-president-de-l-autori-24-janvier-2023" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "- \u00c0 16 heures : - Audition, ouverte \u00e0 la presse, de MM. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et Olivier Gupta, Directeur g\u00e9n\u00e9ral" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et M. Olivier Gupta, Directeur g\u00e9n\u00e9ral - Mardi 24 janvier 2023" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7030653288962252800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A quoi sert l'Autorit\u00e9 de S\u00fbret\u00e9 Nucl\u00e9aire ? Si vous vous \u00eates pos\u00e9 la question un jour, cette vid\u00e9o est faite pour vous. Il s'agit de l'audition du patron de l'ASN dans le cadre des auditions de la \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\".\n\nEn 3 heures de temps, sont pass\u00e9s en revue le mandat et le fonctionnement de cette instance, ses moyens, et l'articulation avec d'autres organismes impliqu\u00e9s dans la s\u00fbret\u00e9 nucl\u00e9aire (comme l'IRSN, qui vient par ailleurs de faire l'objet d'une annonce inattendue de rattachement partiel \u00e0 l'ASN apr\u00e8s cette audition : https://lnkd.in/eQV9WjJU).\n\nEn 3 heures, il y a \u00e9videmment du temps pour aborder des questions un peu techniques, dont les suivantes :\n\n- est-ce le changement de cadre r\u00e9glementaire en cours de route qui explique une partie du retard \u00e0 Flamanville ?\n\n- pourquoi en France les installations doivent \u00eatre conformes \u00e0 l'\u00e9tat de l'art alors qu'aux USA il leur suffit d'\u00eatre conformes \u00e0 leurs sp\u00e9cifications d'origine ?\n\n- l'ASN met-elle en balance la s\u00e9curit\u00e9 d'approvisionnement avec la s\u00fbret\u00e9 nucl\u00e9aire ?\n\n- le niveau de s\u00fbret\u00e9 des installations nucl\u00e9aires fran\u00e7aises s'est-il d\u00e9grad\u00e9 parce que le parc est plus \u00e2g\u00e9 ?\n\n- y a-t-il un risque \u00e0 prolonger les centrales au-del\u00e0 de 40 ans ?\n\n- y a-t-il un risque de pertes de comp\u00e9tences \u00e0 utiliser des sous-traitants dans le nucl\u00e9aire ?\n\n- le parc - actuel ou futur - int\u00e8gre-t-il des mesures d'adaptation au changement climatique ?\n\n- l'EPR est-il un r\u00e9acteur trop compliqu\u00e9 parce qu'il est franco-allemand ?\n\n- la fili\u00e8re est-elle suffisamment attractive pour disposer des comp\u00e9tences qui seront n\u00e9cessaires pour mener un chantier ambitieux de \"renouveau nucl\u00e9aire\" ?\n\n- le pr\u00e9sident de l'ASN voit-il sa responsabilit\u00e9 personnelle n\u00e9cessairement engag\u00e9e en cas d'accident nucl\u00e9aire en France ? (cette question d\u00e9coulait d'une affirmation de Corinne Lepage soutenant que c'\u00e9tait le cas)\n\nDans cette intervention le pr\u00e9sident de l'ASN fait part \u00e0 plusieurs reprises d'une crainte forte : celle d'\u00eatre mis dans la situation o\u00f9 il serait amen\u00e9 \u00e0 choisir entre plonger le pays dans le noir et laisser fonctionner une installation qu'il aurait arr\u00eat\u00e9e \"en temps normal\". Cette situation se pr\u00e9sentera, dit-il, si la politique \u00e9nerg\u00e9tique se base sur des paris incertains ou un d\u00e9faut d'anticipation qui am\u00e8neraient le pays \u00e0 se retrouver sans marges. A bon entendeur..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030653288962252800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030653289532661760,urn:li:activity:7030653289532661760,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 21, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030653289532661760,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030653289532661760,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7030653289532661760", + "threadId": "activity:7030653289532661760", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030653289532661760", + "urn": "urn:li:activity:7030653289532661760", + "numComments": 43, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030653289532661760", + "reactionTypeCounts": [ + { + "count": 545, + "reactionType": "LIKE" + }, + { + "count": 159, + "reactionType": "INTEREST" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030653289532661760", + "numLikes": 728, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030653289532661760", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 728, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6d \u2022 ", + "accessibilityText": "6 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7030130262550147072", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030130262550147072)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030130262550147072)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_des-chercheurs-sugg%C3%A8rent-de-cr%C3%A9er-un-%C3%A9cran-activity-7030130262550147072-8284?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7030130261799366656", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7030130262550147072", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7030130261799366656", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "9XoxEEXYC6d6MHbKdG3JNg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7133322728601584016", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676121323841?e=1677240000&v=beta&t=oO_ZoJao1XKyGMkt7M6y3pp-xFTTb2WiJFRtCw7gUJY", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676121323841?e=1677240000&v=beta&t=6p1FvpGlkmRSEhbl51Q-VIQsibkjJYT-pmwtfxwhh3Q", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676121323842?e=1677240000&v=beta&t=-u3RC2pA6kwlY0N5NqV351SfPswMGqlVULy_aStfnwI", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676121323842?e=1677240000&v=beta&t=syLJQzXu0F-CG---m2tCyPYZXtLOwq0tfW0pUN4FCoc", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQH6bX0STNeXig/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7133322728601584016)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7133322728601584016)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "msn.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Des chercheurs sugg\u00e8rent de cr\u00e9er un \u00e9cran de poussi\u00e8re lunaire entre la Terre et le soleil pour att\u00e9nuer le changement climatique by msn.com", + "actionTarget": "https://www.msn.com/fr-fr/actualite/technologie-et-sciences/des-chercheurs-sugg%C3%A8rent-de-cr%C3%A9er-un-%C3%A9cran-de-poussi%C3%A8re-lunaire-entre-la-terre-et-le-soleil-pour-att%C3%A9nuer-le-changement-climatique/ar-AA17iku5" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Des chercheurs sugg\u00e8rent de cr\u00e9er un \u00e9cran de poussi\u00e8re lunaire entre la Terre et le soleil pour att\u00e9nuer le changement climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7030130261799366656,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En route pour la g\u00e9oing\u00e9nierie ! Si nous avons un exc\u00e8s d'effet de serre (= un exc\u00e8s de rayonnement infrarouge en provenance de l'atmosph\u00e8re), il suffit de diminuer un peu le rayonnement solaire re\u00e7u par la plan\u00e8te, et l'ensemble nous remet \u00e0 la bonne temp\u00e9rature. C'est b\u00eate comme chou non ?\n\nUne id\u00e9e pour y parvenir consiste \u00e0 placer entre la terre et le soleil un objet suffisamment vaste, et l\u00e9g\u00e8rement opaque, qui va intercepter une partie du rayonnement solaire et ainsi contribuer \u00e0 \"refroidir la terre\".\n\nLa m\u00e9canique c\u00e9leste nous indique en effet que, sur la ligne qui joint la terre au soleil, il existe un point - appel\u00e9 point de Lagrange - o\u00f9 l'attraction de la terre et celle du soleil dont de m\u00eame intensit\u00e9. Si l'on peut y placer un objet, ce dernier y reste (il est \"tir\u00e9 de chaque c\u00f4t\u00e9\" avec une force \u00e9gale), et se met alors \u00e0 orbiter autour du soleil \u00e0 la m\u00eame vitesse que la terre. \n\nIl y a donc p\u00e9riodiquement l'id\u00e9e de placer \u00e0 cet endroit de quoi rafra\u00eechir notre plan\u00e8te : de grands miroirs, ou, r\u00e9cemment, un nuage de poussi\u00e8re r\u00e9fl\u00e9chissante (https://bit.ly/3RYkybW ). A partir du pouvoir r\u00e9flexif des particules de poussi\u00e8re et de leur densit\u00e9, les chercheurs ont calcul\u00e9 qu'avec 10 millions de tonnes de poussi\u00e8re on pourrait diminuer la puissance solaire d'un peu moins de 2%. \n\nLa puissance solaire re\u00e7ue au niveau du sol \u00e9tant de 170 watts par m2 en moyenne (sur toute a surface et toute l'ann\u00e9e), 2% en moins ca fait 3 watts par m2, soit \u00e0 peu pr\u00e8s le for\u00e7age actuellement du au suppl\u00e9ment humain d'effet de serre. CQFD.\n\nSauf que... 10 Mt repr\u00e9senterait 700 fois la masse combin\u00e9e de tout ce que les humains ont envoy\u00e9 dans l'espace depuis le d\u00e9but des fus\u00e9es. Si ca fait trop depuis la Terre, partons de la Lune ! Car en plus sur notre satellite il y a de la poussi\u00e8re \u00e0 volont\u00e9... Il n'y a qu'\u00e0 y construire une base permanente, et y d\u00e9velopper une industrie permettant de fabriquer fus\u00e9es et carburant \u00e0 partir de mat\u00e9riaux locaux et de rayonnement solaire (pour \u00e9viter d'amener sur la lune le poids des fus\u00e9es+carburants depuis la terre, ce qui \"ram\u00e8nerait au probl\u00e8me pr\u00e9c\u00e9dent\"). Une formalit\u00e9 :)\n\nPar ailleurs en arrivant au point de Lagrange les grains de poussi\u00e8re ont une \u00e9nergie cin\u00e9tique (la \"vitesse\" qui leur a permis de se d\u00e9placer depuis le point de lancement) et pas de p\u00e9dale de frein : ils ne peuvent \u00eatre \"arr\u00eat\u00e9s\" au bon endroit. Pire : si la position initiale d'un grain de poussi\u00e8re \"arr\u00eat\u00e9\" est \u00e9loign\u00e9e d'un km du point de Lagrange, au bout d'un an il se sera \u00e9loign\u00e9 \u00e0 plus de 1000 km du point en question (c'est un \u00e9quilibre metastable). Il faudrait donc r\u00e9alimenter ce nuage en permanence.\n\nQu'en d\u00e9duire ? Que la conclusion \u00e9vidente \u00e0 tirer de ce papier est que cette solution ne sera jamais \u00e0 l'\u00e9chelle. C'est pourtant l'inverse que laissent penser quelques titres \u00e0 sensation relev\u00e9s ici ou l\u00e0. Avis aux journalistes qui ont relay\u00e9 ou veulent le faire : commencez par lire les petites lignes, comme avec les contrats d'assurance..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030130261799366656,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030130262550147072,urn:li:activity:7030130262550147072,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 206, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030130262550147072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030130262550147072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7030130262550147072", + "threadId": "activity:7030130262550147072", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030130262550147072", + "urn": "urn:li:activity:7030130262550147072", + "numComments": 439, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030130262550147072", + "reactionTypeCounts": [ + { + "count": 1868, + "reactionType": "LIKE" + }, + { + "count": 414, + "reactionType": "INTEREST" + }, + { + "count": 49, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "EMPATHY" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030130262550147072", + "numLikes": 2368, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030130262550147072", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2564, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6d \u2022 Edited \u2022 ", + "accessibilityText": "6 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7029872348539314176", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029872348539314176)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029872348539314176)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_agriculture-et-climat-lurgence-de-sadapter-activity-7029872348539314176-51Dz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7029872347792691200", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7029872348539314176", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7029872347792691200", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "Xxra8aaINYLaqFi0QYwgIA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7517892329526013595", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676144116328?e=1677240000&v=beta&t=_OizRdJU7RJ_j74QoFS51PZZCWTh1nd6IL9QbKSKKcg", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676144116328?e=1677240000&v=beta&t=lkcH_OJjERDu7rIMigDWnMRe3J7JbwJwJ8fLTcay2No", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676144116328?e=1677240000&v=beta&t=7cAetDuhYdYHQ8-Kd9S5iq4wVHI4Fl5DdhNe5CNrnxc", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676144116328?e=1677240000&v=beta&t=dgD1rkEs5dnpqHwGL4Oar4GqaG3hCZQyxelvIPj4Uwk", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFDOjF-xY0lYQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7517892329526013595)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7517892329526013595)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Agriculture et climat : l\u2019urgence de s\u2019adapter ! | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-agriculture-climat-adaptation" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Agriculture et climat : l\u2019urgence de s\u2019adapter ! | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7029872347792691200,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "2022 ne restera pas dans les m\u00e9moires des agriculteurs comme une ann\u00e9e tr\u00e8s sympathique. Au mieux les cultures n'ont pas souffert par rapport \u00e0 2021, et au pire elles ont connu une baisse de rendement, de l'ordre de 15% pour le ma\u00efs ou le soja.\n\nMais c'est surtout sur l'herbe, qui fait l'objet de peu de syst\u00e8mes irrigu\u00e9s, que la chute a \u00e9t\u00e9 la plus forte : il y a eu un d\u00e9ficit de production des p\u00e2turages d'un tiers par rapport \u00e0 la moyenne 1989 - 2018, ce qui a fortement baiss\u00e9 une partie de la production de fromage AOP (par exemple pas de Salers cet \u00e9t\u00e9).\n\nCet article de Carbone 4 vous propose un petit tour d'horizon de l'ann\u00e9e \u00e9coul\u00e9e, compl\u00e9t\u00e9e par une analyse prospective sur 4 d\u00e9partements du Sud-Ouest (Aveyron, Tarn, Tarn-et-Garonne et Lot).\n\nA cause de l'inertie de la d\u00e9rive climatique (qui s'amplifie tant que les \u00e9missions mondiales nettes ne sont pas nulles), les situations adverses vont se multiplier, et il est plus que temps de r\u00e9fl\u00e9chir \u00e0 ce que nous allons faire en face, surtout qu'\u00e0 l'horizon de quelques d\u00e9cennies il va aussi y avoir un sujet sur la disponibilit\u00e9 de l'\u00e9nergie fossile, qui est partout dans les cultures : pour fabriquer les engrais azot\u00e9s, pour les amener dans les champs, pour faire avancer les tracteurs, pour faire avancer les camions \u00e0 l'aval du champ, pour faire tourner le secteur agroalimentaire.... \n\nL'agriculture est par ailleurs un syst\u00e8me humainement inerte : les actifs y aiment les traditions (ce qui est une mani\u00e8re de dire qu'ils n'aiment pas le changement !), la rotation du capital y est lente, et enfin y faire venir du monde ne se fait pas en un claquement de doigts.\n\nPour minimiser les d\u00e9g\u00e2ts, le ma\u00eetre mot, l\u00e0 comme ailleurs, est donc l'anticipation. Mais comment anticiper alors que nous avons b\u00e2ti un syst\u00e8me \u00e9conomique et r\u00e9glementaire dont la premi\u00e8re priorit\u00e9 est de tirer les prix vers le bas - ce qui prive le secteur de moyens d'investissement - sur la base de la comp\u00e9tition - qui raccourcit les horizons de temps - et pas du tout d'assurer la p\u00e9rennit\u00e9 physique d'un syst\u00e8me r\u00e9silient ?\n\nLe secteur agricole n'est ni assez riche ni assez libre de ses mouvements pour d\u00e9cider en toute autonomie de moyens de \"faire ce qu'il faut\" pour rendre son activit\u00e9 la plus r\u00e9siliente possible, tout en abaissant la pression environnementale (\u00e9missions de gaz \u00e0 effet de serre, phytosanitaires) dont il est \u00e0 l'origine. Rappelons qu'il ne b\u00e9n\u00e9ficie aujourd'hui que de 2% des revenus \u00e9conomiques du pays, ce qui est peu pour un secteur dont 100% des autres activit\u00e9s d\u00e9pendent. \n\nSi nous voulons une agriculture \u00e0 la fois plus r\u00e9siliente face \u00e0 l'amplification de la d\u00e9rive climatique \u00e0 venir et moins perturbatrice ce l'environnement, il y a un \u00e9l\u00e9ment que nous allons difficilement pouvoir \u00e9viter : d\u00e9cider de payer la nourriture plus cher. Sinon c'est ce qui finira par arriver de toute fa\u00e7on, mais de mani\u00e8re moins bien organis\u00e9e !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029872347792691200,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029872348539314176,urn:li:activity:7029872348539314176,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029872348539314176,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029872348539314176,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7029872348539314176", + "threadId": "activity:7029872348539314176", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029872348539314176", + "urn": "urn:li:activity:7029872348539314176", + "numComments": 102, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029872348539314176", + "reactionTypeCounts": [ + { + "count": 1063, + "reactionType": "LIKE" + }, + { + "count": 158, + "reactionType": "INTEREST" + }, + { + "count": 37, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029872348539314176", + "numLikes": 1283, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029872348539314176", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1283, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7029567522739773440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029567522739773440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029567522739773440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_abandoned-farm-fields-take-decades-to-recover-activity-7029567522739773440-WGjz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7029567522039308288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7029567522739773440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7029567522039308288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "EbSGfsQyXJnrl/PKviRVgA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7867305761321344434", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676524860543?e=1677240000&v=beta&t=S9NYAsadUBfk0HkSWHqt75uF6WQlvgKRrujz2pHRpAw", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676524860543?e=1677240000&v=beta&t=wlfUMYlmzAlWPPbxFzPJy-iEuV_R3p6aLudbyTYeSBQ", + "expiresAt": 1677240000000, + "height": 667 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676524860544?e=1677240000&v=beta&t=5qGbWHjSz7hvBMWxWFT24DdVBWdXCF_KGJoxLGzDjv4", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676524860544?e=1677240000&v=beta&t=5eq6JdjmqX7uisUnZEcpSgG2jJIBr9fkyzriTG4ywFA", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D5627AQE6di4YUuavCg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7867305761321344434)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7867305761321344434)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "modernfarmer.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Abandoned Farm Fields Take Decades to Recover Biodiversity\u2014If They Can At All - Modern Farmer by modernfarmer.com", + "actionTarget": "https://modernfarmer.com/2023/02/grassland-recovery/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Abandoned Farm Fields Take Decades to Recover Biodiversity\u2014If They Can At All - Modern Farmer" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7029567522039308288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La biodiversit\u00e9 est-elle r\u00e9siliente ? Dit autrement, si l'on se met \u00e0 \"laisser en paix\" un endroit qui \u00e9tait autrefois perturb\u00e9 par les activit\u00e9s humaines, est-ce que la biodiversit\u00e9 revient au niveau qu'elle aurait eu si nous n'avions jamais touch\u00e9 \u00e0 rien ?\n\nCela n'est pas garanti, indique une \u00e9tude parue dans Journal of Ecology (https://lnkd.in/e7G9q24e ), qui a examin\u00e9 le nombre et l'abondance des esp\u00e8ces sur des parcelles de prairie situ\u00e9es aux USA et anciennement agricoles qui ont \u00e9t\u00e9 laiss\u00e9es \"\u00e0 l'abandon\" depuis 3 ans \u00e0 presque un si\u00e8cle. \n\nSur aucune des parcelles les esp\u00e8ces n'\u00e9taient au niveau de ce que l'on trouvait sur des prairies identiques n'ayant jamais \u00e9t\u00e9 exploit\u00e9s pour l'agriculture. Une soixantaine de plantes poussant sur les prairies \"primaires\" ne s'observaient sur aucune des parcelles de prairie \"secondaire\", m\u00eame au bout de plusieurs d\u00e9cennies. En moyenne, un tiers des esp\u00e8ces manque \u00e0 l'appel sur les parcelles ayant \u00e9t\u00e9 cultiv\u00e9es par rapport \u00e0 celles ne l'ayant jamais \u00e9t\u00e9. \n\nPour beaucoup d'entre nous, il y a l'id\u00e9e de r\u00e9versibilit\u00e9 dans l'\u00e9tat des \u00e9cosyst\u00e8mes : si la pression qui a conduit \u00e0 la baisse de la biodiversit\u00e9 est all\u00e9g\u00e9e ou supprim\u00e9e, alors la biodiversit\u00e9 se r\u00e9tablit pour l'essentiel. Cette \u00e9tude montre que la r\u00e9alit\u00e9 n'est pas si simple, et que la recolonisation d'un \u00e9cosyst\u00e8me d\u00e9grad\u00e9 n'est pas n\u00e9cessairement automatique.\n\nEn outre cette \u00e9tude a \u00e9t\u00e9 men\u00e9e avec une d\u00e9rive climatique limit\u00e9e : pour les esp\u00e8ces v\u00e9g\u00e9tales qui avaient \u00e9t\u00e9 supprim\u00e9es par l'exploitation agricole, le climat d'aujourd'hui est encore relativement proche de celui qui existait au moment de la mise de la prairie en culture. \n\nMais \u00e0 l'avenir le climat existant au moment de l'arr\u00eat de la pression sera de plus en plus diff\u00e9rent de celui qui existait au moment du d\u00e9marrage de la pression. La question de la r\u00e9versibilit\u00e9 sera n\u00e9cessairement encore plus pos\u00e9e dans ce contexte.\n\nCe que sugg\u00e8re l'article dans sa partie finale est de donner un \"coup de pouce\" \u00e0 la restauration de la biodiversit\u00e9, par exemple en plantant des graines des esp\u00e8ces qui ont du mal \u00e0 revenir spontan\u00e9ment. \n\nEn somme, la proposition est de corriger la baisse de la biodiversit\u00e9 caus\u00e9e par l'agriculture par... une autre forme d'agriculture ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029567522039308288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029567522739773440,urn:li:activity:7029567522739773440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 111, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029567522739773440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029567522739773440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7029567522739773440", + "threadId": "activity:7029567522739773440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029567522739773440", + "urn": "urn:li:activity:7029567522739773440", + "numComments": 153, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029567522739773440", + "reactionTypeCounts": [ + { + "count": 1598, + "reactionType": "LIKE" + }, + { + "count": 604, + "reactionType": "INTEREST" + }, + { + "count": 22, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029567522739773440", + "numLikes": 2254, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029567522739773440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2256, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7029152901151227904", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029152901151227904)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029152901151227904)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_r%C3%A9chauffement-climatique-christophe-b%C3%A9chu-activity-7029152901151227904-Ko6p?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7029152900555665408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7029152901151227904", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7029152900555665408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "fsFoZfWhjtqfPTG+69Ql9w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7714865795466691610", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676104521119?e=1677240000&v=beta&t=qFR-DbsPypP9HON0uLf_iXeoN9A2eK_48ZIPP7b8lac", + "expiresAt": 1677240000000, + "height": 468 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676104521119?e=1677240000&v=beta&t=INp-tw69neKrCL7lknXMWaz0sexDp2KP_PDX9fyDbTU", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676104521119?e=1677240000&v=beta&t=6MdM-QlBFD29SovmAYHX19YGGC9GPHxwccdgC6T9dfY", + "expiresAt": 1677240000000, + "height": 93 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676104521119?e=1677240000&v=beta&t=0rn5ttLSlJ_X4r4N1vAy1BUUwIgsBN26Curx-kXJCMY", + "expiresAt": 1677240000000, + "height": 281 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQGv6oPpoZDTJg/articleshare-shrink_" + }, + "displayAspectRatio": 0.585 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7714865795466691610)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7714865795466691610)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemans.maville.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: R\u00e9chauffement climatique. Christophe B\u00e9chu demande la prise en compte d\u2019un sc\u00e9nario \u00e0 by lemans.maville.com", + "actionTarget": "https://lemans.maville.com/actu/actudet_-rechauffement-climatique.-christophe-bechu-demande-la-prise-en-compte-d-un-scenario-a-+-4-c-_54135-5613674_actu.Htm" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "R\u00e9chauffement climatique. Christophe B\u00e9chu demande la prise en compte d\u2019un sc\u00e9nario \u00e0" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7029152900555665408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'automobiliste qui boucle sa ceinture s'attend-il \u00e0 avoir un accident ? Le particulier qui paye sa prime d'assurance contre l'incendie s'attend-il \u00e0 voir son domicile en proie aux flammes ? Le navigateur qui enfile son gilet de sauvetage \u00e0 finir par-dessus bord ?\n\nLorsque le coup du sort est possible, la prudence veut que l'on prenne ses pr\u00e9cautions, pour parer des \u00e9ventualit\u00e9s alors m\u00eame que la personne qui est victime n'est pas en d\u00e9faut sur son propre comportement (comme un conducteur saoul qui ne vous a pas vu ou un coup de foudre).\n\nIl en va de m\u00eame pour le climat. Si l'\u00e9volution des conditions climatiques en France ne d\u00e9pendait que des \u00e9missions fran\u00e7aises (une chose que pensait un ministre que j'ai rencontr\u00e9 dans le gouvernement Macron I, accessoirement), on pourrait consid\u00e9rer que de pr\u00e9parer le pays \u00e0 une \u00e9volution climatique \"incompatible accords de Paris\" est une d\u00e9mission.\n\nMais ce que sera le climat de la France en 2100 d\u00e9pend avant tout de ce que vont \u00e9mettre tous les autres pays que le n\u00f4tre d'ici \u00e0 2100. Avons nous de la prise dessus ? La r\u00e9ponse est oui pour partie : d'une part l'humain est animal mim\u00e9tique (merci la mode pour nous le rappeler !), et d'autre part si nous trouvons des \"solutions\" chez nous nous pourrons ensuite les exporter.\n\nMais nous avons au mieux un pouvoir d'influence et non un pouvoir absolu. La prudence veut donc que l'on ait un plan B si la baisse des \u00e9missions ne va pas assez vite dans le monde (et actuellement elle ne va pas assez vite...). \n\nEn pratique, avoir ce plan B signifie \"durcir\" tout ce que nous pouvons durcir en France pour r\u00e9sister au mieux \u00e0 des conditions climatiques qui d\u00e9riveraient fortement par rapport au sc\u00e9nario \"id\u00e9al\" d'une hausse limit\u00e9e \u00e0 1,5 \u00b0C dans le monde (ce qui signifie plus en France car les terres \u00e9merg\u00e9es se r\u00e9chauffent plus vite que la moyenne).\n\nCe n'est pas une fois que la situation est \"cata\" que nous aurons la possibilit\u00e9 d'avoir en une semaine une for\u00eat constitu\u00e9e des bonnes esp\u00e8ces, des cultures r\u00e9sistant aux canicules ou hivers doux, des infrastructures et des voies de communication en \u00e9tat de fonctionner, ou encore des logements qui ne soient pas des fournaises.\n\nLe principe m\u00eame de s'y prendre maintenant pour \u00eatre \"pr\u00eat\" dans 50 ans, et d'utiliser d'un sc\u00e9nario tr\u00e8s adverse est donc une bonne chose : cela s'appelle de la prudence. \n\nPour passer \u00e0 l'action, il va d'abord falloir mod\u00e9liser pour chaque acteur les cons\u00e9quences possibles de 4\u00b0C de r\u00e9chauffement en France. Que risque un bailleur social ? Une installation industrielle ? Un pont ? Un r\u00e9seau d'eau ? Un agriculteur ? Un r\u00e9seau de communications ? Un h\u00f4pital ? \n\nPuis il faudra ensuite imaginer les moyens d'y r\u00e9pondre (et parfois le seul sera l'abandon...) et enfin les mettre en oeuvre.\n\nTout cela demandera des moyens intellectuels puis mat\u00e9riels (et donc des sous). Sans obligation s\u00e9rieuse de la puissance publique, il est peu probable qu'ils arrivent tous seuls \u00e0 la bonne vitesse !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029152900555665408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029152901151227904,urn:li:activity:7029152901151227904,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 90, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029152901151227904,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029152901151227904,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7029152901151227904", + "threadId": "activity:7029152901151227904", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029152901151227904", + "urn": "urn:li:activity:7029152901151227904", + "numComments": 167, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029152901151227904", + "reactionTypeCounts": [ + { + "count": 1520, + "reactionType": "LIKE" + }, + { + "count": 221, + "reactionType": "INTEREST" + }, + { + "count": 70, + "reactionType": "PRAISE" + }, + { + "count": 29, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029152901151227904", + "numLikes": 1858, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029152901151227904", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1861, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7028725477036969984", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7028725477036969984)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7028725477036969984)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-danemark-et-totalenergies-acc%C3%A9l%C3%A8rent-sur-activity-7028725477036969984-M7II?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7028725474373574656", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7028725477036969984", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7028725474373574656", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "HflB6bT5ka8JXCqfqjmb+g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8168114166776751448", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675778791122?e=1677240000&v=beta&t=kFtGANzAa7XLEWR5j6xAVHKmvWAVPe1iEgMPOOBP-CY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675778791122?e=1677240000&v=beta&t=re6knlcLcthhnCd7O8LIiQGGcsJe7Smh-Mle2Tbbpn4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675778791122?e=1677240000&v=beta&t=pTo6ITl13Z-YbislXXt-3Jkzrrf0tkDT9LX8dt_rOrM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675778791122?e=1677240000&v=beta&t=nkKsJHpM0KACVI6goA6MI6XuhoYeBrzxCKLbj6435VI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQHRbnwo7trS3g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8168114166776751448)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8168114166776751448)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Danemark et TotalEnergies acc\u00e9l\u00e8rent sur le stockage de CO2 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/le-danemark-et-totalenergies-accelerent-sur-le-stockage-de-co2-1903841" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Danemark et TotalEnergies acc\u00e9l\u00e8rent sur le stockage de CO2" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7028725474373574656,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Une des solutions qui permettrait d'utiliser des combustibles fossiles sans d\u00e9ranger le climat s'appelle la capture et s\u00e9questration du CO2 (en anglais CCS pour Carbon Capture and Sequestration), et passe par les op\u00e9rations suivantes :\n\n- on \"attrape\" le CO2 d'une installation de combustion avant qu'il ne s'\u00e9chappe dans l'atmosph\u00e8re. Pour cela la fum\u00e9e barbote dans un liquide sp\u00e9cial - g\u00e9n\u00e9ralement des amines - qui va \"accrocher\" les mol\u00e9cules de CO2 (on parle d'adsorption) et laisser partir le reste.\n\n- le CO2 est r\u00e9cup\u00e9r\u00e9 en faisant chauffer la solution qui l'a adsorb\u00e9,\n\n- il est compress\u00e9, transport\u00e9 dans un tuyau et enfin inject\u00e9 sous forme supercritique (une forme interm\u00e9diaire entre le gaz et le liquide) sous le sol dans une formation g\u00e9ologique dont il ne sortira plus\n\nCette op\u00e9ration n'a de sens que pour des installation fixes importantes (centrales \u00e0 charbon ou \u00e0 gaz, cimenteries ou aci\u00e9ries). La capture demande 20% \u00e0 30% de l'\u00e9nergie du site, et fait baisser la production (d'\u00e9lectricit\u00e9, d'acier...) d'autant. C'est de loin la premi\u00e8re barri\u00e8re \u00e0 l'utilisation de ce proc\u00e9d\u00e9.\n\nIl faut ensuite trouver o\u00f9 injecter ce CO2. Les anciens gisements de p\u00e9trole et de gaz sont une premi\u00e8re possibilit\u00e9. Ce sont de bons candidats, car, avant exploitation, ils \u00e9taient aptes \u00e0 retenir longtemps au m\u00eame endroit du liquide et du gaz sous pression. Il faut juste v\u00e9rifier que les forages d'exploitation (normalement scell\u00e9s \u00e0 la fin de vie du gisement) ne changent pas l'\u00e9tanch\u00e9it\u00e9.\n\nLes aquif\u00e8res souterrains - un m\u00e9lange de roche et d'eau - sont une deuxi\u00e8me possibilit\u00e9. Le CO2 inject\u00e9 finit par se dissoudre puis se transformer lentement en carbonates avec le temps.\n\nLes p\u00e9troliers connaissent assez bien l'injection du CO2 sous le sol :\n- dans beaucoup de gisements p\u00e9troliers le fait d'injecter du CO2 permet de mieux \"laver\" le gisement. En pareil cas le moteur de l'action n'est donc pas la vertu environnementale mais tout simplement l'augmentation du p\u00e9trole produit !\n- le gaz naturel extrait de terre contient toujours un peu de CO2, et ce dernier doit \u00eatre enlev\u00e9 avant le transport par gazoduc, sinon il y a un risque fort de corrosion des infrastructures (la pr\u00e9sence simultan\u00e9e d'eau et de CO2 cr\u00e9e un m\u00e9lange acide). Les op\u00e9rateurs doivent donc s\u00e9parer le gaz du CO2 en t\u00eate de puits, et en Norv\u00e8ge ce CO2 doit \u00eatre r\u00e9inject\u00e9 sinon le p\u00e9trolier paye une p\u00e9nalit\u00e9 \u00e0 la tonne. \n\nCe n'est donc pas un hasard si Total - un p\u00e9trolier - et le Danemark - la Mer du Nord - regardent ensemble ce qu'ils pourraient mettre comme CO2 sous la mer. Il reste \u00e0 trouver des industriels acceptant d'investir pour capturer le CO2 \u00e0 la source et \u00e0 se faire payer pour ca. \n\nOn parle potentiellement de 10 Mt de CO2 par an, soit 500 M\u20ac/an environ au cours actuel du CO2. C'est assez d'argent pour que ca vaille le coup de reconvertir une plate-forte, mais cela \u00e9vitera juste les \u00e9missions d'une centrale \u00e0 charbon. On ne va pas pouvoir compter que sur ca !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7028725474373574656,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7028725477036969984,urn:li:activity:7028725477036969984,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 107, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7028725477036969984,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7028725477036969984,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7028725477036969984", + "threadId": "activity:7028725477036969984", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028725477036969984", + "urn": "urn:li:activity:7028725477036969984", + "numComments": 201, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7028725477036969984", + "reactionTypeCounts": [ + { + "count": 1963, + "reactionType": "LIKE" + }, + { + "count": 579, + "reactionType": "INTEREST" + }, + { + "count": 129, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7028725477036969984", + "numLikes": 2707, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028725477036969984", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2710, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:39029", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "PzETK1ASST+LTvBdKH6DsA==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "PzETK1ASST+LTvBdKH6DsA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "L'Express" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 Edited \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: L'Express", + "actionTarget": "https://www.linkedin.com/company/lexpress/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A39029" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "55,114 followers" + }, + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:39029", + "followerCount": 55114, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:39029", + "following": false, + "trackingUrn": "urn:li:company:39029" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followCompany" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:7028059990707838976", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7028059990707838976)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7028059990707838976)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/lexpress_jancovici-linfluent-gourou-du-climat-activity-7028059990707838976-RQxN?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7028059989986430976", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:39029", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7028059989986430976", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "Zz9Cpb12QjTkkHm8UUhZ3w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7697564446898559605", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675620078165?e=1677240000&v=beta&t=l9Jj0dkoYOdfshI4QGzA1u72egpBdnceYOYuT8EUWUo", + "expiresAt": 1677240000000, + "height": 689 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675620078165?e=1677240000&v=beta&t=Qgvz_4cFjYvwvGSnGtQ38ZxvPJyp2G_KrgIpQ8EczlE", + "expiresAt": 1677240000000, + "height": 258 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675620078165?e=1677240000&v=beta&t=sH75AxOWezsv9WN4PWAUHXcB_WZD8C2sBODfgweCZhw", + "expiresAt": 1677240000000, + "height": 86 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675620078165?e=1677240000&v=beta&t=yS43L0iEGdYXMkx4L8KxdoYTvqaieG3NkHmfh__hTi4", + "expiresAt": 1677240000000, + "height": 431 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E34AQGIjXrLZwZ7TA/ugc-proxy-shrink_" + }, + "displayAspectRatio": 0.53828125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7697564446898559605)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7697564446898559605)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lexpress.fr \u2022 10 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jancovici, l'influent gourou du climat : ses liens avec Hulot, son film r\u00eav\u00e9 avec Besson, ses r\u00e9seaux by lexpress.fr", + "actionTarget": "https://www.lexpress.fr/politique/jancovici-linfluent-gourou-du-climat-ses-liens-avec-hulot-son-film-reve-avec-besson-ses-reseaux-YGVZI5C26FAGNBBLB5MKBR5S5Q/?utm_medium=Social&utm_source=LinkedIn#Echobox=1675616762-2" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jancovici, l'influent gourou du climat : ses liens avec Hulot, son film r\u00eav\u00e9 avec Besson, ses r\u00e9seaux" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7028059989986430976,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 52, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 886, + "length": 12, + "miniProfile": { + "firstName": "Emilie", + "lastName": "LANEZ", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABHRrtsBMC8nh_z8X50VQpbmZDi4bHNYSqQ", + "occupation": "Grand reporter", + "objectUrn": "urn:li:member:298954459", + "entityUrn": "urn:li:fs_miniProfile:ACoAABHRrtsBMC8nh_z8X50VQpbmZDi4bHNYSqQ", + "publicIdentifier": "emilie-lanez", + "trackingId": "/YL65v6WSbikGpFUbkPupg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Longtemps seul contre tous \u00e0 d\u00e9fendre le nucl\u00e9aire, Jean-Marc Jancovici est convaincu d\u2019avoir toujours eu raison. En partie vrai.\n\nMal l\u00e9ch\u00e9 et brillantissime, talentueux et bougon, d\u00e9daigneux et populaire : qui est cette idole des trentenaires urbains, qu\u2019Edouard Philippe re\u00e7oit \u00e0 d\u00e9jeuner dans sa th\u00e9ba\u00efde du Havre, que Bruno Le Maire \u00e9coute, que Gabriel Attal invite, que la d\u00e9put\u00e9e \u00e9colo Delphine Batho cite, que Julien Aubert, vice-pr\u00e9sident LR consulte, que le math\u00e9maticien et ancien d\u00e9put\u00e9 C\u00e9dric Villani r\u00e9v\u00e8re et que Marine Tondelier, nouvelle patronne des Verts, accuse publiquement d\u2019\u00eatre un \"menteur\" ?\n\nFaut-il se r\u00e9jouir qu\u2019enfin notre franchouillard Greta Thunberg \u00e9lectrise des cohortes de cadres sup accroch\u00e9s \u00e0 leur bagnole et mangeant des fraises en hiver ? D\u2019o\u00f9 vient ce ph\u00e9nom\u00e8ne ?\n\nEnqu\u00eate sur un sexag\u00e9naire ronchon et pessimiste devenu l\u2019idole des jeunes, par Emilie LANEZ \u2935\ufe0f" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7028059989986430976,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7028059990707838976,urn:li:activity:7028059990707838976,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7028059990707838976,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7028059990707838976,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7028059990707838976", + "threadId": "activity:7028059990707838976", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028059990707838976", + "urn": "urn:li:activity:7028059990707838976", + "numComments": 103, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7028059990707838976", + "reactionTypeCounts": [ + { + "count": 219, + "reactionType": "LIKE" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "INTEREST" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7028059990707838976", + "numLikes": 237, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028059990707838976", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 244, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:7028122019623772160", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7028122019623772160)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7028122019623772160)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-linfluent-gourou-du-climat-activity-7028122019623772160-KtIx?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7028122018780708864", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7028122019623772160", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7028122018780708864", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "Zz9Cpb12QjTkkHm8UUhZ3w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7028122018780708864,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 50, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "x1MluYivThGqHnPKoJV9Uw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 807, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "QqkLEh3lRgOihfT9CznZ5g==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Il y a une grosse heure, j'ai comment\u00e9 ce post de L'Express pour corriger une affirmation erron\u00e9e contenue dans ce portrait auquel je n'ai pas contribu\u00e9 (le commentaire expliquait justement pourquoi).\n\nL'Express ayant supprim\u00e9 mon commentaire peu apr\u00e8s, je le reproduis donc en post. Je dois dire que je ne comprends pas ce qui motiv\u00e9 cette suppression : soit la personne de permanence sur le compte linkedin de l'Express un Dimanche soir regardait la t\u00e9l\u00e9 sans faire attention \u00e0 ce qu'elle faisait, soit elle a laiss\u00e9 le clavier \u00e0 son enfant de 2 ans, soit... le vilain mot de censure vient \u00e0 l'esprit, ce qui pour un media d'une d\u00e9mocratie ne serait pas terrible. Je suis volontiers preneur de l'explication si le journal veut bien me la fournir. \n\nVoici donc mot \u00e0 mot le commentaire que j'avais mis :\n\n\"L'Express la cause invoqu\u00e9e dans ce portrait pour mon refus de parler \u00e0 la journaliste est erron\u00e9e : j'ai d\u00e9clin\u00e9 avant tout parce que je consid\u00e8re que les portraits sont contreproductifs, et non d'abord par manque de temps.\n\nJ'ai expliqu\u00e9 par mail \u00e0 la journaliste que le \"portrait\" focalisait le propos sur le messager (qui est secondaire) et non sur le message, qu'il donnait toujours l'impression d'un parcours solitaire alors que tout travail se fait en \u00e9quipe, et enfin qu'il \u00e9tait par construction b\u00e2ti sur des points saillants (pour lesquels c'est facile de mettre des \u00e9tiquettes pour ou contre) qui crispent le d\u00e9bat alors que nous avons besoin de nous parler. J'ai ajout\u00e9 qu'en cons\u00e9quence je ne souhaitais pas y passer du temps. \n\nC'est pour le m\u00eame genre de raison que je n'avais pas envie d'\u00eatre nomm\u00e9 \"personnalit\u00e9 de l'ann\u00e9e\" : ce n'est pas sur moi qu'il faut concentrer les moyens \u00e9ditoriaux mais sur le fond. \n\nLe r\u00e9sultat me donne h\u00e9las raison : je ne vois pas en quoi cet article va aider la prise de d\u00e9cision pour notre avenir. Il servira au mieux \u00e0 alimenter \"ma\" page wikipedia (dont je n'ai pas \u00e9crit une ligne) o\u00f9, la derni\u00e8re fois que j'ai regard\u00e9, j'ai compt\u00e9 plus de 90 erreurs factuelles ou d'interpr\u00e9tation.\"\n\nMon commentaire ne caresse pas le magazine dans le sens du poil, mais il fait partie d'un droit de r\u00e9ponse normal, et je n'ai pas l'impression qu'il soit injurieux ou insultant. Sa suppression reste donc une \u00e9nigme. \n\nPuisqu'un post offre plus de place qu'un commentaire j'en profite pour rajouter deux \u00e9l\u00e9ments.\n\n1 - Mon temps professionnel est essentiellement affect\u00e9 (dans cet ordre) au quotidien de Carbone 4, \u00e0 celui du Shift Project, \u00e0 des conf\u00e9rences et interventions, et \u00e0 des publications. Les media et les politiques sont marginaux en termes de temps pass\u00e9. Ce portrait ne mentionne ni C4 ni The Shift Project...\n\n2 - c'est \u00e0 nouveau le nucl\u00e9aire qui m'est coll\u00e9 sur la figure comme \"premier \u00e9l\u00e9ment distinctif\". Il suffit pourtant d'\u00e9couter n'importe laquelle de mes conf\u00e9rences (https://bit.ly/3l9HEzR ) pour voir que cela ne correspond pas \u00e0 mon discours. Mais \"pronucl\u00e9aire\" ca doit faire plus de clics que \"vulgarisateur\"..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7028122018780708864,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7028122019623772160,urn:li:activity:7028122019623772160,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 284, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7028122019623772160,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7028122019623772160,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7028122019623772160", + "threadId": "activity:7028122019623772160", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028122019623772160", + "urn": "urn:li:activity:7028122019623772160", + "numComments": 398, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7028122019623772160", + "reactionTypeCounts": [ + { + "count": 8812, + "reactionType": "LIKE" + }, + { + "count": 767, + "reactionType": "PRAISE" + }, + { + "count": 660, + "reactionType": "APPRECIATION" + }, + { + "count": 163, + "reactionType": "INTEREST" + }, + { + "count": 72, + "reactionType": "MAYBE" + }, + { + "count": 72, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7028122019623772160", + "numLikes": 10546, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028122019623772160", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 10573, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7027994566683193344", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7027994566683193344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7027994566683193344)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_m%C3%A9tro-rer-val%C3%A9rie-p%C3%A9cresse-cherche-des-activity-7027994566683193344-utYA?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7027994565676527616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7027994566683193344", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7027994565676527616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "f2H4ovaIe+QRhejGARwr+Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8220200705461401985", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675608332996?e=1677240000&v=beta&t=NevZkHjZzFlp88L6kQ7JGRc8gtwYCfx9o_hLaXZMnrc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675608332996?e=1677240000&v=beta&t=plDSFYLKncqLc9HLFyLnDSN1DDETi612za6gAwmamr8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675608332996?e=1677240000&v=beta&t=aF1rReHtImmf13V-NJa3m4w2GznjnMD0sYgHGqcB_20", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675608332996?e=1677240000&v=beta&t=BXesrOt5P0SmnCoh0aXx26eQ2l6410zgA2LNU4QJajQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQH-4_tZMQq8Hw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8220200705461401985)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8220200705461401985)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: M\u00e9tro, RER : Val\u00e9rie P\u00e9cresse cherche des financeurs tous azimuts by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/tourisme-transport/metro-rer-valerie-pecresse-cherche-des-financeurs-tous-azimuts-1899774" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "M\u00e9tro, RER\u00a0: Val\u00e9rie P\u00e9cresse cherche des financeurs tous azimuts" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7027994565676527616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans notre pays, \u00e0 peu pr\u00e8s tout le monde est d'accord pour avoir plus de transports en commun. Par contre, quand il s'agit de d\u00e9cider qui doit passer \u00e0 la caisse pour le permettre, l'unanimit\u00e9 est un peu moins de mise !\n\nC'\u00e9tait d\u00e9j\u00e0 un sujet quand l'\u00e9conomie \u00e9tait en croissance, et paradoxalement une \u00e9conomie mal portante pourrait contribuer \u00e0 augmenter encore la demande.\n\nCela vient du fait que notre comportement en mati\u00e8re de d\u00e9placements du quotidien a ob\u00e9it depuis longtemps \u00e0 une double logique budg\u00e9taire (ce que montrent les statistiques des \u00e9conomistes des transports).\n\nLa premi\u00e8re est \u00e9conomique : nous utilisons g\u00e9n\u00e9ralement pour nous d\u00e9placer le moyen le plus cher que notre revenu nous autorise. En premi\u00e8re approximation les personnes qui peuvent se payer une voiture et qui ont une place de parking chez eux et au travail utilisent l'automobile, et les autres les transports en commun (tendance que le covid a renforc\u00e9e).\n\nLorsque la conjoncture devient plus difficile sans pour autant priver les gens de leur motifs d\u00e9placement, une partie de la population a plus de mal \u00e0 utiliser son v\u00e9hicule, et voudrait plus en transports en commun. Cet effet est encore renforc\u00e9 lorsque la difficult\u00e9 \u00e9conomique vient de l'\u00e9nergie (moindre disponibilit\u00e9 et/ou prix qui montent tr\u00e8s fort, comme en 2008).\n\nA cela vient s'ajouter le fait que, sur s\u00e9rie longue, nous avons fonctionn\u00e9 \u00e0 temps de d\u00e9placement constant. L'arriv\u00e9e de voitures en masse depuis l'apr\u00e8s-guerre n'a pas \u00e9t\u00e9 utilis\u00e9 pour aller plus vite au m\u00eame endroit, mais pour passer le m\u00eame temps \u00e0 faire plus de km (parce que cela \u00e9largit l'univers de choix pour le logement, le travail, l'\u00e9cole...). \n\nL'augmentation du nombre de voitures - en France le parc auto est pass\u00e9 de 3 \u00e0 38 millions d'unit\u00e9s de 1945 \u00e0 maintenant) - a donc induit de l'\u00e9talement urbain, cr\u00e9ant des zones avec des densit\u00e9s d'habitants au km2 plus faibles qu'en ville, peupl\u00e9es de gens qui font des dizaines de km en auto tous les jours (cela se constate partout dans le monde).\n\nAller \"chercher\" en transports en commun des p\u00e9riurbains qui n'(aur)ont plus les moyens \u00e9conomiques d'utiliser leur voiture coute(ra) beaucoup plus cher par personne que pour les urbains, puisque les couts d'un syst\u00e8me de transports en commun sont pour partie des couts fixes.\n\nEnfin m\u00eame pour les infrastructures existantes les charges augmentent avec la fr\u00e9quentation : par exemple s'il y a une fr\u00e9quence de passage plus importante cela signifie plus de personnel, plus de mat\u00e9riel roulant, plus d'\u00e9nergie, plus de maintenance...\n\nLe casse t\u00eate du Syndicat des Transports d'Ile de France (90% du trafic du quotidien fran\u00e7ais en mode ferr\u00e9) n'est donc pas r\u00e9solu demain matin. En effet, \u00e0 l'horizon de quelques d\u00e9cennies l'\u00e9nergie sera de moins en moins disponible, et \u00e0 la suite les flux physiques sous-jacents de l'\u00e9conomie aussi. Qui peut-on et doit-on \"transporter en commun\" quand il y a globalement moins de moyens : c'est d\u00e9sormais la question qui se pose." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7027994565676527616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7027994566683193344,urn:li:activity:7027994566683193344,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 67, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7027994566683193344,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7027994566683193344,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7027994566683193344", + "threadId": "activity:7027994566683193344", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027994566683193344", + "urn": "urn:li:activity:7027994566683193344", + "numComments": 155, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7027994566683193344", + "reactionTypeCounts": [ + { + "count": 859, + "reactionType": "LIKE" + }, + { + "count": 127, + "reactionType": "INTEREST" + }, + { + "count": 69, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7027994566683193344", + "numLikes": 1069, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027994566683193344", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1070, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 Edited \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7027692001311498240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7027692001311498240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7027692001311498240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carburants-les-gilets-jaunes-ont-ils-activity-7027692001311498240-vtZx?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7027692000636203008", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7027692001311498240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7027692000636203008", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "VEZdpSdWm1HudRMkKJ3iAg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8462332020454373656", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675719684036?e=1677240000&v=beta&t=J9Nc6Hk1UoYficFB4nvvwC6D9Ro_Ilh_FaINn-u1ALM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675719684036?e=1677240000&v=beta&t=6X7IEa1k_3jQXbmmI3TVE3qEkD1Nskrf4xUCtrmw8QA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675719684036?e=1677240000&v=beta&t=jcX6iT9yBNwBUZ2OLdlCgZ3aJF4k9_M-6Fhpt-__gEs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675719684036?e=1677240000&v=beta&t=RwjeViOHm-TQI9ILxw-AHCY196gOxNqsKNmg35_QK10", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEAoiGuleTReQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8462332020454373656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8462332020454373656)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carburants : les \u00ab gilets jaunes \u00bb ont-ils raison de d\u00e9noncer une hausse des prix ? by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/carburants-les-gilets-jaunes-ont-ils-raison-de-denoncer-une-hausse-des-prix-149158" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carburants\u00a0: les \u00ab\u00a0gilets jaunes\u00a0\u00bb ont-ils raison de d\u00e9noncer une hausse des prix\u00a0?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7027692000636203008,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 2018, la France a v\u00e9cu l'\u00e9pisode des \"gilets jaunes\". A l'\u00e9poque essence et gazole \u00e9taient \u00e0 environ 1,5 euro le litre. C'est d\u00e9sormais entre 1,8 et 2 euros selon la pompe et le type de carburant (https://bit.ly/2SBEC4o ). Et.... rien. Pas d'\u00e9meute, alors que dans le m\u00eame temps le prix du gaz et de l'\u00e9lectricit\u00e9 ont fortement augment\u00e9, sans parler du reste. \n\nSi la raison premi\u00e8re de ce qui s'est pass\u00e9 il y a 4 ans \u00e9tait juste le niveau de prix dans l'absolu, pourquoi tout le monde fait le dos rond actuellement ?\n\nTentons une hypoth\u00e8se : \u00e0 l'\u00e9poque l'Etat avait prononc\u00e9 le mot \"taxe carbone\". Or parler de fiscalit\u00e9 des carburants, c'est d\u00e9battre de la part \u00e0 la main de notre pays, pour laquelle il ne d\u00e9pend \u00e9videmment que de nous de la monter... ou de la baisser. \n\nActuellement, c'est la faute \u00e0 \"pas de chance\". C'est pas de chance si Poutine a envahi l'Ukraine. C'est \"pas de chance\" si le prix de march\u00e9 du baril monte fortement. Et on ne va quand m\u00eame pas menacer la Russie ou l'Irak de l'arme nucl\u00e9aire pour que ces pays augmentent leur production d'or noir !\n\nIl est facile de constater que nous acceptons souvent bien plus facilement les efforts d\u00e9clench\u00e9s par \"pas de chance\" que ceux qui sont le r\u00e9sultat d'une d\u00e9marche intentionnelle. Si les taxes sur les carburants augmentent, on ne nous enl\u00e8vera pas de la t\u00eate que notre pr\u00e9sident, qui devrait nous prendre sous son aile, prend un malin plaisir \u00e0 nous rendre la vie plus difficile !\n\nEt pourtant, l\u00e0 o\u00f9 l'\u00e9volution actuelle est \"pas de chance\", c'est qu'elle est beaucoup plus dommageable pour la population que la taxe carbone envisag\u00e9e \u00e0 l'\u00e9poque par le gouvernement. \n\nL'imp\u00f4t est un recyclage national. Ce que nous payons en plus pour les carburants, l'Etat peut nous le rendre sous forme de travaux d'isolation, de pompes \u00e0 chaleur, de subventions aux v\u00e9hicules \u00e9lectriques ou de pistes cyclables. \n\nQuand le prix du baril monte, cela appauvrit la France (en augmentant le d\u00e9ficit commercial) et personne ne reverra cet argent pour aider le pays \u00e0 s'organiser avec moins d'\u00e9nergie fossile. \n\nEt le paradoxe de l'affaire est que c'est l'un ou l'autre. En effet, le p\u00e9trole \u00e9tant \u00e9puisable (et le pic conventionnel pass\u00e9), si nous ne provoquons pas la baisse de son usage par des mesures qui sont fatalement contraignantes pour quelqu'un, il y aura p\u00e9riodiquement des envol\u00e9es de prix comme celle que nous vivons actuellement ou pire. \n\nIl y a donc d\u00e9carboner et d\u00e9carboner. La voie qui consiste \u00e0 attendre que \"y'en a plus\" enrichit les producteurs et laissera la population au d\u00e9pourvu. Celle qui consiste \u00e0 agir demandera des efforts \u00e0 plus court terme mais beaucoup moins \"plus tard\". \n\nIl reste une condition du succ\u00e8s essentielle : que le gouvernement sache faire la p\u00e9dagogie du probl\u00e8me (pour le moment il ne comprend pas que l'Europe est en d\u00e9clin subi sur le p\u00e9trole depuis 2007) et que toute mesure d'effort s'inscrive dans un plan d'ensemble per\u00e7u comme pertinent. Et l\u00e0 nous n'y sommes pas encore." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7027692000636203008,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7027692001311498240,urn:li:activity:7027692001311498240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 165, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7027692001311498240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7027692001311498240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7027692001311498240", + "threadId": "activity:7027692001311498240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027692001311498240", + "urn": "urn:li:activity:7027692001311498240", + "numComments": 263, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7027692001311498240", + "reactionTypeCounts": [ + { + "count": 3318, + "reactionType": "LIKE" + }, + { + "count": 425, + "reactionType": "INTEREST" + }, + { + "count": 176, + "reactionType": "MAYBE" + }, + { + "count": 96, + "reactionType": "PRAISE" + }, + { + "count": 34, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7027692001311498240", + "numLikes": 4065, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027692001311498240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4066, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7027244366859530240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7027244366859530240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7027244366859530240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_devant-lurgence-climatique-de-plus-en-plus-activity-7027244366859530240-uwL-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7027244365743804417", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7027244366859530240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7027244365743804417", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "NT6paPBMJ1cN84Saesevwg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6921286453414376786", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676123224260?e=1677240000&v=beta&t=qq8EJP7Cnr-nWOBXIy6EobrMwhcuQ3ddAOeGsVNrjio", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676123224260?e=1677240000&v=beta&t=HZpA4044i0OS1ffFlcimmWkMQxLtVFR6-Y95QL5BJoc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676123224260?e=1677240000&v=beta&t=gu5yUmRF1fiw1QUChGZ5u5s7E0y5WE460xwvNo5kpo0", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676123224260?e=1677240000&v=beta&t=7mrP9qCy4gW6FUek7QqJF7LXXfb2YaxI1yBOCnph7Cc", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQG1GnbrKVT1dg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6921286453414376786)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6921286453414376786)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Devant l\u2019urgence climatique, de plus en plus de scientifiques tent\u00e9s par la radicalit\u00e9 : \u00ab La d\u00e9sob\u00e9issance civile est un acte d\u00e9sesp\u00e9r\u00e9, pour alerter sur la situation dramatique dans laquelle on est \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/planete/article/2023/01/26/face-a-la-crise-ecologique-des-scientifiques-tentes-par-la-radicalite-sortez-de-vos-labos-allez-dans-la-rue_6159367_3244.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Devant l\u2019urgence climatique, de plus en plus de scientifiques tent\u00e9s par la radicalit\u00e9\u00a0: \u00ab\u00a0La d\u00e9sob\u00e9issance civile est un acte d\u00e9sesp\u00e9r\u00e9, pour alerter sur la situation dramatique dans laquelle on est\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7027244365743804417,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un m\u00e9decin peut-il se contenter de poser le diagnostic sans recommander de traitement ? En mati\u00e8re de climat, c'est le mandat qui a \u00e9t\u00e9 donn\u00e9 au GIEC : \u00eatre \"policy relevant but not policy prescriptive\", c'est \u00e0 dire d\u00e9crire la situation, mais sans fournir de recommandation sur la voie \u00e0 suivre.\n\nQuand on y r\u00e9fl\u00e9chit bien, ce n'est pas infond\u00e9 : apr\u00e8s tout, se restreindre maintenant pour pr\u00e9server l'avenir n'est pas une d\u00e9cision scientifique mais un choix. Un m\u00e9decin, pour reprendre le parall\u00e8le, peut dire au fumeur qu'il prend des risques, et les lui d\u00e9crire par le menu, mais il ne peut pas physiquement le contraindre \u00e0 s'arr\u00eater (il y a 20 ans je m'\u00e9tais amus\u00e9 - enfin si l'on peut dire - \u00e0 comparer plus largement effet de serre et tabac, car il me semble qu'il y a beaucoup de points communs, et \u00e0 me relire je ne vois pas grand chose \u00e0 changer : https://bit.ly/3YjUeL9 )\n\nIl y a par ailleurs des cas de figure o\u00f9 la r\u00e9ponse \u00e0 la question initiale est oui, parce que m\u00eame en m\u00e9decine on change d'interlocuteur entre diagnostic et th\u00e9rapie. Le radiologue qui vous fait passer l'IRM ne sera pas celui qui vous proposera un traitement derri\u00e8re. La g\u00e9n\u00e9raliste \u00e0 qui vous dites que vous avez \"mal au dos\" n'est pas n\u00e9cessairement celle qui vous recommandera la solution au probl\u00e8me.\n\nEn mati\u00e8re de climat, cette difficult\u00e9 est encore plus grande : le physicien ou la biologiste d\u00e9crivant l'\u00e9volution du syst\u00e8me terre sous l'effet d'\u00e9missions croissantes n'a pas, du seul fait de son m\u00e9tier, de comp\u00e9tences techniques particuli\u00e8res pour proposer la mani\u00e8re de modifier l'organisation humaine et mat\u00e9rielle qui en est \u00e0 l'origine (m\u00eame si les journalistes adorent faire du \"tout en un\" en demandant au scientifique cuisin\u00e9 sur la situation ce qu'il faut faire \u00e0 partir de l\u00e0). \n\nLa question de savoir si des scientifiques doivent ou non \"descendre dans la rue\" pour mieux se faire entendre d\u00e9pend donc de l'effet recherch\u00e9 et du discours tenu.\n\nSi c'est pour militer pour que le diagnostic soit mieux connu, \u00e0 ce moment le/la scientifique est l\u00e9gitime, mais en pratique ce n'est pas d'abord la puissance publique qui est vis\u00e9e, mais d'abord la presse, puisque c'est d'elle dont d\u00e9pend le volume et la qualit\u00e9 de l'information diffus\u00e9e sur le sujet et son lien avec l'organisation du monde. \n\nQu'un(e) climatologue s'encha\u00eene aux grilles de l'Elys\u00e9e ou \u00e0 une centrale \u00e0 charbon fera-t-il des media plus prolixes et performants sur le climat ? Une fois que l'information est connue, la d\u00e9cision qui en d\u00e9coule n'est plus un probl\u00e8me scientifique.\n\nSi ce militantisme a pour objet de faire adopter des mesures particuli\u00e8res (taxe carbone, investissements dans le train, ou isolation des b\u00e2timents), alors la question doit \u00eatre pos\u00e9e sans invoquer la qualit\u00e9 de scientifique : il s'agit de savoir, quel que soit le m\u00e9tier de la personne concern\u00e9e, si bloquer un a\u00e9roport au nom du climat est plus ou moins immoral que de bloquer les trains au nom des retraites. Int\u00e9ressante question !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7027244365743804417,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7027244366859530240,urn:li:activity:7027244366859530240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7027244366859530240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7027244366859530240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7027244366859530240", + "threadId": "activity:7027244366859530240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027244366859530240", + "urn": "urn:li:activity:7027244366859530240", + "numComments": 143, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7027244366859530240", + "reactionTypeCounts": [ + { + "count": 705, + "reactionType": "LIKE" + }, + { + "count": 104, + "reactionType": "INTEREST" + }, + { + "count": 62, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7027244366859530240", + "numLikes": 899, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027244366859530240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 900, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 Edited \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7026974946824192000", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7026974946824192000)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7026974946824192000)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-influenceurs-br%C3%BBlent-le-monde-avec-activity-7026974946824192000-e51E?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7026974945939226624", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7026974946824192000", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7026974945939226624", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "2TeXEcjbVCC7Fpwqkcf/fA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8154188842981148828", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676022195813?e=1677240000&v=beta&t=BI44AFvzi7U8mjhFe6h7ZBJy-hW1CqkFE7ngAVDqLSY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676022195814?e=1677240000&v=beta&t=RLy8N8TGMnSQs9drDFt6a22jWIE8C6-B2JQlW5hFEDM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676022195814?e=1677240000&v=beta&t=119jvpd2x3hjmXoC8C4KiHyF7rpo-TuUMo02KGotGuQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676022195814?e=1677240000&v=beta&t=UPoaLK0PWvbKWfmKetq_sevl8rrDS4HT8BBHFk8AUfM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEn527yRLnsxg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8154188842981148828)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8154188842981148828)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: LES INFLUENCEURS BR\u00dbLENT LE MONDE ? (avec JILL) | LIMIT #episode1 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=xmtCBulbID8" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\u2799 Cette cha\u00eene vit int\u00e9gralement gr\u00e2ce \u00e0 vos dons ! https://linktr.ee/limit.media Secouer le monde de l'influence sur les questions li\u00e9es aux Limites Plan\u00e9taires ? C'est ce que nous allons tenter de faire dans cette nouvelle \u00e9mission : \"Bad Influence\"..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "LES INFLUENCEURS BR\u00dbLENT LE MONDE ? (avec JILL) | LIMIT #episode1" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7026974945939226624,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 350, + "length": 10, + "miniProfile": { + "firstName": "Vinz", + "lastName": "Kant\u00e9", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABnoaesBFyeDnfMQ7vVH_WdqzzSE1gZnFeI", + "occupation": "Cr\u00e9ateur, Animateur, Prod, conf\u00e9rencier chez #LIMIT #SchoolUp \ud83c\udf0d\ud83d\udc9a", + "objectUrn": "urn:li:member:434661867", + "entityUrn": "urn:li:fs_miniProfile:ACoAABnoaesBFyeDnfMQ7vVH_WdqzzSE1gZnFeI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1643988095695?e=1681948800&v=beta&t=7C2zsu2AnUIGYGJLxdwy6H0Pfz49i4bCG42UTyrDQiU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1643988095695?e=1681948800&v=beta&t=4mbItdC9wOaAB8PKJJb-Yb_-TvLU7cJhmTKvMc1TnoE", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQGwWxvh-yImnw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "vinzkante", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1652368741388?e=1681948800&v=beta&t=oBVj0OP183lIxUjW-ObsX93mvqUUhnlf8CUv9CYdkL8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1652368741388?e=1681948800&v=beta&t=QLthymcqCv14W4AiYsuUqj2QbfpGNDM6Pj43wuQjwBY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1652368741388?e=1681948800&v=beta&t=qpYGcnw-PgEP8UZgyFGsOXkDPZUoHvFO1KR2QFlKBb4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1652368741388?e=1681948800&v=beta&t=_jJyLbpMGXX6ocxEt866mRbwvojncDU-oE19Bdveik8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFVgbwuDHeE9Q/profile-displayphoto-shrink_" + } + }, + "trackingId": "nODFSdd7QWuXJSZ1eF9jYA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Les \"influenceurs\" ne sont g\u00e9n\u00e9ralement pas consid\u00e9r\u00e9s comme des grands amis de la lutte contre le changement climatique. Promouvoir des chaussures, des t\u00e9l\u00e9phones, des s\u00e9jours \u00e0 l'\u00e9tranger ou des cosm\u00e9tiques, tout en sautant d'un avion \u00e0 l'autre pour les prises de vues, c'est un peu compliqu\u00e9 \u00e0 marier avec la sobri\u00e9t\u00e9.\n\nC'est apr\u00e8s ce constat que Vinz Kant\u00e9 a bascul\u00e9 de la promotion publicitaire au militantisme climat (avec la cr\u00e9ation de la chaine Limit : https://lnkd.in/eGdVN6Vw ). Mais il y a un prix \u00e0 payer, au sens propre du terme : comme il le dit lui-m\u00eame dans cette vid\u00e9o, cela s'est accompagn\u00e9 d'une tr\u00e8s forte baisse de ses revenus.\n\nIl lui est r\u00e9cemment venu l'id\u00e9e d'aller dialoguer avec des \"coll\u00e8gues\" de l'influence (qui l'accepteraient) comment ils et elles voyaient la question environnementale dans leur m\u00e9tier (et si ca leur causait ou pas des \u00e9tats d'\u00e2me). \n\nLa premi\u00e8re qui a accept\u00e9 de se pr\u00eater au jeu s'appelle Jill (elle est belge, comme celui qui la passe sur le grill). Il en r\u00e9sulte un dialogue int\u00e9ressant entre 2 militant(e)s \u00e0 leur fa\u00e7on, l'un pass\u00e9 \"dehors\" (c'est \u00e0 dire devenu un influenceur \"d\u00e9di\u00e9 climat\"), l'autre rest\u00e9e \"dedans\" (elle fait toujours le m\u00eame m\u00e9tier, mais dit pouvoir ainsi parler \u00e0 des gens pas convaincus).\n\nUne partie de l'\u00e9change tourne donc autour de cette question \u00e9ternelle : pour changer le syst\u00e8me, est-ce plus efficace d'\u00eatre dedans ou dehors ? En fait c'est probablement un faux d\u00e9bat : il faut les deux. Depuis \"dehors\" on d\u00e9stabilise (et sans d\u00e9stabilisation personne ne cherche \u00e0 changer) ; depuis \"dedans\" on construit (phase indispensable apr\u00e8s la d\u00e9stabilisation). \n\nLa meilleure partie de la vid\u00e9o est \u00e0 la fin, avec tout d'abord des statistiques (dont je ne sais pas si elles sont repr\u00e9sentatives du m\u00e9tier) sur les diverses cat\u00e9gories de produits dont Jill a fait la promotion. En premi\u00e8re approximation, la quasi-totalit\u00e9 de ce qui permet \u00e0 cette influenceuse de gagner sa vie est constitu\u00e9 de produits ou services \"pas durables\" (sans que la d\u00e9finition en soit donn\u00e9e, mais quand on regarde la d\u00e9composition par cat\u00e9gorie de produits on arrive assez facilement \u00e0 cette conclusion).\n\nPuis vient le bilan carbone de la cobaye du jour : sans surprise, il est nettement sup\u00e9rieur \u00e0 la moyenne, avion oblige, alors m\u00eame que l'int\u00e9ress\u00e9e consid\u00e9rait avoir fait beaucoup de chemin en installant des panneaux PV sur le toit, en limitant la viande et en minimisant ses d\u00e9placements du quotidien en voiture. \n\nCela illustre l'un des d\u00e9fis de la d\u00e9carbonation : familiariser le grand public avec la notion d'empreinte carbone et de \"contenu carbone\" d'un produit ou service. Car l\u00e0 comme ailleurs il n'y a pas de progr\u00e8s sans mesure !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7026974945939226624,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7026974946824192000,urn:li:activity:7026974946824192000,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 39, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7026974946824192000,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7026974946824192000,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7026974946824192000", + "threadId": "activity:7026974946824192000", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026974946824192000", + "urn": "urn:li:activity:7026974946824192000", + "numComments": 49, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7026974946824192000", + "reactionTypeCounts": [ + { + "count": 893, + "reactionType": "LIKE" + }, + { + "count": 104, + "reactionType": "INTEREST" + }, + { + "count": 47, + "reactionType": "MAYBE" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7026974946824192000", + "numLikes": 1084, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026974946824192000", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1086, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7026294163922911233", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7026294163922911233)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7026294163922911233)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-pr%C3%A9sident-de-la-cop28-appelle-%C3%A0-lutter-activity-7026294163922911233-922j?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7026294163201515520", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7026294163922911233", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7026294163201515520", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "I1tCqavyaeKMunELlVRzzQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8878644420238475260", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676444749074?e=1677240000&v=beta&t=HdzuGwnWeDcS5CaMX3KhVFYZKSr3AlHg0jAdBSUHjmI", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676444749074?e=1677240000&v=beta&t=42ogJq9VCXhOKN7cU_b0F3MeiXYd7eBMbt_6WNn383M", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676444749075?e=1677240000&v=beta&t=PHj4un-PLkxMnKrZNOcUU1oMUe5fNlBuTJ4cLLJmzRw", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676444749075?e=1677240000&v=beta&t=fo2cn5deOZ7E_-pGe1Mvmp4KlrhC7_dboSc1_efm-DA", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D5627AQFU01I3pkKatw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le ministre de l'Industrie des \u00c9mirats arabes unis, Sultan Ahmed Al Jaber, prend la parole lors de l'exposition et de la conf\u00e9rence internationales sur le p\u00e9trole d'Abu Dhabi (ADIPEC) \u00e0 Abu Dhabi, aux \u00c9mirats arabes unis, le 31 octobre 2022." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8878644420238475260)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8878644420238475260)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lefigaro.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le pr\u00e9sident de la COP28 appelle \u00e0 lutter contre le r\u00e9chauffement \u00absans ralentir\u00bb l'\u00e9conomie by lefigaro.fr", + "actionTarget": "https://www.lefigaro.fr/flash-actu/le-president-de-la-cop28-appelle-a-lutter-contre-le-rechauffement-sans-ralentir-l-economie-20230130" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le pr\u00e9sident de la COP28 appelle \u00e0 lutter contre le r\u00e9chauffement \u00absans ralentir\u00bb l'\u00e9conomie" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7026294163201515520,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un certain nombre de personnes se sont \u00e9mues que le pr\u00e9sident de la future COP (ce qui signifie \"Convention Of the Parties\", jargon onusien pour d\u00e9signer la r\u00e9union annuelle de tous les pays qui ont ratifi\u00e9 la Convention Climat) soit le patron de l'op\u00e9rateur national d'un \u00e9tat p\u00e9trolier, qui dit que la croissance ne doit pas \u00eatre affect\u00e9e par les politiques climatiques.\n\nMauvaise nouvelle : il ne fait que r\u00e9citer le texte de la Convention Climat (https://bit.ly/3XTBWAv ).\n\nDans ce document on peut en effet trouver plein d'affirmations qui disent \u00e0 peu pr\u00e8s - voire explicitement - la m\u00eame chose, comme par exemple :\n\n\"(...) the share of global emissions originating in developing countries will grow to meet their social and development needs\".\n\n\"(...) responses to climate change should [avoid] adverse impacts on [economic development], taking into full account the legitimate priority needs of developing countries for the achievement of sustained economic growth (...)\".\n\n\"Policies and measures to protect the climate system against human-induced change should [take] into account that economic development is essential for adopting measures to address climate change\"\n\nSi l'on traduit ces \u00a7 en fran\u00e7ais ordinaire cela donne :\n\n- les pays \"en d\u00e9veloppment\" (cat\u00e9gorie dans laquelle se rangent tous les pays hors OCDE pour faire simple,et donc les \u00e9tats producteurs d'hydrocarbures du Moyen Orient ainsi que la Chine ou l'Inde) s'estiment l\u00e9gitimement en mesure d'augmenter leur part des \u00e9missions sans sortir du cadre de cette Convention.\n\n- les politiques climat (partout) ne doivent pas avoir d'effet adverse sur \"le d\u00e9veloppement\" (en clair la croissance \u00e9conomique), \n\n- et m\u00eame que la croissance est un pr\u00e9requis de toute politique climat !\n\nIl y a \u00e9galement un \u00a7 de la Convention qui concerne directement les \u00e9tats p\u00e9troliers et qui affirme :\n\n\"Recalling also that States have (...) the sovereign right to exploit their own resources pursuant to their own (...) developmental policies, and the responsibility to ensure that activities within their jurisdiction or control do not cause damage to the environment of other States\"\n\nLes p\u00e9troliers ont donc le droit souverain d'extraire le p\u00e9trole de leur sous-sol en \"s'assurant que leurs activit\u00e9s ne causent pas de dommage \u00e0 l'environnement des autres pays\". Cette formulation est pour le moins ambigue. Pourquoi ne pas avoir \u00e9crit explicitement \"(...) the responsibility to ensure that activities (...) do not cause CLIMATE damage to other states\" ?\n\n\"ne pas causer de dommage \u00e0 l'environnement\" peut juste signifier d'\u00e9viter les mar\u00e9es noires...\n\nBref il n'y a pas lieu de s'\u00e9mouvoir tant que cela de cette d\u00e9claration, tr\u00e8s \"ONU compatible\" (rappelons que l'item N\u00b0 8 des Objectifs du D\u00e9veloppement Durable c'est la croissance \u00e9conomique : https://sdgs.un.org/goals ).\n\nL'enseignement qu'il faut en tirer est connu depuis longtemps : aucun miracle ne viendra des COP. L'action doit venir d'ailleurs." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7026294163201515520,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7026294163922911233,urn:li:activity:7026294163922911233,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 84, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7026294163922911233,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7026294163922911233,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7026294163922911233", + "threadId": "activity:7026294163922911233", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026294163922911233", + "urn": "urn:li:activity:7026294163922911233", + "numComments": 181, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7026294163922911233", + "reactionTypeCounts": [ + { + "count": 1736, + "reactionType": "LIKE" + }, + { + "count": 325, + "reactionType": "INTEREST" + }, + { + "count": 144, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "PRAISE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7026294163922911233", + "numLikes": 2282, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026294163922911233", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2323, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7025948734551117824", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7025948734551117824)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7025948734551117824)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_a-ivry-sur-seine-l%C3%A9coquartier-gagarine-truillot-activity-7025948734551117824-3zMv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7025948733804544000", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7025948734551117824", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7025948733804544000", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "y+5mqBHfSQdFIUYXvvl3Zw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9040031523336314907", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676541953918?e=1677240000&v=beta&t=EzMfFKPd7rqg-ehQYPfWDxj96MQiZhg-qKj2BbHhdjk", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676541953919?e=1677240000&v=beta&t=UE1Eo44UlGITYQfi1deemCrpZMchhpSOCE-rRo9pxNY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676541953919?e=1677240000&v=beta&t=rdqaihgFR2mstGlVd3q7S4LM9OucEU72qzBTUo_Bgms", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676541953919?e=1677240000&v=beta&t=cbjyJ6lAhSt7tTdp9wMkTZRngCKKnvq_0m746IczIlw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFyrTAKGfzlXw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9040031523336314907)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9040031523336314907)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: A Ivry-sur-Seine, l'\u00e9coquartier Gagarine-Truillot veut acc\u00e9l\u00e9rer sur l'agriculture urbaine by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/pme-regions/ile-de-france/a-ivry-sur-seine-lecoquartier-gagarine-truillot-veut-accelerer-sur-lagriculture-urbaine-1898826" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "A Ivry-sur-Seine, l'\u00e9coquartier Gagarine-Truillot veut acc\u00e9l\u00e9rer sur l'agriculture urbaine" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7025948733804544000,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La commune d'Ivry sur Seine, qui fait partie de la proche banlieue sud de Paris, d\u00e9marre une op\u00e9ration d'am\u00e9nagement qui comportera 1400 logements (h\u00e9bergeant donc environ 3000 personnes si l'on compte 2,2 personnes par logement). Mais il y aura aussi 2,3 hectares d'agriculture urbaine, permettant aux \u00e9lus de qualifier ce nouveau quartier \"d'agrocit\u00e9\". Est-ce que l'alimentation des habitants du lieu va vraiment significativement changer avec l'arriv\u00e9e d'une surface agricole \u00e0 proximit\u00e9 ?\n\nEn 2015 (la valeur est du m\u00eame ordre de grandeur aujourd'hui), la plan\u00e8te offrait \u00e0 chaque terrien 0,6 hectare de terre agricole (voir graphique en commentaire). Avec 2,3 hectares, on nourrit donc... 4 personnes. Certes, on ne va pas avoir sur cette parcelle \u00e0 la fois des poireaux, des patates, du bl\u00e9, une vache, des pommiers, des poules et du ma\u00efs pour nourrir en totalit\u00e9 4 personnes pendant que les autres habitants n'en verront rien.\n\nMais, quoi que l'on y mette, cela permettra d'\u00e9viter 1 pour mille des flux logistiques associ\u00e9s \u00e0 la nourriture des habitants du futur quartier. Dire dans l'article que cette op\u00e9ration va contribuer de mani\u00e8re discernable \u00e0 une \"logique de circuits courts\" est donc un tout petit peu survendre l'affaire !\n\nEst-ce \u00e0 dire que ce genre de chose ne sert \u00e0 rien ? Pas n\u00e9cessairement :\n- cela a\u00e8re l'espace\n- cela peut permettre \u00e0 des enfants (voire des adultes) de d\u00e9couvrir ce qu'est un mouton ou un plant de pomme de terre\n- cela peut permettre de rappeler qu'une ville n'existe pas sans cultures pour la nourrir, et que le changement climatique met donc en danger les villes par cet aspect l\u00e0 aussi.\n\nMais, tant qu'\u00e0 laisser un espace non b\u00e2ti dans une ville, on peut aussi y mettre des arbres (qui apaisent les habitants et qui \u00e9vitent un peu l'effet ilot de chaleur) et/ou un espace (non imperm\u00e9abilis\u00e9) pour que les enfants aillent se d\u00e9fouler, chose qui est plus difficile quand on doit \u00e9viter de pi\u00e9tiner des plants de salade ou de faire peur aux poules.\n\nUn tel espace ne peut donc avoir qu'une vertu p\u00e9dagogique ou r\u00e9cr\u00e9ative, mais, malheureusement, rien de plus. Par d\u00e9finition m\u00eame, une ville est une concentration d'individus qui se mettent au m\u00eame endroit, en pratique pour \u00e9changer et coop\u00e9rer plus facilement, et par construction m\u00eame c'est donc la cr\u00e9ation d'un d\u00e9s\u00e9quilibre entre la production alimentaire locale et les bouches \u00e0 nourrir.\n\nUne ville doit donc fatalement importer sa nourriture (et tout le reste : v\u00eatements, mat\u00e9riaux de construction, objets pour le logement, etc) d'ailleurs, et plus une ville est grosse plus ses \"tentacules logistiques\" doivent aller chercher loin. C'est pour cela que dans un monde sobre en \u00e9nergie les grosses villes vont avoir du mal \u00e0 survivre : il leur faudra un hinterland bien plus important que ce que les possibilit\u00e9s de transport pourront alors fournir. \n\nDe ce fait, aucune \"agrocit\u00e9\" ne pourra, h\u00e9las, \u00eatre autre chose qu'une cit\u00e9 ordinaire avec une appellation vendeuse. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7025948733804544000,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7025948734551117824,urn:li:activity:7025948734551117824,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 167, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7025948734551117824,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7025948734551117824,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7025948734551117824", + "threadId": "activity:7025948734551117824", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025948734551117824", + "urn": "urn:li:activity:7025948734551117824", + "numComments": 271, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7025948734551117824", + "reactionTypeCounts": [ + { + "count": 1852, + "reactionType": "LIKE" + }, + { + "count": 282, + "reactionType": "INTEREST" + }, + { + "count": 122, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7025948734551117824", + "numLikes": 2313, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025948734551117824", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2323, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7025499114272387072", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7025499114272387072)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7025499114272387072)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9carbonation-les-pme-et-les-eti-en-ordre-activity-7025499114272387072-ZEWu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7025499113316085760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7025499114272387072", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7025499113316085760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "l3obG4TKg2I3R4l2r63zLQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7703886279211765749", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676467730494?e=1677240000&v=beta&t=AcsdPyJWvc6BGBGDmEXNv_toOaHRgN28IT2kimJ0e3g", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676467730494?e=1677240000&v=beta&t=9K65Tw5eJAeIH57tWy5YmldhlHwR3U8X-WaF4FDJAPw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676467730494?e=1677240000&v=beta&t=IVvA_vVyPwz1a2YcAwZGeL3CRp-z96E5G0dkSzXiI8g", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676467730494?e=1677240000&v=beta&t=iJmx_cI620TjGv9VgzasfG7m1s1uSdMfHTI19-ztfN4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEgbWHTTquFgg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7703886279211765749)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7703886279211765749)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: D\u00e9carbonation : les PME et les ETI en ordre dispers\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/pme-regions/actualite-pme/decarbonation-les-pme-et-les-eti-en-ordre-disperse-1901217" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9carbonation\u00a0: les PME et les ETI en ordre dispers\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7025499113316085760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1790, + "length": 13, + "miniProfile": { + "firstName": "Cl\u00e9ment", + "lastName": "Ramos", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAJ_kowBTgD4YvBxiCLnHECQS6-R87bx81Q", + "occupation": "Business strategy, Energy & Climate Change | Principal at Carbone 4", + "objectUrn": "urn:li:member:41915020", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAJ_kowBTgD4YvBxiCLnHECQS6-R87bx81Q", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1549373027172?e=1681948800&v=beta&t=vaTqIPfjkIf7gkzU-iYDkLZUZ8DBdinHEejt5hN1bBQ", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1549373027172?e=1681948800&v=beta&t=c2gPGoKF_PvehjIsoxJAiB0u54xCNTCuCxv1_-F12JQ", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQF8LHhZFoKl5A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "clementramos", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517778324190?e=1681948800&v=beta&t=5EhRf7YrFpsgXEhC0mSkPTnS86yyjCLrljHaANLSVV8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517778324190?e=1681948800&v=beta&t=1ldYL9bsWZJaDfKoOI2J47pebd5GvJLMgsaVvCgSw1U", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517778324190?e=1681948800&v=beta&t=9ikfNIke-mbTlj83WRPI5cKvEBIS4CJYfH9VzOeqPIQ", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517778324190?e=1681948800&v=beta&t=ha1l25OB-4YD65t8yNnuXqLuHvjSlF77DxJpGYOWW6s", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHtnW54XLAC1A/profile-displayphoto-shrink_" + } + }, + "trackingId": "bgZpPgx1T1Sr6tKrcBL04w==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Plus une entreprise est grosse, plus elle se pr\u00e9occupe de climat. On pourrait trouver cela paradoxal, dans la mesure o\u00f9 les plus grandes entreprises sont aussi, souvent, les plus mondialis\u00e9es et le plus financiaris\u00e9es, donc celles o\u00f9 les possibilit\u00e9s effectives de changer de mod\u00e8le sans y laisser une part significative de leur chiffre d'affaire apparaissent d'embl\u00e9e comme \"pas \u00e9videntes\".\n\nEn effet, \"se d\u00e9carboner\", en pratique, n'est pas juste remplacer les combustibles fossiles utilis\u00e9s en direct par des \u00e9nergies dites sans carbone (en fait il y en a toujours un peu) : il s'agit d'\u00eatre capable de survivre dans un monde o\u00f9 les \u00e9missions baissent globalement de quelques % par an tous les ans et d\u00e8s maintenant.\n\nCela signifie donc survivre alors que des mat\u00e9riaux, des circuits logistiques, des usages \u00e0 l'aval, des pouvoirs d'achat ou du temps libres seront de moins en moins disponibles. Et commet les entreprises qui ont le plus profit\u00e9 de ce que les combustibles fossiles nous ont amen\u00e9 sont aussi souvent les plus grosses, on pourrait penser qu'un ph\u00e9nom\u00e8ne de d\u00e9ni les \u00e9loigne le plus de regarder la question.\n\nIl n'emp\u00eache : selon cet article des Echos, 20\u00a0% des PME fran\u00e7aises ont calcul\u00e9 leur empreinte carbone, alors que ce pourcentage monte \u00e0 37\u00a0% lorsque toutes les tailles d'entreprises sont prises en compte.\n\nCertes la r\u00e9glementation explique beaucoup cela : ce calcul d'empreinte carbone est devenu obligatoire pour les entreprises de plus de 500 salari\u00e9s (et sous certaines conditions va l'\u00eatre pour plus de 250). Un autre \u00e9l\u00e9ment joue aussi : les PME comportent g\u00e9n\u00e9ralement une proportion de cadres plus faible que les grands groupes, avec fatalement moins de personnes aptes \u00e0 consacrer du temps \u00e0 des sujets non imm\u00e9diatement op\u00e9rationnels.\n\nComme l'explique Cl\u00e9ment Ramos dans une interview adjacente \u00e0 cette article (https://bit.ly/3HGegKv ), pour les PME non financi\u00e8res c'est souvent un client important (priv\u00e9 ou public) qui est \u00e0 l'origine du premier bilan carbone, parce qu'il en fait une condition de son achat.\n\nPourtant cette approche poss\u00e8de une valeur ajout\u00e9e tr\u00e8s forte pour la raison suivante : les \u00e9missions viennent toujours de processus physiques ou chimiques. Tracer les \u00e9missions dont d\u00e9pend son entreprise, c'est doc inventorier les flux physiques (et parfois les processus chimiques) dont elle d\u00e9pend. \n\nC'est donc un premier pas indispensable pour comprendre combien il sera facile ou pas de survivre dans un monde qui va se d\u00e9carboner t\u00f4t ou tard, de gr\u00e9 pour cause de climat ou de force pour cause d'\u00e9puisement des combustibles fossiles et de for\u00eats \u00e0 couper. Voir un bilan carbone uniquement comme une obligation r\u00e9glementaire est rater l'essentiel de ce qu'il am\u00e8ne au pilotage strat\u00e9gique \u00e0 moyen terme (voire \u00e0 court terme), m\u00eame pour une PME qui consid\u00e8re tr\u00e8s souvent avoir peu de prise sur sa trajectoire globale." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7025499113316085760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7025499114272387072,urn:li:activity:7025499114272387072,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 62, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7025499114272387072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7025499114272387072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7025499114272387072", + "threadId": "activity:7025499114272387072", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025499114272387072", + "urn": "urn:li:activity:7025499114272387072", + "numComments": 82, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7025499114272387072", + "reactionTypeCounts": [ + { + "count": 1043, + "reactionType": "LIKE" + }, + { + "count": 121, + "reactionType": "INTEREST" + }, + { + "count": 61, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7025499114272387072", + "numLikes": 1253, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025499114272387072", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1253, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7025160160046129153", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7025160160046129153)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7025160160046129153)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-jean-marc-jancovici-explique-pourquoi-activity-7025160160046129153-RaAH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7025160159395991552", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7025160160046129153", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7025160159395991552", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "TmVa5zPrzedV/beO0YpOxw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8092899943283074825", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676406251527?e=1677240000&v=beta&t=xTc_CMEn0zgM9xPDFuujjTkxxqI5TeT9AQZgaSYOY24", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676406251527?e=1677240000&v=beta&t=GTKO4VDGv9-2R33yGuDWwgGdQM5QdQ5P55muVdkYDo8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676406251527?e=1677240000&v=beta&t=cQ5hHn9PvGhsg4UdnQ21xilKlRTTZ6NWC5LjLKHk0ls", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676406251527?e=1677240000&v=beta&t=1gGEEFfWJ1JpS4nkDBjSws1aA2Qr5cWXrcFboNpbG1Y", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFCDv5onsOKlA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8092899943283074825)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8092899943283074825)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : Jean-Marc Jancovici explique pourquoi le secteur de la montagne est en p\u00e9ril by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900229868-climat-jean-marc-jancovici-explique-pourquoi-le-secteur-de-la-montagne-est-en-peril" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat : Jean-Marc Jancovici explique pourquoi le secteur de la montagne est en p\u00e9ril" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7025160159395991552,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans une semaine c'est le d\u00e9but des vacances scolaires de f\u00e9vrier. Celles et ceux qui ont aujourd'hui la chance de profiter des sports d'hiver auront-il (ou leurs enfants) toujours la possibilit\u00e9 d'y partir \u00e0 l'avenir ?\n\nAvant l'\u00e9nergie abondante - disons avant guerre - les habitants des pays de montagne \u00e9taient parmi les plus pauvres d'un pays. La Suisse - largement compos\u00e9e de montagne - \u00e9tait elle-m\u00eame un des pays les plus pauvres d'Europe. \n\nEt puis l'arriv\u00e9e des \u00e9nergies fossiles a donn\u00e9 des cong\u00e9s pay\u00e9s aux m\u00e9nages (parce que les machines travaillent \u00e0 notre place), une voiture \u00e0 chacun d'entre eux, a permis l'augmentation de la production de b\u00e9ton et d'acier - indispensables pour \"am\u00e9nager\" les stations de ski, et enfin a permis de chauffer les b\u00e2timents et de permettre la douche chaude alors qu'il fait -15 \u00b0C dehors. \n\nEt voici que les zones recul\u00e9es de montagne sont devenus des \"paradis \u00e9conomiques\". 50% du PIB de la Savoie repose aujourd'hui sur le tourisme !\n\nBien sur, pour qu'il y ait des sports d'hiver, il faut aussi un hiver, ou plus pr\u00e9cis\u00e9ment de la neige. D\u00e9sormais cette derni\u00e8re peut \u00eatre artificielle (on dit pudiquement \"de culture\" ;) ) mais cela demande quand m\u00eame qu'il fasse assez froid.\n\nLes sports d'hiver, c'est donc de la neige toujours l\u00e0 et de l'\u00e9nergie abondante. Mais les deux sont d\u00e9sormais menac\u00e9s : la neige par le r\u00e9chauffement climatique, qui va raccourcir - et supprimer \u00e0 basse altitude - la pr\u00e9sence de neige naturelle, voire artificielle s'il faut vraiment trop chaud, et l'\u00e9nergie par la d\u00e9crue des combustibles fossiles, parce que les moyens de transport collectifs pour aller en station ne sont pas souvent \u00e0 l'\u00e9chelle.\n\nUn Samedi de f\u00e9vrier il va arriver 5000 \u00e0 10000 personnes dans une grosse station : il faudrait 6 \u00e0 12 TGV par station avec tous les vacanciers venant du m\u00eame endroit ou presque pour acheminer la m\u00eame quantit\u00e9 de monde ! \n\nL'avenir des stations de ski dans un monde sobre et sans neige est donc un gros point d'interrogation. Il n'est h\u00e9las pas sur que, pour les \u00e9lus des communes qui h\u00e9bergent ces activit\u00e9s (et pour les entreprises qui en vivent), il y ait partout une intense r\u00e9flexion sur la mani\u00e8re d'anticiper plut\u00f4t que de subir. Ca serait surement utile !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7025160159395991552,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7025160160046129153,urn:li:activity:7025160160046129153,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 91, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7025160160046129153,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7025160160046129153,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7025160160046129153", + "threadId": "activity:7025160160046129153", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025160160046129153", + "urn": "urn:li:activity:7025160160046129153", + "numComments": 193, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7025160160046129153", + "reactionTypeCounts": [ + { + "count": 1499, + "reactionType": "LIKE" + }, + { + "count": 218, + "reactionType": "INTEREST" + }, + { + "count": 79, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7025160160046129153", + "numLikes": 1834, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025160160046129153", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1837, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7024641174925664256", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7024641174925664256)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7024641174925664256)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pour-soccuper-s%C3%A9rieusement-denvironnement-activity-7024641174925664256-wusy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7024641172417474561", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7024641174925664256", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7024641172417474561", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "GxDJfPgQvp87VbsDXBylZg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGGpQwktMajlw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGGpQwktMajlw", + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1674804966150?e=1679529600&v=beta&t=4nvMQobPmiQmQ0cQySUBrzXvVffEKJ3rt4lydaeOr4I", + "expiresAt": 1679529600000, + "height": 533 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1674804966143?e=1679529600&v=beta&t=L1cFbAmVbQWYTfu0_yw8S8engShDwhqJL2RIBFmI56o", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280/0/1674804966143?e=1679529600&v=beta&t=AAO9KvyhTo6uL1trVaXdLebl0EO3Rc6XsaYGwWKMfW0", + "expiresAt": 1679529600000, + "height": 533 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1674804966143?e=1679529600&v=beta&t=zcW7DEJx9fV9GZ9b3R13Tc7dVTfB8cSK2mbbKG0hv6E", + "expiresAt": 1679529600000, + "height": 319 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1674804966143?e=1679529600&v=beta&t=yDbg19929du6KWGypryW05rZ9DQ7lTlOG_obABHow9g", + "expiresAt": 1679529600000, + "height": 106 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1674804966143?e=1679529600&v=beta&t=n057-2A7XTJJWiXaF5eL_6Fnw03qbnjPEfC5zdRvbek", + "expiresAt": 1679529600000, + "height": 533 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGGpQwktMajlw/feedshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7024641172417474561,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pour s'occuper s\u00e9rieusement d'environnement, il faut certes poser des objectifs et imaginer des actions, mais il faut aussi des gens pour s'en occuper. L'incendie climatique ne s'\u00e9teindra pas sans pompiers appropri\u00e9s !\n\nPour une fois ce post va donc concerner ce pour quoi Linkedin a \u00e9t\u00e9 con\u00e7u :) : des offres d'emploi, pour quelques entit\u00e9s et des postes en lien avec la question.\n\nA tout seigneur, tout honneur : on commence par la puissance publique. \n\nLa Direction G\u00e9n\u00e9rale du Tr\u00e9sor (Bercy) cherche :\n\ud83d\udc49Un(e) adjoint(e) au chef du p\u00f4le \"Z\u00e9ro carbone\" : https://bit.ly/407hmOD\n\ud83d\udc49Un(e) adjoint(e) chef du bureau Politique \u00e9conomique France en charge de la transition \u00e9cologique : https://bit.ly/3Hubtno\n\nLa Direction G\u00e9n\u00e9rale des Entreprises (Bercy) cherche :\n\ud83d\udc49 Un(e) directeur de projets \"D\u00e9carbonation, Comp\u00e9titivit\u00e9 et D\u00e9veloppement de l'Industrie\" : https://bit.ly/3wOtoiN\n\ud83d\udc49Un(e) \u00e9conomiste \u2013 d\u00e9carbonation, comp\u00e9titivit\u00e9 et comp\u00e9tences dans l'industrie : https://bit.ly/3H9vHBz\n\ud83d\udc49Un(e) \u00e9conomiste \u2013 transition \u00e9cologique des services marchands : https://bit.ly/4066Mra\n\ud83d\udc49Un(e) \u00e9conomiste \u2013 comp\u00e9titivit\u00e9, la transition \u00e9cologique et les comp\u00e9tences : https://bit.ly/3Y0TACj\n\ud83d\udc49Un(e) charg\u00e9(e) de mission Transition \u00e9cologique transports-d\u00e9veloppement nouvelles mobilit\u00e9s : https://bit.ly/3kIbYkZ\n\nFrance Strat\u00e9gie cherche :\n\ud83d\udc49 Un(e) chef(fe) de projet au secr\u00e9tariat permanent de la Plateforme RSE : https://bit.ly/3WHSiea\n\nAu Haut Conseil pour le Climat l'offre du jour est pour :\n\ud83d\udc49 Un(e) charg\u00e9(e) de mission agriculture et alimentation : https://bit.ly/3ZVjh8W\n\nPlus g\u00e9n\u00e9ralement, les minist\u00e8res et les collectivit\u00e9s cherchent de plus en plus sur ces sujets climat-\u00e9nergie, \u00e0 savoir :\n\ud83d\udc49Ici des dizaines d'offres \"d\u00e9carbonation\" : https://lnkd.in/e9cDvwnA\n\ud83d\udc49Ici des dizaines d'offres \"climat\" : https://lnkd.in/eRWGRuH5\n\ud83d\udc49Ici des dizaines d'offres \"sobri\u00e9t\u00e9\" : https://lnkd.in/eBsy266J\n\nEnsuite on va passer au monde associatif.\n\nAu Shift Project nous recrutons :\n\ud83d\udc49 Un(e) charg\u00e9(e) de gestion administrative : https://lnkd.in/ed2AqeNM\n\ud83d\udc49 Un(e) responsable adjoint(e) Administration et Finances : https://lnkd.in/eqB_MJth\n\nBloom (association militant pour une p\u00eache durable) recrute :\n\ud83d\udc49 Un(e) responsable de campagne internationale avec profil ing\u00e9nieur sp\u00e9cialiste de la p\u00eache : https://bit.ly/3R3OVNC\n\nNB : Bloom et The Shift Project ont actuellement une collaboration et ce poste y est associ\u00e9.\n\nLe CJD - Centre des jeunes dirigeants - propose en alternance un poste de charg\u00e9(e) de projet transition VTE Vert : https://bit.ly/3wylpGa\n\nEnfin, dans le monde priv\u00e9, charit\u00e9 bien ordonn\u00e9e etc, c'est \u00e0 Carbone 4 qu'il y a une dizaine de postes \u00e0 pourvoir qui sont d\u00e9crits sur https://lnkd.in/dxzysp75\n\nBonne chance !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7024641172417474561,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7024641174925664256,urn:li:activity:7024641174925664256,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 167, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7024641174925664256,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7024641174925664256,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7024641174925664256", + "threadId": "activity:7024641174925664256", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024641174925664256", + "urn": "urn:li:activity:7024641174925664256", + "numComments": 222, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7024641174925664256", + "reactionTypeCounts": [ + { + "count": 3955, + "reactionType": "LIKE" + }, + { + "count": 263, + "reactionType": "PRAISE" + }, + { + "count": 197, + "reactionType": "APPRECIATION" + }, + { + "count": 83, + "reactionType": "EMPATHY" + }, + { + "count": 37, + "reactionType": "INTEREST" + }, + { + "count": 27, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7024641174925664256", + "numLikes": 4562, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024641174925664256", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4565, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7024289540320153600", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7024289540320153600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7024289540320153600)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_souverainet%C3%A9-et-ind%C3%A9pendance-%C3%A9nerg%C3%A9tique-activity-7024289540320153600-IgB-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7024289539351310336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7024289540320153600", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7024289539351310336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "wAanpILxL3vQJYiB2slJ4A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7932056655692603002", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676473141565?e=1677240000&v=beta&t=eu0XCViACOW3OmcNMdMo1Oc8nagNk1cGogLKuGag_R8", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676473141565?e=1677240000&v=beta&t=LCcxG_bm0l2EfOt2xYYrLcyiGpFI60bNB41xYGR3kvI", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676473141565?e=1677240000&v=beta&t=d09FP4HlB3D1gruUzRjAHlFka88cxAfTbfOehlBb7gQ", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676473141565?e=1677240000&v=beta&t=brf3LOZwWLz4uvm2fcHGo_7-PRQVV5bus1efMtQRcZE", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGQ_hdPORoVTw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5612499999999999 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7932056655692603002)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7932056655692603002)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "videos.assemblee-nationale.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : Mme Catherine MacGregor, directrice g\u00e9n\u00e9rale du groupe Engie ; M. Daniel Verwaerde, membre de l\u2019Acad\u00e9mie des technologies - Mardi 6 d\u00e9cembre 2022 on videos.assemblee-nationale.fr", + "actionTarget": "https://videos.assemblee-nationale.fr/video.12589032_638f56752774f.souverainete-et-independance-energetique-de-la-france--mme-catherine-macgregor-directrice-generale-6-decembre-2022" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "- \u00c0 16 heures: - Audition, ouverte \u00e0 la presse, de Mme Catherine MacGregor, Directrice g\u00e9n\u00e9rale du groupe Engie - \u00c0 18 heures: - Audition, ouverte \u00e0 la presse, de M. Daniel Verwaerde, ancien Administrateur g\u00e9n\u00e9ral du CEA, et Membre de l\u2019Acad\u00e9mie des..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : Mme Catherine MacGregor, directrice g\u00e9n\u00e9rale du groupe Engie ; M. Daniel Verwaerde, membre de l\u2019Acad\u00e9mie des technologies - Mardi 6 d\u00e9cembre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7024289539351310336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1379, + "length": 19, + "miniProfile": { + "firstName": "Catherine", + "lastName": "Fiamma MacGregor", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAABMcfABmsLl9zpQE2-syajg5lwtdTCOZjw", + "occupation": "Group CEO and Board Member at ENGIE", + "objectUrn": "urn:li:member:5009904", + "entityUrn": "urn:li:fs_miniProfile:ACoAAABMcfABmsLl9zpQE2-syajg5lwtdTCOZjw", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1608050700184?e=1681948800&v=beta&t=cxm9Ma0-2icVn2YAj5mrqFPOrNbwWKzpagc9-24weG4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1608050700184?e=1681948800&v=beta&t=FV3Kw5GJ8e_H3u0YUEctfp_JPq1kJXXr4Q1idjAyRjA", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQFrrX3rVRm71Q/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "catherine-fiamma-macgregor-3008171", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1608050753988?e=1681948800&v=beta&t=WG_rCAC0oM1_fHPqUSvzFpK6jOSm7FlgvHO6qZds1y0", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1608050753988?e=1681948800&v=beta&t=k5cdb5Lsgk7xvYkgBzPhYXRj6QYmeX5MUVGNkN3gV-8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1608050753988?e=1681948800&v=beta&t=i6_539fPpvXp8EVSsfA5EwYShkTNgNkjpXTUwTOZYRY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1608050753988?e=1681948800&v=beta&t=p5IqE_Qe_lIF3g6jypV_Sot3TbOLyvEVqRxDqrX5nsQ", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQGrYmTQGJfdXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "M5Ll5ke4S6ewxGT1U6nGOg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "La \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\", c'est un peu le Thinkerview de l'\u00e9nergie du moment. Chaque personne qui passe sur le grill dispose d'une heure et demie minimum pour s'exprimer, et globalement les questions sont assez pr\u00e9cises (les r\u00e9ponses parfois un peu moins !).\n\nQuand on regarde la liste des \"auditionn\u00e9s\", il est facile de constater que globalement c'est l'\u00e9lectricit\u00e9 qui concentre l'essentiel du \"temps d'antenne\". Certes Patrick Pouyann\u00e9 est pass\u00e9 \"dire bonjour\", mais globalement on ne parle pas d'hydrocarbures dans cette enceinte \u00e0 proportion de leur importance dans l'ensemble de notre syst\u00e8me \u00e9nerg\u00e9tique.\n\nLors de cette audition de la patronne d'Engie, qui date du 6 d\u00e9cembre dernier, il a donc beaucoup \u00e9t\u00e9 question, sans surprise, de gaz. Qu'est-ce que que l'on y trouve ?\n\nD'abord, tr\u00e8s peu d'\u00e9changes ont port\u00e9 sur le pass\u00e9 de la DG d'Engie (qui a fait la quasi-totalit\u00e9 de sa carri\u00e8re dans l'amont p\u00e9trolier et gazier : https://bit.ly/3RfZwFd ) ou de son entreprise, alors que c'\u00e9tait le cas pour les autres \"auditionn\u00e9s\". Pourtant, avec le titre de cette commission d'enqu\u00eate, c'est bien du pass\u00e9 dont il est question ! Ont surtout \u00e9t\u00e9 abord\u00e9s les projets d'Engie et le potentiel de ceci ou cela \u00e0 l'avenir, ce qui est n\u00e9anmoins int\u00e9ressant quand m\u00eame, bien s\u00fbr.\n\nCatherine MacGregor affirme en particulier que le gaz fran\u00e7ais sera d\u00e9carbon\u00e9 \u00e0 20% en 2030 et totalement en 2045 (sans donner les volumes concern\u00e9s). Il y a 2 mani\u00e8res de faire du gaz d\u00e9carbon\u00e9 : la m\u00e9thanisation d'une part (par fermentation de biomasse renouvelable), et la production d'hydrog\u00e8ne d\u00e9carbon\u00e9 d'autre part (ce dernier pouvant ensuite \u00eatre utilis\u00e9 tel quel ou associ\u00e9 \u00e0 du carbone biog\u00e9nique pour faire des combustibles gazeux ou liquides).\n\nL'hydrog\u00e8ne d\u00e9carbon\u00e9 s'obtient soit par \u00e9lectrolyse avec de l'\u00e9lectricit\u00e9 d\u00e9carbon\u00e9e, soit par reformage du m\u00e9thane avec capture et s\u00e9questration de l'ensemble du CO2 \u00e9mis par le processus (voir https://bit.ly/3DgTyhr pour un rapide panorama).\n\nEn 2021, le seul gaz d\u00e9carbon\u00e9 vient de la m\u00e9thanisation et c'est 1% du gaz utilis\u00e9 en France (voir graphique en commentaire). La d\u00e9carbonation totale du gaz est donc un gros point d'interrogation qui, dans notre pays, fait l'objet de consid\u00e9rablement moins d'attention m\u00e9diatique que celle de l'\u00e9lectricit\u00e9. \n\nDans cette audition, le biogaz est qualifi\u00e9 d'\u00e9nergie \"locale\". C'est vrai pour le v\u00e9g\u00e9tal qui finira dans le m\u00e9thaniseur. Mais ce dernier est fait de m\u00e9taux qui ne sont pas locaux, et les cultures ou r\u00e9sidus de culture utilis\u00e9s pour la m\u00e9thanisation auront utilis\u00e9 des engrais, pas locaux, ou des tracteurs, qui ne le sont pas plus...\n\nOn retrouve ici la question de l'imbrication des \u00e9nergies, qui rend tr\u00e8s difficile de savoir quel potentiel sera r\u00e9ellement accessible quand (et si) la \"production ENR\" ne b\u00e9n\u00e9ficiera plus de la productivit\u00e9 industrielle globale amen\u00e9e par p\u00e9trole, gaz et charbon." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7024289539351310336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7024289540320153600,urn:li:activity:7024289540320153600,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 43, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7024289540320153600,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7024289540320153600,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7024289540320153600", + "threadId": "activity:7024289540320153600", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024289540320153600", + "urn": "urn:li:activity:7024289540320153600", + "numComments": 102, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7024289540320153600", + "reactionTypeCounts": [ + { + "count": 780, + "reactionType": "LIKE" + }, + { + "count": 174, + "reactionType": "INTEREST" + }, + { + "count": 53, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7024289540320153600", + "numLikes": 1022, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024289540320153600", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1022, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7023553958300250112", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7023553958300250112)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7023553958300250112)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pourquoi-la-france-produit-de-moins-en-moins-activity-7023553958300250112-1zJW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7023553957666922497", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7023553958300250112", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7023553957666922497", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "sXDFalpN5zXZiR6MkSydLA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8497763868858623232", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676365567578?e=1677240000&v=beta&t=6sF3FLmOwaOxEAqjcG1XSbG_-JRchasA8sZlEJ4lbyw", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676365567578?e=1677240000&v=beta&t=JJ3h_B3P3ouBQgJZD7lqbOoG5c1nu1Zx0P3qy7lu9qg", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676365567578?e=1677240000&v=beta&t=Ji7uWHOOMG2Bkg_nl2rev0iV9CVdV4ci16BgXtqJ4Xs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676365567578?e=1677240000&v=beta&t=n3zsoXCj-sU1FbxUN2OSCZbY1uMFeBG8ndpLKCh1NIk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQFr8j9F7XOroA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8497763868858623232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8497763868858623232)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pourquoi la France produit de moins en moins de viande de boeuf by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/conso-distribution/pourquoi-la-france-produit-de-moins-en-moins-de-viande-de-boeuf-1899504" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pourquoi la France produit de moins en moins de viande de boeuf" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7023553957666922497,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans les \u00e9missions d'origine agricole, l'un des postes importants en France est le m\u00e9thane \u00e9mis par le cheptel bovin. Ce m\u00e9thane vient de la fermentation des v\u00e9g\u00e9taux dans la panse de ces grosses bestioles, et ressort sous forme de rots pour l'essentiel.\n\nA cela il faut rajouter les \u00e9missions des cultures fourrag\u00e8res le cas \u00e9ch\u00e9ant (ma\u00efs, soja, c\u00e9r\u00e9ales, pois...). Ces cultures engendrent des \u00e9missions de CO2 pour la fabrication des engrais, et des \u00e9missions de N2O (un gaz \u00e0 effet de serre 265 fois plus puissant par kg que le CO2) lors de l'\u00e9pandage de ces derniers. Le r\u00e9sultat est que manger un kg de boeuf conduit \u00e0 l'\u00e9mission de plusieurs dizaines de kg d'\u00e9quivalent CO2.\n\nOn pourrait donc se r\u00e9jouir de la baisse du cheptel \u00e9voqu\u00e9e par cet article des Echos, expliquant que, depuis 2016, il y a une tendance en ce sens. Sauf que cette \u00e9volution n'est pas du tout pilot\u00e9e, dans un contexte o\u00f9 les \u00e9leveurs verraient leurs revenus maintenus avec des prix unitaires qui augmentent, et des m\u00e9thodes qu montent en gamme. \n\nElle est subie, \u00e0 cause :\n- du non renouvellement des exploitations (de fait \u00e9leveur est un m\u00e9tier tr\u00e8s contraignant et peu r\u00e9mun\u00e9r\u00e9)\n- de la hausse des couts (\u00e9nergie donc engrais, aliments...).\n\nMais en face les consommateurs n'ont pas modifi\u00e9 leurs habitudes alimentaires. La cons\u00e9quence est donc une hausse des importations, et par ailleurs une constance de l'empreinte carbone (pour \"la plan\u00e8te\", la situation n'a pas chang\u00e9). \n\nDans le m\u00eame temps, les consommateurs mangent de moins en moins de fruits et l\u00e9gumes, en particulier les jeunes : selon le pr\u00e9sident de l'Interprofession des fruits et l\u00e9gumes, les personnes de moins de 35 ans en mangent 4 fois moins que leurs grands parents (https://bit.ly/3Xwb7T5 ).\n\nIl y a donc la th\u00e9orie et il y a les faits. En th\u00e9orie, il faudrait que nous mangions plus de v\u00e9g\u00e9taux et moins de viande, et il faudrait que cela se fasse dans un contexte o\u00f9 les exploitants ne sont pas les premiers p\u00e9nalis\u00e9s par cette \u00e9volution. Rappelons que les exploitants agricoles, aujourd'hui, repr\u00e9sentent 2% du PIB, ce qui signifie que la production des denr\u00e9es agricoles brutes repr\u00e9sente de l'ordre de 2% du budget des m\u00e9nages. C'\u00e9tait plus proche du tiers il y a un si\u00e8cle !\n\nDans les faits, nous mangeons toujours autant de viande (et de plus en plus dans des produits transform\u00e9s) et de moins en moins de v\u00e9g\u00e9taux directement utilisables, et par ailleurs il y a de plus en plus de produits \"industriels\" (dont les boissons) et beaucoup trop de sucre.\n\nId\u00e9alement, il faudrait que le cheptel diminue dans un contexte bien diff\u00e9rent : que des \u00e9leveurs aussi nombreux g\u00e8rent des troupeaux plus petits et mieux valoris\u00e9s, et cela dans un contexte o\u00f9 la population modifie ses habitudes alimentaires pour que ce ne soient pas des importations qui prennent le relais (ce qui se passe aussi dans la volaille). Un sujet de plus o\u00f9 il faudrait se creuser un peu plus les m\u00e9ninges !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7023553957666922497,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7023553958300250112,urn:li:activity:7023553958300250112,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 189, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7023553958300250112,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7023553958300250112,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7023553958300250112", + "threadId": "activity:7023553958300250112", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023553958300250112", + "urn": "urn:li:activity:7023553958300250112", + "numComments": 365, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7023553958300250112", + "reactionTypeCounts": [ + { + "count": 3375, + "reactionType": "LIKE" + }, + { + "count": 516, + "reactionType": "INTEREST" + }, + { + "count": 251, + "reactionType": "MAYBE" + }, + { + "count": 64, + "reactionType": "PRAISE" + }, + { + "count": 37, + "reactionType": "APPRECIATION" + }, + { + "count": 18, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7023553958300250112", + "numLikes": 4261, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023553958300250112", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4262, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 Edited \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7023197816785129472", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7023197816785129472)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7023197816785129472)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_hydrog%C3%A8ne-industrie-macron-et-scholz-relancent-activity-7023197816785129472-ANEu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7023197815887548416", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7023197816785129472", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7023197815887548416", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "Ac86KdFNQlZfdGfKTOqFxg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8856854701579573586", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675735775647?e=1677240000&v=beta&t=RY2WBZLCYbQkDxpQzKRDRAzMvcamjaEKNC1uE_J6l_E", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675735775648?e=1677240000&v=beta&t=4ZTgz6wq7E-tbnuE03FyuM5W80nTrp9VA6vrwx5oOVQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675735775648?e=1677240000&v=beta&t=USW9bZW3Yl4lUcNtlLTePM6GDSGjjkFHDiu9VswbhOc", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675735775648?e=1677240000&v=beta&t=jIjKyRvV8uLzeriGk7CY_cyO2srdQqDxunVJoWV94YM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGX80IoBXcWyw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8856854701579573586)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8856854701579573586)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Hydrog\u00e8ne, industrie : Macron et Scholz relancent le couple franco-allemand by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/macron-et-scholz-reaffirment-lamitie-indestructible-entre-la-france-et-lallemagne-1899434" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Hydrog\u00e8ne, industrie\u00a0: Macron et Scholz relancent le couple franco-allemand" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7023197815887548416,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s avoir jet\u00e9 \u00e0 la poubelle une partie de son parc de production \u00e9lectrique d\u00e9carbon\u00e9, l'Allemagne compte d\u00e9sormais sur celui \u00e0 construire \"chez les autres\" pour se fournir en hydrog\u00e8ne \"vert\", c'est-\u00e0-dire produit avec de l'\u00e9lectricit\u00e9 d'origine renouvelable.\n\nDans les diverses annonces que j'ai vues passer sur cette \"strat\u00e9gie\" allemande, il ne figure jamais la r\u00e9ponse aux questions suivantes, qui me semblent pourtant un peu centrales dans l'affaire :\n\n- le nucl\u00e9aire \u00e9tant hors jeu pour nos voisins, pourquoi serait-il plus facile de construire des \u00e9oliennes et des panneaux solaires hors d'Allemagne plut\u00f4t que dans ce pays pour disposer d'\u00e9lectricit\u00e9 bas carbone ?\n\n- les pays d'Afrique du Nord, ou d'autres \"bien insol\u00e9s\", ou \"bien vent\u00e9s\", devront d\u00e9velopper des ENR pour d\u00e9carboner leur propre mix \u00e9lectrique. Pourquoi les premi\u00e8res \u00e9oliennes et les premiers panneaux solaires au sein de ces pays devraient prioritairement servir \u00e0 d\u00e9carboner l'Allemagne plut\u00f4t que leur \u00e9conomie domestique ?\n\n- le rendement de chaine est faible : l'\u00e9lectrolyse \u00e0 partir d'\u00e9lectricit\u00e9 a un rendement de l'ordre de 70% et la liqu\u00e9faction + transport de H2 un rendement de l'ordre de 50% (et je ne connais pas celui de la \"regaz\u00e9ification\" de l'hydrog\u00e8ne). Si on passe par le m\u00e9thane ou l'ammoniac on \u00e9conomise les pertes de liqu\u00e9faction mais on perd l'\u00e9nergie n\u00e9cessaire \u00e0 la synth\u00e8se de CH4 ou NH3. Il faut donc doubler (et peut-\u00eatre plus) la production \u00e9lectrique par rapport \u00e0 une production locale utilis\u00e9e en direct. Pourquoi cela \"tiendrait\" physiquement et \u00e9conomiquement \u00e0 long terme, au surplus dans un monde o\u00f9 les bateaux transportant m\u00e9thane et ammoniac devront utiliser une partie de la cargaison comme carburant puisqu'il n'y a plus droit au p\u00e9trole ?\n\nSortir d'un d\u00e9bat sur l'\u00e9nergie demande toujours de manipuler des chiffres. Lorsqu'elle relaie les annonces gouvernementales, il serait souhaitable que la presse accompagne ces derni\u00e8res de calculs d'ordre de grandeur pour que l'on comprenne ce qui est r\u00e9aliste (ou pas) et \u00e0 quel horizon de temps pour les annonces en question. Si cela conduit \u00e0 prendre quelques jours pour publier un article, le gain en valeur ajout\u00e9e me semble largement justifier le d\u00e9lai.\n\nA tout le moins, la m\u00eame presse pourrait accompagner l'annonce des questions que cela pose. Cela \u00e9viterait, le cas \u00e9ch\u00e9ant, de perdre du temps \u00e0 courir derri\u00e8re des chim\u00e8res, ce qui, quand on est dans une course contre la montre, est un moyen garanti de faire son propre malheur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7023197815887548416,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7023197816785129472,urn:li:activity:7023197816785129472,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 182, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7023197816785129472,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7023197816785129472,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7023197816785129472", + "threadId": "activity:7023197816785129472", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023197816785129472", + "urn": "urn:li:activity:7023197816785129472", + "numComments": 285, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7023197816785129472", + "reactionTypeCounts": [ + { + "count": 3160, + "reactionType": "LIKE" + }, + { + "count": 420, + "reactionType": "INTEREST" + }, + { + "count": 224, + "reactionType": "MAYBE" + }, + { + "count": 120, + "reactionType": "PRAISE" + }, + { + "count": 20, + "reactionType": "EMPATHY" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7023197816785129472", + "numLikes": 3962, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023197816785129472", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3985, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7022876021402042368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7022876021402042368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7022876021402042368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-2011-%C3%A0-une-%C3%A9poque-o%C3%B9-le-gaz-russe-ne-activity-7022876021402042368-GCwD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7022876020517031937", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7022876021402042368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7022876020517031937", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "9BGeyp5o/SZuAVT2aKh88g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHnH9Ao0zcrbA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHnH9Ao0zcrbA", + "artifacts": [ + { + "width": 916, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1674384120996?e=1679529600&v=beta&t=Oi2195liGNQTl-VwNo6eX4R4bMyHtKAjwgX5nA5Y_Qc", + "expiresAt": 1679529600000, + "height": 612 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1674384121145?e=1679529600&v=beta&t=h9Zctk9OuQ88-__5OAeOwQ2R_MczqrnxfCejDQrBaV8", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 916, + "fileIdentifyingUrlPathSegment": "1280/0/1674384121145?e=1679529600&v=beta&t=yzqvYxDNzEjtatFBbYCZIhkss8qFP0S6VD9-PxE3Zr4", + "expiresAt": 1679529600000, + "height": 612 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1674384121145?e=1679529600&v=beta&t=puHSg4Oik6-wAeN9mQVc84Os0gu4PXYrkEiZAYUaudA", + "expiresAt": 1679529600000, + "height": 321 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1674384121145?e=1679529600&v=beta&t=FQSNdAR-Nt3SD6t3AtGm6gUPf49kXYv8PBVdVUMBqTI", + "expiresAt": 1679529600000, + "height": 107 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1674384121145?e=1679529600&v=beta&t=Xiweh-0ed5q5o5mE2Zt719W99cAowF4vS03Ji9LmfEA", + "expiresAt": 1679529600000, + "height": 534 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHnH9Ao0zcrbA/feedshare-shrink_" + }, + "displayAspectRatio": 0.6681222707423581 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7022876020517031937,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 2011, \u00e0 une \u00e9poque o\u00f9 le gaz russe ne faisait pas la une de l'actualit\u00e9, la France a interdit la fracturation hydraulique, mettant ainsi un terme \u00e0 toute exploitation potentielle du gaz dit de schiste sur notre sol. Avons nous \u00e0 l'\u00e9poque supprim\u00e9 une marge de manoeuvre importante pour continuer \u00e0 consommer du gaz ?\n\nC'est la question que j'ai trait\u00e9e dans ma chronique diffus\u00e9e hier matin sur RTL : https://bit.ly/3D5jqNe\n\nPour produire ce type de gaz il faut :\n\n- que le sous-sol comporte une roche m\u00e8re, c'est \u00e0 dire une formation g\u00e9ologique o\u00f9 se sont form\u00e9s des hydrocarbures liquides et gazeux (https://bit.ly/2RsaUS6 ). C'est le cas chez nous.\n\n- que des hydrocarbures y soient toujours pr\u00e9sents. Or, en France, une large partie a tr\u00e8s certainement migr\u00e9 vers les roches-r\u00e9servoir de la Mer du Nord et du bassin aquitain, et il n'y a plus beaucoup de gaz dans la roche m\u00e8re (ce que dit Patrick Pouyann\u00e9 lors d'une audition r\u00e9cente devant une commission d'enqu\u00eate parlementaire : https://bit.ly/3XQMSPd )\n\n- que la roche m\u00e8re soit fracturable (elle peut \u00eatre trop \"molle\" pour cela, comme en Pologne qui a essay\u00e9 pour de vrai)\n\n- qu'il y ait l'espace en surface pour mettre tous les quelques kilom\u00e8tres une installation qui ressemble \u00e0 ce qu'il y a sur la photo (avec les pistes d'acc\u00e8s qui vont avec et qui sont parcourues par des norias de camions pour acheminer l'eau et le sable, et \u00e9vacuer le gaz ou le p\u00e9trole) \n\n- comme la dur\u00e9e de vie d'un puits est faible, il faut qu'il y ait une industrie du forage apte \u00e0 faire en permanence beaucoup de trous (les USA forent environ 100.000 puits par an) qui n'existe pas en Europe\n\nUn dernier point est central : le droit. Aux USA, les ressources mini\u00e8res pr\u00e9sentes sous le sol appartiennent au propri\u00e9taire du sol. Il suffit donc \u00e0 ce dernier de toper avec un exploitant pour que les op\u00e9rations d\u00e9marrent. \n\nEn France, les ressources mini\u00e8res appartiennent \u00e0 l'Etat (j'ai bien peur d'avoir invent\u00e9 dans ma chronique une limite de 10 m\u00e8tres qui n'existe pas ! Heureusement ca ne change pas la suite). \n\nDe ce fait, si vous ou moi avons du gaz (ou du plomb, ou de l'or, ou du lithium) sous notre terrain, nous ne pouvons pas en confier l'extraction \u00e0 un op\u00e9rateur avec partage des recettes : c'est l'Etat qui en est propri\u00e9taire et qui seul peut en attribuer la concession \u00e0 une entreprise. Aux USA, en pareil cas le propri\u00e9taire du terrain devient mon\u00e9tairement riche, alors qu'en France il se fait exproprier !\n\nPour d\u00e9marrer une exploitation \u00e0 large \u00e9chelle de gaz de schiste chez nous, il faudrait donc une concession mini\u00e8re par puits ou ensemble de puits, avec \u00e0 chaque fois des recours possibles \u00e9videmment : il y en aurait pour plus d'une d\u00e9cennie. \n\nEn conclusion, m\u00eame si la fracturation hydraulique \u00e9tait r\u00e9-autoris\u00e9e, le \"gaz de schiste\" ne pourrait pas du tout compenser le d\u00e9clin des importations russes en Europe. Mais le gaz fossile, dont l'usage \u00e9met du CO2, doit dispara\u00eetre d'ici 2050, ce n'est pas vraiment un drame." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7022876020517031937,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7022876021402042368,urn:li:activity:7022876021402042368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 65, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7022876021402042368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7022876021402042368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7022876021402042368", + "threadId": "activity:7022876021402042368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022876021402042368", + "urn": "urn:li:activity:7022876021402042368", + "numComments": 116, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7022876021402042368", + "reactionTypeCounts": [ + { + "count": 733, + "reactionType": "LIKE" + }, + { + "count": 167, + "reactionType": "INTEREST" + }, + { + "count": 64, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7022876021402042368", + "numLikes": 978, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022876021402042368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 981, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7022523538767065088", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7022523538767065088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7022523538767065088)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-pr%C3%A9sident-r%C3%A9pond-%C3%A0-vos-questions-sur-l%C3%A9cologie-activity-7022523538767065088-vcvG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7022523537882001408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7022523538767065088", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7022523537882001408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "qeFez6/KEm7PJBy76afM8g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7813238101893236222", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675718107712?e=1677240000&v=beta&t=tTycSPvq-2cJXqlpoeDYJ-esbvLOS6McsW9PiXCnVhM", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675718107712?e=1677240000&v=beta&t=TGtQVfiZEIEadSEbMen9q5u7hD1PL7U2zyaE9Yns4nI", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675718107712?e=1677240000&v=beta&t=_98YHkqRJl0oPCYH3RRSbGLGaKiE_c5ocf8I6jJNTsQ", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675718107712?e=1677240000&v=beta&t=F-XZ1R-rGoJ-24aUumltjT-4Za3EFwA401Jb1FJMGjI", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHXUyrP0HNczw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7813238101893236222)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7813238101893236222)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "elysee.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Pr\u00e9sident r\u00e9pond \u00e0 vos questions sur l'\u00e9cologie, \u00e9pisode 3. by elysee.fr", + "actionTarget": "https://www.elysee.fr/emmanuel-macron/2023/01/17/le-president-repond-a-vos-questions-sur-lecologie-episode-3" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Pr\u00e9sident r\u00e9pond \u00e0 vos questions sur l'\u00e9cologie, \u00e9pisode 3." + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7022523537882001408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "ApUdRq45TQ6igpb3+b9D6Q==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Emmanuel Macron r\u00e9pond \u00e0 vos questions sur l'\u00e9cologie, \u00e9pisode 3. Je viens de regarder cette courte vid\u00e9o (17 minutes). Ce format a le m\u00e9rite de traiter de questions d\u00e9tour\u00e9es, ce qui rend la critique (que j'esp\u00e8re constructive) circonstanci\u00e9e. Voici quelques commentaires.\n\n- sur le \"qui aurait pu pr\u00e9voir\" : \"on\" pouvait mettre dans le discours de voeux la pr\u00e9cision donn\u00e9e dans cette vid\u00e9o (que ce qui \u00e9tait impr\u00e9visible \u00e9tait la vitesse d'\u00e9volution) et qui levait toute ambiguit\u00e9. Y avoir pens\u00e9 sans l'avoir fait est hautement improbable et il reste toujours \u00e0 savoir pourquoi...\n\n- l'Elys\u00e9e a demand\u00e9 aux 50 sites industriels les plus \u00e9metteurs en France de diviser leurs \u00e9missions par 2 en 10 ans. Il s'agit essentiellement d'industrie lourde (acier, chimie, ciment). Cette derni\u00e8re a besoin de d\u00e9ployer des technologies nouvelles (hydrog\u00e8ne produit par \u00e9lectrolyse, capture et s\u00e9questration du CO2, recyclage chimique) pour baisser ses \u00e9missions de plus de 30% (voir le plan de transformation de l'\u00e9conomie fran\u00e7aise : https://bit.ly/3WqangU ). Cela demande que le pays fasse des investissements de son c\u00f4t\u00e9 (production \u00e9lectrique d\u00e9carbon\u00e9e pour l'\u00e9lectrolyse, organisation de la collecte de mat\u00e9riaux \u00e0 recycler pour les industriels...) qui doivent \u00eatre au rendez vous dans les temps impartis. Cela demande aussi une mani\u00e8re d'obliger les investissements des industriels pour y parvenir. Pour le moment le plan d'ensemble qui le garantisse n'est pas sur la table.\n\n- La \"taxe carbone aux fronti\u00e8res\" n'est pas une taxe (en pratique les importateurs devront acheter des quotas et le prix de ces derniers n'est pas connu \u00e0 l'avance), et surtout ce m\u00e9canisme ne s'appliquera pas, dans un premier temps, \u00e0 l'essentiel des produits import\u00e9s (il s'appliquera en gros aux \"commodit\u00e9s\" : acier, mat\u00e9riaux chimiques de base, ciment). \n\n- la r\u00e9ponse \u00e0 la question \"que faites vous pour le climat\" liste quelques actions dispers\u00e9es, mais ne donne aucune vision d'ensemble (existe-t-elle ?).\n\n- sur le plastique les mesures essentielles sont du c\u00f4t\u00e9 amont (moins d'emballages, plus de de recyclage, etc) \n\n- la for\u00eat doit augmenter sa capacit\u00e9 comme puits tout en contribuant \u00e0 plus d'usages aval, et cela dans un contexte d'adversit\u00e9 climatique croissante. Organiser cela demande des comp\u00e9tences et un plan d'ensemble qui est pour le moment sont plut\u00f4t inexistants c\u00f4t\u00e9 Etat. Ca ne se r\u00e9sume pas \u00e0 \"planter des arbres\".\n\n- la r\u00e9ponse sur les ZFE \u00e9voque des \"solutions\" qui ne seront pas d\u00e9ploy\u00e9es \u00e0 l'\u00e9chelle - voire ne le seront jamais - au moment de l'installation de ces zones. \n\nPersonne ne travaillant seul, pas plus notre pr\u00e9sident que les autres, il est dommage qu'aucune r\u00e9ponse ne parle de la mise \u00e0 niveau de l'\u00e9quipe \u00e9lys\u00e9enne (https://bit.ly/2TcaAU9 ) sur ces sujets. Il me semble qu'il y a l\u00e0 une \"m\u00e8re de toutes les mesures\"." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7022523537882001408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7022523538767065088,urn:li:activity:7022523538767065088,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 74, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7022523538767065088,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7022523538767065088,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7022523538767065088", + "threadId": "activity:7022523538767065088", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022523538767065088", + "urn": "urn:li:activity:7022523538767065088", + "numComments": 112, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7022523538767065088", + "reactionTypeCounts": [ + { + "count": 1231, + "reactionType": "LIKE" + }, + { + "count": 112, + "reactionType": "INTEREST" + }, + { + "count": 60, + "reactionType": "MAYBE" + }, + { + "count": 38, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7022523538767065088", + "numLikes": 1455, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022523538767065088", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1463, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7022131882947407872", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7022131882947407872)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7022131882947407872)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_1973-et-2008-premi%C3%A8res-crises-%C3%A9cologiques-activity-7022131882947407872-AjAs?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7022131881886248960", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7022131882947407872", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7022131881886248960", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "NIPCtVpujc4YbGDSGvnvBg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8326292110930180784", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676272478778?e=1677240000&v=beta&t=AZRqA2grv193oYMxVGbEZGQfBmV7nVbgaQVw5iXKktE", + "expiresAt": 1677240000000, + "height": 725 + }, + { + "width": 883, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676272478778?e=1677240000&v=beta&t=7Dq-8kH7JcpEEKaB4wVZsdeOyDyC8mzVLApS2mpHVDw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676272478778?e=1677240000&v=beta&t=-IjAVqsWqa4iNOWh5pEdD61dh9R1HYKzWgxppQ60r3o", + "expiresAt": 1677240000000, + "height": 145 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676272478778?e=1677240000&v=beta&t=M_c4QuIERWmG6JVGnD8EAIzHItRVybRbfHK6d5Y11AQ", + "expiresAt": 1677240000000, + "height": 435 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEHE4OHtSnMnQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.90625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8326292110930180784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8326292110930180784)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 21 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: 1973 et 2008, premi\u00e8res crises \u00e9cologiques des \u00ab limites \u00e0 la croissance \u00bb ? by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/blog/petrole/2023/01/18/1973-et-2008-premieres-crises-ecologiques-des-limites-a-la-croissance/#_ftn1" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "1973 et 2008, premi\u00e8res crises \u00e9cologiques des \u00ab limites \u00e0 la croissance \u00bb ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7022131881886248960,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1077, + "length": 18, + "miniProfile": { + "firstName": "Matthieu", + "lastName": "Auzanneau", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAA2LO4UB7ks-me882mrEhMLuJ2ZBEpiaEbY", + "occupation": "Directeur du Shift Project", + "objectUrn": "urn:li:member:227228549", + "entityUrn": "urn:li:fs_miniProfile:ACoAAA2LO4UB7ks-me882mrEhMLuJ2ZBEpiaEbY", + "publicIdentifier": "matthieu-auzanneau-00512264", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1676289970483?e=1677240000&v=beta&t=myga6sAPvVyeGpm5LCDRWoTkGvnv6JopDw00RoS8VLg", + "expiresAt": 1677240000000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1676289970483?e=1677240000&v=beta&t=I2UeR-BHRgFXLNlkjKerVCtXsT4xJhqPL2-IBDilx0M", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1676289970483?e=1677240000&v=beta&t=NGjxeEOMQT2OBVSe2Iq8A5NgnQU_KwcGe2VmH_t1-3A", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1676289970483?e=1677240000&v=beta&t=c-bzWYW8YWjyis4tmdkXYzlqvfGIA24nSV_baGgrQoQ", + "expiresAt": 1677240000000, + "height": 100 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E35AQFMUHwrYWXYGw/profile-framedphoto-shrink_" + } + }, + "trackingId": "jNrWEnaoR/OSoXKns8z6SQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2060, + "length": 14, + "miniProfile": { + "firstName": "Michel", + "lastName": "LEPETIT", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAPCu2sBs1ZQWNfIFizcuo9YmjS4ot4sg8A", + "occupation": "Pr\u00e9sident de Global Warning ; Vice-Pr\u00e9sident de The Shift Project", + "objectUrn": "urn:li:member:63093611", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAPCu2sBs1ZQWNfIFizcuo9YmjS4ot4sg8A", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1523477310682?e=1681948800&v=beta&t=ue8_LPuhRYqLcBHpJcVvAHohi2g7yB255issMI8WFWc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1523477310682?e=1681948800&v=beta&t=Nf1OLDZTwcTQonOrp4fD6E2Qj0J3DBw7d_B5qzeeY8o", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHnMKKx14ZNYw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "michel-lepetit", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1526301071435?e=1681948800&v=beta&t=v5P6-ITTB4DhRp7_YX2UEJKwU3kWrY-wKgAHgUHQP24", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1526301071435?e=1681948800&v=beta&t=dg22nwIhKRgV-MvnqXA-YzEeRF21yq4cJ9BfOayE4IE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1526301071435?e=1681948800&v=beta&t=Rq3d8xruf-AjJIxUGFu7BqWSyQztUW2r6v0qdSkqnuk", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1526301071435?e=1681948800&v=beta&t=wh6XyNIs4bp8DCawGp3mG3-isCp60iNvO_vs_2N54mk", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQHcVgn7JKsYxA/profile-displayphoto-shrink_" + } + }, + "trackingId": "k1dIXnNmSHuQSI+/mEVwug==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans le premier chapitre de \"Dormez tranquilles jusqu'en 2100\", j'avais fait remarquer que la \"crise des subprime\" avait suivi 3 ans de stagnation de la production de p\u00e9trole accompagn\u00e9e d'une envol\u00e9e de son prix, et que la d\u00e9c\u00e9l\u00e9ration du PIB am\u00e9ricain avait pr\u00e9c\u00e9d\u00e9 la crise financi\u00e8re et non l'avait suivie.\n\nJ'en avais tir\u00e9 l'hypoth\u00e8se que cette crise financi\u00e8re \u00e9tait un sympt\u00f4me - comme la crise de 1973 - d'une rupture de pente sur l'approvisionnement p\u00e9trolier occidental. En 1973, le monde industriel - essentiellement compos\u00e9 de l'OCDE \u00e0 une \u00e9poque o\u00f9 les BRICS ne pesaient vraiment pas lourd dans l'\u00e9conomie mondiale - avait vu la hausse de son approvisionnement p\u00e9trolier passer brutalement de 8% par an \u00e0 une stagnation puis une hausse beaucoup plus modeste (l\u00e9g\u00e8rement sup\u00e9rieure \u00e0 1% par an).\n\nCela avait mis un tr\u00e8s gros coup de frein \u00e0 la croissance \u00e9conomique, et d\u00e9clench\u00e9 le d\u00e9but d'un ph\u00e9nom\u00e8ne qui n'a fait que prendre de l'ampleur depuis : l'endettement.\n\nDans un article beaucoup plus fouill\u00e9 sur le plan \u00e9conomique que ce que j'avais \u00e9crit \u00e0 l'\u00e9poque, Matthieu Auzanneau (par ailleurs directeur du Shift Project dans le civil :) ) revient sur cette \"crise des subprime\" et documente pourquoi, selon lui, elle est doublement d\u00e9termin\u00e9e par un probl\u00e8me d'approvisionnement p\u00e9trolier. \n\nLe premier facteur d\u00e9clencheur est le choc de 1973, qui a ralenti la croissance et engendr\u00e9 une augmentation constante des dettes dans les \u00e9conomies occidentales apr\u00e8s 1973. Ce que soutient Matthieu Auzanneau - et beaucoup d'autres sp\u00e9cialistes du p\u00e9trole avec lui - est que le choc de 1973 est une cons\u00e9quence directe du pic p\u00e9trolier conventionnel am\u00e9ricain de 1970, \u00e0 une \u00e9poque o\u00f9 les USA produisaient un quart de l'or noir mondial (\u00e0 la m\u00eame \u00e9poque l'URSS c'est 15% et l'Arabie Saoudite c'est 8%). \n\nLe deuxi\u00e8me facteur d\u00e9clencheur est le pic p\u00e9trolier conventionnel mondial en 2008. C'est sur cet \u00e9pisode qu'il s'attarde dans son analyse, qui est convergente avec celle d'autres sp\u00e9cialistes du lien entre p\u00e9trole et \u00e9conomie, comme par exemple Michel LEPETIT (chercheur associ\u00e9 au Laboratoire interdisciplinaire des \u00e9nergies de demain - https://bit.ly/3XLS5Yk ).\n\nMatthieu Auzanneau passe par une observation de l'\u00e9volution de l'inflation, du taux directeur de la banque centrale, ou encore du d\u00e9ficit commercial, qu'il relie de mani\u00e8re argument\u00e9e \u00e0 l'\u00e9volution de la production de p\u00e9trole. \n\nDans un travail fouill\u00e9 du Shift Project publi\u00e9 il y a un an (https://bit.ly/3R8e1uV ), nous avions soulign\u00e9 que les 16 principaux producteurs de p\u00e9trole de la plan\u00e8te \u00e9taient probablement pass\u00e9s par leur pic de production en 2018. \n\nSi les m\u00eames causes produisent les m\u00eames effets \u00e0 l'avenir, cela signifie que le paysage \u00e9conomique et financier de demain pourrait bien \u00eatre plus proche de la collection de chocs et de crises qu'un \"retour \u00e0 la normale\", et ce quelles que soient nos aspirations sur les retraites..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7022131881886248960,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7022131882947407872,urn:li:activity:7022131882947407872,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 28, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7022131882947407872,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7022131882947407872,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7022131882947407872", + "threadId": "activity:7022131882947407872", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022131882947407872", + "urn": "urn:li:activity:7022131882947407872", + "numComments": 37, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7022131882947407872", + "reactionTypeCounts": [ + { + "count": 455, + "reactionType": "LIKE" + }, + { + "count": 99, + "reactionType": "INTEREST" + }, + { + "count": 74, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7022131882947407872", + "numLikes": 637, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022131882947407872", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 637, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7021901658376806400", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7021901658376806400)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7021901658376806400)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-novembre-dernier-la-fondation-descartes-activity-7021901658376806400-jFOD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7021901657420505089", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7021901658376806400", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7021901657420505089", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "DV0aF1Ai5airUhsj8mCFRQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEBzmKbiVbR_A", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEBzmKbiVbR_A", + "artifacts": [ + { + "width": 914, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1674151813718?e=1679529600&v=beta&t=Xn--UUNyck6BIcyAAm0GeBl3RVSNzsCST2dTyLg1pY8", + "expiresAt": 1679529600000, + "height": 1526 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1674151814620?e=1679529600&v=beta&t=EAu4SK6om7DCLUCnq3PnIcm0V0PPTu5hDK_fpV2X9O0", + "expiresAt": 1679529600000, + "height": 33 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280/0/1674151814620?e=1679529600&v=beta&t=4H0uH9YP8w_w0RINnGVOTBN1BL9oZwxpV6Mm4rHFZT0", + "expiresAt": 1679529600000, + "height": 1526 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1674151814620?e=1679529600&v=beta&t=LyPZZP_uT3TfYvswNjUCIa9RmotU0HDYId_nGTBSRVQ", + "expiresAt": 1679529600000, + "height": 801 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1674151814620?e=1679529600&v=beta&t=HvHvuaU5Em4-lmXmjcRfBqnBfzZssdADnLJiucmrvjk", + "expiresAt": 1679529600000, + "height": 267 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1674151814620?e=1679529600&v=beta&t=xqDKGvyYkrh3WQNC8SoYf6VTnWd_wRfIlwDL64VsOxw", + "expiresAt": 1679529600000, + "height": 1336 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEBzmKbiVbR_A/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "timeline" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7021901657420505089,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En Novembre dernier, la Fondation Descartes a publi\u00e9 une \u00e9tude sur la mani\u00e8re dont les fran\u00e7ais(es) s'informent sur le changement climatique : https://bit.ly/3HqMQZ3 \n\nOn y apprend que le premier canal d'information sur la question est constitu\u00e9 des media g\u00e9n\u00e9ralistes, puis on va trouver l'entourage (proches et amis) et les r\u00e9seaux sociaux. \n\nDans notre pays (et si les r\u00e9ponses ont \u00e9t\u00e9 honn\u00eates :) ) ce ne sont donc pas ces r\u00e9seaux qui constituent le premier vecteur d'information.\n\nAlors qu'un autre graphique (en commentaire) montre que la plus grande cote de confiance est accord\u00e9e aux scientifiques qui travaillent sur la question, il est dommage de ne pas avoir mis dans la liste des r\u00e9ponses les sites des institutions scientifiques.\n\nMais l\u00e0 o\u00f9 ca devient farce, c'est que les media sont par ailleurs, juste avant les r\u00e9seaux sociaux, les modes d'informations que la population consid\u00e8re comme les moins fiables ! Seulement 16% de la population d\u00e9clare en effet leur faire un peu ou beaucoup confiance de mani\u00e8re g\u00e9n\u00e9rale.\n\nCe grand \u00e9cart entre habitudes (puisque nous continuons \u00e0 utiliser les media) et confiance n'est pas une nouveaut\u00e9. La bonne question est de savoir pourquoi c'est une constante que la population aille s'informer essentiellement aupr\u00e8s d'entit\u00e9s \u00e0 qui elle n'accorde que peu de cr\u00e9dit, alors que d\u00e9sormais les organismes \u00e9metteurs d'information le font en direct via leurs sites internet.\n\nTentons une explication : le media vient \u00e0 vous, alors que d'utiliser internet demande d'aller \u00e0 l'information (et donc de savoir naviguer dans un univers plus complexe). En fait, ce que dit probablement cet \u00e9cart, c'est que la population souhaite des interm\u00e9diaires qui feront le tri et la vulgarisation pour elle, mais n'est pas satisfaite de la mani\u00e8re dont les personnes qui assurent aujourd'hui cette fonction s'acquittent de la t\u00e2che l'essentiel du temps. \n\nD'o\u00f9 peut venir ce d\u00e9faut de confiance contre des media qui sont par ailleurs utilis\u00e9s parce que c'est \"normal\" d'\u00e9couter l'information qui vient \u00e0 vous ?\n\nTentons \u00e0 nouveau une hypoth\u00e8se : nous avons tendance \u00e0 caler notre niveau de confiance sur la plus mauvaise surprise v\u00e9cue et non sur la moyenne de ce qui se passe : il suffit donc d'une fois o\u00f9 nous avons pris un media en flagrant d\u00e9lit d'incoh\u00e9rence, ou de m\u00e9connaissance d'un sujet que nous connaissons bien, et ensuite nous deviendrons m\u00e9fiants de fa\u00e7on habituelle.\n\nL'antidote \u00e0 cela est donc qu'un media ne d\u00e9roge jamais \u00e0 quelques r\u00e8gles simples :\n- ne pas traiter une information quand il n'y a pas le temps pour cela\n- bien comprendre qui est l\u00e9gitime pour s'exprimer sur quoi (\u00e9vite les incoh\u00e9rences)\n- \u00eatre transparent sur ce que l'on sait et ce que l'on ne sait pas\n- ne pas confondre les faits et les opinions (y compris la sienne), \n- ne pas confondre la ligne \u00e9ditoriale avec la r\u00e9gie publicitaire.\n\nUne d\u00e9mocratie qui fonctionne bien a besoin de media qui fonctionnent bien. Les houspiller pour les faire progresser est donc utile :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7021901657420505089,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7021901658376806400,urn:li:activity:7021901658376806400,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 46, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7021901658376806400,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7021901658376806400,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7021901658376806400", + "threadId": "activity:7021901658376806400", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021901658376806400", + "urn": "urn:li:activity:7021901658376806400", + "numComments": 76, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7021901658376806400", + "reactionTypeCounts": [ + { + "count": 624, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 61, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7021901658376806400", + "numLikes": 773, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021901658376806400", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 773, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 Edited \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7021435585357586432", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7021435585357586432)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7021435585357586432)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-charbon-de-l%C3%BCtzerath-met-lallemagne-face-activity-7021435585357586432-IoQI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7021435584514523136", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7021435585357586432", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7021435584514523136", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "LQJsJe9nvspE5oPoJJz30A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7497948053080086853", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676500910822?e=1677240000&v=beta&t=ovxYBKCUXocaVCTB7ImI60WKOxC85-TVBtS_EJaOKV4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676500910822?e=1677240000&v=beta&t=BRa3iBhwzujzRQmr9NXxpaRvJ6w0hxCvRo1tikC1cTk", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676500910822?e=1677240000&v=beta&t=dTCJFeVUZ4GevrQk3nO4ZgmtjMhrmnFgTxpFc3YoSTQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676500910822?e=1677240000&v=beta&t=dX-jtRUPX5fAKz_lxiiprWdW2-4aHc6ZB8BvQ-gDHOU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFOl7YXRszTzg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7497948053080086853)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7497948053080086853)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le charbon de L\u00fctzerath met l'Allemagne face \u00e0 ses contradictions by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/le-charbon-de-lutzerath-met-lallemagne-face-a-ses-contradictions-1897595" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le charbon de L\u00fctzerath met l'Allemagne face \u00e0 ses contradictions" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7021435584514523136,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Lorsque l'Allemagne a d\u00e9cid\u00e9 - et mis en application - sa sortie du nucl\u00e9aire (que l'on doit \u00e0 Schroeder - avant Fukushima - et non \u00e0 Merkel, contrairement \u00e0 ce qui est souvent dit ou \u00e9crit), d'aucuns s'\u00e9taient \u00e9mus que cela pourrait conduire \u00e0 recourir plus longtemps au charbon, conduisant en cela \u00e0 des \u00e9missions de CO2 suppl\u00e9mentaires - outre d'autres petits \u00e0-c\u00f4t\u00e9 de cette \u00e9nergie : particules fines (des milliers de morts pr\u00e9matur\u00e9s en Europe chaque ann\u00e9e), NOx, pollution des eaux de surface, montagnes de cendres (des milliers de tonnes par jour pour les plus grosses centrales) qui contiennent des m\u00e9taux lourds et des substances toxiques (arsenic, fluor...), et \u00e9videmment destruction totale des \u00e9cosyst\u00e8mes sur les dizaines de km2 d'emprise de l'excavation de lignite.\n\nA l'\u00e9poque d\u00e9j\u00e0, il \u00e9tait possible d'observer depuis le ciel les vastes \u00e9tendues (plusieurs kilom\u00e8tres de c\u00f4t\u00e9) des mines \u00e0 ciel ouvert de lignite, comme celle de Garzweiler, pr\u00e8s de Cologne : https://bit.ly/3Xlzfra (il y en a d'autres pas loin, dont une encore plus grande \u00e0 Hambach : https://bit.ly/3QNlhMo ), dont la cr\u00e9ation a conduit \u00e0 l'\u00e9vacuation d\u00e9finitive d'un peu moins de 100.000 personnes, avec destruction volontaire de leur habitat.\n\nMais tout cela n'aurait pas du arriver avec la substitution du charbon par le gaz, diront d'autres. A cela on peut r\u00e9pondre 2 choses : \n\n- cela serait encore moins arriv\u00e9 si l'Allemagne avait conserv\u00e9 son nucl\u00e9aire. Si on regarde l'\u00e9volution de la puissance pilotable chez nos voisins, elle est rest\u00e9e \u00e0 peu pr\u00e8s constante depuis 2002 : https://bit.ly/3w9Y4KH. Il y avait 22,4 GW de nucl\u00e9aire \u00e0 cette \u00e9poque et 20 GW de lignite. Aujourd'hui il reste 4 GW de nucl\u00e9aire : \u00e0 la place il pourrait ne rester que 2 GW de lignite... et l'agrandissement de L\u00fctzerath ne serait pas n\u00e9cessaire.\n\n- la d\u00e9pendance aux russes \u00e9tait un pari, et l'histoire nous a quand m\u00eame enseign\u00e9 que nos relations avec notre grand voisin n'ont pas toujours \u00e9t\u00e9 tranquilles. Ne pas envisager que ca puisse tourner vinaigre est quand m\u00eame gentiment impr\u00e9voyant.\n\nEn Europe, quand un \u00e9tat n'est pas assez disciplin\u00e9 sur le plan de l'\u00e9quilibre des comptes publics, il est th\u00e9oriquement susceptible de se voir infliger une amende par le Conseil, allant jusqu'\u00e0 0,5% du PIB (soit environ 10 milliards pour la France). Plus g\u00e9n\u00e9ralement, lorsque l'on entend \u00eatre r\u00e9ellement s\u00e9rieux sur le respect d'une obligation, il y a des sanctions en cas de non respect qui sont d'autant plus s\u00e9v\u00e8res que l'obligation \u00e0 respecter est importante.\n\nSi l'Europe \u00e9tait r\u00e9ellement s\u00e9rieuse sur le CO2, il y aurait un syst\u00e8me de sanctions pr\u00e9vu pour non respect d'un plafond d'\u00e9missions de CO2 par un pays donn\u00e9. Et cette sanction pourrait \u00eatre major\u00e9e lorsqu'un pays a fait l'exact inverse de ce qu'il pouvait physiquement faire pour respecter l'obligation." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7021435584514523136,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7021435585357586432,urn:li:activity:7021435585357586432,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 138, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7021435585357586432,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7021435585357586432,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7021435585357586432", + "threadId": "activity:7021435585357586432", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021435585357586432", + "urn": "urn:li:activity:7021435585357586432", + "numComments": 270, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7021435585357586432", + "reactionTypeCounts": [ + { + "count": 4064, + "reactionType": "LIKE" + }, + { + "count": 389, + "reactionType": "INTEREST" + }, + { + "count": 232, + "reactionType": "MAYBE" + }, + { + "count": 179, + "reactionType": "PRAISE" + }, + { + "count": 38, + "reactionType": "APPRECIATION" + }, + { + "count": 26, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7021435585357586432", + "numLikes": 4928, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021435585357586432", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4937, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7021023431466864640", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7021023431466864640)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7021023431466864640)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nappes-deau-souterraine-au-1er-janvier-2023-activity-7021023431466864640-MXp_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7021023430669955073", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7021023431466864640", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7021023430669955073", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "Br8UOPBe3kTgeyMqKvYAJg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8292823613674768012", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676468818461?e=1677240000&v=beta&t=03Qvbhkuvzt7Bn2t4VALKXdBV_ISKCBFLRXGumDU5tY", + "expiresAt": 1677240000000, + "height": 565 + }, + { + "width": 1132, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676468818461?e=1677240000&v=beta&t=yk5yCKeP8ZeRuYw0GCfkISF54XdKdw0xQk9kgIW-0Mk", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676468818461?e=1677240000&v=beta&t=Qlukaqg5zmF7GSCyulmwgB4CPCBZ1nszKHTWM7f3nbI", + "expiresAt": 1677240000000, + "height": 113 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676468818461?e=1677240000&v=beta&t=NL_xgG2sYgW6hbZzu03IhJlwL03Zs7iEyWFwZKDMdig", + "expiresAt": 1677240000000, + "height": 339 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF29HS5kKpu2g/articleshare-shrink_" + }, + "displayAspectRatio": 0.70625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8292823613674768012)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8292823613674768012)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "brgm.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nappes d'eau souterraine au 1er janvier 2023 | BRGM by brgm.fr", + "actionTarget": "https://www.brgm.fr/fr/actualite/communique-presse/nappes-eau-souterraine-au-1er-janvier-2023" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nappes d'eau souterraine au 1er janvier 2023 | BRGM" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7021023430669955073,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il pleut, donc il fait beau. Apr\u00e8s 2 mois d'automne (novembre et d\u00e9cembre), les trois quarts des nappes phr\u00e9atiques fran\u00e7aises ont encore tr\u00e8s soif. En effet, m\u00eame s'il a plu apr\u00e8s la fin octobre, il y a eu un tel d\u00e9ficit accumul\u00e9 avant que la situation d'ensemble reste d\u00e9ficitaire sur une large partie du pays, parfois tr\u00e8s fortement. \n\nAu surplus, fin octobre la v\u00e9g\u00e9tation \u00e9tait encore active \u00e0 cause d'un temps tr\u00e8s chaud, et les premi\u00e8res pluies de novembre ont donc \u00e9t\u00e9 alimenter les plantes et non les nappes. Il a aussi fallu humidifier des sols tr\u00e8s secs, ce qui a aussi utilis\u00e9 une partie de l'eau tomb\u00e9e qui n'est pas all\u00e9e jusqu'aux nappes.\n\nEnfin, lorsque les \u00e9pisodes de pr\u00e9cipitations ont \u00e9t\u00e9 intenses, une fraction a ruissel\u00e9 directement vers les rivi\u00e8res puis la mer, parce que l'infiltration dans un sol tr\u00e8s sec est plus difficile que dans un sol d\u00e9j\u00e0 un peu humidifi\u00e9. \n\nGlobalement, ce n'est pas maintenant que cette faiblesse du niveau des nappes est g\u00eanante. La v\u00e9g\u00e9tation est en dormance, l'agriculture ne pr\u00e9l\u00e8ve pas, et il reste de quoi alimenter les r\u00e9seaux d'eau potable le cas \u00e9ch\u00e9ant (https://lnkd.in/gG9eZM8 ), surtout que ce n'est pas non plus l'\u00e9poque de l'arrosage des pelouses et du remplissage des piscines.\n\nC'est au retour de la saison chaude que cela risque de poser probl\u00e8me. Si d'ici l\u00e0 la recharge n'a pas \u00e9t\u00e9 bonne (et donc qu'il n'y a pas eu suffisamment de ces d\u00e9pressions qui nous am\u00e8nent pluie et parfois vent, ce que nous appelons aujourd'hui \"mauvais temps\"), cela signifie que l'on abordera l'\u00e9t\u00e9 prochain - et ses possibles vagues de chaleur, puisque chaque \u00e9t\u00e9 offrira h\u00e9las l'occasion de battre le record pr\u00e9c\u00e9dent - avec moins d'eau pour l'agriculture, et pour les arbres quand ces derniers ont des racines qui vont jusqu'\u00e0 la nappe.\n\nL'\u00e9volution future d'une nappe est typiquement un processus qui a du mal \u00e0 \u00eatre mod\u00e9lis\u00e9 dans le cadre d'un climat qui se r\u00e9chauffe. Il est possible de faire des projections sur les pr\u00e9cipitations globales (sur une large zone) de l'ann\u00e9e, voire sur l'augmentation des \u00e9pisodes pluvieux intenses (moins bons pour l'infiltration dans le sol, \u00e0 pr\u00e9cipitations \u00e9gales, que des \u00e9pisodes continus), mais ensuite chaque g\u00e9ologie du sol est particuli\u00e8re, adjectif qui s'applique aussi aux usages locaux (qui d\u00e9pendent beaucoup des cultures et de la nature de la v\u00e9g\u00e9tation).\n\nPour autant, les tendances sont claires : il ne faudra pas venir se demander \"qui aurait pu pr\u00e9voir ?\". Il faut donc essayer au maximum d'imaginer ce que l'avenir peut nous r\u00e9server, pour limiter au mieux le risque de manquer de cette pr\u00e9cieuse ressource qu'est l'eau. Actuellement, faisons nous vraiment le maximum en ce sens ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7021023430669955073,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7021023431466864640,urn:li:activity:7021023431466864640,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 143, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7021023431466864640,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7021023431466864640,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7021023431466864640", + "threadId": "activity:7021023431466864640", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021023431466864640", + "urn": "urn:li:activity:7021023431466864640", + "numComments": 243, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7021023431466864640", + "reactionTypeCounts": [ + { + "count": 3850, + "reactionType": "LIKE" + }, + { + "count": 644, + "reactionType": "INTEREST" + }, + { + "count": 330, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "APPRECIATION" + }, + { + "count": 29, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7021023431466864640", + "numLikes": 4900, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021023431466864640", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4900, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7020332265222103041", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7020332265222103041)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7020332265222103041)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pourquoi-le-groupe-sud-ouest-sengage-face-activity-7020332265222103041-2RL5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7020332264400019456", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7020332265222103041", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7020332264400019456", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "cGCthRVe1CbBQ3Z3yernCw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7821471158464017771", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676296478581?e=1677240000&v=beta&t=i6maEpqNKW4utXPWggRacVOKTFO2PEZEd1EW37kQRd8", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676296478581?e=1677240000&v=beta&t=Vm46meJeSt1avBzC8cKY_dWHwg00PSlO8u7hwJhnVJg", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676296478581?e=1677240000&v=beta&t=_I_BiOg7KxA1PF1ovHqhkT7Owr-cB-2cc9Jf4fu1MBg", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676296478581?e=1677240000&v=beta&t=pXFFWqlE28w-qoNrdgfUy8TFphAaG9RiLok9-Ygja20", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEHZkdt_k19zQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7821471158464017771)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7821471158464017771)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "sudouest.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pourquoi le Groupe Sud Ouest s\u2019engage face aux enjeux climatiques et environnementaux by sudouest.fr", + "actionTarget": "https://www.sudouest.fr/declic-pourquoi-le-groupe-sud-ouest-s-engage-face-aux-enjeux-climatiques-et-environnementaux-13648961.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pourquoi le Groupe Sud Ouest s\u2019engage face aux enjeux climatiques et environnementaux" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7020332264400019456,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s The Guardian, qui est probablement le \"grand\" media europ\u00e9en qui a ouvert la voie, en proposant une rubrique \"crise climatique\" (https://lnkd.in/e8q7-6rG ) accessible d\u00e8s la homepage, et apr\u00e8s Radio France qui a pris l'engagement de former l'ensemble de sa r\u00e9daction aux enjeux climatiques, c'est au tour du groupe Sud-Ouest de publier une charte dans laquelle il affirme \"Les \u00e9diteurs du Groupe Sud Ouest s\u2019engagent \u00e0 inscrire les enjeux climatiques et environnementaux au c\u0153ur de leur production \u00e9ditoriale, en organisant des espaces de prise de parole et d\u2019\u00e9change constructifs, en documentant les enjeux locaux et en mettant en relief les connaissances scientifiques, avec rigueur, objectivit\u00e9 et ind\u00e9pendance\".\n\nSuivent 15 engagements, qui incluent la mise en place d'un conseil scientifique, la formation de la r\u00e9daction, la mise en place d'un bilan carbone et d'actions de sobri\u00e9t\u00e9 (y compris num\u00e9rique), l'origine du papier, ou encore le contenu publicitaire.\n\nEn lisant attentivement cette charte, on comprend \u00e9videmment que le Diable sera dans les d\u00e9tails, et en particulier dans l'ambition effective associ\u00e9e \u00e0 chacune des actions. On peut faire un bilan carbone et agir ensuite pour faire baisser ses \u00e9missions de 1% par an, de 5% par an, ou... les faire cro\u00eetre \"moins que plus\", en visant juste une baisse par exemplaire imprim\u00e9 ou diffus\u00e9 sur le serveur, tout en ayant un plan d'augmentation de la diffusion !\n\nSur la publicit\u00e9, l\u00e0 aussi toutes les nuances de gris sont possibles : Sud Ouest dit vouloir proposer des espaces gratuits aux associations, mais on peut imaginer des syst\u00e8mes plus dissuasifs pour la promotion de produits ou services lorsqu'ils vont avec des pressions plus importantes sur l'environnement. \n\nAvoir un encart pour promouvoir l'avion, une voiture, un mode de commerce ou des produits alimentaires \"\u00e9lev\u00e9s en carbone\" couterait donc plus cher que la promotion du march\u00e9 du coin, des v\u00e9los ou des livres.\n\nPour la formation, l\u00e0 aussi il y a un monde entre la demi-heure que le gouvernement a royalement accord\u00e9e au climat et les 150 heures minimum qui sont pr\u00e9conis\u00e9es pour les \u00e9tudiants du sup\u00e9rieur par The Shift Project. \n\nIl faut donc voir cette charte comme un premier pas \u00e9minemment bienvenu. Ce qu'il en adviendra ensuite dans les faits d\u00e9pendra essentiellement des personnes qui vont la mettre en oeuvre (\u00e0 commencer par le patron !), de l'accueil qui lui sera fait en interne et de la pression que mettront les salari\u00e9s, et \u00e9videmment de la r\u00e9ponse du lectorat, puisqu'un m\u00e9dia priv\u00e9 reste une entreprise commerciale qui a du mal \u00e0 agir si cela fait fuir les gens qui consomment l'information.\n\nPour favoriser le fait que toutes les \"parties prenantes\" soutiennent l'\u00e9volution, il sera utile d'avoir un syst\u00e8me d'indicateurs ad\u00e9quats et de r\u00e9guli\u00e8rement en rendre compte. Ca ne devrait pas faire peur \u00e0 des journalistes : c'est de l'information !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7020332264400019456,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7020332265222103041,urn:li:activity:7020332265222103041,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 49, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7020332265222103041,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7020332265222103041,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7020332265222103041", + "threadId": "activity:7020332265222103041", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020332265222103041", + "urn": "urn:li:activity:7020332265222103041", + "numComments": 82, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7020332265222103041", + "reactionTypeCounts": [ + { + "count": 1138, + "reactionType": "LIKE" + }, + { + "count": 73, + "reactionType": "INTEREST" + }, + { + "count": 63, + "reactionType": "MAYBE" + }, + { + "count": 38, + "reactionType": "PRAISE" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7020332265222103041", + "numLikes": 1339, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020332265222103041", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1339, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 Edited \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7020064089167036416", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7020064089167036416)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7020064089167036416)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_transports-jean-marc-jancovici-explique-activity-7020064089167036416-fg6a?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7020064088613351424", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7020064089167036416", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7020064088613351424", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "gezhomvGaJPpAFCt8fHgBQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7293133745184405373", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676153159732?e=1677240000&v=beta&t=MG8aQJJda8qiK7a3AmNFgnVmEIcosNBotIDLKff-7HA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676153159732?e=1677240000&v=beta&t=1eLnULUIfs6H8HgypCdA5nKjoYn5ZUolwxPufmVeM0c", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676153159732?e=1677240000&v=beta&t=OBtsdWdf6H9v8K69xA61nic8wKTbRL_YKPhJ3vRdcJ8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676153159732?e=1677240000&v=beta&t=oXRQR7DYUbG81Y8XH79mdA4-ElUOspRV6wPoaFGtMuA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHdKmBnBNhZ2w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7293133745184405373)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7293133745184405373)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Transports : Jean-Marc Jancovici explique l'importance de se mettre au v\u00e9lo by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900225118-transports-jean-marc-jancovici-explique-l-importance-de-se-mettre-au-velo" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Transports : Jean-Marc Jancovici explique l'importance de se mettre au v\u00e9lo" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7020064088613351424,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tou(te)s en selle ! Apparu \u00e0 la fin du 19\u00e8 si\u00e8cle, le v\u00e9lo a rapidement vu son emploi augmenter, et en 1925 il offrait en moyenne \u00e0 un fran\u00e7ais autant de km parcourus par jour que l'automobile (alors nettement moins r\u00e9pandue qu'actuellement, c'est clair !).\n\nMais depuis 1940 son usage plafonne. Aujourd'hui, un habitant du pays fait en moyenne plus de km en avion par an qu'en v\u00e9lo ! Pourtant d\u00e9velopper son usage procure de nombreux b\u00e9n\u00e9fices :\n- moins de CO2\n- moins de pollution\n- moins d'argent \u00e0 d\u00e9penser\n- depuis qu'il y a une assistance \u00e9lectrique, apte \u00e0 transporter enfants et courses, et aussi \u00e0 monter les c\u00f4tes, sans trop souffrir\n- en univers \"congestionn\u00e9\" (ville ou p\u00e9riurbain) pas beaucoup moins rapide qu'une voiture\n- meilleur pour la sant\u00e9\n\nVu comme cela, on se demande vraiment pourquoi ce mode de transport ne repr\u00e9sente pas l'essentiel des km parcourus pour la mobilit\u00e9 dite du quotidien (travail, courses, \u00e9cole etc), qui repr\u00e9sente 2/3 des km faits annuellement en voiture, g\u00e9n\u00e9ralement tr\u00e8s peu remplie (1,1 personne en taux moyen). O\u00f9 est le probl\u00e8me alors ?\n\nLe premier d'entre eux est g\u00e9n\u00e9ralement l'ins\u00e9curit\u00e9 potentiellement ressentie par le ou la cycliste qui chemine au milieu de \"beaucoup plus lourd que son v\u00e9lo\". La cl\u00e9 du d\u00e9veloppement du v\u00e9lo s'appelle donc des pistes cyclables. Et des pistes exclusivement cyclables ! \n\nLes itin\u00e9raires mixtes (pi\u00e9tons et v\u00e9los) n'ont pas plus de pertinence que si on autorisait les pi\u00e9tons \u00e0 descendre sur la chauss\u00e9e dans les rues o\u00f9 la vitesse est limit\u00e9e \u00e0 30. Comme je l'\u00e9voque dans cette chronique, il n'y a rien de commun entre un(e) cycliste allant \u00e0 son travail \u00e0 25 ou 30 km/h et un pi\u00e9ton qui d\u00e9ambule avec enfants ou chien, ou en regardant son t\u00e9l\u00e9phone...\n\nLe deuxi\u00e8me d'entre eux est la possibilit\u00e9 de garer son v\u00e9lo \u00e0 destination (qui peut \u00eatre le lieu d'acc\u00e8s \u00e0 un autre moyen de transport) ou chez soi sans se le faire voler. \n\nLe 3\u00e8 probl\u00e8me est que, l'automobile coutant plus cher, les constructeurs de voiture gagnent beaucoup d'argent que ceux de v\u00e9los, et donc emploient plus de monde. Cela en fait des interlocuteurs plus \u00e9cout\u00e9s des pouvoirs publics... qui tendent \u00e0 maintenir le syst\u00e8me.\n\nOn pourrait ajouter un 4\u00e8 \u00e9l\u00e9ment : la voiture est un objet de statut social. Il faudrait qu'une jolie paire de mollets le devienne un peu plus !\n\nLa voirie n'est pas pay\u00e9e par les automobilistes mais par les contribuables. Un cycliste l'est autant qu'un conducteur d'un engin d'une tonne ou plus. A l'heure de l'imp\u00e9rieuse d\u00e9carbonation, il serait tout \u00e0 fait justifi\u00e9 que la collectivit\u00e9 - qui fonctionne avec les imp\u00f4ts - assure aux utilisateurs de la petite reine autant de facilit\u00e9s \u00e0 se d\u00e9placer qu'aux utilisateurs d'engins motoris\u00e9s d'une tonne, \u00e9lectriques ou pas. \n\nIl n'y a plus qu'\u00e0 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7020064088613351424,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7020064089167036416,urn:li:activity:7020064089167036416,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 316, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7020064089167036416,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7020064089167036416,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7020064089167036416", + "threadId": "activity:7020064089167036416", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020064089167036416", + "urn": "urn:li:activity:7020064089167036416", + "numComments": 727, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7020064089167036416", + "reactionTypeCounts": [ + { + "count": 5511, + "reactionType": "LIKE" + }, + { + "count": 377, + "reactionType": "PRAISE" + }, + { + "count": 333, + "reactionType": "EMPATHY" + }, + { + "count": 118, + "reactionType": "APPRECIATION" + }, + { + "count": 74, + "reactionType": "INTEREST" + }, + { + "count": 45, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7020064089167036416", + "numLikes": 6458, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020064089167036416", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6466, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7019787230227390464", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7019787230227390464)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7019787230227390464)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_projet-de-loi-%C3%A9nergies-renouvelables-la-activity-7019787230227390464-05ON?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7019787229342396417", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7019787230227390464", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7019787229342396417", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "JqrQs0tBp62A+rbwNVbkdA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7324151095709206240", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 707, + "fileIdentifyingUrlPathSegment": "800/0/1676184990921?e=1677240000&v=beta&t=frqYJQGPT6hXYyzFof0xc1ayH0lEYAOdwPRMhZN8nvQ", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 707, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676184990921?e=1677240000&v=beta&t=F6O1kuPey80t7rAKtn74-AAkgWWQAvwzp_1QachHcx0", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676184990921?e=1677240000&v=beta&t=tPr9MJUMyNBASga9QM5QeGKVZMu7yXN_lzpcxeqRBZM", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676184990921?e=1677240000&v=beta&t=Q-stBGHJ64XWVjcWZ37x0dOz0vFmGY81CoxuxxD1Rrc", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH9Ke5BNHZWUw/articleshare-shrink_" + }, + "displayAspectRatio": 0.6661951909476662 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7324151095709206240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7324151095709206240)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "novethic.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Projet de loi \u00e9nergies renouvelables : la chaleur est la grande oubli\u00e9e by novethic.fr", + "actionTarget": "https://www.novethic.fr/actualite/energie/energies-renouvelables/isr-rse/projet-de-loi-energies-renouvelables-la-chaleur-est-la-grande-oubliee-151282.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Projet de loi \u00e9nergies renouvelables : la chaleur est la grande oubli\u00e9e" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7019787229342396417,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le projet de loi sur les \u00e9nergies renouvelables se concentre essentiellement sur l'\u00e9lectricit\u00e9. De fait, dans l'expos\u00e9 des motifs du projet initialement d\u00e9pos\u00e9 au S\u00e9nat (253 pages ! https://lnkd.in/eq2amZEk ), il est surtout question d'\u00e9olien et de photovolta\u00efque, et un peu de m\u00e9thanisation. \n\nPourtant, dans notre pays, 45% de l'\u00e9nergie sert \u00e0 avoir de la chaleur, et aujourd'hui cette derni\u00e8re est essentiellement fossile. Dans ces usages on va trouver :\n\n- le chauffage des logements et des b\u00e2timents dits tertiaires (en gros tout ce qui n'est ni logements, ni b\u00e2timents industriels : bureaux, commerces, h\u00f4pitaux, \u00e9coles, piscines, casernes, mus\u00e9es...)\n\n- la production d'eau chaude sanitaire dans ces m\u00eames b\u00e2timents, et plus marginalement la cuisson\n\n- la chaleur industrielle, importante dans les mat\u00e9riaux de base (m\u00e9taux, ciment, chimie de base, papier), dans la chimie de sp\u00e9cialit\u00e9 et dans l'agroalimentaire \n\nC'est le gaz qui est la premi\u00e8re source de chaleur en France (dans l'autre sens 55% du gaz sert au chauffage). Par les temps qui courent, il n'est peut-\u00eatre pas idiot de se pencher sur la mani\u00e8re de le remplacer par de la chaleur renouvelable. \n\nFont partie de cette cat\u00e9gorie la biomasse solide (bois buche et granul\u00e9s) ou gazeuse (biogaz), la g\u00e9othermie profonde (on extrait la chaleur du sous-sol pour chauffer des b\u00e2timents), les pompes \u00e0 chaleur (puisant les calories dans l'air ou dans le sol, et qui peuvent aussi servir pour des usages industriels \u00e0 haute temp\u00e9rature), et le solaire thermique (pour l'eau chaude sanitaire ou le chauffage avec un plancher chauffant).\n\nCes solutions sont matures, elles substituent directement du gaz ou du fioul l'essentiel du temps (et quand elles substituent de l'\u00e9lectricit\u00e9 ca sera toujours ca de gagn\u00e9 pour la mobilit\u00e9 \u00e9lectrique ou l'\u00e9lectrification d'usages industriels), ne posent pas de probl\u00e8me particulier d'approvisionnement en m\u00e9taux, et elles sont \u00e9conomiquement \u00e9quivalentes aux alternatives fossiles.\n\nQuestion biodiversit\u00e9, le tableau est plus nuanc\u00e9 : pour les pompes \u00e0 chaleur, le solaire thermique et la g\u00e9othermie, les atteintes sont faibles. Ces dispositifs occupent peu d'espace en plus du b\u00e2ti existant. C'est plus d\u00e9licat pour la biomasse : il faut \u00e9videmment \u00e9viter la d\u00e9forestation, ou la perte de biodiversit\u00e9 en rempla\u00e7ant les for\u00eats diversifi\u00e9es par des plantations monosp\u00e9cifiques d'esp\u00e8ces \u00e0 croissance rapide.\n\nMais globalement il y a beaucoup de potentiel et peu d'effets pervers \u00e0 leur d\u00e9ploiement. Pourtant, la priorit\u00e9 a \u00e9t\u00e9 surtout donn\u00e9e aux ENR \u00e9lectriques. Est-ce si pertinent ?\n \nIncidemment il y a une autre source de chaleur d\u00e9carbon\u00e9e qui n'int\u00e9resse personne : celle issue du refroidissement des centrales nucl\u00e9aires, soit environ 600 milliards de kWh, soit environ ce qui est utilis\u00e9 en France en \u00e9nergie fossile pour le chauffage et l'eau chaude sanitaire ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7019787229342396417,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7019787230227390464,urn:li:activity:7019787230227390464,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 161, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7019787230227390464,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7019787230227390464,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7019787230227390464", + "threadId": "activity:7019787230227390464", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019787230227390464", + "urn": "urn:li:activity:7019787230227390464", + "numComments": 291, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7019787230227390464", + "reactionTypeCounts": [ + { + "count": 2454, + "reactionType": "LIKE" + }, + { + "count": 381, + "reactionType": "INTEREST" + }, + { + "count": 228, + "reactionType": "MAYBE" + }, + { + "count": 37, + "reactionType": "PRAISE" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7019787230227390464", + "numLikes": 3137, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019787230227390464", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3140, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7019403760263122944", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7019403760263122944)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7019403760263122944)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_un-de-mes-coll%C3%A8gues-de-travail-ma-envoy%C3%A9-activity-7019403760263122944-DzI5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7019403759420088320", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7019403760263122944", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7019403759420088320", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "sq2yQmhG3+uGPEl2hV9izQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHkT5OV6xQ0Tg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHkT5OV6xQ0Tg", + "artifacts": [ + { + "width": 1792, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1673556266820?e=1679529600&v=beta&t=qJ40GCnBwLExHbAqZiVDApukzsgXQhdpZRVxV3h1U8U", + "expiresAt": 1679529600000, + "height": 1065 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1673556270057?e=1679529600&v=beta&t=cSAzrow4STLCcvv7nHec7gfEEJxzXrond8kAxdeinMM", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1673556270057?e=1679529600&v=beta&t=o9pwrppHNlnJuuENLs5EILlnQKB6WKUTrIrAJrhfvK8", + "expiresAt": 1679529600000, + "height": 761 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1673556270057?e=1679529600&v=beta&t=fWnPnEc-bqYby6hvCP-UO9GGmI8TYdIbzxPTdno8-20", + "expiresAt": 1679529600000, + "height": 285 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1673556270057?e=1679529600&v=beta&t=eQQbuD5E_tlOCt0rQLpftP_vXPI0_qQI4cVunhy1kEE", + "expiresAt": 1679529600000, + "height": 95 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1673556270057?e=1679529600&v=beta&t=HI9-bK-miuOaYANTKrpn8yMuQDdG1sjpW5vdQ7rJgJg", + "expiresAt": 1679529600000, + "height": 475 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHkT5OV6xQ0Tg/feedshare-shrink_" + }, + "displayAspectRatio": 0.5943080357142857 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7019403759420088320,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un de mes coll\u00e8gues de travail m'a envoy\u00e9 hier la question suivante : \"\u00e0 quand faut-il remonter dans le pass\u00e9 pour avoir des \u00e9missions de 2 tonnes de CO2 par personne ?\"\n\nSi l'on inclut la d\u00e9forestation (qui a toujours accompagn\u00e9 la croissance d\u00e9mographique), la r\u00e9ponse est donn\u00e9e par ce graphique (compilation de l'auteur sur sources diverses) : \u00e0 1860. En effet, le CO2 issu des combustibles fossiles est \"r\u00e9cent\", mais avant il y a eu de la d\u00e9forestation, qui a longtemps \u00e9t\u00e9 le terme dominant dans l'ensemble des \u00e9missions humaines.\n\nSi l'on regarde juste le CO2 issu des \u00e9nergies fossiles (graphique en commentaire), en supposant que l'on arr\u00eate la d\u00e9forestation (ce qui pour le moment est h\u00e9las une vue de l'esprit mais finira par arriver, au plus tard quand il n'y aura plus rien \u00e0 couper !), la r\u00e9ponse fait un peu moins peur : on parle de 1940. \n\nPour \u00eatre \"compatible 2\u00b0C\", il faudra donc a minima ramener en 27 ans les \u00e9missions fossiles moyennes par personne \u00e0 ce qu'elles \u00e9taient il y a 80 ans. En d'autres termes, il va falloir \"descendre\" 3 fois plus vite que nous sommes \"mont\u00e9s\", sachant que \"monter\" ne demande aucune contrainte alors que descendre oui. Ce n'est clairement pas au train o\u00f9 vont les choses que nous allons y arriver.\n\nDans le graphique sur le CO2 fossile seul on constate aussi que les \u00e9missions par personne ont brutalement arr\u00eat\u00e9 de monter au moment des chocs p\u00e9troliers (et en tenant compte de la d\u00e9forestation il y a eu une baisse pendant 30 ans).\n\nCela illustre de mani\u00e8re directe que ces chocs n'ont pas juste \u00e9t\u00e9 une grosse variation de prix \u00e0 cause d'un blocus : ils ont mat\u00e9rialis\u00e9 le premier ralentissement physique de l'\u00e8re industrielle par d\u00e9faut de ressources. La production de p\u00e9trole ne pouvait juste plus physiquement augmenter de 8% par an (surtout que les USA venaient de passer le pic conventionnel en 1970...). La limite physique \u00e0 l'amont s'appliquera de plus en plus si celle \u00e0 l'aval n'est pas g\u00e9r\u00e9e.\n\nLa grosse bosse des ann\u00e9es 2000 correspond \u00e0 l'essor de la Chine (et de son charbon). Cet essor a d\u00e9marr\u00e9 un peu moins de 10 ans apr\u00e8s le Sommet de la Terre de 1992, o\u00f9 a \u00e9t\u00e9 sign\u00e9e la Convention Climat. Pour le moment cette derni\u00e8re a \u00e9t\u00e9 mise KO debout par nos aspirations consum\u00e9ristes et \u00e9conomiques..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7019403759420088320,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7019403760263122944,urn:li:activity:7019403760263122944,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 98, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7019403760263122944,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7019403760263122944,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7019403760263122944", + "threadId": "activity:7019403760263122944", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019403760263122944", + "urn": "urn:li:activity:7019403760263122944", + "numComments": 215, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7019403760263122944", + "reactionTypeCounts": [ + { + "count": 2931, + "reactionType": "LIKE" + }, + { + "count": 868, + "reactionType": "INTEREST" + }, + { + "count": 401, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7019403760263122944", + "numLikes": 4250, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019403760263122944", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4255, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7019063851266535424", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7019063851266535424)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7019063851266535424)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_oceans-were-the-hottest-ever-recorded-in-activity-7019063851266535424-6LO5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7019063850654216192", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7019063851266535424", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7019063850654216192", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "es68N1g7Qtsr8aaBjAqWZw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8745374758198028966", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675874214305?e=1677240000&v=beta&t=M8NMzTG9rYZyrXviyyIdonqfNQ3X4hxpBpJPJAL70OI", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675874214306?e=1677240000&v=beta&t=d-KRSNg-Ted4wQuqqPuOiXqslLO3nF2gWFaCr6i8qcU", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675874214306?e=1677240000&v=beta&t=8lQCo4UGtL56Ar8J_i8XdIA6VrXI_YxA17qoNNw5SI0", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675874214306?e=1677240000&v=beta&t=OUXbz77n84LkBhLPRS0-1hH3htrcBIQM-REct9L_kHM", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGyr8tBrfl1eA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8745374758198028966)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8745374758198028966)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Oceans were the hottest ever recorded in 2022, analysis shows by theguardian.com", + "actionTarget": "https://www.theguardian.com/environment/2023/jan/11/oceans-were-the-hottest-ever-recorded-in-2022-analysis-shows" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Oceans were the hottest ever recorded in 2022, analysis shows" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7019063850654216192,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il n'y a pas que sur terre que 2022 a \u00e9t\u00e9 chaude : pour l'ensemble de l'oc\u00e9an mondial, l'ann\u00e9e pass\u00e9e a \u00e9t\u00e9 la plus chaude depuis le d\u00e9but des relev\u00e9s. \n\nOn le dit peu souvent, mais en fait 90% de l'\u00e9nergie suppl\u00e9mentaire amen\u00e9e \u00e0 la surface de la plan\u00e8te par le suppl\u00e9ment d'effet de serre r\u00e9chauffe les oc\u00e9ans et non la surface de la terre. C'est un ph\u00e9nom\u00e8ne lent mais massif, qui engendre derri\u00e8re des cons\u00e9quences en cascade :\n\n- l'\u00e9l\u00e9vation de temp\u00e9rature est une agression en tant que telle pour de nombreux organismes marins (par exemple les coraux dont 15% sont d\u00e9j\u00e0 morts, et \u00e0 2\u00b0C de r\u00e9chauffement global les coraux tropicaux auront probablement disparu pour l'essentiel)\n\n- cela affaiblit le puits oc\u00e9anique car l'eau chaude dissout moins bien le CO2 que l'eau froide (c'est pour cela que dans le pass\u00e9 l'\u00e9l\u00e9vation de temp\u00e9rature pr\u00e9c\u00e8de l'augmentation du CO2 : lorsque la modification des param\u00e8tres astronomiques de la terre r\u00e9chauffait climat, l'oc\u00e9an se mettait ensuite \u00e0 d\u00e9gazer du CO2 - qui incidemment amplifiait encore le r\u00e9chauffement)\n\n- l'eau chaude \u00e9tant moins dense, cela stratifie l'oc\u00e9an : l'eau chaude surnage en surface et ne communique plus avec les eaux plus profondes, plus froides. Cela diminue la teneur en oxyg\u00e8ne de l'eau de l'oc\u00e9an profond et donc la vie marine associ\u00e9e\n\n- l'eau se dilate quand elle chauffe : plus l'oc\u00e9an chauffe vite et plus son niveau monte vite. En retour cette hausse du niveau de la mer et ce r\u00e9chauffement de l'eau d\u00e9stabilisent de mani\u00e8re acc\u00e9l\u00e9r\u00e9e les langues terminales des glaciers des calottes polaires qui du coup se d\u00e9sagr\u00e8gent plus vite, en produisant plus rapidement des icebergs qui font encore plus monter le niveau de l'eau...\n\n- une eau de surface plus chaude favorise l'apparition de ph\u00e9nom\u00e8nes cycloniques plus intenses (ce qui se constate d\u00e9j\u00e0)\n\nBref que l'oc\u00e9an chauffe vite n'est pas juste une affaire de temp\u00e9rature de l'eau quand on va se baigner. Comme pour d'autres aspects du changement climatique, cela va engendrer des discontinuit\u00e9s qui, \u00e0 mesure que le temps passera, seront de plus en plus amples et peu sympathiques. \n\nIl reste peu de temps pour bien comprendre les risques et organiser au mieux la soci\u00e9t\u00e9 pour ne pas trop en souffrir...\n" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7019063850654216192,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7019063851266535424,urn:li:activity:7019063851266535424,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 45, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7019063851266535424,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7019063851266535424,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7019063851266535424", + "threadId": "activity:7019063851266535424", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019063851266535424", + "urn": "urn:li:activity:7019063851266535424", + "numComments": 77, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7019063851266535424", + "reactionTypeCounts": [ + { + "count": 1408, + "reactionType": "LIKE" + }, + { + "count": 337, + "reactionType": "INTEREST" + }, + { + "count": 135, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7019063851266535424", + "numLikes": 1924, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019063851266535424", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1925, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7018690369332625409", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7018690369332625409)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7018690369332625409)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-investissements-repartent-%C3%A0-la-hausse-activity-7018690369332625409-HQgG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7018690368690958336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7018690369332625409", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7018690368690958336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "MFO/6acQJo3pNeU1zyGMtg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7340652649154548267", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675937217011?e=1677240000&v=beta&t=P6m27VSboerHnWce-qfLvJ9sjCYRGO9-Jx-PB6QF1ek", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675937217011?e=1677240000&v=beta&t=e_yTw0qPsbfl2rpq-l6KsAGB3uonmrK4BoSfD9qDSHo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675937217011?e=1677240000&v=beta&t=KWsXgdGAMf8fCmExC88nU7irVNjfNjkpCl_fAcIf3Pw", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675937217011?e=1677240000&v=beta&t=jKZALKXxRgjmOvVpm_NCAWrw9DjURHnglM7D3ugXV-k", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGpdVhkaDfC-A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7340652649154548267)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7340652649154548267)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les investissements repartent \u00e0 la hausse dans l'exploration et l'extraction p\u00e9troli\u00e8re by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/les-investissements-repartent-a-la-hausse-dans-lexploration-et-lextraction-petroliere-1894533#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les investissements repartent \u00e0 la hausse dans l'exploration et l'extraction p\u00e9troli\u00e8re" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7018690368690958336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A votre avis, quel est le premier crit\u00e8re qui pilote le volume d'investissements dans le p\u00e9trole ? Si vous pensez - ou esp\u00e9rez - que c'est les politiques \u00e9nerg\u00e9tiques de long terme des \u00e9tats, la r\u00e9ponse risque de vous d\u00e9cevoir : depuis plusieurs d\u00e9cennies, le premier d\u00e9terminant du nombre de centaines de milliards de dollars (car c'est l'ordre de grandeur) investi chaque ann\u00e9e dans ce que l'on appelle \"l'amont p\u00e9trolier\" (en pratique l'exploration et la construction des infrastructures de production) est... le prix du baril.\n\nQuand celui-ci est au plus bas, comme par exemple en 2020, les investissements baissent tr\u00e8s fortement. Quand le prix monte fortement (2014 a \u00e9t\u00e9 embl\u00e9matique) alors les investissements font de m\u00eame. En effet, quand le prix est haut, les p\u00e9troliers arrivent \u00e0 rentabiliser des projets qui ne le sont pas quand le prix est bas, ce qui explique cette \"r\u00e9ponse\" des investissements.\n\nC'est particuli\u00e8rement vrai dans le shale oil (non \u00e9voqu\u00e9 dans l'article des Echos) o\u00f9 la production suit d'assez pr\u00e8s l'investissement (forage et fracturation). \n\nCette r\u00e9ponse des investissements au prix est un des \u00e9l\u00e9ments \u00e0 prendre en compte pour savoir si, pour consommer moins de p\u00e9trole, \"il suffit d'attendre qu'il y en ait moins\", ou si c'est utile de baisser la consommation par des r\u00e8glementations et des taxes.\n\nCar de fait nous approchons du peak oil et donc il va y en avoir moins. Mais si nous laissons le march\u00e9 g\u00e9rer la d\u00e9crue, ce \"moins\" se traduit par des envol\u00e9es des prix, donc des investissements additionnels, et donc... un peu plus que \"moins\".\n\nSi la d\u00e9crue est pilot\u00e9e \u00e0 l'aval (quotas de consommation sur les voitures, camions et avions, sur les fours industriels etc) \u00e0 ce moment c'est tout l'inverse qui se passe : la pression sur la demande maintient des prix bas, ce qui \u00e9vite cet effet rebond li\u00e9 \u00e0 un surplus d'investissements quand c'est le march\u00e9 qui r\u00e9gule. Et, cerise sur le g\u00e2teau pour tous les gens qui n'aiment pas les p\u00e9troliers : ces derniers gagnent moins d'argent qu'avec une p\u00e9nurie faisant grimper les prix :)\n\nAjoutons \u00e0 cela que de se contenter du \"peak oil+peak gas+peak coal\" pour limiter notre consommation de fossiles ne permet pas de tenir la limite des 2 \u00b0C. La d\u00e9crue p\u00e9troli\u00e8re est d\u00e9j\u00e0 amorc\u00e9e en Europe, malheureusement elle va \u00e0 la fois trop vite pour pr\u00e9server une \u00e9conomie qui ne se r\u00e9invente pas et pas assez vite pour pr\u00e9server le climat..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7018690368690958336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7018690369332625409,urn:li:activity:7018690369332625409,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 68, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7018690369332625409,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7018690369332625409,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7018690369332625409", + "threadId": "activity:7018690369332625409", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018690369332625409", + "urn": "urn:li:activity:7018690369332625409", + "numComments": 128, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7018690369332625409", + "reactionTypeCounts": [ + { + "count": 1284, + "reactionType": "LIKE" + }, + { + "count": 269, + "reactionType": "INTEREST" + }, + { + "count": 212, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7018690369332625409", + "numLikes": 1794, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018690369332625409", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1794, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7018309415040647168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7018309415040647168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7018309415040647168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-prix-de-l%C3%A9nergie-ils-montent-ils-activity-7018309415040647168-bt9d?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7018309413862006785", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7018309415040647168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7018309413862006785", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "iTprr7FUA3Z7gA5ACngFCw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQG0JXzfKNejZg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQG0JXzfKNejZg", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1673295353733?e=1679529600&v=beta&t=x2h7b7jx-pUN89hkhC5E5FFanYD7NvD9Fa0JEq4mtsE", + "expiresAt": 1679529600000, + "height": 1298 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1673295357068?e=1679529600&v=beta&t=HyD_wqBJBJlNQPHGXVPpmI_iVNT4mk4IMJ6YLss21N0", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1673295357068?e=1679529600&v=beta&t=lexYzO3c4evsq-cyByOa9DPPqjVR96CtLPCsPVP3LMY", + "expiresAt": 1679529600000, + "height": 811 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1673295357068?e=1679529600&v=beta&t=XBq3trvmtEpesG8ZumCEFNMHfZkFDMSwcTcYMdGIGgc", + "expiresAt": 1679529600000, + "height": 304 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1673295357068?e=1679529600&v=beta&t=YJtfVUAjeUSNuHmRs921OCN8FxS1UL0G8pWlBPKcqvw", + "expiresAt": 1679529600000, + "height": 101 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1673295357068?e=1679529600&v=beta&t=uKo0pWza7or1ly5wQ31L4nPSogG1Ne9RiEti6zobIG4", + "expiresAt": 1679529600000, + "height": 507 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQG0JXzfKNejZg/feedshare-shrink_" + }, + "displayAspectRatio": 0.6337890625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, line chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7018309413862006785,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les prix de l'\u00e9nergie ? Ils montent, ils descendent... mais, depuis les chocs p\u00e9troliers, la part des d\u00e9penses \u00e9nerg\u00e9tiques dans les budgets des m\u00e9nages est rest\u00e9e tr\u00e8s stable. Il faudra voir si 2022 nous rapproche de 1974, car les donn\u00e9es ne sont pas encore disponibles au minist\u00e8re de la transition \u00e9nerg\u00e9tique, d'o\u00f9 sont issus ces chiffres (et plus pr\u00e9cis\u00e9ment de https://lnkd.in/eXsAPG2k ).\n\nDonner \u00e0 manger et \u00e0 boire \u00e0 nos 1000 esclaves \u00e9nerg\u00e9tiques planqu\u00e9s sous le capot de la voiture, \u00e0 ceux qui peuplent cuisines et salles de bains, \u00e0 ceux qui, dans la cave, assurent le chaud et parfois le froid, et encore \u00e0 ceux qui nous \u00e9clairent ou nous permettent de communiquer coute donc un peu moins de 10% de ce que nous gagnons. \n\nBien sur, cette facture n'inclut pas les esclaves \u00e9nerg\u00e9tiques des usines et des transports de marchandises, mais avouez que, quand m\u00eame, pour le service rendu, c'est donn\u00e9 !\n\nEt, depuis 1970, o\u00f9 l'\u00e9nergie coutait aussi 8% de ce que gagnaient nos parents ou grands-parents, l'arm\u00e9e d'esclaves m\u00e9caniques n'a cess\u00e9 de grossir : \u00e0 l'\u00e9poque, pour 8% t'avais presque rien. Il y avait quasiment 3 fois moins de voitures, peu d'\u00e9lectrom\u00e9nager, pas de chauffage central partout, peu de t\u00e9l\u00e9visions, et bien \u00e9videmment pas d'internet ou de box TV.\n\nA l'avenir, nous allons devoir devenir sobres. Est-ce \u00e0 dire qu'avec une consommation divis\u00e9e par 2 ou 3, la part de l'\u00e9nergie dans le budget sera divis\u00e9e par le m\u00eame facteur ? Notre logique de d\u00e9penses \u00e9tant g\u00e9n\u00e9ralement budg\u00e9taire (on \u00e9pargne ce que l'on doit \u00e9pargner et on d\u00e9pense tout le reste), il n'est pas \u00e9vident de comprendre pourquoi on se mettrait tout d'un coup \u00e0 consommer beaucoup moins alors que nous en aurions les moyens.\n\nSi notre facture d'\u00e9nergie nous coute moins cher parce que nous \u00e9conomisons de l'\u00e9nergie, qu'allons nous faire du surplus ? Jusqu'\u00e0 maintenant la r\u00e9ponse a \u00e9t\u00e9 de consommer autre chose en plus... et donc de consommer un peu plus d'une autre \u00e9nergie (celle pour la mise \u00e0 disposition de ce que nous allons consommer en plus). \n\nLa m\u00eame question se pose aussi pour toute l'\u00e9nergie \"incluse\" dans les produits ou services de la consommation finale : jusqu'\u00e0 maintenant nous avons utilis\u00e9 les marges de manoeuvre budg\u00e9taires d\u00e9gag\u00e9es par la baisse du prix d'un produit ou service pour consommer plus d'autre chose.\n\nSavoir si nous pouvons devenir sobres sans hausse des prix r\u00e9els - ce qui est le but m\u00eame de la taxe carbone - est donc une vraie question. Au regard du climat, l'inflation est-elle une calamit\u00e9 ou une b\u00e9n\u00e9diction ? Pour le moment il existe peu de propositions probantes mariant \"d\u00e9fense du pouvoir d'achat\" et baisse rapide des \u00e9missions..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7018309413862006785,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7018309415040647168,urn:li:activity:7018309415040647168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 59, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7018309415040647168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7018309415040647168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7018309415040647168", + "threadId": "activity:7018309415040647168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018309415040647168", + "urn": "urn:li:activity:7018309415040647168", + "numComments": 140, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7018309415040647168", + "reactionTypeCounts": [ + { + "count": 1169, + "reactionType": "LIKE" + }, + { + "count": 199, + "reactionType": "INTEREST" + }, + { + "count": 181, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7018309415040647168", + "numLikes": 1568, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018309415040647168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1568, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7017863646768726017", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7017863646768726017)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7017863646768726017)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lurgence-%C3%A9cologique-se-heurte-%C3%A0-la-culture-activity-7017863646768726017-gZ9o?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7017863646001123328", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7017863646768726017", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7017863646001123328", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "5i/0Y3kqAFlSffNa3ovjdg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8047021039996732535", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675783088239?e=1677240000&v=beta&t=eDUY3htTypZjPMj78nZ01R5WRYtpmdGbspedR3gVgFs", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675783088239?e=1677240000&v=beta&t=UX8I2pGUrdbZDVeOTvPSP128Xihf__epuPeMnW2zQmc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675783088239?e=1677240000&v=beta&t=avcCbQ_serzL2ZZlJ122k_A69hIFYTWhrj0GpsX74MY", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675783088239?e=1677240000&v=beta&t=uJvypUhkzIiTTBLFF_9so8_2avTBSGUPSWYaGjdZSd8", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGEDH2N_D63tw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8047021039996732535)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8047021039996732535)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L\u2019urgence \u00e9cologique se heurte \u00e0 la culture acad\u00e9mique des universit\u00e9s by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/societe/article/2023/01/06/crise-climatique-dans-les-universites-l-urgence-ecologique-se-heurte-a-la-culture-academique_6156904_3224.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L\u2019urgence \u00e9cologique se heurte \u00e0 la culture acad\u00e9mique des universit\u00e9s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7017863646001123328,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a la th\u00e9orie, et il y a la pratique. La th\u00e9orie, c'\u00e9tait par exemple le rapport du Shift Project \"Mobiliser l'enseignement sup\u00e9rieur pour le climat\" (https://lnkd.in/dNVfiau ), o\u00f9 nous proposions un certain nombre de choses pour que l'enseignement sup\u00e9rieur soit mis en coh\u00e9rence avec la d\u00e9carbonation en particulier, et les limites plan\u00e9taires en g\u00e9n\u00e9ral.\n\nMais en pratique c'est une autre paire de manches. Que faire des enseignements qui ne sont pas ou plus \"raccord\" avec la nouvelle donne ? On peut penser \u00e0 l'\u00e9conomie par exemple, qui int\u00e8gre tr\u00e8s imparfaitement la limite sur les ressources et le r\u00f4le central de l'\u00e9nergie et des machines dans les raisonnements. \n\nQue faire des enseignants qui seront trop nombreux dans un monde qui se d\u00e9carbone ? On peut alors penser aux \u00e9tudes de langues ou d'art par exemple : un monde plus sobre sera un monde avec moins de flux internationaux, et il ne sera peut-\u00eatre plus utile d'avoir autant de traducteurs, d'interpr\u00e8tes ou de guides pour touristes internationaux, et partant plus autant d'\u00e9tudiant(e)s faisant juste des \u00e9tudes de langues \u00e0 l'Universit\u00e9 (mais les langues en \"culture g\u00e9n\u00e9rale\" resteront importantes !).\n\nLa question n'est donc pas seulement d'ajouter un cours avec les bases physiques et biologiques d\u00e9crivant le monde dans lequel nous sommes entr\u00e9s : il faut que le reste de ce qui est enseign\u00e9 ne soit pas en contradiction, et pr\u00e9pare par ailleurs \u00e0 des m\u00e9tiers qui ne le seront pas plus.\n\nEt l\u00e0, nous n'y sommes pas encore. Dans un pays o\u00f9 la libert\u00e9 acad\u00e9mique est un principe tr\u00e8s fort (je ne discute pas du bien fond\u00e9 !), et o\u00f9 les enseignants universitaires sont inamovibles (m\u00eame remarque), r\u00e9orienter le paquebot ne se fera pas rapidement, et la question est m\u00eame pos\u00e9e de savoir ce qui pourrait d\u00e9clencher un changement au bon rythme (c'est \u00e0 dire pour demain matin).\n\nUne autre difficult\u00e9 est aussi soulign\u00e9e en fin de l'article du Monde : pour un enseignant chercheur, modifier le contenu de son cours, c'est potentiellement modifier sa recherche, et cela signifie que, pendant un temps, il ne publie plus (ou plus autant). Avec la sacralisation des classements (dont Shanghai) bas\u00e9s sur le nombre de publications annuelles, rien que cela peut \u00eatre un obstacle tr\u00e8s difficile \u00e0 surmonter pour les universit\u00e9s qui voudraient \"changer de direction\".\n\nIl est donc probable que l'innovation va avoir du mal \u00e0 venir \"d'en haut\". Pour le moment elle vient \"d'\u00e0 c\u00f4t\u00e9\", par exemple avec des cours en ligne que beaucoup d'\u00e9tudiant(e)s peuvent suivre en plus de leur cursus, ou d'\u00e9tablissements \"partis de rien\" (comme le Campus de la Transition cit\u00e9 dans cet article).\n\nIl y aura aussi de l'innovation partie \"d'en bas\", \u00e0 savoir les initiatives individuelles de certain(e)s enseignant(e)s, dont il faut esp\u00e9rer qu'elles inspireront le plus vite possible leurs coll\u00e8gues.\n\nCar, au sens propre chaque \u00e9t\u00e9 d\u00e9sormais, il y a le feu !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7017863646001123328,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7017863646768726017,urn:li:activity:7017863646768726017,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 128, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7017863646768726017,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7017863646768726017,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7017863646768726017", + "threadId": "activity:7017863646768726017", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017863646768726017", + "urn": "urn:li:activity:7017863646768726017", + "numComments": 171, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7017863646768726017", + "reactionTypeCounts": [ + { + "count": 1646, + "reactionType": "LIKE" + }, + { + "count": 212, + "reactionType": "MAYBE" + }, + { + "count": 206, + "reactionType": "INTEREST" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7017863646768726017", + "numLikes": 2117, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017863646768726017", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2117, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7017569097689223168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7017569097689223168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7017569097689223168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_economies-d%C3%A9nergie-la-chasse-au-gaspi-activity-7017569097689223168-Zi03?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7017569096808431616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7017569097689223168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7017569096808431616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "k/EpzUtp8wFB1WrRojDF5Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7653124443252468776", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675701078167?e=1677240000&v=beta&t=07x_uGGcRHYB6MvBCf8pfP9qv9ZT7Egb0PeMXIl6SDQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675701078167?e=1677240000&v=beta&t=H4GATfZ2YRqXDmmaHjrYZt2TPC-rgOomyIigpR1jgoQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675701078167?e=1677240000&v=beta&t=T43V-a5tlS56Nr0SYBhoi2mYDnNtDEXTjEZ2aDI4x_c", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675701078167?e=1677240000&v=beta&t=FzBbD7hwD_IBx91R2sVN91fDNj79zE9Kz5Li1gE3Vp4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE26hMK7K6Qvg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7653124443252468776)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7653124443252468776)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Economies d'\u00e9nergie : la chasse au gaspi ne fait que commencer by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/economies-denergie-la-chasse-au-gaspi-ne-fait-que-commencer-1894540#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Economies d'\u00e9nergie\u00a0: la chasse au gaspi ne fait que commencer" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7017569096808431616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A l'\u00e9poque o\u00f9 le monde \u00e9tait 100% renouvelable, il \u00e9tait moins pilotable qu'aujourd'hui. Il d\u00e9pendait fortement de la biomasse, du vent, du soleil et de l'eau, et ces 4 composantes sont elles-m\u00eames tributaires, de fa\u00e7on tr\u00e8s r\u00e9active (vent par exemple) ou plus lente (biomasse), des conditions du moment.\n\nA l'\u00e9poque, la marine \u00e0 voile avan\u00e7ait quand il y avait du vent, et on ne savait pas exactement \u00e0 quelle heure (ni parfois o\u00f9 !) on toucherait terre.\n\nLes moulins \u00e0 vent tournaient aussi quand il y avait du vent, et il valait mieux avoir un petit stock de farine sous la main pour ne pas risquer de manquer de pain en cas de panne \u00e9olienne un peu prolong\u00e9e. \n\nLes moulins \u00e0 eau \u00e9taient plus r\u00e9guliers, mais, lors d'une ann\u00e9e s\u00e8che ou d'un hiver tr\u00e8s froid (gel), ils pouvaient aussi s'arr\u00eater de tourner. La biomasse pour les animaux \u00e9tait disponible l'\u00e9t\u00e9 et il fallait faire des stocks pour l'hiver... en priant pour qu'ils soient suffisants.\n\nL'\u00e8re des combustibles fossiles a compl\u00e8tement chang\u00e9 la donne, et nous a habitu\u00e9s \u00e0 un monde o\u00f9 la disponibilit\u00e9 d'un produit ou service ne d\u00e9pend en rien des \u00e9l\u00e9ments ext\u00e9rieurs. \n\nAujourd'hui, au sens litt\u00e9ral du terme, nous ne voyons pas pourquoi il serait n\u00e9cessaire qu'il y ait du vent ou du soleil pour qu'un v\u00eatement soit assembl\u00e9 ou transport\u00e9, un aliment mis \u00e0 notre disposition, une classe d'histoire ou une op\u00e9ration de l'appendicite ait lieu, un bus avance ou un coup de fil puisse \u00eatre pass\u00e9.\n\nLa \"chasse au gaspi\" - c'est \u00e0 dire l'av\u00e8nement de l'\u00e8re des \u00e9conomies d'\u00e9nergie impos\u00e9es par insuffisance d'offre - et le retour en force des productions renouvelables non pilotables vont probablement nous remettre, un peu ou beaucoup, dans ce monde moins pr\u00e9visible, moins abondant et plus volatil. \n\nAinsi il a \u00e9t\u00e9 question que les \u00e9coles soient ferm\u00e9es ou une partie du r\u00e9seau t\u00e9l\u00e9phonique inop\u00e9rant les jours sans vent (puisque ce sont les jours, en hiver, o\u00f9 il y a potentiellement un probl\u00e8me d'approvisionnement). Pour le moment cette \u00e9ventualit\u00e9 n'est pas arriv\u00e9e (un temps d\u00e9pressionnaire est plut\u00f4t doux et venteux ; bonne conjonction !) mais son \u00e9vocation montre bien que le monde qui nous attend n'a pas vraiment \u00e9t\u00e9 pens\u00e9 \u00e0 l'avance c\u00f4t\u00e9 consommation.\n\nIl va falloir se faire \u00e0 l'id\u00e9e que tous les kWh ne sont pas \u00e9quivalents. Les combustibles fossiles n'ont pas juste amen\u00e9 des kWh en grande quantit\u00e9 : ils les ont amen\u00e9s \u00e0 la demande. S'organiser sans cette caract\u00e9ristique demandera beaucoup d'efforts : c'est ce que l'on appelle la \"flexibilit\u00e9\". Sa description pr\u00e9cise, et son caract\u00e8re plus ou moins indolore, restent g\u00e9n\u00e9ralement un point (tr\u00e8s) faible des sc\u00e9narios pour l'avenir." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7017569096808431616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7017569097689223168,urn:li:activity:7017569097689223168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 106, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7017569097689223168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7017569097689223168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7017569097689223168", + "threadId": "activity:7017569097689223168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017569097689223168", + "urn": "urn:li:activity:7017569097689223168", + "numComments": 326, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jean Lecordier" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7017569097689223168", + "reactionTypeCounts": [ + { + "count": 2648, + "reactionType": "LIKE" + }, + { + "count": 266, + "reactionType": "INTEREST" + }, + { + "count": 212, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7017569097689223168", + "numLikes": 3197, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017569097689223168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3199, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7017105538584829952", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7017105538584829952)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7017105538584829952)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-r%C3%A9chauffement-climatique-bient%C3%B4t-activity-7017105538584829952-Y_ZL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7017105537964113923", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7017105538584829952", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7017105537964113923", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "KuAT26IZGNRRTvfJMKeV2w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8487082001303440346", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676572886461?e=1677240000&v=beta&t=KkOiaVSp-Q-QesrwMn7FM4Q-k_NA2lQEPhkBYAtlAe8", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676572886461?e=1677240000&v=beta&t=FqFYH8qUnpYZpA4ZegNISBDKX6XfacUazmbGRWPZtjo", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676572886461?e=1677240000&v=beta&t=qWCk_WjS_Kvt254DvdM9z5SDrN4y0WmiDOw8taZt280", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676572886461?e=1677240000&v=beta&t=QooZRPPEjPXUqkonVioLHaxYdOeHaFAqit7Ph8dvT9I", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEBltEFv9DyRQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8487082001303440346)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8487082001303440346)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici : R\u00e9chauffement climatique : bient\u00f4t la fin des saisons ? - Yves Calvi - 02/01/2023 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=bwzeqRt8dNs" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici \u00e9tait invit\u00e9 sur RTL dans l\u2019\u00e9mission d'Yves Calvi le 2 janvier 2023. Vid\u00e9o originale : https://www.youtube.com/watch?v=FMbKODJqb7k Site de Jancovici : https://jancovici.com Page Facebook :..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici : R\u00e9chauffement climatique : bient\u00f4t la fin des saisons ? - Yves Calvi - 02/01/2023" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7017105537964113923,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Faut-il parler de \"d\u00e9r\u00e8glement\", de \"crise\", de \"d\u00e9rive\", ou encore une autre expression pour caract\u00e9riser l'\u00e9volution climatique ?\n\nRestera-t-il des hivers dans un monde qui se r\u00e9chauffe ?\n\nDoit-on encore utiliser le mot de \"normale\" en mati\u00e8re de m\u00e9t\u00e9o ou de climat, puisque l'\u00e9volution que nous avons mise en route enclenche une modification d\u00e9sormais permanente du syst\u00e8me climatique, qui ne permet pas le retour \u00e0 un \u00e9tat stable ? (or, ce que l'on qualifie de \"normale\" est g\u00e9n\u00e9ralement un \u00e9tat stable).\n\nAllons-nous pouvoir g\u00e9rer la question climatique sans que les \"\u00e9lites\" ne se forment de mani\u00e8re approfondie pour en cerner les contours ? (chose que manifestement la personne qui a r\u00e9dig\u00e9 le discours de voeux de Macron n'a pas bien faite :) )\n\nVoici quelques unes des questions abord\u00e9es dans cette br\u00e8ve apparition dans la matinale de RTL. Malgr\u00e9 une quantit\u00e9 de \"heu\" qui ferait sauter en l'air n'importe quel conseiller en communication, j'esp\u00e8re que les r\u00e9ponses apport\u00e9es seront utiles \u00e0 un auditoire qui a aussi droit \u00e0 Pascal Praud 2 heures par jour.\n\nEn particulier, il me semble essentiel que la population comprenne bien que \"l'\u00e9tat normal\" n'existe plus. Car c'est cela qui justifie que, alors m\u00eame que nous allons devoir consacrer plus de moyens \u00e0 la d\u00e9carbonation, nous commencions aussi \u00e0 redoubler d'efforts en mati\u00e8re \"d'adaptation au changement climatique\".\n\nIl faut donc consacrer des comp\u00e9tences et des moyens physiques \u00e0 nous pr\u00e9munir au mieux contre des \u00e9volutions adverses qui ne sont pas encore l\u00e0, mais dont nous savons avec certitude qu'elles vont arriver.\n\nCe qui vient de se produire rappelle qu'un jour l'avenir devient le pr\u00e9sent. Les seuls qui ne sont pas surpris sont les mod\u00e9lisateurs du climat et celles et ceux qui pr\u00eatent attention \u00e0 leurs propos. Mais l'important est que ce soit le reste de la population qui comprenne ce qui se passe et en tire les cons\u00e9quences pour l'action." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7017105537964113923,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7017105538584829952,urn:li:activity:7017105538584829952,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 66, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7017105538584829952,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7017105538584829952,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7017105538584829952", + "threadId": "activity:7017105538584829952", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017105538584829952", + "urn": "urn:li:activity:7017105538584829952", + "numComments": 146, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7017105538584829952", + "reactionTypeCounts": [ + { + "count": 1395, + "reactionType": "LIKE" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 88, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7017105538584829952", + "numLikes": 1650, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017105538584829952", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1650, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7016681335809261568", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7016681335809261568)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7016681335809261568)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-mati%C3%A8re-d%C3%A9nergie-le-mot-%C3%A0-la-mode-est-activity-7016681335809261568-vfwj?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7016681334949486592", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7016681335809261568", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7016681334949486592", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "HEZSVFUARliYgjTkzC5eSA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHCB8XtHW9GHw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHCB8XtHW9GHw", + "artifacts": [ + { + "width": 2028, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1672907191445?e=1679529600&v=beta&t=vtfryN3kWNbOYNXBPw9j4rZ_JIxCoNE0NLs8GGFDaxA", + "expiresAt": 1679529600000, + "height": 1142 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1672907192650?e=1679529600&v=beta&t=b4F4DPfwA0oj8ivxE4Gw0hY6-iYFrcVFnblSn0CWFZk", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1672907192650?e=1679529600&v=beta&t=I6WzfaoMsgmQwY36C4LgXb6Gg2HpZZRhuz6fCCk7mjA", + "expiresAt": 1679529600000, + "height": 721 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1672907192650?e=1679529600&v=beta&t=nbiYV6FcfRTugH_N9ayL8036DLy0KAfo8_6GpWhNrcs", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1672907192650?e=1679529600&v=beta&t=Fk3GWirnONYNRwpUUhl1yc6uWl_w6KqxH84OsT8xsWU", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1672907192650?e=1679529600&v=beta&t=4myYwYnLyPgq3klaGIPl0Lq4qhnI8izRJZS5zNfxl7U", + "expiresAt": 1679529600000, + "height": 450 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHCB8XtHW9GHw/feedshare-shrink_" + }, + "displayAspectRatio": 0.5631163708086785 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7016681334949486592,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En mati\u00e8re d'\u00e9nergie, le mot \u00e0 la mode est donc \"sobri\u00e9t\u00e9\" (qui ne figure cependant pas dans le message de voeux pr\u00e9sidentiel). Pour savoir ce que ce terme inspirait \u00e0 nos concitoyens, l'IFOP est aller les cuisiner un peu (cela s'appelle un sondage), et en a retir\u00e9 une analyse de 86 pages (pas en libre acc\u00e8s mais que l'on m'a gentiment fournie quand m\u00eame :) ). \n\nIl y figure notamment le graphique ci-dessous, qui r\u00e9sume ce \u00e0 quoi peut servir la sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique selon les personnes interrog\u00e9es. On y d\u00e9couvre avec \u00e9tonnement (enfin pour moi) que la moiti\u00e9 de la population (environ) pense que la sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique peut contribuer au manque de certaines \u00e9nergies ou au d\u00e9r\u00e8glement climatique. \n\nCela sugg\u00e8re que ce mot apparu de fa\u00e7on r\u00e9cente dans le discours politique est tr\u00e8s loin d'\u00eatre correctement compris par nos concitoyens, du moins si la bonne compr\u00e9hension est la baisse volontaire de la consommation des individus. \n\nAu demeurant, une question sur \"qui doit s'engager en faveur de la sobri\u00e9t\u00e9\", pos\u00e9e un peu plus loin, met les entreprises devant les citoyens, alors que, \u00e0 l'\u00e9vidence, la sobri\u00e9t\u00e9 est bien une affaire de consommation finale...\n\nIl est vraisemblable que, pour l'heure, cette notion de sobri\u00e9t\u00e9 est aussi confondue avec celle d'efficacit\u00e9. Les questions pos\u00e9es dans l'\u00e9tude de l'IFOP sur les actes auxquels les personnes sont pr\u00eates m\u00e9langent du reste un peu les deux (choisir des appareils plus efficaces et isoler son logement se retrouve est dans la m\u00eame liste que moins utiliser sa voiture et moins prendre l'avion). \n\nEnfin il est probable que \"les gens\" n'ont pas du tout les ordres de grandeur en t\u00eate sur l'effort \u00e0 faire. Beaucoup de r\u00e9pondants consid\u00e8rent que de r\u00e9duire sa consommation d'\u00e9nergie de 10% est ce qu'il faut viser, mais la \"sobri\u00e9t\u00e9 des 2\u00b0C\" nous am\u00e8nera tr\u00e8s au-del\u00e0 de cette valeur !\n\nIl ne suffira donc pas de brandir ce mot de \"sobri\u00e9t\u00e9\" pour d\u00e9gager un consensus et d\u00e9crire qui devra faire quoi. Pour parvenir \u00e0 cet objectif, il faudra donner corps \u00e0 ce terme sous forme... d'un plan. Ca ne vous rappelle rien :) ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7016681334949486592,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7016681335809261568,urn:li:activity:7016681335809261568,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 96, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7016681335809261568,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7016681335809261568,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7016681335809261568", + "threadId": "activity:7016681335809261568", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016681335809261568", + "urn": "urn:li:activity:7016681335809261568", + "numComments": 165, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7016681335809261568", + "reactionTypeCounts": [ + { + "count": 1326, + "reactionType": "LIKE" + }, + { + "count": 155, + "reactionType": "MAYBE" + }, + { + "count": 151, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7016681335809261568", + "numLikes": 1666, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016681335809261568", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1667, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7016472206754906113", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7016472206754906113)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7016472206754906113)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_participez-au-concours-dimaginaires-bas-activity-7016472206754906113-Qtan?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7016472206020853760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7016472206754906113", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7016472206020853760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "cZDknXRt1A/y+nrXk95Btw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7906247804821788833", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676541270542?e=1677240000&v=beta&t=7tNh6_qMA647heeysbDosS_Bem8GgT93EZbo_OUJdQk", + "expiresAt": 1677240000000, + "height": 413 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676541270542?e=1677240000&v=beta&t=n-fFNTQx01DQ5WebAGdaMcvl8Q8UkgNKih-bCPZQ-D4", + "expiresAt": 1677240000000, + "height": 421 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676541270542?e=1677240000&v=beta&t=JTiEIqmJbqsROTXKCb8_SMneqecq_1gGYYlseRobcrM", + "expiresAt": 1677240000000, + "height": 82 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676541270542?e=1677240000&v=beta&t=1b-i59kHc4RPWbzfwen1Sx-IpL63Hpbrp7BLufX38FY", + "expiresAt": 1677240000000, + "height": 247 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFrGW2ai70isQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7906247804821788833)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7906247804821788833)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Participez au concours d'imaginaires bas carbone des Shifters ! by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/concours-shifters-imaginaires-bas-carbone/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Participez au concours d'imaginaires bas carbone des Shifters !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7016472206020853760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Vous maniez le crayon ou la cam\u00e9ra de mani\u00e8re acceptable ? Contribuer \u00e0 la d\u00e9carbonation vous tente ? Vous n'avez pas la possibilit\u00e9, comme Bruno Le Maire, de le faire en faisant r\u00e9diger un projet de loi sur l'industrie \"verte\" (https://bit.ly/3Cq4rgK ) ?\n\nDevenez auteur de BD \u00e0 succ\u00e8s (c'est possible m\u00eame si on ne s'y attend pas, je peux en t\u00e9moigner :) ), ou rivalisez avec \"Don't Look Up\" ! Pour agir, il faut en avoir envie, et la fiction, en \"donnant \u00e0 voir\", peut \u00eatre un moyen de susciter cette envie. \n\nLes Shifters - l'association des b\u00e9n\u00e9voles soutenant et contribuant aux travaux du Shift Project - organisent donc un concours de (tr\u00e8s) courts m\u00e9trages et de (tr\u00e8s) courtes bandes dessin\u00e9es autour du th\u00e8me \"un lundi en 2050\". Ce Lundi devra \u00e9videmment \u00eatre \u00e0 la fois d\u00e9carbon\u00e9, r\u00e9aliste, et enviable.\n\nL'ann\u00e9e derni\u00e8re, 210 \u00e9crivain(e)s en herbe avaient tent\u00e9 leur chance \u00e0 un concours de nouvelles organis\u00e9 par la m\u00eame association, avec un cahier des charges voisin : https://lnkd.in/eun_dbnd . Cette ann\u00e9e le format est diff\u00e9rent mais l'objectif est le m\u00eame. \n\nIl m'est souvent arriv\u00e9 de le dire, donc je peux le faire une fois de plus : changer de mod\u00e8le de soci\u00e9t\u00e9 n'est pas qu'une affaire d'ing\u00e9nieurs (et peut-\u00eatre m\u00eame pas avant tout une affaire d'ing\u00e9nieurs). C'est aussi et surtout une affaire de valeurs, d'\u00e9thique, de priorit\u00e9s, et d'incarnation de ce qui est possible.\n\nCe petit concours est donc la \"part du colibri\" pour contribuer sur ces plans l\u00e0. Alors, si ce petit d\u00e9fi vous tente, lancez vous !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7016472206020853760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7016472206754906113,urn:li:activity:7016472206754906113,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 164, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7016472206754906113,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7016472206754906113,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7016472206754906113", + "threadId": "activity:7016472206754906113", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016472206754906113", + "urn": "urn:li:activity:7016472206754906113", + "numComments": 218, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7016472206754906113", + "reactionTypeCounts": [ + { + "count": 1652, + "reactionType": "LIKE" + }, + { + "count": 121, + "reactionType": "EMPATHY" + }, + { + "count": 109, + "reactionType": "APPRECIATION" + }, + { + "count": 44, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7016472206754906113", + "numLikes": 1961, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016472206754906113", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1961, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7016101906401927169", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7016101906401927169)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7016101906401927169)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_greenwashing-lutilisation-abusive-du-label-activity-7016101906401927169-r47p?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7016101905554628608", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7016101906401927169", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7016101905554628608", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "GBF5VyQCk/o8T9u7KFwxow==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8137118342388500607", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676285803796?e=1677240000&v=beta&t=69safCPVZC4HoXRpAn_10xjIFqJHZ4rBLAl22S1aajg", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676285803796?e=1677240000&v=beta&t=dPoRbVmgdTrii-edHRz0bmYyGaMeLrE_v_Tzel1GhSo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676285803796?e=1677240000&v=beta&t=YUgDm72eZQ4buviWSaHoAFm7lBucru2G4ZHC6axoXVY", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676285803796?e=1677240000&v=beta&t=ei-rjOjwwhTlOOr4o26ATntyAx1UR0GFQDXVItsKsHI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEVsJxQJmZ4mw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8137118342388500607)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8137118342388500607)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Greenwashing : l'utilisation abusive du label \u00ab neutralit\u00e9 carbone \u00bb punie par la loi by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/conso-distribution/greenwashing-lutilisation-abusive-du-label-neutralite-carbone-punie-par-la-loi-1893390" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Greenwashing\u00a0: l'utilisation abusive du label \u00ab\u00a0neutralit\u00e9 carbone\u00a0\u00bb punie par la loi" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7016101905554628608,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il va devenir un peu plus difficile pour les entreprises de pr\u00e9senter leurs produits comme \"neutres\". Pas totalement impossible (cela aurait \u00e9t\u00e9 l'id\u00e9al : https://lnkd.in/dGTt6Zs), mais plus difficile : l'entreprise qui affirme qu'un de ses produits est neutre ne pourra le faire que si elle a :\n- fait un bilan des \u00e9missions de gaz \u00e0 effet de serre du produit ou service concern\u00e9 sur l'ensemble de son cycle de vie.\n- \u00e9tabli et publi\u00e9 la trajectoire de r\u00e9duction des \u00e9missions de CO2 associ\u00e9es au produit ou au service, avec des objectifs quantifi\u00e9s \u00e0 10 ans\n- pr\u00e9cis\u00e9 la nature et la description des projets utilis\u00e9s pour acheter des cr\u00e9dits (la \"compensation\").\n\nCela peut sembler un peu anecdotique de se concentrer sur la communication des entreprises au lieu de se concentrer sur leurs proc\u00e9d\u00e9s, leurs mati\u00e8res premi\u00e8res, les usages de leurs produits, etc.\n\nSauf que, dans un monde qui doit se d\u00e9carboner, le premier juge de paix auquel confronter les proc\u00e9d\u00e9s, mati\u00e8res premi\u00e8res et usages, c'est justement leur \"contenu en carbone\". Obliger les entreprises \u00e0 le mesurer, et \u00e0 le faire \u00e9voluer dans la bonne direction, est donc une figure impos\u00e9e pour que l'ensemble du syst\u00e8me se mette en mouvement. C'est bien l'objectif qui d\u00e9termine la nature de l'action \u00e0 suivre, et non l'inverse.\n\nLa sanction pr\u00e9vue en cas d'infraction peut aller jusqu'au montant d\u00e9pens\u00e9 dans la communication (donc plus d'un million si c'est \u00e0 la t\u00e9l\u00e9). A cela il faudrait probablement rajouter, en cas de condamnation, la r\u00e9putation un peu \u00e9corn\u00e9e de l'entreprise prise la main dans le pot de peinture verte, qui lui coutera aussi n\u00e9cessairement quelque chose, sur sa capacit\u00e9 \u00e0 recruter par exemple.\n\nEvidemment, l'id\u00e9al serait d'obliger \u00e0 communiquer sur chaque produit ou service son empreinte carbone sans autre forme de commentaire. A ce moment, plus besoin de se demander si un produit est neutre ou pas : on saurait combien a \u00e9t\u00e9 \u00e9mis pour sa fabrication, point. \n\nLa difficult\u00e9 pour en arriver l\u00e0 est que, \u00e0 l'heure des chaines de valeur mondialis\u00e9es (aucun m\u00e9tal incorpor\u00e9 dans un objet disponible dans notre pays ne vient de notre pays, par exemple), on ne peut pas calculer le contenu carbone d'un produit de mani\u00e8re exacte sans que l'ensemble des entreprises - en France ou \u00e0 l'\u00e9tranger - qui ont contribu\u00e9 \u00e0 la sa fabrication ne disposent d'une comptabilit\u00e9 carbone analytique. \n\nComme il est peu probable que, la semaine prochaine, la Chine, l'Allemagne, le Mexique, le Chili, le Maroc et la Turquie, et en fait tous les autres pays, imposent \u00e0 leurs entreprises de tenir une telle comptabilit\u00e9, cela signifie que, pour un temps au moins, il sera plus facile d'interdire ce qui est grossi\u00e8rement faux que de mettre en place ce qui est quantitativement exact." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7016101905554628608,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7016101906401927169,urn:li:activity:7016101906401927169,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 155, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7016101906401927169,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7016101906401927169,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7016101906401927169", + "threadId": "activity:7016101906401927169", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016101906401927169", + "urn": "urn:li:activity:7016101906401927169", + "numComments": 261, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7016101906401927169", + "reactionTypeCounts": [ + { + "count": 5552, + "reactionType": "LIKE" + }, + { + "count": 378, + "reactionType": "PRAISE" + }, + { + "count": 324, + "reactionType": "MAYBE" + }, + { + "count": 185, + "reactionType": "INTEREST" + }, + { + "count": 52, + "reactionType": "EMPATHY" + }, + { + "count": 35, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7016101906401927169", + "numLikes": 6526, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016101906401927169", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6529, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7015751553600880640", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7015751553600880640)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7015751553600880640)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-ces-universit%C3%A9s-qui-interdisent-%C3%A0-activity-7015751553600880640-4mhu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7015751552820772864", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7015751553600880640", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7015751552820772864", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "uwyv4fMekZ9BQGmlWZVZKg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9150029488320398542", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676616576342?e=1677240000&v=beta&t=FyCtPqizWs4W3ePQ2jAJ96rT0GRu0l8wnQa4T4i154Y", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676616576342?e=1677240000&v=beta&t=knk4TEM_UDQjHQ8YA-DRRF5tVa40Ppe43EzSn9tzjt0", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676616576342?e=1677240000&v=beta&t=49qrQyFKE939zdLe1k-cQLC4y79g9acZ-fjZba0KoaA", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676616576343?e=1677240000&v=beta&t=0YT7aLf9enwQkHHeoCFGjpci0N4UGsF2UW3h7l2_Aek", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHotGCXQDS2RA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9150029488320398542)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9150029488320398542)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "courrierinternational.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat. Ces universit\u00e9s qui interdisent \u00e0 leurs chercheurs de prendre l\u2019avion by courrierinternational.com", + "actionTarget": "https://www.courrierinternational.com/article/climat-ces-universites-qui-interdisent-a-leurs-chercheurs-de-prendre-l-avion" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat. Ces universit\u00e9s qui interdisent \u00e0 leurs chercheurs de prendre l\u2019avion" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7015751552820772864,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "De m\u00e9moire (car je n'ai plus la r\u00e9f\u00e9rence en t\u00eate), un professeur d'universit\u00e9 suisse a (ou avait avant covid) une empreinte carbone li\u00e9e \u00e0 sa profession d'environ 10 tonnes de CO2 par an. En cause : essentiellement les voyages en avion associ\u00e9s aux colloques qui deviennent l'ordinaire des universitaires quand ils se sont fait un nom dans leur sp\u00e9cialit\u00e9.\n\nL'\u00e9tude qui donnait ce r\u00e9sultat indiquait \u00e9galement que cette empreinte carbone \"a\u00e9rienne\" \u00e9tait croissante avec le statut : elle d\u00e9marrait \u00e0 une tonne pour un doctorat ou post-doctorant (ma m\u00e9moire me fait d\u00e9faut sur ce point pr\u00e9cis) pour finir \u00e0 10 tonnes en haut de l'\u00e9chelle (qui en Suisse s'appelle \"professeur ordinaire\" !).\n\nC'est donc une initiative int\u00e9ressante que celle de l\u2019Universit\u00e9 d\u2019Utrecht, aux\u00a0Pays-Bas, qui, apparemment, va interdire \u00e0 son personnel de prendre l'avion sur des distances inf\u00e9rieures \u00e0 700 km.\n\nL'Universit\u00e9 de Neufch\u00e2tel, elle, demande \u00e0 ce que l'avion ne soit utilis\u00e9 que si il n'y a pas d'alternative en train de moins de 10 heures. Notre gouvernement fait p\u00e2le figure avec ses 2h30 et l'exclusion d'un grand nombre de liaisons du dispositif !\n\nCette initiative commence \u00e9videmment par le plus facile, parce que, m\u00eame si 10 heures c'est long, ca reste g\u00e9rable sur une journ\u00e9e, et par ailleurs dans un train un chercheur peut travailler. Certes si son m\u00e9tier est de faire des manips sur des plantes ou des tests de r\u00e9sistance des mat\u00e9riaux il va avoir du mal \u00e0 le faire en se d\u00e9pla\u00e7ant, mais rien ne l'emp\u00eache de traiter son courrier, r\u00e9diger des comptes-rendus, en lire d'autres....\n\nMalheureusement, dans les vols a\u00e9riens, ce qui \u00e9met beaucoup ce sont les long-courrier : en gros, les \u00e9missions d'un vol sont proportionnelles au kilom\u00e9trage (pas tout \u00e0 fait parce que le d\u00e9collage consomme proportionnellement plus, mais en premi\u00e8re approximation on peut retenir ca).\n\nEt pour les long-courrier l'alternative devient moins confortable. Le train pour traverser la Russie ou les USA c'est plusieurs jours d'affil\u00e9e, et le bateau pour traverser l'Atlantique une semaine. R\u00e9duire les long courrier, qui est donc une mesure \"forte\" pour diminuer l'empreinte carbone de la recherche, signifie en pratique r\u00e9duire les colloques, ou les passer en visioconf\u00e9rence (ca va faire grincer quelques dents !).\n\nIl n'emp\u00eache que la recherche, comme le reste de nos activit\u00e9s, devra fatalement \u00e9voluer un jour ou l'autre dans un monde o\u00f9 la mobilit\u00e9 longue distance sera moins facile. Il serait souhaitable que tout nouveau projet qui d\u00e9marre soit compatible, \u00e0 la fois sur le fond et sur le mode op\u00e9ratoire du projet, avec ce cahier des charges." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7015751552820772864,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7015751553600880640,urn:li:activity:7015751553600880640,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 224, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7015751553600880640,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7015751553600880640,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7015751553600880640", + "threadId": "activity:7015751553600880640", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015751553600880640", + "urn": "urn:li:activity:7015751553600880640", + "numComments": 497, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7015751553600880640", + "reactionTypeCounts": [ + { + "count": 3816, + "reactionType": "LIKE" + }, + { + "count": 297, + "reactionType": "MAYBE" + }, + { + "count": 293, + "reactionType": "INTEREST" + }, + { + "count": 90, + "reactionType": "PRAISE" + }, + { + "count": 44, + "reactionType": "APPRECIATION" + }, + { + "count": 33, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7015751553600880640", + "numLikes": 4573, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015751553600880640", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4579, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7015289760269099008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7015289760269099008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7015289760269099008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_v%C5%93ux-2023-aux-fran%C3%A7ais-activity-7015289760269099008-rJ0N?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7015289759484760064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7015289760269099008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7015289759484760064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "41tYClR9cKDZl7YM3mnhQw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9135926289784138403", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676205431089?e=1677240000&v=beta&t=CVFKCB-CNm3BXsciwVv9Wm5Yfg8NsDticPtsxqPp45Y", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676205431089?e=1677240000&v=beta&t=QDiAYAeBXtqourVqPOFG8ZdSNiOwgV4s_nkfpcBxLew", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676205431089?e=1677240000&v=beta&t=IP5ylVl89ntHHE__-muWSA2-I_F9o2HjNuXpeTA82pY", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676205431089?e=1677240000&v=beta&t=zg7iYGDm5sRYspMLvaMN8ZvFjbUbTsKbPFtLRK4ZKJU", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGGm99cVWgHQQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9135926289784138403)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9135926289784138403)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "elysee.fr \u2022 12 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: V\u0153ux 2023 aux Fran\u00e7ais. by elysee.fr", + "actionTarget": "https://www.elysee.fr/emmanuel-macron/2022/12/31/voeux-2023-aux-francais" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "V\u0153ux 2023 aux Fran\u00e7ais." + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7015289759484760064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est l'\u00e9poque des voeux ! M\u00eame si seul le prononc\u00e9 fait foi, j'ai attentivement lu le texte mis en ligne par l'Elys\u00e9e. \n\nOn y lit \"Qui aurait imagin\u00e9 [il y a un an] que (...) nous\u00a0\u00a0aurions \u00e0 affronter (...) une effroyable crise\u00a0\u00a0\u00e9nerg\u00e9tique, une crise alimentaire mena\u00e7ante, (...) la vague d\u2019inflation, (...) ou la crise climatique\u00a0?\"\n\nQui ? Sur l'\u00e9nergie, tous ceux qui, remarquant que les combustibles fossiles sont \u00e9puisables alors qu'ils fondent la soci\u00e9t\u00e9 moderne, soulignent depuis longtemps que leur baisse subie dans un monde non pr\u00e9par\u00e9 se traduira par des cons\u00e9quences adverses d'ampleur croissante (d\u00e8s Meadows et al au moins : https://bit.ly/2HkwcIl ).\n\nL'Europe \u00e9tait bien avant l'Ukraine en baisse subie sur le p\u00e9trole (depuis 2007), le gaz (depuis 2005), le charbon (depuis les ann\u00e9es 50), et en baisse choisie sur le nucl\u00e9aire (depuis 2005). Notre baisse de production physique (des tonnes charg\u00e9es dans les camions ou des immeubles construits) a commenc\u00e9 d\u00e8s 2008. L'empreinte carbone des fran\u00e7ais a commenc\u00e9 \u00e0 baisser en m\u00eame temps que leur revenu disponible, en 2009 ou 2010, dans la foul\u00e9e de cette d\u00e9crue \u00e9nerg\u00e9tique.\n\nIl n'y a donc pas besoin d'\u00eatre grand clerc pour \"voir venir des ennuis\" avec la d\u00e9crue \u00e9nerg\u00e9tique, sans bien s\u00fbr \u00eatre en mesure de d\u00e9crire ces derniers avec pr\u00e9cision. Pour ce que j'en connais ce qui pr\u00e9c\u00e8de ne fait l'objet d'aucune attention particuli\u00e8re de l'Elys\u00e9e.\n\nSur l'alimentation, m\u00eame motif m\u00eame punition : l'agriculture moderne c'est un climat stable et des combustibles fossiles. Que le climat devienne instable et les combustibles fossiles moins accessibles, et la conclusion devient logique \u00e0 d\u00e9faut d'\u00eatre plaisante. \n\nEnfin, sur la crise climatique, c'est \u00e0 se demander ce qui est pass\u00e9 par la t\u00eate de la personne qui a r\u00e9dig\u00e9 ce discours que de poser la question de savoir \"qui l'aurait pr\u00e9dite\". S\u00e9rieux ?\n\nOn trouve ensuite \"A chaque \u00e9preuve, l\u2019Europe nous a permis d\u2019agir plus vite et plus fort\". C'est vrai et faux : l'Europe avance aujourd'hui sur deux pieds qui contribuent in\u00e9galement au mandat initial de paix et \"prosp\u00e9rit\u00e9\". Le pied \"lib\u00e9ral et concurrentiel\" tire de plus en plus contre son propre camp. On a vu ses effets sur l'\u00e9lectricit\u00e9, sur la perte industrielle ou sur l'incapacit\u00e9 \u00e0 faire \u00e9merger une agriculture \"durable\".\n\nLe pied r\u00e9glementaire prend de la vigueur. On lui doit par exemple la limitation des \u00e9missions des voitures neuves, les \u00e9conomies d'\u00e9nergie dans le b\u00e2timent, les obligations de transparence sur les \u00e9missions ou la \"taxe carbone aux fronti\u00e8res\". Mais l'Europe doit encore apprendre \u00e0 marcher -) donc coordonner ses 2 pieds - dans le monde fini.\n\nSuivent plusieurs paragraphes mentionnant que \"notre travail\" va permettre d'avancer dans la bonne direction. Mais ce discours - qui parle surtout d'intendance \u00e0 court terme, certes utile - ne d\u00e9crit pas de grand projet coh\u00e9rent de long terme qui soit lisible (et donc qui motive \u00e0 travailler). Peut-\u00eatre n'\u00e9tait-ce pas le moment d'en parler." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7015289759484760064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7015289760269099008,urn:li:activity:7015289760269099008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 259, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7015289760269099008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7015289760269099008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7015289760269099008", + "threadId": "activity:7015289760269099008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015289760269099008", + "urn": "urn:li:activity:7015289760269099008", + "numComments": 382, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7015289760269099008", + "reactionTypeCounts": [ + { + "count": 7104, + "reactionType": "LIKE" + }, + { + "count": 570, + "reactionType": "PRAISE" + }, + { + "count": 435, + "reactionType": "INTEREST" + }, + { + "count": 250, + "reactionType": "MAYBE" + }, + { + "count": 72, + "reactionType": "APPRECIATION" + }, + { + "count": 64, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7015289760269099008", + "reacted": "LIKE", + "numLikes": 8495, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015289760269099008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 8514, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7014995835687944192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7014995835687944192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7014995835687944192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_apr%C3%A8s-une-ann%C3%A9e-agit%C3%A9e-le-monde-des-m%C3%A9taux-activity-7014995835687944192-APdy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7014995834752630785", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7014995835687944192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7014995834752630785", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "8qi8pgG2TtbuR1ZK3+wLFg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9219098135315210715", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675804672450?e=1677240000&v=beta&t=yHsEYzRExqkyqfP3iCzsyH1W048JXDrcoyaU1YUdGKU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675804672450?e=1677240000&v=beta&t=Rjpmnc34ptGnOmX3PZSCy6s0BdpQsAZUy99e8vFBN34", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675804672450?e=1677240000&v=beta&t=C56D_WtSnaJ-xLm4_C--kj2jgQqYaKN3u529dspjME0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675804672450?e=1677240000&v=beta&t=BM9XcqcWkHfQhYMLv9dCmveyKK_lAISEW_e6fLd-I4g", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFDmmheuQatYA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9219098135315210715)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9219098135315210715)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Apr\u00e8s une ann\u00e9e agit\u00e9e, le monde des m\u00e9taux se pr\u00e9pare \u00e0 un supercycle by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/apres-une-annee-agitee-le-monde-des-metaux-se-prepare-a-un-supercycle-1892507" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s une ann\u00e9e agit\u00e9e, le monde des m\u00e9taux se pr\u00e9pare \u00e0 un supercycle" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7014995834752630785,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 374, + "length": 19, + "miniProfile": { + "firstName": "Christophe", + "lastName": "Poinssot", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAA24xQEBcOp94cQTsFmv_bpbgQ-B9153eZ8", + "occupation": "Directeur G\u00e9n\u00e9ral D\u00e9l\u00e9gu\u00e9 et Directeur Scientifique chez BRGM / Deputy CEO and scientific director at French Geological Survey (Brgm)", + "objectUrn": "urn:li:member:230212865", + "entityUrn": "urn:li:fs_miniProfile:ACoAAA24xQEBcOp94cQTsFmv_bpbgQ-B9153eZ8", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1617046772083?e=1681948800&v=beta&t=coZNqswSvg1ZqLHvnCcfdOC5ZTPMl8ojNv9jjIItHcM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1617046772083?e=1681948800&v=beta&t=CrFrd4e9tQsOBBv5Ez7o1EC5YtFYy3BtljlCweDL-Io", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQGD-PEAIuFPVA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "christophe-poinssot-05512165", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1628084112044?e=1681948800&v=beta&t=twpYle4QGNZu1tUE65Nn_xDxxUCpoeAEGM9PO-wecYE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1628084112044?e=1681948800&v=beta&t=-f95a7iK1s3JdEYW7S9B6gjcvlolIh-o5xz46RjKziE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1628084112044?e=1681948800&v=beta&t=wkykgdbKJjwrBkj9_8bjpWdzy2-k59ufptTYayDp-Zg", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1628084112044?e=1681948800&v=beta&t=WG4lYv3R8a4trzjyEo7K-JSQQxnrIibtc8Zw8OvtBZk", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQETwdRSJOoDlA/profile-displayphoto-shrink_" + } + }, + "trackingId": "prKokSYyQROkG4uWdd27fA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Une des \u00e9quations infernales de la transition \u00e9nerg\u00e9tique, c'est de pouvoir disposer de plus en plus de m\u00e9taux, dans un monde o\u00f9 les flux internationaux seront de plus en plus chahut\u00e9s et l'\u00e9nergie \n\nPour ceux qui ont le temps (ou le prendront !), dans les auditions r\u00e9centes de la commission d'enqu\u00eate sur la perte de souverainet\u00e9 \u00e9nerg\u00e9tique de la France, il y a celle de Christophe Poinssot, qui fournit un certain nombre d'\u00e9l\u00e9ments tr\u00e8s int\u00e9ressants sur les usages et la disponibilit\u00e9 future des m\u00e9taux : https://lnkd.in/ef4BhrY5\n\nOn y apprend notamment que le monde utilisait principalement 10 m\u00e9taux en 1900, alors que c'est d\u00e9sormais de l'ordre de 60, et que nombre d'entre eux sont utilis\u00e9s de mani\u00e8re trop dilu\u00e9e dans les objets qui les contiennent pour pouvoir \u00eatre r\u00e9cup\u00e9r\u00e9s ensuite.\n\nOn y apprend aussi qu'il faut en moyenne 17 ans (dans le monde) entre la d\u00e9cision d'ouvrir une mine et le moment o\u00f9 l'exploitation d\u00e9marre. Ceci explique par exemple que la disponibilit\u00e9 mondiale en cuivre ne va pas beaucoup augmenter (voire l\u00e9g\u00e8rement diminuer) dans les 20 ans qui viennent (information rappel\u00e9e par Poinssot), et il faut voir si cela est compatible avec les plans d'\u00e9lectrification massive qui supposent une consommation accrue de ce m\u00e9tal. \n\nM\u00eame s'il faut toujours \u00eatre prudent avec les pr\u00e9visions de prix des mati\u00e8res premi\u00e8res (un des gags dans le monde du p\u00e9trole consiste \u00e0 dire : \"vous pouvez pr\u00e9voir un prix, vous pouvez pr\u00e9voir une date, mais il ne faut jamais faire les deux en m\u00eame temps !\"), il est logique de penser que cette tension devrait finir par se voir dans les prix. Dans cet article des Echos, les n\u00e9gociants interrog\u00e9s tablent tous sur des hausses significatives pour l'ann\u00e9e prochaine.\n\nDans les sc\u00e9narios de transition \u00e9nerg\u00e9tique, les alternatives sont souvent \u00e9valu\u00e9es \u00e0 l'aune des montants respectifs d'investissements demand\u00e9s. Mais ces derniers peuvent fortement d\u00e9pendre des cours des mati\u00e8res premi\u00e8res, en particulier pour les moyens qui sont \"gourmands\" en m\u00e9tal par kWh produit (ce qui est le cas - pour de b\u00eates raisons physiques - des collecteurs d'\u00e9nergies diffuses).\n\nLa sagesse voudrait donc que nous prenions nos paris avant tout sur la base des param\u00e8tres \"physiques\", en ne donnant pas aux couts actuels plus de valeur pr\u00e9dictive qu'ils n'en ont. Ca sera mon voeu pour 2023, puisque c'est l'\u00e9poque !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7014995834752630785,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7014995835687944192,urn:li:activity:7014995835687944192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7014995835687944192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7014995835687944192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7014995835687944192", + "threadId": "activity:7014995835687944192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014995835687944192", + "urn": "urn:li:activity:7014995835687944192", + "numComments": 130, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7014995835687944192", + "reactionTypeCounts": [ + { + "count": 1379, + "reactionType": "LIKE" + }, + { + "count": 175, + "reactionType": "INTEREST" + }, + { + "count": 148, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7014995835687944192", + "numLikes": 1741, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014995835687944192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1741, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7014531641989603328", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7014531641989603328)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7014531641989603328)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_litt%C3%A9rature-franc-succ%C3%A8s-du-roman-graphique-activity-7014531641989603328-k-0C?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7014531641289105408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7014531641989603328", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7014531641289105408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "byl6ff7vmc0wXsPSVSPpug==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8198496211263763453", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675683616896?e=1677240000&v=beta&t=UqoKmzYHwn8V7I73dA1Zq4kZWyaT9kBVD0kiayqnbQE", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675683616896?e=1677240000&v=beta&t=_H5DCX7z7BOS41vXOa-yIqPNhY_31CnLfinjKhp_vdY", + "expiresAt": 1677240000000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675683616897?e=1677240000&v=beta&t=pODs7QyriaGn_TiTiQxEbDcCmMsAxcTk6P09EaiMCrM", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675683616897?e=1677240000&v=beta&t=dk4OSUaXf1I6wSl-8zo0ofEaH5spc7TBDoi1RxWC2OA", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF6fZQs7GLi_w/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le livre le plus vendu en France est une bande-dessin\u00e9e intitul\u00e9e \"Le monde sans fin\". Plus d'un demi-million d'exemplaires ont \u00e9t\u00e9 \u00e9coul\u00e9s. L\u2019\u0153uvre est sign\u00e9e Jean-Marc Jancovici, sp\u00e9cialiste du climat et de l\u2019\u00e9nergie, et Christophe Blain, dessinateur." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8198496211263763453)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8198496211263763453)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "francetvinfo.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Litt\u00e9rature : franc succ\u00e8s du roman graphique sur la crise climatiqe \"Le Monde sans fin\" by francetvinfo.fr", + "actionTarget": "https://www.francetvinfo.fr/culture/bd/litterature-franc-succes-du-roman-graphique-sur-la-crise-climatiqe-le-monde-sans-fin_5569977.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Litt\u00e9rature : franc succ\u00e8s du roman graphique sur la crise climatiqe \"Le Monde sans fin\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7014531641289105408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Monde Sans Fin a bien march\u00e9, il semblerait :) . Peut-on tenter de comprendre pourquoi ?\n\nIl y a tout d'abord le th\u00e8me trait\u00e9 qui fait que l'on \"surfe sur la vague\" : arrivant d\u00e9sormais r\u00e9guli\u00e8rement en t\u00eate des sondages sur les pr\u00e9occupations pour l'avenir, le changement climatique, et plus r\u00e9cemment l'\u00e9nergie, int\u00e9ressent de plus en plus de monde. Un livre des m\u00eames auteurs sur la reproduction des bulots aurait probablement connu un destin un peu diff\u00e9rent.\n\nIl y a l'objet ensuite. Lorsque Christophe m'a contact\u00e9, il m'a dit la chose suivante : \"tes conf\u00e9rences sur Youtube permettent de tr\u00e8s bien comprendre la situation, mais quand on veut r\u00e9expliquer \u00e0 quelqu'un d'autre, on se rend compte que l'on n'y arrive pas\". \n\nIl avait donc d\u00e9j\u00e0 en t\u00eate de faire un livre graphique (car plus facile \u00e0 comprendre) qui puisse s'offrir en disant \"tiens, tu vas comprendre\". C'\u00e9tait sa fa\u00e7on de contribuer \u00e0 un acte militant mais tr\u00e8s bien tol\u00e9r\u00e9 (offrir un livre). Et de fait, c'est un album qui a \u00e9t\u00e9 tr\u00e8s souvent achet\u00e9 pour quelqu'un d'autre (quelques entreprises en ont m\u00eame achet\u00e9 des milliers pour leurs salari\u00e9s !).\n\nIl y a Christophe enfin. Il n'est pas qu'un ma\u00eetre du crayon : c'est aussi et surtout un perfectionniste qui ne laisse absolument rien passer sur le fond. Tant qu'un \u00e9l\u00e9ment reste incompris, obscur ou incoh\u00e9rent avec le reste, il y revient. Il ne faut pas du tout croire qu'il a dessin\u00e9 sous ma dict\u00e9e : il m'a bombard\u00e9 de questions, et nous avons pass\u00e9 des heures carr\u00e9es sur chaque case de l'album, jusqu'au moment o\u00f9 l'explication \u00e9tait compl\u00e8te et l'enchainement fluide. Accessoirement (!) c'est aussi lui qui a convaincu Dargaud.\n\nAvions nous une ambition en mati\u00e8re de ventes ? Pour ma part, je souhaitais \"faire beaucoup mieux que les essais\", mais cela d\u00e9marrait \u00e0 50.000 exemplaires, nombre qu'aucun de mes essais n'avait atteint.\n\nChristophe, lui, voulait cr\u00e9er \"un ph\u00e9nom\u00e8ne\". Au moment de notre rencontre il \u00e9tait d\u00e9j\u00e0 \"pris aux tripes\", consid\u00e9rait que le sujet trait\u00e9 \u00e9tait \"le\" sujet, et que ce livre devait \u00eatre \"le\" livre. En cons\u00e9quence, il voulait faire mieux que Quai d'Orsay, dont le premier tome a \u00e9t\u00e9 vendu \u00e0 250.000 exemplaires. C'est lui qui a eu raison :)\n\nPour ma part, j'avais deux autres souhaits : d'abord qu'une BD permette de toucher des gens qui n'auraient jamais achet\u00e9 un essai. Sur ce plan l\u00e0, on peut dire que le pari est r\u00e9ussi. Et ensuite, que plus de femmes s'int\u00e9ressent \u00e0 la question \u00e9nerg\u00e9tique. \n\nPour les mails spontan\u00e9s que je re\u00e7ois, les demandes de connexion linkedin (que je ne peux plus satisfaire la quasi-totalit\u00e9 du temps, car je suis proche de mon quota !), les r\u00e9actions \u00e0 mes posts ici, et quelques autres \"points de sonde\", dans plus de 80% des cas j'ai affaire \u00e0 un homme (et >98% quand c'est un commentaire agressif :) ). \n\nJe ne sais pas si cette nouvelle forme d'expression a un peu corrig\u00e9 ce d\u00e9s\u00e9quilibre (pas pour les agressions !), mais si oui j'en serai heureux." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7014531641289105408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7014531641989603328,urn:li:activity:7014531641989603328,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 320, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7014531641989603328,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7014531641989603328,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7014531641989603328", + "threadId": "activity:7014531641989603328", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014531641989603328", + "urn": "urn:li:activity:7014531641989603328", + "numComments": 484, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7014531641989603328", + "reactionTypeCounts": [ + { + "count": 4978, + "reactionType": "LIKE" + }, + { + "count": 687, + "reactionType": "PRAISE" + }, + { + "count": 250, + "reactionType": "EMPATHY" + }, + { + "count": 77, + "reactionType": "APPRECIATION" + }, + { + "count": 21, + "reactionType": "INTEREST" + }, + { + "count": 20, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7014531641989603328", + "numLikes": 6033, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014531641989603328", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6034, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7014139569486888960", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7014139569486888960)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7014139569486888960)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_patrick-pouyann%C3%A9-pdg-de-totalenergies-audition-activity-7014139569486888960-R4wo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7014139568698368000", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7014139569486888960", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7014139568698368000", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "SHTqu+iv8iX7SwOTHW7+2g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7334399710424462882", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1675558478787?e=1677240000&v=beta&t=Qubh7r5hmc0FOI3u9HEnfNRCkVzBPnsEVPgzik-hIg0", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675558478787?e=1677240000&v=beta&t=NxGoR36p6qo0VGoWVNJZZN03IMEQBnqTy3445sKbM4I", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675558478788?e=1677240000&v=beta&t=OEt6gJub-B4mpvaAjoULj4Opuz4TUtXLzqCCjgn46q8", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675558478788?e=1677240000&v=beta&t=2eYMz9AULBoFa27mtsYGK7WnCzd-nHCsG8mo4fFSt9k", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH1QiaF0aoWGA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7334399710424462882)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7334399710424462882)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Patrick Pouyann\u00e9 -PDG de TotalEnergies, audition, Assembl\u00e9e nationale, 23 novembre 2022 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=syo0atzlYH0" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Commission d'enqu\u00eate \"Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France\"\n\nSource : www.assemblee-nationale.fr" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Patrick Pouyann\u00e9 -PDG de TotalEnergies, audition, Assembl\u00e9e nationale, 23 novembre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7014139568698368000,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tr\u00e8s int\u00e9ressante audition de Patrick Pouyann\u00e9 par la \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\".\n\nQu'on le veuille ou non, \u00e0 tr\u00e8s court terme la s\u00e9curit\u00e9 d'approvisionnement du pays d\u00e9pend largement du comportement des acteurs du monde p\u00e9trolier et gazier, de fait num\u00e9riquement moins couvert par les auditions de cette commission que le secteur \u00e9lectrique, alors que les hydrocarbures dominent dans l'approvisionnement national. Les quasiment 2 heures pass\u00e9es avec le PDG de Total permettent de comprendre, de fa\u00e7on bienvenue, beaucoup de choses sur le fonctionnement de ce monde l\u00e0.\n\nUne des pr\u00e9occupations du moment est bien sur l'approvisionnement en gaz. Avec l'arr\u00eat des importations russes, la marge de manoeuvre restante est le Gaz Naturel Liqu\u00e9fi\u00e9, pour lequel nous sommes en concurrence avec le reste du monde. Un moyen de faire baisser les prix \u00e0 court terme serait de nouer des contrats de long terme. Mais.... cela signifie que l'on s'engage \u00e0 consommer du gaz longtemps, ce qui est contradictoire avec l'engagement de neutralit\u00e9 !\n\nPouyann\u00e9 explique aussi pourquoi il a investi dans les centrales \u00e9lectriques \u00e0 gaz : l'essor des modes \u00e9lectriques intermittents rend de toute fa\u00e7on n\u00e9cessaires ces moyens de production si l'on veut un approvisionnement \u00e9lectrique continu (\u00e0 ce propos il affirme que le nucl\u00e9aire fran\u00e7ais n'est pas modulable, ce qui est inexact et est une des deux erreurs que j'ai relev\u00e9es dans son propos). \n\nPouyann\u00e9 confirme dans cette audition que le taux naturel de d\u00e9clin des puits de p\u00e9trole en production dans le monde est de 4% \u00e0 5% par an, ce qui lui fait conclure que, pour que son secteur fasse sa part dans les objectifs climat, il suffit d'arr\u00eater d'investir (mais il dit que ce n'est pas encore le moment, ce qui est inexact puisque les \u00e9missions devraient baisser de 5% par an d\u00e8s demain matin pour tenir les 2\u00b0C).\n\nIl indique que Total a regard\u00e9 le nucl\u00e9aire mais a recul\u00e9 \u00e0 cause de la longueur des engagements, qui ne lui semblent compatibles qu'avec le mode de fonctionnement d'une entreprise publique.\n\nIl s'exprime aussi sur le solaire, l'\u00e9olien, la \"concurrence\" sur l'\u00e9lectricit\u00e9, le biogaz, l'hiver 2023 qui sera plus compliqu\u00e9 que l'actuel, la demande \u00e9nerg\u00e9tique des pays \u00e9mergents qui pour le moment est impossible \u00e0 satisfaire sans fossiles additionnel, la Californie et le Qatar...\n\nA d\u00e9faut de fournir les bonnes r\u00e9ponses pour certain(e)s, cette audition permet de poser quelques questions qui piquent un peu. Et quand la r\u00e9ponse de Pouyann\u00e9 nous agace, c'est parfois tout simplement parce qu'il nous place face \u00e0 nos propres contradictions." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7014139568698368000,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7014139569486888960,urn:li:activity:7014139569486888960,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 125, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7014139569486888960,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7014139569486888960,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7014139569486888960", + "threadId": "activity:7014139569486888960", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014139569486888960", + "urn": "urn:li:activity:7014139569486888960", + "numComments": 224, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7014139569486888960", + "reactionTypeCounts": [ + { + "count": 3795, + "reactionType": "LIKE" + }, + { + "count": 590, + "reactionType": "INTEREST" + }, + { + "count": 577, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7014139569486888960", + "numLikes": 5014, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014139569486888960", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5016, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 Edited \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7013918188404899840", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7013918188404899840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7013918188404899840)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_changement-climatique-lagriculture-n%C3%A9erlandaise-activity-7013918188404899840-n2gn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7013918187515691008", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7013918188404899840", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7013918187515691008", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "ocnSOLUvBGHnEA5Ilw7PFA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7180284881110044128", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675856954303?e=1677240000&v=beta&t=uEBZSjrgFPcdFGtOL5DrEJPRdoEvqpT_2JmCWEArtR4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675856954304?e=1677240000&v=beta&t=oFZiEZbBylyp36N6gdzB5Bj3VgGfGJNXAP6lHaKb6rs", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675856954304?e=1677240000&v=beta&t=jlTSxGZNldMTRycqa2Pm_kt90EUaXfwC7G0JdM1pSW0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675856954304?e=1677240000&v=beta&t=vlneTm6qMDTRHy4I0dOZmGIV3YCZ3HE9P_7txZrJnpk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFaWrlSgQyIEg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7180284881110044128)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7180284881110044128)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Changement climatique : l'agriculture n\u00e9erlandaise plong\u00e9e dans une crise sans pr\u00e9c\u00e9dent by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/changement-climatique-lagriculture-neerlandaise-plongee-dans-une-crise-sans-precedent-1892004" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Changement climatique\u00a0: l'agriculture n\u00e9erlandaise plong\u00e9e dans une crise sans pr\u00e9c\u00e9dent" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7013918187515691008,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "On peut appeler cela un miracle ou une h\u00e9r\u00e9sie, selon le point de vue : selon Les Echos, les Pays Bas, pays de 42.000 km2 de superficie, est le 2\u00e8 exportateur mondial de produits agricoles et agroalimentaires, derri\u00e8res les USA, pays 230 fois plus vaste, et devant la France, qui est plus de 10 fois plus vaste, et tout cela avec 52.000 agriculteurs seulement, qui commandent forc\u00e9ment \u00e0 beaucoup beaucoup de machines.\n\nCar, \u00e9videmment, ce n'est pas tant aux vastes terres fertiles de ce pays tr\u00e8s dens\u00e9ment peupl\u00e9 que l'on doit cela, mais \u00e0 l'\u00e9nergie. Le mod\u00e8le n\u00e9erlandais s'est bas\u00e9 largement sur les exploitations intensives qui demandent des engrais (du gaz et du p\u00e9trole), des serres (du gaz pour les chauffer et pour faire le verre), des \u00e9levages intensifs, impossibles \u00e0 approvisionner sans d'importants volumes de transport associ\u00e9s (pour faire venir les aliments) et des produits v\u00e9g\u00e9taux pas chers. Un mod\u00e8le fortement exportateur est aussi un mod\u00e8le fortement d\u00e9pendant des transports internationaux (du p\u00e9trole \u00e0 nouveau).\n\nCe d\u00e9veloppement est \u00e9videmment all\u00e9 avec une augmentation de quelques pressions environnementales (effluents ou \u00e9missions), et est d\u00e9pendant d'une \u00e9nergie abondante et pas ch\u00e8re. Le d\u00e9sir de limiter les nuisances environnementales et la \"crise du gaz\" rebattent fortement les cartes. \n\nRappelons que la production hollandaise de gaz, qui \u00e9tait encore tr\u00e8s significative il y a quelques ann\u00e9es, s'est brusquement effondr\u00e9e apr\u00e8s la d\u00e9cision d'arr\u00eater l'exploitation du plus grand champ gazier d'Europe du Nord (Groninge), qui avait fait de ce pays une petite Norv\u00e8ge pendant de longues d\u00e9cennies.\n\nCet exemple hollandais est en fait embl\u00e9matique de ce qui finira par arriver ailleurs. Une agriculture avec peu de monde, tr\u00e8s m\u00e9canis\u00e9e, tr\u00e8s d\u00e9pendante des transports amont et aval, et tr\u00e8s d\u00e9pendante des engrais et des phytosanitaires, est un enfant de la mondialisation, et aura du mal \u00e0 survivre face \u00e0 la d\u00e9crue \u00e9nerg\u00e9tique. \n\nComme le paysage agricole est tr\u00e8s long \u00e0 r\u00e9orienter (parce que c'est un domaine de traditions, et parce que l'organisation globale mise en place ne se modifie pas en une semaine), il n'est que temps de se demander \u00e0 quoi elle devra ressembler si les conditions climatiques et \u00e9nerg\u00e9tiques de cette ann\u00e9e 2022 deviennent la norme, voire \"moins pire\" que cette derni\u00e8re.\n\nAu Shift Project, cela fait partie de nos ambitions pour 2023 que d'y revenir (le chapitre du PTEF sur l'agriculture n'est pas suffisant \u00e0 nos yeux et manger est raisonnablement vital). Mais nous esp\u00e9rons bien ne pas \u00eatre les seuls \u00e0 avoir envie de mettre un peu de jus de cerveau dans la question !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7013918187515691008,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7013918188404899840,urn:li:activity:7013918188404899840,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 175, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7013918188404899840,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7013918188404899840,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7013918188404899840", + "threadId": "activity:7013918188404899840", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013918188404899840", + "urn": "urn:li:activity:7013918188404899840", + "numComments": 264, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7013918188404899840", + "reactionTypeCounts": [ + { + "count": 4160, + "reactionType": "LIKE" + }, + { + "count": 796, + "reactionType": "INTEREST" + }, + { + "count": 697, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "APPRECIATION" + }, + { + "count": 42, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7013918188404899840", + "numLikes": 5754, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013918188404899840", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5756, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7013550267006656512", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7013550267006656512)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7013550267006656512)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_depuis-quelques-semaines-le-ton-monte-parfois-activity-7013550267006656512-Ld4Y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7013550266134220800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7013550267006656512", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7013550266134220800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "1ldVX2tgjJYcDo45OC8LEg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGcco5e3bgq2A", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGcco5e3bgq2A", + "artifacts": [ + { + "width": 960, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1672160688444?e=1679529600&v=beta&t=0NtzRPPsLqWL9YK6aCg9nEKkpGSYtL5yXqjRFjLjVYI", + "expiresAt": 1679529600000, + "height": 960 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1672160688455?e=1679529600&v=beta&t=Prf9LxDp9ZwfrAt_t1F6usfb0vIPrSA3vLyVy6_9VK8", + "expiresAt": 1679529600000, + "height": 20 + }, + { + "width": 960, + "fileIdentifyingUrlPathSegment": "1280/0/1672160688455?e=1679529600&v=beta&t=ig8BMsFEz2yhVd0QhrbfdSe_vK-R-Ddf-CC021JdxCw", + "expiresAt": 1679529600000, + "height": 960 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1672160688455?e=1679529600&v=beta&t=ZBymUF-uC8cOMq9iNFut2_3R-nxZ9oZ-ouWr3u51uZU", + "expiresAt": 1679529600000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1672160688455?e=1679529600&v=beta&t=IfdWrERVd7psbdid9rQ8wKLCPNoxU9jONS1hCl9inKg", + "expiresAt": 1679529600000, + "height": 160 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1672160688455?e=1679529600&v=beta&t=si7Z51ZRrGS7HBxMDxLAEo5cinJIpf06UhK6T92_JBU", + "expiresAt": 1679529600000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGcco5e3bgq2A/feedshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "text, engineering drawing, calendar" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7013550266134220800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis quelques semaines, le ton monte parfois sur ce r\u00e9seau \u00e0 propos de certaines de mes prises de position. Puisque la fin de l'ann\u00e9e (ou plut\u00f4t le d\u00e9but de l'ann\u00e9e nouvelle) c'est le moment des bonnes r\u00e9solutions, je voudrais en proposer quelques unes pour les \u00e9changes qui peuvent avoir lieu sur ce que j'aurais dit ou \u00e9crit. \n\nCela s'applique id\u00e9alement \u00e0 ceux qui me critiquent (un exercice utile pour moi car on ne progresse qu'en \u00e9tant sorti de sa zone de confort), et plus encore \u00e0 ceux qui prennent le clavier pour r\u00e9pondre aux premiers.\n\nEssayez de s\u00e9parer le message du messager. Un argument s'examine au fond, et non en fonction de celui qui l'invoque. Si une personne que je d\u00e9teste cordialement dit que 2 et 2 font 4, il n'a pas tort parce que sa t\u00eate ne me revient pas. C'est seulement une fois que l'on a \u00e9ventuellement fait la preuve d'un raisonnement erron\u00e9 que l'on peut se demander si cela a a un rapport avec la profession - ou une autre caract\u00e9ristique - de la personne qui l'a tenu. \n\nMais ca va dans cet ordre l\u00e0 et pas dans le sens inverse. A titre personnel je n'invoque \u00e0 peu pr\u00e8s jamais la profession de mes \"contradicteurs\" dans un argumentaire (m\u00eame si parfois il me semble \u00e9vident qu'elle explique la motivation).\n\nEssayez de rester courtois. L'agressivit\u00e9 - ou pire, l'insulte ou la calomnie - clarifient rarement le d\u00e9bat. Les \u00e9changes \u00e9tant publics, on s'adresse autant \u00e0 son contradicteur qu'\u00e0 toutes les personnes qui vont lire l'\u00e9change, et ces derni\u00e8res apprendront plus avec des argumentaires pos\u00e9s qu'avec des invectives. Linkedin n'est normalement ni un pr\u00e9toire ni un plateau de t\u00e9l\u00e9vision !\n\nNe faites pas dire \u00e0 votre opposant ce qu'il ne dit pas. Le proc\u00e9d\u00e9 qui consiste par commencer \u00e0 d\u00e9former ce que dit l'adversaire pour ensuite mieux le combattre est malheureusement assez r\u00e9pandu, mais dans le d\u00e9bat d'id\u00e9es il va assez souvent se retourner t\u00f4t ou tard contre celui ou celle qui l'emploie. \n\nD\u00e9battre prend du temps. Mieux vaut s'abstenir de r\u00e9pondre que de le faire de mani\u00e8re inappropri\u00e9e faute de temps pour mettre son raisonnement en forme.\n\nDans le m\u00eame esprit, il arrive malheureusement que, avec certaines personnes, il soit impossible de sortir du dialogue de sourds (on revient encore et encore sur les m\u00eames arguments alors que l'on y a r\u00e9pondu N fois). A ce moment il faut savoir qu'\u00e0 l'impossible nul n'est tenu et la meilleure des choses \u00e0 faire est d'arr\u00eater l'\u00e9change.\n\nIl est essentiel qu'en d\u00e9mocratie il y ait confrontation d'id\u00e9es. C'est comme cela que l'on finit par avoir de la convergence (n\u00e9cessaire pour d\u00e9gager des majorit\u00e9s). Mais quand la forme employ\u00e9e aboutit \u00e0 des crispations dures, on s'\u00e9loigne en fait de l'objectif que l'on voulait atteindre (converger). Donc autant l'\u00e9viter, et ce d'autant plus que l'on parle d'un sujet essentiel !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7013550266134220800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7013550267006656512,urn:li:activity:7013550267006656512,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 420, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7013550267006656512,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7013550267006656512,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7013550267006656512", + "threadId": "activity:7013550267006656512", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013550267006656512", + "urn": "urn:li:activity:7013550267006656512", + "numComments": 794, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Valentin Derouet" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7013550267006656512", + "reactionTypeCounts": [ + { + "count": 9279, + "reactionType": "LIKE" + }, + { + "count": 1102, + "reactionType": "PRAISE" + }, + { + "count": 605, + "reactionType": "APPRECIATION" + }, + { + "count": 240, + "reactionType": "EMPATHY" + }, + { + "count": 46, + "reactionType": "INTEREST" + }, + { + "count": 45, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7013550267006656512", + "numLikes": 11317, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013550267006656512", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 11357, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7013230316441976832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7013230316441976832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7013230316441976832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cest-moins-anxiog%C3%A8ne-ces-artisans-qui-activity-7013230316441976832-Qt4-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7013230315577987072", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7013230316441976832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7013230315577987072", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "rh0uoKua/sdEFwcK1F2N6A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7556560582917123471", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1675845426153?e=1677240000&v=beta&t=oNLpL8088oAYF6YxfWfF8M0syn20v2OmcQJ2aXqKKpw", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675845426153?e=1677240000&v=beta&t=m3tnF3kR4XdDydxNSM87HZEM773bRTckF_vtQUepHRA", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675845426153?e=1677240000&v=beta&t=12mKmqaSrbNsu1SV7k18Ogg8zPFMoJB1A96JldsNtR0", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675845426153?e=1677240000&v=beta&t=52TPCIY5Pgr_4ogh6g3kXv8XE0LNpSnYq72DRhMtfmc", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHbBuUiBMkX6Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le v\u00e9lo cargo d\u00e9livre en centre-ville 60% plus rapidement que celle d'une camionnette diesel selon l'\u00e9tude \u00abThe Promise of LowCarbon Freight\u00bb." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7556560582917123471)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7556560582917123471)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lefigaro.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00abC'est moins anxiog\u00e8ne\u00bb : ces artisans qui font le choix de se d\u00e9placer en v\u00e9lo-cargo by lefigaro.fr", + "actionTarget": "https://www.lefigaro.fr/societes/c-est-moins-anxiogene-ces-artisans-qui-font-le-choix-de-se-deplacer-en-velo-cargo-20221223" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00abC'est moins anxiog\u00e8ne\u00bb : ces artisans qui font le choix de se d\u00e9placer en v\u00e9lo-cargo" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7013230315577987072,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Moins cher, plus rapide en ville, et \u00e9videmment beaucoup plus bas carbone que la camionnette, m\u00eame \u00e9lectrique : le v\u00e9lo-cargo pointe de plus en plus le bout de sa roue en univers urbain (ou de sa p\u00e9dale).\n\nMoins cher \u00e0 l'achat, le v\u00e9lo cargo l'est presque d'un facteur 5 \u00e0 10 si l'on compare son prix neuf avec celui d'un v\u00e9hicule de type Kangoo (thermique ou \u00e9lectrique) neuf. Mais, avec une consommation de l'ordre de 10 Wh par km, il l'est aussi \u00e0 l'usage : face \u00e0 un v\u00e9hicule thermique il n'y a pas photo (6 litres de p\u00e9trole aux 100 km = 600 Wh de p\u00e9trole par km), et m\u00eame face \u00e0 une camionnette \u00e9lectrique il y a plus d'un facteur 10.\n\nSon bilan carbone est aussi consid\u00e9rablement plus faible : \n- la batterie \u00e9tant 100 fois plus petite (0,5 kWh contre 50 en gros) ses \u00e9missions de fabrication le sont aussi \n- le poids \u00e9tant 20 fois plus faible (50 kg contre 1000 kg) les \u00e9missions de fabrication du v\u00e9hicule hors batterie sont en proportion identique.\n\nM\u00eame dans un pays produisant toute son \u00e9lectricit\u00e9 au charbon, passer d'une camionnette thermique \u00e0 un v\u00e9lo cargo divise les \u00e9missions de livraison par un facteur de plusieurs dizaines.\n\nEnfin, en ville, il est plus rapide qu'une camionnette. Cette fois ci c'est l'espace au sol qui lui procure son avantage : les bouchons ont moins de prise !\n\nAjoutons que c'est aussi moins bruyant, et engendre tr\u00e8s peu de pollution locale (les particules des freins et des pneus essentiellement).\n\nPour autant il n'est pas difficile de voir que l'essentiel de ce qui circule en ville (du moins en Occident) reste actionn\u00e9 par un moteur thermique. A l'\u00e9vidence le v\u00e9lo cargo ne peut pas rivaliser sur tous les plans (un r\u00e9servoir avec le plein d'essence procure une bien plus grande autonomie qu'une batterie charg\u00e9e de v\u00e9lo \u00e9lectrique), et par ailleurs les moyens de transport sont toujours dimensionn\u00e9s \u00e0 leur usage de pointe et la charge utile maximale d'une camionnette reste sup\u00e9rieure \u00e0 ce que peut transporter ce genre de v\u00e9hicule. Mais cela ne s'applique pas tout le temps, puisque quelques intr\u00e9pides \"basculent\" !\n \nLe t\u00e9moignage d'une des personnes interrog\u00e9es dans cet article indique qu'il a opt\u00e9 pour ce mode de transport \u00e0 la suite d'une panne de son v\u00e9hicule pr\u00e9c\u00e9dent. Il n'est probablement pas le seul qui ait opt\u00e9 pour le v\u00e9lo (cargo ou pas) contraint au d\u00e9but, par choix ensuite. Comme on disait dans une vieille pub, l'essayer c'est apparemment souvent l'adopter.\n\nPeut-\u00eatre que l'on pourrait imaginer que dans le cadre de toute formation d'artisan il y ait de mani\u00e8re obligatoire l'essai de ce genre de v\u00e9hicule :) ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7013230315577987072,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7013230316441976832,urn:li:activity:7013230316441976832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 269, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7013230316441976832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7013230316441976832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7013230316441976832", + "threadId": "activity:7013230316441976832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013230316441976832", + "urn": "urn:li:activity:7013230316441976832", + "numComments": 674, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7013230316441976832", + "reactionTypeCounts": [ + { + "count": 2967, + "reactionType": "LIKE" + }, + { + "count": 120, + "reactionType": "PRAISE" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 79, + "reactionType": "MAYBE" + }, + { + "count": 61, + "reactionType": "EMPATHY" + }, + { + "count": 39, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7013230316441976832", + "numLikes": 3369, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013230316441976832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3373, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7012438021207654401", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7012438021207654401)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7012438021207654401)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_no%C3%ABl-2022-quelles-sont-les-%C3%A9missions-de-activity-7012438021207654401-BLYG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7012438020716929024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7012438021207654401", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7012438020716929024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "kB/6dE+q7MA/ZRsbXt+8oA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9204072766123965787", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675523063047?e=1677240000&v=beta&t=nHBLLK6hJcw6DTId6ssgI1ZdOeEcjuRuaBFYuWqI6Co", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675523063047?e=1677240000&v=beta&t=jbGlBwzMe6801mfgt6ChUL4OCBtFPC0GTbIDXVg2G_o", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675523063047?e=1677240000&v=beta&t=x90-nfvUND7kInpsZj2VTdmdBdAhLkul6mX_GRfH87Q", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675523063047?e=1677240000&v=beta&t=8QKNvlbqXhFVLYl1-XpQ2eOPK2L-TroGVhGDwD_m3E0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEyPLv-QqAtBg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9204072766123965787)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9204072766123965787)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: No\u00ebl 2022 : quelles sont les \u00e9missions de gaz \u00e0 effet de serre particuli\u00e8res en cette p\u00e9riode de f\u00eate ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900218075-noel-2022-quelles-sont-les-emissions-de-gaz-a-effet-de-serre-particulieres-en-cette-periode-de-fete" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "No\u00ebl 2022 : quelles sont les \u00e9missions de gaz \u00e0 effet de serre particuli\u00e8res en cette p\u00e9riode de f\u00eate ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7012438020716929024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Sapin en plastique artificiel r\u00e9utilisable ou sapin naturel qui ne l'est pas ? C'\u00e9tait traditionnellement la question de la rubrique \u00e9colo sur les radios dans les jours et semaines pr\u00e9c\u00e9dant Noel.\n\nEn fait, cette question est l'arbre qui cache la for\u00eat. Car dans les \u00e9missions de gaz \u00e0 effet de serre associ\u00e9es \u00e0 cette f\u00eate de fin d'ann\u00e9e, les gros morceaux sont ailleurs, et principalement dans les postes suivants :\n- les cadeaux\n- les d\u00e9placements pour se retrouver en famille\n- et apr\u00e8s on va trouver la nourriture (car entre le fois gras et le chapon, c'est rarement un repas pauvre en produits animaux).\n\nDans cette chronique je n'ai pas mentionn\u00e9 les logements secondaires chauff\u00e9s, qui ne sont pas propres \u00e0 Noel, mais concernent toutes les vacances d'hiver, cependant c'est aussi un poste qui va peser quelque chose dans l'ensemble.\n\nFaut-il se priver de tout pour \u00eatre \u00e9colo alors ? Cet exemple illustre lui aussi que d'\u00eatre heureux dans un monde de limites va nous demander un peu de cr\u00e9ativit\u00e9 et des normes sociales qui changent. \n\nIl y a quand m\u00eame une bonne nouvelle dans l'ensemble : \u00e0 condition de ne pas incin\u00e9rer les coquilles ensuite (sinon le CO2 est rel\u00e2ch\u00e9 dans l'air), manger des huitres ne r\u00e9chauffe quasiment pas le climat. En effet le calcaire des coquilles n'est rien d'autre que du carbone atmosph\u00e9rique s\u00e9questr\u00e9 par le m\u00e9tabolisme des petites b\u00eates. \n\n1 kg de coquilles d'huitres contient 450 grammes de CO2. C'est beaucoup plus que les \u00e9missions de son transport depuis le lieu d'\u00e9levage. Il faut certes ajouter les \u00e9missions de l'exploitation ostr\u00e9icole, mais c'est tr\u00e8s certainement la prot\u00e9ine la plus bas carbone du r\u00e9veillon. Et la nuit sera plus calme apr\u00e8s une douzaine d'huitre qu'apr\u00e8s une douzaine de dindes aux marrons !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7012438020716929024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7012438021207654401,urn:li:activity:7012438021207654401,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 93, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7012438021207654401,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7012438021207654401,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7012438021207654401", + "threadId": "activity:7012438021207654401", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012438021207654401", + "urn": "urn:li:activity:7012438021207654401", + "numComments": 156, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7012438021207654401", + "reactionTypeCounts": [ + { + "count": 1320, + "reactionType": "LIKE" + }, + { + "count": 98, + "reactionType": "INTEREST" + }, + { + "count": 36, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "EMPATHY" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7012438021207654401", + "numLikes": 1506, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012438021207654401", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1598, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7012013351413121024", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7012013351413121024)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7012013351413121024)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_souverainet%C3%A9-et-ind%C3%A9pendance-%C3%A9nerg%C3%A9tique-activity-7012013351413121024-O4Qb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7012013350385500161", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7012013351413121024", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7012013350385500161", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "DDZKBu3HWvG4REgaAphvdA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7036454563543430667", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675423596080?e=1677240000&v=beta&t=p9xbqpJ-c1Cz-XgTW4S91ELWetQ-IS-F-7-nTsUrLLI", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675423596080?e=1677240000&v=beta&t=R8G-Q8_0ACC_Z2zV5ta7zRPwsnKJPepmXlXEJdzkzEg", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675423596080?e=1677240000&v=beta&t=MAGbW2dYoxqPb8V-njj9Pfsfd5c_EoKfXKLR3IqyM8s", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675423596080?e=1677240000&v=beta&t=JSO513tt_3CQ5tBRuqd7Xq18vizRPwTunMf2DCmkKUo", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGJBWYjNebuuQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7036454563543430667)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7036454563543430667)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "videos.assemblee-nationale.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Fran\u00e7ois Brottes, Conseiller-ma\u00eetre \u00e0 la Cour des comptes ; M. Jean-Bernard L\u00e9vy, ancien pr\u00e9sident-directeur g\u00e9n\u00e9ral de EDF - Mercredi 14 d\u00e9cembre 2022 on videos.assemblee-nationale.fr", + "actionTarget": "https://videos.assemblee-nationale.fr/video.12647058_6399f0a907461.souverainete-et-independance-energetique-de-la-france--m-francois-brottes-conseiller-maitre-a-la--14-decembre-2022" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "- \u00c0 17 heures : - Audition, ouverte \u00e0 la presse, de M. Fran\u00e7ois Brottes, Conseiller-ma\u00eetre \u00e0 la Cour des comptes, ancien Pr\u00e9sident du directoire de R\u00e9seau de transport d\u2019\u00e9lectricit\u00e9 (RTE), ancien D\u00e9put\u00e9 - \u00c0 18 heures 30 : - Audition, ouverte \u00e0 la..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Fran\u00e7ois Brottes, Conseiller-ma\u00eetre \u00e0 la Cour des comptes ; M. Jean-Bernard L\u00e9vy, ancien pr\u00e9sident-directeur g\u00e9n\u00e9ral de EDF - Mercredi 14 d\u00e9cembre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7012013350385500161,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Certain(e)s d'entre vous se sont peut-\u00eatre demand\u00e9s un jour d'o\u00f9 sortait l'abaissement de la part du nucl\u00e9aire \u00e0 50% de la production \u00e9lectrique (initialement en 2025 quand Hollande est \u00e9lu pr\u00e9sident, en 2012) figurant dans la Loi de Transition Energ\u00e9tique pour la Croissance Verte de 2015.\n\nCette audition de Fran\u00e7ois Brottes (ancien pr\u00e9sident de la Commission des Affaires Economiques \u00e0 l'Assembl\u00e9e au moment de la discussion et du vote de cette loi, ancien pr\u00e9sident de RTE) donne la r\u00e9ponse. Cet objectif d\u00e9coule uniquement d'un \"jugement de Salomon\" rendu dans l'alliance Verts-PS de 2011, entre ceux qui voulaient un objectif de sortie compl\u00e8te du nucl\u00e9aire, et ceux qui voulaient en garder autant. La n\u00e9gociation a d\u00e9bouch\u00e9 sur ces 50% m\u00e9dians, cens\u00e9s contenter \u00e0 peu pr\u00e8s tout le monde.\n\nMais Brottes dit dans la m\u00eame audition que, devenu pr\u00e9sident de RTE, il n'aura eu de cesse d'expliquer au gouvernement que cet objectif de 50% en 2025, qu'il a fait voter comme artisan de la LTCEV, n'\u00e9tait pas r\u00e9aliste ! Il dit aussi qu'il regrette de ne pas avoir pris l'avis de RTE avant de faire voter la loi... comme quoi de temps en temps \u00e9couter les gens du m\u00e9tier avant de d\u00e9cider plut\u00f4t qu'apr\u00e8s n'est pas n\u00e9cessairement une mauvaise id\u00e9e.\n\nBrottes insiste beaucoup sur le fait que la baisse du nucl\u00e9aire \u00e9tait n\u00e9cessaire pour \"d\u00e9velopper les ENR\", et que cela a \u00e9t\u00e9 \"un succ\u00e8s\". Mais la question ne lui est pas pos\u00e9e de savoir pourquoi taper sur le nucl\u00e9aire \u00e9tait un pr\u00e9requis pour augmenter les ENR, ni pourquoi il \u00e9tait pertinent de remplacer une production \u00e9lectrique sans combustion par une autre, sachant que les \u00e9oliennes et panneaux solaires (et le r\u00e9seau \u00e0 d\u00e9velopper, ce qu'indique aussi Brottes) ne sont ni plus ni moins renouvelables que les centrales nucl\u00e9aires (et pas n\u00e9cessairement moins risqu\u00e9s).\n\nOn apprend aussi qu'un r\u00e9seau avec beaucoup de dispositifs de production r\u00e9partis demande de l'\u00e9lectronique partout, alors que les r\u00e9seaux \u00e9lectriques \"descendants\" et les r\u00e9acteurs nucl\u00e9aires peuvent fonctionner de mani\u00e8re analogique. Personne n'a demand\u00e9 si cela \u00e9tait g\u00eanant ou pas pour la souverainet\u00e9 \u00e9nerg\u00e9tique.\n\nBrottes explique aussi qu'il a \u00e9t\u00e9 \u00e0 l'origine de l'arenh, qui a \u00e9t\u00e9 une mani\u00e8re d'\u00e9viter la scission du parc nucl\u00e9aire entre deux exploitants (autre mani\u00e8re de supprimer le monopole, ce qui \u00e9tait l'objectif europ\u00e9en). \n\nEn fait le mal originel a \u00e9t\u00e9 de faire de l'\u00e9lectricit\u00e9 un produit \"ordinaire\", comme des chaussettes ou des yaourts, devant donc faire l'objet d'un march\u00e9 \"ordinaire\", au passage sans monopole d'aucune sorte. Une fois cette d\u00e9cision prise, il n'y avait que de mauvaises mani\u00e8res de s'en sortir...\n\nDans l'ensemble il faut s'armer de patience pour d\u00e9nicher les faits int\u00e9ressants dans cette audition, assez \"louvoyante\" et o\u00f9 l'absence de r\u00e9ponse claire \u00e0 la question pos\u00e9e est plus la r\u00e8gle que l'exception. Mais la compr\u00e9hension est parfois \u00e0 ce prix !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7012013350385500161,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7012013351413121024,urn:li:activity:7012013351413121024,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7012013351413121024,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7012013351413121024,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7012013351413121024", + "threadId": "activity:7012013351413121024", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012013351413121024", + "urn": "urn:li:activity:7012013351413121024", + "numComments": 205, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7012013351413121024", + "reactionTypeCounts": [ + { + "count": 1085, + "reactionType": "LIKE" + }, + { + "count": 185, + "reactionType": "INTEREST" + }, + { + "count": 142, + "reactionType": "MAYBE" + }, + { + "count": 26, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7012013351413121024", + "numLikes": 1447, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012013351413121024", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1449, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:66641273", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:66641273", + "entityUrn": "urn:li:fs_miniCompany:66641273", + "name": "MyCO2 par Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1594818120745?e=1684972800&v=beta&t=iu0KPu8LLJ9RAfjnT2Ns5LZl33RPKeM9HX6-ZLDA21k", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1594818120745?e=1684972800&v=beta&t=_mCrEcZ-7ykNMvdPjukL2wRv9vwlFKKCFeayuZ86FtM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1594818120745?e=1684972800&v=beta&t=oeC9Hq1Uc2ASP0IP9mQN7GVDE17ikFZ9KCBOFO9D33Y", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQG2GlbS3GKBow/company-logo_" + } + }, + "universalName": "myco2-par-carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:66641273", + "trackingId": "cp+coodnTIulEVSbetcH7Q==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniCompany": { + "objectUrn": "urn:li:company:66641273", + "entityUrn": "urn:li:fs_miniCompany:66641273", + "name": "MyCO2 par Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1594818120745?e=1684972800&v=beta&t=iu0KPu8LLJ9RAfjnT2Ns5LZl33RPKeM9HX6-ZLDA21k", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1594818120745?e=1684972800&v=beta&t=_mCrEcZ-7ykNMvdPjukL2wRv9vwlFKKCFeayuZ86FtM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1594818120745?e=1684972800&v=beta&t=oeC9Hq1Uc2ASP0IP9mQN7GVDE17ikFZ9KCBOFO9D33Y", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQG2GlbS3GKBow/company-logo_" + } + }, + "universalName": "myco2-par-carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:66641273", + "trackingId": "cp+coodnTIulEVSbetcH7Q==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "MyCO2 par Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: MyCO2 par Carbone 4", + "actionTarget": "https://www.linkedin.com/company/myco2-par-carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A66641273" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "28,825 followers" + }, + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:66641273", + "followerCount": 28825, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:66641273", + "following": false, + "trackingUrn": "urn:li:company:66641273" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followCompany" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:7010966247366381569", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7010966247366381569)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7010966247366381569)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/myco2-par-carbone-4_les-statistiques-myco2-nous-avons-activity-7010966247366381569-75z4?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7010966246607192064", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:66641273", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7010966246607192064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "JW/DVJhUqxTdaBpNpUTteA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQFzjFbp3VZe0g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQFzjFbp3VZe0g", + "artifacts": [ + { + "width": 1080, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1671544609460?e=1679529600&v=beta&t=HN7MObth8zSKWDHOhpWQhIKCAtJoGsXEmWgBDHK0LNo", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1671544609424?e=1679529600&v=beta&t=PLQ2KUCY0Lbtlu-UHVb_LMpB2IXMqQgPDZoJTzr88Bg", + "expiresAt": 1679529600000, + "height": 20 + }, + { + "width": 1080, + "fileIdentifyingUrlPathSegment": "1280/0/1671544609424?e=1679529600&v=beta&t=uf-zSDvZJlRVXc6GFt_mKFtc5KqEHGqt_-gxdxhK3sQ", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1671544609424?e=1679529600&v=beta&t=SItFDRx6lDY3WPEYy1HqROkxGbDhPUQyMzPiVxtYu94", + "expiresAt": 1679529600000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1671544609424?e=1679529600&v=beta&t=PrgPxIql5yVMf21oO0UktYUhxIfDwhFs2eH_i6CZD0w", + "expiresAt": 1679529600000, + "height": 160 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1671544609424?e=1679529600&v=beta&t=0bQ-l63afwzRf7s6bIm-DVpW-p6n8HmXoWdanH69q6Q", + "expiresAt": 1679529600000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQFzjFbp3VZe0g/feedshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7010966246607192064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\ud83d\udc4b\u00a0Les statistiques MyCO2 ! \ud83d\udd22\n\nNous avons l\u2019habitude de demander au d\u00e9but de nos conf\u00e9rences aux participant.e.s comment ils ou elle se situent en termes de connaissance sur le sujet de l\u2019empreinte carbone. \ud83e\udd14\n\nD\u00e9j\u00e0 35 000 personnes sensibilis\u00e9es lors des conf\u00e9rences MyCO2 et nous pouvons d\u00e9j\u00e0 tirer de nombreux et riches enseignements gr\u00e2ce aux statistiques et retours que nous avons suite aux centaines d\u2019ateliers d\u00e9j\u00e0 r\u00e9alis\u00e9s.\n\n\ud83d\udc47\u00a0Quelques chiffres cl\u00e9s \ud83d\udc47\n\n\ud83d\udc49\u00a02 tonnes de CO2eq : c\u2019est la diff\u00e9rence qu\u2019il y a entre l\u2019empreinte carbone d\u2019une personne se disant \u201csans connaissance\u201d \u00e0 une conf\u00e9rence MyCO2 et une personne se disant \u201cbien renseign\u00e9e\u201d (soit une empreinte 20% plus faible).\n\nLa corr\u00e9lation forte qu\u2019il y a entre le niveau de connaissance auquel les participant.e.s s\u2019\u00e9valuent et leur empreinte carbone met en \u00e9vidence le lien puissant qui s\u2019op\u00e8re entre la compr\u00e9hension des enjeux et les comportements quotidiens, entre la connaissance des ordres de grandeur et l\u2019efficacit\u00e9 des actions mises en oeuvre.\n\n\ud83d\udd0e\u00a0La compr\u00e9hension des enjeux physiques et surtout des r\u00e9ponses concr\u00e8tes \u00e0 apporter sont essentielles et surtout efficaces pour faire face au d\u00e9fi commun du changement climatique.\n\n\ud83d\udc49\u00a077% : c\u2019est la part de personnes se disant \u201cnovice\u201d ou \u201csans connaissance\u201d sur le sujet de l\u2019empreinte carbone aux conf\u00e9rences MyCO2 (hors conf\u00e9rences Grand Public). Une grande majorit\u00e9 donc !\n\nPour que le changement soit efficace, il doit \u00eatre collectif et c\u2019est l\u2019objectif de MyCO2 que de s\u2019adresser aux personnes novices sur le sujet afin que l\u2019ensemble de la soci\u00e9t\u00e9 puisse s\u2019emparer de la lutte contre le changement climatique d\u00e8s la fin de la conf\u00e9rence !\n\nSi les pouvoirs publics et les entreprises doivent urgemment s\u2019emparer de la transition \u00e9cologique, celle-ci ne pourra se faire sans une implication et une acceptation forte de la soci\u00e9t\u00e9 civile et des individus eux-m\u00eames.\n\n\u23ec\u00a0Ci-dessous une infographie r\u00e9sumant les principaux chiffres issus des conf\u00e9rences MyCO2 ! \u23ec\n\nD\u2019autres sont \u00e0 venir en 2023, nous les analyserons gr\u00e2ce \u00e0 notre partenariat avec le Laboratoire de Neurosciences Cognitives Computationnelles sous la tutelle de ENS !\n\n\ud83d\udc49\u00a0Vous n\u2019avez pas encore particip\u00e9 \u00e0 une conf\u00e9rence MyCO2 ? Inscrivez-vous \u00e0 notre prochaine conf\u00e9rence grand public gratuite en cliquant ici : https://lnkd.in/eC4d4aSC\n\n\u27a1\ufe0f\u00a0Pour organiser une conf\u00e9rence dans votre structure (entreprise, association\u2026), vous pouvez nous contacter \u00e0 l\u2019adresse myco2@carbone4.com." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7010966246607192064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7010966247366381569,urn:li:activity:7010966247366381569,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7010966247366381569,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7010966247366381569,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7010966247366381569", + "threadId": "activity:7010966247366381569", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010966247366381569", + "urn": "urn:li:activity:7010966247366381569", + "numComments": 47, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7010966247366381569", + "reactionTypeCounts": [ + { + "count": 608, + "reactionType": "LIKE" + }, + { + "count": 72, + "reactionType": "INTEREST" + }, + { + "count": 60, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "EMPATHY" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7010966247366381569", + "numLikes": 771, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010966247366381569", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 771, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:7011460603802230784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7011460603802230784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7011460603802230784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-statistiques-myco2-nous-avons-activity-7011460603802230784-_dhv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7011460603047223296", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7011460603802230784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7011460603047223296", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "JW/DVJhUqxTdaBpNpUTteA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7011460603047223296,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis maintenant presque 2 ans, Carbone 4 propose aux particuliers (gratuitement) et entreprises (en payant ; \u00e0 un moment il faut bien que quelqu'un paye !) un calculateur d'empreinte carbone personnel un peu particulier, MyCO2 (http://www.myco2.fr). \n\nIl est un peu particulier parce que ce calculateur ne peut pas s'utiliser seul. Il faut n\u00e9cessairement participer \u00e0 une d\u00e9couverte collective, une esp\u00e8ce de carboniques anonymes :), au cours d'une \"conf\u00e9rence interactive\". La raison est que l'effet de groupe lib\u00e8re du stress et favorise le passage \u00e0 l'action (ce qui est bien le but). Et l'interactivit\u00e9 permet aux personnes faisant le calcul de poser toutes sortes de questions sur les modalit\u00e9s de ce dernier.\n\nLors de ces conf\u00e9rences interactives, il est possible de collecter quelques informations (non nominatives \u00e9videmment) sur les participant(e)s. La premi\u00e8re est \u00e9videmment le r\u00e9sultat (combien chaque participant \"p\u00e8se\" en carbone). Mais il y a \u00e9galement la r\u00e9ponse \u00e0 quelques questions pos\u00e9es au d\u00e9but de l'exercice. Et notamment celle-ci : \"comment \u00e9valuez vous votre degr\u00e9 de connaissances sur le changement climatique ?\".\n\nEt le r\u00e9sultat, qui figure ci-dessous, est tr\u00e8s int\u00e9ressant : plus les gens d\u00e9clarent en savoir long sur l'enjeu, plus leur empreinte carbone est basse. Dit autrement, il y a une corr\u00e9lation entre degr\u00e9 de connaissance et action. Comme il est peu probable que l'action ait pr\u00e9c\u00e9d\u00e9 la connaissance, le plus vraisemblable est donc l'inverse : avoir compris le probl\u00e8me pousse \u00e0 s'en occuper.\n\nCe n'est donc pas totalement un hasard - et pas juste un effet du radotage du \u00e0 l'\u00e2ge :) - si la bonne compr\u00e9hension des enjeux est de mes chevaux de bataille, notamment pour les gens qui sont \u00e0 des poste de d\u00e9cision. \n\nEn attendant, si vous n'avez pas d'id\u00e9e de cadeau pour No\u00ebl, offrez (ou offrez vous) la d\u00e9couverte de votre empreinte carbone : c'est assur\u00e9ment un cadeau utile !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7011460603047223296,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7011460603802230784,urn:li:activity:7011460603802230784,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 77, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7011460603802230784,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7011460603802230784,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7011460603802230784", + "threadId": "activity:7011460603802230784", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011460603802230784", + "urn": "urn:li:activity:7011460603802230784", + "numComments": 120, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7011460603802230784", + "reactionTypeCounts": [ + { + "count": 1917, + "reactionType": "LIKE" + }, + { + "count": 151, + "reactionType": "INTEREST" + }, + { + "count": 118, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "PRAISE" + }, + { + "count": 30, + "reactionType": "EMPATHY" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7011460603802230784", + "numLikes": 2280, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011460603802230784", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2280, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7011000497289469952", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7011000497289469952)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7011000497289469952)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_like-an-oilwell-in-your-back-yard-irish-activity-7011000497289469952-lBaZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7011000496417034240", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7011000497289469952", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7011000496417034240", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "wNYzc8Btw8dKxp5RwGqelg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7772741583642015129", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676441404779?e=1677240000&v=beta&t=QJx9XZAll547t87K_KEt7Lf8Jzea6PJeiIhRGb6qwFE", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676441404779?e=1677240000&v=beta&t=hbFF7aYHt5jhWRcJnyFFjEkCy1eYUHSVWNhWRulTojg", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676441404780?e=1677240000&v=beta&t=te_tL1-1td7MbVtc8JxqA_SDSXkbBc3_mL8TDBL2UCE", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676441404780?e=1677240000&v=beta&t=uucskdg6QRLhXARlcijneQFmNi9LEVJbEbrJUQ8o01A", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGMeVBfIZGZbw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7772741583642015129)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7772741583642015129)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u2018Like an oilwell in your back yard\u2019: Irish people turn to cutting peat to save on energy bills by theguardian.com", + "actionTarget": "https://www.theguardian.com/world/2022/dec/12/like-an-oilwell-in-your-back-yard-irish-turn-to-cutting-peat-to-save-on-energy-bills?amp" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u2018Like an oilwell in your back yard\u2019: Irish people turn to cutting peat to save on energy bills" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7011000496417034240,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a 2 si\u00e8cles, l'\u00e9mergence du charbon \"de terre\" en Europe a contribu\u00e9 \u00e0 sauver ce qui restait des for\u00eats. A cette \u00e9poque, tout terrain de plaine ou \u00e0 peu pr\u00e8s avait \u00e9t\u00e9 d\u00e9frich\u00e9 pour faire place aux cultures, mais il restait des for\u00eats situ\u00e9es sur des terrains trop pauvres ou trop accident\u00e9s pour \u00eatre facilement utilis\u00e9s pour l'agriculture. Ces for\u00eats \u00e9taient mises \u00e0 rude \u00e9preuve par l'utilisation croissante du bois par les forges et le chauffage des villes.\n\nDepuis que les combustibles fossiles ont \u00e9t\u00e9 utilis\u00e9s en quantit\u00e9s croissantes, les for\u00eats sont partiellement revenues. D'abord la pression sur le bois de feu a baiss\u00e9, ce dernier \u00e9tant remplac\u00e9 d'abord par le charbon (chauffage et cuisson), puis par le gaz pour les m\u00eames usages.\n\nLa productivit\u00e9 \u00e0 l'hectare a fortement augment\u00e9 gr\u00e2ce \u00e0 la m\u00e9canisation et aux intrants (engrais et phytosanitaires), c'est \u00e0 dire gr\u00e2ce au p\u00e9trole et au gaz. Cela permet de produire plus avec moins de surfaces (avec quelques effets de bords sur la biodiversit\u00e9...), et a engendr\u00e9 une \"reprise foresti\u00e8re\" sur d'anciens terrains agricoles ou p\u00e2turages cessant d'\u00eatre exploit\u00e9s.\n\nMais voil\u00e0 : le stress croissant sur les \u00e9nergies fossiles est en train d'inverser la donne. Cet article du Guardian explique que les irlandais reviennent \u00e0 la tourbe (le pire en mati\u00e8re d'\u00e9missions de CO2 par unit\u00e9 d'\u00e9nergie) parce que le gaz et le p\u00e9trole sont plus chers (car moins disponibles), et les allemands au bois (mais ca doit probablement \u00eatre aussi vrai pour les fran\u00e7ais), avec dans ce dernier cas du \"braconnage\", c'est \u00e0 dire des pr\u00e9l\u00e8vements ill\u00e9gaux qui augmentent.\n\nIl \u00e9tait \u00e0 craindre que, au moment o\u00f9 les combustibles fossiles feraient d\u00e9faut, cela ferait revenir la pression sur le bois et la biomasse en g\u00e9n\u00e9ral que charbon, p\u00e9trole et gaz avaient supprim\u00e9. C'est exactement ce que l'on constate actuellement : les m\u00e9nages veulent se chauffer, les voitures rouler, les avions voler,et l'industrie tourner \u00e0 la biomasse, et tout cela est en train de cr\u00e9er une pression croissante sur le vivant.\n\nSi nous voulons garder des for\u00eats dans un contexte de pression climatique croissante et de pression \u00e9nerg\u00e9tique croissante, il va falloir \u00e0 la fois (re)planter les bonnes esp\u00e8ces, bien g\u00e9rer les usages aval pour r\u00e9partir au mieux la ressource rare, et... probablement embaucher quelques gardes forestiers de plus." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7011000496417034240,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7011000497289469952,urn:li:activity:7011000497289469952,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 66, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7011000497289469952,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7011000497289469952,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7011000497289469952", + "threadId": "activity:7011000497289469952", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011000497289469952", + "urn": "urn:li:activity:7011000497289469952", + "numComments": 125, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7011000497289469952", + "reactionTypeCounts": [ + { + "count": 1434, + "reactionType": "LIKE" + }, + { + "count": 236, + "reactionType": "INTEREST" + }, + { + "count": 197, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7011000497289469952", + "numLikes": 1907, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011000497289469952", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1908, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7010689509977653249", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7010689509977653249)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7010689509977653249)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cop15-les-entreprises-incit%C3%A9es-%C3%A0-divulguer-activity-7010689509977653249-f_XO?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7010689509080080384", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7010689509977653249", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7010689509080080384", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "+Ydbu3i76GKD2EJiw00Shg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7320927171555309572", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676619110204?e=1677240000&v=beta&t=CB0gpxrmH1R4SM3nooTIhQ6IzCevzcEjOQh3mRUCUbc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676619110204?e=1677240000&v=beta&t=dsQuT7hytRLXEKEk1L7I0RuEI42KTOvIABGlKYx2YYc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676619110204?e=1677240000&v=beta&t=AjmCmkJuthef54rsxN4KxYxKRRsBeynKqsoDHkB3z1Y", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676619110204?e=1677240000&v=beta&t=3SOOR8Ld7tkJ9GZ_vvJkSpMn1l-Jm0MWIWX7P0sdeA8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEfmciC_NDtuQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7320927171555309572)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7320927171555309572)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: COP15 : les entreprises incit\u00e9es \u00e0 divulguer leur impact sur la biodiversit\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/enjeux-internationaux/cop15-les-entreprises-incitees-a-divulguer-leur-impact-sur-la-biodiversite-1890665" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "COP15\u00a0: les entreprises incit\u00e9es \u00e0 divulguer leur impact sur la biodiversit\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7010689509080080384,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Fin du monde contre fin du mois : l'agenda pr\u00e9sidentiel a factuellement pench\u00e9 du deuxi\u00e8me c\u00f4t\u00e9 pendant la semaine qui vient de s'\u00e9couler. La pr\u00e9servation contre la fin du monde - comprendre la d\u00e9fense de la biodiversit\u00e9 - n'aura justifi\u00e9 aucun d\u00e9placement de haut niveau pour soutenir les n\u00e9gociateurs fran\u00e7ais et europ\u00e9ens, pourtant cr\u00e9dit\u00e9s du succ\u00e8s obtenu au Canada par notre premier magistrat sur ce r\u00e9seau (https://bit.ly/3FDV9P2 ). \n\nLe Qatar et le foot (\u00e0 moins que ce ne soient le foot et le Qatar) auront donc vu deux fois les roues de l'avion pr\u00e9sidentiel (dont Sud Ouest a \u00e9valu\u00e9 l'empreinte carbone : https://bit.ly/3Webuky ) en une semaine, la cote de popularit\u00e9 et le gaz ayant manifestement des charmes que les papillons et coraux n'ont pas.\n\nPourtant, si l'on replace les choses dans le bon ordre, sur une plan\u00e8te sans esp\u00e8ces v\u00e9g\u00e9tales et animales (c'est cela la biodiversit\u00e9), il va \u00eatre un peu difficile d'organiser des tournois de foot... et tout aussi difficile de faire tourner une \u00e9conomie. Incidemment, l'article des Echos ci-dessous contient la phrase \"Il faut rappeler que\u00a0plus de la moiti\u00e9 du PIB mondial est tributaire de la biodiversit\u00e9 et de ses services.\". Objection votre honneur : c'est 100% puisque sans esp\u00e8ces animales et v\u00e9g\u00e9tales il n'y a plus d'humanit\u00e9 et plus de PIB du tout !\n\nLa presse qualifie cet accord de succ\u00e8s parce que les aires prot\u00e9g\u00e9es doivent monter \u00e0 30% de la surface terrestre. Mais la vraie victoire, elle sera \u00e0 chercher, ou pas, dans les r\u00e9glementations nationales - ou \u00e9ventuellement les accords commerciaux - qui imposeront des obligations concr\u00e8tes aux acteurs domestiques. \n\nCar on peut appeler \"prot\u00e9g\u00e9e\" une zone qui en pratique ne l'est pas (par exemple une aire marine prot\u00e9g\u00e9e qui est chalut\u00e9e comme si elle ne l'\u00e9tait pas), ou encore cr\u00e9er une r\u00e9serve avec 3 gardes et demi pour des milliers de km2, qui restent en pratique soumis aux m\u00eames pressions qu'avant ou presque.\n\nLes obligations de transparence cr\u00e9\u00e9es pour les entreprises sont une \u00e9tape bienvenue, mais le Diable sera aussi dans les d\u00e9tails. Pour le moment, les m\u00e9thodes sont \u00e9mergentes (nous le savons \u00e0 Carbone 4 pour travailler dessus !), et les moyens allou\u00e9s par les acteurs \u00e9conomiques pour \"bien compter\" les pressions environnementales (biodiversit\u00e9 ou climat) restent bien plus faibles que pour les euros. On peut aller en prison quand on compte l'argent de travers (fraude fiscale, comptabilit\u00e9 non tenue, etc), mais c'est rarement le cas quand on compte le CO2 ou la biodiversit\u00e9 de travers !\n\nLe vrai s\u00e9rieux des pays ratificataires se mesurera donc \u00e0 l'aune de ce qu'ils seront capables d'imposer \u00e0 leurs acteurs domestiques. Pour la biodiversit\u00e9, comme pour le climat, il va falloir y consacrer un peu plus de temps que celui de simples f\u00e9licitations adress\u00e9es entre deux avions pour aller voir un match." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7010689509080080384,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7010689509977653249,urn:li:activity:7010689509977653249,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 92, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7010689509977653249,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7010689509977653249,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7010689509977653249", + "threadId": "activity:7010689509977653249", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010689509977653249", + "urn": "urn:li:activity:7010689509977653249", + "numComments": 184, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7010689509977653249", + "reactionTypeCounts": [ + { + "count": 4177, + "reactionType": "LIKE" + }, + { + "count": 238, + "reactionType": "APPRECIATION" + }, + { + "count": 201, + "reactionType": "MAYBE" + }, + { + "count": 151, + "reactionType": "PRAISE" + }, + { + "count": 107, + "reactionType": "INTEREST" + }, + { + "count": 46, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7010689509977653249", + "numLikes": 4920, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010689509977653249", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4921, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7010203411170131968", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7010203411170131968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7010203411170131968)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_executive-summary-coal-2022-analysis-activity-7010203411170131968-THNI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7010203410385752064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7010203411170131968", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7010203410385752064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "4DayzcmkBJYBuNheKbSmYw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8533787876617618175", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676530833333?e=1677240000&v=beta&t=OqEF3547iRFk_rZ0ROxfc6QhjMobGu_PeYlxXAu8GnU", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676530833333?e=1677240000&v=beta&t=D6zVPesylIe-wCG1VoA1ykCS8f_-eMxSgl_hRSS5CUY", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676530833333?e=1677240000&v=beta&t=kMWM6ZKCd2U0WsDH3SBWOiQ8VGkrdSj75gqASpMTibs", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676530833334?e=1677240000&v=beta&t=h-r8ZWo1sYblEqd_pl-Lm1oX-bPYX152Osaw3TaHKyE", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF8yJBuWzqvvw/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8533787876617618175)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8533787876617618175)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "iea.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Executive summary \u2013 Coal 2022 \u2013 Analysis - IEA by iea.org", + "actionTarget": "https://www.iea.org/reports/coal-2022/executive-summary" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Executive summary \u2013 Coal 2022 \u2013 Analysis - IEA" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7010203410385752064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce n'est pas une bonne nouvelle pour le climat : la consommation mondiale de charbon en 2022 devrait \u00eatre la plus haute depuis le d\u00e9but de l'utilisation de ce combustible. \n\nEn cause, il y a la tr\u00e8s forte hausse du prix du gaz liqu\u00e9fi\u00e9 qui a suivi les troubles en Europe (laquelle devait compenser au mieux par du GNL les importations disparues d'une partie du gaz russe), et qui a conduit \u00e0 un basculement du gaz vers le charbon pour une partie de la production \u00e9lectrique dans le monde. Rappelons qu'environ 2/3 du charbon plan\u00e9taire sert \u00e0 produire de l'\u00e9lectricit\u00e9 (voir https://bit.ly/3uXedCM - qui date un peu mais l'essentiel reste valable - pour avoir un aper\u00e7u de ses usages dans le monde).\n\nL'AIE publie aussi un graphique qui d\u00e9compose la variation de la production \u00e9lectrique dans le monde de 2021 \u00e0 2022. Les deux \"moteurs\" de la hausse de la consommation de charbon dans ce secteur sont la hausse de la consommation \u00e9lectrique tout court et... la baisse du nucl\u00e9aire. \n\nDans un contexte de stress sur l'approvisionnement en gaz (qui \u00e9tait envisageable pour la p\u00e9riode actuelle \u00e0 d\u00e9faut d'\u00eatre certain), l'arr\u00eat des r\u00e9acteurs de nos voisins du Nord a en particulier directement d\u00e9bouch\u00e9 sur une hausse de la pire mani\u00e8re de produire de l'\u00e9lectricit\u00e9 (voir https://bit.ly/3j60iYh ), ce qui se constate assez facilement en ce moment en regardant par exemple la d\u00e9composition de la production \u00e9lectrique disponible sur https://lnkd.in/ecWPwUDV\n\nL'AIE fournit aussi un pronostic d'ici \u00e0 2025. Dans ce dernier, la hausse attendue de la consommation \u00e9lectrique n'est pas assur\u00e9e en totalit\u00e9 par les renouvelables, et il y a aussi un poil d'augmentation de charbon. Certes la hausse est dans l'\u00e9paisseur du trait selon cette projection, mais si ce combustible solide suivait le chemin demand\u00e9 par la \"trajectoire 2\u00b0C\" il faudrait que sa consommation baisse de 14% (dans le monde) en 3 ans. \n\nAppliqu\u00e9e \u00e0 l'\u00e9lectricit\u00e9, cette baisse signifie 1450 TWh (\u00e9lectriques) de production au charbon en moins en 3 ans (1 TWh = un milliard de kWh). Par ailleurs l'AIE envisage une hausse de la demande \u00e9lectrique de 2500 TWh sur la m\u00eame p\u00e9riode. Pour que l'\u00e9quation soit tenue il faudrait donc 4000 TWh de production non carbon\u00e9e en plus, soit :\n- un doublement de l'hydro\n- ou une multiplication par presque 5 du solaire (qui a augment\u00e9 d'environ 14% par an de 2018 \u00e0 2021)\n- ou une multiplication par 3 de l'\u00e9olien (qui a augment\u00e9 d'environ 10% par an de 2018 \u00e0 2021)\n- ou une multiplication par 2,5 du nucl\u00e9aire (qui est stable de 2018 \u00e0 2021).\n\nM\u00eame en combinant tout cela, on voit le formidable d\u00e9calage entre les discours de d\u00e9carbonation et les actes. Si nous voulons 2\u00b0C, il va surtout falloir consommer moins d'\u00e9lectricit\u00e9 dans le monde...\n\nNB : la photo d'illustration choisie par l'AIE est assez mal venue : il aurait mieux valu montrer une mine ayant remplac\u00e9 la v\u00e9g\u00e9tation, ou un train traversant un paysage dess\u00e9ch\u00e9, cela aurait \u00e9t\u00e9 plus \u00e0 propos ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7010203410385752064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7010203411170131968,urn:li:activity:7010203411170131968,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 99, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7010203411170131968,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7010203411170131968,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7010203411170131968", + "threadId": "activity:7010203411170131968", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010203411170131968", + "urn": "urn:li:activity:7010203411170131968", + "numComments": 190, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7010203411170131968", + "reactionTypeCounts": [ + { + "count": 1309, + "reactionType": "LIKE" + }, + { + "count": 330, + "reactionType": "INTEREST" + }, + { + "count": 300, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7010203411170131968", + "numLikes": 1964, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010203411170131968", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1966, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7009917420706365440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7009917420706365440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7009917420706365440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_entreprises-audacieuses-soutenez-le-shift-activity-7009917420706365440-76OG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7009917419930451969", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7009917420706365440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7009917419930451969", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "T0qGmz9lJZtBPjhV1tLu2w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7299614099246559126", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675430869943?e=1677240000&v=beta&t=m_h85Ptd4lKTv5NPZARCY0adv4w-azik0xvrjR6v9ao", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675430869943?e=1677240000&v=beta&t=V2X9Ay4pzI4N0CzzeB2292jCgMtGcN2ngvUzdqNii0g", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675430869944?e=1677240000&v=beta&t=p6V4mi778C-WwgNn7VbU2gdm8eGarQyWC9blWstM_dc", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675430869944?e=1677240000&v=beta&t=1AmioKJnSLeBXs61e_Su_q4HLcwfcKPRkHhhwN8QXTY", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHRAzXBsYbayg/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7299614099246559126)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7299614099246559126)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Entreprises audacieuses, soutenez le Shift Project ! by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/shift-appel-entreprises/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Entreprises audacieuses, soutenez le Shift Project !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7009917419930451969,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9cembre, c'est l'\u00e9poque du courrier presque du coeur au P\u00e8re No\u00ebl ! C\u00f4t\u00e9 Shift Project, et m\u00eame si nous savons que les rennes commencent \u00e0 souffrir du r\u00e9chauffement climatique, nous avons aussi un souhait sur le contenu de la hotte. Il s'appelle un(e) chef(fe) d'entreprise militant(e). \n\nPlus pr\u00e9cis\u00e9ment, ce que nous souhaiterions trouver sous le sapin, ce sont des entreprises membres, c'est \u00e0 dire qui adh\u00e8rent \u00e0 l'association et qui versent une cotisation. Cette derni\u00e8re est d'abord bienvenue parce que nous avons en permanence plus d'id\u00e9es que de moyens. Et, quand nous sommes dans une course contre la montre, avoir les moyens de creuser ses id\u00e9es est plus utile avant les ennuis qu'apr\u00e8s !\n\nUne entreprise qui adh\u00e8re c'est aussi un acteur \u00e9conomique de plus qui \"soutient la cause\". Il n'est pas n\u00e9cessaire de soutenir l'int\u00e9gralit\u00e9 de ce que nous faisons ou disons pour adh\u00e9rer : il suffit juste de consid\u00e9rer que notre existence est globalement utile \u00e0 la collectivit\u00e9, sans \u00eatre frontalement antagonistes des activit\u00e9s du membre concern\u00e9.\n\nNous ne cherchons donc pas \u00e0 avoir toute entreprise de ce pays comme membre : juste celles qui ont sinc\u00e8rement envie de nous voir travailler, proposer et exister dans le d\u00e9bat public, parce que c'est leur int\u00e9r\u00eat, ou parce que leurs instances dirigeantes sont profond\u00e9ment convaincues que de toute fa\u00e7on \"nous n'y couperons pas\", et \u00e0 ce moment autant le faire en ayant r\u00e9fl\u00e9chi le plus possible au plan d'ensemble (ce qui est notre ambition).\n\nOn pourra nous reprocher une collusion avec le grand capital. C'est in\u00e9vitable d\u00e8s lors que nous avons choisi une position moins pure que de protester de l'ext\u00e9rieur : nous avons cibl\u00e9 le monde \u00e9conomique, et nous cherchons \u00e0 y mobiliser \"de l'int\u00e9rieur\". C'est moins visible et plus ingrat, mais c'est aussi l\u00e0 que se gagnent une partie des batailles. Nos membres acceptent aussi que nous les asticotions un peu de temps en temps : pour progresser, il faut sortir de sa zone de confort.\n\nOn pourra aussi nous reprocher de ne pas \u00eatre \u00e0 la hauteur de l'enjeu, puisque la situation globale continue \u00e0 \u00e9voluer dans le mauvais sens. Mais, tant qu'il n'y a pas de plan B, il n'y a aucune chance de voir l'\u00e9conomie se r\u00e9orienter : vers quoi le ferait-elle ? Avoir des propositions op\u00e9rationnelles n'est pas suffisant, mais c'est assur\u00e9ment n\u00e9cessaire.\n\nEn 2022, le budget du Shift Project aura \u00e9t\u00e9 de 2 millions. Avec les Shifters, notre force de frappe est multipli\u00e9e par 2 ou 3, mais cela reste faible face aux milliards qui vont, de par le monde, dans la recherche \u00e9conomique \"traditionnelle\", ou aux centaines de milliards qui vont dans la recherche \"purement technologique\", qui ne suffira pas, loin s'en faut, \u00e0 nous faire atterrir en douceur.\n\nSi vous avez le carnet de ch\u00e8ques de votre entreprise, donc, et que vous pensez que quelques cervelles de plus mobilis\u00e9es sur la d\u00e9carbonation ne sont pas de trop, vous savez ce qui nous ferait plaisir sous le sapin !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7009917419930451969,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7009917420706365440,urn:li:activity:7009917420706365440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 56, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7009917420706365440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7009917420706365440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7009917420706365440", + "threadId": "activity:7009917420706365440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009917420706365440", + "urn": "urn:li:activity:7009917420706365440", + "numComments": 147, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7009917420706365440", + "reactionTypeCounts": [ + { + "count": 1848, + "reactionType": "LIKE" + }, + { + "count": 234, + "reactionType": "APPRECIATION" + }, + { + "count": 45, + "reactionType": "EMPATHY" + }, + { + "count": 25, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7009917420706365440", + "numLikes": 2169, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009917420706365440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2170, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7009466059044847616", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7009466059044847616)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7009466059044847616)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_publication-former-une-finance-au-service-activity-7009466059044847616--Tgb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7009466058004692993", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7009466059044847616", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7009466058004692993", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "zh/RMzuCa981/fsarCBAWA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7418578237810237887", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676404361478?e=1677240000&v=beta&t=ggVaGavtFimpISphgTljo5T1Q7-bc_3fVtRxWBQdQgo", + "expiresAt": 1677240000000, + "height": 354 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676404361478?e=1677240000&v=beta&t=vTW5uDijW_OKWXGcmqoDHbSpWOduH18IYRhIu4cjuFk", + "expiresAt": 1677240000000, + "height": 361 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676404361478?e=1677240000&v=beta&t=jb---DEVZ3d_-zpPk29aQRoD3RlYDiSOPms4p5yO-L4", + "expiresAt": 1677240000000, + "height": 70 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676404361479?e=1677240000&v=beta&t=htDAq_fW_x8qkoafME6SdV-MReJMDlXj3WEXrTt5la8", + "expiresAt": 1677240000000, + "height": 212 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGERsOAV9mnkA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7418578237810237887)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7418578237810237887)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [Publication] Former une finance au service de la transition by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/climatsup-finance-rapport-final/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[Publication] Former une finance au service de la transition" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7009466058004692993,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 268, + "length": 14, + "miniProfile": { + "firstName": "Bruno", + "lastName": "Le Maire", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "occupation": "Ministre de l\u2019\u00c9conomie, des Finances et de la Souverainet\u00e9 industrielle et num\u00e9rique", + "objectUrn": "urn:li:member:489338904", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1615820384690?e=1681948800&v=beta&t=1lSONwEqNZ6YCfsSa_SSdMyy3lRIBlt7HnIa8FhbD_0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1615820384690?e=1681948800&v=beta&t=mXrkcvswYDvA5nxrWnHwv0uRHbVbSrbb-YTCHNh3hZs", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFtlzemSILDlQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "brunolemaire", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650470576103?e=1681948800&v=beta&t=grYiuKFOw0Vps9r0gskTHNlsABqKydJY1BD9PqrCOZE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650470576103?e=1681948800&v=beta&t=_dq5B-XcARKywCPZ39sHI46v2wiioUaRLXHB6EjQEZA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650470576103?e=1681948800&v=beta&t=hpGqyzWjIXtO01PmwOzhVATdVIHajDaeNdSiiN6I2KY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650470576103?e=1681948800&v=beta&t=sDT3g5ZnR6kL5Ks0S37qtLS2Z-UNhM119fiXH0t1h8I", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQH2hSTPjrAuKw/profile-displayphoto-shrink_" + } + }, + "trackingId": "ub87QQHuRP68OTSAH5x5ew==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 286, + "length": 27, + "miniProfile": { + "firstName": "Fran\u00e7ois Villeroy", + "lastName": "de Galhau", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAC9b73YBapktRkPFyw1DZFtDGlXkCYd1JCI", + "occupation": "Governor of the Banque de France", + "objectUrn": "urn:li:member:794554230", + "entityUrn": "urn:li:fs_miniProfile:ACoAAC9b73YBapktRkPFyw1DZFtDGlXkCYd1JCI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1649147062675?e=1681948800&v=beta&t=MsbRBiX6P0n7C6hxrlDxYJwS6ieVrOjEfj2KRFU3hh4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1649147062675?e=1681948800&v=beta&t=DcwQYEuVGJzz1tvBJBv2-DXkpufPU_frG7t-VMMsNAU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQEr5GQrsYSKbQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "francois-villeroy", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1616086237471?e=1681948800&v=beta&t=2bcB6ZoXIBdEa4LUkoZS2GM-9SjRon1R_KN31hVLsiI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1616086237471?e=1681948800&v=beta&t=YSle_dAUmLeMv4MynvXNkPyYF0uRoiiRxB1oF1ATgUg", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1616086237471?e=1681948800&v=beta&t=kFX3nSgwWyA3wJNHnRsGEM2QXhDegP89vSd1BRd9eNU", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1616086237471?e=1681948800&v=beta&t=VF9lRNFYP1C72-B7C7iVqwxiX4SPjX4bQKD7_VxwATc", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHXvQJDAmH7dA/profile-displayphoto-shrink_" + } + }, + "trackingId": "ScrKLeArSBi3/FG23lXn3A==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "D\u00e8s que l'on parle d'argent, cela int\u00e9resse du monde :) : pour la pr\u00e9sentation du rapport du Shift Project sur l'int\u00e9gration des enjeux environnementaux dans la formation des futurs (et actuels) salari\u00e9s du monde financier, avaient fait le d\u00e9placement jusqu'\u00e0 l'amphi Bruno Le Maire et Fran\u00e7ois Villeroy de Galhau, entre autres.\n\nNB : Pour celles et ceux qui n'ont pas regard\u00e9 cette pr\u00e9sentation la vid\u00e9o est disponible sur Facebook : https://lnkd.in/eAWNaJKd (aller directement \u00e0 21 minutes du d\u00e9but, car il y a eu un peu de retard, et avant c'est juste un plan fixe sur l'image ayant servi \u00e0 l'annonce).\n\nLe rapport en question a fait l'objet d'une pr\u00e9sentation synth\u00e9tique, mais vous pouvez d'ores et d\u00e9j\u00e0 le t\u00e9l\u00e9charger sur la page d\u00e9di\u00e9e du site du Shift Project (lien ci-dessous) et voir quelles sont nos propositions pour les futurs employ\u00e9s du grand (et du petit, et parfois public) capital.\n\nDeux chiffres essentiel r\u00e9sument l'avant et apr\u00e8s :\n\n- actuellement, sur 1400 cursus (de formation de futurs \"financiers\") examin\u00e9s, seuls 5% int\u00e8grent les enjeux \u00e9cologiques de mani\u00e8re acceptable dans l'enseignement dispens\u00e9, et c'est essentiellement pour des personnes qui suivent un parcours sp\u00e9cialis\u00e9 dans l'extrafinancier. Ailleurs il n'y a rien, ou quasi.\n\n- pour commencer \u00e0 disposer d'une compr\u00e9hension acceptable des enjeux (changement climatique, biodiversit\u00e9, ressources min\u00e9rales, etc), et de la boite \u00e0 outils pour \"penser syst\u00e8me\" et arbitrer les conflits d'objectifs, il faut compter un peu plus de 150 heures de formation. \n\nComme les \u00e9pisodes pr\u00e9c\u00e9dents pour les ing\u00e9nieurs et les gestionnaires, ce rapport aborde des questions tr\u00e8s pratiques, comme par exemple la formation ou le recrutement des enseignants, la conception d'une maquette p\u00e9dagogique, la question des classements, et plein d'autres aspects concrets auxquels est confront\u00e9 tout responsable d'\u00e9tablissement de bonne volont\u00e9.\n\nIl ne se passe d\u00e9sormais plus un jour sans annonce de verdissement dans le secteur financier. Mais pour passer des d\u00e9clarations aux actes il y a des \u00e9tapes incontournables : \u00eatre capable d'inclure la question environnementale (et en particulier climatique) dans les processus du quotidien, avoir des seuils et des objectifs servis par ces processus, et \u00eatre capable d'arbitrer les conflits d'objectifs qui sont in\u00e9vitables d\u00e8s qu'il y a r\u00e9orientation strat\u00e9gique.\n\nCet ensemble demande notamment (mais pas que) des salari\u00e9s correctement form\u00e9s sur les enjeux et les m\u00e9thodes pour les inclure dans les processus. Ce qui a \u00e9t\u00e9 pr\u00e9sent\u00e9 hier soir n'est donc pas suffisant, mais \u00e0 l'\u00e9vidence c'est n\u00e9cessaire : on peut douter de la cr\u00e9dibilit\u00e9 d'entreprises du secteur financier qui ne se pr\u00e9occuperaient pas de la mont\u00e9e en comp\u00e9tence de l'ensemble de leurs salari\u00e9s (c'est bien l'objet du rapport) et pas juste de leur \u00e9quipe RSE. Au travail !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7009466058004692993,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7009466059044847616,urn:li:activity:7009466059044847616,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 52, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7009466059044847616,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7009466059044847616,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7009466059044847616", + "threadId": "activity:7009466059044847616", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009466059044847616", + "urn": "urn:li:activity:7009466059044847616", + "numComments": 75, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7009466059044847616", + "reactionTypeCounts": [ + { + "count": 863, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 57, + "reactionType": "PRAISE" + }, + { + "count": 37, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7009466059044847616", + "numLikes": 1040, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009466059044847616", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1041, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7009114386082504704", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7009114386082504704)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7009114386082504704)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_crise-%C3%A9nerg%C3%A9tique-leurope-se-pr%C3%A9pare-d%C3%A9j%C3%A0-activity-7009114386082504704-gMq1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7009114385205854208", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7009114386082504704", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7009114385205854208", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "7S7C84Imq4DaRWr20qU00Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7528916263422900654", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676110814399?e=1677240000&v=beta&t=iMYIDP4KBmxF4sHs0X5IXrMrH9JOnheOo-m2n3GhVjQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676110814399?e=1677240000&v=beta&t=26im_LCLEijHzcKAaxsquluLnUasTERrYQp3x3q-WMY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676110814399?e=1677240000&v=beta&t=aPI9FGrnvib74KBBeLKFA8I4lxQf1rRZvnaUE84q1sA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676110814399?e=1677240000&v=beta&t=QLEdgJuTWT968aMcmnIa_lFAOTTMcDajMBTKRehrTxA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHY4iSuylKinw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7528916263422900654)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7528916263422900654)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Crise \u00e9nerg\u00e9tique : l'Europe se pr\u00e9pare d\u00e9j\u00e0 \u00e0 un hiver 2023 tr\u00e8s difficile by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/crise-energetique-leurope-se-prepare-deja-a-un-hiver-2023-tres-difficile-1888396" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Crise \u00e9nerg\u00e9tique\u00a0: l'Europe se pr\u00e9pare d\u00e9j\u00e0 \u00e0 un hiver\u00a02023 tr\u00e8s difficile" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7009114385205854208,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Commission est raccord avec The Shift Project, m\u00eame si c'est pour tirer une forme de signal d'alarme (https://lnkd.in/eVVGtZCc ) : la situation gazi\u00e8re actuelle ne fait qu'annoncer un avenir qui sera probablement de plus en plus compliqu\u00e9 \u00e0 g\u00e9rer, et ce d\u00e8s l'hiver prochain.\n\nLors d'un hiver \"normal\", le gaz utilis\u00e9 provient de deux sources :\n- les stocks qui ont \u00e9t\u00e9 constitu\u00e9s pendant l'\u00e9t\u00e9, \u00e0 un moment o\u00f9 l'approvisionnement (via gazoduc ou GNL) d\u00e9passe la consommation\n- mais aussi du gaz qui continue d'\u00eatre achemin\u00e9 en continu par les m\u00eames moyens.\n\nAvant la guerre en Ukraine, le gaz russe repr\u00e9sentait 40% des approvisionnement de l'Union. D\u00e9sormais Nordstream est hors service (il avait une capacit\u00e9 de 25% de la consommation europ\u00e9enne environ), et seul subsiste l'approvisionnement via le gazoduc qui passe par l'Ukraine... qui est un point d'interrogation. On peut tr\u00e8s bien imaginer que d\u00e8s que les russes auront r\u00e9alis\u00e9 les infrastructures physiques leur permettant de commercer avec la Chine, cet approvisionnement l\u00e0 aussi puisse baisser ou dispara\u00eetre (car il permet aussi aux ukrainiens d'avoir du gaz).\n\nAvant m\u00eame que cette hypoth\u00e8que ne se concr\u00e9tise, la faiblesse de l'approvisionnement \"en continu\" depuis la guerre pourrait obliger les europ\u00e9ens \u00e0 compl\u00e8tement vider les stocks pour passer l'hiver, et cette m\u00eame faiblesse nous emp\u00eacher de disposer d'assez de gaz pou faire face \u00e0 la demande l'hiver prochain.\n\nIncidemment cette faiblesse de l'approvisionnement en gaz devrait maintenir des prix de march\u00e9 \u00e9lev\u00e9s, et, \u00e0 \"market design\" identique sur l'\u00e9lectricit\u00e9, maintenir des prix tr\u00e8s \u00e9lev\u00e9s pour l'\u00e9lectricit\u00e9 europ\u00e9enne.\n\nFace \u00e0 cela, les mesures palliatives sur l'offre sont lentes : plus d'ENR (ou de nucl\u00e9aire) demande du temps, outre que les ENR \u00e9lectriques non pilotables concourent peu \u00e0 la s\u00e9curit\u00e9 d'approvisionnement (il suffit de regarder https://lnkd.in/eRvA7w-a depuis une semaine pour voir que l'Allemagne - et nous via importations pour une petite partie - tourne fortement au charbon parce qu'il y a peu de soleil et peu de vent depuis une semaine). \n\nLes mesures \"purement techniques\" sur la demande sont aussi lentes \u00e0 mettre en place : on ne peut pas multiplier par 10 le nombre d'op\u00e9rations lourdes de r\u00e9novation des b\u00e2timents \"comme cela\".\n\nSi la baisse est significative, il y a donc fort \u00e0 parier que ce sont des \"mesures rapides\" sur la demande qui vont devoir faire le job (car de fait on ne peut pas consommer un gaz qui n'existe pas !). Baisse du thermostat, de la consommation \u00e9lectrique et de la production industrielle sont donc \u00e0 envisager. Il faut malheureusement aussi se pr\u00e9parer \u00e0 cela." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7009114385205854208,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7009114386082504704,urn:li:activity:7009114386082504704,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7009114386082504704,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7009114386082504704,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7009114386082504704", + "threadId": "activity:7009114386082504704", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009114386082504704", + "urn": "urn:li:activity:7009114386082504704", + "numComments": 117, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7009114386082504704", + "reactionTypeCounts": [ + { + "count": 751, + "reactionType": "LIKE" + }, + { + "count": 170, + "reactionType": "INTEREST" + }, + { + "count": 140, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7009114386082504704", + "numLikes": 1069, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009114386082504704", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1069, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7008752503869554688", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7008752503869554688)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7008752503869554688)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lunion-europ%C3%A9enne-instaure-la-premi%C3%A8re-taxe-activity-7008752503869554688-Ptv2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7008752502338650112", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7008752503869554688", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7008752502338650112", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "zTo2SR3PYXWa3aCSNMRztA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7495116679254268835", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675940365622?e=1677240000&v=beta&t=5tzIuc2O4zjPw3q30H9c-MTxNCZ3mw3Pmh4sbFDiZNM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675940365622?e=1677240000&v=beta&t=YHYkXuI2AyJz_ZibrFCXYgx2cnWzyi8Z4katx4D3JXY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675940365622?e=1677240000&v=beta&t=OEJja4MPtkeDK59yKWGBXiyibDbWbKD6GhOMiZzVtgM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675940365623?e=1677240000&v=beta&t=HuPrAXYSTqKU0a4_mB7nU1NQ0j1RYvF8r47YBYYfG0Q", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE2Fqr-9jW6fg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7495116679254268835)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7495116679254268835)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'Union europ\u00e9enne instaure la premi\u00e8re taxe carbone aux fronti\u00e8res au monde by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/climat-le-parlement-europeen-adopte-la-taxe-carbone-aux-frontieres-1888558" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'Union europ\u00e9enne instaure la premi\u00e8re taxe carbone aux fronti\u00e8res au monde" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7008752502338650112,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Union europ\u00e9enne vient de se doter d'un m\u00e9canisme pour prot\u00e9ger les industriels du continent contre leurs comp\u00e9titeurs \u00e9trangers qui n'ont pas \u00e0 payer pour leurs \u00e9missions de gaz \u00e0 effet de serre. Cette mesure est r\u00e9clam\u00e9e depuis longtemps par les milieux \u00e9conomiques au motif - l\u00e9gitime dans son principe - que, pour des produits soumis \u00e0 la concurrence internationale, payer pour le CO2 rench\u00e9rit les couts face \u00e0 la concurrence.\n\nIl y a certes quelques secteurs qui crient un peu fort avant m\u00eame d'avoir mal. Par exemple le ciment voyage peu, et les \u00e9changes internationaux sont faibles. Mais pour d'autres produits de base - et a fortiori manufactur\u00e9s - c'est plut\u00f4t la r\u00e8gle. L'intention europ\u00e9enne est donc pertinente.\n\nRevenons un peu sur les quotas : ils sont attribu\u00e9s site par site (et non par entreprise) pour un peu plus de 10.000 sites tr\u00e8s \u00e9missifs (centrales \u00e9lectriques, cimenteries, aci\u00e9ries, etc). \n\nDepuis 2013 la les quotas sont vendus aux ench\u00e8res. En d\u00e9but de p\u00e9riode (car les quotas sont valables pour une p\u00e9riode de quelques ann\u00e9es), la Commission permet \u00e0 chaque site concern\u00e9 de se procurer des autorisations administratives d'\u00e9mettre (appel\u00e9es quotas), qui sont payants (vendus aux ench\u00e8res), et disponibles en quantit\u00e9 limit\u00e9 pour un site donn\u00e9 (https://bit.ly/3YlMJ7m ).\n\nC'est donc payant... mais il y a plein de d\u00e9rogations permettant d'avoir ces m\u00eames quotas gratuitement : pour les sites tr\u00e8s expos\u00e9s \u00e0 la concurrence, pour ceux qui se modernisent, etc (https://bit.ly/3hnL28R ).\n\nL'id\u00e9e de cette \"taxe aux fronti\u00e8res\" est justement de pouvoir - entre autres - supprimer ces exceptions parce que les comp\u00e9titeurs internationaux vont aussi devoir payer quelque chose. En pratique l'Europe ne peut pas taxer des usines situ\u00e9es hors de ses fronti\u00e8res : ce sont les importateurs qui vont devoir acheter des quotas. Ce n'est donc pas une taxe carbone \u00e0 proprement parler, \u00e0 savoir un prix fixe par tonne de CO2 \u00e9mise par les industriels qui exportent des produits en Europe.\n\nPour savoir combien de quotas les importateurs vont devoir se procurer, il va donc falloir se mettre d'accord sur un \"contenu en carbone\" par unit\u00e9 de produit import\u00e9e. Il faudra aussi se mettre d'accord sur la source de ces quotas (achet\u00e9s sur le march\u00e9 sans augmentation du volume global de quotas disponibles ? Issus d'une nouvelle enveloppe suppl\u00e9mentaire et vendus aux ench\u00e8res ? Autre ?), et le m\u00e9canisme qui va garantir que le prix moyen \u00e0 la tonne de CO2 pay\u00e9 par l'importateur sera \u00e9quivalent au prix moyen pay\u00e9 par l'industriel europ\u00e9en pour la fabrication du m\u00eame produit (et sur ce dernier point tout n'est pas si simple : une tonne de poutrelle en acier est-elle \u00e9quivalente \u00e0 une tonne de feuille d'acier en rouleau ?).\n\nIl n'emp\u00eache : cette innovation est bienvenue. Rappelons qu'en France, acier, ciment et chimie de base repr\u00e9sentent les 3/4 des \u00e9missions industrielles. Ce syst\u00e8me de compensation aux fronti\u00e8res interagit avec un gros paquet d'\u00e9missions." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7008752502338650112,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7008752503869554688,urn:li:activity:7008752503869554688,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 72, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7008752503869554688,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7008752503869554688,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7008752503869554688", + "threadId": "activity:7008752503869554688", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008752503869554688", + "urn": "urn:li:activity:7008752503869554688", + "numComments": 117, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7008752503869554688", + "reactionTypeCounts": [ + { + "count": 2617, + "reactionType": "LIKE" + }, + { + "count": 252, + "reactionType": "INTEREST" + }, + { + "count": 203, + "reactionType": "MAYBE" + }, + { + "count": 81, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7008752503869554688", + "numLikes": 3189, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008752503869554688", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3190, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7008343783905845248", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7008343783905845248)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7008343783905845248)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_voitures-v%C3%A9los-smartphones-leurope-va-activity-7008343783905845248-Dppi?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7008343783176044544", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7008343783905845248", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7008343783176044544", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "RauorVEvrCgpWczofHHf/g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7482535744954721878", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675761705422?e=1677240000&v=beta&t=Lvz3GK2Mm_4CvcOBUjkoiaQ0iwSlQ76uo5snQdWHaZQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675761705423?e=1677240000&v=beta&t=VVzPaZvmd5Xb8kDngYhyvKAzS4pHfhMDr5AbuBPDLN0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675761705423?e=1677240000&v=beta&t=mJqiNdSpAWu_t00RoXWVbj7fqaaY7TjtVNpQJvjbNJ8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675761705423?e=1677240000&v=beta&t=JgXTHAHa5FbAmCN0k5tLlCc5UU3Y7ZJcNJim-qTfJxc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGQ9Okk73Vr7w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7482535744954721878)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7482535744954721878)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Voitures, v\u00e9los, smartphones : l'Europe va contraindre les industriels \u00e0 verdir leurs batteries by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/voitures-velos-smartphones-leurope-va-contraindre-les-industriels-a-verdir-leurs-batteries-1887966" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Voitures, v\u00e9los, smartphones\u00a0: l'Europe va contraindre les industriels \u00e0 verdir leurs batteries" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7008343783176044544,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans le d\u00e9bat sur la mani\u00e8re de d\u00e9carboner l'industrie europ\u00e9enne, un argument est souvent mis en avant par les adversaires de la taxe carbone : elle cr\u00e9erait une distorsion de concurrence avec les industriels \u00e9trangers, qui n'y seraient pas soumis. \n\nCet argument est de fait souvent recevable (pas toujours : sur les pond\u00e9reux qui voyagent peu, par exemple le ciment, le risque de \"fuites\" aux fronti\u00e8res est limit\u00e9). Il y a une autre mani\u00e8re de faire, que l'Europe vient de d\u00e9cider \u00e0 propos des batteries : limiter l'empreinte carbone d'un produit ou service. \n\nDe fait, pour une voiture \u00e9lectrique, la fabrication de la batterie engendre la moiti\u00e9 des \u00e9missions de fabrication de l'ensemble. Cela n'emp\u00eache pas un v\u00e9hicule \u00e9lectrique d'\u00eatre, sur sa dur\u00e9e de vie, significativement moins \u00e9missif qu'un v\u00e9hicule \u00e0 p\u00e9trole de taille et puissance \u00e9quivalentes pour beaucoup de pays europ\u00e9ens, mais diminuer l'empreinte carbone de la batterie reste un objectif important pour baisser le contenu carbone d'un v\u00e9hicule \u00e9lectrique.\n\nLa l\u00e9gislation europ\u00e9enne qui vient d'\u00eatre d\u00e9cid\u00e9e, dont je confesse ne pas encore avoir regard\u00e9 les d\u00e9tails, est donc pertinente. Il n'\u00e9chappera \u00e0 personne que cette r\u00e9glementation est aussi une arme anti-importation et pro-fili\u00e8re europ\u00e9enne. En effet, la fabrication d'une batterie est un processus assez gourmand en \u00e9lectricit\u00e9 et en \u00e9nergie fossile \"en direct\". Pas juste pour l'assemblage final des packs de cellules (qui est n\u00e9gligeable dans l'ensemble de l'empreinte carbone), mais pour les \u00e9tapes amont : extraction des minerais, raffinage des divers m\u00e9taux (nickel, cobalt, lithium, cuivre), fabrication des principes actifs des composants (anode, cathode, \u00e9lectrolyte), et fabrication des cellules.\n\nPour d\u00e9carboner significativement la fabrication d'une batterie, il faudra donc non seulement des usines d'assemblage (les fameuses \"gigafactories\"), mais surtout rapatrier en Europe - et pr\u00e9f\u00e9rentiellement dans les pays \u00e0 \u00e9lectricit\u00e9 peu carbon\u00e9e, \u00e0 supposer que l'on en ait assez :) - la fraction maximale des \u00e9tapes qui vont juste \u00e0 l'aval de la mine (sachant que la mine sera difficile \u00e0 rapatrier en Europe !) : raffinage des m\u00e9taux, principes actifs, et cellules.\n\nC'est bien ce mouvement que l'Europe cherche \u00e0 enclencher avec le r\u00e8glement europ\u00e9en adopt\u00e9 (rappelons qu'un r\u00e8glement est d'application directe dans les \u00e9tats membres et n'a pas besoin de transposition par les parlements nationaux comme une directive). Reste \u00e0 ce que la physique soit d'accord (pour avoir assez d'\u00e9lectricit\u00e9 d\u00e9carbon\u00e9e pour faire ET des batteries ET de l'hydrog\u00e8ne ET de la mobilit\u00e9 ET alimenter des pompes \u00e0 chaleur ET \u00e9lectrifier d'autres industries...) et que l'industrie soit d'accord pour investir.\n\nIl y aura aussi un d\u00e9bat \u00e0 avoir sur l'usage de ces batteries : avec de quoi \u00e9lectrifier un \"tank \u00e9lectrique\" de plus de 2 tonnes on peut motoriser 200 v\u00e9los \u00e9lectriques. A l'heure de la rar\u00e9faction des ressources ce d\u00e9bat l\u00e0 est aussi essentiel." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7008343783176044544,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7008343783905845248,urn:li:activity:7008343783905845248,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7008343783905845248,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7008343783905845248,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7008343783905845248", + "threadId": "activity:7008343783905845248", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008343783905845248", + "urn": "urn:li:activity:7008343783905845248", + "numComments": 157, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7008343783905845248", + "reactionTypeCounts": [ + { + "count": 1362, + "reactionType": "LIKE" + }, + { + "count": 145, + "reactionType": "INTEREST" + }, + { + "count": 120, + "reactionType": "MAYBE" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7008343783905845248", + "numLikes": 1661, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008343783905845248", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1662, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7008083556673454080", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7008083556673454080)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7008083556673454080)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_invitation-pr%C3%A9sentation-du-rapport-final-activity-7008083556673454080-UFEY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7008083553888423936", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7008083556673454080", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7008083553888423936", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "J0l5Ou3WFN7nIPbOE0qPgg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8690400836592023625", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675988383003?e=1677240000&v=beta&t=ReMEKvevyyAsuLACCgt_7UcLd0pqcGdk1VM7jlh4fLw", + "expiresAt": 1677240000000, + "height": 354 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675988383003?e=1677240000&v=beta&t=rurrLnPvTFcc8tiOTITy2TG6vjXHkkWLQiG_PAZ_1VE", + "expiresAt": 1677240000000, + "height": 361 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675988383004?e=1677240000&v=beta&t=FnuXXdV0Xh0kMWeLs8hXdrenRtvWBYbLTsNkWGZCp9c", + "expiresAt": 1677240000000, + "height": 70 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675988383004?e=1677240000&v=beta&t=9u9tRHXiqsz558OQvTbhG0bzOXi1Wr0WzdmQ0FgqgTM", + "expiresAt": 1677240000000, + "height": 212 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGH-5n4VmAywA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8690400836592023625)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8690400836592023625)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [INVITATION] Pr\u00e9sentation du rapport final \u00ab ClimatSup Finance \u2013 Former pour une finance au service de la transition \u00bb (15 DECEMBRE) - The Shift Project by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-presentation-du-rapport-final-climatsupfinance-15-decembre/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[INVITATION] Pr\u00e9sentation du rapport final \u00ab ClimatSup Finance \u2013\u00a0Former pour une finance au service de la transition \u00bb (15 DECEMBRE) - The Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pourra-t-on un jour avoir une finance \"verte\" ? Un jour viendra peut-\u00eatre o\u00f9 nous aurons le graal d'une performance environnementale et d'une performance financi\u00e8re allant de pair. A ce moment l\u00e0, les financiers pourront faire l'esprit tranquille ce qui est leur m\u00e9tier habituel : maximiser le rendement des capitaux investis pour un risque donn\u00e9, puisque par construction cela minimisera \u00e0 l'occasion le risque environnemental. \n\nPour en arriver l\u00e0, il faut cependant une petite condition aux limites : que l'ensemble des contraintes applicables aux entreprises les poussent dans une direction telle que ce qui est le meilleur pour l'environnement est aussi le plus rentable pour elles (ou le moins \"moins rentable\" !).\n\nMais pour le moment cette convergence n'est pas l\u00e0, comme le rappelle un article r\u00e9cent des Echos (https://lnkd.in/e4BJit5P ), et il est donc n\u00e9cessaire de donner aux acteurs du monde financier les outils et m\u00e9thodes pour arbitrer entre les deux.\n\nLe financier \"de base\" doit donc regarder s\u00e9par\u00e9ment \u00e9conomie et environnement pour savoir si les deux sont raccord ou pas. Cela signifie qu'il ou elle doit comprendre \u00e0 peu pr\u00e8s il retourne quand il est question d'environnement, et plus particuli\u00e8rement de climat et de ressources \u00e9nerg\u00e9tiques.\n\nRemontons d'un cran : pour que notre financier(e) ait les bases en mati\u00e8re d'\u00e9nergie et de climat, il faut bien qu'il ou elle les ait apprises un jour. Il faut aussi qu'il ou elle n'apprenne pas, ou ne \"conserve\" pas, en mati\u00e8re de finance ou d'\u00e9conomie, des choses qui pr\u00e9supposent que les limites plan\u00e9taires n'existent pas. \n\nAdmettons que notre futur(e) financier(e) soit encore en train de suivre sa formation initiale. A ce moment la question devient : que doit-on apprendre, et ne pas apprendre (ou d\u00e9sapprendre !), pour faire converger la logique du secteur et la pr\u00e9servation de l'environnement ?\n\nApr\u00e8s les ing\u00e9nieurs et les gestionnaires, The Shift Project s'attaque \u00e0 cette question de la formation initiale du sup\u00e9rieur pour les futurs salari\u00e9s de ce secteur (on appr\u00e9ciera la gradation de la difficult\u00e9 !), et vous propose, le Jeudi 15 d\u00e9cembre, un webinaire de pr\u00e9sentation de nos travaux sur le sujet.\n\nCela n'\u00e9puise pas le sujet de la formation, puisque les personnes d\u00e9j\u00e0 en activit\u00e9 ne peuvent plus, par la force des choses, retrouver leurs 20 ans et redevenir \u00e9tudiantes. Esp\u00e9rons que nos suggestions, qui incluent le corpus de connaissances de base sur l'environnement qu'il faut absolument avoir acquises pour \u00eatre pertinent sur le sujet, infuseront aussi tr\u00e8s vite la formation continue !\n\nProgramme et modalit\u00e9s d'inscription ci-dessous." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7008083556673454080,urn:li:activity:7008083556673454080,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 67, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7008083556673454080,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7008083556673454080,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7008083556673454080", + "threadId": "activity:7008083556673454080", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008083556673454080", + "urn": "urn:li:activity:7008083556673454080", + "numComments": 91, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7008083556673454080", + "reactionTypeCounts": [ + { + "count": 852, + "reactionType": "LIKE" + }, + { + "count": 46, + "reactionType": "INTEREST" + }, + { + "count": 43, + "reactionType": "PRAISE" + }, + { + "count": 36, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7008083556673454080", + "numLikes": 996, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008083556673454080", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 998, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7007679410803744768", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7007679410803744768)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7007679410803744768)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_commission-denqu%C3%AAte-%C3%A0-lassembl%C3%A9e-s%C3%A9gol%C3%A8ne-activity-7007679410803744768-JvER?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7007679409943924736", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7007679410803744768", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7007679409943924736", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "9Srp+C+jtpVNsiSfSo7sOA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8349937802885585333", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 790, + "fileIdentifyingUrlPathSegment": "800/0/1676197050742?e=1677240000&v=beta&t=O_WtHaUy3WUrnNDpTDfeZFJg9zzh6r74HRIknZOTmZw", + "expiresAt": 1677240000000, + "height": 498 + }, + { + "width": 790, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676197050742?e=1677240000&v=beta&t=b0Ze7caMO2lDPOAhTgyuEH5zyEU1lFC6VbRjT4VWBxs", + "expiresAt": 1677240000000, + "height": 498 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676197050742?e=1677240000&v=beta&t=D4ws-1WJ0LmLdAu4I_Fh3E_e9GS7kwRbfUFIbOtNpBY", + "expiresAt": 1677240000000, + "height": 100 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676197050742?e=1677240000&v=beta&t=J9xdjlCDCsI4zu8wwHjwkDUUF2EWUPdg7tm2L-kcK1w", + "expiresAt": 1677240000000, + "height": 302 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGn7WzLuyUAwQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.6303797468354431 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8349937802885585333)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8349937802885585333)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "marianne.net \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Commission d\u2019enqu\u00eate \u00e0 l'Assembl\u00e9e\u2009: S\u00e9gol\u00e8ne Royal attendue de pied ferme sur le plafonnement du nucl\u00e9aire by marianne.net", + "actionTarget": "https://www.marianne.net/politique/petites-indiscretions-grosses-revelations/commission-denquete-a-lassemblee-segolene-royal-attendue-de-pied-ferme-sur-le-plafonnement-du-nucleaire" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Commission d\u2019enqu\u00eate \u00e0 l'Assembl\u00e9e\u2009: S\u00e9gol\u00e8ne Royal attendue de pied ferme sur le plafonnement du nucl\u00e9aire" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Commission d'enqu\u00eate \"visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\", devant laquelle j'ai \u00e9t\u00e9 auditionn\u00e9 (https://bit.ly/3FHL0BV ), va passer \u00e0 ce qui \u00e9tait probablement son objectif premier depuis le d\u00e9but : nommer des \"responsables\" \u00e0 la situation difficile dans laquelle nous sommes, pr\u00e9f\u00e9rentiellement des adversaires politiques de l'initiateur :). \n\nCe n'est pas la premi\u00e8re fois que je le constate : j'ai \u00e9t\u00e9 convoqu\u00e9 par deux autres Commissions d'enqu\u00eate du Parlement :\n- une sur \"l'impact \u00e9conomique, industriel et environnemental des \u00e9nergies renouvelables, sur la transparence des financements et sur l'acceptabilit\u00e9 sociale des politiques de transition \u00e9nerg\u00e9tique\" pilot\u00e9e par un d\u00e9put\u00e9 LR : https://bit.ly/3iSJ9kV\n- une sur le \"co\u00fbt r\u00e9el de l'\u00e9lectricit\u00e9 afin d'en d\u00e9terminer l'imputation aux diff\u00e9rents agents \u00e9conomiques\" demand\u00e9 par un s\u00e9nateur Vert : https://bit.ly/3PjgRw3\n\nA chaque fois un des buts \u00e9tait bien \"d'\u00e9pingler\" des adversaires politiques, au motif qu'ils avaient d\u00e9cid\u00e9 d'actions contraires \u00e0 la conviction du parlementaire qui d\u00e9clenchait la Commission.\n\nCela n'emp\u00eache \u00e9videmment pas d'apprendre des choses int\u00e9ressantes pour qui prend le temps d'\u00e9couter les auditions ou de lire les rapports, et c'est bien en entrant dans ce niveau de d\u00e9tail que l'on peut profiter de ces travaux. La partie \"tribunal pour politiques\" n'est qu'une partie \u00e9merg\u00e9e - et pas la plus int\u00e9ressante - de l'iceberg, sauf \u00e0 permettre \u00e0 l'ensemble de la classe politique de devenir plus adulte ensuite, et ce n'est pas garanti !\n\nA l'\u00e9vidence, fermer Fessenheim a priv\u00e9 le pays d'une production \u00e9lectrique bas carbone qui serait pr\u00e9cieuse aujourd'hui. Mais qui en est responsable ? Royal parce qu'elle a sign\u00e9 le d\u00e9cret ? Hollande parce qu'il a pris cet engagement dans la campagne ? Macron parce qu'il n'est pas revenu dessus alors qu'il le pouvait ? La presse qui a longtemps et majoritairement pr\u00e9sent\u00e9 le nucl\u00e9aire comme bien plus dangereux que ses alternatives et facile \u00e0 remplacer sans trop se demander si l'argumentation \u00e9tait factuellement solide ? Jospin qui a donn\u00e9 le coup d'envoi de 20 ans de nucl\u00e9aire honteux ? Les experts techniques qui n'ont pas su faire la p\u00e9dagogie des seuls faits ? L'Education Nationale qui a laiss\u00e9 circuler des manuels scolaires contenant des contre-v\u00e9rit\u00e9s ? L'Allemagne qui a fait tout ce qu'elle a pu pour faire \u00e9merger des r\u00e8gles europ\u00e9ennes d\u00e9favorables au nucl\u00e9aire et nous jeter dans les bras des russes ?\n\nClouer Royal au pilori ne nous aidera que peu \u00e0 mieux r\u00e9fl\u00e9chir \u00e0 l'avenir. Plus que des noms, notre premier objet d'attention doit \u00eatre l'ad\u00e9quation entre processus de d\u00e9cision et probl\u00e8me \u00e0 traiter. Ce sont les m\u00e9canismes structurels \u00e0 l'oeuvre (cadre de march\u00e9, partage des faits, horizon temporel de l'action), qu'il faut examiner et \u00e9ventuellement corriger. C'est moins spectaculaire que de conspuer un individu (m\u00eame peu sympathique), mais bien plus fondamental." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7007679410803744768,urn:li:activity:7007679410803744768,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 361, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7007679410803744768,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7007679410803744768,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7007679410803744768", + "threadId": "activity:7007679410803744768", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007679410803744768", + "urn": "urn:li:activity:7007679410803744768", + "numComments": 602, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7007679410803744768", + "reactionTypeCounts": [ + { + "count": 5801, + "reactionType": "LIKE" + }, + { + "count": 485, + "reactionType": "PRAISE" + }, + { + "count": 479, + "reactionType": "MAYBE" + }, + { + "count": 228, + "reactionType": "INTEREST" + }, + { + "count": 73, + "reactionType": "APPRECIATION" + }, + { + "count": 45, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7007679410803744768", + "numLikes": 7111, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007679410803744768", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7121, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7007412643036545024", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7007412643036545024)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7007412643036545024)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_20000-personnes-dans-30-pays-tel-est-l%C3%A9chantillon-activity-7007412643036545024-0Ki9?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7007412642214477824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7007412643036545024", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7007412642214477824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "grHik0Dpu2zBJnF2pIKSDA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:D4E22AQH31vNWmrMYug", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:D4E22AQH31vNWmrMYug", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1670697363822?e=1679529600&v=beta&t=zmTNjSjxr3_vTJ_uOrLsA--1bVz588PceyOI2GaKpoI", + "expiresAt": 1679529600000, + "height": 1154 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1670697364338?e=1679529600&v=beta&t=IfTiXei25O-1j0490HkrfXY-37CMTDeEMtVTQXPDXDs", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1670697364338?e=1679529600&v=beta&t=05adXSL3Lq0cbJ7xzElsh3pqfmZDDMTYOW-ximE-YTo", + "expiresAt": 1679529600000, + "height": 721 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1670697364338?e=1679529600&v=beta&t=XoLjmGdSr1jRfegFJGk-wgemCLpCoRQfyGmxRZtQC_0", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1670697364338?e=1679529600&v=beta&t=PWOpQGDt2HDlAFTQAI364kjjrYLkbw-KCPDvtXxczT4", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1670697364338?e=1679529600&v=beta&t=8OTZHo0DVEHC_naKX_nFhTyWxwf-5VsVlW41RyOzIoI", + "expiresAt": 1679529600000, + "height": 451 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E22AQH31vNWmrMYug/feedshare-shrink_" + }, + "displayAspectRatio": 0.5634765625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "20.000 personnes dans 30 pays : tel est l'\u00e9chantillon dont Ipsos a sond\u00e9 d\u00e9but septembre les coeurs et les reins pour avoir des avis sur un certain nombre de sujets concernant l'environnement et l'\u00e9nergie.\n\nLe rapport complet propose 100 pages de tableaux de chiffres : https://bit.ly/3W8qaB0 Id\u00e9alement il faut tout lire (et ne pas juste lire les enseignements - disponibles sur https://bit.ly/3HqkBKn) pour se faire sa propre id\u00e9e. \n\nL'environnement c'est important, mais la hausse du cout de la vie l'est un peu plus dans tous les pays... sauf un : l'Inde, o\u00f9 la hi\u00e9rarchie est inverse.\n\nLa Chine est le pays o\u00f9 il y a le plus fort taux de r\u00e9pondants consid\u00e9rant que la situation environnementale y est bonne ou tr\u00e8s bonne (chacun peut voir midi \u00e0 sa porte !). La Cor\u00e9e du Sud et l'Espagne sont les pays de l'autre extr\u00e9mit\u00e9 du spectre.\n\nLe pays le plus climatosceptique de l'\u00e9chantillon est l'Arabie Saoudite, suivie juste apr\u00e8s par les USA puis la Russie. En Europe c'est la Norv\u00e8ge. Il y aurait comme un lien entre le climatoscepticisme et l'importance des hydrocarbures dans l'\u00e9conomie domestique :) (en Norv\u00e8ge il y a en plus une majorit\u00e9 qui consid\u00e8re que le r\u00e9chauffement est globalement neutre ou positif pour le pays).\n\nSur un sujet qui concerne plus directement EDF, dans l'essentiel des pays sond\u00e9s le nucl\u00e9aire est majoritairement vu comme une source significative de gaz \u00e0 effet de serre (alors que pour l'agriculture ou le digital seule une minorit\u00e9 l'affirme), ce qui n'emp\u00eache pas le soutien (dans une autre question) du remplacement des centrales \u00e0 combustibles fossiles par du nucl\u00e9aire !\n\nLes br\u00e9siliens et indon\u00e9siens pr\u00e9f\u00e8rent m\u00eame le charbon au nucl\u00e9aire, et pr\u00e9f\u00e8rent remplacer le charbon par du gaz plut\u00f4t que par du nucl\u00e9aire. Ils sont loin de Poutine ! Les chinois sont les plus favorables au nucl\u00e9aire et les colombiens le moins. Toutes les populations sont favorables au solaire et \u00e0 l'\u00e9olien.\n\nCe sont les japonais les plus s\u00e9v\u00e8res avec leurs responsables politiques (qui sont vus comme tr\u00e8s peu actifs) et les chinois les plus laudatifs. C'est aussi en Chine qu'il y a la plus grande fraction de la population qui consid\u00e8re que leur pays est dans le peloton de t\u00eate des efforts contre le changement climatique.\n\nCe sont les turcs les plus nombreux \u00e0 vouloir que l'on privil\u00e9gie l'environnement sur la croissance (65% vs 25%). Mais ce sont les chinois les plus persuad\u00e9s que leur pays va donner la priorit\u00e9 \u00e0 l'environnement dans un avenir proche m\u00eame si cela nuit \u00e0 la croissance !\n\nA la fin de l'enqu\u00eate sont test\u00e9es les acceptabilit\u00e9s d'un certain nombre de mesures. Sans grande surprise, tout ce qui est taxes et limitations est bien moins accept\u00e9 que le d\u00e9veloppement (gratuit on suppose !) des \u00e9nergies bas carbone (y compris le nucl\u00e9aire).\n\nEvidemment on sort de cette avalanche de chiffres en voyant bien des contradictions dans les r\u00e9ponses. Mais on y voir aussi des indications utiles pour que certaines actions de sobri\u00e9t\u00e9 soient d'ores et d\u00e9j\u00e0 men\u00e9es." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7007412643036545024,urn:li:activity:7007412643036545024,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7007412643036545024,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7007412643036545024,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7007412643036545024", + "threadId": "activity:7007412643036545024", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007412643036545024", + "urn": "urn:li:activity:7007412643036545024", + "numComments": 73, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7007412643036545024", + "reactionTypeCounts": [ + { + "count": 959, + "reactionType": "LIKE" + }, + { + "count": 200, + "reactionType": "INTEREST" + }, + { + "count": 151, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7007412643036545024", + "numLikes": 1325, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007412643036545024", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1328, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7006908707229868032", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7006908707229868032)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7006908707229868032)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_towards-biodiversity-certificates-proposal-activity-7006908707229868032-3yZz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7006908706328059904", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7006908707229868032", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7006908706328059904", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "p6exXpaxs74fK4i72jH/XQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8922422006420302619", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676537279279?e=1677240000&v=beta&t=nkvYMTkiYvQtKgNmOqCxXjas49T8ChIQjNcieIMVqUE", + "expiresAt": 1677240000000, + "height": 1200 + }, + { + "width": 533, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676537279279?e=1677240000&v=beta&t=6t05O6Iuxu5cZrsHqfUwJExkxn0miT43WNrBjVR1jkw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676537279280?e=1677240000&v=beta&t=ep-qrTU6nSdV0htS9ThL304-U9WU-ybnfXZL7kHGDSI", + "expiresAt": 1677240000000, + "height": 240 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676537279280?e=1677240000&v=beta&t=ATczr6KiocZ-83euiNdo21P-3q0I-PkeFwFjNyBLWHU", + "expiresAt": 1677240000000, + "height": 720 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFDIWdEacXhUg/articleshare-shrink_" + }, + "displayAspectRatio": 1.5 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8922422006420302619)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8922422006420302619)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Towards biodiversity certificates: proposal for a methodological framework | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-biodiversity-certificates-obc" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Towards biodiversity certificates: proposal for a methodological framework | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7006908706328059904,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis sa cr\u00e9ation, Carbone 4 s'est historiquement int\u00e9ress\u00e9 au carbone fossile, celui des combustibles \u00e9ponymes. Mais il y a aussi du carbone \"vivant\" : la biodiversit\u00e9. Nous avons d\u00e9cid\u00e9, il y a un peu plus d'un an, de nous lancer aussi dans cette direction l\u00e0. \n\nPour chaque nouveau domaine ou secteur, notre mani\u00e8re de faire est toujours la m\u00eame : nous commen\u00e7ons par nous creuser un peu la cervelle pour savoir ce que nous pourrions apporter d'utile et de nouveau en mati\u00e8re de m\u00e9thodes. Et la m\u00e9thode qui d\u00e9coule de notre r\u00e9flexion est g\u00e9n\u00e9ralement rendue disponible en acc\u00e8s libre.\n\nLa comptabilit\u00e9 carbone pratiqu\u00e9e par Carbone 4 est ainsi venue apr\u00e8s la cr\u00e9ation du Bilan Carbone. Notre approche de la neutralit\u00e9 apr\u00e8s la mise au point de Net Zero Initiative (https://bit.ly/3uAeYl1 ). Les \u00e9tudes de r\u00e9silience d'une activit\u00e9 face aux risques physiques du changement climatique apr\u00e8s la mise au point d'Ocara (https://bit.ly/3W6LpTI ). La notation carbone d'une entreprise apr\u00e8s la mise au point de CIA (https://bit.ly/3FCFIYh ) et de CRIS (https://bit.ly/3F7CTNq). L'alignement (= la \"compatibilit\u00e9\") d'une infrastructure avec une trajectoire 2\u00b0C sur les \u00e9missions apr\u00e8s la mise au point de CIARA (https://lnkd.in/dAMBzut).\n\nEt, dans cette m\u00eame veine, nos premiers pas dans la biodiversit\u00e9 ont concern\u00e9 la cr\u00e9ation de m\u00e9thodes dont nous esp\u00e9rons qu'elles \"am\u00e8nent quelque chose\" \u00e0 la prise en compte de ces enjeux dans l'activit\u00e9 \u00e9conomique.\n\nLa premi\u00e8re brique a \u00e9t\u00e9 Biodiversity Impact Analytics (https://bit.ly/3iMwdwQ ), d\u00e9velopp\u00e9 en partenariat avec la CDC Biodiversit\u00e9, et qui permet de \"noter\" les titres (actions ou obligations) d'une entreprise (c'est donc une m\u00e9thode destin\u00e9e au secteur financier). \n\nNous venons d'en publier une deuxi\u00e8me, portant sur des \"certificats biodiversit\u00e9\". De quoi s'agit-il ? De fournir une r\u00e9ponse \u00e0 la question suivante : comment compter le b\u00e9n\u00e9fice associ\u00e9 \u00e0 une action qui vise \u00e0 restaurer de la biodiversit\u00e9, ou \u00e0 emp\u00eacher sa d\u00e9gradation ? En effet, si l'on veut attirer des moyens dans la pr\u00e9servation ou la restauration de la biodiversit\u00e9, il faut pouvoir comparer des alternatives entre elles pour savoir o\u00f9 ces moyens seront le plus utiles. Mais cela soul\u00e8ve de multiples questions.\n\nComment \u00e9valuer des gains biodiversit\u00e9 alors que la nature est souvent consid\u00e9r\u00e9e comme \u00e9tant trop complexe pour \u00eatre mesur\u00e9e ? Peut-on d\u00e9velopper une m\u00e9thodologie universelle, robuste et facile \u00e0 mettre en \u0153uvre sur le terrain ? Comment d\u00e9passer la logique de compensation, dont on a vu les effets pervers en mati\u00e8re de climat ? Quelle doit \u00eatre la place des certificats dans la strat\u00e9gie biodiversit\u00e9 des entreprises ?\n\nCarbone 4 et le Mus\u00e9um national d'Histoire Naturelle ont con\u00e7u un cadre m\u00e9thodologique pour tenter de r\u00e9pondre \u00e0 ces questions, que nous proposons aux personnes int\u00e9ress\u00e9es de d\u00e9couvrir et de commenter. Ce n'est bien \u00e9videmment qu'une premi\u00e8re \u00e9tape, mais il faut bien commencer un jour !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7006908706328059904,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7006908707229868032,urn:li:activity:7006908707229868032,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 57, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7006908707229868032,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7006908707229868032,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7006908707229868032", + "threadId": "activity:7006908707229868032", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006908707229868032", + "urn": "urn:li:activity:7006908707229868032", + "numComments": 67, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7006908707229868032", + "reactionTypeCounts": [ + { + "count": 837, + "reactionType": "LIKE" + }, + { + "count": 91, + "reactionType": "PRAISE" + }, + { + "count": 61, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7006908707229868032", + "numLikes": 1056, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006908707229868032", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1056, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7006525348163014657", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7006525348163014657)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7006525348163014657)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-sncf-va-prendre-en-compte-le-prix-du-carbone-activity-7006525348163014657-mGx3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7006525347370262528", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7006525348163014657", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7006525347370262528", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "5XbF8j34kCrjIa0hBfzCFg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8044829150830183589", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 707, + "fileIdentifyingUrlPathSegment": "800/0/1675756968260?e=1677240000&v=beta&t=dDULs5A-OGmmE8q6SF99MJZaU0i2NBSf7yhvZ5cDKxM", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 707, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675756968260?e=1677240000&v=beta&t=hZOe8YUAltR-q-9DHfvqre1xQ482HhOzViAFypoXIGI", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675756968260?e=1677240000&v=beta&t=b9p1mn0UC3RflK4w0-NxWLXt5joF4BwPQyYVObaJB-4", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675756968260?e=1677240000&v=beta&t=9iVJK7iH0CPqRBo9HecIFj2qq9m0pOJQcI6a9Ewn-EI", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHOtXbNvsBx1Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.6661951909476662 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8044829150830183589)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8044829150830183589)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "novethic.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La SNCF va prendre en compte le prix du carbone dans ses appels d'offres by novethic.fr", + "actionTarget": "https://www.novethic.fr/actualite/entreprise-responsable/isr-rse/la-sncf-va-prendre-en-compte-le-prix-du-carbone-dans-ses-appels-d-offre-151217.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La SNCF va prendre en compte le prix du carbone dans ses appels d'offres" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 778, + "length": 17, + "miniProfile": { + "firstName": "Mika\u00ebl", + "lastName": "Lemarchand", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAB0vwQBlSktLEmYdTdyOGWrd7KRp7YnXkA", + "occupation": "Chief Sustainability Officer / Directeur de l'engagement social, territorial et environnemental. Directeur du Projet d'entreprise. Membre du COMEX.Vice-Pr\u00e9sident de la Fondation SNCF.", + "objectUrn": "urn:li:member:7651076", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAB0vwQBlSktLEmYdTdyOGWrd7KRp7YnXkA", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1617166213063?e=1681948800&v=beta&t=jkSa3vunXUPrGO39bw6CGVf_v2pQd-Q5FRKsdozekuc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1617166213063?e=1681948800&v=beta&t=oRxuYz4FxnQKUlzDZpQVL2c4cZ_NjTOoMe3Jdu1ZL2c", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQEQY-jW4ws5jg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "mika\u00ebl-lemarchand", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516278647887?e=1681948800&v=beta&t=E-hMUmZP67EMWIr_OWJg3zxR-zaGh92f239kNzlW6gc", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516278647887?e=1681948800&v=beta&t=rzujsePk5rgQmqZj3-itViw7U7eYCbWv1ozx46StTRo", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516278647887?e=1681948800&v=beta&t=jZz18hYdaIzdGh4SVmhKExX3cfjIZ3ETaMTx5JKHGNA", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516278647887?e=1681948800&v=beta&t=JrI_z5CqwwKYbpkfuWhpTWepa_NIVw6yoQwBOQ1kvTY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHo0SxCAyGx4g/profile-displayphoto-shrink_" + } + }, + "trackingId": "M4/wBNg1QMm2GNiweXP8VA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "On n'en attendait pas moins de la soci\u00e9t\u00e9 qui \"h\u00e9berge\" l'un des auteurs de la commission qui a fix\u00e9 une trajectoire de prix pour la \"valeur tut\u00e9laire du carbone\" (Alain Quinet) : la SNCF a annonc\u00e9 qu'elle allait introduire un \"prix du carbone\" dans ses achats.\n\nLe m\u00e9canisme pr\u00e9cis n'est pas d\u00e9taill\u00e9 dans cet article de Novethic (et pas plus dans les autres articles qui sont disponibles dans l'espace public), mais, \"vu de Mars\" (pardon Elon, on t'emprunte ta future r\u00e9sidence secondaire), j'imagine qu'il s'agit de recalculer des prix en ajoutant \u00e0 l'offre en euros un montant correspondant au contenu carbone de l'offre (fourni ou d\u00e9duit du bilan carbone du fournisseur) multipli\u00e9 par le prix de la tonne de carbone (si ce n'est pas ce m\u00e9canisme, il serait int\u00e9ressant que Mika\u00ebl Lemarchand pr\u00e9cise en commentaire quelle proc\u00e9dure sera utilis\u00e9e).\n\nDans le monde des soci\u00e9t\u00e9s marchandes, seule la contrainte fait avancer les entreprises commerciales \u00e0 la bonne vitesse. La contrainte peut venir de la r\u00e9glementation, des clients, des ressources humaines (les \"ressources rares\" qui ont le choix de leur employeur orientent un peu l'action de ces derniers)...\n\nQue le client mette une haie \u00e0 franchir qui s'appelle le carbone va donc dans le bon sens. Accessoirement une partie des fournisseurs de la SNCF sont des soci\u00e9t\u00e9s importantes (de travaux publics, de mat\u00e9riel roulant ou fixe, etc) qui seront soumises \u00e0 l'obligation de publier un bilan carbone au titre de la nouvelle r\u00e9glementation europ\u00e9enne CSRD. \n\nUne des \"conditions aux limites\" qui fera de ce genre de mesure un acc\u00e9l\u00e9rateur de la d\u00e9carbonation s'appelle la formation. En effet, seule la formation large des salari\u00e9s permet de d\u00e9centraliser l'action et l'initiative de terrain apr\u00e8s avoir annonc\u00e9 une intention : sans cela, il faut garder une fonction centralis\u00e9e de d\u00e9cision et de contr\u00f4le qui g\u00e8re quasi-exclusivement le sujet et impose les r\u00e9sultats aux autres entit\u00e9s de l'entreprise, o\u00f9 il n'y aura alors que peu de capacit\u00e9 d'initiative ou de motivation (voire une franche r\u00e9sistance !).\n\nLa formation n'est \u00e9videmment jamais suffisante. Mais c'est une condition n\u00e9cessaire pour que les \"d\u00e9cisions intelligentes\" (et mettre le carbone dans la relation client-fournisseur en est une) produisent leurs pleins effets." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7006525348163014657,urn:li:activity:7006525348163014657,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 57, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7006525348163014657,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7006525348163014657,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7006525348163014657", + "threadId": "activity:7006525348163014657", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006525348163014657", + "urn": "urn:li:activity:7006525348163014657", + "numComments": 99, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7006525348163014657", + "reactionTypeCounts": [ + { + "count": 1501, + "reactionType": "LIKE" + }, + { + "count": 111, + "reactionType": "MAYBE" + }, + { + "count": 102, + "reactionType": "INTEREST" + }, + { + "count": 68, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7006525348163014657", + "numLikes": 1802, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006525348163014657", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1802, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7006225119303880704", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7006225119303880704)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7006225119303880704)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_quand-bien-m%C3%AAme-il-ny-aurait-pas-eu-de-guerre-activity-7006225119303880704-Sq4T?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7006225118406279168", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7006225119303880704", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7006225118406279168", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "vsJa1vy5Tq020aodqAkRDw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQG6NenqEshWWg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQG6NenqEshWWg", + "artifacts": [ + { + "width": 1434, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1670414236027?e=1679529600&v=beta&t=XYTghidqbyL_wu7UqAS8vAC1beSuWqQGwARUlVh6NI4", + "expiresAt": 1679529600000, + "height": 998 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1670414236066?e=1679529600&v=beta&t=dq7Farb1DEDJrG6ilDNTFyfnzef2hGlRu1W4n3KnZJ4", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1670414236066?e=1679529600&v=beta&t=CQCjBitZpuvmLtkI6WD_7F0b87M4Z4wUQaR_Po3KTp4", + "expiresAt": 1679529600000, + "height": 890 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1670414236066?e=1679529600&v=beta&t=9SKVjRY357GgI5XUyY7Do6xsobej1jZdXom98IFf83I", + "expiresAt": 1679529600000, + "height": 334 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1670414236066?e=1679529600&v=beta&t=CBhvRNmhCBvaIaxbtZ68wBwmjv-KdjBXm19d4RxO7rY", + "expiresAt": 1679529600000, + "height": 111 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1670414236066?e=1679529600&v=beta&t=4fKQQzbwmOtG-ebkq5cdec_g7k9uBz9zN3JCj6BMzh8", + "expiresAt": 1679529600000, + "height": 556 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQG6NenqEshWWg/feedshare-shrink_" + }, + "displayAspectRatio": 0.6959553695955369 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, surface chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7006225118406279168,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quand bien m\u00eame il n'y aurait pas eu de guerre en Ukraine, notre continent allait de toute fa\u00e7on devoir faire face \u00e0 une baisse \"physique\" de la possibilit\u00e9 d'importer du gaz \u00e0 l'avenir. Bien \u00e9videmment, nos d\u00e9m\u00eal\u00e9s avec un pays qui fournissait, avant conflit, 40% du gaz consomm\u00e9 dans l'Union, agissent comme un acc\u00e9l\u00e9rateur, mais le coup \u00e9tait parti. \n\nTelle est la conclusion \u00e0 laquelle nous parvenons au Shift Project, \u00e0 l'issue d'une analyse portant sur les possibilit\u00e9s d'approvisionnement en gaz de l'Union Europ\u00e9enne sous seule contrainte g\u00e9ologico-technique (on ne prend donc en consid\u00e9ration comme facteurs limitants que le contenu des gisements et la capacit\u00e9 \u00e0 faire des infrastructures d'extraction et de transport) : https://bit.ly/3HhowJ7\n\nCe travail - soutenu financi\u00e8rement par le Minist\u00e8re des Arm\u00e9es, RTE et le BRGM - a \u00e9t\u00e9 men\u00e9 avec comme mati\u00e8re premi\u00e8re l'inventaire de la totalit\u00e9 des gisements mondiaux (y compris ceux restant \u00e0 d\u00e9couvrir) fourni par Rystad Energy, ainsi que les les perspectives de production par gisement, ou encore les contrats d\u00e9j\u00e0 pass\u00e9s en GNL pour chaque pays importateur et chaque pays producteur. \n\nLe graphique ci-dessous r\u00e9sume notre analyse. Il fournit les divers approvisionnements identifi\u00e9s (via gazoducs ou via contrats pour le GNL) pour l'Europe, ainsi que divers niveaux de consommation possibles :\n- la courbe orange est du \"tendanciel avec \u00e9conomies\"\n- la croix jaune est le point d'arriv\u00e9e en 2030 dans le sc\u00e9nario \"Fit for 55\"\n- la croix rouge est le point d'arriv\u00e9e dans \"Repower EU\" (https://bit.ly/3VUBy3s )\n\nOn voit facilement que la situation que nous allons vivre cette hiver ne devrait pas \u00eatre suivie d'un \"retour \u00e0 la normale\" sur les approvisionnements (et il se discute de savoir ce qu'est \"la normale\" quand la consommation de gaz devrait de toute fa\u00e7on baisser tr\u00e8s rapidement pour des raisons de climat !). \n\nPour remplacer les importations qui n'ont plus lieu par gazoduc il faut recourir au GNL, sur lequel nous sommes en concurrence croissante avec les pays asiatiques, et il n'y en aura pas pour tout le monde. En outre le pic mondial sur la production gazi\u00e8re (sous seule contrainte g\u00e9ologique) est attendu aux alentours de 2030 avec les donn\u00e9es fournies par Rystad. \n\nClimat ou pas, Ukraine ou pas, le coup \u00e9tait aussi parti sur le p\u00e9trole (https://bit.ly/3F7Ty3y ). Rappelons que le charbon est aussi en baisse subie depuis les ann\u00e9es 1950 (car les mines europ\u00e9ennes sont de plus en plus vides et le commerce international de ce pond\u00e9reux solide n'est pas si simple). \n\nQuand bien m\u00eame nous ne voudrions pas faire d'efforts parce que l'UE ce n'est que 10% des \u00e9missions, que les am\u00e9ricains ont une empreinte carbone individuelle 2 fois plus \u00e9lev\u00e9e que la n\u00f4tre, etc, nous allons devoir d\u00e9carboner de toute fa\u00e7on. Il est plus qu'urgent de comprendre que nous sommes au d\u00e9but d'une \u00e9volution structurelle, et pas dans un accident de parcours." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7006225118406279168,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7006225119303880704,urn:li:activity:7006225119303880704,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 73, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7006225119303880704,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7006225119303880704,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7006225119303880704", + "threadId": "activity:7006225119303880704", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006225119303880704", + "urn": "urn:li:activity:7006225119303880704", + "numComments": 185, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7006225119303880704", + "reactionTypeCounts": [ + { + "count": 2527, + "reactionType": "LIKE" + }, + { + "count": 499, + "reactionType": "INTEREST" + }, + { + "count": 304, + "reactionType": "MAYBE" + }, + { + "count": 59, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7006225119303880704", + "numLikes": 3405, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006225119303880704", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3406, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7005825581208477696", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7005825581208477696)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7005825581208477696)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rising-prices-and-supply-chain-risks-threaten-activity-7005825581208477696-NdeL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7005825580357033984", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7005825581208477696", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7005825580357033984", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "tnT9puH414cOkTEdJeYNOA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7627523493011370695", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676381140655?e=1677240000&v=beta&t=_RGTkHmL1SVdUWS8tI4hjbr6ZhL3TAqLk0_xKz2XWoY", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 900, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676381140656?e=1677240000&v=beta&t=ivg2hhqJZOc3JK8837WeLQOoxLr9cmBsSDWJd_rMeMs", + "expiresAt": 1677240000000, + "height": 506 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676381140656?e=1677240000&v=beta&t=72umEvDSZ5SsdC4V4B7U4Oq7xR4Gv-vrLfYMsYPlUko", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676381140656?e=1677240000&v=beta&t=920ortEasOHTHAyvzkhbG3IlWR6x04vKngyFFCFYryw", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEeTs2pCdQnhw/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7627523493011370695)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7627523493011370695)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ft.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Rising prices and supply chain risks threaten Europe\u2019s renewable aims by ft.com", + "actionTarget": "https://www.ft.com/content/de817195-f21c-4055-ae0a-67430f20be1e" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Rising prices and supply chain risks threaten Europe\u2019s renewable aims" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7005825580357033984,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Alors m\u00eame que l'Etat fran\u00e7ais souhaite acc\u00e9l\u00e9rer sur les \u00e9nergies renouvelables (dont l'\u00e9olien et le solaire pour une large part), le contexte international fait ce qu'il peut pour contrarier ce plan, en rench\u00e9rissant fortement le cout des mati\u00e8res premi\u00e8res n\u00e9cessaires.\n\nLa raison ? C'est \"l'imbrication des \u00e9nergies\", \u00e9voqu\u00e9e par Jean-Baptiste Fressoz dans cette vid\u00e9o (et dans d'autres) qui date d'il y a quelques mois : https://lnkd.in/eWKNDxK9\n\nAujourd'hui, toutes les \u00e9nergies sont imbriqu\u00e9es les unes dans les autres. Il faut du charbon pour la m\u00e9tallurgie, du p\u00e9trole pour la chimie organique et les transports, et du gaz pour l'industrie et l'\u00e9lectricit\u00e9, et sans ces \u00e9nergies fossiles l'industrie mondialis\u00e9e est moins disponible, et donc le prix de n'importe quoi augmente... y compris celui des dispositifs de production \u00e0 base de vent et de soleil (et aussi le cout des composants pour le nucl\u00e9aire, bien s\u00fbr !).\n\nLes sc\u00e9narios \u00e9nerg\u00e9tiques que nous avons discut\u00e9s ces derni\u00e8res ann\u00e9es ignorent cette \u00e9ventualit\u00e9. Ils supposent que dans un monde se heurtant aux limites physiques nous conservons un cadre tranquille, sans accidents, sans p\u00e9nuries de mati\u00e8res premi\u00e8res, et sans disruptions des chaines mondialis\u00e9es qui permettent de s'approvisionner en tout et n'importe quoi \u00e0 prix sans cesse en baisse.\n\nIl y a donc une contradiction interne qui commence \u00e0 devenir visible : ces sc\u00e9narios supposent de garder le b\u00e9n\u00e9fice des combustibles fossiles (la formidable \"productivit\u00e9\" de l'\u00e9conomie) tout en se d\u00e9barrassant de ces m\u00eames combustibles. La traduction \u00e9conomique est des prix suppos\u00e9s rester bas pour les dispositifs ENR alors m\u00eame que ces ENR b\u00e9n\u00e9ficient de la productivit\u00e9 fossile.\n\nRTE a annonc\u00e9 publiquement il y a quelques mois avoir mis en chantier une variante de ses sc\u00e9narios appel\u00e9e \"mondialisation contrari\u00e9e\". Il est pertinent de penser les options possibles dans un monde o\u00f9 se procurer tout ce qui est lointain devient de plus en plus difficile, et o\u00f9 la productivit\u00e9 du travail (qui vient avant tout des machines, lesquelles sont avant tout nourries \u00e0 l'\u00e9nergie fossile, et qui sont pour une large part situ\u00e9es \u00e0 l'ext\u00e9rieur du pays) est structurellement orient\u00e9e \u00e0 la baisse et non \u00e0 la hausse.\n\nPour d\u00e9sagr\u00e9able que soit peut-\u00eatre un exercice de pens\u00e9e consistant \u00e0 imaginer que tout puisse aller de travers, il correspond \u00e0 une \u00e9volution possible du monde (car gouverner c'est pr\u00e9voir !). Il y a fort \u00e0 parier que dans un tel cadre :\n- aucune option n'apparait comme sans risque (le risque premier \u00e9tant de ne \"pas y arriver\" et donc d'avoir des p\u00e9nuries \u00e9lectriques chroniques, et les impacts sur le fonctionnement du pays qui vont avec)\n- la hi\u00e9rarchie des options sera bien plus diff\u00e9renci\u00e9e que dans le monde \"en croissance verte\" de tous les sc\u00e9narios d\u00e9j\u00e0 publi\u00e9s (y compris ceux de l'Ademe).\n\nNous n'avons qu'un seul essai pour b\u00e2tir le syst\u00e8me \u00e9nerg\u00e9tique d\u00e9carbon\u00e9 de 2100. Se tromper de plan est pour partie non rattrapable." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7005825580357033984,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7005825581208477696,urn:li:activity:7005825581208477696,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7005825581208477696,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7005825581208477696,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7005825581208477696", + "threadId": "activity:7005825581208477696", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005825581208477696", + "urn": "urn:li:activity:7005825581208477696", + "numComments": 66, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7005825581208477696", + "reactionTypeCounts": [ + { + "count": 658, + "reactionType": "LIKE" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 101, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7005825581208477696", + "numLikes": 881, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005825581208477696", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 882, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7005603227807186944", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7005603227807186944)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7005603227807186944)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_electricit%C3%A9-le-gouvernement-pr%C3%A9pare-les-activity-7005603227807186944-WEjO?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7005603226947313664", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7005603227807186944", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7005603226947313664", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "4V9KvbA+4imlqv3KYg1rog==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7579087810109670610", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676128670297?e=1677240000&v=beta&t=Zory4vDCcetQub6l2KKyzfgroswyc3HJSBv7opOD9I8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676128670297?e=1677240000&v=beta&t=g7MSRoOsUVT39Spfi_73bMIgIUjqbjLdB1Px3ALIo1Y", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676128670297?e=1677240000&v=beta&t=F9v2fqfgybn0VwfLorm7ALjKnxKFEJIGwC7IXKu8LxU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676128670297?e=1677240000&v=beta&t=mllRXWVw8agtKH0Asftn0fUMqIbe_WrfJQlhMjaNxsY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGLr3kXPRWv0w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7579087810109670610)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7579087810109670610)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Electricit\u00e9 : le gouvernement pr\u00e9pare les esprits aux coupures de courant by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/electricite-le-gouvernement-prepare-les-esprits-aux-coupures-de-courant-1884506" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Electricit\u00e9\u00a0: le gouvernement pr\u00e9pare les esprits aux coupures de courant" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7005603226947313664,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il aura fallu la menace de d\u00e9lestages en janvier pour que le pays se rappelle que toute notre soci\u00e9t\u00e9 moderne repose sur l'\u00e9lectricit\u00e9. De fait, sans \u00e9lectricit\u00e9, comment faire pour passer un coup de fil, accueillir les \u00e9l\u00e8ves \u00e0 l'\u00e9cole, conserver le lait au frais, maintenir une ligne de production, faire un retrait d'argent ou un virement, monter dans l'ascenseur, travailler n'importe o\u00f9 apr\u00e8s la tomb\u00e9e du jour ou dans un local sans fen\u00eatres, faire ses courses dans une grande surface (qui a besoin de lumi\u00e8re car il s'agit g\u00e9n\u00e9ralement d'un local borgne, et besoin de caisses enregistreuses), s'informer, ou faire avancer un train ? Il faut des \u00e9lectrons pour tout et partout aujourd'hui, y compris... pour apprendre qu'il n'y en aura peut-\u00eatre pas demain ! \n\nCe qui se discute actuellement, cependant, n'est pas comparable \u00e0 ce qui se passe dans Ravage de Barjavel (un roman bas\u00e9 sur la disparition instantan\u00e9e de l'\u00e9lectricit\u00e9 dans une civilisation \"avanc\u00e9e\", avec retour \u00e0 la barbarie) : il est juste question de possibles d\u00e9lestages de 2 heures, avec un seul d\u00e9lestage par client pour l'ensemble de l'hiver.\n\nMais \u00e0 quelque chose malheur est bon : esp\u00e9rons que cet \u00e9pisode, qui nous fait toucher du doigt que le risque d'un d\u00e9faut d'\u00e9lectricit\u00e9 par manque de moyens de production est possible, va nous inciter (et inciter les politiques) \u00e0 consacrer plus de temps et d'intelligence \u00e0 bien peser les risques dans le choix d'un sc\u00e9nario \u00e9lectrique pour l'avenir. \n\nActuellement, nous voyons un peu la trace des choix faits dans le pass\u00e9 (pas que, il y a aussi le nucl\u00e9aire en r\u00e9paration ou maintenance en France) : capacit\u00e9s nucl\u00e9aires d\u00e9lib\u00e9r\u00e9ment abandonn\u00e9es (Allemagne, en Belgique et en France), moindre disponibilit\u00e9 du gaz qui devait \"assurer la transition\", modes intermittents qui ne sont pas compl\u00e9t\u00e9s par du stockage. \n\nLa cons\u00e9quence est \"juste\" un recours accru au charbon alors que le plan \u00e9tait de s'en passer (les \u00e9missions instantan\u00e9es de l'\u00e9lectricit\u00e9 sont assez \u00e9lev\u00e9es \u00e0 l'heure o\u00f9 je tape ces lignes : https://lnkd.in/eRvA7w-a ), et \u00e9ventuellement un risque de quelques coupures courtes.\n\nMais le syst\u00e8me peut parfaitement devenir bien plus instable. Il suffit pour cela qu'il y ait de moins en moins de gaz \u00e0 l'avenir (rendez vous demain soir pour le savoir ! https://bit.ly/3h23tja ), pas plus de nucl\u00e9aire (ce qui sera le cas pour les 10 \u00e0 15 ans \u00e0 venir), pas beaucoup de capacit\u00e9s de stockage saisonnier (sans lesquels une hausse de l'\u00e9olien et du solaire ne contribuent que tr\u00e8s peu \u00e0 la s\u00e9curit\u00e9 d'approvisionnement), et pas plus - voire moins - de charbon. \n\nDans nos d\u00e9bats sur l'avenir \u00e9lectrique, nous avons souvent consid\u00e9r\u00e9 que le risque majeur \u00e9tait celui li\u00e9 \u00e0 un mode de production (le nucl\u00e9aire). En fait, il est d'abord de se retrouver avec un syst\u00e8me sur lequel on ne peut plus compter en toutes circonstances. En pareil cas il n'y a plus de sortie facile \u00e0 br\u00e8ve \u00e9ch\u00e9ance." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7005603226947313664,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7005603227807186944,urn:li:activity:7005603227807186944,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 146, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7005603227807186944,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7005603227807186944,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7005603227807186944", + "threadId": "activity:7005603227807186944", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005603227807186944", + "urn": "urn:li:activity:7005603227807186944", + "numComments": 300, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7005603227807186944", + "reactionTypeCounts": [ + { + "count": 2672, + "reactionType": "LIKE" + }, + { + "count": 282, + "reactionType": "INTEREST" + }, + { + "count": 248, + "reactionType": "MAYBE" + }, + { + "count": 54, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "EMPATHY" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7005603227807186944", + "numLikes": 3285, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005603227807186944", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3287, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7005239120478224384", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7005239120478224384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7005239120478224384)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_eu-climate-plan-sacrifices-carbon-storage-activity-7005239120478224384-CJct?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7005239119605825536", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7005239120478224384", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7005239119605825536", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "NZ7VHs9CLLv1/b5c7DxMfA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7777078811448406199", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676232472315?e=1677240000&v=beta&t=Dna6-QwOGpbDsSNZmnJ2d83_M4DxLjx_r8gfd5tfRIE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676232472315?e=1677240000&v=beta&t=1Us5wDqEAlDPoMb3dh0HrXOUy2rmCxBMifADLwPrWoA", + "expiresAt": 1677240000000, + "height": 576 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676232472315?e=1677240000&v=beta&t=uUiTMbjNHlmnKDbD9QRZzYuF8zRmZFy0gjcvuxWtGS4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676232472315?e=1677240000&v=beta&t=NcZBSNlhk0YZqe_Kgzt1zSYa3tBcPqHhwkInXAXdlEY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHnJ4MzeszS0g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7777078811448406199)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7777078811448406199)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "nature.com \u2022 11 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EU climate plan sacrifices carbon storage and biodiversity for bioenergy by nature.com", + "actionTarget": "https://www.nature.com/articles/d41586-022-04133-1#ref-CR1" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EU climate plan sacrifices carbon storage and biodiversity for bioenergy" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7005239119605825536,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La biomasse est-elle \"neutre en carbone\" ? Dit autrement, lorsque l'on utilise de la biomasse (du bois b\u00fbche, des granul\u00e9s de bois, du biogaz, un \"biocarburant\"), peut-on compter pour z\u00e9ro les \u00e9missions de CO2 issues de la combustion du carbone organique contenu dans les v\u00e9g\u00e9taux utilis\u00e9s ?\n\nOui disent g\u00e9n\u00e9ralement les inventaires d'\u00e9mission (dont le bilan carbone). Oui, dit actuellement la r\u00e9glementation europ\u00e9enne ou fran\u00e7aise. Certes il faut compter le carbone fossile utilis\u00e9 pendant le proc\u00e9d\u00e9 de transformation qui va de la plante jusqu'au vecteur \u00e9nerg\u00e9tique qui sera utilis\u00e9 (par exemple pour de l'\u00e9thanol qui remplace de l'essence, il faut compter le carburant et la fabrication du tracteur, la distillation du \"jus\" obtenu apr\u00e8s fermentation des betteraves ou du ma\u00efs, et encore quelques bricoles), mais le carbone qui \u00e9tait contenu dans la plante, non.\n\nCa se discute, explique un \"commentaire\" paru dans Nature (un \"commentaire\" est un article qui ne donne pas lieu \u00e0 un processus de revue par les pairs, la r\u00e9daction de la revue d\u00e9cidant seule si elle le prend ou pas). Car si l'on regarde au plan mondial, il y a de la d\u00e9forestation nette pour obtenir de nouvelles surfaces agricoles.\n\nSi l'Europe rajoute des cultures \u00e9nerg\u00e9tiques en plus des cultures alimentaires, il faut disposer de plus de surface au total. Soit l'Europe d\u00e9foreste chez elle, soit elle importe directement de la biomasse \u00e9nerg\u00e9tique, et alors elle va accro\u00eetre encore plus la d\u00e9forestation \u00e0 l'ext\u00e9rieur, par effet de domino si ce n'est en direct. \n\nSi la population de l'Europe continue d'augmenter un peu, et que les r\u00e9gimes alimentaires ne changent pas, le recours accru \u00e0 la biomasse est donc assur\u00e9 d'engendrer plus de d\u00e9forestation de mani\u00e8re globale. \n\nIncidemment, les auteurs ont postul\u00e9 - de mani\u00e8re surprenante puisque le GIEC souligne abondamment le risque d'un stress accru sur les rendements agricoles - sur une augmentation \u00e0 l'avenir des rendements des cultures. Si l'on enl\u00e8ve cette hypoth\u00e8se optimiste, la conclusion est encore plus nette.\n\nIl y a 20 ans, nous aurions pu choisir d'\u00e9conomiser du gaz et du p\u00e9trole essentiellement par une baisse de la consommation (consommation des v\u00e9hicules neufs baissant bien plus vite, trafic a\u00e9rien limit\u00e9 en volume, r\u00e9novation plus vigoureuse des b\u00e2timents), ce qui aurait permis de diminuer la quantit\u00e9 de p\u00e9trole et de gaz utilis\u00e9s sans avoir besoin de compenser par la biomasse.\n\nEt aujourd'hui ? L'option nucl\u00e9aire en plus comme l'option \u00e9lectricit\u00e9 ENR en plus prenant des d\u00e9cennies pour des quantit\u00e9s significatives, et la rotation du parc (de voitures, de b\u00e2timents r\u00e9nov\u00e9s) \u00e9tant lente, si nous voulons faire manger de la biomasse \u00e0 nos voitures et nos b\u00e2timents existants, il faut en manger moins nous-m\u00eames, sauf \u00e0 sacrifier un peu plus la biodiversit\u00e9. Il n'y a qu'un sol !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7005239119605825536,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7005239120478224384,urn:li:activity:7005239120478224384,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 63, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7005239120478224384,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7005239120478224384,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7005239120478224384", + "threadId": "activity:7005239120478224384", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005239120478224384", + "urn": "urn:li:activity:7005239120478224384", + "numComments": 122, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7005239120478224384", + "reactionTypeCounts": [ + { + "count": 974, + "reactionType": "LIKE" + }, + { + "count": 150, + "reactionType": "INTEREST" + }, + { + "count": 134, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7005239120478224384", + "numLikes": 1277, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005239120478224384", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1277, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7004752069165203457", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7004752069165203457)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7004752069165203457)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_invitation-nouveau-rapport-du-shift-sur-activity-7004752069165203457-5F0y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7004752068309581824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7004752069165203457", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7004752068309581824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "9ThYUWxFvU6bS4I4U0s3FA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7196578192530557346", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676331116371?e=1677240000&v=beta&t=hU9dAJeAR1dtr2tKDeNDIInagtDe9dOknv613A49B98", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676331116371?e=1677240000&v=beta&t=q4bc8ZN55Pnd_HljdK0tvFjy5fOvVoZ7JOAGHaWHCZ0", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676331116371?e=1677240000&v=beta&t=ijhyQykymxO_G0l_Yp-QR7hpYk_BMhIXaz-hAP3KN_s", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676331116371?e=1677240000&v=beta&t=HHrbcvsgM-2pD-Jw6s0NGlUHv0x9J4Uyc7dxnc3EcC4", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEhDFyuTKuKOQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7196578192530557346)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7196578192530557346)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [INVITATION] Nouveau rapport du Shift sur le gaz | 6 d\u00e9c. \u00e0 18h by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-rapport-gaz-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[INVITATION] Nouveau rapport du Shift sur le gaz | 6 d\u00e9c. \u00e0 18h" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7004752068309581824,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Aurons nous du gaz cet hiver ? Derri\u00e8re cette question s'en cache une autre, qui est la m\u00eame mais \u00e0 des horizons de temps plus \u00e9loign\u00e9s : aurons nous du gaz les hivers d'apr\u00e8s ? The Shift Project vous propose d'assister, le 6 d\u00e9cembre prochain \u00e0 18h, \u00e0 la pr\u00e9sentation d'un travail qui a \u00e9t\u00e9 men\u00e9 par notre association et qui permet entre autres de disserter sur cette question. \n\nPlus pr\u00e9cis\u00e9ment, nous fournirons notre analyse sur les possibilit\u00e9s \"physiques\" maximales (donc avec pour seules limites les capacit\u00e9s de production contraintes par la seule g\u00e9ologie, et les capacit\u00e9s de transport d\u00e9ployables \u00e0 l'avenir) d'approvisionnement en gaz de l'Union Europ\u00e9enne d'ici \u00e0 2050.\n\nNous avons utilis\u00e9 la m\u00eame m\u00e9thode que celle qui avait \u00e9t\u00e9 suivie pour les perspectives d'approvisionnement en p\u00e9trole dans l'Union Europ\u00e9enne d'ici \u00e0 2050 (https://lnkd.in/dwPcgve ). Nous avions alors eu acc\u00e8s \u00e0 une base de donn\u00e9es (non publique) recensant l'int\u00e9gralit\u00e9 des gisements p\u00e9troliers dans le monde, exploit\u00e9s ou non, incluant les gisements restants \u00e0 d\u00e9couvrir (en volume), et des experts du secteur (mentionn\u00e9s en t\u00eate du rapport) en ont d\u00e9duit, apr\u00e8s analyse, la production maximale possible d'ici \u00e0 2050, sous seule contrainte g\u00e9ologique, des 16 premiers pays fournissant l'Europe (qui sont aussi les 16 premiers producteurs mondiaux, hors Br\u00e9sil et Canada).\n\nNous avons reproduit la m\u00eame d\u00e9marche avec les gisements de gaz. Incidemment ces derniers sont pour partie aussi ceux fournissant du p\u00e9trole, puisqu'une partie du gaz produit dans le monde est issu de gisements mixtes (contenant du p\u00e9trole et du gaz).\n\nCe travail - in\u00e9dit en France dans l'espace public - a fait l'objet d'un financement sp\u00e9cifique de RTE (rappelons que 20% environ de l'\u00e9lectricit\u00e9 europ\u00e9enne \u00e9tait produite avec du gaz en 2021), de la Direction g\u00e9n\u00e9rale des relations internationales et de la strat\u00e9gie (DGRIS) du Minist\u00e8re des Arm\u00e9es, et du BRGM, le service g\u00e9ologique national (https://lnkd.in/etMp4BRp).\n\nC'est donc Mardi prochain que vous pourrez \"venir au r\u00e9sultat\". Sans divulg\u00e2cher le r\u00e9sultat, comme disent nos amis qu\u00e9becois, et sans mauvais jeu de mots, vous d\u00e9couvrirez en quoi, apr\u00e8s le p\u00e9trole (dont le flux entrant en Europe devrait baisser de mani\u00e8re massive d'ici \u00e0 2050 m\u00eame si la question climatique n'est pas g\u00e9r\u00e9e), ca risque aussi d'\u00eatre chaud pour le gaz...\n\nInscription gratuite \u00e0 partir de la page en lien dans l'image. Si vous \u00eates journaliste, une conf\u00e9rence de presse aura lieu le m\u00eame jour \u00e0 9h30 (d\u00e9tails d'inscription sur la m\u00eame page). A vos cols roul\u00e9s ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7004752068309581824,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7004752069165203457,urn:li:activity:7004752069165203457,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 31, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7004752069165203457,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7004752069165203457,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7004752069165203457", + "threadId": "activity:7004752069165203457", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004752069165203457", + "urn": "urn:li:activity:7004752069165203457", + "numComments": 86, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7004752069165203457", + "reactionTypeCounts": [ + { + "count": 973, + "reactionType": "LIKE" + }, + { + "count": 92, + "reactionType": "MAYBE" + }, + { + "count": 79, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7004752069165203457", + "numLikes": 1174, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004752069165203457", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1175, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7004364148159471617", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7004364148159471617)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7004364148159471617)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_russia-is-using-energy-as-a-weapon-activity-7004364148159471617-wnvo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7004364146745995264", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7004364148159471617", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7004364146745995264", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "kK5NVLumaj3j4hkP0QQYrw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9013362913010070605", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675783101554?e=1677240000&v=beta&t=9UnxAAu09oNCZI0y6rULc3Kl3nM9f0f8AOe0QrUfB7Q", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675783101554?e=1677240000&v=beta&t=sdhXF9yc3_bGtwX5GWPpvNlfEJcdc11QU6TzRrFB2ZA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675783101555?e=1677240000&v=beta&t=ult9fJx2cRvoRyqI-KqMyL33CFoockOkPOrswyMcH8o", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675783101555?e=1677240000&v=beta&t=PryQDLdW0XBF4f_4vBkj6Vzl2W8Gt2G4lWHq0__jOqs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHnQFMSY0aQmA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9013362913010070605)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9013362913010070605)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "economist.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Russia is using energy as a weapon by economist.com", + "actionTarget": "https://www.economist.com/interactive/graphic-detail/2022/11/26/high-fuel-prices-could-kill-more-europeans-than-fighting-in-ukraine-has" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Russia is using energy as a weapon" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7004364146745995264,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"Ile ne passera pas l'hiver\" : cette vieille maxime rappelle que le froid tue. Il tue en direct car il augmente les risques cardiovasculaires (le froid stresse un peu le syst\u00e8me circulatoire), et en indirect car il favorise la survie des virus pendant leur s\u00e9jour dans l'air, et nous rassemble dans des int\u00e9rieurs peu ventil\u00e9s o\u00f9 la contamination est plus rapide (c'est pour ces deux raisons que les \u00e9pid\u00e9mies de grippe ont lieu l'hiver).\n\nChez les \u00eatres humains, une saison hivernale plus froide tue donc un peu plus (ce n'est pas le cas pour nombre de v\u00e9g\u00e9taux des moyennes latitudes, o\u00f9 un hiver trop doux n'\u00e9limine pas les ravageurs). En Europe, cet effet de surmortalit\u00e9 hivernale est d'autant plus prononc\u00e9 que la temp\u00e9rature moyenne du pays est \u00e9lev\u00e9e. Un hiver \"plus froid que la normale\" fait donc plus de morts au Portugal qu'en Finlande, parce que dans les pays du Nord les infrastructures sont con\u00e7ues \"\u00e0 la base\" pour prot\u00e9ger les gens du froid alors que ce n'est pas autant le cas au sud.\n\nPar ailleurs, quand les prix de l'\u00e9nergie sont \u00e9lev\u00e9s, les gens se chauffent moins, et cela fait des morts en plus. Cet effet avait d\u00e9j\u00e0 \u00e9t\u00e9 constat\u00e9 au Japon suite \u00e0 Fukushima, et avec l'envol\u00e9e des prix du gaz et de l'\u00e9lectricit\u00e9 sur notre continent, il va malheureusement aussi s'appliquer l'hiver prochain (et possiblement les hivers d'apr\u00e8s, car nous n'avons pas fini d'avoir des sujets avec l'approvisionnement en gaz sur notre continent : https://lnkd.in/dmPNvP3V ).\n\nThe Economist a ainsi fait des simulations sur le nombre de morts que la guerre en Ukraine allait provoquer avec cet effet de hausse des prix. La conclusion est que les morts par d\u00e9faut de chauffage seront plus nombreux que ceux directement li\u00e9s au conflit. Mais \u00e9videmment ce ne sont pas les m\u00eames : sans que ce constat ne porte en quoi que ce soit un jugement de valeur, la guerre tue surtout des gens jeunes et \"bien portants\", le froid surtout des gens \u00e2g\u00e9s et/ou d\u00e9j\u00e0 en mauvaise condition sanitaire.\n\nCe serait en Italie que cet effet serait le plus ample, et en France et en Espagne le moins. \n\nCet \u00e9pisode rappelle qu'il y a une diff\u00e9rence importante entre la sobri\u00e9t\u00e9 et la pauvret\u00e9 : les deux vont avec une baisse de l'\u00e9nergie utilis\u00e9e parce que nous nous passons de services auparavant utilis\u00e9s (par exemple des m\u00e8tres carr\u00e9s chauff\u00e9s), mais dans le premier cas c'est d\u00e9sir\u00e9 et planifi\u00e9 (par exemple on optimise l'occupation des b\u00e2timents existants en diminuant l'\u00e9nergie pour chauffer ou refroidir le parc, mais sans diminuer le confort thermique des occupants), ce qui minimise les cons\u00e9quences d\u00e9sagr\u00e9ables ; dans le second c'est subi alors que nous n'avions rien demand\u00e9, et fatalement ca se passe moins bien." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7004364146745995264,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7004364148159471617,urn:li:activity:7004364148159471617,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 43, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7004364148159471617,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7004364148159471617,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7004364148159471617", + "threadId": "activity:7004364148159471617", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004364148159471617", + "urn": "urn:li:activity:7004364148159471617", + "numComments": 113, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7004364148159471617", + "reactionTypeCounts": [ + { + "count": 1049, + "reactionType": "LIKE" + }, + { + "count": 242, + "reactionType": "INTEREST" + }, + { + "count": 183, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7004364148159471617", + "numLikes": 1490, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004364148159471617", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1490, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7003671719844446208", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7003671719844446208)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7003671719844446208)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_chaleur-renouvelable-la-grande-oubli%C3%A9e-activity-7003671719844446208-feFe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7003671719206879232", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7003671719844446208", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7003671719206879232", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "eiiqUR2PBsqg9f0G7zD7yg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8585409607354519917", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676548360767?e=1677240000&v=beta&t=BQCp4N22cu_N9qcnpeoDmA6vyYWox4jBdJz00947Ya0", + "expiresAt": 1677240000000, + "height": 599 + }, + { + "width": 1067, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676548360767?e=1677240000&v=beta&t=FKoVBE-gpJlVEXJBqHCGG9vmC_2mowISwYnrqGVm63g", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676548360767?e=1677240000&v=beta&t=tv1ZYPraSMa833VWWoWZK_RoQSHypygt9e73pcGkXV4", + "expiresAt": 1677240000000, + "height": 119 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676548360767?e=1677240000&v=beta&t=GvGrhaNw9bE3tmiM-K0wn9KsmgYc-9uMJG2OgeSx9lU", + "expiresAt": 1677240000000, + "height": 359 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEDoFy4e7cplA/articleshare-shrink_" + }, + "displayAspectRatio": 0.74875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8585409607354519917)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8585409607354519917)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Chaleur renouvelable : la grande oubli\u00e9e de la strat\u00e9gie \u00e9nerg\u00e9tique fran\u00e7aise ? | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-chaleur-renouvelable" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Chaleur renouvelable : la grande oubli\u00e9e de la strat\u00e9gie \u00e9nerg\u00e9tique fran\u00e7aise ? | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7003671719206879232,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quand on prononce l'expression \"\u00e9nergie renouvelable\", nombre d'entre nous vont inconsciemment remplacer \"\u00e9nergie\" par \"\u00e9lectricit\u00e9\", et, aid\u00e9s en cela par l'image d'Epinal du panneau solaire et de l'\u00e9olienne, au sein de l'\u00e9lectricit\u00e9 on ne pense pas souvent aux barrages, pourtant la premi\u00e8re source d'\u00e9lectricit\u00e9 renouvelable dans le monde (16% du total vs environ 7% pour l'\u00e9olien et 4% pour le solaire) et en France.\n\nMais dans l'\u00e9nergie il n'y a pas que l'\u00e9lectricit\u00e9. Carbone 4 vous propose une publication de 50 pages sur la chaleur, et plus pr\u00e9cis\u00e9ment la chaleur renouvelable, qui, de fait, a re\u00e7u consid\u00e9rablement moins d'attention et de moyens de la part de la puissance publique que l'\u00e9lectricit\u00e9 ces derni\u00e8res d\u00e9cennies, alors que la chaleur est bien plus fossile que l'\u00e9lectricit\u00e9 dans notre pays. D'o\u00f9 la question pos\u00e9e dans le titre : n'avons nous pas \"oubli\u00e9\" l'essentiel, sachant que la chaleur c'est 45% des usages \u00e9nerg\u00e9tiques finaux en France (l'\u00e9lectricit\u00e9 c'est environ 20%).\n\nPompes \u00e0 chaleur a\u00e9rothermiques ou g\u00e9othermiques, pour le chauffage (chaleur basse temp\u00e9rature) ou l'industrie (chaleur haute temp\u00e9rature), bois, solaire thermique, biogaz... : l'\u00e9quipe de Carbone 4 a pass\u00e9 en revue les diverses sources \u00e9ligibles, leurs usages possibles, les potentiels, et les couts. \n\nComme dans l'\u00e9lectricit\u00e9, toutes les sources de chaleur renouvelable ne se valent pas : pas les m\u00eames gisements, pas les m\u00eames efficacit\u00e9s, pas les m\u00eames couts de mise en oeuvre et couts \u00e0 tonne de CO2 \u00e9vit\u00e9e. Comme pour l'\u00e9lectricit\u00e9, certaines sources sont b\u00e9n\u00e9fiques pour le CO2 mais pas sans contreparties sur d'autres impacts : c'est notamment le cas pour la biomasse et la biodiversit\u00e9. \n\n2 applications sont largement sous-d\u00e9velopp\u00e9es (au sens premier du terme : pas assez d\u00e9velopp\u00e9es) en France : le solaire thermique et la g\u00e9othermie (incluant les pompes \u00e0 chaleur).\n\nEn conclusion \"La d\u00e9carbonation de la chaleur en France ne suit pas une trajectoire qui permettrait d\u2019atteindre les objectifs fix\u00e9s dans la loi pour respecter une neutralit\u00e9 carbone \u00e0 horizon 2050\". Avant de savoir quoi faire pour que cette conclusion soit un peu moins valable, cette publication vous permet de comprendre de quelle situation nous partons (et en plus c'est gratuit, c'est pas beau \u00e7a ?)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7003671719206879232,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7003671719844446208,urn:li:activity:7003671719844446208,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 144, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7003671719844446208,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7003671719844446208,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7003671719844446208", + "threadId": "activity:7003671719844446208", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003671719844446208", + "urn": "urn:li:activity:7003671719844446208", + "numComments": 214, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7003671719844446208", + "reactionTypeCounts": [ + { + "count": 2280, + "reactionType": "LIKE" + }, + { + "count": 254, + "reactionType": "INTEREST" + }, + { + "count": 156, + "reactionType": "MAYBE" + }, + { + "count": 51, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "EMPATHY" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7003671719844446208", + "numLikes": 2787, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003671719844446208", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2787, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7003260990230274048", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7003260990230274048)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7003260990230274048)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-cop-27-sest-achev%C3%A9e-il-y-a-peu-il-est-activity-7003260990230274048-SRQ0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7003260989353689088", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7003260990230274048", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7003260989353689088", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "/2mQHakLCacxOog4Fey2qg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGOEGTIiL_H7Q", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGOEGTIiL_H7Q", + "artifacts": [ + { + "width": 767, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1669707532955?e=1679529600&v=beta&t=NlLx-UB6aFn87i2zEznRCtcrX1TUUYofRjzF5xvP6gw", + "expiresAt": 1679529600000, + "height": 477 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1669707533110?e=1679529600&v=beta&t=Lh7LuBSBKHRkVWbQAloi5UbXCqnMHlMgCWd_5k95UkA", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 767, + "fileIdentifyingUrlPathSegment": "1280/0/1669707533110?e=1679529600&v=beta&t=B7VeYs6XDQm1oy6t1n_kqoGuwVYZEnfAofKSR9wjSxA", + "expiresAt": 1679529600000, + "height": 477 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1669707533110?e=1679529600&v=beta&t=MFi_44HT1B3oVfybH9qVPeH1UQ4KEopS3lf-ovNH8vU", + "expiresAt": 1679529600000, + "height": 299 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1669707533110?e=1679529600&v=beta&t=iX4_CsRKgAZdFcRSVmNlxm-e-aMZb_j3EFDbJ2ih9_4", + "expiresAt": 1679529600000, + "height": 100 + }, + { + "width": 767, + "fileIdentifyingUrlPathSegment": "800/0/1669707533110?e=1679529600&v=beta&t=5o7jBQwLNfiyA9_3My6B80GrY3dwSreE9yGGXUxGpKY", + "expiresAt": 1679529600000, + "height": 477 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGOEGTIiL_H7Q/feedshare-shrink_" + }, + "displayAspectRatio": 0.621903520208605 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7003260989353689088,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La COP 27 s'est achev\u00e9e il y a peu. Il est trop t\u00f4t pour savoir si cette COP aura contribu\u00e9, comme la COP 26, \u00e0 polariser l'opinion de mani\u00e8re plus prononc\u00e9e qu'avant (un article en libre acc\u00e8s dans Nature montre que la COP 26 a conduit la twittosph\u00e8re \u00e0 se polariser bien plus qu'avant, avec un camp \"d'anti\", largement pioch\u00e9 dans les milieux tr\u00e8s conservateurs, qui monte en puissance : https://lnkd.in/eVRJBvhn ).\n\nPar contre il est toujours temps de faire un bilan de l'\u00e9volution des \u00e9missions depuis la signature de la Convention Climat, au Sommet de la Terre en 1992. C'est en effet dans le cadre de cette Convention que se tiennent des rencontres annuelles depuis 1995, appel\u00e9es COP (Convention Of the Parties), qui donnent lieu \u00e0 de nombreux commentaires sur le fait qu'elles aient \u00e9t\u00e9 un succ\u00e8s ou un \u00e9chec.\n\nLe bilan que je vous propose est tout simplement la variation des \u00e9missions plan\u00e9taires de gaz \u00e0 effet de serre entre 1992 et 2021 (graphique ci-dessous). Pour chaque gaz, et chaque source principale pour le CO2, j'ai regard\u00e9 de combien avaient vari\u00e9 les \u00e9missions de 1992 quand on les regarde aujourd'hui. Par exemple, les \u00e9missions de CO2 issu du charbon \u00e9taient en 2021 75% plus \u00e9lev\u00e9 qu'en 1992.\n\nPour l'ensemble du CO2 les \u00e9missions ont augment\u00e9 d'environ 60% en 29 ans, et ainsi de suite.\n\nDans l'ensemble des \u00e9nergies fossiles, c'est aujourd'hui le charbon qui engendre les \u00e9missions les plus fortes, mais c'est le gaz qui a connu la plus forte augmentation sur la p\u00e9riode. \n\n\"Lime calcination\" d\u00e9signe en fran\u00e7ais la calcination du calcaire, c'est \u00e0 dire la r\u00e9action qui a lieu dans les fours \u00e0 ciment (chauff\u00e9s \u00e0 plus de 1000 \u00b0C), o\u00f9 la mol\u00e9cule de calcaire - CaCO3 - est d\u00e9compos\u00e9e en chaux vive - CaO - et du CO2, ce dernier partant dans l'air. la chaux vive se combine avec d'autres min\u00e9raux (marne et argile) pour former le clinker qui, broy\u00e9, donnera le composant principal du ciment. Il se produit annuellement environ 4 milliards de tonnes de ciment dans le monde, conduisant \u00e0 l'\u00e9mission d'environ 2,5 milliards de tonnes de CO2.\n\nLe m\u00e9thane a augment\u00e9 de 25% sur la p\u00e9riode et les autres gaz (protoxyde d'azote et gaz halog\u00e9n\u00e9s) d'environ 50% Aucun n'a baiss\u00e9.\n\nEn regardant ce tableau il est \u00e9vident que d'avoir sign\u00e9 la Convention Climat n'a pour l'heure pas suffit \u00e0 inverser la tendance. On peut au moins en d\u00e9duire une conclusion simple : compter essentiellement sur ces r\u00e9unions pour r\u00e9gler le probl\u00e8me \"\u00e0 notre place\" est une illusion. Si nous voulons que les valeurs de ce graphique deviennent n\u00e9gatives (ce qui est l'objectif) il faudra prendre le taureau par les cornes dans chaque pays pris individuellement.\n\nEn Europe, comme de toute fa\u00e7on la d\u00e9crue d'approvisionnement en combustibles fossiles \u00e9tait amorc\u00e9e avant Poutine, la direction n'est pas n\u00e9gociable. Seules les modalit\u00e9s de la p\u00e9dagogie du probl\u00e8me et les modalit\u00e9s de gestion de la baisse le sont.\n\nDonn\u00e9es diverses et compilation de votre serviteur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7003260989353689088,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7003260990230274048,urn:li:activity:7003260990230274048,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7003260990230274048,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7003260990230274048,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7003260990230274048", + "threadId": "activity:7003260990230274048", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003260990230274048", + "urn": "urn:li:activity:7003260990230274048", + "numComments": 115, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7003260990230274048", + "reactionTypeCounts": [ + { + "count": 1014, + "reactionType": "LIKE" + }, + { + "count": 170, + "reactionType": "INTEREST" + }, + { + "count": 98, + "reactionType": "MAYBE" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7003260990230274048", + "numLikes": 1315, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003260990230274048", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1315, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002900350407966720", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002900350407966720)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002900350407966720)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sondage-exclusif-les-fran%C3%A7ais-trouvent-activity-7002900350407966720-nU0y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002900349405569024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002900350407966720", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002900349405569024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "GbMgmAMMDx1Eia0TgaJOLQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8036308201381245324", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675670372974?e=1677240000&v=beta&t=G0WzxIoKLR1_wltPY-Obdk_O7oatLCMsLS6phybYoXc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675670372974?e=1677240000&v=beta&t=fzszG6ZvbnoIvPBXS6wmpLd4LBgEgaFbvz5SM2or5A0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675670372974?e=1677240000&v=beta&t=UM5RmY9T6ra8XHPlyzYiF7-lJdRhYhDWQWfVEEkvC2k", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675670372974?e=1677240000&v=beta&t=9fIDs0KmhYKXbY1KRf1QoiNAWR_makJ5tF48HOQlAUQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHDs8Y3iG5jPg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8036308201381245324)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8036308201381245324)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: SONDAGE EXCLUSIF - Les Fran\u00e7ais trouvent peu lisible la politique \u00e9nerg\u00e9tique du gouvernement by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/politique-societe/societe/sondage-exclusif-les-francais-trouvent-illisible-la-politique-energetique-du-gouvernement-1881508" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "SONDAGE EXCLUSIF - Les Fran\u00e7ais trouvent peu lisible la politique \u00e9nerg\u00e9tique du gouvernement" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002900349405569024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un sondage effectu\u00e9 pour Les Echos sur la politique \u00e9nerg\u00e9tique du gouvernement est publi\u00e9 dans ce journal (\u00e9lectronique ; on devrait plut\u00f4t dire \"publi\u00e9 sur cet \u00e9cran !).\n\nIl fait appara\u00eetre quelques enseignements int\u00e9ressants :\n\n- aucune des questions reproduites dans l'article ne contient les mots \"p\u00e9trole\" ou \"gaz\". Les questions portent quasi-exclusivement sur l'\u00e9lectricit\u00e9 (un travers classique des d\u00e9bats sur l'\u00e9nergie). Il y a une question sur l'ind\u00e9pendance \u00e9nerg\u00e9tique qui peut \u00e9ventuellement s'interpr\u00e9ter en pensant p\u00e9trole, mais c'est tout.\n\n- ensuite les r\u00e9ponses sont parfois gentiment contradictoires les unes avec les autres (ce que fait remarquer l'article), parce que la r\u00e9ponse est souvent dans la question avec cette mani\u00e8re de proc\u00e9der. Les anglais posent souvent des questions comportant leurs propres contreparties (par exemple \"sachant que d'avoir au moins y% d'\u00e9olien demandera qu'\u00e0 un moment il y ait une \u00e9olienne de plus de z m de haut \u00e0 moins de x km de chez vous si vous habitez dans une agglom\u00e9ration de moins de N habitants, \u00eates vous favorable \u00e0 ce d\u00e9veloppement ?\" \n\n- nonobstant ce qui pr\u00e9c\u00e8de on d\u00e9couvre (avec \u00e9tonnement pour moi parce que c'est probablement un revirement r\u00e9cent) que la construction de nouvelles centrales nucl\u00e9aires est vue plus favorablement que la construction de nouvelles \u00e9oliennes. \n\n- la strat\u00e9gie du gouvernement est consid\u00e9r\u00e9e comme \"pas claire\" sur l'\u00e9nergie (en fait l'\u00e9lectricit\u00e9, donc). Mais il est impossible de savoir au vu de ce seul sondage si cela r\u00e9sulte du fait que le gouvernement est consid\u00e9r\u00e9 comme \"pas clair\" quoi qu'il fasse (ce qui est possible voire probable si le pouvoir en place a \u00e9t\u00e9 \"mal \u00e9lu\"), ou bien si l'\u00e9nergie - l'\u00e9lectricit\u00e9 donc - est \"nettement moins claire\" que le reste. Dans ce dernier cas il y a \u00e0 nouveau deux possibilit\u00e9s : que ce soit le r\u00e9sultat logique de revirements (sur le nucl\u00e9aire par exemple), ou un jugement qui cache en fait le d\u00e9sarroi face \u00e0 la valse actuelle des prix (la question n'est pas pos\u00e9e).\n\nSavoir ce que pensent nos concitoyens est essentiel en d\u00e9mocratie. Mais pour avoir une mati\u00e8re suffisamment d\u00e9taill\u00e9e pour en tirer des conclusions pour l'action (l'action pouvant inclure la p\u00e9dagogie du probl\u00e8me quand il est manifeste que ce dernier n'est pas bien appr\u00e9hend\u00e9), il faut aller au del\u00e0 des questions \"trop simples\" des sondages, qui donnent souvent une information incompl\u00e8te - et parfois incoh\u00e9rente - sur la hi\u00e9rarchie des pr\u00e9f\u00e9rences quand on ne peut pas tout avoir. La premi\u00e8re conclusion que je tire de la lecture des r\u00e9sultats est qu'il faut en savoir plus !\n\nNous n'aurons pas deux essais pour b\u00e2tir un syst\u00e8me d\u00e9carbon\u00e9 et durable au 21\u00e8 si\u00e8cle. Pour se donner les meilleures chances d'y parvenir, il faut comprendre \u00e0 la fois les barri\u00e8res physiques et les pr\u00e9f\u00e9rences et barri\u00e8res sociales. Les sondages ne servent \u00e0 rien pour les premi\u00e8res, et pour les secondes il doivent imp\u00e9rativement \u00eatre compl\u00e9t\u00e9s par des analyses plus d\u00e9taill\u00e9es." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002900349405569024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002900350407966720,urn:li:activity:7002900350407966720,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002900350407966720,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002900350407966720,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002900350407966720", + "threadId": "activity:7002900350407966720", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002900350407966720", + "urn": "urn:li:activity:7002900350407966720", + "numComments": 115, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002900350407966720", + "reactionTypeCounts": [ + { + "count": 774, + "reactionType": "LIKE" + }, + { + "count": 60, + "reactionType": "INTEREST" + }, + { + "count": 58, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002900350407966720", + "numLikes": 908, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002900350407966720", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 914, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002749696876150784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002749696876150784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002749696876150784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sales-commercial-marketing-projet-r%C3%A9glementaire-activity-7002749696876150784-3K-J?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002749696234397697", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002749696876150784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002749696234397697", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "9NeZxzGfsd4dcw+domMdqA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7566106737272260772", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675670043036?e=1677240000&v=beta&t=x1ru5RvXQ49McxndMr5GlDc_RC1phb3s-zKdZ5Em7cw", + "expiresAt": 1677240000000, + "height": 418 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675670043036?e=1677240000&v=beta&t=H7ARJdDbe9KBHwswMCXvK-reBmg1bjSIELTqMLLFYw8", + "expiresAt": 1677240000000, + "height": 627 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675670043036?e=1677240000&v=beta&t=WsZJgYnwBx9JnkqNZ8R3ytkVEMk6ZlsH4IODRfMgrXU", + "expiresAt": 1677240000000, + "height": 83 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675670043036?e=1677240000&v=beta&t=bCu3II122KWOkPJG0sZteD-2r2ErJ_Ox5kvKFOMYSzc", + "expiresAt": 1677240000000, + "height": 250 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHEi-G2uVKrIA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7566106737272260772)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7566106737272260772)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "welcometothejungle.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Sales (Commercial, Marketing, Projet, R\u00e9glementaire) - Carbon4 Finance - CDI \u00e0 Paris by welcometothejungle.com", + "actionTarget": "https://www.welcometothejungle.com/fr/companies/carbon4-finance/jobs/sales-junior-commercial-marketing-projet-reglementaire_paris" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Sales (Commercial, Marketing, Projet, R\u00e9glementaire) - Carbon4 Finance - CDI \u00e0 Paris" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002749696234397697,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Imaginons que vous veniez de terminer des \u00e9tudes sup\u00e9rieures en vue d'avoir une activit\u00e9 dans le monde financier ou dans une fonction commerciale. Imaginons que, pendant vos \u00e9tudes, vous ayez par ailleurs r\u00e9alis\u00e9 que vous ne souhaitiez pas vendre ou financer des voitures \u00e0 essence, des m\u00e8tres carr\u00e9s de centres commerciaux, de l'imperm\u00e9abilisation des sols, des v\u00eatements qui seront port\u00e9s 3 fois, des aliments ou boissons avec plein de sucre, des engins digitaux alimentant la course aux d\u00e9bits, et j'en passe.\n\nIl se pourrait alors que cette annonce de Carbon 4 Finance vous int\u00e9resse : nous cherchons un(e) \"junior sales\" (en bon fran\u00e7ais dans le texte !), qui id\u00e9alement connaisse \u00e0 la fois la finance et les questions environnementales, pour renforcer notre \u00e9quipe commerciale.\n\nTous les d\u00e9tails dans l'annonce ci-dessous !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002749696234397697,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002749696876150784,urn:li:activity:7002749696876150784,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002749696876150784,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002749696876150784,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002749696876150784", + "threadId": "activity:7002749696876150784", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002749696876150784", + "urn": "urn:li:activity:7002749696876150784", + "numComments": 54, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002749696876150784", + "reactionTypeCounts": [ + { + "count": 688, + "reactionType": "LIKE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002749696876150784", + "numLikes": 751, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002749696876150784", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 751, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002601952358375426", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002601952358375426)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002601952358375426)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_air-quality-in-europe-2022-activity-7002601952358375426-xEsX?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002601951557251072", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002601952358375426", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002601951557251072", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "/lJQfWYiyDgnz3M3EJY2gQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8151027872525130342", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1669316510253?e=1677240000&v=beta&t=lZOCKeTcrBgj3OD_p1FDP8fCrSpyLfcZ3emcslcoCt8", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1669316510253?e=1677240000&v=beta&t=0vyP1Yffr0uIRHdNikiRm4XUQYTglJwFS9R5kW7JGfU", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1669316510253?e=1677240000&v=beta&t=ZUey7RbLLqkJ8fr_JbJq9KZxygaIW1VhErW5LLDJsYA", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1669316510253?e=1677240000&v=beta&t=LHOkK7PguJRoeVo9uy_YBLN3-OP_4u85Djyk2zu_4g0", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE2_RweuB2cWQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8151027872525130342)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8151027872525130342)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "eea.europa.eu \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Air quality in Europe 2022 by eea.europa.eu", + "actionTarget": "https://www.eea.europa.eu/publications/air-quality-in-europe-2022/air-quality-in-europe-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Air quality in Europe 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002601951557251072,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans un rapport qui vient d'\u00eatre publi\u00e9 par l'Agence Europ\u00e9enne de l'Environnement (qui est une des instances officielles de l'Union europ\u00e9enne), figure un chiffre un peu impressionnant : la pollution aux particules fines (en particulier aux particules les plus fines, sous 2,5 microns) a engendr\u00e9 en 2020 plus de 200.000 morts pr\u00e9matur\u00e9s au sein des 27 pays membres, ou encore des millions d'ann\u00e9es de vie perdues.\n\nCette pollution engendre aussi de la morbidit\u00e9 chronique (affections bronchiques et pulmonaires notamment) qui peuvent conduire \u00e0 des invalidit\u00e9s partielles. Ce sont les pays de l'Est qui payent le plus lourd tribut \u00e0 cette pollution en nombre de vies perdues pour 100.000 habitants.\n\nLa pollution aux oxydes d'azote (qui vient de toute source de combustion) engendre elle aussi des morts pr\u00e9matur\u00e9 ainsi que du diab\u00e8te, et l'ozone des probl\u00e8mes respiratoires et aussi des morts pr\u00e9matur\u00e9s.\n\n90% de la population urbaine europ\u00e9enne est ainsi expos\u00e9e \u00e0 des niveaux de pollution qui exc\u00e8dent les seuils recommand\u00e9s par l'OMS. Les particules les plus fines viennent surtout de la combustion des \u00e9nergies fossiles : transports (qui sont aussi la premi\u00e8re source d'oxydes d'azote), chaudi\u00e8res de b\u00e2timents, et \u00e9lectricit\u00e9 faite au gaz et au charbon (une centrale \u00e0 charbon en rejette des dizaines de tonnes par milliard de kWh produit). \n\nDiminuer la quantit\u00e9 d'\u00e9nergies fossiles que nous utilisons a donc aussi un b\u00e9n\u00e9fice sanitaire. En fait il est m\u00eame double : passer \u00e0 plus de modes actifs dans les transports (marcher ou p\u00e9daler) \u00e9vite \u00e0 la fois des \u00e9missions de CO2 et de polluants locaux, et \u00e9vite de la s\u00e9dentarit\u00e9, qui est aussi un facteur important de baisse de la condition sanitaire. \n\nL'\u00e9quation n'est \u00e9videmment pas si simple, parce que, compar\u00e9 \u00e0 il y a un si\u00e8cle, l'\u00e9nergie abondante est aussi ce qui nous a amen\u00e9 la suffisance alimentaire (production accrue de nourriture et moyens de stockage et de transport performants), la protection contre les \u00e9l\u00e9ments (froid notamment), et la prophylaxie (eau potable, d\u00e9tergents et d\u00e9sinfectants). Mais il est tout \u00e0 fait possible de bouger progressivement le curseur pour conserver ces acquis tout en d\u00e9carbonant fortement notre mode de vie. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002601951557251072,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002601952358375426,urn:li:activity:7002601952358375426,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 90, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002601952358375426,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002601952358375426,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002601952358375426", + "threadId": "activity:7002601952358375426", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002601952358375426", + "urn": "urn:li:activity:7002601952358375426", + "numComments": 165, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002601952358375426", + "reactionTypeCounts": [ + { + "count": 1868, + "reactionType": "LIKE" + }, + { + "count": 231, + "reactionType": "INTEREST" + }, + { + "count": 117, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "APPRECIATION" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002601952358375426", + "numLikes": 2286, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002601952358375426", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2287, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002220857016119296", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002220857016119296)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002220857016119296)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_laugmentation-des-tarifs-de-lassurance-activity-7002220857016119296-_SG_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002220856265297920", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002220857016119296", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002220856265297920", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "0Vy6IYabvX226to5GPos1Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8423740630780296532", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675805509728?e=1677240000&v=beta&t=-Echq-g8P-gZ5EuK7PfmVNLAyRlRJnW5gDd2iYwyq_A", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675805509728?e=1677240000&v=beta&t=lvHY1vbDuQsuXhtOrwabVkXtJ9UsZbyt9rbC-V45xiY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675805509728?e=1677240000&v=beta&t=eSCSksqnoHXZQXDjw8sG1s4ycxs_ruailwGSd5JIzk4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675805509728?e=1677240000&v=beta&t=mZj_7DZkjXTou8JGTaXv0YIUukEnW_7hnlGORA-qTII", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHmip5sxOcWHA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8423740630780296532)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8423740630780296532)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab L'augmentation des tarifs de l'assurance est in\u00e9vitable \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/banque-assurances/laugmentation-des-tarifs-de-lassurance-est-inevitable-1882711" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0L'augmentation des tarifs de l'assurance est in\u00e9vitable\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002220856265297920,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a fort fort longtemps, la gestion du risque se faisait en ne comptant que sur ses propres forces et une solidarit\u00e9 \"de proximit\u00e9\". Le paysan normand du Moyen Age qui avait de mauvaises r\u00e9coltes ne pouvait gu\u00e8re compter sur le proven\u00e7al ou le lorrain pour le sortir de ce mauvais pas. Le portugais qiu a vu sa maison d\u00e9truire par le s\u00e9isme de Lisbonne en 1755 ne pouvait pas vraiment compter sur le ch'ti ou m\u00eame le basque pour l'aider \u00e0 reconstruire plus vite.\n\nNous vivons aujourd'hui dans un monde o\u00f9 il en va tout autrement. Tout d'abord, gr\u00e2ce \u00e0 l'\u00e9nergie abondante, la r\u00e9paration apr\u00e8s dommage est bien plus facile. Notre maison est reconstruite par des cimenteries, des camions, des grues et des aci\u00e9ries (donc de l'\u00e9nergie) ; les r\u00e9coltes insuffisantes ici sont compens\u00e9es par des cultures exc\u00e9dentaires \"ailleurs\" qui sont elles-m\u00eames produites et achemin\u00e9es gr\u00e2ce \u00e0 des usines d'engrais, tracteurs, camions, entrep\u00f4ts et j'en passe (de l'\u00e9nergie \u00e0 nouveau).\n\nLa mise \u00e0 disposition des victimes des ressources physiques permettent de reconstruire ou compenser est par ailleurs effectu\u00e9e par la mise en commun de moyens \u00e9conomiques, par le biais de l'assurance.\n\nDeux \u00e9volutions vont venir contrarier ce m\u00e9canismes \u00e0 l'avenir :\n\n- le premier, largement \u00e9voqu\u00e9 dans cette interview du DG de Groupama dans Les Echos, est l'augmentation des sinistres que l'\u00e9volution climatique va engendrer : r\u00e9coltes plus souvent atteintes, patrimoine b\u00e2ti plus souvent d\u00e9grad\u00e9 (voir \u00e0 ce propos https://bit.ly/3OH6C4f qui rappelle que la s\u00e9cheresse cause d'importants dommages par r\u00e9tractation gonflement des argiles)\n\n- le second, non \u00e9voqu\u00e9, est que notre capacit\u00e9 \u00e0 reconstruire va s'affaiblir, puisque la d\u00e9crue \u00e9nerg\u00e9tique va fatalement diminuer aussi la quantit\u00e9 d'acier, de ciment, de camions et de grues dont nous pourrons disposer.\n\nLa traduction \u00e9conomique de cette double \u00e9volution n'est pas difficile \u00e0 deviner, et c'est exactement celle \u00e9voqu\u00e9e dans cette interview : des primes plus \u00e9lev\u00e9es (il va donc y avoir aussi de l'inflation \"r\u00e9elle\" - rapport\u00e9e au revenu en clair - dans l'assurance, comme en fait partout d\u00e8s lors que les ressources physiques baissent ; c'est m\u00e9canique) et des dommages moins bien couverts (l'interview\u00e9 parle d'exclusion croissante de certains biens de l'assurance dommage des habitations par exemple).\n\nDans un monde structurellement inflationniste par rapport aux revenus r\u00e9els, nous allons devoir renoncer. Il est probablement plus facile de renoncer \u00e0 la 5G pour regarder Netflix dans le m\u00e9tro, \u00e0 la construction de stades climatis\u00e9s pour jouer au foot, ou au Black Friday pour avoir un v\u00eatement en plus, que de renoncer \u00e0 garder un toit en cas de coup dur ou avoir de quoi manger si le climat est adverse.\n\nEn tout \u00e9tat de cause, cette interview rappelle - m\u00eame si ce n'est pas sympathique - qu'\u00e0 ne vouloir rien abandonner nous prenons le risque de perdre beaucoup plus." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002220856265297920,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002220857016119296,urn:li:activity:7002220857016119296,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 102, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002220857016119296,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002220857016119296,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002220857016119296", + "threadId": "activity:7002220857016119296", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002220857016119296", + "urn": "urn:li:activity:7002220857016119296", + "numComments": 164, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002220857016119296", + "reactionTypeCounts": [ + { + "count": 2115, + "reactionType": "LIKE" + }, + { + "count": 302, + "reactionType": "INTEREST" + }, + { + "count": 237, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002220857016119296", + "numLikes": 2724, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002220857016119296", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2726, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7001982091718443008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7001982091718443008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7001982091718443008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-m%C3%AAme-%C3%A0-lautomne-la-s%C3%A9cheresse-reste-activity-7001982091718443008-KWuL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7001982090997047297", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7001982091718443008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7001982090997047297", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "5/C9h8RJl3bKza8ZOAjg3w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9089597486000845732", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675646722797?e=1677240000&v=beta&t=He1rK_g2f3pezbcmLz-o1cVeRN7pvFZfZNbFz36e3A8", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675646722798?e=1677240000&v=beta&t=X7LOGLkKzK9RUSq6TdhegvG5--G32Xkscyaw3Uzh_4c", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675646722798?e=1677240000&v=beta&t=DcazK0DmmPw18mtC5ABkdr1Aibx9RaSnJjWn2UYLnoE", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675646722798?e=1677240000&v=beta&t=pf5syXLkO4oeoGwesABh4bZ7RI1lQRaRFOWc5RzzxWs", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEvkcZbNlZTqg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9089597486000845732)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9089597486000845732)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "courrierinternational.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat. M\u00eame \u00e0 l\u2019automne, la s\u00e9cheresse reste d\u2019actualit\u00e9 en Espagne by courrierinternational.com", + "actionTarget": "https://www.courrierinternational.com/article/climat-meme-a-l-automne-la-secheresse-reste-d-actualite-en-espagne" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat. M\u00eame \u00e0 l\u2019automne, la s\u00e9cheresse reste d\u2019actualit\u00e9 en Espagne" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7001982090997047297,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Cela fait maintenant 2 mois que c'est l'automne. Normalement c'est la saison des feuilles mortes, et surtout l'\u00e9poque d'un temps nettement plus humide que ne l'a \u00e9t\u00e9 la p\u00e9riode estivale.\n\nMais en Espagne il y a eu un d\u00e9ficit de pr\u00e9cipitations d'environ 25% depuis le 1er septembre, rapporte Courrier International. En cons\u00e9quence, les r\u00e9serves d'eau sont bien plus vides que celles de gaz, et notre voisin va devoir imposer des restrictions sur l'usage de l'eau alors que nous devrions ne plus avoir de tels probl\u00e8mes \u00e0 cette \u00e9poque.\n\nLa France n'est pas non plus \u00e9pargn\u00e9e en totalit\u00e9 : il y a encore de nombreuses r\u00e9gions en France qui sont toujours en niveau \"crise\" pour l'approvisionnement en eau : https://lnkd.in/gG9eZM8\n\nRappelons, m\u00eame si ce n'est pas dr\u00f4le, qu'il est pr\u00e9vu que la d\u00e9rive climatique entra\u00eene une baisse des pr\u00e9cipitations sur toute la partie sud de l'Europe, Espagne et France comprises. Cela va mettre sous pression la production agricole, les \u00e9cosyst\u00e8mes, la production hydro\u00e9lectrique, et les infrastructures, puisque la s\u00e9cheresse favorise la r\u00e9tractation-gonflement des argiles, qui peut fortement d\u00e9grader une bonne partie des b\u00e2timents et voies de communication construits r\u00e9cemment (https://lnkd.in/ee_AXXbQ ).\n\nIl n'est donc toujours pas temps d'utiliser l'expression \"beau temps\" quand il fait soleil. Il faudrait attendre la disparition de la totalit\u00e9 des restrictions d'usage de l'eau en France et en Espagne !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7001982090997047297,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7001982091718443008,urn:li:activity:7001982091718443008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 59, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7001982091718443008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7001982091718443008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7001982091718443008", + "threadId": "activity:7001982091718443008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001982091718443008", + "urn": "urn:li:activity:7001982091718443008", + "numComments": 102, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7001982091718443008", + "reactionTypeCounts": [ + { + "count": 1064, + "reactionType": "LIKE" + }, + { + "count": 169, + "reactionType": "INTEREST" + }, + { + "count": 161, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7001982091718443008", + "numLikes": 1429, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001982091718443008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1431, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7001543092705095681", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7001543092705095681)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7001543092705095681)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_black-friday-de-bonnes-affaires-sauf-pour-activity-7001543092705095681-Tm7L?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7001543092034011136", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7001543092705095681", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7001543092034011136", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "LPQK5N8F1LooSxWEXGJGdA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7798340498303405476", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675595431832?e=1677240000&v=beta&t=0jruQcEIxQoE7WzvHM5ThEk8BWxsMd6-wpn20LGWzb0", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1199, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675595431832?e=1677240000&v=beta&t=A_KvfPDKYEJWZlbCUmxOlhQDmhzs2NVYK7OuJWyecB4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675595431832?e=1677240000&v=beta&t=8amhkhstLZHm_IwJzv6yIjfmflewJMr94fXaTTlf11M", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675595431832?e=1677240000&v=beta&t=zaQ5oy8-YR7NvwDUUB9pI9qaP5MetgWj9dTRdj_uVtQ", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQERbGygi-59dQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7798340498303405476)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7798340498303405476)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Black Friday, de bonnes affaires sauf pour le climat | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/analyse-black-friday" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Black Friday, de bonnes affaires sauf pour le climat | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7001543092034011136,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le \"Vendredi noir\" commence demain (et est devenu un week-end noir en pratique, m\u00eame s'il n'est pas question d'accidents de la route). Cette f\u00eate commerciale venue tout droit des USA apr\u00e8s Halloween (\"where else\" pourrait demander un acteur c\u00e9l\u00e8bre) est une incitation de plus \u00e0 se ruer dans les magasins puis sur son compte en banque pour acheter \u00e0 moiti\u00e9 prix des choses sans lesquelles nous allons n\u00e9cessairement nous trouver tr\u00e8s mal.\n\nCette journ\u00e9e de promotion augmente de mani\u00e8re tr\u00e8s forte les ventes en ligne, qui elles-m\u00eames augmentent de mani\u00e8re forte le fret a\u00e9rien - le plus polluant de tous - ainsi que la livraison du dernier kilom\u00e8tre, bien plus souvent faite en camionnette qu'en v\u00e9lo \u00e9lectrique.\n\nC'est une des cons\u00e9quences du fait que les objets promus sont rarement fabriqu\u00e9s en France, qu'il s'agisse d'\u00e9lectrom\u00e9nager, de v\u00eatements, ou encore d'\u00e9lectronique. Sur ce dernier poste, du reste, cette journ\u00e9e vient se combiner avec la coupe du monde, qui, dans le pass\u00e9, a \u00e9t\u00e9 un gros acc\u00e9l\u00e9rateur de la vente de t\u00e9l\u00e9visions \u00e0 grand \u00e9cran (pour mieux voir les matchs), des objets eux-m\u00eames tr\u00e8s \u00e9nergivores \u00e0 la fabrication. \n\nUn petit clic sur un site de vente en ligne sera donc une petite claque pour le climat, puisque les objets command\u00e9s n'arrivent pas par pigeon voyageur, ne sont pas fabriqu\u00e9s uniquement en rotin dans le village d'\u00e0-cot\u00e9, et poussent \u00e0 la hausse la fabrication d'emballages... et les d\u00e9chets qui vont avec.\n\nUne autre cons\u00e9quence de la fabrication \"lointaine\" des objets sur lesquels nous allons nous ruer est que leur consommation accrue d\u00e9s\u00e9quilibre la balance commerciale (puisque quasiment tout est import\u00e9). \n\nCette incitation \u00e0 faire un peu plus les cigales ne va donc pas vraiment dans la bonne direction c\u00f4t\u00e9 climat, comme le rappelle cet article publi\u00e9 sur le site de Carbone 4, et n'est pas vraiment raccord avec la sobri\u00e9t\u00e9 tant vant\u00e9e par le gouvernement (mais nous ne sommes pas \u00e0 une contradiction pr\u00e8s). \n\nPlut\u00f4t que de singer les am\u00e9ricains, nous devrions faire un Vendredi vert, avec des promotions sur les v\u00e9los (qu'il faut fabriquer plus en France, composants inclus), les isolants pour les murs, les pompes \u00e0 chaleur et la reprise des cols de chemise \u00e9lim\u00e9s !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7001543092034011136,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7001543092705095681,urn:li:activity:7001543092705095681,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 270, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7001543092705095681,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7001543092705095681,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7001543092705095681", + "threadId": "activity:7001543092705095681", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001543092705095681", + "urn": "urn:li:activity:7001543092705095681", + "numComments": 394, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7001543092705095681", + "reactionTypeCounts": [ + { + "count": 6669, + "reactionType": "LIKE" + }, + { + "count": 541, + "reactionType": "PRAISE" + }, + { + "count": 291, + "reactionType": "APPRECIATION" + }, + { + "count": 106, + "reactionType": "MAYBE" + }, + { + "count": 90, + "reactionType": "INTEREST" + }, + { + "count": 70, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7001543092705095681", + "numLikes": 7767, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001543092705095681", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7774, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7001300260295696384", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7001300260295696384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7001300260295696384)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_augustin-de-romanet-la-course-au-volume-activity-7001300260295696384-SAV6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7001300259519758336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7001300260295696384", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7001300259519758336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "1x6vatsEtHnWD8Q9fyVV/Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8259246450223429300", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675931543568?e=1677240000&v=beta&t=kCucKym5y9DMjKYciFFxE-U9X5q03oy02ENRMexWK2o", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675931543568?e=1677240000&v=beta&t=iO5EgkW6ga8KjwdMcc61yHd5H8W27CoWKVKM51mqBuM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675931543569?e=1677240000&v=beta&t=RYrDBqjeQ1KdEWeHBPyxbAFqJF-CFpB853OFsF1rIoA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675931543569?e=1677240000&v=beta&t=KqyRfrq7KorueY2p1138FBuaWv3Dz24C56K2c-1tHPE", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQG94VINE3HRvA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8259246450223429300)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8259246450223429300)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Augustin de Romanet : \u00abLa course au volume dans l'a\u00e9rien doit passer apr\u00e8s la d\u00e9carbonation\u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/augustin-de-romanet-laerien-doit-cesser-la-course-au-volume-1880072" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Augustin de Romanet\u00a0: \u00abLa course au volume dans l'a\u00e9rien doit passer apr\u00e8s la d\u00e9carbonation\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7001300259519758336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si dans une interview vous lisez les propos suivants :\n- qu'il faut faire passer la d\u00e9carbonation avant la croissance en volume dans l'a\u00e9rien\n- qu'il est d\u00e9raisonnable de multiplier les vols long-courriers pour un week-end ou quelques jours de vacances\n- que si les gens ne sont pas raisonnables il finira par y avoir des quotas de vols par an et par personne\n\n\u00e0 qui aurez vous envie de les attribuer ? \n\nUne premi\u00e8re r\u00e9ponse \"intuitive\" ne sera probablement pas l'auteur effectif de ces propos, \u00e0 savoir... le patron d'A\u00e9roports de Paris. Et pourtant c'est tr\u00e8s exactement ce qui est contenu dans cette interview parue dans Les Echos.\n\nCertes l'auteur des propos ajoute qu'il n'est pas favorable \u00e0 de tels quotas, et qu'il ne souhaite pas que l'on prive les fran\u00e7ais de la possibilit\u00e9 de d\u00e9couvrir le monde gr\u00e2ce \u00e0 l'avion. Mais il n'emp\u00eache : cet appel \u00e0 la mod\u00e9ration est une premi\u00e8re dans le secteur a\u00e9rien en France, o\u00f9 la r\u00e8gle jusqu'\u00e0 maintenant \u00e9tait plut\u00f4t que la technique allait se charger de r\u00e9gler la question carbonique pendant que le trafic poursuivrait sa croissance, et qu'il \u00e9tait hors de question d'entraver cette derni\u00e8re volontairement.\n\nLa situation actuelle n'est pourtant pas durable. L'aviation consommait environ 8% du p\u00e9trole mondial avant covid. Si on transformait en agrocarburants la totalit\u00e9 des 4 premi\u00e8res cultures mondiales (bl\u00e9 - ma\u00efs - riz - soja) cela ferait \"juste\" 25% du p\u00e9trole mondial : il est d\u00e8s lors difficile d'imaginer que l'on va massivement se priver de cultures v\u00e9g\u00e9tales (au surplus dans un monde o\u00f9 les rendements vont \u00eatre attaqu\u00e9s par le r\u00e9chauffement climatique) pour avoir simplement le plaisir de passer d'un continent \u00e0 l'autre pour aller \u00e0 l'h\u00f4tel. \n\nCertes si on d\u00e9vie massivement des cultures pour alimenter des avions plut\u00f4t que des estomacs ce ne seront pas les m\u00eames qui profiteront des voyages et qui auront faim, mais quand m\u00eame.\n\nSi l'on parle d'hydrog\u00e8ne, pour servir en carburant les avions d\u00e9collant de France il faudrait y consacrer un petit quart de la production \u00e9lectrique fran\u00e7aise : l\u00e0 aussi je pense que toute personne un peu sens\u00e9e ne prendra pas le pari sur ses propres \u00e9conomies que l'on va y arriver bient\u00f4t.\n\nDonc oui, dans un monde sans carbone et donc sans p\u00e9trole il y aura beaucoup moins d'avions qu'aujourd'hui. Se pr\u00e9parer \u00e0 la d\u00e9crue dans ce domaine n'est surement pas l'option la plus confortable intellectuellement \u00e0 court terme, mais \u00e0 un horizon plus lointain c'est n\u00e9anmoins la meilleure. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7001300259519758336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7001300260295696384,urn:li:activity:7001300260295696384,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 175, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7001300260295696384,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7001300260295696384,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7001300260295696384", + "threadId": "activity:7001300260295696384", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001300260295696384", + "urn": "urn:li:activity:7001300260295696384", + "numComments": 329, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7001300260295696384", + "reactionTypeCounts": [ + { + "count": 5578, + "reactionType": "LIKE" + }, + { + "count": 413, + "reactionType": "INTEREST" + }, + { + "count": 364, + "reactionType": "MAYBE" + }, + { + "count": 258, + "reactionType": "PRAISE" + }, + { + "count": 56, + "reactionType": "APPRECIATION" + }, + { + "count": 37, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7001300260295696384", + "reacted": "LIKE", + "numLikes": 6706, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001300260295696384", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6710, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7000731729195888642", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7000731729195888642)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7000731729195888642)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_coupe-du-monde-2022-le-mirage-de-la-compensation-activity-7000731729195888642-J80S?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7000731728361222144", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7000731729195888642", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7000731728361222144", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "TpYbe/NTJbkxcanME51m/Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8534559222220643578", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676412388842?e=1677240000&v=beta&t=U0Z1Q1-5ccDYHFjsDXM7Q_DfRIf7uQne2QNs705d0OM", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676412388843?e=1677240000&v=beta&t=syzE4CzJlz3EKQoSFFiNjKRvC7TON5KA9MkLH65x1f0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676412388843?e=1677240000&v=beta&t=LL9Fas58rSzWCWckICpN9JL-Y028Uu9VZCuur3LY_P8", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676412388843?e=1677240000&v=beta&t=eybCRC6o0tmiS3EhPz3h02m_I8TAhb5KGIe1OOM5gOE", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGgqymP3wEOAQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8534559222220643578)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8534559222220643578)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Coupe du monde 2022 : le mirage de la compensation carbone pour atteindre la \u00ab neutralit\u00e9 \u00bb promise par la FIFA by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/football/article/2022/11/18/coupe-du-monde-2022-le-mirage-de-la-compensation-carbone-pour-atteindre-la-neutralite-promise-par-la-fifa_6150404_1616938.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Coupe du monde 2022\u00a0: le mirage de la compensation carbone pour atteindre la \u00ab\u00a0neutralit\u00e9\u00a0\u00bb promise par la FIFA" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7000731728361222144,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si cette information rapport\u00e9e par Le Monde est exacte, la F\u00e9d\u00e9ration Internationale de Football (FIFA) a des progr\u00e8s \u00e0 faire en mati\u00e8re de compr\u00e9hension de la science du climat.\n\nDe Google \u00e0 Microsoft, en passant par le transport a\u00e9rien ou... La Poste, de nombreuses entreprises ou organisations ont affirm\u00e9 pouvoir r\u00e9duire leur impact sur le climat \u00e0 z\u00e9ro par le biais de la \"compensation\". La technique est en apparence simple et de bon gout : on compte les \u00e9missions associ\u00e9es \u00e0 l'organisation (id\u00e9alement en les limitant au plus petit p\u00e9rim\u00e8tre possible), puis on ach\u00e8te des \"cr\u00e9dits carbone\" qui sont cens\u00e9s correspondre \u00e0 des \u00e9missions \u00e9vit\u00e9es (ou du carbone s\u00e9questr\u00e9 par reforestation) ailleurs, et le tour est jou\u00e9 : plus et moins ca fait z\u00e9ro.\n\nSauf que... pour les raisons expliqu\u00e9es en r\u00e9sum\u00e9 sur https://lnkd.in/dGTt6Zs , cette approche n'a pas de fondement scientifique. Elle donne donc au final l'illusion que l'activit\u00e9 consid\u00e9r\u00e9e peut continuer comme aujourd'hui dans un monde neutre en carbone, alors que c'est l'exact inverse qui est vrai : dans un tel monde, la quasi-totalit\u00e9 des organisations ou entreprises ne peuvent garder les m\u00eames clients, pour leur vendre la m\u00eame chose, fabriqu\u00e9e ou mise \u00e0 disposition de la m\u00eame mani\u00e8re. \n\nPar ailleurs la comptabilit\u00e9 m\u00eame des cr\u00e9dits carbone est tr\u00e8s discutable : elle ne tient pas compte du moment effectif d'\u00e9vitement (maintenant ou beaucoup plus tard), et attribue \u00e0 l'acheteur du cr\u00e9dit la totalit\u00e9 des \u00e9missions \u00e9vit\u00e9es par un projet alors m\u00eame que l'acheteur ne finance qu'une partie de ce qui permet cet \u00e9vitement. \n\nLa FIFA nous raconte donc des salades en consid\u00e9rant que, dans un monde sans \u00e9missions du tout, elle pourra continuer \u00e0 organiser des manifestations demandant 1 million de touristes a\u00e9roport\u00e9s, se rendant dans un stade climatis\u00e9, l'ensemble \u00e9tant financ\u00e9 par des recettes publicitaires de vendeurs de tout un tas de trucs qui ne pourront plus fabriquer une large partie de leurs produits.\n\nCette affirmation de \"neutralit\u00e9\" est - c'est de circonstance - se mettre la t\u00eate dans le sable, parce que \u00e0 l'\u00e9vidence dans un monde sans \u00e9missions les manifestations sportives \"plan\u00e9taires\" seront plus rares et plus modestes.\n\nEt, pour parler de neutralit\u00e9, la bonne approche est de compter s\u00e9par\u00e9ment sa contribution aux puits et ses \u00e9missions induites, et de se demander ce qui passe toujours dans un monde o\u00f9 les \u00e9missions globales baissent de 5% par an. Le bagage m\u00e9thodologique existe pour cela (voir https://lnkd.in/db7JzB2q ), mais s'y lancer demande \u00e9videmment plus de courage que de faire un communiqu\u00e9 de presse sans fondement !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7000731728361222144,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7000731729195888642,urn:li:activity:7000731729195888642,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 129, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7000731729195888642,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7000731729195888642,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7000731729195888642", + "threadId": "activity:7000731729195888642", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000731729195888642", + "urn": "urn:li:activity:7000731729195888642", + "numComments": 181, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7000731729195888642", + "reactionTypeCounts": [ + { + "count": 3001, + "reactionType": "LIKE" + }, + { + "count": 260, + "reactionType": "INTEREST" + }, + { + "count": 215, + "reactionType": "PRAISE" + }, + { + "count": 96, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "APPRECIATION" + }, + { + "count": 17, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7000731729195888642", + "numLikes": 3629, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000731729195888642", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3642, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7000475429773963264", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7000475429773963264)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7000475429773963264)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_autonomie-%C3%A9nerg%C3%A9tique-ces-villes-qui-y-activity-7000475429773963264-Jlqq?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7000475428607901696", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7000475429773963264", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7000475428607901696", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "Bkber5pOu7sQhDsZ6hs1nA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8392422123000208391", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676302316259?e=1677240000&v=beta&t=knQHvM3w1p7CfRWt7HLljKWLGtSmRK_JyBX_IgtSfXQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676302316259?e=1677240000&v=beta&t=hLwVRg_QnCoChvXOzmjy9fVZ0NcMWVxCQJsX5zeRGjo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676302316259?e=1677240000&v=beta&t=0JXBaU49PmY1cKrNIWLWmpVEJl-J15P980uhoBMR_uo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676302316260?e=1677240000&v=beta&t=DHvhJDRpNpzieKhUfVWzt5vp1zbtndy-WWrYN-NmoJs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFFJ3l1Gux0RA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8392422123000208391)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8392422123000208391)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Autonomie \u00e9nerg\u00e9tique : ces villes qui y sont presque by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/autonomie-energetique-ces-villes-qui-y-sont-presque-1879686" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Autonomie \u00e9nerg\u00e9tique\u00a0: ces villes qui y sont presque" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7000475428607901696,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les Echos sont tomb\u00e9s dans le panneau... publicitaire de certains \u00e9lus locaux. Un certain nombre de communes revendiquent d\u00e9sormais une \"autonomie \u00e9nerg\u00e9tique\". Cette expression v\u00e9hicule explicitement l'id\u00e9e qu'un territoire pourrait se replier sur lui-m\u00eame, et vivre \u00e0 l'avenir en ne comptant que sur ses propres forces. Fini la d\u00e9pendance aux autres, et en route vers le paradis !\n\nMalheureusement, cette expression rel\u00e8ve d'une illusion d'optique. Tout d'abord, m\u00eame en se limitant aux consommations directes des m\u00e9nages (sans parler des entreprises, g\u00e9n\u00e9ralement non prises en compte), l'\u00e9nergie consid\u00e9r\u00e9e est le plus souvent (voire quasiment toujours ) limit\u00e9e \u00e0 l'\u00e9lectricit\u00e9, le gaz \u00e9tant parfois (mais rarement) inclus. C'est oublier un peu vite que la premi\u00e8re \u00e9nergie finale consomm\u00e9e en France c'est le p\u00e9trole. Et les puits de p\u00e9trole sont rares en France !\n\nM\u00eame les communes qui produiraient des cultures pour agrocarburants ne peuvent utiliser ces derniers purs : il n'existe pas de moteur de voiture \u00e0 l'\u00e9thanol ou \u00e0 l'huile de colza en France. \n\nEnsuite une large partie de l'\u00e9nergie consomm\u00e9e par les m\u00e9nages est incorpor\u00e9e dans les aliments, v\u00eatements, objets et services publics ou priv\u00e9s dont ils b\u00e9n\u00e9ficient : o\u00f9 est l'autonomie \u00e9nerg\u00e9tique quand on d\u00e9pend des mines de charbon australiennes et de la marine marchande mondiale pour avoir des objets en acier ?\n\nEnfin cette notion \"d'autonomie \u00e9nerg\u00e9tique\" (et \"d'\u00e9nergie positive\") est apparue avec les renouvelables. Je n'ai jamais entendu une commune poss\u00e9dant un barrage ou une centrale nucl\u00e9aire la revendiquer, alors qu'elle serait nettement plus justifi\u00e9e dans ces derniers cas si le concept \u00e9tait valide !\n\nIncidemment, si l'autonomie uniquement \u00e9lectrique \u00e9tait r\u00e9elle pour les communes qui la revendiquent \u00e0 cause de leurs \u00e9oliennes (cas \u00e9voqu\u00e9 dans l'article), cela signifierait que l'on pourrait couper la commune en question du r\u00e9seau national (si on est autonome on n'a plus besoin des autres, correct ?). Mais... avoir une production annuelle \u00e9quivalente \u00e0 la consommation annuelle ne garantirait pas pour autant de l'\u00e9lectricit\u00e9 aux habitants concern\u00e9s les jours avec peu ou pas de vent. Ces communes restent d\u00e9pendantes du r\u00e9seau et donc... ne sont pas autonomes, m\u00eame pour l'\u00e9lectricit\u00e9.\n\nEn fait, dans notre pays, aucune commune ne peut s'extraire de la mondialisation (et donc de l'\u00e9nergie utilis\u00e9e \"ailleurs\"), qui fournit \u00e0 nos habitants logements (qui contiennent de l'acier alors que nous n'avons plus de minerai de fer en France), v\u00e9hicules, aliments et v\u00eatements, et m\u00eame... les \u00e9oliennes qui rendent \"autonomes\" qui sont fabriqu\u00e9es ailleurs !\n\nCela ne nous fait pas courir plus vite dans la bonne direction que de se tromper sur le sens des mots. Pire : en cr\u00e9ant l'illusion d'une s\u00e9curit\u00e9 qui n'existe pas, nous augmentons le risque." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7000475428607901696,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7000475429773963264,urn:li:activity:7000475429773963264,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 133, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7000475429773963264,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7000475429773963264,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7000475429773963264", + "threadId": "activity:7000475429773963264", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000475429773963264", + "urn": "urn:li:activity:7000475429773963264", + "numComments": 258, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7000475429773963264", + "reactionTypeCounts": [ + { + "count": 2875, + "reactionType": "LIKE" + }, + { + "count": 300, + "reactionType": "INTEREST" + }, + { + "count": 191, + "reactionType": "PRAISE" + }, + { + "count": 106, + "reactionType": "MAYBE" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7000475429773963264", + "numLikes": 3506, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000475429773963264", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3515, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7000055382219837440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7000055382219837440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7000055382219837440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-marc-jancovici-the-shift-project-activity-7000055382219837440-qqX7?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7000055381280313344", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7000055382219837440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7000055381280313344", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "IneGcM0XrS+hnD1uNUuuvg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7567828376856683698", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676311096259?e=1677240000&v=beta&t=j1ENF_uJOE2upWwOSx8Hhpv7dh9X1BSL3otAgriSX_I", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676311096259?e=1677240000&v=beta&t=j2p3q2NmfdkASONWmfKd0dX5Iu4a54lB8Bpf156vNTQ", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676311096259?e=1677240000&v=beta&t=D_VaU6fhSvzbaOmM_m7YgHq5TIcnjgfPyS3ohEA225M", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676311096259?e=1677240000&v=beta&t=J0gdlKo8X94MhOoSAeJAsRaQCUU7OKqhy-PpjKQn14Y", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGcbPSVCiClrQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7567828376856683698)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7567828376856683698)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lecho.be \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean-Marc Jancovici (The Shift Project): \"Si votre entreprise ne parvient pas \u00e0 d\u00e9carboner, elle devra t\u00f4t ou tard fermer boutique\" by lecho.be", + "actionTarget": "https://www.lecho.be/dossiers/climat/jean-marc-jancovici-the-shift-project-si-votre-entreprise-ne-parvient-pas-a-decarboner-elle-devra-tot-ou-tard-fermer-boutique/10429041" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici (The Shift Project): \"Si votre entreprise ne parvient pas \u00e0 d\u00e9carboner, elle devra t\u00f4t ou tard fermer boutique\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7000055381280313344,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 51, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "eQlcwYwMRqCC5UfsMCc/cA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "A l'occasion d'un p\u00e9riple en Belgique organis\u00e9 par Les Shifters (belges !), l'Echo a publi\u00e9 une interview de votre serviteur. COP 27, hydrog\u00e8ne, sobri\u00e9t\u00e9, nucl\u00e9aire, d\u00e9croissance, taxe carbone et capitalisme (entre autres) ont fait l'objet du classique jeu de questions-r\u00e9ponses. Je profite de l'occasion pour rappeler quelques pr\u00e9cautions d'emploi en pareil cas.\n\nApr\u00e8s une interview (que je ne sollicite jamais, pas plus qu'un portrait, exercice que je trouve plein d'effets pervers), le texte publi\u00e9 est r\u00e9dig\u00e9 par le/la journaliste que j'ai rencontr\u00e9(e), et non par bibi. M\u00eame si je demande toujours \u00e0 me relire, le r\u00e9sultat n'est jamais ce que j'aurais \u00e9crit si j'avais r\u00e9dig\u00e9 les r\u00e9ponses en partant de z\u00e9ro.\n\nEn particulier, mon style oral et mon style \u00e9crit sont diff\u00e9rents. A l'oral, l'intonation, l'expression faciale ou le contexte autorisent des tournures qui ne prennent pas la m\u00eame signification \u00e0 l'\u00e9crit, sans ces \"\u00e0-c\u00f4t\u00e9s\". La seule mani\u00e8re d'\u00e9viter les malentendus est d'utiliser un style adapt\u00e9 \u00e0 chaque cas.\n\nPourtant, les transcriptions \u00e9crites reprennent souvent une partie des verbatim de l'interview. Cela peut donner une impression injustifi\u00e9e de radicalit\u00e9 qui n'aurait pas exist\u00e9 en style \u00e9crit utilis\u00e9 d'embl\u00e9e.\n\nUne autre pr\u00e9caution d'usage concerne le chap\u00f4 qui pr\u00e9sente l'interview\u00e9(e) : il est fait par la r\u00e9daction du journal, sans relecture, et n'engage pas la personne concern\u00e9e. C'est aussi le cas pour tout \"portrait\" publi\u00e9 dans la presse.\n\nIncidemment, \"ma\" page Wikipedia est un portrait parmi d'autres, essentiellement bas\u00e9 sur des portraits ou avis de journalistes rapportant des avis de tiers (il suffit de regarder les r\u00e9f\u00e9rences), soit de l'information de 3\u00e8 main ou plus. Je n'en ai pas \u00e9crit une ligne, et elle comporte plusieurs dizaines d'erreurs factuelles ou de conclusions erron\u00e9es.\n\nL'Echo a repris l'expression \"rock star de l'\u00e9cologie\" utilis\u00e9e r\u00e9cemment par Le Monde. S'exprimer parfois dans des amphis bien remplis n'est pas vraiment comparable \u00e0 remplir le Stade de France ! M\u00eame avec l'audience digitale, le compte n'y est pas : sur Youtube \"ma\" vid\u00e9o la plus regard\u00e9e d\u00e9passe 3 millions de vues ; pour Rihanna ou DJ Khaled on d\u00e9passe le milliard de vues (https://bit.ly/3Ep4nhb ).\n\nEnfin l'expression servant de titre correspond toujours \u00e0 un sujet \u00e9voqu\u00e9, mais pas n\u00e9cessairement celui sur lequel j'ai le plus insist\u00e9, alors que c'est l'impression que cela donne. Cet effet s'amplifie si d'autres journalistes reprennent cette expression comme si elle \u00e9tait de moi mot \u00e0 mot : ce qui \u00e9tait une mise en exergue d'un(e) journaliste devient ce qui fait foi !\n\nTout ca pour dire que, pour moi comme pour n'importe qui, la seule chose qui m'engage est ce que j'\u00e9cris en direct, ou prononce \u00e0 l'oral dans un enregistrement non mont\u00e9. Tout le reste incorpore peu ou prou l'avis de quelqu'un d'autre, m\u00eame une interview. Dans le cas pr\u00e9sent on est dans la nuance, mais dans un portrait il peut y avoir des erreurs grossi\u00e8res." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7000055381280313344,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7000055382219837440,urn:li:activity:7000055382219837440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7000055382219837440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7000055382219837440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7000055382219837440", + "threadId": "activity:7000055382219837440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000055382219837440", + "urn": "urn:li:activity:7000055382219837440", + "numComments": 76, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7000055382219837440", + "reactionTypeCounts": [ + { + "count": 964, + "reactionType": "LIKE" + }, + { + "count": 54, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "APPRECIATION" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 28, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7000055382219837440", + "numLikes": 1126, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000055382219837440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1127, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6999689020733554688", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6999689020733554688)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6999689020733554688)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cop-27-jean-marc-jancovici-explique-pourquoi-activity-6999689020733554688-_8Pn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6999689019898871808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6999689020733554688", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6999689019898871808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "/HrhXk5QLuepiyivTtOTLA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8045091743199397876", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676292863883?e=1677240000&v=beta&t=mGFUiF12pQB91rDSnhfNXj0NYKmLv7jR_s3OsFWHxq8", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1199, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676292863883?e=1677240000&v=beta&t=VkueliHYtQCNoZtEhYTckb2Zcn5YLUVh3lM5WioY7LE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676292863883?e=1677240000&v=beta&t=7USaFvbMxD_EYguGlANr1D926y1UIIhNvWZWtDu6J2Q", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676292863883?e=1677240000&v=beta&t=f0M2TEcQh4KJUaRW1A0M7Q5owZzl0Y5Dhf1f8-OweQo", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGKNHYgSZo8Pg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8045091743199397876)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8045091743199397876)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: COP 27 : Jean-Marc Jancovici explique pourquoi \u00e7a n'est pas un succ\u00e8s by rtl.fr", + "actionTarget": "https://www.rtl.fr/actu/debats-societe/cop27-jean-marc-jancovici-explique-pourquoi-ca-n-est-pas-un-succes-7900207731" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "COP 27 : Jean-Marc Jancovici explique pourquoi \u00e7a n'est pas un succ\u00e8s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6999689019898871808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Que penser de la COP 27, qui se termine (normalement) aujourd'hui en Egypte ? Rien de plus et rien de moins que ce qu'il faut penser des autres COP, ai-je tent\u00e9 d'expliquer aujourd'hui aux auditrices et auditeurs (matinaux !) de RTL : le processus onusien conduira par nature \u00e0 aboutir \u00e0 un texte qui ne peut pas juridiquement contraindre quelque pays que ce soit \u00e0 faire plus que ce qu'il d\u00e9sire d\u00e9j\u00e0 faire.\n\nRappelons que, depuis le Trait\u00e9 de Westphalie, les \u00e9tats sont souverains : un \u00e9tat ne peut imposer \u00e0 un autre ses r\u00e8gles par le droit. Le processus onusien en prend acte, et demande \u00e0 ce que les d\u00e9cisions soient prises \u00e0 l'unanimit\u00e9 et par consensus. Une telle dynamique conduit n\u00e9cessairement \u00e0 un texte qui ne cr\u00e9e aucune obligation nouvelle significative pour les pays.\n\nIl y a eu une exception dans l'histoire des COP, que je rappelle dans cette chronique, et qui a pourtant correspondu \u00e0 l'ann\u00e9e o\u00f9 la presse a conclu le plus rapidement que cela avait \u00e9t\u00e9 un \u00e9chec : Copenhague (la COP 15, en 2009). \n\nLes \"moins de 2\u00b0C\" d\u00e9sormais associ\u00e9s \u00e0 l'Accord de Paris datent en effet... de Copenhague, comme toutes les autres dispositions fortes qui ont \u00e9t\u00e9 avalis\u00e9es \u00e0 Paris. Et ces \u00e9l\u00e9ments ont pu \u00eatre act\u00e9s parce que Copenhague a \u00e9t\u00e9, de fa\u00e7on impr\u00e9vue, la seule COP qui ait \u00e9t\u00e9 une OPA du G20 sur les Nations Unies. \n\nAu retour de la COP - o\u00f9 j'avais \u00e9t\u00e9 les 15 jours - j'avais pris la plume pour expliquer pourquoi elle \u00e9tait en fait l'un des rares succ\u00e8s des discussions internationales : https://bit.ly/3GuuPIT Ce mot d'\u00e9chec est arriv\u00e9 parce que c'est le processus et non le fond qui a \u00e9t\u00e9 comment\u00e9 par les ONG, les seules \u00e0 pouvoir s'exprimer dans la presse \u00e0 l'approche de la fin de la COP, alors que les d\u00e9l\u00e9gations nationales \u00e9taient tenues au silence devant la r\u00e9union des pr\u00e9sidents en cours.\n\nComme les danois avaient fait une erreur logistique en ne pr\u00e9voyant pas assez de place pour laisser rentrer tout le monde la 2\u00e8 semaine (alors que les d\u00e9l\u00e9gations pr\u00e9sidentielles \u00e9taient arriv\u00e9s en masse), les repr\u00e9sentants des ONG \u00e9taient pass\u00e9s de 5000 \u00e0... 90, et ceux toujours admis \u00e0 rentrer dans l'enceinte de la COP \u00e9taient du coup tr\u00e8s \u00e9nerv\u00e9s par ce qu'elles consid\u00e9raient \u00eatre une entorse majeure au principe de transparence des n\u00e9gociations. \n\nSi on y ajoute la forme de la discussion (exit les d\u00e9l\u00e9gations nationales, remplac\u00e9es au pied lev\u00e9 par des pr\u00e9sidents discutant en direct dans une salle), cette fin de COP n'avait plus rien d'onusien, et c'est cela qui a conduit les ONG \u00e0 parler d'\u00e9chec \u00e0 la presse, constat discutable mais devenu depuis l'\u00e9vidence pour le public. \n\nC'est pourtant \u00e0 cet \"\u00e9chec\" que l'on doit l'objectif politique des 2\u00b0C, d\u00e9sormais si pr\u00e9cieux pour cadrer toute l'action - m\u00eame insuffisante - des entreprises et des \u00e9tats dans les d\u00e9bats domestiques. \n\nSi, du point de vue du formalisme onusien, elle est un succ\u00e8s, la COP 27 ne changera pas plus le cours des choses \"\u00e0 notre place\" que les autres. Quoi qu'en dise la presse..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6999689019898871808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6999689020733554688,urn:li:activity:6999689020733554688,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 71, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6999689020733554688,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6999689020733554688,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6999689020733554688", + "threadId": "activity:6999689020733554688", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999689020733554688", + "urn": "urn:li:activity:6999689020733554688", + "numComments": 118, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6999689020733554688", + "reactionTypeCounts": [ + { + "count": 1090, + "reactionType": "LIKE" + }, + { + "count": 140, + "reactionType": "INTEREST" + }, + { + "count": 129, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6999689020733554688", + "numLikes": 1387, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999689020733554688", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1388, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6999439943286554624", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6999439943286554624)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6999439943286554624)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carrefour-acte-le-d%C3%A9classement-de-la-soci%C3%A9t%C3%A9-activity-6999439943286554624-9L7t?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6999439942372229121", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6999439943286554624", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6999439942372229121", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "cy58ZyoCnJ55bK+VUYm+Ug==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7401995635390681707", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676110940690?e=1677240000&v=beta&t=Q0iwGL79t_1wR29hVmUjGgFAZlisR2KNLoPKC7-dHZU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676110940690?e=1677240000&v=beta&t=2X-iiwUNBW_yBvmlagYgAOwBkE9ILZAx7BdouiOuyi4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676110940690?e=1677240000&v=beta&t=hIXV7-LuUHHrjo-RFV3QbPTee0tD3fFhfjp7bR4SDd4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676110940690?e=1677240000&v=beta&t=xKwh0WdV_RtRE9QmpBthd-gpFZXnTc-LiChW87DXFmc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFs7-hl2Mq0yw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7401995635390681707)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7401995635390681707)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carrefour acte le d\u00e9classement de la soci\u00e9t\u00e9 fran\u00e7aise by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/carrefour-acte-le-declassement-de-la-societe-francaise-1879303" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carrefour acte le d\u00e9classement de la soci\u00e9t\u00e9 fran\u00e7aise" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6999439942372229121,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Vive la croissance verte ! Vous savez, celle qui ne suppose pas de consommer plus de ressources, et qui va donc permettre de marier PIB en hausse et flux physiques en baisse.\n\nSauf que... cette croissance l\u00e0, \u00e0 supposer qu'elle arrive, ne permet pas d'avoir la constance en volume des objets parfaitement mat\u00e9riels que les fran\u00e7aises et les fran\u00e7ais ach\u00e8tent. Et il se trouve que, pour le moment, et probablement pour un certain temps encore, les brosses \u00e0 dents, machines \u00e0 laver, m\u00e8tres carr\u00e9s de moquette, pantalons, produits alimentaires, m\u00e8tres carr\u00e9s de logement, tonnes de voitures, sans oublier les m\u00e8tres cubes de gaz ou d'eau qui entrent dans un logement sont parfaitement mat\u00e9riels.\n\nSi les flux physiques de production baissent parce que la quantit\u00e9 d'\u00e9nergie disponible - et donc la quantit\u00e9 de machines au travail - baisse, peu importe la fa\u00e7on dont les choses se passeront sur le plan des prix : de fait il sera plus difficile \u00e0 la population de ce procurer tout ce qui est \"physique\", du tube de colle aux kilom\u00e8tres en voiture, en passant par les t\u00e9l\u00e9phones, les cartables et les p\u00e2tes \u00e0 la tomate.\n\nOr, l'\u00e9nergie disponible baisse en Europe depuis 2007. Donc la production domestique de ce qui est \"physique\" y baisse (la confirmation se trouve dans les s\u00e9ries longues des tonnes charg\u00e9es dans les camions et des m\u00e8tres carr\u00e9s construits en Europe). On peut temporairement compenser par des importations pay\u00e9es par des revenus \"autres\" (activit\u00e9s financi\u00e8res et b\u00e9n\u00e9fices rapatri\u00e9s, par exemple), mais cette mani\u00e8re de proc\u00e9der a ses limites.\n\nIl se trouve que cette baisse de la possibilit\u00e9 d'acheter se traduit d\u00e9j\u00e0 de fa\u00e7on mon\u00e9taire. Le revenu disponible des m\u00e9nages est en effet pass\u00e9 par un maximum en 2010 et a fortement baiss\u00e9 ensuite, avant de remonter \u00e0 partir de 2014 (quand l'\u00e9nergie disponible en Europe est remont\u00e9e gr\u00e2ce au shale oil !), sans pour autant revenir au niveau ant\u00e9rieur. \n\nEt surtout la logique voudrait malheureusement que cet indicateur reparte \u00e0 la baisse, dans le droit fil de l'approvisionnement \u00e9nerg\u00e9tique europ\u00e9en qui va faire de m\u00eame (NB: la s\u00e9rie de l'INSEE que j'ai obtenue sur https://bit.ly/3UR7BRR s'arr\u00eate en 2019).\n\nL'article des Echos qui annonce la cr\u00e9ation par Carrefour d'une nouvelle enseigne ciblant les faibles revenus ouvre probablement une nouvelle \u00e8re : celle de l'\u00e9conomie... des \u00e9conomies. L'auteur rappelle \u00e0 juste titre que l'on peut mettre dans le m\u00eame panier que cette nouvelle enseigne Blablacar, AirBnb, la colocation, les bus Macron et Too Good to Go : \u00e0 chaque fois c'est une r\u00e9ponse pour conserver des services dans un monde avec mat\u00e9riellement moins. \n\nFaut-il se plaindre d'avoir moins de r\u00e9f\u00e9rences et moins d'emballages dans les magasins ? Faut-il appeler cela d\u00e9classement (donc pauvret\u00e9), comme le font Les Echos, ou sobri\u00e9t\u00e9 ? Tant que nous vivrons dans une soci\u00e9t\u00e9 de la tentation, c'est probablement la premi\u00e8re r\u00e9ponse qui sera la bonne, h\u00e9las. Il reste \u00e0 inventer le r\u00e9cit pour passer \u00e0 la seconde." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6999439942372229121,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6999439943286554624,urn:li:activity:6999439943286554624,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 58, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6999439943286554624,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6999439943286554624,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6999439943286554624", + "threadId": "activity:6999439943286554624", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999439943286554624", + "urn": "urn:li:activity:6999439943286554624", + "numComments": 93, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6999439943286554624", + "reactionTypeCounts": [ + { + "count": 1208, + "reactionType": "LIKE" + }, + { + "count": 131, + "reactionType": "MAYBE" + }, + { + "count": 124, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6999439943286554624", + "numLikes": 1501, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999439943286554624", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1502, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 Edited \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6999135868418465792", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6999135868418465792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6999135868418465792)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_il-arrive-aux-instances-de-supervision-activity-6999135868418465792-PfwE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6999135867332087808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6999135868418465792", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6999135867332087808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "W5VufP29mnQAcsOdpj/f3A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGVmp0-xQNHdw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGVmp0-xQNHdw", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1668724027136?e=1679529600&v=beta&t=TnFLTaAyNYZNtMpzh5tmiyKlF4vuH-NkMhrtXhIq_ss", + "expiresAt": 1679529600000, + "height": 290 + }, + { + "width": 2332, + "fileIdentifyingUrlPathSegment": "20/0/1668724027085?e=1679529600&v=beta&t=wYBVI2Dbq7OUSq2rcHnWsVWMMobmUlNh7gmi0Vtybi4", + "expiresAt": 1679529600000, + "height": 330 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1668724027085?e=1679529600&v=beta&t=z3_AESExjt1u-qJoPVUSHmjv1ayG9k8lyBWyP45-5Lo", + "expiresAt": 1679529600000, + "height": 181 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1668724027085?e=1679529600&v=beta&t=Qax37wLUFbH0z7pTiAiOgmF_I8HZ595x8bnE5e2DzQg", + "expiresAt": 1679529600000, + "height": 68 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1668724027085?e=1679529600&v=beta&t=sIFOkhWDpFeLBnR_ncynlHm43VDuglVB5C0kwwbkM9w", + "expiresAt": 1679529600000, + "height": 23 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1668724027085?e=1679529600&v=beta&t=tE6lgs0USJhwCz22KcFuGHQIrNSdehyighKkOkAzvdY", + "expiresAt": 1679529600000, + "height": 113 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGVmp0-xQNHdw/feedshare-shrink_" + }, + "displayAspectRatio": 0.14150943396226415 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6999135867332087808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il arrive aux instances de supervision - qui ont pour mission de faire \u00e0 la fois les r\u00e8gles et parfois la police dans un secteur r\u00e9glement\u00e9, par exemple la comptabilit\u00e9 ou l'assurance - de faire des consultations.\n\nCe genre de d\u00e9marche vise \u00e0 prendre l'avis de \"qui veut\" (en fait c'est plut\u00f4t \"qui est au courant et a le temps de r\u00e9pondre\" !) pour ensuite nourrir une future \u00e9volution des r\u00e8gles applicables au secteur.\n\nLes 3 autorit\u00e9s europ\u00e9ennes qui concernent le monde bancaire et financier (European Banking Authority, European Insurance and Occupational Pensions Authority, et European Securities and Market Authority, qui supervisent respectivement les banques, les compagnies d'assurance et les places de march\u00e9) viennent de lancer une consultation sur... le greenwashing : https://lnkd.in/eif8F2XC\n\nJe n'y aurais pas pens\u00e9, mais l'id\u00e9e est franchement excellente. En effet, le meilleur moyen de corriger une r\u00e9glementation qui n'atteint pas encore son but est de se faire expliquer toutes les mani\u00e8res de la d\u00e9voyer !\n\nDe fait, le \"verdissement\" du secteur financier dans son ensemble est aujourd'hui discutable. Les annonces de finance durable se multiplient comme les petits pains, mais dans les faits les pratiques sont toujours \u00e0 peu pr\u00e8s les m\u00eames, et l'\u00e9conomie financ\u00e9e toujours la m\u00eame (ce n'est pas un jugement de valeur mais un fait). Il est donc tout \u00e0 fait pertinent de poser la question des techniques utilis\u00e9es pour faire prendre des vessies pour des lanternes.\n\nCe proc\u00e9d\u00e9 pourrait utilement \u00eatre \u00e9tendu \u00e0 d'autres secteurs, et notamment la publicit\u00e9. Le Bureau de V\u00e9rification de la Publicit\u00e9 pourrait ouvrir une grande consultation en demandant aux r\u00e9pondantes de d\u00e9crire toutes les formes possibles de publicit\u00e9 mensong\u00e8re en mati\u00e8re d'environnement. A l'inverse du message pr\u00e9c\u00e9dant souvent les oeuvres de fiction, on y verrait assez souvent un rapport avec des faits et des personnages ayant exist\u00e9 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6999135867332087808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6999135868418465792,urn:li:activity:6999135868418465792,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6999135868418465792,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6999135868418465792,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6999135868418465792", + "threadId": "activity:6999135868418465792", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999135868418465792", + "urn": "urn:li:activity:6999135868418465792", + "numComments": 31, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6999135868418465792", + "reactionTypeCounts": [ + { + "count": 488, + "reactionType": "LIKE" + }, + { + "count": 46, + "reactionType": "MAYBE" + }, + { + "count": 24, + "reactionType": "INTEREST" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6999135868418465792", + "numLikes": 589, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999135868418465792", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 591, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6998765435470888961", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6998765435470888961)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6998765435470888961)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_ce-gigantesque-village-de-marque-et-ses-100-activity-6998765435470888961-SpLz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6998765434871128064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6998765435470888961", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6998765434871128064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "NEOq9gH0OUaKlHqO0v/S6A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8757585883586012526", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676178950553?e=1677240000&v=beta&t=8nkBAQV7PUu0khMDChZvoJxzPpmpLTkqNBBXgP3lnt0", + "expiresAt": 1677240000000, + "height": 493 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676178950553?e=1677240000&v=beta&t=S1hM41RuQiasoJvut-aqbvvugobzrg4EMjqE0WwmABs", + "expiresAt": 1677240000000, + "height": 789 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676178950553?e=1677240000&v=beta&t=SUjxh9ctotm2uya3zCGtwTBrspIfb8la6ZToPhTofIg", + "expiresAt": 1677240000000, + "height": 98 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676178950554?e=1677240000&v=beta&t=TIiScrRgFSQe6NeyjCQu-kP9CqdA_o6sQRai5W2f4DQ", + "expiresAt": 1677240000000, + "height": 295 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEYeYYCcuIcOg/articleshare-shrink_" + }, + "displayAspectRatio": 0.61625 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Une centaine de boutiques de grandes marques comme Adidas ou Levis vont ouvrir." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8757585883586012526)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8757585883586012526)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "actu.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Ce gigantesque village de marque et ses 100 magasins vont sortir de terre \u00e0 1 heure de Lyon by actu.fr", + "actionTarget": "https://actu.fr/auvergne-rhone-alpes/valserhone_01033/ce-gigantesque-village-de-marque-et-ses-100-magasins-vont-sortir-de-terre-a-1-heure-de-lyon_55210956.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Ce gigantesque village de marque et ses 100 magasins vont sortir de terre \u00e0 1 heure de Lyon" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6998765434871128064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Prenez un pays qui souhaite limiter l'usage de la voiture. Qui souhaite inciter \u00e0 la sobri\u00e9t\u00e9. Qui souhaite limiter ses importations. Qui souhaite baisser ses \u00e9missions de gaz \u00e0 effet de serre. Et qui souhaite arr\u00eater l'artificialisation des sols. \n\nDans un tel pays on se dirait que l'on va inciter \u00e0 ce que les nouveaux commerces soient \u00e9tablis pr\u00e8s des logements,\n de telle sorte que l'on puisse y aller au maximum sans voiture ; on va \u00e9viter de construire de nouveaux parkings g\u00e9ants qui imperm\u00e9abilisent le sol et sont des aspirateurs \u00e0 voiture ; on va \u00e9viter de cr\u00e9er des \"villages de la tentation\" pour inciter \u00e0 consommer encore plus d'objets (notamment v\u00eatements et accessoires) alors que ce n'est peut-\u00eatre pas la priorit\u00e9 ; enfin on va \u00e9viter de favoriser la consommation de biens import\u00e9s (sachant que les \"marques pas ch\u00e8res\" se fournissent pour l'essentiel hors de France, puisque la condition des prix bas est de ne pas fabriquer dans l'Hexagone).\n\nLe \"gigantesque village de marques\" qui s'ouvrira bient\u00f4t entre Lyon et Gen\u00e8ve illustre \u00e0 merveille que pour le moment les grands discours ne sont pas n\u00e9cessairement incarn\u00e9s dans les projets concrets. Dans le cas pr\u00e9sent le probl\u00e8me n'est pas un d\u00e9faut de financement ou de comp\u00e9tences pour faire ce qu'il faut faire : il est un d\u00e9faut de r\u00e8gles emp\u00eachant l'apparition de projets qui contribuent \u00e0 nous entra\u00eener dans mauvaise direction. \n\nCar c'est une chose de modifier l'existant, et une autre de ne pas en rajouter aux probl\u00e8mes. Le deuxi\u00e8me cas de figure est \u00e0 l'\u00e9vidence bien plus facile. Tant que le pays ne se dotera pas de la capacit\u00e9 \u00e0 emp\u00eacher d'en rajouter aux difficult\u00e9s, on peut malheureusement \u00eatre un peu pessimiste sur notre capacit\u00e9 \u00e0 modifier l'existant, ce qui est g\u00e9n\u00e9ralement un cran au dessus question difficult\u00e9 \u00e0 faire." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6998765434871128064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6998765435470888961,urn:li:activity:6998765435470888961,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 643, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6998765435470888961,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6998765435470888961,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6998765435470888961", + "threadId": "activity:6998765435470888961", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6998765435470888961", + "urn": "urn:li:activity:6998765435470888961", + "numComments": 1036, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6998765435470888961", + "reactionTypeCounts": [ + { + "count": 17946, + "reactionType": "LIKE" + }, + { + "count": 1677, + "reactionType": "MAYBE" + }, + { + "count": 1376, + "reactionType": "PRAISE" + }, + { + "count": 531, + "reactionType": "INTEREST" + }, + { + "count": 382, + "reactionType": "APPRECIATION" + }, + { + "count": 73, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6998765435470888961", + "numLikes": 21985, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6998765435470888961", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 22024, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6997830447921561600", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6997830447921561600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6997830447921561600)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-capitalisme-ne-sadaptera-au-d%C3%A9fi-climatique-activity-6997830447921561600-PuUI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6997830446734524416", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6997830447921561600", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6997830446734524416", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "yw3qfREBpruIMxJNdz4+yQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7864941750132445850", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 639, + "fileIdentifyingUrlPathSegment": "800/0/1675664003015?e=1677240000&v=beta&t=N4bFqc3BN3Xj-ZGbJcdGfdKb6B__Ei1h6qwPxim3uR8", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 639, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675664003015?e=1677240000&v=beta&t=b0QcqNJrTROWC9XVv-GuwND5p6oYrGUG0aJSiwI84Js", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675664003015?e=1677240000&v=beta&t=FkwdSfq2D_aLwpDeoxqRmkfhQ5RMdNi7-ZJFF0HpkOM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675664003015?e=1677240000&v=beta&t=ILyc_iBgTvC90fXz1oyJiGprs-ptTZ-mimqJmSwuBRY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHlYDPowtEfOg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5633802816901409 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7864941750132445850)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7864941750132445850)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "xerficanal.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le capitalisme ne s'adaptera au d\u00e9fi climatique que par la contrainte by xerficanal.com", + "actionTarget": "https://www.xerficanal.com/economie/emission/Anton-Brender-Le-capitalisme-ne-s-adaptera-au-defi-climatique-que-par-la-contrainte_3748380.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le capitalisme ne s'adaptera au d\u00e9fi climatique que par la contrainte" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6997830446734524416,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"il faut que les \u00e9tats exercent une pression sur le capitalisme\" pour que ce dernier ait des activit\u00e9s qui soient compatibles avec la pr\u00e9servation de l'environnement. Il ne faut pas compter sur les chefs d'entreprise, \"dont ce n'est pas la logique\", pour le faire spontan\u00e9ment, parce que la nature n'a pas de prix. M\u00eame si les dirigeants d'entreprise \"comprennent\" le probl\u00e8me, leur logique - comprendre la pr\u00e9\u00e9minence des euros sur les indicateurs environnementaux dans le cadre juridique actuel - les pousse dans une direction qui est inverse \u00e0 celle qui pr\u00e9serve les ressources.\n\nCes propos seraient d'une banalit\u00e9 affligeante s'ils venaient de la bouche d'un Gael Giraud ou d'un d\u00e9put\u00e9 LFI. Mais en l'esp\u00e8ce ils sont tenus par un \u00e9conomiste de chez Candriam, une soci\u00e9t\u00e9 de gestion d'actifs, qui appartient donc, au sens large, \u00e0 la \"finance mondialis\u00e9e lib\u00e9rale\".\n\nEt le m\u00eame de rappeler que, de m\u00eame que le travail des enfants n'a pas \u00e9t\u00e9 supprim\u00e9 par la bont\u00e9 d'\u00e2me des patrons, mais parce que la puissance publique l'a interdit (dans un contexte o\u00f9 les machines pouvaient prendre le relais, il ne faut pas l'oublier !), ce ne sont pas les chefs d'entreprise qui vont d'eux-m\u00eames se mettre dans le cadre de l'accord de Paris : c'est \u00e0 l'Etat de les y pousser, par des taxes et des interdictions.\n\nIl se trouve que, pas plus tard que le week-end dernier, j'ai d\u00e9fendu \u00e0 peu pr\u00e8s la m\u00eame th\u00e8se au micro de RTL dans le cadre de ma chronique hebdomadaire, qui portait sur la \"finance verte\" : https://lnkd.in/eG2t9mvQ\n\nL'id\u00e9e qu'un chef d'entreprise \"vert\" est en pratique un chef d'entreprise qui accepte - voire d\u00e9sire - que l'Etat mette des contraintes pour orienter l'activit\u00e9 \u00e9conomique du \"bon c\u00f4t\u00e9\" fait de plus en plus de chemin. Accepter ses propres limites n'est pas un aveu de faiblesse : c'est en les ignorant que l'on se met \u00e0 risque.\n\nIncidemment c'est cette population que The Shift project cherche \u00e0 rassembler : depuis le d\u00e9but notre think tank ambitionne (que l'on y parvienne est une autre histoire !) de coaliser des dirigeants qui pensent sinc\u00e8rement qu'il faut mettre des contraintes sur les \u00e9missions de gaz \u00e0 effet de serre. Comme cette population n'est pas compl\u00e8tement na\u00efve, ils et elles le souhaitent \u00e9videmment parce qu'ils et elles pensent que ca sera bon pour leur entreprise.\n\nSauf \u00e0 compl\u00e8tement supprimer le capitalisme, que je comprends ici comme la propri\u00e9t\u00e9 individuelle de tout ou partie des moyens de production (laquelle propri\u00e9t\u00e9 priv\u00e9e est, sous une forme ou sous une autre, pr\u00e9sente depuis la s\u00e9dentarisation de notre esp\u00e8ce il y a 10.000 ans), la voie \u00e0 explorer est donc d'encadrer ce dernier pour le forcer \u00e0 \"rentrer dans le monde fini\". Vaste mais n\u00e9cessaire programme." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6997830446734524416,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6997830447921561600,urn:li:activity:6997830447921561600,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 257, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6997830447921561600,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6997830447921561600,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6997830447921561600", + "threadId": "activity:6997830447921561600", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997830447921561600", + "urn": "urn:li:activity:6997830447921561600", + "numComments": 453, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6997830447921561600", + "reactionTypeCounts": [ + { + "count": 4843, + "reactionType": "LIKE" + }, + { + "count": 333, + "reactionType": "MAYBE" + }, + { + "count": 308, + "reactionType": "INTEREST" + }, + { + "count": 179, + "reactionType": "PRAISE" + }, + { + "count": 90, + "reactionType": "APPRECIATION" + }, + { + "count": 44, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6997830447921561600", + "numLikes": 5797, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997830447921561600", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5800, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 Edited \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6997515090895732736", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6997515090895732736)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6997515090895732736)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_terrawater-le-sc%C3%A9nario-%C3%A9nerg%C3%A9tiquedes-activity-6997515090895732736-vuxZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6997515089960402944", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6997515090895732736", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6997515089960402944", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "vamQ+Dt8zRHIXQY7fAKm2w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8782828938415420476", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 768, + "fileIdentifyingUrlPathSegment": "800/0/1675705386746?e=1677240000&v=beta&t=Q3OzTro5raoywjJTp1cHSirxdNJOh7wfFF1ZitEQqX0", + "expiresAt": 1677240000000, + "height": 768 + }, + { + "width": 768, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675705386746?e=1677240000&v=beta&t=S9iLHCj8YsY2pakelZ-9-VTEqwfzx70z2VddQUVQiII", + "expiresAt": 1677240000000, + "height": 768 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675705386747?e=1677240000&v=beta&t=2kbVHicQ26IrV6wqZ_8sDI1w3UlEcxN8esN15vvn1kg", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675705386747?e=1677240000&v=beta&t=NEUDg6vicHw3REvvqdv2eiEaRxvuIgURgbzAKdq0S8o", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFphLqMFYQx8w/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8782828938415420476)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8782828938415420476)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "voix-du-nucleaire.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: TerraWater : le sc\u00e9nario \u00e9nerg\u00e9tique des Voix by voix-du-nucleaire.org", + "actionTarget": "https://www.voix-du-nucleaire.org/terrawater-scenario-energetique-des-voix/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "TerraWater : le sc\u00e9nario \u00e9nerg\u00e9tique\u00a0des\u00a0Voix" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6997515089960402944,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un sc\u00e9nario \u00e9lectrique qui concilie d\u00e9fense de l'environnement et augmentation de la capacit\u00e9 nucl\u00e9aire ? Ce n'est pas s\u00e9rieux voyons ! \n\nM\u00eame si l'adh\u00e9sion \u00e0 l'\u00e9nergie atomique a connu r\u00e9cemment un regain de faveur - en fait depuis les chocs p\u00e9troliers le meilleur marqueur du soutien \u00e0 cette forme de production est le prix des alternatives :), et en ce moment cet \u00e9l\u00e9ment est bien pr\u00e9sent - nous n'en sommes pas encore au point o\u00f9 la population adh\u00e8re massivement \u00e0 l'id\u00e9e que le nucl\u00e9aire est ce qu'il y a de plus \u00e9colo et durable - et de moins dangereux - pour une production \u00e9lectrique un peu cons\u00e9quente et disponible plus ou moins \u00e0 la demande.\n\nDe fait, l'essentiel des sc\u00e9narios \u00e9lectriques produits ces derniers temps pour notre pays voient tous une diminution de la puissance \u00e9lectrique install\u00e9e pour le nucl\u00e9aire dans les d\u00e9cennies \u00e0 venir et jusqu'\u00e0 la fin du si\u00e8cle. \n\nMais un \"nouveau venu\" - les Voix du Nucl\u00e9aire - propose (sans surprise avec un tel nom !) une trajectoire o\u00f9 le nucl\u00e9aire augmente fortement - et la production \u00e9lectrique aussi - d'ici \u00e0 2100. Dans ce m\u00eame sc\u00e9nario \u00e9olien et solaire augmentent aussi jusqu'au milieu du si\u00e8cle, et surtout du stockage assur\u00e9 par des stations de pompage-turbinage (des STEP), qui seraient massivement construites d\u00e8s maintenant. Elle serviront d'abord \u00e0 \u00e9quilibrer les ENR intermittentes, et ensuite \u00e0 assurer la flexibilit\u00e9 journali\u00e8re et hebdomadaire en compl\u00e9ment d'un nucl\u00e9aire plus important qu'aujourd'hui.\n\nEn pratique ce sc\u00e9nario repose sur les axes suivants :\n- \u00e0 court terme d\u00e9ploiement de solaire, \u00e9olien, ainsi que de STEP pour assurer le pilotage du r\u00e9seau\n- maintien en service des r\u00e9acteurs actuels aussi longtemps que possible (sous contr\u00f4le de l'ASN bien s\u00fbr), soit un peu plus de 60 ans (dur\u00e9e d\u00e9j\u00e0 autoris\u00e9e aux USA pour tous les r\u00e9acteurs \u00e0 eau pressuris\u00e9e)\n- d\u00e9ploiement d\u00e8s maintenant d'EPR2\n- d\u00e8s 2050 d\u00e9but du d\u00e9ploiement de r\u00e9acteurs de la 4\u00e8 g\u00e9n\u00e9ration et d\u00e9crue corr\u00e9lative des ENR intermittentes. Les STEP sont conserv\u00e9es pour assurer la flexibilit\u00e9 en compl\u00e9ment d'un nucl\u00e9aire utilis\u00e9 essentiellement en base.\n- d\u00e9ploiement de turbines \u00e0 combustion biomasse pour l'hyperpointe\n\nCe sc\u00e9nario est purement \u00e9lectrique, et fait passer la production de 500 TWh actuellement \u00e0 800 TWh en 2070. Il n'est formellement pas incompatible avec la sobri\u00e9t\u00e9 puisqu'aujourd'hui la France utilise 1600 TWh d'\u00e9nergie finale tout compris.\n\nIl est trop t\u00f4t pour dire si ce sc\u00e9nario est, dans ses moindres d\u00e9tails, pertinent ou pas. Mais il offre une base de r\u00e9flexion int\u00e9ressante d\u00e8s lors que l'on souhaite discuter du meilleur compromis possible dans un monde qui va se d\u00e9mondialiser, et o\u00f9 tout ce qui est physique (espace au sol, biomasse, m\u00e9taux) va devenir de plus en plus difficile d'acc\u00e8s, hypoth\u00e8se g\u00e9n\u00e9ralement peu pr\u00e9sente dans les autres sc\u00e9narios de place qui postulent \u00e0 peu pr\u00e8s tous l'inverse.\n\nEsp\u00e9rons aussi qu'il contribuera \u00e0 nourrir un d\u00e9bat pacifi\u00e9 et non \u00e0 renforcer la fr\u00e9quence des noms d'oiseau !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6997515089960402944,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6997515090895732736,urn:li:activity:6997515090895732736,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 74, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6997515090895732736,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6997515090895732736,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6997515090895732736", + "threadId": "activity:6997515090895732736", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997515090895732736", + "urn": "urn:li:activity:6997515090895732736", + "numComments": 248, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6997515090895732736", + "reactionTypeCounts": [ + { + "count": 1905, + "reactionType": "LIKE" + }, + { + "count": 222, + "reactionType": "MAYBE" + }, + { + "count": 216, + "reactionType": "INTEREST" + }, + { + "count": 34, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "EMPATHY" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6997515090895732736", + "numLikes": 2428, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997515090895732736", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2428, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6997237239227244544", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6997237239227244544)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6997237239227244544)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_reporting-extra-financier-ladoption-du-activity-6997237239227244544-FgD2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6997237238065418241", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6997237239227244544", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6997237238065418241", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "IYG4Skqujw1Hf6ztQuxc9g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7336260786284283234", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676538389786?e=1677240000&v=beta&t=uAmX5va8gSM6U-TB_DAZl3q1YiFXfPjSe2oGTS3Govs", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676538389786?e=1677240000&v=beta&t=j-6H7o2P4lROfiHhsdsuDfEO-QOoE2crqZSxQfBnYq4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676538389786?e=1677240000&v=beta&t=CXtH7PWjD8K33XlWUe9rGQ5GAwe3o0ku3b0LL8Hc9J0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676538389786?e=1677240000&v=beta&t=K9Q3bJdeB2okES3YR1Y-tlOo5696bVdkeXS7JERB2TI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHcNy7Dy0tBDA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7336260786284283234)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7336260786284283234)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Reporting extra-financier : l'adoption du cadre europ\u00e9en laisse de nombreuses questions en suspens by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/reporting-extra-financier-ladoption-du-cadre-europeen-laisse-de-nombreuses-questions-en-suspens-1877784" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Reporting extra-financier\u00a0: l'adoption du cadre europ\u00e9en laisse de nombreuses questions en suspens" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6997237238065418241,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Parlement europ\u00e9en a vot\u00e9 Jeudi dernier une nouvelle directive qui renforce les obligations pour les entreprises europ\u00e9ennes en mati\u00e8re de publication d'informations \"non financi\u00e8res\". On met dans ce vocable les informations relatives \u00e0 la pression sur l'environnement (voir liste dans le graphique en commentaire), aux sujets sociaux (idem) et concernant la gouvernance (idem).\n\nL'\u00e9laboration des \"comptes extrafinanciers\" \u00e9tant bien plus r\u00e9cente que celle des comptes financiers, la r\u00e9glementation - ou son absence - qui s'y applique est aussi bien plus r\u00e9cente. C'est un domaine dans lequel l'Europe - et au sein de l'Europe la France - est globalement en avance sur le reste du monde.\n\nUn pas de plus vient donc d'\u00eatre franchi avec cette directive CSRD (pour Corporate Sustainability Reporting Directive). Comme c'est une directive, elle devra \u00eatre transpos\u00e9e dans les l\u00e9gislations nationales avant de s'appliquer.\n\nToutes les soci\u00e9t\u00e9s cot\u00e9es de plus de 500 salari\u00e9s devront s'y conformer d\u00e8s 2024. Ca sera 2025 ou 2026 pour celles comprises entre 10 et 500 salari\u00e9s. Dans le non cot\u00e9, seules les entreprises de moins de 250 salari\u00e9s y \u00e9chapperont, \u00e0 condition qu'elles ne fassent pas plus de 40 M\u20ac de CA et 20 M\u20ac de total de bilan (ce qui \u00e9vite d'exon\u00e9rer les soci\u00e9t\u00e9s d'investissement avec beaucoup d'actifs et peu d'effectifs).\n\nLe contenu pr\u00e9cis des modalit\u00e9s \u00e0 respecter \u00e0 \u00e9t\u00e9 d\u00e9l\u00e9gu\u00e9 \u00e0 l'EFRAG (European Financial Reporting Advisory Group), une association cr\u00e9\u00e9e en 2001, qui est majoritairement financ\u00e9e par la Commission, mais o\u00f9 sont repr\u00e9sent\u00e9es nombre de \"parties prenantes\" (voir https://bit.ly/3GaRBW9 ).\n\nCette instance a fait des propositions qui tiennent en 220 pages de rapport et plus de 400 pages d'annexes (https://bit.ly/3g0Re5W ). Ouf !\n\nOn note dans ces propositions :\n\n- que les entreprises ne doivent pas juste publier les informations qui vont avec un risque financier direct pour elles (\"simple mat\u00e9rialit\u00e9\" dans le jargon), mais aussi les informations permettant d'appr\u00e9cier les impacts qu'elles ont sur leur environnement, m\u00eame si cet impact n'est pas porteur de risque financier pour l'entreprise (la somme des deux s'appelant \"double mat\u00e9rialit\u00e9\").\n\n- que les informations communiqu\u00e9es pour les impacts doivent concerner l'ensemble de la cha\u00eene de valeur (et donc inclure le \"scope 3\" dans le jargon pour les \u00e9missions de gaz \u00e0 effet de serre)\n\n- que le sujet le plus mature pour un reporting normatif et quantifi\u00e9 est le climat (au sein de l'environnement qui globalement est le sujet le plus simple des 3 E S et G)\n\n- qu'en mati\u00e8re de climat il faudrait parler \u00e0 la fois \u00e9missions et vuln\u00e9rabilit\u00e9 aux risques physiques\n\n- et que la biodiversit\u00e9 est aussi un domaine qui devra \u00eatre couvert\n\nComme d'habitude, d'aucuns vont consid\u00e9rer que l'Europe se tire une balle dans le pied pendant que d'autres se f\u00e9liciteront de ce cadre un peu contraignant. Consid\u00e9rant qu'une entreprise n'innove que sous la contrainte, j'appartiens plut\u00f4t \u00e0 la 2\u00e8 cat\u00e9gorie :)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6997237238065418241,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6997237239227244544,urn:li:activity:6997237239227244544,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 125, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6997237239227244544,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6997237239227244544,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6997237239227244544", + "threadId": "activity:6997237239227244544", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997237239227244544", + "urn": "urn:li:activity:6997237239227244544", + "numComments": 158, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6997237239227244544", + "reactionTypeCounts": [ + { + "count": 2650, + "reactionType": "LIKE" + }, + { + "count": 247, + "reactionType": "INTEREST" + }, + { + "count": 175, + "reactionType": "MAYBE" + }, + { + "count": 74, + "reactionType": "PRAISE" + }, + { + "count": 27, + "reactionType": "EMPATHY" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6997237239227244544", + "numLikes": 3186, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997237239227244544", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3189, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6996901590204870656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6996901590204870656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6996901590204870656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_el-mundo-sin-fin-norma-editorial-activity-6996901590204870656-jNFe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6996901588053164032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6996901590204870656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6996901588053164032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "tduc970fZoiVC5Wos5N/jw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9149176262847108493", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 779, + "fileIdentifyingUrlPathSegment": "800/0/1675595650829?e=1677240000&v=beta&t=LwPDaDGVzHdFyslug_EKCcyQhjwAEbF9YtKbyHZqJgQ", + "expiresAt": 1677240000000, + "height": 941 + }, + { + "width": 662, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675595650829?e=1677240000&v=beta&t=ovqKWUauEHAz4B83ELLahXUiMPhXuow5k-V_Eip4eD4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675595650829?e=1677240000&v=beta&t=1xkRfIdjh82Jnq_R-pCxoOMPsxgBYzD-dJMSGnXGq8E", + "expiresAt": 1677240000000, + "height": 193 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675595650829?e=1677240000&v=beta&t=ixHmRK8RIi3JPgSq6AUS25A--1EmmsL44fpGHPPXzOI", + "expiresAt": 1677240000000, + "height": 579 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEsohMCBcJHNA/articleshare-shrink_" + }, + "displayAspectRatio": 1.2079589216944802 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "EL MUNDO SIN FIN" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9149176262847108493)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9149176262847108493)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "normaeditorial.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EL MUNDO SIN FIN - Norma Editorial by normaeditorial.com", + "actionTarget": "https://www.normaeditorial.com/ficha/comic-europeo/el-mundo-sin-fin" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EL MUNDO SIN FIN - Norma Editorial" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6996901588053164032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s \u00eatre all\u00e9 au nord (Allemagne : https://lnkd.in/e-Qc7Q8P - Pays Bas/Belgique : https://lnkd.in/e7YeMvnm ), et au Nord Ouest (version digitale anglaise : https://lnkd.in/e4zr_Pgh ) Le Monde Sans fin met le cap au Sud, et plus pr\u00e9cis\u00e9ment en Espagne.\n\nCe n'est pas une mais deux versions espagnoles qui viennent de sortir :\n- une en castillan (lien dans l'image ci-dessous)\n- une en catalan : https://lnkd.in/eHxRTkEC (qui a m\u00eame une couverture bleue, histoire de montrer que vraiment c'est pas comme l'autre !)\n\nSi vous avez des relations au pays de Don Quichotte qui ont le mauvais go\u00fbt de ne pas parler fran\u00e7ais (!), il est d\u00e9sormais possible de leur sugg\u00e9rer de la lecture en espagnol, quel que soit ce dernier !\n\nEt tant que nous y sommes, au sud-est il y a aussi une version croate : https://lnkd.in/e3TznwXi \n\nD'ici quelques mois on devrait pers\u00e9v\u00e9rer au sud (de l'Europe) avec une version italienne et une portugaise, et pers\u00e9v\u00e9rer \u00e0 l'est (de l'Europe) avec une version polonaise. L'Europe s'est b\u00e2tie sur l'\u00e9nergie, ne l'oublions pas !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6996901588053164032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6996901590204870656,urn:li:activity:6996901590204870656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 212, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6996901590204870656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6996901590204870656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6996901590204870656", + "threadId": "activity:6996901590204870656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996901590204870656", + "urn": "urn:li:activity:6996901590204870656", + "numComments": 259, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6996901590204870656", + "reactionTypeCounts": [ + { + "count": 4698, + "reactionType": "LIKE" + }, + { + "count": 521, + "reactionType": "PRAISE" + }, + { + "count": 190, + "reactionType": "EMPATHY" + }, + { + "count": 59, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6996901590204870656", + "numLikes": 5484, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996901590204870656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5485, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6996436027229765634", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6996436027229765634)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6996436027229765634)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-spectacle-vivant-au-d%C3%A9fi-de-la-transition-activity-6996436027229765634-DbXR?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6996436026411909121", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6996436027229765634", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6996436026411909121", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "wIdw6IJw1QRphR9zXlKR+w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7741171083256221759", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675670386167?e=1677240000&v=beta&t=q-pqBiRJvFKr9MFX7FNSdsXiu-IYmFdJ2Yic-wuz9TQ", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675670386167?e=1677240000&v=beta&t=w2tgpgc4QX7KcXDwwKaMuV8_QyBU6auaet358JB-LGI", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675670386168?e=1677240000&v=beta&t=QaTdVPc-sn4WMckhC5JO8yNUFiaSojRG4AsdULJP2Ig", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675670386168?e=1677240000&v=beta&t=fUJbYr2qa_9SFjpKmxsCuppbEcxGHI3oS3y6no7T7As", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGE-d7dTWr4-g/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7741171083256221759)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7741171083256221759)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le spectacle vivant au d\u00e9fi de la transition \u00e9cologique by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/culture/article/2022/11/05/le-spectacle-vivant-au-defi-de-la-sobriete-energetique_6148598_3246.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le spectacle vivant au d\u00e9fi de la transition \u00e9cologique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6996436026411909121,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La d\u00e9carbonation ? Une affaire d'ing\u00e9nieurs (de l'inerte ou du vivant) pardi ! Eoliennes, m\u00e9thaniseurs, voitures \u00e9lectriques et bornes de recharge, ampoules \u00e0 LED, mat\u00e9riaux isolants et pompes \u00e0 chaleur, s\u00e9questration du CO2, r\u00e9gimes alimentaires des bovins, arr\u00eat du labour, hydrog\u00e8ne, batteries, trains, v\u00e9los.... la liste des objets techniques qui arrivent dans les d\u00e9bats est presque infinie d\u00e8s lors qu'il est question de baisser les \u00e9missions plan\u00e9taires de CO2.\n\nJuste apr\u00e8s on va trouver l'argent, \u00e2prement discut\u00e9 \u00e0 la COP 27 incidemment. Ce faisant, nous ratons peut-\u00eatre l'essentiel : notre repr\u00e9sentation de l'id\u00e9al, ce qui nous attire et nous repousse, le mod\u00e8le sur lequel on essaie de se caler, les habitudes qu'il faut prendre et celles dont il faut se d\u00e9partir, en un mot ce qui rel\u00e8ve du bien ou d\u00e9sirable et ce qui rel\u00e8ve du mal et du repoussant. \n\nIl y a donc un tout petit sujet culturel dans cette histoire. La culture, en fait, a un double rapport avec les \u00e9missions de gaz \u00e0 effet de serre. Tout d'abord son fonctionnement m\u00eame en engendre. \n\nLes mus\u00e9es sont parfois des aspirateur \u00e0 touristes a\u00e9roport\u00e9s (le Louvre ou le Moma), et les festivals, cin\u00e9mas, sites historiques ou remarquables (comme le Mont Saint Michel), des aspirateurs \u00e0 voitures. Les b\u00e2timents doivent aussi \u00eatre chauff\u00e9s et les d\u00e9cors fabriqu\u00e9s, et enfin l'audiovisuel - qui fait partie de la culture, porno compris :) - est le premier motif d'emploi du digital, lequel engendre 4% des \u00e9missions plan\u00e9taires environ.\n\nComme toute activit\u00e9 \"moderne\", la culture est elle aussi devenue d\u00e9pendante des combustibles fossiles. \n\nMais elle a un autre rapport \u00e0 la question : celle de \"cr\u00e9atrice de tendances\". Hollywood a surement fait autant - sinon plus - pour l'id\u00e9alisation du mode de vie \u00e9nergivore des am\u00e9ricains que toutes les campagnes publicitaires ou marketing des constructeurs de grosses voitures ou de maisons individuelles.\n\nC'est pour cela que, dans le Plan de Transformation de l'Economie Fran\u00e7aise, il y a un chapitre entier sur la culture (https://bit.ly/3UnN8ni ). Ce n'est pas juste un petit truc dont il faut s'occuper pour donner le change pendant que les sujets vraiment s\u00e9rieux se discutent avec les industriels. C'est un secteur qui contribue puissamment aux effets de mode et qui est par ailleurs issu de l'anthropoc\u00e8ne dans sa forme actuelle. \n\nCet article du Monde \u00e9voque quelques initiatives sur le sujet, soit port\u00e9es par des acteurs individuels (compagnies de th\u00e9\u00e2tre, organisateurs de festivals) soit par des entit\u00e9s collectives (associations professionnelles ou syndicats). \n\nSelon l'article du Monde, le travail du Shift Project sert \"de r\u00e9f\u00e9rence\" au secteur. M\u00eame si cette affirmation ne refl\u00e8te que le dixi\u00e8me de la r\u00e9alit\u00e9, cela signifie quand m\u00eame que nous sommes identifi\u00e9s comme utiles pour que les acteurs de ce domaine s'emparent de la question climatique. C'est indispensable pour que le reste de la soci\u00e9t\u00e9 fasse de la d\u00e9carbonation un but d\u00e9sirable. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6996436026411909121,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6996436027229765634,urn:li:activity:6996436027229765634,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6996436027229765634,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6996436027229765634,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6996436027229765634", + "threadId": "activity:6996436027229765634", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996436027229765634", + "urn": "urn:li:activity:6996436027229765634", + "numComments": 109, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6996436027229765634", + "reactionTypeCounts": [ + { + "count": 1235, + "reactionType": "LIKE" + }, + { + "count": 86, + "reactionType": "INTEREST" + }, + { + "count": 75, + "reactionType": "PRAISE" + }, + { + "count": 43, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "EMPATHY" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6996436027229765634", + "numLikes": 1472, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996436027229765634", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1472, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6995781404512952320", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6995781404512952320)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6995781404512952320)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climatsup-business-former-les-acteurs-de-activity-6995781404512952320-70v_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6995781403606929410", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6995781404512952320", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6995781403606929410", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "KA3nD3pUl0szBJze0JCAFw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8459012764171481968", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676596121923?e=1677240000&v=beta&t=mQcuJKnoZipMWKudDoCL8QNgQ5Um8fJ8yW2JgA5Szuw", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676596121923?e=1677240000&v=beta&t=l_5dQeoNwEuQIG2Qm8SktdZA0E65KSoofB1b1hlXH08", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676596121923?e=1677240000&v=beta&t=29IAA03gIOdM100ACzbxxsgD6i_2MuqrAzWOMpxIq9c", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676596121923?e=1677240000&v=beta&t=ZBAzvvpnQT8Mz4Fq_2GtEHvRLIW9SL1AsnG64tG_eQo", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGzKG2KtofCCA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8459012764171481968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8459012764171481968)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: ClimatSup Business - Former les acteurs de l'\u00e9conomie de demain by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/rapport-final-climat-sup-business/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "ClimatSup Business - Former les acteurs de l'\u00e9conomie de demain" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6995781403606929410,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Comment apprendre aux \u00e9l\u00e8ves des \u00e9coles de gestion \u00e0 faire un business plan compatible accord de Paris ? Du marketing ou de la publicit\u00e9 compatible avec les limites plan\u00e9taires ? Du management \"bas carbone\" ?\n\nApr\u00e8s avoir travaill\u00e9 sur la mise en harmonie de l'enseignement dans les \u00e9coles d'ing\u00e9nieur avec la n\u00e9cessaire d\u00e9carbonation (sous contrainte d'autres ressources) de l'\u00e9conomie, The Shift Project r\u00e9cidive (si l'on peut dire) avec les \u00e9coles de gestion (en attendant de compl\u00e9ter la trilogie dans pas longtemps avec l'enseignement de la finance).\n\nLe travail effectu\u00e9 par notre think tank a consist\u00e9 \u00e0 cr\u00e9er une \"m\u00e9thode op\u00e9rationnelle\" pour aider un \u00e9tablissement d'enseignement sup\u00e9rieur en gestion \u00e0 proposer un enseignement compatible avec les d\u00e9fis de demain et non avec ceux d'hier.\n\nUne fois cela dit, un certain nombre de probl\u00e8mes pratiques se posent pour passer \u00e0 l'action :\n- comment r\u00e9viser les programmes ? Faut-il proposer la m\u00eame chose qu'actuellement avec en plus un peu de RSE ou de physique, ou bien il faut revoir tout l'enseignement, y compris faire un tri s\u00e9v\u00e8re dans ce qui existe ?\n- Aura-t-on besoin des m\u00eames enseignants qu\u2019il faudra juste former \u00e0 de nouvelles approches, ou bien l\u2019angle sera tellement diff\u00e9rent que le corps enseignant apte \u00e0 officier dans ce nouveau contexte viendra surtout de l\u2019ext\u00e9rieur ?\n-\u00a0Faut-il s\u00e9lectionner les \u00e9l\u00e8ves sur des bases diff\u00e9rentes ?\n- Faut-il changer les syst\u00e8mes de classement des \u00e9tablissements, pour que le salaire \u00e0 la sortie ne soit plus le principal crit\u00e8re prix en compte ? \n- Pour une \u00e9cole qui voudrait \"faire sa r\u00e9volution\", comment cesser de servir un syst\u00e8me que l\u2019on sait aller dans le mur sans aller dans le mur soi-m\u00eame parce que l\u2019on est sorti du jeu ?\n- Faut-il \u00e9couter les recruteurs, qui sont par nature l\u2019incarnation de l\u2019existant dont il faut se d\u00e9partir, ou \u00e9couter des \u00e9l\u00e8ves, qui peuvent avoir des aspirations qui ne correspondent pas (encore) \u00e0 des emplois existants ?\n\nLe rapport du Shift Project ne fournira pas de r\u00e9ponse exhaustive \u00e0 toutes ces questions, et \u00e0 toutes les autres qui viennent \u00e0 l'esprit, mais il devrait n\u00e9anmoins int\u00e9resser toute personne qui partagerait nos souhaits de voir cet enseignement sup\u00e9rieur \"shifter\" un peu plus rapidement que maintenant. \n\nCar si nous prenons l'accord de Paris au pied de la lettre - et ne pas le faire en pleine COP est os\u00e9 :) - il reste 30 ans pour amener les \u00e9missions \u00e0 z\u00e9ro. Les cadres arrivant aujourd'hui sur le march\u00e9 du travail devraient donc d\u00e9j\u00e0 avoir les r\u00e9flexes adapt\u00e9s \u00e0 un monde o\u00f9 l'\u00e9nergie facile va se contracter, ce qui est l'\u00e9volution inverse de celle qui a men\u00e9 \u00e0 la mondialisation dont les anciens des \u00e9coles de gestion sont les b\u00e9n\u00e9ficiaires directs. \n\nNB : Si par chance vous \u00eates disponible dans 45 minutes (!) la pr\u00e9sentation du rapport aura lieu \u00e0 Audencia (\u00e0 Nantes) et en visio sur la page https://lnkd.in/eaSz8idj (il y aura un replay sinon)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6995781403606929410,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6995781404512952320,urn:li:activity:6995781404512952320,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 110, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6995781404512952320,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6995781404512952320,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6995781404512952320", + "threadId": "activity:6995781404512952320", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995781404512952320", + "urn": "urn:li:activity:6995781404512952320", + "numComments": 144, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6995781404512952320", + "reactionTypeCounts": [ + { + "count": 1748, + "reactionType": "LIKE" + }, + { + "count": 129, + "reactionType": "INTEREST" + }, + { + "count": 125, + "reactionType": "PRAISE" + }, + { + "count": 87, + "reactionType": "MAYBE" + }, + { + "count": 35, + "reactionType": "APPRECIATION" + }, + { + "count": 26, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6995781404512952320", + "numLikes": 2150, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995781404512952320", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2150, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6995652656836837376", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6995652656836837376)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6995652656836837376)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_letat-r%C3%A9clame-plus-defforts-de-d%C3%A9carbonation-activity-6995652656836837376-aFC3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6995652655922487296", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6995652656836837376", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6995652655922487296", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "/OZvk8phvAYq4Ek3eU8Qhw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8979046753261814202", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675759221812?e=1677240000&v=beta&t=3O_5Z-W14bzk2hKGftC-p4zcfCPcRz1nqxMrG1sTRN8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675759221812?e=1677240000&v=beta&t=7Dt_UKvUlJo_2BkN7TjnjboOm4nqQfd40swI52RPGVY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675759221812?e=1677240000&v=beta&t=p2GoxTcKSLaIMOp3hKQjeW3jnd-25UHlMATsQC-6AQA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675759221812?e=1677240000&v=beta&t=Exybn4d77Fqb4K6leh_49183uk9WkO-AwsKUmfG0pCU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG5QbMuSz8lqw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8979046753261814202)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8979046753261814202)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'Etat r\u00e9clame plus d'efforts de d\u00e9carbonation aux industriels by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/letat-reclame-plus-defforts-de-decarbonation-aux-industriels-1876669#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'Etat r\u00e9clame plus d'efforts de d\u00e9carbonation aux industriels" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6995652655922487296,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans le chapitre \"industrie\" du Plan de Transformation de l'Economie Fran\u00e7aise (https://lnkd.in/esiqHkbf), nous avions fait le constat que les 3/4 des \u00e9missions directes (donc hors \u00e9missions associ\u00e9es \u00e0 la consommation \u00e9lectrique du secteur, et bien \u00e9videmment hors \u00e9missions du \"scope 3\") du secteur industriel en France viennent de 3 activit\u00e9s qui repr\u00e9sentent chacune environ un quart du total du secteur :\n- l'aci\u00e9rie\n- la cimenterie et activit\u00e9s connexes (production de chaux par exemple, mais le ciment domine de la t\u00eate et des \u00e9paules)\n- la chimie de base (production des monom\u00e8res, de la soude et du chlore, de l'hydrog\u00e8ne, etc).\n\nNos propositions permettaient de viser, pour ces secteurs, une division par 5 \u00e0 10 des \u00e9missions \u00e0 l'horizon 2050 - ce n'est pas encore la neutralit\u00e9 mais on s'en rapproche - en combinant sobri\u00e9t\u00e9 - il y a une baisse des volumes - et avanc\u00e9es techniques (par exemple la r\u00e9duction directe \u00e0 l'hydrog\u00e8ne dans la m\u00e9tallurgie ou un m\u00e9lange de capture et s\u00e9questration du carbone et de combustibles non fossiles dans la cimenterie).\n\nJe ne sais pas si l'Elys\u00e9e a lu le PTEF, mais l'\u00e9v\u00e9nement rapport\u00e9 par Les Echos s'inscrit dans la m\u00eame logique : porter une attention particuli\u00e8re aux sites fortement \u00e9missifs, o\u00f9 la d\u00e9carbonation va souvent avec des investissements lourds qu'il faut donc pouvoir \"s\u00e9curiser\".\n\n\"s\u00e9curiser\" signifie en pratique que, sur leur dur\u00e9e de vie, ces investissements vont \u00e9viter plus de couts qu'ils n'en engendreront. La logique est que, comme les sites gros \u00e9metteurs sont soumis aux quotas, et que ces derniers sont d\u00e9sormais payants, tout le CO2 non \u00e9mis peut se convertir en quotas non achet\u00e9s, et cet argent peut \u00eatre mis en face de l'amortissement de l'investissement r\u00e9alis\u00e9.\n\nPour que le syst\u00e8me fonctionne bien, il y a un point que cet article n'\u00e9voque pas : la garantie d'un prix \u00e9lev\u00e9 et stable du CO2 \u00e0 l'avenir. Le march\u00e9 ne peut pas garantir cela. Il faut donc que la puissance publique s'en m\u00eale, or pour le moment la Commission (car cela d\u00e9pend d'elle) est r\u00e9tive \u00e0 l'id\u00e9e de mettre un prix plancher aux quotas mis aux ench\u00e8res.\n\nLe deuxi\u00e8me point qui n'est pas \u00e9voqu\u00e9 est la protection aux fronti\u00e8res : si les couts de production domestiques qui n'engendrent que peu de CO2 sont sup\u00e9rieurs \u00e0 ceux des concurrents \u00e9trangers qui \u00e9mettent plus, il faut pouvoir compenser la diff\u00e9rence aux fronti\u00e8res (comme pour la TVA). \n\nDans les commodit\u00e9s certaines voyagent peu en pratique (le ciment), mais d'autres beaucoup plus (acier ou polym\u00e8res). Si l'Etat veut que les industriels avancent - et il a raison de le vouloir - il faut qu'il fasse sa part dans la planification, en s'occupant des deux \u00e9l\u00e9ments \u00e9voqu\u00e9s plus haut. Une troisi\u00e8me alternative est qu'il prenne \u00e0 sa charge les investissements des industriels, en allant \u00e9ventuellement jusqu'\u00e0 une nationalisation ou une cogestion - une \u00e9ventualit\u00e9 aujourd'hui tr\u00e8s peu compatible avec l'orientation \u00e9conomique lib\u00e9rale, mais l'histoire n'a pas fini d'\u00eatre \u00e9crite !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6995652655922487296,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6995652656836837376,urn:li:activity:6995652656836837376,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 42, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6995652656836837376,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6995652656836837376,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6995652656836837376", + "threadId": "activity:6995652656836837376", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995652656836837376", + "urn": "urn:li:activity:6995652656836837376", + "numComments": 67, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6995652656836837376", + "reactionTypeCounts": [ + { + "count": 966, + "reactionType": "LIKE" + }, + { + "count": 98, + "reactionType": "MAYBE" + }, + { + "count": 92, + "reactionType": "INTEREST" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6995652656836837376", + "numLikes": 1189, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995652656836837376", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1189, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6995295509888299008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6995295509888299008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6995295509888299008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_agriculture-il-faut-abandonner-le-labour-activity-6995295509888299008-tR2d?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6995295508894220288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6995295509888299008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6995295508894220288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "QuYum5zb0acWsvcvrKZyCA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7352330957760746843", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676368873920?e=1677240000&v=beta&t=oSKXCH78m-dui7lavcEXHFJ5NPFiGSfqnoU-H2soLeQ", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676368873920?e=1677240000&v=beta&t=TorH-d6o01axdCngyF_5lTaYDnR4mqZZHS3RIP0fymo", + "expiresAt": 1677240000000, + "height": 526 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676368873921?e=1677240000&v=beta&t=ks4ZMq7wd94h2L6Onl6Lcsiw0qbd4XfNoBJIvOt9GJ8", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676368873921?e=1677240000&v=beta&t=U4iR0h-I2rqsRSK_Y98XbATNe86cXo5jZghTu9R4QsU", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQH90A8YSrTHmg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7352330957760746843)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7352330957760746843)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "letelegramme.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Agriculture : \u00ab Il faut abandonner le labour \u00bb by letelegramme.fr", + "actionTarget": "https://www.letelegramme.fr/dossiers/en-quete-de-demain/agriculture-il-faut-abandonner-le-labour-04-11-2022-13210066.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Agriculture\u00a0: \u00ab\u00a0Il faut abandonner le labour\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6995295508894220288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 67, + "length": 14, + "miniProfile": { + "firstName": "Lionel", + "lastName": "Alletto", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB2KoKkBj0_b_myDoXow3e41vHVaBIz6tEg", + "occupation": "Directeur de recherche chez INRAE", + "objectUrn": "urn:li:member:495624361", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB2KoKkBj0_b_myDoXow3e41vHVaBIz6tEg", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1517601436955?e=1681948800&v=beta&t=6UDhR5DaDQc0abluUVzw5DIRZdzIDUqZ8laPProAioE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1517601436955?e=1681948800&v=beta&t=3kj7moF6B14uDTKAL3l58_lUZuh2devx1C3v18QRsM4", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5116AQF2X3nHXIo75w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "lionel-alletto-7a1b97119", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1519478248294?e=1681948800&v=beta&t=xRv5YFR8F6qpGh64kDFcFg2INTWRXm47nZITXBkNQk0", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1519478248294?e=1681948800&v=beta&t=cQSJzvyxVOq_542c3A4h8TkF0sI0-unWUlWb6D906b0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1519478248294?e=1681948800&v=beta&t=GAsalzLUw4G74zryvfm0gjVeQXqsYqVNh07P1Dxd_9Q", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1519478248294?e=1681948800&v=beta&t=BC9H48gVjSWv8g5FtdZq3y35szq7clYTuNLSKPXtVgU", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQF0oKakpSHzWQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "kAwY88eBSk+Nh20nBk+BuA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans un entretien au T\u00e9l\u00e9gramme (qui \u00e0 une \u00e9poque fut \"de Brest\"), Lionel Alletto \u00e9voque les modifications des pratiques agricoles qu'il serait pertinent de mettre en oeuvre pour gagner en r\u00e9silience et diminuer la pression sur l'environnement (NB : je soup\u00e7onne la transcription de l'interview de comporter quelques erreurs ici ou l\u00e0, qui conduisent certaines phrases \u00e0 \u00eatre \u00e9tranges ou en d\u00e9calage).\n\nQuelques \u00e9l\u00e9ments int\u00e9ressants de cette interview :\n- les techniques sans labour semblent am\u00e9liorer la r\u00e9sistance \u00e0 la s\u00e9cheresse (un avantage qui pourrait ne pas \u00eatre mince avec ce qui nous attend)\n- la diversification des cultures - dont la polyculture \u00e9levage - permet de diminuer l'usage des phytosanitaires\n- le seul phytosanitaire vraiment utile en agriculture de conservation c'est... le glyphosate (tous les \u00e9chos que j'ai eus laissent penser que ce n'est pas celui dont l'interdiction est la plus prioritaire...)\n- en \"p\u00e9riode de temps calme\" sur le prix de l'\u00e9nergie, l'agriculture de conservation ne change pas la donne sur le plan \u00e9conomique (donc elle ne rapporte rien de plus... mais ne coute pas plus non plus), mais quand les prix des hydrocarbures grimpent au plafond elle donne un avantage\n\nJ'avais retenu par ailleurs que d'avoir un couvert v\u00e9g\u00e9tal sur l'ensemble de l'ann\u00e9e favorise la s\u00e9questration de carbone dans le sol. \n\n\"sur le papier\", dixit l'urbain que je suis qui ne tient pas souvent une fourche ou une b\u00eache :), cette technique semble donc \u00e0 g\u00e9n\u00e9raliser. Que manque-t-il pour que cela soit le cas ? La liste des \"conditions du succ\u00e8s\" n'est pas tr\u00e8s diff\u00e9rente ici de ce qu'elle est pour tout passage \u00e0 l'\u00e9chelle d'une mani\u00e8re de faire pour laquelle des pionniers montrent que globalement ca fonctionne :\n- une valorisation \"culturelle\" d'un changement de pratique dans un monde o\u00f9 c'est plut\u00f4t l'inverse qui est la r\u00e8gle. Les terroirs, AOC, etc, valorisent le fait de \"faire toujours pareil\", et l\u00e0 il s'agit de valoriser l'inverse !\n- du coup il faut un accompagnement et de la formation, \u00e0 la fois par la recherche (c'est donc une tr\u00e8s bonne chose que l'INRAE s'en m\u00eale) et par les entit\u00e9s d\u00e9volues \u00e0 cet effet (chambres d'agriculture et conseil interne des coop\u00e9ratives notamment)\n- il faut aussi que les r\u00e8gles \u00e9conomiques ne dissuadent pas explicitement les modifications de pratiques, voire les encouragent (il n'y a pas que les prix de vente pour cela : l'Etat, comme il l'a fait pour le covid, pourrait reprendre de la dette d'agriculteurs qui accepteraient de changer de pratiques, par exemple). Or le premier souci des r\u00e8gles \u00e9conomiques aujourd'hui n'est pas d'assurer la \"durabilit\u00e9 physique\" !\n\nTout est r\u00e9sum\u00e9 dans cette phrase de l'interview : \"Les syst\u00e8mes [agricoles]\u00a0doivent (...) gagner en r\u00e9silience et (...) \u00eatre moins d\u00e9pendants des ressources externes, \u00eatre plus diversifi\u00e9s pour faire face aux al\u00e9as, maximiser les services \u00e9cosyst\u00e9miques\". Il n'y a plus qu'\u00e0 :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6995295508894220288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6995295509888299008,urn:li:activity:6995295509888299008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 194, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6995295509888299008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6995295509888299008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6995295509888299008", + "threadId": "activity:6995295509888299008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995295509888299008", + "urn": "urn:li:activity:6995295509888299008", + "numComments": 320, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6995295509888299008", + "reactionTypeCounts": [ + { + "count": 1800, + "reactionType": "LIKE" + }, + { + "count": 187, + "reactionType": "INTEREST" + }, + { + "count": 176, + "reactionType": "MAYBE" + }, + { + "count": 46, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "EMPATHY" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6995295509888299008", + "numLikes": 2246, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995295509888299008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2247, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6994982486191566848", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6994982486191566848)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6994982486191566848)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_aujourdhui-commence-la-cop-27-%C3%A0-charm-el-cheikh-activity-6994982486191566848-5yPd?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6994982484799037440", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6994982486191566848", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6994982484799037440", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "R0/29wngwi1x4y+baHn2Jw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHyVFCilO5z7g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHyVFCilO5z7g", + "artifacts": [ + { + "width": 1530, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1667733782241?e=1679529600&v=beta&t=E76FRm9Gog9U9xAl9hvwLkEN4q4nGln5JAmo0TtQSMg", + "expiresAt": 1679529600000, + "height": 978 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1667733784190?e=1679529600&v=beta&t=VOWkEpgiTvYBGBugRdds3g0Aeby8hDcRFJphHtLwVB4", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1667733784190?e=1679529600&v=beta&t=HA2EVhpqJD87lljIQXa14UZWyNHm-GxsbpsW1DlW7s8", + "expiresAt": 1679529600000, + "height": 818 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1667733784190?e=1679529600&v=beta&t=sjOjBFsypelUKUIl5khRlgGMSh_i6JtW2JIBRlRWuQM", + "expiresAt": 1679529600000, + "height": 307 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1667733784190?e=1679529600&v=beta&t=PNWXm69zmjFs7ssCfPQRkZajU-OKUPgV9bLMCGG5K-s", + "expiresAt": 1679529600000, + "height": 102 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1667733784190?e=1679529600&v=beta&t=1SiZkvv8Dcw_dYgVNMF8TZuOVEFERA9RHtiq8qM5CVg", + "expiresAt": 1679529600000, + "height": 511 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHyVFCilO5z7g/feedshare-shrink_" + }, + "displayAspectRatio": 0.6392156862745098 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6994982484799037440,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Aujourd'hui commence la COP 27 \u00e0 Charm el-Cheikh, au bord de la Mer Rouge. Esp\u00e9rons que la proximit\u00e9 d'un d\u00e9sert et les 28 \u00e0 30 \u00b0C en novembre (https://bbc.in/3FNxQ6R ) permettront aux participant(e)s de se sentir plus concern\u00e9s que quand tout le monde est en doudoune !\n\nIl y sera question d'agir pour limiter le r\u00e9chauffement. Or, c'est physique, cela signifie se contraindre sur les \u00e9missions. De combien ? Cela d\u00e9pend de l'objectif !\n\nLe graphique ci-dessous donne les trajectoires d'\u00e9missions qui vont avec des r\u00e9chauffements donn\u00e9s en 2100. Tout en bas, le trait bleu ciel correspond \u00e0 1,5 \u00b0C et, et tout en haut la rouge fonc\u00e9e du haut \u00e0 4,5 \u00b0C. On trouvera en commentaire le graphique des \u00e9l\u00e9vations de temp\u00e9rature fait avec le m\u00eame code couleur.\n\nPour 1,5\u00b0C en 2100 on voit que les \u00e9missions doivent \u00eatre nulles en 2060, puis \"n\u00e9gatives\" : cela signifie que la totalit\u00e9 de l'\u00e9nergie utilis\u00e9e se d\u00e9carbone en 40 ans, et ensuite on arrive \u00e0 reprendre du CO2 depuis l'air via des pr\u00e9c\u00e9d\u00e9s technologiques d\u00e9ploy\u00e9s \u00e0 large \u00e9chelle. Pour \"moins de 2\u00b0C en 2100\" c'est pareil mais d\u00e9cal\u00e9 de 20 ans.\n\nAvec des \u00e9missions qui seraient surtout contraintes \u00e0 l'avenir par la disponibilit\u00e9 en \u00e9nergie fossile (pic p\u00e9trolier maintenant, pic gazier en 2030, pic charbonnier d'ici 2050) on est un peu en dessous de 3\u00b0C en 2100 (courbe orange).\n\nEnfin les deux courbes du haut signifient une \"\u00e9conomie fossile\" non limit\u00e9e - ni par l'\u00e9puisement des gisements d'hydrocarbures, ni par les cons\u00e9quences du changement climatique, ni par d'autres limites plan\u00e9taires - jusqu'en 2100.\n\nQuelques commentaires :\n\n- m\u00eame en diminuant les \u00e9missions mondiales de 7% par an d\u00e8s demain matin, la temp\u00e9rature continue d'augmenter d'environ 0,2 \u00b0C par d\u00e9cennie pour les 20 ans qui viennent. Cela est du \u00e0 l'inertie chimique du CO2 : tant que les \u00e9missions ne sont pas nulles la concentration de ce gaz dans l'air - et \u00e0 la suite la temp\u00e9rature - augmente.\n\n- comme je ne crois pas que l'on puisse compter sur la reprise du CO2 de l'atmosph\u00e8re \u00e0 l'\u00e9chelle imagin\u00e9e pour les sc\u00e9narios 1,5 \u00b0C et 2\u00b0C, sauf pand\u00e9mie ou chute de com\u00e8te on va se prendre 1,5\u00b0C de toute fa\u00e7on, et c'est presque pareil pour 2\u00b0C -> il faut penser massivement r\u00e9silience (et non juste \"adaptation\", terme qui suppose une absence d'inconv\u00e9nient si on s'y prend bien) d\u00e8s \u00e0 pr\u00e9sent\n\n- baisser les \u00e9missions de 5% par an c'est tr\u00e8s probablement baisser le PIB de 3 \u00e0 4% par an (https://bit.ly/3T2QevC ). J'ai quelques doutes sur le fait que ca puisse \u00eatre un objectif consensuel dans l'enceinte des Nations Unies (o\u00f9 tout se d\u00e9cide par consensus).\n\nCOP 27 ou pas, en Europe, la \"voiture balai\" de la baisse subie des combustibles fossiles est d\u00e9j\u00e0 en cours (et l'\u00e9tait avant Poutine !). Ca ne va pas arr\u00eater la d\u00e9rive climatique, mais ca nous force d\u00e9j\u00e0 \u00e0 conjuguer d\u00e9crue des moyens mat\u00e9riels \u00e0 notre disposition et accroissement des dommages climatiques. Il serait temps de se creuser la cervelle pour l'avenir avec le bon cahier des charges. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6994982484799037440,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6994982486191566848,urn:li:activity:6994982486191566848,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 81, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6994982486191566848,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6994982486191566848,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6994982486191566848", + "threadId": "activity:6994982486191566848", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994982486191566848", + "urn": "urn:li:activity:6994982486191566848", + "numComments": 206, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6994982486191566848", + "reactionTypeCounts": [ + { + "count": 2411, + "reactionType": "LIKE" + }, + { + "count": 337, + "reactionType": "INTEREST" + }, + { + "count": 180, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "APPRECIATION" + }, + { + "count": 28, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6994982486191566848", + "numLikes": 2997, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994982486191566848", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2998, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6994608569127968768", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6994608569127968768)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6994608569127968768)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_assurer-le-risque-climatique-laffaire-activity-6994608569127968768-I5uI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6994608568117174272", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6994608569127968768", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6994608568117174272", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "F/gPGGHIdLardVMAAcr/3g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8973742835780954443", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676035233502?e=1677240000&v=beta&t=aoF78Vj7tIBuES_kZTi7d8egvBTZJBWuWTPfTLJzi5M", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676035233502?e=1677240000&v=beta&t=FUSlvnHm-OGfpjYxgpdvNeHxvLZfUVC8FJC9sb5PrLM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676035233502?e=1677240000&v=beta&t=wp8Q4reARiRcL4toRvnF1uBW_qFLzNoTYN-J-Z4pKkA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676035233502?e=1677240000&v=beta&t=lD0QDQ_ta9YHWInqf0vw0aBB_0dPLyLIDTtut8fi4bA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFIxxGc--M1BQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8973742835780954443)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8973742835780954443)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Assurer le risque climatique ? L'affaire du public et du priv\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/assurer-le-risque-climatique-laffaire-du-public-et-du-prive-1873039" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Assurer le risque climatique\u00a0? L'affaire du public et du priv\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6994608568117174272,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"Un monde \u00e0 4\u00b0C n'est pas assurable\" : on se souvient (ou pas !) de cette d\u00e9claration d'Henri de Castries (ex-patron d'Axa), pour rappeler qu'on ne pouvait compter sur les assureurs pour servir de filet de s\u00e9curit\u00e9 en cas de r\u00e9chauffement trop prononc\u00e9.\n\nDans une tribune r\u00e9cente parue dans Les Echos, le pr\u00e9sident du premier r\u00e9assureur fran\u00e7ais (SCOR) confirme que ceux qui sont \u00e0 risque dans cette histoire sont les assur\u00e9s et non les assureurs. Il a largement raison.\n\nTout d'abord, le changement climatique va surtout endommager des actifs naturels qui valent z\u00e9ro par convention dans l'\u00e9conomie, et ne peuvent \u00eatre ni assur\u00e9s, ni remis en \u00e9tat. La Mer de Glace, la pluviom\u00e9trie en France ou les coraux tropicaux ne peuvent pas \u00eatre remis en \u00e9tat si n\u00e9cessaire par une bonne police d'assurance ! Et dans ces cas de figure le risque est \u00e0 l'\u00e9vidence port\u00e9 par les humains qui b\u00e9n\u00e9ficient des services naturels, non par l'assureur.\n\nCe qui peut \u00e9ventuellement \u00eatre assur\u00e9 est le d\u00e9faut d'activit\u00e9 \u00e9conomique qui fait suite \u00e0 la disparition d'actifs naturels : si le Rhin baisse trop pour que les barges passent, l'industriel en bord de Rhin peut essayer de s'assurer pour les pertes d'exploitation qui en r\u00e9sultent. Mais ca ne fait pas revenir le Rhin.\n\nIl y a ensuite l'argument que l'assureur n'aimerait pas le risque. C'est tout le contraire : sans risque il n'y a pas besoin d'assurance. Le m\u00e9tier de l'assureur est, pour un risque donn\u00e9, de \"pr\u00e9voir\" l'ampleur des dommages possibles pour les assur\u00e9s, et de faire payer \u00e0 ces derniers le cout de son service pour le m\u00eame montant plus sa marge.\n\nQuand il y a un risque de devoir payer plus que les primes encaiss\u00e9es (alea trop volatil et pr\u00e9vision des dommages trop impr\u00e9cise, et/ou consentement \u00e0 payer de l'assur\u00e9 pas assez \u00e9lev\u00e9), alors l'assureur cesse de proposer ses services. Pour l'assureur, le risque est \"juste\" une diminution de son activit\u00e9 dans le segment consid\u00e9r\u00e9.\n\nPourquoi est-ce que cela ne semble pas chagriner plus que ca l'auteur de cette tribune qui rappelle ce fait ? Probablement parce que toutes les projections \u00e9conomiques \"voient\" de la croissance \u00e0 l'infini, climat ou pas (m\u00eame les sc\u00e9narios \"compatibles accord de Paris\" utilis\u00e9s pour les mod\u00e9lisations du GIEC postulent de la croissance \u00e9conomique ininterrompue jusqu'en 2100). \n\nLe secteur de l'assurance sait que son chiffre d'affaire est grosso modo proportionnel au PIB. La seule crainte que lui inspire la d\u00e9rive climatique est alors de devoir basculer sur d'autres types de risques, mais comme la solvabilit\u00e9 globale de ses clients est cens\u00e9e suivre la croissance, le climat est juste un motif d'arbitrage de son portefeuille de risques assur\u00e9s.\n\nEvidemment l'\u00e9quation change du tout au tout si la d\u00e9rive climatique peut contracter le PIB (et non juste le faire croitre moins vite). Pour avoir vraiment peur, les assureurs devront donc se convaincre que la d\u00e9rive climatique est susceptible d'engendrer une r\u00e9cession structurelle. Nous n'y sommes pas." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6994608568117174272,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6994608569127968768,urn:li:activity:6994608569127968768,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 77, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6994608569127968768,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6994608569127968768,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6994608569127968768", + "threadId": "activity:6994608569127968768", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994608569127968768", + "urn": "urn:li:activity:6994608569127968768", + "numComments": 100, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6994608569127968768", + "reactionTypeCounts": [ + { + "count": 1707, + "reactionType": "LIKE" + }, + { + "count": 274, + "reactionType": "MAYBE" + }, + { + "count": 266, + "reactionType": "INTEREST" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6994608569127968768", + "numLikes": 2281, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994608569127968768", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2282, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6994209415067279360", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6994209415067279360)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6994209415067279360)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-audition-%C3%A0-lassembl%C3%A9e-nationale-activity-6994209415067279360-fmrw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6994209414270320641", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6994209415067279360", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6994209414270320641", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "MJTty+Eq/Gwyh+fckQkt5g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8737146986113728955", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676509249480?e=1677240000&v=beta&t=aKmtczLLBoZuv7UPzf6ovQfl42lu_bFPT7baIrZMFT0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676509249480?e=1677240000&v=beta&t=6BUjz0YCLIRdhxQGF49S7Bejq55MJFJsPU5BjW05UVc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676509249480?e=1677240000&v=beta&t=JvgSAvHlBmAgSq1UBKkQf3MJItYxm9pMdwLB7NYdpro", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676509249480?e=1677240000&v=beta&t=OTlidCxsswX5D-rOQHjefiBOVEo7uqO-A8yjKXudoRo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGW7zT2IOjyIg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8737146986113728955)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8737146986113728955)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici : Audition \u00e0 l'Assembl\u00e9e nationale - 02/11/2022 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=oweVFXFFh04" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Audition de Jean-Marc Jancovici, membre du Haut Conseil pour le climat, par la commission d'enqu\u00eate de l'Assembl\u00e9e Nationale visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France ( infos sur cette..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici : Audition \u00e0 l'Assembl\u00e9e nationale - 02/11/2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6994209414270320641,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Assembl\u00e9e Nationale vient de cr\u00e9er une \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\" (https://bit.ly/3FJnu81 ). Les commissions d'enqu\u00eate du Parlement sont des instances qui servent \u00e0 contr\u00f4ler l'action du gouvernement (https://bit.ly/3E0VxaA ). \n\nElles ont des pouvoirs d'investigation \u00e9tendus : une personne convoqu\u00e9e par une commission d'enqu\u00eate ne peut refuser d'y aller sous peine de sanctions p\u00e9nales, et la Commission peut se faire communiquer tout document qu'elle juge utile (sauf ce qui est couvert par le secret d\u00e9fense ou assimil\u00e9) pour mener ses travaux.\n\nLa possibilit\u00e9 de cr\u00e9er une commission d'enqu\u00eate fait partie des pr\u00e9rogatives des groupes politiques \u00e0 l'Assembl\u00e9e, et ces commissions d'enqu\u00eate s'inscrivent \u00e9videmment dans le jeu politique o\u00f9 un groupe de l'opposition va pr\u00e9f\u00e9rentiellement choisir un sujet qui \"agace\" le pouvoir en place.\n\nLa commission pour laquelle j'ai \u00e9t\u00e9 convoqu\u00e9 a \u00e9t\u00e9 cr\u00e9\u00e9e par les R\u00e9publicains, et je parierais volontiers qu'elle veut pouvoir conclure que Hollande et Macron (voire avant) ont fait \"n'importe quoi\" en mati\u00e8re de politique \u00e9lectrique. Cela \u00e9tant, mon audition n'a que peu port\u00e9 sur l'\u00e9valuation des politiques publiques men\u00e9es ces 10 ou 20 derni\u00e8res ann\u00e9es. \n\n\"On\" m'a surtout pos\u00e9 des questions sur les avantages et inconv\u00e9nients de tel ou tel type d'\u00e9nergie, sans oublier de parler de sobri\u00e9t\u00e9 ou de d\u00e9pendance - et sur quoi - de notre pays \u00e0 des approvisionnements \u00e9trangers. Car, de fait, depuis la fin de l'\u00e8re renouvelable, notre pays est d\u00e9pendant de pays producteurs d'hydrocarbures ou de minerais, et le restera demain.\n\nDepuis la mise en ligne de cette vid\u00e9o, des extraits de 10 secondes (!) ou 2 minutes ont commenc\u00e9 \u00e0 circuler, avec comme commentaire \"voici ce que pense Jancovici\". Mais... dans une vid\u00e9o de plus de 2 heures, chacun pourra trouver un court extrait qui lui plait plus particuli\u00e8rement et cens\u00e9 r\u00e9sumer ma pens\u00e9e !\n\nToutes les \u00e9nergies ont des avantages, toutes ont des inconv\u00e9nients, et dans cette audition j'ai du \u00e9voquer les avantages de toutes les \u00e9nergies potentiellement disponibles. Avec un bon logiciel de montage on peut donc me pr\u00e9senter comme \u00e9tant favorable \u00e0... n'importe laquelle de nos \u00e9nergies !\n\nBien \u00e9videmment, il est impossible de r\u00e9sumer en quelques minutes la totalit\u00e9 de ce qu'il faut comprendre pour se faire une opinion sur la question. Un r\u00e9sum\u00e9 est toujours un exercice imparfait (h\u00e9las) et il faut du temps (h\u00e9las \u00e0 nouveau) pour suffisamment faire le tour de la question pour avoir une conclusion \u00e9tay\u00e9e.\n\nIl y a 10 ans j'avais \u00e9t\u00e9 auditionn\u00e9 par une autre commission d'enqu\u00eate (sur le \"cout r\u00e9el de l'\u00e9lectricit\u00e9\" : https://bit.ly/3NBhxMr ). Selon que l'on aime les verres \u00e0 moiti\u00e9 vides ou \u00e0 moiti\u00e9 pleins, on pourra se r\u00e9jouir que les questions soient moins na\u00efves et brossent plus large, ou que certains faits \"\u00e9l\u00e9mentaires\" fassent toujours l'objet d'un dialogue de sourds." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6994209414270320641,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6994209415067279360,urn:li:activity:6994209415067279360,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 183, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6994209415067279360,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6994209415067279360,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6994209415067279360", + "threadId": "activity:6994209415067279360", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994209415067279360", + "urn": "urn:li:activity:6994209415067279360", + "numComments": 355, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6994209415067279360", + "reactionTypeCounts": [ + { + "count": 3673, + "reactionType": "LIKE" + }, + { + "count": 329, + "reactionType": "INTEREST" + }, + { + "count": 273, + "reactionType": "PRAISE" + }, + { + "count": 167, + "reactionType": "MAYBE" + }, + { + "count": 66, + "reactionType": "APPRECIATION" + }, + { + "count": 43, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6994209415067279360", + "numLikes": 4551, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994209415067279360", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4554, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "nLeLw3U3QTGlzaz8sVpcHQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6993985139571580929", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6993985139571580929)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6993985139571580929)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_frank-elderson-membre-du-comit%C3%A9-ex%C3%A9cutif-activity-6993985139571580929-zGjJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6993985138636259329", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6993985139571580929", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6993985138636259329", + "excludedFromSeen": false, + "trackingData": { + "requestId": "82dba02a-b2e6-43a7-92e5-91e508154f69", + "trackingId": "RL76axlJJxKrv0tl/FOQUg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHwjgrhmtYhIA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHwjgrhmtYhIA", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1667495998379?e=1679529600&v=beta&t=H8y6XUiphaldLUGsn1SElCY1EozWTNlrcZZXgXvBqrk", + "expiresAt": 1679529600000, + "height": 804 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1667495998664?e=1679529600&v=beta&t=b-bHORho5AWUogMaE4E8EjOLaF7lKaypdvGa3gkJnEc", + "expiresAt": 1679529600000, + "height": 8 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1667495998664?e=1679529600&v=beta&t=J1qrsyh2nQhK71CK1F2sEXdBmnIir91WTt0s2Z7Ltrc", + "expiresAt": 1679529600000, + "height": 502 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1667495998664?e=1679529600&v=beta&t=OlKSlrfk_tdZBua0_g6opDtsrOVEKCnJ_ESJqKKgRR0", + "expiresAt": 1679529600000, + "height": 188 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1667495998664?e=1679529600&v=beta&t=vfkF5jP5xM35Dm90QSaPHekdHzPVv6SsaNfMEfqSzWs", + "expiresAt": 1679529600000, + "height": 63 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1667495998664?e=1679529600&v=beta&t=b86bgqoVhBjrcKsC_F5YZwRCAUT8F1bSaiZuXU90kGE", + "expiresAt": 1679529600000, + "height": 314 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHwjgrhmtYhIA/feedshare-shrink_" + }, + "displayAspectRatio": 0.392578125 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, text, application" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6993985138636259329,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Frank Elderson, membre du comit\u00e9 ex\u00e9cutif de la Banque Centrale Europ\u00e9enne, utilise le blog de la BCE pour dire aux banques de la zone euro qu'elles ne tiennent pas assez compte des sujets climatiques et environnementaux dans la conduite de leurs affaires \"ordinaires\" : https://bit.ly/3NunD0U . Sa conclusion repose sur l'examen de 186 banques supervis\u00e9es par la BCE, avec un total de bilan cumul\u00e9 de 25.000 milliards d'euros.\n\nL'auteur consid\u00e8re que les banques ne sont pas encore \"en mesure d'identifier, d'\u00e9valuer, de contr\u00f4ler et d'att\u00e9nuer les risques in\u00e9vitables d\u00e9coulant des crises climatiques et environnementales\". Plus pr\u00e9cis\u00e9ment, trois points sont l'objet de faiblesses importantes :\n\n- la m\u00e9thode : 96% des banques audit\u00e9es ne savent pas identifier correctement les risques li\u00e9s au climat et \u00e0 l'environnement dans leurs actifs. En particulier, elles ne collectent pas de donn\u00e9es granulaires sur les contreparties et les actifs qui permettraient de faire des analyses fines sur les risques. Le dirigeant de la BCE fait aussi remarquer que le concept de \"net zero en 2050\" est souvent avanc\u00e9 sans d\u00e9finition claire de ce que cela recouvre, et sans d\u00e9finition d'objectifs interm\u00e9diaires indispensables pour l'action.\n\n- un \u00e9cart entre discours et actes : alors que les documents de r\u00e9f\u00e9rence des banques \u00e9voquent abondamment le climat, dans la pratique les sources de revenus des banques sont aujourd'hui \u00e0 peu pr\u00e8s les m\u00eames \"qu'avant\". Lorsque des initiatives sont prises pour les clients les plus \"intensifs en carbone\", il n'est pas expliqu\u00e9 en quoi cela pr\u00e9figure une action plus syst\u00e9mique pour rendre la banque globalement compatible avec une \u00e9conomie qui se d\u00e9carbone rapidement\n\n- enfin des politiques annonc\u00e9es mais non mises en oeuvre en pratique, y compris en ignorant des avertissements d'experts internes dans un certain nombre de cas.\n\nLes bons points - car il y en a quand m\u00eame - vont aux banques qui int\u00e8grent les risques physiques et de transition dans la couverture en capital de leurs engagements en fonction des \"caract\u00e9ristiques climat\" de ces derniers.\n\nDans les recommandations du r\u00e9gulateur, il y a notamment :\n- l'utilisation d'outils pour planifier la transition, avec la fixation d'objectifs interm\u00e9diaires. \n- la collecte large d'informations, pour calculer des risques de mani\u00e8re granulaire\n- l'int\u00e9gration des risques de transition et physique de long terme dans l'\u00e9valuation des besoins en capitaux (argh ! le mot qui f\u00e2che une banque est l\u00e2ch\u00e9 :) ).\n- la gestion des risques li\u00e9s \u00e0 la perte de biodiversit\u00e9\n\nL'article se termine en disant que, en 2024, toutes les banques devront \u00eatre \"align\u00e9es avec les les exigences du r\u00e9gulateur\". L'auteur ne dit pas ce que la BCE fera si cet objectif n'est pas atteint, mais la mani\u00e8re classique de g\u00e9rer un risque consid\u00e9r\u00e9 comme \u00e9lev\u00e9 dans le monde bancaire est d'exiger une couverture \u00e9lev\u00e9e en fonds propre pour les engagements concern\u00e9s. La question est pos\u00e9e de savoir si c'est cela que la BCE a en t\u00eate." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6993985138636259329,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6993985139571580929,urn:li:activity:6993985139571580929,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6993985139571580929,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6993985139571580929,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6993985139571580929", + "threadId": "activity:6993985139571580929", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6993985139571580929", + "urn": "urn:li:activity:6993985139571580929", + "numComments": 37, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6993985139571580929", + "reactionTypeCounts": [ + { + "count": 524, + "reactionType": "LIKE" + }, + { + "count": 80, + "reactionType": "INTEREST" + }, + { + "count": 66, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6993985139571580929", + "numLikes": 679, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6993985139571580929", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 679, + "links": [] + }, + "elements": [] + } + } + } +] \ No newline at end of file diff --git a/out_posts_all_1.json b/out_posts_all_1.json new file mode 100644 index 0000000..5180412 --- /dev/null +++ b/out_posts_all_1.json @@ -0,0 +1,441665 @@ +[ + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "12h \u2022 ", + "accessibilityText": "12 hours ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7032115801016938496", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7032115801016938496)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7032115801016938496)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-recrute-une-cheffe-de-projet-agriculture-activity-7032115801016938496-lQSy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7032115800496848896", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7032115801016938496", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7032115800496848896", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "WgGLfP+PsJJRNNliI7bCzA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7508397560141145240", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676589776974?e=1677240000&v=beta&t=AUF_ALjzwld6RGorfZVpCNvAqsPm2sYkT6ZIIlartnM", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676589776974?e=1677240000&v=beta&t=imfhXK_jGt5qNv_MGqkHFYJ0lJGSuuNzqtBM2hmTZFI", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676589776974?e=1677240000&v=beta&t=-juGnXkSoa6rtMN47WjvlGm0ooKIowR69ciK3ZtSvCM", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676589776974?e=1677240000&v=beta&t=pQLZePdjbvWEqd5yoQS7e3m99jF29QQkP3BXUCANBS8", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQENdzDIiQ--jA/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7508397560141145240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7508397560141145240)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift recrute un.e Chef.fe de projet Agriculture ! [CDD 18 mois] by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/offre-emploi-chef-projet-agriculture/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift recrute un.e Chef.fe de projet Agriculture ! [CDD 18 mois]" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7032115800496848896,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce n'\u00e9tait pas le secteur le plus travaill\u00e9 dans le Plan de Transformation de l'Economie Fran\u00e7aise, et donc le Shift Project a d\u00e9cid\u00e9 d'y revenir. Car la production et cuisson de nos aliments, en incluant les \u00e9missions industrielles amont (fabrication des engrais, des intrants en g\u00e9n\u00e9ral, et des machines agricoles), les \u00e9missions dans les exploitations, et celles \u00e0 l'aval (industries agro-alimentaires, transports, emballages, d\u00e9placements des consommateurs pour faire les courses, cuisson, etc) c'est un tiers des \u00e9missions mondiales, et pas loin du m\u00eame pourcentage en France.\n\nIl semble donc difficile de dire que nous allons devenir \"neutres\", ce qui suppose de supprimer la quasi-totali\u00e9 de nos \u00e9missions actuelles, sans s'occuper s\u00e9rieusement de ce secteur. C'est pour cela que The Shift Project se cherche le mouton ou la brebis \u00e0 5 pattes (c'est de circonstance) pour piloter la r\u00e9flexion \u00e0 venir sur la bonne mani\u00e8re de d\u00e9carboner notre assiette.\n\nSi faire un petit tour par les locaux de cette association vous tente, \u00e0 vos CV ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7032115800496848896,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7032115801016938496,urn:li:activity:7032115801016938496,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7032115801016938496,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7032115801016938496,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7032115801016938496", + "threadId": "activity:7032115801016938496", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7032115801016938496", + "urn": "urn:li:activity:7032115801016938496", + "numComments": 35, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7032115801016938496", + "reactionTypeCounts": [ + { + "count": 265, + "reactionType": "LIKE" + }, + { + "count": 9, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7032115801016938496", + "numLikes": 286, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7032115801016938496", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 286, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1d \u2022 ", + "accessibilityText": "1 day ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7031764966638559232", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7031764966638559232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7031764966638559232)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_b8-d%C3%A9pendance-%C3%A9nerg%C3%A9tique-du-secteur-de-activity-7031764966638559232-jEQv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7031764966009376769", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7031764966638559232", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7031764966009376769", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "aOV+D/UyeqD71epNxDFjWQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7031764966638559232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7201673045911734909", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676576622421?e=1677240000&v=beta&t=5TXO_S0Ag1DjFHUS1SWl74oRn-PON6N7bnQrD5dI-xg", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676576622421?e=1677240000&v=beta&t=iRzT-Wg_IPxva_zCTD7yDKeZb0js1vNqJA7RHEAa33U", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676576622421?e=1677240000&v=beta&t=IFJgDBKj5RSGrKiYAY6RH7xOgTU5upPDrhQ4JKy7fgQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676576622421?e=1677240000&v=beta&t=J4yj3jU3KJFjhxqK_ZMAF6WaQgHscZNRFYpMfgBZszo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQEZhL5YyD4zww/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7201673045911734909)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7201673045911734909)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: B8- D\u00e9pendance \u00e9nerg\u00e9tique du secteur de la sant\u00e9 [Jean-Marc Jancovici] on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=LSe5XItXVtE" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "* Module de formation de M\u00e9decine et Sant\u00e9 Environnementale produit par la Conf\u00e9rence des Doyens des Facult\u00e9s de M\u00e9decine de France * \ud83c\udfe5 Le syst\u00e8me de la sant\u00e9 pourrait-il fonctionner dans un \u00e9tat de contraction \u00e9nerg\u00e9tique ? #h\u00f4pital #\u00e9nergie #sant\u00e9..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "B8- D\u00e9pendance \u00e9nerg\u00e9tique du secteur de la sant\u00e9 [Jean-Marc Jancovici]" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7031764966009376769,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s les ing\u00e9nieurs et les gestionnaires, c'est au tour des futurs m\u00e9decins de se faire former aux enjeux climatiques et environnementaux.\n\nD'ici \u00e0 septembre 2023, toutes les facult\u00e9s de m\u00e9decine de France vont inclure dans leur enseignement un module intitul\u00e9 \"m\u00e9decine et sant\u00e9 environnementale\" pour fournir des bases sur les enjeux, mais aussi sur la mani\u00e8re de les aborder. \n\nCe module est essentiellement constitu\u00e9 de vid\u00e9os dont la liste est accessible l\u00e0 : https://lnkd.in/dhmUtKmy\n\nMa \"partition\" dans cet ensemble consiste \u00e0 exposer l'apport de l'\u00e9nergie - c'est \u00e0 dire de notre costume d'Ironman - \u00e0 l'augmentation de l'esp\u00e9rance de vie, au travers de l'alimentation, de la prophylaxie, de la fabrication des vaccins et m\u00e9dicaments, et plus r\u00e9cemment au fonctionnement de l'h\u00f4pital moderne. \n\nLe grand paradoxe, dans la sant\u00e9, est que l'\u00e9mergence des combustibles fossiles a globalement fortement allong\u00e9 la dur\u00e9e de vie... tout en faisant na\u00eetre une menace croissante sur le maintien de cette dur\u00e9e \u00e0 l'avenir.\n\nCette courte vid\u00e9o ne d\u00e9taille pas du tout les futurs impacts possibles du changement climatique sur la sant\u00e9. Elle porte uniquement sur le pass\u00e9, pour faire comprendre en quoi l'\u00e9nergie a jou\u00e9 un r\u00f4le central dans le fait que l'esp\u00e9rance de vie (en fait l'\u00e2ge moyen du d\u00e9c\u00e8s) soit pass\u00e9e d'un peu moins de 30 ans en 1800 \u00e0 environ 80 aujourd'hui.\n\nComment ne pas retourner \u00e0 30 ans dans un monde sobre en \u00e9nergie ? C'est \u00e0 ce d\u00e9fi que devront participer les m\u00e9decins - et les autres professionnels de la sant\u00e9 - \u00e0 l'avenir. Esp\u00e9rons que ce module leur donnera des cl\u00e9s de lecture utiles !\n\nNB : en farfouillant dans la liste vous y trouverez quelques \"usual suspects\" (Bourg, Bihouix, Keller, Gouyon, Selosse, Auzanneau...) sur des formats assez courts : il n'y a plus qu'\u00e0 d\u00e9guster !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7031764966009376769,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7031764966638559232,urn:li:activity:7031764966638559232,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7031764966638559232,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7031764966638559232,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7031764966638559232", + "threadId": "activity:7031764966638559232", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031764966638559232", + "urn": "urn:li:activity:7031764966638559232", + "numComments": 59, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7031764966638559232", + "reactionTypeCounts": [ + { + "count": 661, + "reactionType": "LIKE" + }, + { + "count": 107, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "EMPATHY" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7031764966638559232", + "numLikes": 808, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031764966638559232", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 808, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3d \u2022 ", + "accessibilityText": "3 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7031166740847837185", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7031166740847837185)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7031166740847837185)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-s%C3%A9cheresse-pointe-sous-lanticyclone-activity-7031166740847837185-sdcK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7031166740042506240", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7031166740847837185", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7031166740042506240", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "2cAI3ed048+q6RkHqi9qoA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7031166740847837185,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8489194875064209322", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 700, + "fileIdentifyingUrlPathSegment": "800/0/1676581927584?e=1677240000&v=beta&t=hkKeAPDPF3hZ_waK9ol9aw-MtY-l0TrorQ33zl-gvTM", + "expiresAt": 1677240000000, + "height": 542 + }, + { + "width": 700, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676581927584?e=1677240000&v=beta&t=o3HJZu5CZ1vGIepW9RBTE1MmvB1jyAKDviWVbF6WMeI", + "expiresAt": 1677240000000, + "height": 542 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676581927585?e=1677240000&v=beta&t=lXH5zNdwoT9u2a3zQqsmJ9i-uxuhD9QhBtJRQhrjZ-M", + "expiresAt": 1677240000000, + "height": 124 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676581927585?e=1677240000&v=beta&t=BJ3LuL7w-kXzMF2z7Z0AwSWd5nfjQf-pgwkvx2tcm9I", + "expiresAt": 1677240000000, + "height": 372 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEwLB0r1VF0JQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.7742857142857142 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Pression r\u00e9duite au niveau de la mer moyenne du 21 janvier au 7 f\u00e9vrier" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8489194875064209322)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8489194875064209322)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "meteofrance.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La s\u00e9cheresse pointe sous l'anticyclone by meteofrance.com", + "actionTarget": "https://meteofrance.com/actualites-et-dossiers-0/la-secheresse-pointe-sous-lanticyclone" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La s\u00e9cheresse pointe sous l'anticyclone" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7031166740042506240,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il va falloir r\u00e9viser le sens des mots en mati\u00e8re de m\u00e9t\u00e9o. Quand on \u00e9coute le bulletin, \"il fait beau\", utilise un adjectif qui est g\u00e9n\u00e9ralement associ\u00e9 \u00e0 quelque chose de positif : il est assez rare que l'on emploie \"beau\" pour une situation dont on ne voudrait pas !\n\nMalheureusement, \"il fait beau\", en hiver (et m\u00eame en \u00e9t\u00e9 !), peut d\u00e9sormais \u00eatre associ\u00e9 \u00e0 un certain nombre d'inconv\u00e9nients dont on se passerait bien.\n\nTout d'abord, s'il \"fait beau\" c'est qu'il ne pleut pas. Notre pays s'appr\u00eate \u00e0 battre un record de dur\u00e9e de jours secs en hiver, avec plus de 3 semaines cons\u00e9cutives \u00e0 moins de 1 mm de pluie par jour sur le pays : https://bit.ly/3RZ2pdK\n\nCette s\u00e9cheresse hivernale survient alors que les nappes phr\u00e9atiques, au 1er janvier, \u00e9taient toujours \u00e0 un niveau bien trop bas sur une large partie du pays : https://bit.ly/3E7IALE (\"Plus des trois-quarts des nappes demeurent sous les normales mensuelles. Les niveaux sont nettement inf\u00e9rieurs \u00e0 ceux de d\u00e9cembre 2021\"). Rappelons que la recharge des nappes l'hiver c'est le confort - voire la survie - de la v\u00e9g\u00e9tation l'\u00e9t\u00e9.\n\nQuand \"il fait beau\", c'est g\u00e9n\u00e9ralement que nous sommes en conditions anticycloniques, avec peu de vent, et donc la production \u00e9olienne est faible, ce qui est effectivement le cas en France en moyenne sur les derni\u00e8res semaines : https://bit.ly/3lttNod \n\nLa carte des contenus carbone des pays europ\u00e9ens \u00e0 l'instant o\u00f9 je tape ce post refl\u00e8te cette faiblesse, avec des moyens fossiles qui sont utilis\u00e9s de mani\u00e8re significative : https://lnkd.in/eRvA7w-a Deuxi\u00e8me cons\u00e9quence de \"il fait beau\", donc : les \u00e9missions de CO2 augmentent, ainsi que les \u00e9missions de polluants associ\u00e9s \u00e0 la production \u00e9lectrique fossile (oxydes d'azote et particules fines).\n\nQuand \"il fait beau\" en hiver, avec un ciel d\u00e9gag\u00e9, il fait g\u00e9n\u00e9ralement aussi froid. Cela augmente d'autant la consommation \u00e9lectrique - une deuxi\u00e8me raison d'avoir des centrales \u00e0 charbon qui fonctionnent plus - ainsi que le chauffage fossile ou au bois, qui \u00e9mettent aussi des polluants. Avec l'air qui circule peu (puisqu'il y a un anticyclone), et les autres sources de particules (agriculture et transports), on se retrouve avec un \u00e9pisode de pollution aux particules fines un peu prononc\u00e9 : http://www2.prevair.org/ (choisir \"Europe\" et \"PM 2.5\" dans les menus d\u00e9roulants pour avoir une vue d'ensemble de l'Europe pour les particules les plus dangereuses). Les parisiens peuvent jeter un coup d'oeil \u00e0 https://airparif.asso.fr/ \n\nR\u00e9sumons : \"Il fait beau\" signifie donc une v\u00e9g\u00e9tation qui va souffrir l'\u00e9t\u00e9 prochain, une pollution (qui tue) et des \u00e9missions de CO2 en hausse. Si ces cons\u00e9quences \u00e9taient rappel\u00e9es \u00e0 chaque bulletin m\u00e9t\u00e9o, peut-\u00eatre que cela nous motiverait un peu plus \u00e0 d\u00e9carboner rapidement notre \u00e9conomie, et \u00e0 commencer \u00e0 nous exciter un peu plus s\u00e9rieusement sur la pr\u00e9paration au mieux \u00e0 un climat qui va devenir plus hostile pour tout ce qui pousse.\n\nC'\u00e9taient les bonnes nouvelles du jour :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7031166740042506240,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7031166740847837185,urn:li:activity:7031166740847837185,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 294, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7031166740847837185,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7031166740847837185,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7031166740847837185", + "threadId": "activity:7031166740847837185", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031166740847837185", + "urn": "urn:li:activity:7031166740847837185", + "numComments": 437, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7031166740847837185", + "reactionTypeCounts": [ + { + "count": 7372, + "reactionType": "LIKE" + }, + { + "count": 1641, + "reactionType": "INTEREST" + }, + { + "count": 378, + "reactionType": "APPRECIATION" + }, + { + "count": 247, + "reactionType": "PRAISE" + }, + { + "count": 42, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7031166740847837185", + "numLikes": 9714, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7031166740847837185", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 9730, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3d \u2022 ", + "accessibilityText": "3 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7030856557022072832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030856557022072832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030856557022072832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_biodiversit%C3%A9-ni-lampleur-ni-la-rapidit%C3%A9-activity-7030856557022072832-3dG6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7030856556048973824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7030856557022072832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7030856556048973824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "SLSib+wjIwP3hefj1FujNw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030856557022072832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8887778663049763473", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676616168242?e=1677240000&v=beta&t=30OSGvxwUAC2aVVVpTkCkzWWzoCjnDdu6Cghb7AIOaw", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676616168242?e=1677240000&v=beta&t=UKxp1GGnhnRlJE_fxAIUH7z54q4r3WNjGn4ATx0IHvE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676616168242?e=1677240000&v=beta&t=aikSswvbL8W1dm1x0AEhEx0xHZE9qBFe87c_qfRNiwA", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676616168242?e=1677240000&v=beta&t=nR77RBG9xsy77ILzA15sTImI8zWJXQyQexxLB17u00A", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQEX5Bg_2Ik79Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8887778663049763473)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8887778663049763473)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Biodiversit\u00e9 : \u00ab Ni l\u2019ampleur, ni la rapidit\u00e9, ni le caract\u00e8re syst\u00e9mique de l\u2019\u00e9croulement des insectes n\u2019ont \u00e9t\u00e9 anticip\u00e9s par les scientifiques \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/idees/article/2023/02/12/biodiversite-ni-l-ampleur-ni-la-rapidite-ni-le-caractere-systemique-de-l-ecroulement-des-insectes-n-ont-ete-anticipes-par-les-scientifiques_6161496_3232.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Biodiversit\u00e9\u00a0: \u00ab\u00a0Ni l\u2019ampleur, ni la rapidit\u00e9, ni le caract\u00e8re syst\u00e9mique de l\u2019\u00e9croulement des insectes n\u2019ont \u00e9t\u00e9 anticip\u00e9s par les scientifiques\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7030856556048973824,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 512, + "length": 16, + "miniProfile": { + "firstName": "Stephane", + "lastName": "Foucart", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAABv2IoBn0BOirWMxsoYYR5uscV_zSBgOsQ", + "occupation": "Science correspondent at Le Monde", + "objectUrn": "urn:li:member:7329930", + "entityUrn": "urn:li:fs_miniProfile:ACoAAABv2IoBn0BOirWMxsoYYR5uscV_zSBgOsQ", + "publicIdentifier": "stephane-foucart-a365552", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1671650011916?e=1681948800&v=beta&t=sfTLd37tuMTn6GnoUXgIh3p8Kd1Q8nGH6Jb0NOsYVik", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1671650011916?e=1681948800&v=beta&t=294ugk_qvRG2tyRBFSIp_x6b10jnkKoB_E77n3IvYjU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1671650011916?e=1681948800&v=beta&t=6mVeDPnhS5EiphvG29TceeHVP10ornsRqKhxz_rOQNI", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1671650011916?e=1681948800&v=beta&t=dwsqw7IVhyIFy4qgvPS_VaLwq93SG6umZhm1YhiVNBc", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQGHs1C_06t5hA/profile-displayphoto-shrink_" + } + }, + "trackingId": "srQ75kcqQi2cl00/C2XncA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Ils p\u00e8seraient environ 1 milliard de tonnes, soit autant que la masse combin\u00e9e des humains et de leurs animaux d'\u00e9levage. Qui ? Les arthropodes terrestres, que nous appelons plus commun\u00e9ment les insectes : https://bit.ly/3XpnsYk (car les araign\u00e9es et les mille-pattes ne sont pas des insectes, ces derniers ayant 6 pattes).\n\nPourtant, leurs effectifs sont en baisse rapide. Ils le sont chez nous, mais aussi \"ailleurs\", comme par exemple en Asie : https://bit.ly/3Xto9j4\n\nDans cette tribune parue dans Le Monde, Stephane Foucart, journaliste sciences, rappelle une fois de plus cet effondrement en cours, tout en soulignant que, \u00e0 la diff\u00e9rence du climat, nous n'avons pas de \"ph\u00e9nom\u00e8ne extr\u00eame\" qui survienne de temps \u00e0 autres pour nous r\u00e9veiller un peu (ce qui, m\u00eame pour le climat, est h\u00e9las peu impactant, puisqu'aucun ouragan ou aucune s\u00e9cheresse n'a pour le moment conduit \u00e0 une baisse des \u00e9missions mondiales).\n\nLa cause de cette baisse est connue : ce sont les substances que nous introduisons dans l'environnement pr\u00e9cis\u00e9ment pour supprimer ces bestioles rampantes ou volantes. Depuis les d\u00e9buts de l'agriculture, notre esp\u00e8ce fait tout ce qu'elle a pu pour partager le moins possible le r\u00e9sultat de cette activit\u00e9 avec d'autres esp\u00e8ces.\n\nNous ne souhaitons pas que le champ pr\u00e9vu pour accueillir du bl\u00e9 ou des poireaux accueille aussi des \"mauvaises herbes\", qui captent une partie des nutriments et du soleil : c'est la raison de l'usage des herbicides, qui sont les premiers pesticides utilis\u00e9s en tonnage en France. \n\nNous ne souhaitons pas que les \u00e9pis de ma\u00efs ou les cerises soient partag\u00e9s avec des papillons ou des mouches : c'est la raison de l'usage des insecticides qui permettent d'avoir le produit des cultures \"rien que pour nous\". \n\nLa cons\u00e9quence n'est pas une surprise : les effectifs de ces insectes diminuent. La solution semble donc \u00e9vidente, et sa contrepartie aussi : pour pr\u00e9server les insectes, il faut utiliser moins d'insecticides... et accepter alors de laisser une petite partie de ce que nous cultivons \u00e0 ces animaux, qui serviront eux-m\u00eames de nourriture aux oiseaux et \u00e0 d'autres esp\u00e8ces animales. \n\nCela fera fatalement baisser les rendements agricoles, et donc monter le prix de la nourriture. La bonne question est de savoir si nous \u00e9chapperons de toute fa\u00e7on \u00e0 une hausse de prix pour ce que nous mangeons. Car, sans insectes pollinisateurs, il y aura des baisses de rendement pour un certain nombre de productions, et sans insectes tout court probablement des \"surprises\" pour certains services \u00e9cosyst\u00e9miques dont nous b\u00e9n\u00e9ficions aujourd'hui.\n\nIl est \u00e0 craindre que, pour la biodiversit\u00e9 plus encore que pour le climat, il n'y ait pas d'action \u00e0 large \u00e9chelle tant que nous ne serons pas \"atteints dans notre chair\", avec au surplus la capacit\u00e9 \u00e0 faire le lien entre ce qui nous arrive et la v\u00e9ritable cause. Pour la biodiversit\u00e9 comme pour le climat, un de nos adversaires les plus redoutables est le sentiment que nous avons encore bien le temps." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030856556048973824,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030856557022072832,urn:li:activity:7030856557022072832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 119, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030856557022072832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030856557022072832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7030856557022072832", + "threadId": "activity:7030856557022072832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030856557022072832", + "urn": "urn:li:activity:7030856557022072832", + "numComments": 264, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030856557022072832", + "reactionTypeCounts": [ + { + "count": 3756, + "reactionType": "LIKE" + }, + { + "count": 607, + "reactionType": "INTEREST" + }, + { + "count": 334, + "reactionType": "APPRECIATION" + }, + { + "count": 68, + "reactionType": "PRAISE" + }, + { + "count": 32, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030856557022072832", + "numLikes": 4807, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030856557022072832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4808, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4d \u2022 ", + "accessibilityText": "4 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7030653289532661760", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030653289532661760)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030653289532661760)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_souverainet%C3%A9-et-ind%C3%A9pendance-%C3%A9nerg%C3%A9tique-activity-7030653289532661760-omeJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7030653288962252800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7030653289532661760", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7030653288962252800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "1cBpGk7UtoOnktYk2ElDfg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030653289532661760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:6974363340135969765", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676239082694?e=1677240000&v=beta&t=7HrNYzrmbVTOVl6n6WyGxdqbFLHhwFnda_kFTlalVWk", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676239082694?e=1677240000&v=beta&t=5qq5g4E2fSzkZ8NtHGk588grxIkkqCMacxjWkMpsMb8", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676239082694?e=1677240000&v=beta&t=ymNJHi36buX2txOd83yeD1Bj0t8l8DeULnFoh03nKog", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676239082694?e=1677240000&v=beta&t=g3HH3q2STSeA5DOvGGbRiWOVj1Be_K0Gf2x8iVBWUWY", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQERtm7gKRZcgQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5612499999999999 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6974363340135969765)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6974363340135969765)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "videos.assemblee-nationale.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et M. Olivier Gupta, Directeur g\u00e9n\u00e9ral - Mardi 24 janvier 2023 on videos.assemblee-nationale.fr", + "actionTarget": "https://videos.assemblee-nationale.fr/video.12773673_63cff1a1b41bb.souverainete-et-independance-energetique-de-la-france--m-bernard-doroszczuk-president-de-l-autori-24-janvier-2023" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "- \u00c0 16 heures : - Audition, ouverte \u00e0 la presse, de MM. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et Olivier Gupta, Directeur g\u00e9n\u00e9ral" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Bernard Doroszczuk, Pr\u00e9sident de l\u2019Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN), et M. Olivier Gupta, Directeur g\u00e9n\u00e9ral - Mardi 24 janvier 2023" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7030653288962252800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A quoi sert l'Autorit\u00e9 de S\u00fbret\u00e9 Nucl\u00e9aire ? Si vous vous \u00eates pos\u00e9 la question un jour, cette vid\u00e9o est faite pour vous. Il s'agit de l'audition du patron de l'ASN dans le cadre des auditions de la \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\".\n\nEn 3 heures de temps, sont pass\u00e9s en revue le mandat et le fonctionnement de cette instance, ses moyens, et l'articulation avec d'autres organismes impliqu\u00e9s dans la s\u00fbret\u00e9 nucl\u00e9aire (comme l'IRSN, qui vient par ailleurs de faire l'objet d'une annonce inattendue de rattachement partiel \u00e0 l'ASN apr\u00e8s cette audition : https://lnkd.in/eQV9WjJU).\n\nEn 3 heures, il y a \u00e9videmment du temps pour aborder des questions un peu techniques, dont les suivantes :\n\n- est-ce le changement de cadre r\u00e9glementaire en cours de route qui explique une partie du retard \u00e0 Flamanville ?\n\n- pourquoi en France les installations doivent \u00eatre conformes \u00e0 l'\u00e9tat de l'art alors qu'aux USA il leur suffit d'\u00eatre conformes \u00e0 leurs sp\u00e9cifications d'origine ?\n\n- l'ASN met-elle en balance la s\u00e9curit\u00e9 d'approvisionnement avec la s\u00fbret\u00e9 nucl\u00e9aire ?\n\n- le niveau de s\u00fbret\u00e9 des installations nucl\u00e9aires fran\u00e7aises s'est-il d\u00e9grad\u00e9 parce que le parc est plus \u00e2g\u00e9 ?\n\n- y a-t-il un risque \u00e0 prolonger les centrales au-del\u00e0 de 40 ans ?\n\n- y a-t-il un risque de pertes de comp\u00e9tences \u00e0 utiliser des sous-traitants dans le nucl\u00e9aire ?\n\n- le parc - actuel ou futur - int\u00e8gre-t-il des mesures d'adaptation au changement climatique ?\n\n- l'EPR est-il un r\u00e9acteur trop compliqu\u00e9 parce qu'il est franco-allemand ?\n\n- la fili\u00e8re est-elle suffisamment attractive pour disposer des comp\u00e9tences qui seront n\u00e9cessaires pour mener un chantier ambitieux de \"renouveau nucl\u00e9aire\" ?\n\n- le pr\u00e9sident de l'ASN voit-il sa responsabilit\u00e9 personnelle n\u00e9cessairement engag\u00e9e en cas d'accident nucl\u00e9aire en France ? (cette question d\u00e9coulait d'une affirmation de Corinne Lepage soutenant que c'\u00e9tait le cas)\n\nDans cette intervention le pr\u00e9sident de l'ASN fait part \u00e0 plusieurs reprises d'une crainte forte : celle d'\u00eatre mis dans la situation o\u00f9 il serait amen\u00e9 \u00e0 choisir entre plonger le pays dans le noir et laisser fonctionner une installation qu'il aurait arr\u00eat\u00e9e \"en temps normal\". Cette situation se pr\u00e9sentera, dit-il, si la politique \u00e9nerg\u00e9tique se base sur des paris incertains ou un d\u00e9faut d'anticipation qui am\u00e8neraient le pays \u00e0 se retrouver sans marges. A bon entendeur..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030653288962252800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030653289532661760,urn:li:activity:7030653289532661760,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 21, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030653289532661760,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030653289532661760,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7030653289532661760", + "threadId": "activity:7030653289532661760", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030653289532661760", + "urn": "urn:li:activity:7030653289532661760", + "numComments": 43, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030653289532661760", + "reactionTypeCounts": [ + { + "count": 545, + "reactionType": "LIKE" + }, + { + "count": 159, + "reactionType": "INTEREST" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030653289532661760", + "numLikes": 728, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030653289532661760", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 728, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6d \u2022 ", + "accessibilityText": "6 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7030130262550147072", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7030130262550147072)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7030130262550147072)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_des-chercheurs-sugg%C3%A8rent-de-cr%C3%A9er-un-%C3%A9cran-activity-7030130262550147072-8284?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7030130261799366656", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7030130262550147072", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7030130261799366656", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "14Fc/OPmn0WGc/VjJ1ZG9Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7030130262550147072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7133322728601584016", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676121323841?e=1677240000&v=beta&t=oO_ZoJao1XKyGMkt7M6y3pp-xFTTb2WiJFRtCw7gUJY", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676121323841?e=1677240000&v=beta&t=6p1FvpGlkmRSEhbl51Q-VIQsibkjJYT-pmwtfxwhh3Q", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676121323842?e=1677240000&v=beta&t=-u3RC2pA6kwlY0N5NqV351SfPswMGqlVULy_aStfnwI", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676121323842?e=1677240000&v=beta&t=syLJQzXu0F-CG---m2tCyPYZXtLOwq0tfW0pUN4FCoc", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQH6bX0STNeXig/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7133322728601584016)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7133322728601584016)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "msn.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Des chercheurs sugg\u00e8rent de cr\u00e9er un \u00e9cran de poussi\u00e8re lunaire entre la Terre et le soleil pour att\u00e9nuer le changement climatique by msn.com", + "actionTarget": "https://www.msn.com/fr-fr/actualite/technologie-et-sciences/des-chercheurs-sugg%C3%A8rent-de-cr%C3%A9er-un-%C3%A9cran-de-poussi%C3%A8re-lunaire-entre-la-terre-et-le-soleil-pour-att%C3%A9nuer-le-changement-climatique/ar-AA17iku5" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Des chercheurs sugg\u00e8rent de cr\u00e9er un \u00e9cran de poussi\u00e8re lunaire entre la Terre et le soleil pour att\u00e9nuer le changement climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7030130261799366656,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En route pour la g\u00e9oing\u00e9nierie ! Si nous avons un exc\u00e8s d'effet de serre (= un exc\u00e8s de rayonnement infrarouge en provenance de l'atmosph\u00e8re), il suffit de diminuer un peu le rayonnement solaire re\u00e7u par la plan\u00e8te, et l'ensemble nous remet \u00e0 la bonne temp\u00e9rature. C'est b\u00eate comme chou non ?\n\nUne id\u00e9e pour y parvenir consiste \u00e0 placer entre la terre et le soleil un objet suffisamment vaste, et l\u00e9g\u00e8rement opaque, qui va intercepter une partie du rayonnement solaire et ainsi contribuer \u00e0 \"refroidir la terre\".\n\nLa m\u00e9canique c\u00e9leste nous indique en effet que, sur la ligne qui joint la terre au soleil, il existe un point - appel\u00e9 point de Lagrange - o\u00f9 l'attraction de la terre et celle du soleil dont de m\u00eame intensit\u00e9. Si l'on peut y placer un objet, ce dernier y reste (il est \"tir\u00e9 de chaque c\u00f4t\u00e9\" avec une force \u00e9gale), et se met alors \u00e0 orbiter autour du soleil \u00e0 la m\u00eame vitesse que la terre. \n\nIl y a donc p\u00e9riodiquement l'id\u00e9e de placer \u00e0 cet endroit de quoi rafra\u00eechir notre plan\u00e8te : de grands miroirs, ou, r\u00e9cemment, un nuage de poussi\u00e8re r\u00e9fl\u00e9chissante (https://bit.ly/3RYkybW ). A partir du pouvoir r\u00e9flexif des particules de poussi\u00e8re et de leur densit\u00e9, les chercheurs ont calcul\u00e9 qu'avec 10 millions de tonnes de poussi\u00e8re on pourrait diminuer la puissance solaire d'un peu moins de 2%. \n\nLa puissance solaire re\u00e7ue au niveau du sol \u00e9tant de 170 watts par m2 en moyenne (sur toute a surface et toute l'ann\u00e9e), 2% en moins ca fait 3 watts par m2, soit \u00e0 peu pr\u00e8s le for\u00e7age actuellement du au suppl\u00e9ment humain d'effet de serre. CQFD.\n\nSauf que... 10 Mt repr\u00e9senterait 700 fois la masse combin\u00e9e de tout ce que les humains ont envoy\u00e9 dans l'espace depuis le d\u00e9but des fus\u00e9es. Si ca fait trop depuis la Terre, partons de la Lune ! Car en plus sur notre satellite il y a de la poussi\u00e8re \u00e0 volont\u00e9... Il n'y a qu'\u00e0 y construire une base permanente, et y d\u00e9velopper une industrie permettant de fabriquer fus\u00e9es et carburant \u00e0 partir de mat\u00e9riaux locaux et de rayonnement solaire (pour \u00e9viter d'amener sur la lune le poids des fus\u00e9es+carburants depuis la terre, ce qui \"ram\u00e8nerait au probl\u00e8me pr\u00e9c\u00e9dent\"). Une formalit\u00e9 :)\n\nPar ailleurs en arrivant au point de Lagrange les grains de poussi\u00e8re ont une \u00e9nergie cin\u00e9tique (la \"vitesse\" qui leur a permis de se d\u00e9placer depuis le point de lancement) et pas de p\u00e9dale de frein : ils ne peuvent \u00eatre \"arr\u00eat\u00e9s\" au bon endroit. Pire : si la position initiale d'un grain de poussi\u00e8re \"arr\u00eat\u00e9\" est \u00e9loign\u00e9e d'un km du point de Lagrange, au bout d'un an il se sera \u00e9loign\u00e9 \u00e0 plus de 1000 km du point en question (c'est un \u00e9quilibre metastable). Il faudrait donc r\u00e9alimenter ce nuage en permanence.\n\nQu'en d\u00e9duire ? Que la conclusion \u00e9vidente \u00e0 tirer de ce papier est que cette solution ne sera jamais \u00e0 l'\u00e9chelle. C'est pourtant l'inverse que laissent penser quelques titres \u00e0 sensation relev\u00e9s ici ou l\u00e0. Avis aux journalistes qui ont relay\u00e9 ou veulent le faire : commencez par lire les petites lignes, comme avec les contrats d'assurance..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7030130261799366656,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7030130262550147072,urn:li:activity:7030130262550147072,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 206, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7030130262550147072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7030130262550147072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7030130262550147072", + "threadId": "activity:7030130262550147072", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030130262550147072", + "urn": "urn:li:activity:7030130262550147072", + "numComments": 439, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7030130262550147072", + "reactionTypeCounts": [ + { + "count": 1868, + "reactionType": "LIKE" + }, + { + "count": 414, + "reactionType": "INTEREST" + }, + { + "count": 49, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "EMPATHY" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7030130262550147072", + "numLikes": 2368, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7030130262550147072", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2564, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6d \u2022 Edited \u2022 ", + "accessibilityText": "6 days ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7029872348539314176", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029872348539314176)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029872348539314176)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_agriculture-et-climat-lurgence-de-sadapter-activity-7029872348539314176-51Dz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7029872347792691200", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7029872348539314176", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7029872347792691200", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "NUtJGeIAbRj/G3k3fJbBTg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029872348539314176,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7517892329526013595", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676144116328?e=1677240000&v=beta&t=_OizRdJU7RJ_j74QoFS51PZZCWTh1nd6IL9QbKSKKcg", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676144116328?e=1677240000&v=beta&t=lkcH_OJjERDu7rIMigDWnMRe3J7JbwJwJ8fLTcay2No", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676144116328?e=1677240000&v=beta&t=7cAetDuhYdYHQ8-Kd9S5iq4wVHI4Fl5DdhNe5CNrnxc", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676144116328?e=1677240000&v=beta&t=dgD1rkEs5dnpqHwGL4Oar4GqaG3hCZQyxelvIPj4Uwk", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFDOjF-xY0lYQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7517892329526013595)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7517892329526013595)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Agriculture et climat : l\u2019urgence de s\u2019adapter ! | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-agriculture-climat-adaptation" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Agriculture et climat : l\u2019urgence de s\u2019adapter ! | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7029872347792691200,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "2022 ne restera pas dans les m\u00e9moires des agriculteurs comme une ann\u00e9e tr\u00e8s sympathique. Au mieux les cultures n'ont pas souffert par rapport \u00e0 2021, et au pire elles ont connu une baisse de rendement, de l'ordre de 15% pour le ma\u00efs ou le soja.\n\nMais c'est surtout sur l'herbe, qui fait l'objet de peu de syst\u00e8mes irrigu\u00e9s, que la chute a \u00e9t\u00e9 la plus forte : il y a eu un d\u00e9ficit de production des p\u00e2turages d'un tiers par rapport \u00e0 la moyenne 1989 - 2018, ce qui a fortement baiss\u00e9 une partie de la production de fromage AOP (par exemple pas de Salers cet \u00e9t\u00e9).\n\nCet article de Carbone 4 vous propose un petit tour d'horizon de l'ann\u00e9e \u00e9coul\u00e9e, compl\u00e9t\u00e9e par une analyse prospective sur 4 d\u00e9partements du Sud-Ouest (Aveyron, Tarn, Tarn-et-Garonne et Lot).\n\nA cause de l'inertie de la d\u00e9rive climatique (qui s'amplifie tant que les \u00e9missions mondiales nettes ne sont pas nulles), les situations adverses vont se multiplier, et il est plus que temps de r\u00e9fl\u00e9chir \u00e0 ce que nous allons faire en face, surtout qu'\u00e0 l'horizon de quelques d\u00e9cennies il va aussi y avoir un sujet sur la disponibilit\u00e9 de l'\u00e9nergie fossile, qui est partout dans les cultures : pour fabriquer les engrais azot\u00e9s, pour les amener dans les champs, pour faire avancer les tracteurs, pour faire avancer les camions \u00e0 l'aval du champ, pour faire tourner le secteur agroalimentaire.... \n\nL'agriculture est par ailleurs un syst\u00e8me humainement inerte : les actifs y aiment les traditions (ce qui est une mani\u00e8re de dire qu'ils n'aiment pas le changement !), la rotation du capital y est lente, et enfin y faire venir du monde ne se fait pas en un claquement de doigts.\n\nPour minimiser les d\u00e9g\u00e2ts, le ma\u00eetre mot, l\u00e0 comme ailleurs, est donc l'anticipation. Mais comment anticiper alors que nous avons b\u00e2ti un syst\u00e8me \u00e9conomique et r\u00e9glementaire dont la premi\u00e8re priorit\u00e9 est de tirer les prix vers le bas - ce qui prive le secteur de moyens d'investissement - sur la base de la comp\u00e9tition - qui raccourcit les horizons de temps - et pas du tout d'assurer la p\u00e9rennit\u00e9 physique d'un syst\u00e8me r\u00e9silient ?\n\nLe secteur agricole n'est ni assez riche ni assez libre de ses mouvements pour d\u00e9cider en toute autonomie de moyens de \"faire ce qu'il faut\" pour rendre son activit\u00e9 la plus r\u00e9siliente possible, tout en abaissant la pression environnementale (\u00e9missions de gaz \u00e0 effet de serre, phytosanitaires) dont il est \u00e0 l'origine. Rappelons qu'il ne b\u00e9n\u00e9ficie aujourd'hui que de 2% des revenus \u00e9conomiques du pays, ce qui est peu pour un secteur dont 100% des autres activit\u00e9s d\u00e9pendent. \n\nSi nous voulons une agriculture \u00e0 la fois plus r\u00e9siliente face \u00e0 l'amplification de la d\u00e9rive climatique \u00e0 venir et moins perturbatrice ce l'environnement, il y a un \u00e9l\u00e9ment que nous allons difficilement pouvoir \u00e9viter : d\u00e9cider de payer la nourriture plus cher. Sinon c'est ce qui finira par arriver de toute fa\u00e7on, mais de mani\u00e8re moins bien organis\u00e9e !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029872347792691200,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029872348539314176,urn:li:activity:7029872348539314176,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029872348539314176,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029872348539314176,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7029872348539314176", + "threadId": "activity:7029872348539314176", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029872348539314176", + "urn": "urn:li:activity:7029872348539314176", + "numComments": 102, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029872348539314176", + "reactionTypeCounts": [ + { + "count": 1063, + "reactionType": "LIKE" + }, + { + "count": 158, + "reactionType": "INTEREST" + }, + { + "count": 37, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029872348539314176", + "numLikes": 1283, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029872348539314176", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1283, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7029567522739773440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029567522739773440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029567522739773440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_abandoned-farm-fields-take-decades-to-recover-activity-7029567522739773440-WGjz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7029567522039308288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7029567522739773440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7029567522039308288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "2vUI3a7hdOyTjgF+5s8flg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029567522739773440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7867305761321344434", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676524860543?e=1677240000&v=beta&t=S9NYAsadUBfk0HkSWHqt75uF6WQlvgKRrujz2pHRpAw", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676524860543?e=1677240000&v=beta&t=wlfUMYlmzAlWPPbxFzPJy-iEuV_R3p6aLudbyTYeSBQ", + "expiresAt": 1677240000000, + "height": 667 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676524860544?e=1677240000&v=beta&t=5qGbWHjSz7hvBMWxWFT24DdVBWdXCF_KGJoxLGzDjv4", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676524860544?e=1677240000&v=beta&t=5eq6JdjmqX7uisUnZEcpSgG2jJIBr9fkyzriTG4ywFA", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D5627AQE6di4YUuavCg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7867305761321344434)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7867305761321344434)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "modernfarmer.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Abandoned Farm Fields Take Decades to Recover Biodiversity\u2014If They Can At All - Modern Farmer by modernfarmer.com", + "actionTarget": "https://modernfarmer.com/2023/02/grassland-recovery/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Abandoned Farm Fields Take Decades to Recover Biodiversity\u2014If They Can At All - Modern Farmer" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7029567522039308288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La biodiversit\u00e9 est-elle r\u00e9siliente ? Dit autrement, si l'on se met \u00e0 \"laisser en paix\" un endroit qui \u00e9tait autrefois perturb\u00e9 par les activit\u00e9s humaines, est-ce que la biodiversit\u00e9 revient au niveau qu'elle aurait eu si nous n'avions jamais touch\u00e9 \u00e0 rien ?\n\nCela n'est pas garanti, indique une \u00e9tude parue dans Journal of Ecology (https://lnkd.in/e7G9q24e ), qui a examin\u00e9 le nombre et l'abondance des esp\u00e8ces sur des parcelles de prairie situ\u00e9es aux USA et anciennement agricoles qui ont \u00e9t\u00e9 laiss\u00e9es \"\u00e0 l'abandon\" depuis 3 ans \u00e0 presque un si\u00e8cle. \n\nSur aucune des parcelles les esp\u00e8ces n'\u00e9taient au niveau de ce que l'on trouvait sur des prairies identiques n'ayant jamais \u00e9t\u00e9 exploit\u00e9s pour l'agriculture. Une soixantaine de plantes poussant sur les prairies \"primaires\" ne s'observaient sur aucune des parcelles de prairie \"secondaire\", m\u00eame au bout de plusieurs d\u00e9cennies. En moyenne, un tiers des esp\u00e8ces manque \u00e0 l'appel sur les parcelles ayant \u00e9t\u00e9 cultiv\u00e9es par rapport \u00e0 celles ne l'ayant jamais \u00e9t\u00e9. \n\nPour beaucoup d'entre nous, il y a l'id\u00e9e de r\u00e9versibilit\u00e9 dans l'\u00e9tat des \u00e9cosyst\u00e8mes : si la pression qui a conduit \u00e0 la baisse de la biodiversit\u00e9 est all\u00e9g\u00e9e ou supprim\u00e9e, alors la biodiversit\u00e9 se r\u00e9tablit pour l'essentiel. Cette \u00e9tude montre que la r\u00e9alit\u00e9 n'est pas si simple, et que la recolonisation d'un \u00e9cosyst\u00e8me d\u00e9grad\u00e9 n'est pas n\u00e9cessairement automatique.\n\nEn outre cette \u00e9tude a \u00e9t\u00e9 men\u00e9e avec une d\u00e9rive climatique limit\u00e9e : pour les esp\u00e8ces v\u00e9g\u00e9tales qui avaient \u00e9t\u00e9 supprim\u00e9es par l'exploitation agricole, le climat d'aujourd'hui est encore relativement proche de celui qui existait au moment de la mise de la prairie en culture. \n\nMais \u00e0 l'avenir le climat existant au moment de l'arr\u00eat de la pression sera de plus en plus diff\u00e9rent de celui qui existait au moment du d\u00e9marrage de la pression. La question de la r\u00e9versibilit\u00e9 sera n\u00e9cessairement encore plus pos\u00e9e dans ce contexte.\n\nCe que sugg\u00e8re l'article dans sa partie finale est de donner un \"coup de pouce\" \u00e0 la restauration de la biodiversit\u00e9, par exemple en plantant des graines des esp\u00e8ces qui ont du mal \u00e0 revenir spontan\u00e9ment. \n\nEn somme, la proposition est de corriger la baisse de la biodiversit\u00e9 caus\u00e9e par l'agriculture par... une autre forme d'agriculture ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029567522039308288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029567522739773440,urn:li:activity:7029567522739773440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 111, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029567522739773440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029567522739773440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7029567522739773440", + "threadId": "activity:7029567522739773440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029567522739773440", + "urn": "urn:li:activity:7029567522739773440", + "numComments": 153, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029567522739773440", + "reactionTypeCounts": [ + { + "count": 1598, + "reactionType": "LIKE" + }, + { + "count": 604, + "reactionType": "INTEREST" + }, + { + "count": 22, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029567522739773440", + "numLikes": 2254, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029567522739773440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2256, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7029152901151227904", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7029152901151227904)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7029152901151227904)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_r%C3%A9chauffement-climatique-christophe-b%C3%A9chu-activity-7029152901151227904-Ko6p?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7029152900555665408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7029152901151227904", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7029152900555665408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "jD6HhlzcSOpSiIfjv4mvKg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7029152901151227904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7714865795466691610", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676104521119?e=1677240000&v=beta&t=qFR-DbsPypP9HON0uLf_iXeoN9A2eK_48ZIPP7b8lac", + "expiresAt": 1677240000000, + "height": 468 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676104521119?e=1677240000&v=beta&t=INp-tw69neKrCL7lknXMWaz0sexDp2KP_PDX9fyDbTU", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676104521119?e=1677240000&v=beta&t=6MdM-QlBFD29SovmAYHX19YGGC9GPHxwccdgC6T9dfY", + "expiresAt": 1677240000000, + "height": 93 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676104521119?e=1677240000&v=beta&t=0rn5ttLSlJ_X4r4N1vAy1BUUwIgsBN26Curx-kXJCMY", + "expiresAt": 1677240000000, + "height": 281 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQGv6oPpoZDTJg/articleshare-shrink_" + }, + "displayAspectRatio": 0.585 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7714865795466691610)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7714865795466691610)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemans.maville.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: R\u00e9chauffement climatique. Christophe B\u00e9chu demande la prise en compte d\u2019un sc\u00e9nario \u00e0 by lemans.maville.com", + "actionTarget": "https://lemans.maville.com/actu/actudet_-rechauffement-climatique.-christophe-bechu-demande-la-prise-en-compte-d-un-scenario-a-+-4-c-_54135-5613674_actu.Htm" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "R\u00e9chauffement climatique. Christophe B\u00e9chu demande la prise en compte d\u2019un sc\u00e9nario \u00e0" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7029152900555665408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'automobiliste qui boucle sa ceinture s'attend-il \u00e0 avoir un accident ? Le particulier qui paye sa prime d'assurance contre l'incendie s'attend-il \u00e0 voir son domicile en proie aux flammes ? Le navigateur qui enfile son gilet de sauvetage \u00e0 finir par-dessus bord ?\n\nLorsque le coup du sort est possible, la prudence veut que l'on prenne ses pr\u00e9cautions, pour parer des \u00e9ventualit\u00e9s alors m\u00eame que la personne qui est victime n'est pas en d\u00e9faut sur son propre comportement (comme un conducteur saoul qui ne vous a pas vu ou un coup de foudre).\n\nIl en va de m\u00eame pour le climat. Si l'\u00e9volution des conditions climatiques en France ne d\u00e9pendait que des \u00e9missions fran\u00e7aises (une chose que pensait un ministre que j'ai rencontr\u00e9 dans le gouvernement Macron I, accessoirement), on pourrait consid\u00e9rer que de pr\u00e9parer le pays \u00e0 une \u00e9volution climatique \"incompatible accords de Paris\" est une d\u00e9mission.\n\nMais ce que sera le climat de la France en 2100 d\u00e9pend avant tout de ce que vont \u00e9mettre tous les autres pays que le n\u00f4tre d'ici \u00e0 2100. Avons nous de la prise dessus ? La r\u00e9ponse est oui pour partie : d'une part l'humain est animal mim\u00e9tique (merci la mode pour nous le rappeler !), et d'autre part si nous trouvons des \"solutions\" chez nous nous pourrons ensuite les exporter.\n\nMais nous avons au mieux un pouvoir d'influence et non un pouvoir absolu. La prudence veut donc que l'on ait un plan B si la baisse des \u00e9missions ne va pas assez vite dans le monde (et actuellement elle ne va pas assez vite...). \n\nEn pratique, avoir ce plan B signifie \"durcir\" tout ce que nous pouvons durcir en France pour r\u00e9sister au mieux \u00e0 des conditions climatiques qui d\u00e9riveraient fortement par rapport au sc\u00e9nario \"id\u00e9al\" d'une hausse limit\u00e9e \u00e0 1,5 \u00b0C dans le monde (ce qui signifie plus en France car les terres \u00e9merg\u00e9es se r\u00e9chauffent plus vite que la moyenne).\n\nCe n'est pas une fois que la situation est \"cata\" que nous aurons la possibilit\u00e9 d'avoir en une semaine une for\u00eat constitu\u00e9e des bonnes esp\u00e8ces, des cultures r\u00e9sistant aux canicules ou hivers doux, des infrastructures et des voies de communication en \u00e9tat de fonctionner, ou encore des logements qui ne soient pas des fournaises.\n\nLe principe m\u00eame de s'y prendre maintenant pour \u00eatre \"pr\u00eat\" dans 50 ans, et d'utiliser d'un sc\u00e9nario tr\u00e8s adverse est donc une bonne chose : cela s'appelle de la prudence. \n\nPour passer \u00e0 l'action, il va d'abord falloir mod\u00e9liser pour chaque acteur les cons\u00e9quences possibles de 4\u00b0C de r\u00e9chauffement en France. Que risque un bailleur social ? Une installation industrielle ? Un pont ? Un r\u00e9seau d'eau ? Un agriculteur ? Un r\u00e9seau de communications ? Un h\u00f4pital ? \n\nPuis il faudra ensuite imaginer les moyens d'y r\u00e9pondre (et parfois le seul sera l'abandon...) et enfin les mettre en oeuvre.\n\nTout cela demandera des moyens intellectuels puis mat\u00e9riels (et donc des sous). Sans obligation s\u00e9rieuse de la puissance publique, il est peu probable qu'ils arrivent tous seuls \u00e0 la bonne vitesse !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7029152900555665408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7029152901151227904,urn:li:activity:7029152901151227904,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 90, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7029152901151227904,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7029152901151227904,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7029152901151227904", + "threadId": "activity:7029152901151227904", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029152901151227904", + "urn": "urn:li:activity:7029152901151227904", + "numComments": 167, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7029152901151227904", + "reactionTypeCounts": [ + { + "count": 1520, + "reactionType": "LIKE" + }, + { + "count": 221, + "reactionType": "INTEREST" + }, + { + "count": 70, + "reactionType": "PRAISE" + }, + { + "count": 29, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7029152901151227904", + "numLikes": 1858, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7029152901151227904", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1861, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7028725477036969984", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7028725477036969984)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7028725477036969984)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-danemark-et-totalenergies-acc%C3%A9l%C3%A8rent-sur-activity-7028725477036969984-M7II?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7028725474373574656", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7028725477036969984", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7028725474373574656", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "3IMfYD4LFh2gmOVuFDOm/w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7028725477036969984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8168114166776751448", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675778791122?e=1677240000&v=beta&t=kFtGANzAa7XLEWR5j6xAVHKmvWAVPe1iEgMPOOBP-CY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675778791122?e=1677240000&v=beta&t=re6knlcLcthhnCd7O8LIiQGGcsJe7Smh-Mle2Tbbpn4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675778791122?e=1677240000&v=beta&t=pTo6ITl13Z-YbislXXt-3Jkzrrf0tkDT9LX8dt_rOrM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675778791122?e=1677240000&v=beta&t=nkKsJHpM0KACVI6goA6MI6XuhoYeBrzxCKLbj6435VI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQHRbnwo7trS3g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8168114166776751448)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8168114166776751448)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Danemark et TotalEnergies acc\u00e9l\u00e8rent sur le stockage de CO2 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/le-danemark-et-totalenergies-accelerent-sur-le-stockage-de-co2-1903841" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Danemark et TotalEnergies acc\u00e9l\u00e8rent sur le stockage de CO2" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7028725474373574656,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Une des solutions qui permettrait d'utiliser des combustibles fossiles sans d\u00e9ranger le climat s'appelle la capture et s\u00e9questration du CO2 (en anglais CCS pour Carbon Capture and Sequestration), et passe par les op\u00e9rations suivantes :\n\n- on \"attrape\" le CO2 d'une installation de combustion avant qu'il ne s'\u00e9chappe dans l'atmosph\u00e8re. Pour cela la fum\u00e9e barbote dans un liquide sp\u00e9cial - g\u00e9n\u00e9ralement des amines - qui va \"accrocher\" les mol\u00e9cules de CO2 (on parle d'adsorption) et laisser partir le reste.\n\n- le CO2 est r\u00e9cup\u00e9r\u00e9 en faisant chauffer la solution qui l'a adsorb\u00e9,\n\n- il est compress\u00e9, transport\u00e9 dans un tuyau et enfin inject\u00e9 sous forme supercritique (une forme interm\u00e9diaire entre le gaz et le liquide) sous le sol dans une formation g\u00e9ologique dont il ne sortira plus\n\nCette op\u00e9ration n'a de sens que pour des installation fixes importantes (centrales \u00e0 charbon ou \u00e0 gaz, cimenteries ou aci\u00e9ries). La capture demande 20% \u00e0 30% de l'\u00e9nergie du site, et fait baisser la production (d'\u00e9lectricit\u00e9, d'acier...) d'autant. C'est de loin la premi\u00e8re barri\u00e8re \u00e0 l'utilisation de ce proc\u00e9d\u00e9.\n\nIl faut ensuite trouver o\u00f9 injecter ce CO2. Les anciens gisements de p\u00e9trole et de gaz sont une premi\u00e8re possibilit\u00e9. Ce sont de bons candidats, car, avant exploitation, ils \u00e9taient aptes \u00e0 retenir longtemps au m\u00eame endroit du liquide et du gaz sous pression. Il faut juste v\u00e9rifier que les forages d'exploitation (normalement scell\u00e9s \u00e0 la fin de vie du gisement) ne changent pas l'\u00e9tanch\u00e9it\u00e9.\n\nLes aquif\u00e8res souterrains - un m\u00e9lange de roche et d'eau - sont une deuxi\u00e8me possibilit\u00e9. Le CO2 inject\u00e9 finit par se dissoudre puis se transformer lentement en carbonates avec le temps.\n\nLes p\u00e9troliers connaissent assez bien l'injection du CO2 sous le sol :\n- dans beaucoup de gisements p\u00e9troliers le fait d'injecter du CO2 permet de mieux \"laver\" le gisement. En pareil cas le moteur de l'action n'est donc pas la vertu environnementale mais tout simplement l'augmentation du p\u00e9trole produit !\n- le gaz naturel extrait de terre contient toujours un peu de CO2, et ce dernier doit \u00eatre enlev\u00e9 avant le transport par gazoduc, sinon il y a un risque fort de corrosion des infrastructures (la pr\u00e9sence simultan\u00e9e d'eau et de CO2 cr\u00e9e un m\u00e9lange acide). Les op\u00e9rateurs doivent donc s\u00e9parer le gaz du CO2 en t\u00eate de puits, et en Norv\u00e8ge ce CO2 doit \u00eatre r\u00e9inject\u00e9 sinon le p\u00e9trolier paye une p\u00e9nalit\u00e9 \u00e0 la tonne. \n\nCe n'est donc pas un hasard si Total - un p\u00e9trolier - et le Danemark - la Mer du Nord - regardent ensemble ce qu'ils pourraient mettre comme CO2 sous la mer. Il reste \u00e0 trouver des industriels acceptant d'investir pour capturer le CO2 \u00e0 la source et \u00e0 se faire payer pour ca. \n\nOn parle potentiellement de 10 Mt de CO2 par an, soit 500 M\u20ac/an environ au cours actuel du CO2. C'est assez d'argent pour que ca vaille le coup de reconvertir une plate-forte, mais cela \u00e9vitera juste les \u00e9missions d'une centrale \u00e0 charbon. On ne va pas pouvoir compter que sur ca !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7028725474373574656,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7028725477036969984,urn:li:activity:7028725477036969984,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 107, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7028725477036969984,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7028725477036969984,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7028725477036969984", + "threadId": "activity:7028725477036969984", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028725477036969984", + "urn": "urn:li:activity:7028725477036969984", + "numComments": 201, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7028725477036969984", + "reactionTypeCounts": [ + { + "count": 1963, + "reactionType": "LIKE" + }, + { + "count": 579, + "reactionType": "INTEREST" + }, + { + "count": 129, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7028725477036969984", + "numLikes": 2707, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028725477036969984", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2710, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:39029", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "xRP0fUYzQbCV2G9EfTC+ig==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "xRP0fUYzQbCV2G9EfTC+ig==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "L'Express" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 Edited \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: L'Express", + "actionTarget": "https://www.linkedin.com/company/lexpress/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A39029" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "55,114 followers" + }, + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:39029", + "followerCount": 55114, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:39029", + "following": false, + "trackingUrn": "urn:li:company:39029" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followCompany" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:7028059990707838976", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7028059990707838976)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7028059990707838976)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/lexpress_jancovici-linfluent-gourou-du-climat-activity-7028059990707838976-RQxN?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7028059989986430976", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:39029", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7028059989986430976", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "+FM+bpsrSxl5k0EczxrsNg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7028059990707838976,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7697564446898559605", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675620078165?e=1677240000&v=beta&t=l9Jj0dkoYOdfshI4QGzA1u72egpBdnceYOYuT8EUWUo", + "expiresAt": 1677240000000, + "height": 689 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675620078165?e=1677240000&v=beta&t=Qgvz_4cFjYvwvGSnGtQ38ZxvPJyp2G_KrgIpQ8EczlE", + "expiresAt": 1677240000000, + "height": 258 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675620078165?e=1677240000&v=beta&t=sH75AxOWezsv9WN4PWAUHXcB_WZD8C2sBODfgweCZhw", + "expiresAt": 1677240000000, + "height": 86 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675620078165?e=1677240000&v=beta&t=yS43L0iEGdYXMkx4L8KxdoYTvqaieG3NkHmfh__hTi4", + "expiresAt": 1677240000000, + "height": 431 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E34AQGIjXrLZwZ7TA/ugc-proxy-shrink_" + }, + "displayAspectRatio": 0.53828125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7697564446898559605)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7697564446898559605)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lexpress.fr \u2022 10 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jancovici, l'influent gourou du climat : ses liens avec Hulot, son film r\u00eav\u00e9 avec Besson, ses r\u00e9seaux by lexpress.fr", + "actionTarget": "https://www.lexpress.fr/politique/jancovici-linfluent-gourou-du-climat-ses-liens-avec-hulot-son-film-reve-avec-besson-ses-reseaux-YGVZI5C26FAGNBBLB5MKBR5S5Q/?utm_medium=Social&utm_source=LinkedIn#Echobox=1675616762-2" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jancovici, l'influent gourou du climat : ses liens avec Hulot, son film r\u00eav\u00e9 avec Besson, ses r\u00e9seaux" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7028059989986430976,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 52, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 886, + "length": 12, + "miniProfile": { + "firstName": "Emilie", + "lastName": "LANEZ", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABHRrtsBMC8nh_z8X50VQpbmZDi4bHNYSqQ", + "occupation": "Grand reporter", + "objectUrn": "urn:li:member:298954459", + "entityUrn": "urn:li:fs_miniProfile:ACoAABHRrtsBMC8nh_z8X50VQpbmZDi4bHNYSqQ", + "publicIdentifier": "emilie-lanez", + "trackingId": "lTA31xEiQ7SYNjHhMjjKBg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Longtemps seul contre tous \u00e0 d\u00e9fendre le nucl\u00e9aire, Jean-Marc Jancovici est convaincu d\u2019avoir toujours eu raison. En partie vrai.\n\nMal l\u00e9ch\u00e9 et brillantissime, talentueux et bougon, d\u00e9daigneux et populaire : qui est cette idole des trentenaires urbains, qu\u2019Edouard Philippe re\u00e7oit \u00e0 d\u00e9jeuner dans sa th\u00e9ba\u00efde du Havre, que Bruno Le Maire \u00e9coute, que Gabriel Attal invite, que la d\u00e9put\u00e9e \u00e9colo Delphine Batho cite, que Julien Aubert, vice-pr\u00e9sident LR consulte, que le math\u00e9maticien et ancien d\u00e9put\u00e9 C\u00e9dric Villani r\u00e9v\u00e8re et que Marine Tondelier, nouvelle patronne des Verts, accuse publiquement d\u2019\u00eatre un \"menteur\" ?\n\nFaut-il se r\u00e9jouir qu\u2019enfin notre franchouillard Greta Thunberg \u00e9lectrise des cohortes de cadres sup accroch\u00e9s \u00e0 leur bagnole et mangeant des fraises en hiver ? D\u2019o\u00f9 vient ce ph\u00e9nom\u00e8ne ?\n\nEnqu\u00eate sur un sexag\u00e9naire ronchon et pessimiste devenu l\u2019idole des jeunes, par Emilie LANEZ \u2935\ufe0f" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7028059989986430976,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7028059990707838976,urn:li:activity:7028059990707838976,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7028059990707838976,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7028059990707838976,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7028059990707838976", + "threadId": "activity:7028059990707838976", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028059990707838976", + "urn": "urn:li:activity:7028059990707838976", + "numComments": 103, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7028059990707838976", + "reactionTypeCounts": [ + { + "count": 219, + "reactionType": "LIKE" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "INTEREST" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7028059990707838976", + "numLikes": 237, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028059990707838976", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 244, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:7028122019623772160", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7028122019623772160)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7028122019623772160)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-linfluent-gourou-du-climat-activity-7028122019623772160-KtIx?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7028122018780708864", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7028122019623772160", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7028122018780708864", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "+FM+bpsrSxl5k0EczxrsNg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7028122019623772160,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7028122018780708864,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 50, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "uVsFxhPuScOZvjxHL8oZoQ==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 807, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:39029", + "entityUrn": "urn:li:fs_miniCompany:39029", + "name": "L'Express", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662017909939?e=1684972800&v=beta&t=Q8ucAB_TBYdYbWUoXz36Ab2CiDV4cVMMXtGfV6y4jU0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662017909939?e=1684972800&v=beta&t=tS-kG2rfgNxW91HNXmizHbpQMM9vVycM6z0e6vt_TT0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662017909939?e=1684972800&v=beta&t=hpwadhQvZCpW7872ZzQjl-HhfNznddSdp1I0XH97Zsg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQH54zItmk4oqA/company-logo_" + } + }, + "universalName": "lexpress", + "dashCompanyUrn": "urn:li:fsd_company:39029", + "trackingId": "A4yvll2jTB208inV9lWjUA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Il y a une grosse heure, j'ai comment\u00e9 ce post de L'Express pour corriger une affirmation erron\u00e9e contenue dans ce portrait auquel je n'ai pas contribu\u00e9 (le commentaire expliquait justement pourquoi).\n\nL'Express ayant supprim\u00e9 mon commentaire peu apr\u00e8s, je le reproduis donc en post. Je dois dire que je ne comprends pas ce qui motiv\u00e9 cette suppression : soit la personne de permanence sur le compte linkedin de l'Express un Dimanche soir regardait la t\u00e9l\u00e9 sans faire attention \u00e0 ce qu'elle faisait, soit elle a laiss\u00e9 le clavier \u00e0 son enfant de 2 ans, soit... le vilain mot de censure vient \u00e0 l'esprit, ce qui pour un media d'une d\u00e9mocratie ne serait pas terrible. Je suis volontiers preneur de l'explication si le journal veut bien me la fournir. \n\nVoici donc mot \u00e0 mot le commentaire que j'avais mis :\n\n\"L'Express la cause invoqu\u00e9e dans ce portrait pour mon refus de parler \u00e0 la journaliste est erron\u00e9e : j'ai d\u00e9clin\u00e9 avant tout parce que je consid\u00e8re que les portraits sont contreproductifs, et non d'abord par manque de temps.\n\nJ'ai expliqu\u00e9 par mail \u00e0 la journaliste que le \"portrait\" focalisait le propos sur le messager (qui est secondaire) et non sur le message, qu'il donnait toujours l'impression d'un parcours solitaire alors que tout travail se fait en \u00e9quipe, et enfin qu'il \u00e9tait par construction b\u00e2ti sur des points saillants (pour lesquels c'est facile de mettre des \u00e9tiquettes pour ou contre) qui crispent le d\u00e9bat alors que nous avons besoin de nous parler. J'ai ajout\u00e9 qu'en cons\u00e9quence je ne souhaitais pas y passer du temps. \n\nC'est pour le m\u00eame genre de raison que je n'avais pas envie d'\u00eatre nomm\u00e9 \"personnalit\u00e9 de l'ann\u00e9e\" : ce n'est pas sur moi qu'il faut concentrer les moyens \u00e9ditoriaux mais sur le fond. \n\nLe r\u00e9sultat me donne h\u00e9las raison : je ne vois pas en quoi cet article va aider la prise de d\u00e9cision pour notre avenir. Il servira au mieux \u00e0 alimenter \"ma\" page wikipedia (dont je n'ai pas \u00e9crit une ligne) o\u00f9, la derni\u00e8re fois que j'ai regard\u00e9, j'ai compt\u00e9 plus de 90 erreurs factuelles ou d'interpr\u00e9tation.\"\n\nMon commentaire ne caresse pas le magazine dans le sens du poil, mais il fait partie d'un droit de r\u00e9ponse normal, et je n'ai pas l'impression qu'il soit injurieux ou insultant. Sa suppression reste donc une \u00e9nigme. \n\nPuisqu'un post offre plus de place qu'un commentaire j'en profite pour rajouter deux \u00e9l\u00e9ments.\n\n1 - Mon temps professionnel est essentiellement affect\u00e9 (dans cet ordre) au quotidien de Carbone 4, \u00e0 celui du Shift Project, \u00e0 des conf\u00e9rences et interventions, et \u00e0 des publications. Les media et les politiques sont marginaux en termes de temps pass\u00e9. Ce portrait ne mentionne ni C4 ni The Shift Project...\n\n2 - c'est \u00e0 nouveau le nucl\u00e9aire qui m'est coll\u00e9 sur la figure comme \"premier \u00e9l\u00e9ment distinctif\". Il suffit pourtant d'\u00e9couter n'importe laquelle de mes conf\u00e9rences (https://bit.ly/3l9HEzR ) pour voir que cela ne correspond pas \u00e0 mon discours. Mais \"pronucl\u00e9aire\" ca doit faire plus de clics que \"vulgarisateur\"..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7028122018780708864,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7028122019623772160,urn:li:activity:7028122019623772160,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 284, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7028122019623772160,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7028122019623772160,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7028122019623772160", + "threadId": "activity:7028122019623772160", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028122019623772160", + "urn": "urn:li:activity:7028122019623772160", + "numComments": 398, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7028122019623772160", + "reactionTypeCounts": [ + { + "count": 8812, + "reactionType": "LIKE" + }, + { + "count": 768, + "reactionType": "PRAISE" + }, + { + "count": 660, + "reactionType": "APPRECIATION" + }, + { + "count": 163, + "reactionType": "INTEREST" + }, + { + "count": 72, + "reactionType": "MAYBE" + }, + { + "count": 72, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7028122019623772160", + "numLikes": 10547, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7028122019623772160", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 10574, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7027994566683193344", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7027994566683193344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7027994566683193344)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_m%C3%A9tro-rer-val%C3%A9rie-p%C3%A9cresse-cherche-des-activity-7027994566683193344-utYA?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7027994565676527616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7027994566683193344", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7027994565676527616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "zAqbEbgkXoqAgXJ/X5gFmA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7027994566683193344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8220200705461401985", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675608332996?e=1677240000&v=beta&t=NevZkHjZzFlp88L6kQ7JGRc8gtwYCfx9o_hLaXZMnrc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675608332996?e=1677240000&v=beta&t=plDSFYLKncqLc9HLFyLnDSN1DDETi612za6gAwmamr8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675608332996?e=1677240000&v=beta&t=aF1rReHtImmf13V-NJa3m4w2GznjnMD0sYgHGqcB_20", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675608332996?e=1677240000&v=beta&t=BXesrOt5P0SmnCoh0aXx26eQ2l6410zgA2LNU4QJajQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQH-4_tZMQq8Hw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8220200705461401985)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8220200705461401985)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: M\u00e9tro, RER : Val\u00e9rie P\u00e9cresse cherche des financeurs tous azimuts by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/tourisme-transport/metro-rer-valerie-pecresse-cherche-des-financeurs-tous-azimuts-1899774" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "M\u00e9tro, RER\u00a0: Val\u00e9rie P\u00e9cresse cherche des financeurs tous azimuts" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7027994565676527616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans notre pays, \u00e0 peu pr\u00e8s tout le monde est d'accord pour avoir plus de transports en commun. Par contre, quand il s'agit de d\u00e9cider qui doit passer \u00e0 la caisse pour le permettre, l'unanimit\u00e9 est un peu moins de mise !\n\nC'\u00e9tait d\u00e9j\u00e0 un sujet quand l'\u00e9conomie \u00e9tait en croissance, et paradoxalement une \u00e9conomie mal portante pourrait contribuer \u00e0 augmenter encore la demande.\n\nCela vient du fait que notre comportement en mati\u00e8re de d\u00e9placements du quotidien a ob\u00e9it depuis longtemps \u00e0 une double logique budg\u00e9taire (ce que montrent les statistiques des \u00e9conomistes des transports).\n\nLa premi\u00e8re est \u00e9conomique : nous utilisons g\u00e9n\u00e9ralement pour nous d\u00e9placer le moyen le plus cher que notre revenu nous autorise. En premi\u00e8re approximation les personnes qui peuvent se payer une voiture et qui ont une place de parking chez eux et au travail utilisent l'automobile, et les autres les transports en commun (tendance que le covid a renforc\u00e9e).\n\nLorsque la conjoncture devient plus difficile sans pour autant priver les gens de leur motifs d\u00e9placement, une partie de la population a plus de mal \u00e0 utiliser son v\u00e9hicule, et voudrait plus en transports en commun. Cet effet est encore renforc\u00e9 lorsque la difficult\u00e9 \u00e9conomique vient de l'\u00e9nergie (moindre disponibilit\u00e9 et/ou prix qui montent tr\u00e8s fort, comme en 2008).\n\nA cela vient s'ajouter le fait que, sur s\u00e9rie longue, nous avons fonctionn\u00e9 \u00e0 temps de d\u00e9placement constant. L'arriv\u00e9e de voitures en masse depuis l'apr\u00e8s-guerre n'a pas \u00e9t\u00e9 utilis\u00e9 pour aller plus vite au m\u00eame endroit, mais pour passer le m\u00eame temps \u00e0 faire plus de km (parce que cela \u00e9largit l'univers de choix pour le logement, le travail, l'\u00e9cole...). \n\nL'augmentation du nombre de voitures - en France le parc auto est pass\u00e9 de 3 \u00e0 38 millions d'unit\u00e9s de 1945 \u00e0 maintenant) - a donc induit de l'\u00e9talement urbain, cr\u00e9ant des zones avec des densit\u00e9s d'habitants au km2 plus faibles qu'en ville, peupl\u00e9es de gens qui font des dizaines de km en auto tous les jours (cela se constate partout dans le monde).\n\nAller \"chercher\" en transports en commun des p\u00e9riurbains qui n'(aur)ont plus les moyens \u00e9conomiques d'utiliser leur voiture coute(ra) beaucoup plus cher par personne que pour les urbains, puisque les couts d'un syst\u00e8me de transports en commun sont pour partie des couts fixes.\n\nEnfin m\u00eame pour les infrastructures existantes les charges augmentent avec la fr\u00e9quentation : par exemple s'il y a une fr\u00e9quence de passage plus importante cela signifie plus de personnel, plus de mat\u00e9riel roulant, plus d'\u00e9nergie, plus de maintenance...\n\nLe casse t\u00eate du Syndicat des Transports d'Ile de France (90% du trafic du quotidien fran\u00e7ais en mode ferr\u00e9) n'est donc pas r\u00e9solu demain matin. En effet, \u00e0 l'horizon de quelques d\u00e9cennies l'\u00e9nergie sera de moins en moins disponible, et \u00e0 la suite les flux physiques sous-jacents de l'\u00e9conomie aussi. Qui peut-on et doit-on \"transporter en commun\" quand il y a globalement moins de moyens : c'est d\u00e9sormais la question qui se pose." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7027994565676527616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7027994566683193344,urn:li:activity:7027994566683193344,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 67, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7027994566683193344,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7027994566683193344,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7027994566683193344", + "threadId": "activity:7027994566683193344", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027994566683193344", + "urn": "urn:li:activity:7027994566683193344", + "numComments": 155, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7027994566683193344", + "reactionTypeCounts": [ + { + "count": 859, + "reactionType": "LIKE" + }, + { + "count": 127, + "reactionType": "INTEREST" + }, + { + "count": 69, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7027994566683193344", + "numLikes": 1069, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027994566683193344", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1070, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 Edited \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7027692001311498240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7027692001311498240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7027692001311498240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carburants-les-gilets-jaunes-ont-ils-activity-7027692001311498240-vtZx?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7027692000636203008", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7027692001311498240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7027692000636203008", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "ixl6bgvohAoKjcQMOfT/MQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7027692001311498240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8462332020454373656", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675719684036?e=1677240000&v=beta&t=J9Nc6Hk1UoYficFB4nvvwC6D9Ro_Ilh_FaINn-u1ALM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675719684036?e=1677240000&v=beta&t=6X7IEa1k_3jQXbmmI3TVE3qEkD1Nskrf4xUCtrmw8QA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675719684036?e=1677240000&v=beta&t=jcX6iT9yBNwBUZ2OLdlCgZ3aJF4k9_M-6Fhpt-__gEs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675719684036?e=1677240000&v=beta&t=RwjeViOHm-TQI9ILxw-AHCY196gOxNqsKNmg35_QK10", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEAoiGuleTReQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8462332020454373656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8462332020454373656)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carburants : les \u00ab gilets jaunes \u00bb ont-ils raison de d\u00e9noncer une hausse des prix ? by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/carburants-les-gilets-jaunes-ont-ils-raison-de-denoncer-une-hausse-des-prix-149158" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carburants\u00a0: les \u00ab\u00a0gilets jaunes\u00a0\u00bb ont-ils raison de d\u00e9noncer une hausse des prix\u00a0?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7027692000636203008,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 2018, la France a v\u00e9cu l'\u00e9pisode des \"gilets jaunes\". A l'\u00e9poque essence et gazole \u00e9taient \u00e0 environ 1,5 euro le litre. C'est d\u00e9sormais entre 1,8 et 2 euros selon la pompe et le type de carburant (https://bit.ly/2SBEC4o ). Et.... rien. Pas d'\u00e9meute, alors que dans le m\u00eame temps le prix du gaz et de l'\u00e9lectricit\u00e9 ont fortement augment\u00e9, sans parler du reste. \n\nSi la raison premi\u00e8re de ce qui s'est pass\u00e9 il y a 4 ans \u00e9tait juste le niveau de prix dans l'absolu, pourquoi tout le monde fait le dos rond actuellement ?\n\nTentons une hypoth\u00e8se : \u00e0 l'\u00e9poque l'Etat avait prononc\u00e9 le mot \"taxe carbone\". Or parler de fiscalit\u00e9 des carburants, c'est d\u00e9battre de la part \u00e0 la main de notre pays, pour laquelle il ne d\u00e9pend \u00e9videmment que de nous de la monter... ou de la baisser. \n\nActuellement, c'est la faute \u00e0 \"pas de chance\". C'est pas de chance si Poutine a envahi l'Ukraine. C'est \"pas de chance\" si le prix de march\u00e9 du baril monte fortement. Et on ne va quand m\u00eame pas menacer la Russie ou l'Irak de l'arme nucl\u00e9aire pour que ces pays augmentent leur production d'or noir !\n\nIl est facile de constater que nous acceptons souvent bien plus facilement les efforts d\u00e9clench\u00e9s par \"pas de chance\" que ceux qui sont le r\u00e9sultat d'une d\u00e9marche intentionnelle. Si les taxes sur les carburants augmentent, on ne nous enl\u00e8vera pas de la t\u00eate que notre pr\u00e9sident, qui devrait nous prendre sous son aile, prend un malin plaisir \u00e0 nous rendre la vie plus difficile !\n\nEt pourtant, l\u00e0 o\u00f9 l'\u00e9volution actuelle est \"pas de chance\", c'est qu'elle est beaucoup plus dommageable pour la population que la taxe carbone envisag\u00e9e \u00e0 l'\u00e9poque par le gouvernement. \n\nL'imp\u00f4t est un recyclage national. Ce que nous payons en plus pour les carburants, l'Etat peut nous le rendre sous forme de travaux d'isolation, de pompes \u00e0 chaleur, de subventions aux v\u00e9hicules \u00e9lectriques ou de pistes cyclables. \n\nQuand le prix du baril monte, cela appauvrit la France (en augmentant le d\u00e9ficit commercial) et personne ne reverra cet argent pour aider le pays \u00e0 s'organiser avec moins d'\u00e9nergie fossile. \n\nEt le paradoxe de l'affaire est que c'est l'un ou l'autre. En effet, le p\u00e9trole \u00e9tant \u00e9puisable (et le pic conventionnel pass\u00e9), si nous ne provoquons pas la baisse de son usage par des mesures qui sont fatalement contraignantes pour quelqu'un, il y aura p\u00e9riodiquement des envol\u00e9es de prix comme celle que nous vivons actuellement ou pire. \n\nIl y a donc d\u00e9carboner et d\u00e9carboner. La voie qui consiste \u00e0 attendre que \"y'en a plus\" enrichit les producteurs et laissera la population au d\u00e9pourvu. Celle qui consiste \u00e0 agir demandera des efforts \u00e0 plus court terme mais beaucoup moins \"plus tard\". \n\nIl reste une condition du succ\u00e8s essentielle : que le gouvernement sache faire la p\u00e9dagogie du probl\u00e8me (pour le moment il ne comprend pas que l'Europe est en d\u00e9clin subi sur le p\u00e9trole depuis 2007) et que toute mesure d'effort s'inscrive dans un plan d'ensemble per\u00e7u comme pertinent. Et l\u00e0 nous n'y sommes pas encore." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7027692000636203008,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7027692001311498240,urn:li:activity:7027692001311498240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 165, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7027692001311498240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7027692001311498240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7027692001311498240", + "threadId": "activity:7027692001311498240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027692001311498240", + "urn": "urn:li:activity:7027692001311498240", + "numComments": 263, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7027692001311498240", + "reactionTypeCounts": [ + { + "count": 3318, + "reactionType": "LIKE" + }, + { + "count": 425, + "reactionType": "INTEREST" + }, + { + "count": 176, + "reactionType": "MAYBE" + }, + { + "count": 96, + "reactionType": "PRAISE" + }, + { + "count": 34, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7027692001311498240", + "numLikes": 4065, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027692001311498240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4066, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1w \u2022 ", + "accessibilityText": "1 week ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7027244366859530240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7027244366859530240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7027244366859530240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_devant-lurgence-climatique-de-plus-en-plus-activity-7027244366859530240-uwL-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7027244365743804417", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7027244366859530240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7027244365743804417", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "Z0ihIpSSxrmPm0oM4yekJA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7027244366859530240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6921286453414376786", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676123224260?e=1677240000&v=beta&t=qq8EJP7Cnr-nWOBXIy6EobrMwhcuQ3ddAOeGsVNrjio", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676123224260?e=1677240000&v=beta&t=HZpA4044i0OS1ffFlcimmWkMQxLtVFR6-Y95QL5BJoc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676123224260?e=1677240000&v=beta&t=gu5yUmRF1fiw1QUChGZ5u5s7E0y5WE460xwvNo5kpo0", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676123224260?e=1677240000&v=beta&t=7mrP9qCy4gW6FUek7QqJF7LXXfb2YaxI1yBOCnph7Cc", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQG1GnbrKVT1dg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6921286453414376786)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6921286453414376786)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Devant l\u2019urgence climatique, de plus en plus de scientifiques tent\u00e9s par la radicalit\u00e9 : \u00ab La d\u00e9sob\u00e9issance civile est un acte d\u00e9sesp\u00e9r\u00e9, pour alerter sur la situation dramatique dans laquelle on est \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/planete/article/2023/01/26/face-a-la-crise-ecologique-des-scientifiques-tentes-par-la-radicalite-sortez-de-vos-labos-allez-dans-la-rue_6159367_3244.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Devant l\u2019urgence climatique, de plus en plus de scientifiques tent\u00e9s par la radicalit\u00e9\u00a0: \u00ab\u00a0La d\u00e9sob\u00e9issance civile est un acte d\u00e9sesp\u00e9r\u00e9, pour alerter sur la situation dramatique dans laquelle on est\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7027244365743804417,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un m\u00e9decin peut-il se contenter de poser le diagnostic sans recommander de traitement ? En mati\u00e8re de climat, c'est le mandat qui a \u00e9t\u00e9 donn\u00e9 au GIEC : \u00eatre \"policy relevant but not policy prescriptive\", c'est \u00e0 dire d\u00e9crire la situation, mais sans fournir de recommandation sur la voie \u00e0 suivre.\n\nQuand on y r\u00e9fl\u00e9chit bien, ce n'est pas infond\u00e9 : apr\u00e8s tout, se restreindre maintenant pour pr\u00e9server l'avenir n'est pas une d\u00e9cision scientifique mais un choix. Un m\u00e9decin, pour reprendre le parall\u00e8le, peut dire au fumeur qu'il prend des risques, et les lui d\u00e9crire par le menu, mais il ne peut pas physiquement le contraindre \u00e0 s'arr\u00eater (il y a 20 ans je m'\u00e9tais amus\u00e9 - enfin si l'on peut dire - \u00e0 comparer plus largement effet de serre et tabac, car il me semble qu'il y a beaucoup de points communs, et \u00e0 me relire je ne vois pas grand chose \u00e0 changer : https://bit.ly/3YjUeL9 )\n\nIl y a par ailleurs des cas de figure o\u00f9 la r\u00e9ponse \u00e0 la question initiale est oui, parce que m\u00eame en m\u00e9decine on change d'interlocuteur entre diagnostic et th\u00e9rapie. Le radiologue qui vous fait passer l'IRM ne sera pas celui qui vous proposera un traitement derri\u00e8re. La g\u00e9n\u00e9raliste \u00e0 qui vous dites que vous avez \"mal au dos\" n'est pas n\u00e9cessairement celle qui vous recommandera la solution au probl\u00e8me.\n\nEn mati\u00e8re de climat, cette difficult\u00e9 est encore plus grande : le physicien ou la biologiste d\u00e9crivant l'\u00e9volution du syst\u00e8me terre sous l'effet d'\u00e9missions croissantes n'a pas, du seul fait de son m\u00e9tier, de comp\u00e9tences techniques particuli\u00e8res pour proposer la mani\u00e8re de modifier l'organisation humaine et mat\u00e9rielle qui en est \u00e0 l'origine (m\u00eame si les journalistes adorent faire du \"tout en un\" en demandant au scientifique cuisin\u00e9 sur la situation ce qu'il faut faire \u00e0 partir de l\u00e0). \n\nLa question de savoir si des scientifiques doivent ou non \"descendre dans la rue\" pour mieux se faire entendre d\u00e9pend donc de l'effet recherch\u00e9 et du discours tenu.\n\nSi c'est pour militer pour que le diagnostic soit mieux connu, \u00e0 ce moment le/la scientifique est l\u00e9gitime, mais en pratique ce n'est pas d'abord la puissance publique qui est vis\u00e9e, mais d'abord la presse, puisque c'est d'elle dont d\u00e9pend le volume et la qualit\u00e9 de l'information diffus\u00e9e sur le sujet et son lien avec l'organisation du monde. \n\nQu'un(e) climatologue s'encha\u00eene aux grilles de l'Elys\u00e9e ou \u00e0 une centrale \u00e0 charbon fera-t-il des media plus prolixes et performants sur le climat ? Une fois que l'information est connue, la d\u00e9cision qui en d\u00e9coule n'est plus un probl\u00e8me scientifique.\n\nSi ce militantisme a pour objet de faire adopter des mesures particuli\u00e8res (taxe carbone, investissements dans le train, ou isolation des b\u00e2timents), alors la question doit \u00eatre pos\u00e9e sans invoquer la qualit\u00e9 de scientifique : il s'agit de savoir, quel que soit le m\u00e9tier de la personne concern\u00e9e, si bloquer un a\u00e9roport au nom du climat est plus ou moins immoral que de bloquer les trains au nom des retraites. Int\u00e9ressante question !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7027244365743804417,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7027244366859530240,urn:li:activity:7027244366859530240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7027244366859530240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7027244366859530240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7027244366859530240", + "threadId": "activity:7027244366859530240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027244366859530240", + "urn": "urn:li:activity:7027244366859530240", + "numComments": 143, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7027244366859530240", + "reactionTypeCounts": [ + { + "count": 705, + "reactionType": "LIKE" + }, + { + "count": 104, + "reactionType": "INTEREST" + }, + { + "count": 62, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7027244366859530240", + "numLikes": 899, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7027244366859530240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 900, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 Edited \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7026974946824192000", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7026974946824192000)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7026974946824192000)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-influenceurs-br%C3%BBlent-le-monde-avec-activity-7026974946824192000-e51E?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7026974945939226624", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7026974946824192000", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7026974945939226624", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "R525buYKEdqpIduIsXIYDg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7026974946824192000,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8154188842981148828", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676022195813?e=1677240000&v=beta&t=BI44AFvzi7U8mjhFe6h7ZBJy-hW1CqkFE7ngAVDqLSY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676022195814?e=1677240000&v=beta&t=RLy8N8TGMnSQs9drDFt6a22jWIE8C6-B2JQlW5hFEDM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676022195814?e=1677240000&v=beta&t=119jvpd2x3hjmXoC8C4KiHyF7rpo-TuUMo02KGotGuQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676022195814?e=1677240000&v=beta&t=UPoaLK0PWvbKWfmKetq_sevl8rrDS4HT8BBHFk8AUfM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEn527yRLnsxg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8154188842981148828)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8154188842981148828)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: LES INFLUENCEURS BR\u00dbLENT LE MONDE ? (avec JILL) | LIMIT #episode1 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=xmtCBulbID8" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\u2799 Cette cha\u00eene vit int\u00e9gralement gr\u00e2ce \u00e0 vos dons ! https://linktr.ee/limit.media Secouer le monde de l'influence sur les questions li\u00e9es aux Limites Plan\u00e9taires ? C'est ce que nous allons tenter de faire dans cette nouvelle \u00e9mission : \"Bad Influence\"..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "LES INFLUENCEURS BR\u00dbLENT LE MONDE ? (avec JILL) | LIMIT #episode1" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7026974945939226624,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 350, + "length": 10, + "miniProfile": { + "firstName": "Vinz", + "lastName": "Kant\u00e9", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABnoaesBFyeDnfMQ7vVH_WdqzzSE1gZnFeI", + "occupation": "Cr\u00e9ateur, Animateur, Prod, conf\u00e9rencier chez #LIMIT #SchoolUp \ud83c\udf0d\ud83d\udc9a", + "objectUrn": "urn:li:member:434661867", + "entityUrn": "urn:li:fs_miniProfile:ACoAABnoaesBFyeDnfMQ7vVH_WdqzzSE1gZnFeI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1643988095695?e=1681948800&v=beta&t=7C2zsu2AnUIGYGJLxdwy6H0Pfz49i4bCG42UTyrDQiU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1643988095695?e=1681948800&v=beta&t=4mbItdC9wOaAB8PKJJb-Yb_-TvLU7cJhmTKvMc1TnoE", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQGwWxvh-yImnw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "vinzkante", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1652368741388?e=1681948800&v=beta&t=oBVj0OP183lIxUjW-ObsX93mvqUUhnlf8CUv9CYdkL8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1652368741388?e=1681948800&v=beta&t=QLthymcqCv14W4AiYsuUqj2QbfpGNDM6Pj43wuQjwBY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1652368741388?e=1681948800&v=beta&t=qpYGcnw-PgEP8UZgyFGsOXkDPZUoHvFO1KR2QFlKBb4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1652368741388?e=1681948800&v=beta&t=_jJyLbpMGXX6ocxEt866mRbwvojncDU-oE19Bdveik8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFVgbwuDHeE9Q/profile-displayphoto-shrink_" + } + }, + "trackingId": "gxVWF6pMRZeQu4hbDxOG5A==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Les \"influenceurs\" ne sont g\u00e9n\u00e9ralement pas consid\u00e9r\u00e9s comme des grands amis de la lutte contre le changement climatique. Promouvoir des chaussures, des t\u00e9l\u00e9phones, des s\u00e9jours \u00e0 l'\u00e9tranger ou des cosm\u00e9tiques, tout en sautant d'un avion \u00e0 l'autre pour les prises de vues, c'est un peu compliqu\u00e9 \u00e0 marier avec la sobri\u00e9t\u00e9.\n\nC'est apr\u00e8s ce constat que Vinz Kant\u00e9 a bascul\u00e9 de la promotion publicitaire au militantisme climat (avec la cr\u00e9ation de la chaine Limit : https://lnkd.in/eGdVN6Vw ). Mais il y a un prix \u00e0 payer, au sens propre du terme : comme il le dit lui-m\u00eame dans cette vid\u00e9o, cela s'est accompagn\u00e9 d'une tr\u00e8s forte baisse de ses revenus.\n\nIl lui est r\u00e9cemment venu l'id\u00e9e d'aller dialoguer avec des \"coll\u00e8gues\" de l'influence (qui l'accepteraient) comment ils et elles voyaient la question environnementale dans leur m\u00e9tier (et si ca leur causait ou pas des \u00e9tats d'\u00e2me). \n\nLa premi\u00e8re qui a accept\u00e9 de se pr\u00eater au jeu s'appelle Jill (elle est belge, comme celui qui la passe sur le grill). Il en r\u00e9sulte un dialogue int\u00e9ressant entre 2 militant(e)s \u00e0 leur fa\u00e7on, l'un pass\u00e9 \"dehors\" (c'est \u00e0 dire devenu un influenceur \"d\u00e9di\u00e9 climat\"), l'autre rest\u00e9e \"dedans\" (elle fait toujours le m\u00eame m\u00e9tier, mais dit pouvoir ainsi parler \u00e0 des gens pas convaincus).\n\nUne partie de l'\u00e9change tourne donc autour de cette question \u00e9ternelle : pour changer le syst\u00e8me, est-ce plus efficace d'\u00eatre dedans ou dehors ? En fait c'est probablement un faux d\u00e9bat : il faut les deux. Depuis \"dehors\" on d\u00e9stabilise (et sans d\u00e9stabilisation personne ne cherche \u00e0 changer) ; depuis \"dedans\" on construit (phase indispensable apr\u00e8s la d\u00e9stabilisation). \n\nLa meilleure partie de la vid\u00e9o est \u00e0 la fin, avec tout d'abord des statistiques (dont je ne sais pas si elles sont repr\u00e9sentatives du m\u00e9tier) sur les diverses cat\u00e9gories de produits dont Jill a fait la promotion. En premi\u00e8re approximation, la quasi-totalit\u00e9 de ce qui permet \u00e0 cette influenceuse de gagner sa vie est constitu\u00e9 de produits ou services \"pas durables\" (sans que la d\u00e9finition en soit donn\u00e9e, mais quand on regarde la d\u00e9composition par cat\u00e9gorie de produits on arrive assez facilement \u00e0 cette conclusion).\n\nPuis vient le bilan carbone de la cobaye du jour : sans surprise, il est nettement sup\u00e9rieur \u00e0 la moyenne, avion oblige, alors m\u00eame que l'int\u00e9ress\u00e9e consid\u00e9rait avoir fait beaucoup de chemin en installant des panneaux PV sur le toit, en limitant la viande et en minimisant ses d\u00e9placements du quotidien en voiture. \n\nCela illustre l'un des d\u00e9fis de la d\u00e9carbonation : familiariser le grand public avec la notion d'empreinte carbone et de \"contenu carbone\" d'un produit ou service. Car l\u00e0 comme ailleurs il n'y a pas de progr\u00e8s sans mesure !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7026974945939226624,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7026974946824192000,urn:li:activity:7026974946824192000,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 39, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7026974946824192000,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7026974946824192000,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7026974946824192000", + "threadId": "activity:7026974946824192000", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026974946824192000", + "urn": "urn:li:activity:7026974946824192000", + "numComments": 49, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7026974946824192000", + "reactionTypeCounts": [ + { + "count": 893, + "reactionType": "LIKE" + }, + { + "count": 104, + "reactionType": "INTEREST" + }, + { + "count": 47, + "reactionType": "MAYBE" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7026974946824192000", + "numLikes": 1084, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026974946824192000", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1086, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7026294163922911233", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7026294163922911233)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7026294163922911233)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-pr%C3%A9sident-de-la-cop28-appelle-%C3%A0-lutter-activity-7026294163922911233-922j?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7026294163201515520", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7026294163922911233", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7026294163201515520", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "Om+hoKitDxHNQDUex458uQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7026294163922911233,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8878644420238475260", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676444749074?e=1677240000&v=beta&t=HdzuGwnWeDcS5CaMX3KhVFYZKSr3AlHg0jAdBSUHjmI", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676444749074?e=1677240000&v=beta&t=42ogJq9VCXhOKN7cU_b0F3MeiXYd7eBMbt_6WNn383M", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676444749075?e=1677240000&v=beta&t=PHj4un-PLkxMnKrZNOcUU1oMUe5fNlBuTJ4cLLJmzRw", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676444749075?e=1677240000&v=beta&t=fo2cn5deOZ7E_-pGe1Mvmp4KlrhC7_dboSc1_efm-DA", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D5627AQFU01I3pkKatw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le ministre de l'Industrie des \u00c9mirats arabes unis, Sultan Ahmed Al Jaber, prend la parole lors de l'exposition et de la conf\u00e9rence internationales sur le p\u00e9trole d'Abu Dhabi (ADIPEC) \u00e0 Abu Dhabi, aux \u00c9mirats arabes unis, le 31 octobre 2022." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8878644420238475260)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8878644420238475260)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lefigaro.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le pr\u00e9sident de la COP28 appelle \u00e0 lutter contre le r\u00e9chauffement \u00absans ralentir\u00bb l'\u00e9conomie by lefigaro.fr", + "actionTarget": "https://www.lefigaro.fr/flash-actu/le-president-de-la-cop28-appelle-a-lutter-contre-le-rechauffement-sans-ralentir-l-economie-20230130" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le pr\u00e9sident de la COP28 appelle \u00e0 lutter contre le r\u00e9chauffement \u00absans ralentir\u00bb l'\u00e9conomie" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7026294163201515520,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un certain nombre de personnes se sont \u00e9mues que le pr\u00e9sident de la future COP (ce qui signifie \"Convention Of the Parties\", jargon onusien pour d\u00e9signer la r\u00e9union annuelle de tous les pays qui ont ratifi\u00e9 la Convention Climat) soit le patron de l'op\u00e9rateur national d'un \u00e9tat p\u00e9trolier, qui dit que la croissance ne doit pas \u00eatre affect\u00e9e par les politiques climatiques.\n\nMauvaise nouvelle : il ne fait que r\u00e9citer le texte de la Convention Climat (https://bit.ly/3XTBWAv ).\n\nDans ce document on peut en effet trouver plein d'affirmations qui disent \u00e0 peu pr\u00e8s - voire explicitement - la m\u00eame chose, comme par exemple :\n\n\"(...) the share of global emissions originating in developing countries will grow to meet their social and development needs\".\n\n\"(...) responses to climate change should [avoid] adverse impacts on [economic development], taking into full account the legitimate priority needs of developing countries for the achievement of sustained economic growth (...)\".\n\n\"Policies and measures to protect the climate system against human-induced change should [take] into account that economic development is essential for adopting measures to address climate change\"\n\nSi l'on traduit ces \u00a7 en fran\u00e7ais ordinaire cela donne :\n\n- les pays \"en d\u00e9veloppment\" (cat\u00e9gorie dans laquelle se rangent tous les pays hors OCDE pour faire simple,et donc les \u00e9tats producteurs d'hydrocarbures du Moyen Orient ainsi que la Chine ou l'Inde) s'estiment l\u00e9gitimement en mesure d'augmenter leur part des \u00e9missions sans sortir du cadre de cette Convention.\n\n- les politiques climat (partout) ne doivent pas avoir d'effet adverse sur \"le d\u00e9veloppement\" (en clair la croissance \u00e9conomique), \n\n- et m\u00eame que la croissance est un pr\u00e9requis de toute politique climat !\n\nIl y a \u00e9galement un \u00a7 de la Convention qui concerne directement les \u00e9tats p\u00e9troliers et qui affirme :\n\n\"Recalling also that States have (...) the sovereign right to exploit their own resources pursuant to their own (...) developmental policies, and the responsibility to ensure that activities within their jurisdiction or control do not cause damage to the environment of other States\"\n\nLes p\u00e9troliers ont donc le droit souverain d'extraire le p\u00e9trole de leur sous-sol en \"s'assurant que leurs activit\u00e9s ne causent pas de dommage \u00e0 l'environnement des autres pays\". Cette formulation est pour le moins ambigue. Pourquoi ne pas avoir \u00e9crit explicitement \"(...) the responsibility to ensure that activities (...) do not cause CLIMATE damage to other states\" ?\n\n\"ne pas causer de dommage \u00e0 l'environnement\" peut juste signifier d'\u00e9viter les mar\u00e9es noires...\n\nBref il n'y a pas lieu de s'\u00e9mouvoir tant que cela de cette d\u00e9claration, tr\u00e8s \"ONU compatible\" (rappelons que l'item N\u00b0 8 des Objectifs du D\u00e9veloppement Durable c'est la croissance \u00e9conomique : https://sdgs.un.org/goals ).\n\nL'enseignement qu'il faut en tirer est connu depuis longtemps : aucun miracle ne viendra des COP. L'action doit venir d'ailleurs." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7026294163201515520,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7026294163922911233,urn:li:activity:7026294163922911233,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 84, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7026294163922911233,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7026294163922911233,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7026294163922911233", + "threadId": "activity:7026294163922911233", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026294163922911233", + "urn": "urn:li:activity:7026294163922911233", + "numComments": 181, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7026294163922911233", + "reactionTypeCounts": [ + { + "count": 1736, + "reactionType": "LIKE" + }, + { + "count": 325, + "reactionType": "INTEREST" + }, + { + "count": 144, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "PRAISE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7026294163922911233", + "numLikes": 2282, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7026294163922911233", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2323, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7025948734551117824", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7025948734551117824)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7025948734551117824)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_a-ivry-sur-seine-l%C3%A9coquartier-gagarine-truillot-activity-7025948734551117824-3zMv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7025948733804544000", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7025948734551117824", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7025948733804544000", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "8or/qnef5sH9DCYkK8JlfA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7025948734551117824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9040031523336314907", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676541953918?e=1677240000&v=beta&t=EzMfFKPd7rqg-ehQYPfWDxj96MQiZhg-qKj2BbHhdjk", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676541953919?e=1677240000&v=beta&t=UE1Eo44UlGITYQfi1deemCrpZMchhpSOCE-rRo9pxNY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676541953919?e=1677240000&v=beta&t=rdqaihgFR2mstGlVd3q7S4LM9OucEU72qzBTUo_Bgms", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676541953919?e=1677240000&v=beta&t=cbjyJ6lAhSt7tTdp9wMkTZRngCKKnvq_0m746IczIlw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFyrTAKGfzlXw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9040031523336314907)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9040031523336314907)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: A Ivry-sur-Seine, l'\u00e9coquartier Gagarine-Truillot veut acc\u00e9l\u00e9rer sur l'agriculture urbaine by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/pme-regions/ile-de-france/a-ivry-sur-seine-lecoquartier-gagarine-truillot-veut-accelerer-sur-lagriculture-urbaine-1898826" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "A Ivry-sur-Seine, l'\u00e9coquartier Gagarine-Truillot veut acc\u00e9l\u00e9rer sur l'agriculture urbaine" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7025948733804544000,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La commune d'Ivry sur Seine, qui fait partie de la proche banlieue sud de Paris, d\u00e9marre une op\u00e9ration d'am\u00e9nagement qui comportera 1400 logements (h\u00e9bergeant donc environ 3000 personnes si l'on compte 2,2 personnes par logement). Mais il y aura aussi 2,3 hectares d'agriculture urbaine, permettant aux \u00e9lus de qualifier ce nouveau quartier \"d'agrocit\u00e9\". Est-ce que l'alimentation des habitants du lieu va vraiment significativement changer avec l'arriv\u00e9e d'une surface agricole \u00e0 proximit\u00e9 ?\n\nEn 2015 (la valeur est du m\u00eame ordre de grandeur aujourd'hui), la plan\u00e8te offrait \u00e0 chaque terrien 0,6 hectare de terre agricole (voir graphique en commentaire). Avec 2,3 hectares, on nourrit donc... 4 personnes. Certes, on ne va pas avoir sur cette parcelle \u00e0 la fois des poireaux, des patates, du bl\u00e9, une vache, des pommiers, des poules et du ma\u00efs pour nourrir en totalit\u00e9 4 personnes pendant que les autres habitants n'en verront rien.\n\nMais, quoi que l'on y mette, cela permettra d'\u00e9viter 1 pour mille des flux logistiques associ\u00e9s \u00e0 la nourriture des habitants du futur quartier. Dire dans l'article que cette op\u00e9ration va contribuer de mani\u00e8re discernable \u00e0 une \"logique de circuits courts\" est donc un tout petit peu survendre l'affaire !\n\nEst-ce \u00e0 dire que ce genre de chose ne sert \u00e0 rien ? Pas n\u00e9cessairement :\n- cela a\u00e8re l'espace\n- cela peut permettre \u00e0 des enfants (voire des adultes) de d\u00e9couvrir ce qu'est un mouton ou un plant de pomme de terre\n- cela peut permettre de rappeler qu'une ville n'existe pas sans cultures pour la nourrir, et que le changement climatique met donc en danger les villes par cet aspect l\u00e0 aussi.\n\nMais, tant qu'\u00e0 laisser un espace non b\u00e2ti dans une ville, on peut aussi y mettre des arbres (qui apaisent les habitants et qui \u00e9vitent un peu l'effet ilot de chaleur) et/ou un espace (non imperm\u00e9abilis\u00e9) pour que les enfants aillent se d\u00e9fouler, chose qui est plus difficile quand on doit \u00e9viter de pi\u00e9tiner des plants de salade ou de faire peur aux poules.\n\nUn tel espace ne peut donc avoir qu'une vertu p\u00e9dagogique ou r\u00e9cr\u00e9ative, mais, malheureusement, rien de plus. Par d\u00e9finition m\u00eame, une ville est une concentration d'individus qui se mettent au m\u00eame endroit, en pratique pour \u00e9changer et coop\u00e9rer plus facilement, et par construction m\u00eame c'est donc la cr\u00e9ation d'un d\u00e9s\u00e9quilibre entre la production alimentaire locale et les bouches \u00e0 nourrir.\n\nUne ville doit donc fatalement importer sa nourriture (et tout le reste : v\u00eatements, mat\u00e9riaux de construction, objets pour le logement, etc) d'ailleurs, et plus une ville est grosse plus ses \"tentacules logistiques\" doivent aller chercher loin. C'est pour cela que dans un monde sobre en \u00e9nergie les grosses villes vont avoir du mal \u00e0 survivre : il leur faudra un hinterland bien plus important que ce que les possibilit\u00e9s de transport pourront alors fournir. \n\nDe ce fait, aucune \"agrocit\u00e9\" ne pourra, h\u00e9las, \u00eatre autre chose qu'une cit\u00e9 ordinaire avec une appellation vendeuse. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7025948733804544000,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7025948734551117824,urn:li:activity:7025948734551117824,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 167, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7025948734551117824,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7025948734551117824,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7025948734551117824", + "threadId": "activity:7025948734551117824", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025948734551117824", + "urn": "urn:li:activity:7025948734551117824", + "numComments": 271, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7025948734551117824", + "reactionTypeCounts": [ + { + "count": 1852, + "reactionType": "LIKE" + }, + { + "count": 282, + "reactionType": "INTEREST" + }, + { + "count": 122, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7025948734551117824", + "numLikes": 2313, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025948734551117824", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2323, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7025499114272387072", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7025499114272387072)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7025499114272387072)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9carbonation-les-pme-et-les-eti-en-ordre-activity-7025499114272387072-ZEWu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7025499113316085760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7025499114272387072", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7025499113316085760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "g07oEkOffJSjVqjzx9WYAw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7025499114272387072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7703886279211765749", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676467730494?e=1677240000&v=beta&t=AcsdPyJWvc6BGBGDmEXNv_toOaHRgN28IT2kimJ0e3g", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676467730494?e=1677240000&v=beta&t=9K65Tw5eJAeIH57tWy5YmldhlHwR3U8X-WaF4FDJAPw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676467730494?e=1677240000&v=beta&t=IVvA_vVyPwz1a2YcAwZGeL3CRp-z96E5G0dkSzXiI8g", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676467730494?e=1677240000&v=beta&t=iJmx_cI620TjGv9VgzasfG7m1s1uSdMfHTI19-ztfN4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEgbWHTTquFgg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7703886279211765749)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7703886279211765749)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: D\u00e9carbonation : les PME et les ETI en ordre dispers\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/pme-regions/actualite-pme/decarbonation-les-pme-et-les-eti-en-ordre-disperse-1901217" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9carbonation\u00a0: les PME et les ETI en ordre dispers\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7025499113316085760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1790, + "length": 13, + "miniProfile": { + "firstName": "Cl\u00e9ment", + "lastName": "Ramos", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAJ_kowBTgD4YvBxiCLnHECQS6-R87bx81Q", + "occupation": "Business strategy, Energy & Climate Change | Principal at Carbone 4", + "objectUrn": "urn:li:member:41915020", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAJ_kowBTgD4YvBxiCLnHECQS6-R87bx81Q", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1549373027172?e=1681948800&v=beta&t=vaTqIPfjkIf7gkzU-iYDkLZUZ8DBdinHEejt5hN1bBQ", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1549373027172?e=1681948800&v=beta&t=c2gPGoKF_PvehjIsoxJAiB0u54xCNTCuCxv1_-F12JQ", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQF8LHhZFoKl5A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "clementramos", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517778324190?e=1681948800&v=beta&t=5EhRf7YrFpsgXEhC0mSkPTnS86yyjCLrljHaANLSVV8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517778324190?e=1681948800&v=beta&t=1ldYL9bsWZJaDfKoOI2J47pebd5GvJLMgsaVvCgSw1U", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517778324190?e=1681948800&v=beta&t=9ikfNIke-mbTlj83WRPI5cKvEBIS4CJYfH9VzOeqPIQ", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517778324190?e=1681948800&v=beta&t=ha1l25OB-4YD65t8yNnuXqLuHvjSlF77DxJpGYOWW6s", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHtnW54XLAC1A/profile-displayphoto-shrink_" + } + }, + "trackingId": "qm3QXyKGToGb4Jhm6r8eOQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Plus une entreprise est grosse, plus elle se pr\u00e9occupe de climat. On pourrait trouver cela paradoxal, dans la mesure o\u00f9 les plus grandes entreprises sont aussi, souvent, les plus mondialis\u00e9es et le plus financiaris\u00e9es, donc celles o\u00f9 les possibilit\u00e9s effectives de changer de mod\u00e8le sans y laisser une part significative de leur chiffre d'affaire apparaissent d'embl\u00e9e comme \"pas \u00e9videntes\".\n\nEn effet, \"se d\u00e9carboner\", en pratique, n'est pas juste remplacer les combustibles fossiles utilis\u00e9s en direct par des \u00e9nergies dites sans carbone (en fait il y en a toujours un peu) : il s'agit d'\u00eatre capable de survivre dans un monde o\u00f9 les \u00e9missions baissent globalement de quelques % par an tous les ans et d\u00e8s maintenant.\n\nCela signifie donc survivre alors que des mat\u00e9riaux, des circuits logistiques, des usages \u00e0 l'aval, des pouvoirs d'achat ou du temps libres seront de moins en moins disponibles. Et commet les entreprises qui ont le plus profit\u00e9 de ce que les combustibles fossiles nous ont amen\u00e9 sont aussi souvent les plus grosses, on pourrait penser qu'un ph\u00e9nom\u00e8ne de d\u00e9ni les \u00e9loigne le plus de regarder la question.\n\nIl n'emp\u00eache : selon cet article des Echos, 20\u00a0% des PME fran\u00e7aises ont calcul\u00e9 leur empreinte carbone, alors que ce pourcentage monte \u00e0 37\u00a0% lorsque toutes les tailles d'entreprises sont prises en compte.\n\nCertes la r\u00e9glementation explique beaucoup cela : ce calcul d'empreinte carbone est devenu obligatoire pour les entreprises de plus de 500 salari\u00e9s (et sous certaines conditions va l'\u00eatre pour plus de 250). Un autre \u00e9l\u00e9ment joue aussi : les PME comportent g\u00e9n\u00e9ralement une proportion de cadres plus faible que les grands groupes, avec fatalement moins de personnes aptes \u00e0 consacrer du temps \u00e0 des sujets non imm\u00e9diatement op\u00e9rationnels.\n\nComme l'explique Cl\u00e9ment Ramos dans une interview adjacente \u00e0 cette article (https://bit.ly/3HGegKv ), pour les PME non financi\u00e8res c'est souvent un client important (priv\u00e9 ou public) qui est \u00e0 l'origine du premier bilan carbone, parce qu'il en fait une condition de son achat.\n\nPourtant cette approche poss\u00e8de une valeur ajout\u00e9e tr\u00e8s forte pour la raison suivante : les \u00e9missions viennent toujours de processus physiques ou chimiques. Tracer les \u00e9missions dont d\u00e9pend son entreprise, c'est doc inventorier les flux physiques (et parfois les processus chimiques) dont elle d\u00e9pend. \n\nC'est donc un premier pas indispensable pour comprendre combien il sera facile ou pas de survivre dans un monde qui va se d\u00e9carboner t\u00f4t ou tard, de gr\u00e9 pour cause de climat ou de force pour cause d'\u00e9puisement des combustibles fossiles et de for\u00eats \u00e0 couper. Voir un bilan carbone uniquement comme une obligation r\u00e9glementaire est rater l'essentiel de ce qu'il am\u00e8ne au pilotage strat\u00e9gique \u00e0 moyen terme (voire \u00e0 court terme), m\u00eame pour une PME qui consid\u00e8re tr\u00e8s souvent avoir peu de prise sur sa trajectoire globale." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7025499113316085760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7025499114272387072,urn:li:activity:7025499114272387072,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 62, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7025499114272387072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7025499114272387072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7025499114272387072", + "threadId": "activity:7025499114272387072", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025499114272387072", + "urn": "urn:li:activity:7025499114272387072", + "numComments": 82, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7025499114272387072", + "reactionTypeCounts": [ + { + "count": 1043, + "reactionType": "LIKE" + }, + { + "count": 121, + "reactionType": "INTEREST" + }, + { + "count": 61, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7025499114272387072", + "numLikes": 1253, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025499114272387072", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1253, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2w \u2022 ", + "accessibilityText": "2 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7025160160046129153", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7025160160046129153)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7025160160046129153)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-jean-marc-jancovici-explique-pourquoi-activity-7025160160046129153-RaAH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7025160159395991552", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7025160160046129153", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7025160159395991552", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "r/IfibuRW4bgV9HDfalXCA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7025160160046129153,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8092899943283074825", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676406251527?e=1677240000&v=beta&t=xTc_CMEn0zgM9xPDFuujjTkxxqI5TeT9AQZgaSYOY24", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676406251527?e=1677240000&v=beta&t=GTKO4VDGv9-2R33yGuDWwgGdQM5QdQ5P55muVdkYDo8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676406251527?e=1677240000&v=beta&t=cQ5hHn9PvGhsg4UdnQ21xilKlRTTZ6NWC5LjLKHk0ls", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676406251527?e=1677240000&v=beta&t=1gGEEFfWJ1JpS4nkDBjSws1aA2Qr5cWXrcFboNpbG1Y", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFCDv5onsOKlA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8092899943283074825)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8092899943283074825)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : Jean-Marc Jancovici explique pourquoi le secteur de la montagne est en p\u00e9ril by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900229868-climat-jean-marc-jancovici-explique-pourquoi-le-secteur-de-la-montagne-est-en-peril" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat : Jean-Marc Jancovici explique pourquoi le secteur de la montagne est en p\u00e9ril" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7025160159395991552,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans une semaine c'est le d\u00e9but des vacances scolaires de f\u00e9vrier. Celles et ceux qui ont aujourd'hui la chance de profiter des sports d'hiver auront-il (ou leurs enfants) toujours la possibilit\u00e9 d'y partir \u00e0 l'avenir ?\n\nAvant l'\u00e9nergie abondante - disons avant guerre - les habitants des pays de montagne \u00e9taient parmi les plus pauvres d'un pays. La Suisse - largement compos\u00e9e de montagne - \u00e9tait elle-m\u00eame un des pays les plus pauvres d'Europe. \n\nEt puis l'arriv\u00e9e des \u00e9nergies fossiles a donn\u00e9 des cong\u00e9s pay\u00e9s aux m\u00e9nages (parce que les machines travaillent \u00e0 notre place), une voiture \u00e0 chacun d'entre eux, a permis l'augmentation de la production de b\u00e9ton et d'acier - indispensables pour \"am\u00e9nager\" les stations de ski, et enfin a permis de chauffer les b\u00e2timents et de permettre la douche chaude alors qu'il fait -15 \u00b0C dehors. \n\nEt voici que les zones recul\u00e9es de montagne sont devenus des \"paradis \u00e9conomiques\". 50% du PIB de la Savoie repose aujourd'hui sur le tourisme !\n\nBien sur, pour qu'il y ait des sports d'hiver, il faut aussi un hiver, ou plus pr\u00e9cis\u00e9ment de la neige. D\u00e9sormais cette derni\u00e8re peut \u00eatre artificielle (on dit pudiquement \"de culture\" ;) ) mais cela demande quand m\u00eame qu'il fasse assez froid.\n\nLes sports d'hiver, c'est donc de la neige toujours l\u00e0 et de l'\u00e9nergie abondante. Mais les deux sont d\u00e9sormais menac\u00e9s : la neige par le r\u00e9chauffement climatique, qui va raccourcir - et supprimer \u00e0 basse altitude - la pr\u00e9sence de neige naturelle, voire artificielle s'il faut vraiment trop chaud, et l'\u00e9nergie par la d\u00e9crue des combustibles fossiles, parce que les moyens de transport collectifs pour aller en station ne sont pas souvent \u00e0 l'\u00e9chelle.\n\nUn Samedi de f\u00e9vrier il va arriver 5000 \u00e0 10000 personnes dans une grosse station : il faudrait 6 \u00e0 12 TGV par station avec tous les vacanciers venant du m\u00eame endroit ou presque pour acheminer la m\u00eame quantit\u00e9 de monde ! \n\nL'avenir des stations de ski dans un monde sobre et sans neige est donc un gros point d'interrogation. Il n'est h\u00e9las pas sur que, pour les \u00e9lus des communes qui h\u00e9bergent ces activit\u00e9s (et pour les entreprises qui en vivent), il y ait partout une intense r\u00e9flexion sur la mani\u00e8re d'anticiper plut\u00f4t que de subir. Ca serait surement utile !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7025160159395991552,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7025160160046129153,urn:li:activity:7025160160046129153,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 91, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7025160160046129153,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7025160160046129153,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7025160160046129153", + "threadId": "activity:7025160160046129153", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025160160046129153", + "urn": "urn:li:activity:7025160160046129153", + "numComments": 193, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7025160160046129153", + "reactionTypeCounts": [ + { + "count": 1499, + "reactionType": "LIKE" + }, + { + "count": 218, + "reactionType": "INTEREST" + }, + { + "count": 79, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7025160160046129153", + "numLikes": 1834, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7025160160046129153", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1837, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7024641174925664256", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7024641174925664256)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7024641174925664256)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pour-soccuper-s%C3%A9rieusement-denvironnement-activity-7024641174925664256-wusy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7024641172417474561", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7024641174925664256", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7024641172417474561", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "9gs9PFojuoS8jevfRyoTwQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7024641174925664256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGGpQwktMajlw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGGpQwktMajlw", + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1674804966150?e=1679529600&v=beta&t=4nvMQobPmiQmQ0cQySUBrzXvVffEKJ3rt4lydaeOr4I", + "expiresAt": 1679529600000, + "height": 533 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1674804966143?e=1679529600&v=beta&t=L1cFbAmVbQWYTfu0_yw8S8engShDwhqJL2RIBFmI56o", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280/0/1674804966143?e=1679529600&v=beta&t=AAO9KvyhTo6uL1trVaXdLebl0EO3Rc6XsaYGwWKMfW0", + "expiresAt": 1679529600000, + "height": 533 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1674804966143?e=1679529600&v=beta&t=zcW7DEJx9fV9GZ9b3R13Tc7dVTfB8cSK2mbbKG0hv6E", + "expiresAt": 1679529600000, + "height": 319 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1674804966143?e=1679529600&v=beta&t=yDbg19929du6KWGypryW05rZ9DQ7lTlOG_obABHow9g", + "expiresAt": 1679529600000, + "height": 106 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1674804966143?e=1679529600&v=beta&t=n057-2A7XTJJWiXaF5eL_6Fnw03qbnjPEfC5zdRvbek", + "expiresAt": 1679529600000, + "height": 533 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGGpQwktMajlw/feedshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7024641172417474561,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pour s'occuper s\u00e9rieusement d'environnement, il faut certes poser des objectifs et imaginer des actions, mais il faut aussi des gens pour s'en occuper. L'incendie climatique ne s'\u00e9teindra pas sans pompiers appropri\u00e9s !\n\nPour une fois ce post va donc concerner ce pour quoi Linkedin a \u00e9t\u00e9 con\u00e7u :) : des offres d'emploi, pour quelques entit\u00e9s et des postes en lien avec la question.\n\nA tout seigneur, tout honneur : on commence par la puissance publique. \n\nLa Direction G\u00e9n\u00e9rale du Tr\u00e9sor (Bercy) cherche :\n\ud83d\udc49Un(e) adjoint(e) au chef du p\u00f4le \"Z\u00e9ro carbone\" : https://bit.ly/407hmOD\n\ud83d\udc49Un(e) adjoint(e) chef du bureau Politique \u00e9conomique France en charge de la transition \u00e9cologique : https://bit.ly/3Hubtno\n\nLa Direction G\u00e9n\u00e9rale des Entreprises (Bercy) cherche :\n\ud83d\udc49 Un(e) directeur de projets \"D\u00e9carbonation, Comp\u00e9titivit\u00e9 et D\u00e9veloppement de l'Industrie\" : https://bit.ly/3wOtoiN\n\ud83d\udc49Un(e) \u00e9conomiste \u2013 d\u00e9carbonation, comp\u00e9titivit\u00e9 et comp\u00e9tences dans l'industrie : https://bit.ly/3H9vHBz\n\ud83d\udc49Un(e) \u00e9conomiste \u2013 transition \u00e9cologique des services marchands : https://bit.ly/4066Mra\n\ud83d\udc49Un(e) \u00e9conomiste \u2013 comp\u00e9titivit\u00e9, la transition \u00e9cologique et les comp\u00e9tences : https://bit.ly/3Y0TACj\n\ud83d\udc49Un(e) charg\u00e9(e) de mission Transition \u00e9cologique transports-d\u00e9veloppement nouvelles mobilit\u00e9s : https://bit.ly/3kIbYkZ\n\nFrance Strat\u00e9gie cherche :\n\ud83d\udc49 Un(e) chef(fe) de projet au secr\u00e9tariat permanent de la Plateforme RSE : https://bit.ly/3WHSiea\n\nAu Haut Conseil pour le Climat l'offre du jour est pour :\n\ud83d\udc49 Un(e) charg\u00e9(e) de mission agriculture et alimentation : https://bit.ly/3ZVjh8W\n\nPlus g\u00e9n\u00e9ralement, les minist\u00e8res et les collectivit\u00e9s cherchent de plus en plus sur ces sujets climat-\u00e9nergie, \u00e0 savoir :\n\ud83d\udc49Ici des dizaines d'offres \"d\u00e9carbonation\" : https://lnkd.in/e9cDvwnA\n\ud83d\udc49Ici des dizaines d'offres \"climat\" : https://lnkd.in/eRWGRuH5\n\ud83d\udc49Ici des dizaines d'offres \"sobri\u00e9t\u00e9\" : https://lnkd.in/eBsy266J\n\nEnsuite on va passer au monde associatif.\n\nAu Shift Project nous recrutons :\n\ud83d\udc49 Un(e) charg\u00e9(e) de gestion administrative : https://lnkd.in/ed2AqeNM\n\ud83d\udc49 Un(e) responsable adjoint(e) Administration et Finances : https://lnkd.in/eqB_MJth\n\nBloom (association militant pour une p\u00eache durable) recrute :\n\ud83d\udc49 Un(e) responsable de campagne internationale avec profil ing\u00e9nieur sp\u00e9cialiste de la p\u00eache : https://bit.ly/3R3OVNC\n\nNB : Bloom et The Shift Project ont actuellement une collaboration et ce poste y est associ\u00e9.\n\nLe CJD - Centre des jeunes dirigeants - propose en alternance un poste de charg\u00e9(e) de projet transition VTE Vert : https://bit.ly/3wylpGa\n\nEnfin, dans le monde priv\u00e9, charit\u00e9 bien ordonn\u00e9e etc, c'est \u00e0 Carbone 4 qu'il y a une dizaine de postes \u00e0 pourvoir qui sont d\u00e9crits sur https://lnkd.in/dxzysp75\n\nBonne chance !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7024641172417474561,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7024641174925664256,urn:li:activity:7024641174925664256,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 167, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7024641174925664256,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7024641174925664256,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7024641174925664256", + "threadId": "activity:7024641174925664256", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024641174925664256", + "urn": "urn:li:activity:7024641174925664256", + "numComments": 222, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7024641174925664256", + "reactionTypeCounts": [ + { + "count": 3955, + "reactionType": "LIKE" + }, + { + "count": 263, + "reactionType": "PRAISE" + }, + { + "count": 197, + "reactionType": "APPRECIATION" + }, + { + "count": 83, + "reactionType": "EMPATHY" + }, + { + "count": 37, + "reactionType": "INTEREST" + }, + { + "count": 27, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7024641174925664256", + "numLikes": 4562, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024641174925664256", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4565, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7024289540320153600", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7024289540320153600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7024289540320153600)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_souverainet%C3%A9-et-ind%C3%A9pendance-%C3%A9nerg%C3%A9tique-activity-7024289540320153600-IgB-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7024289539351310336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7024289540320153600", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7024289539351310336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "86FqWyCEGxRQ2/oaxO6JLw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7024289540320153600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7932056655692603002", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676473141565?e=1677240000&v=beta&t=eu0XCViACOW3OmcNMdMo1Oc8nagNk1cGogLKuGag_R8", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676473141565?e=1677240000&v=beta&t=LCcxG_bm0l2EfOt2xYYrLcyiGpFI60bNB41xYGR3kvI", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676473141565?e=1677240000&v=beta&t=d09FP4HlB3D1gruUzRjAHlFka88cxAfTbfOehlBb7gQ", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676473141565?e=1677240000&v=beta&t=brf3LOZwWLz4uvm2fcHGo_7-PRQVV5bus1efMtQRcZE", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGQ_hdPORoVTw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5612499999999999 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7932056655692603002)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7932056655692603002)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "videos.assemblee-nationale.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : Mme Catherine MacGregor, directrice g\u00e9n\u00e9rale du groupe Engie ; M. Daniel Verwaerde, membre de l\u2019Acad\u00e9mie des technologies - Mardi 6 d\u00e9cembre 2022 on videos.assemblee-nationale.fr", + "actionTarget": "https://videos.assemblee-nationale.fr/video.12589032_638f56752774f.souverainete-et-independance-energetique-de-la-france--mme-catherine-macgregor-directrice-generale-6-decembre-2022" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "- \u00c0 16 heures: - Audition, ouverte \u00e0 la presse, de Mme Catherine MacGregor, Directrice g\u00e9n\u00e9rale du groupe Engie - \u00c0 18 heures: - Audition, ouverte \u00e0 la presse, de M. Daniel Verwaerde, ancien Administrateur g\u00e9n\u00e9ral du CEA, et Membre de l\u2019Acad\u00e9mie des..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : Mme Catherine MacGregor, directrice g\u00e9n\u00e9rale du groupe Engie ; M. Daniel Verwaerde, membre de l\u2019Acad\u00e9mie des technologies - Mardi 6 d\u00e9cembre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7024289539351310336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1379, + "length": 19, + "miniProfile": { + "firstName": "Catherine", + "lastName": "Fiamma MacGregor", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAABMcfABmsLl9zpQE2-syajg5lwtdTCOZjw", + "occupation": "Group CEO and Board Member at ENGIE", + "objectUrn": "urn:li:member:5009904", + "entityUrn": "urn:li:fs_miniProfile:ACoAAABMcfABmsLl9zpQE2-syajg5lwtdTCOZjw", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1608050700184?e=1681948800&v=beta&t=cxm9Ma0-2icVn2YAj5mrqFPOrNbwWKzpagc9-24weG4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1608050700184?e=1681948800&v=beta&t=FV3Kw5GJ8e_H3u0YUEctfp_JPq1kJXXr4Q1idjAyRjA", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQFrrX3rVRm71Q/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "catherine-fiamma-macgregor-3008171", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1608050753988?e=1681948800&v=beta&t=WG_rCAC0oM1_fHPqUSvzFpK6jOSm7FlgvHO6qZds1y0", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1608050753988?e=1681948800&v=beta&t=k5cdb5Lsgk7xvYkgBzPhYXRj6QYmeX5MUVGNkN3gV-8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1608050753988?e=1681948800&v=beta&t=i6_539fPpvXp8EVSsfA5EwYShkTNgNkjpXTUwTOZYRY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1608050753988?e=1681948800&v=beta&t=p5IqE_Qe_lIF3g6jypV_Sot3TbOLyvEVqRxDqrX5nsQ", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQGrYmTQGJfdXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "MHQK6+KBQXqWti6s3qb0zw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "La \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\", c'est un peu le Thinkerview de l'\u00e9nergie du moment. Chaque personne qui passe sur le grill dispose d'une heure et demie minimum pour s'exprimer, et globalement les questions sont assez pr\u00e9cises (les r\u00e9ponses parfois un peu moins !).\n\nQuand on regarde la liste des \"auditionn\u00e9s\", il est facile de constater que globalement c'est l'\u00e9lectricit\u00e9 qui concentre l'essentiel du \"temps d'antenne\". Certes Patrick Pouyann\u00e9 est pass\u00e9 \"dire bonjour\", mais globalement on ne parle pas d'hydrocarbures dans cette enceinte \u00e0 proportion de leur importance dans l'ensemble de notre syst\u00e8me \u00e9nerg\u00e9tique.\n\nLors de cette audition de la patronne d'Engie, qui date du 6 d\u00e9cembre dernier, il a donc beaucoup \u00e9t\u00e9 question, sans surprise, de gaz. Qu'est-ce que que l'on y trouve ?\n\nD'abord, tr\u00e8s peu d'\u00e9changes ont port\u00e9 sur le pass\u00e9 de la DG d'Engie (qui a fait la quasi-totalit\u00e9 de sa carri\u00e8re dans l'amont p\u00e9trolier et gazier : https://bit.ly/3RfZwFd ) ou de son entreprise, alors que c'\u00e9tait le cas pour les autres \"auditionn\u00e9s\". Pourtant, avec le titre de cette commission d'enqu\u00eate, c'est bien du pass\u00e9 dont il est question ! Ont surtout \u00e9t\u00e9 abord\u00e9s les projets d'Engie et le potentiel de ceci ou cela \u00e0 l'avenir, ce qui est n\u00e9anmoins int\u00e9ressant quand m\u00eame, bien s\u00fbr.\n\nCatherine MacGregor affirme en particulier que le gaz fran\u00e7ais sera d\u00e9carbon\u00e9 \u00e0 20% en 2030 et totalement en 2045 (sans donner les volumes concern\u00e9s). Il y a 2 mani\u00e8res de faire du gaz d\u00e9carbon\u00e9 : la m\u00e9thanisation d'une part (par fermentation de biomasse renouvelable), et la production d'hydrog\u00e8ne d\u00e9carbon\u00e9 d'autre part (ce dernier pouvant ensuite \u00eatre utilis\u00e9 tel quel ou associ\u00e9 \u00e0 du carbone biog\u00e9nique pour faire des combustibles gazeux ou liquides).\n\nL'hydrog\u00e8ne d\u00e9carbon\u00e9 s'obtient soit par \u00e9lectrolyse avec de l'\u00e9lectricit\u00e9 d\u00e9carbon\u00e9e, soit par reformage du m\u00e9thane avec capture et s\u00e9questration de l'ensemble du CO2 \u00e9mis par le processus (voir https://bit.ly/3DgTyhr pour un rapide panorama).\n\nEn 2021, le seul gaz d\u00e9carbon\u00e9 vient de la m\u00e9thanisation et c'est 1% du gaz utilis\u00e9 en France (voir graphique en commentaire). La d\u00e9carbonation totale du gaz est donc un gros point d'interrogation qui, dans notre pays, fait l'objet de consid\u00e9rablement moins d'attention m\u00e9diatique que celle de l'\u00e9lectricit\u00e9. \n\nDans cette audition, le biogaz est qualifi\u00e9 d'\u00e9nergie \"locale\". C'est vrai pour le v\u00e9g\u00e9tal qui finira dans le m\u00e9thaniseur. Mais ce dernier est fait de m\u00e9taux qui ne sont pas locaux, et les cultures ou r\u00e9sidus de culture utilis\u00e9s pour la m\u00e9thanisation auront utilis\u00e9 des engrais, pas locaux, ou des tracteurs, qui ne le sont pas plus...\n\nOn retrouve ici la question de l'imbrication des \u00e9nergies, qui rend tr\u00e8s difficile de savoir quel potentiel sera r\u00e9ellement accessible quand (et si) la \"production ENR\" ne b\u00e9n\u00e9ficiera plus de la productivit\u00e9 industrielle globale amen\u00e9e par p\u00e9trole, gaz et charbon." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7024289539351310336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7024289540320153600,urn:li:activity:7024289540320153600,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 43, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7024289540320153600,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7024289540320153600,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7024289540320153600", + "threadId": "activity:7024289540320153600", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024289540320153600", + "urn": "urn:li:activity:7024289540320153600", + "numComments": 102, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7024289540320153600", + "reactionTypeCounts": [ + { + "count": 780, + "reactionType": "LIKE" + }, + { + "count": 174, + "reactionType": "INTEREST" + }, + { + "count": 53, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7024289540320153600", + "numLikes": 1022, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7024289540320153600", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1022, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7023553958300250112", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7023553958300250112)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7023553958300250112)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pourquoi-la-france-produit-de-moins-en-moins-activity-7023553958300250112-1zJW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7023553957666922497", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7023553958300250112", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7023553957666922497", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "6SYZQAXZ4tKnRKU/K/APOQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7023553958300250112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8497763868858623232", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676365567578?e=1677240000&v=beta&t=6sF3FLmOwaOxEAqjcG1XSbG_-JRchasA8sZlEJ4lbyw", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676365567578?e=1677240000&v=beta&t=JJ3h_B3P3ouBQgJZD7lqbOoG5c1nu1Zx0P3qy7lu9qg", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676365567578?e=1677240000&v=beta&t=Ji7uWHOOMG2Bkg_nl2rev0iV9CVdV4ci16BgXtqJ4Xs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676365567578?e=1677240000&v=beta&t=n3zsoXCj-sU1FbxUN2OSCZbY1uMFeBG8ndpLKCh1NIk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQFr8j9F7XOroA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8497763868858623232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8497763868858623232)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pourquoi la France produit de moins en moins de viande de boeuf by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/conso-distribution/pourquoi-la-france-produit-de-moins-en-moins-de-viande-de-boeuf-1899504" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pourquoi la France produit de moins en moins de viande de boeuf" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7023553957666922497,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans les \u00e9missions d'origine agricole, l'un des postes importants en France est le m\u00e9thane \u00e9mis par le cheptel bovin. Ce m\u00e9thane vient de la fermentation des v\u00e9g\u00e9taux dans la panse de ces grosses bestioles, et ressort sous forme de rots pour l'essentiel.\n\nA cela il faut rajouter les \u00e9missions des cultures fourrag\u00e8res le cas \u00e9ch\u00e9ant (ma\u00efs, soja, c\u00e9r\u00e9ales, pois...). Ces cultures engendrent des \u00e9missions de CO2 pour la fabrication des engrais, et des \u00e9missions de N2O (un gaz \u00e0 effet de serre 265 fois plus puissant par kg que le CO2) lors de l'\u00e9pandage de ces derniers. Le r\u00e9sultat est que manger un kg de boeuf conduit \u00e0 l'\u00e9mission de plusieurs dizaines de kg d'\u00e9quivalent CO2.\n\nOn pourrait donc se r\u00e9jouir de la baisse du cheptel \u00e9voqu\u00e9e par cet article des Echos, expliquant que, depuis 2016, il y a une tendance en ce sens. Sauf que cette \u00e9volution n'est pas du tout pilot\u00e9e, dans un contexte o\u00f9 les \u00e9leveurs verraient leurs revenus maintenus avec des prix unitaires qui augmentent, et des m\u00e9thodes qu montent en gamme. \n\nElle est subie, \u00e0 cause :\n- du non renouvellement des exploitations (de fait \u00e9leveur est un m\u00e9tier tr\u00e8s contraignant et peu r\u00e9mun\u00e9r\u00e9)\n- de la hausse des couts (\u00e9nergie donc engrais, aliments...).\n\nMais en face les consommateurs n'ont pas modifi\u00e9 leurs habitudes alimentaires. La cons\u00e9quence est donc une hausse des importations, et par ailleurs une constance de l'empreinte carbone (pour \"la plan\u00e8te\", la situation n'a pas chang\u00e9). \n\nDans le m\u00eame temps, les consommateurs mangent de moins en moins de fruits et l\u00e9gumes, en particulier les jeunes : selon le pr\u00e9sident de l'Interprofession des fruits et l\u00e9gumes, les personnes de moins de 35 ans en mangent 4 fois moins que leurs grands parents (https://bit.ly/3Xwb7T5 ).\n\nIl y a donc la th\u00e9orie et il y a les faits. En th\u00e9orie, il faudrait que nous mangions plus de v\u00e9g\u00e9taux et moins de viande, et il faudrait que cela se fasse dans un contexte o\u00f9 les exploitants ne sont pas les premiers p\u00e9nalis\u00e9s par cette \u00e9volution. Rappelons que les exploitants agricoles, aujourd'hui, repr\u00e9sentent 2% du PIB, ce qui signifie que la production des denr\u00e9es agricoles brutes repr\u00e9sente de l'ordre de 2% du budget des m\u00e9nages. C'\u00e9tait plus proche du tiers il y a un si\u00e8cle !\n\nDans les faits, nous mangeons toujours autant de viande (et de plus en plus dans des produits transform\u00e9s) et de moins en moins de v\u00e9g\u00e9taux directement utilisables, et par ailleurs il y a de plus en plus de produits \"industriels\" (dont les boissons) et beaucoup trop de sucre.\n\nId\u00e9alement, il faudrait que le cheptel diminue dans un contexte bien diff\u00e9rent : que des \u00e9leveurs aussi nombreux g\u00e8rent des troupeaux plus petits et mieux valoris\u00e9s, et cela dans un contexte o\u00f9 la population modifie ses habitudes alimentaires pour que ce ne soient pas des importations qui prennent le relais (ce qui se passe aussi dans la volaille). Un sujet de plus o\u00f9 il faudrait se creuser un peu plus les m\u00e9ninges !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7023553957666922497,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7023553958300250112,urn:li:activity:7023553958300250112,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 189, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7023553958300250112,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7023553958300250112,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7023553958300250112", + "threadId": "activity:7023553958300250112", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023553958300250112", + "urn": "urn:li:activity:7023553958300250112", + "numComments": 365, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7023553958300250112", + "reactionTypeCounts": [ + { + "count": 3375, + "reactionType": "LIKE" + }, + { + "count": 516, + "reactionType": "INTEREST" + }, + { + "count": 251, + "reactionType": "MAYBE" + }, + { + "count": 64, + "reactionType": "PRAISE" + }, + { + "count": 37, + "reactionType": "APPRECIATION" + }, + { + "count": 18, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7023553958300250112", + "numLikes": 4261, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023553958300250112", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4262, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 14, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 Edited \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7023197816785129472", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7023197816785129472)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7023197816785129472)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_hydrog%C3%A8ne-industrie-macron-et-scholz-relancent-activity-7023197816785129472-ANEu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7023197815887548416", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7023197816785129472", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7023197815887548416", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "UPahp62K3ndoR3RpRHuBbg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7023197816785129472,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8856854701579573586", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675735775647?e=1677240000&v=beta&t=RY2WBZLCYbQkDxpQzKRDRAzMvcamjaEKNC1uE_J6l_E", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675735775648?e=1677240000&v=beta&t=4ZTgz6wq7E-tbnuE03FyuM5W80nTrp9VA6vrwx5oOVQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675735775648?e=1677240000&v=beta&t=USW9bZW3Yl4lUcNtlLTePM6GDSGjjkFHDiu9VswbhOc", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675735775648?e=1677240000&v=beta&t=jIjKyRvV8uLzeriGk7CY_cyO2srdQqDxunVJoWV94YM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGX80IoBXcWyw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8856854701579573586)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8856854701579573586)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Hydrog\u00e8ne, industrie : Macron et Scholz relancent le couple franco-allemand by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/macron-et-scholz-reaffirment-lamitie-indestructible-entre-la-france-et-lallemagne-1899434" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Hydrog\u00e8ne, industrie\u00a0: Macron et Scholz relancent le couple franco-allemand" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7023197815887548416,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s avoir jet\u00e9 \u00e0 la poubelle une partie de son parc de production \u00e9lectrique d\u00e9carbon\u00e9, l'Allemagne compte d\u00e9sormais sur celui \u00e0 construire \"chez les autres\" pour se fournir en hydrog\u00e8ne \"vert\", c'est-\u00e0-dire produit avec de l'\u00e9lectricit\u00e9 d'origine renouvelable.\n\nDans les diverses annonces que j'ai vues passer sur cette \"strat\u00e9gie\" allemande, il ne figure jamais la r\u00e9ponse aux questions suivantes, qui me semblent pourtant un peu centrales dans l'affaire :\n\n- le nucl\u00e9aire \u00e9tant hors jeu pour nos voisins, pourquoi serait-il plus facile de construire des \u00e9oliennes et des panneaux solaires hors d'Allemagne plut\u00f4t que dans ce pays pour disposer d'\u00e9lectricit\u00e9 bas carbone ?\n\n- les pays d'Afrique du Nord, ou d'autres \"bien insol\u00e9s\", ou \"bien vent\u00e9s\", devront d\u00e9velopper des ENR pour d\u00e9carboner leur propre mix \u00e9lectrique. Pourquoi les premi\u00e8res \u00e9oliennes et les premiers panneaux solaires au sein de ces pays devraient prioritairement servir \u00e0 d\u00e9carboner l'Allemagne plut\u00f4t que leur \u00e9conomie domestique ?\n\n- le rendement de chaine est faible : l'\u00e9lectrolyse \u00e0 partir d'\u00e9lectricit\u00e9 a un rendement de l'ordre de 70% et la liqu\u00e9faction + transport de H2 un rendement de l'ordre de 50% (et je ne connais pas celui de la \"regaz\u00e9ification\" de l'hydrog\u00e8ne). Si on passe par le m\u00e9thane ou l'ammoniac on \u00e9conomise les pertes de liqu\u00e9faction mais on perd l'\u00e9nergie n\u00e9cessaire \u00e0 la synth\u00e8se de CH4 ou NH3. Il faut donc doubler (et peut-\u00eatre plus) la production \u00e9lectrique par rapport \u00e0 une production locale utilis\u00e9e en direct. Pourquoi cela \"tiendrait\" physiquement et \u00e9conomiquement \u00e0 long terme, au surplus dans un monde o\u00f9 les bateaux transportant m\u00e9thane et ammoniac devront utiliser une partie de la cargaison comme carburant puisqu'il n'y a plus droit au p\u00e9trole ?\n\nSortir d'un d\u00e9bat sur l'\u00e9nergie demande toujours de manipuler des chiffres. Lorsqu'elle relaie les annonces gouvernementales, il serait souhaitable que la presse accompagne ces derni\u00e8res de calculs d'ordre de grandeur pour que l'on comprenne ce qui est r\u00e9aliste (ou pas) et \u00e0 quel horizon de temps pour les annonces en question. Si cela conduit \u00e0 prendre quelques jours pour publier un article, le gain en valeur ajout\u00e9e me semble largement justifier le d\u00e9lai.\n\nA tout le moins, la m\u00eame presse pourrait accompagner l'annonce des questions que cela pose. Cela \u00e9viterait, le cas \u00e9ch\u00e9ant, de perdre du temps \u00e0 courir derri\u00e8re des chim\u00e8res, ce qui, quand on est dans une course contre la montre, est un moyen garanti de faire son propre malheur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7023197815887548416,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7023197816785129472,urn:li:activity:7023197816785129472,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 182, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7023197816785129472,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7023197816785129472,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7023197816785129472", + "threadId": "activity:7023197816785129472", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023197816785129472", + "urn": "urn:li:activity:7023197816785129472", + "numComments": 285, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7023197816785129472", + "reactionTypeCounts": [ + { + "count": 3160, + "reactionType": "LIKE" + }, + { + "count": 420, + "reactionType": "INTEREST" + }, + { + "count": 224, + "reactionType": "MAYBE" + }, + { + "count": 120, + "reactionType": "PRAISE" + }, + { + "count": 20, + "reactionType": "EMPATHY" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7023197816785129472", + "numLikes": 3962, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7023197816785129472", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3985, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7022876021402042368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7022876021402042368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7022876021402042368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-2011-%C3%A0-une-%C3%A9poque-o%C3%B9-le-gaz-russe-ne-activity-7022876021402042368-GCwD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7022876020517031937", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7022876021402042368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7022876020517031937", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "L9a4lI2Dp7N894vqWJkAMA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7022876021402042368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHnH9Ao0zcrbA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHnH9Ao0zcrbA", + "artifacts": [ + { + "width": 916, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1674384120996?e=1679529600&v=beta&t=Oi2195liGNQTl-VwNo6eX4R4bMyHtKAjwgX5nA5Y_Qc", + "expiresAt": 1679529600000, + "height": 612 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1674384121145?e=1679529600&v=beta&t=h9Zctk9OuQ88-__5OAeOwQ2R_MczqrnxfCejDQrBaV8", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 916, + "fileIdentifyingUrlPathSegment": "1280/0/1674384121145?e=1679529600&v=beta&t=yzqvYxDNzEjtatFBbYCZIhkss8qFP0S6VD9-PxE3Zr4", + "expiresAt": 1679529600000, + "height": 612 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1674384121145?e=1679529600&v=beta&t=puHSg4Oik6-wAeN9mQVc84Os0gu4PXYrkEiZAYUaudA", + "expiresAt": 1679529600000, + "height": 321 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1674384121145?e=1679529600&v=beta&t=FQSNdAR-Nt3SD6t3AtGm6gUPf49kXYv8PBVdVUMBqTI", + "expiresAt": 1679529600000, + "height": 107 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1674384121145?e=1679529600&v=beta&t=Xiweh-0ed5q5o5mE2Zt719W99cAowF4vS03Ji9LmfEA", + "expiresAt": 1679529600000, + "height": 534 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHnH9Ao0zcrbA/feedshare-shrink_" + }, + "displayAspectRatio": 0.6681222707423581 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7022876020517031937,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 2011, \u00e0 une \u00e9poque o\u00f9 le gaz russe ne faisait pas la une de l'actualit\u00e9, la France a interdit la fracturation hydraulique, mettant ainsi un terme \u00e0 toute exploitation potentielle du gaz dit de schiste sur notre sol. Avons nous \u00e0 l'\u00e9poque supprim\u00e9 une marge de manoeuvre importante pour continuer \u00e0 consommer du gaz ?\n\nC'est la question que j'ai trait\u00e9e dans ma chronique diffus\u00e9e hier matin sur RTL : https://bit.ly/3D5jqNe\n\nPour produire ce type de gaz il faut :\n\n- que le sous-sol comporte une roche m\u00e8re, c'est \u00e0 dire une formation g\u00e9ologique o\u00f9 se sont form\u00e9s des hydrocarbures liquides et gazeux (https://bit.ly/2RsaUS6 ). C'est le cas chez nous.\n\n- que des hydrocarbures y soient toujours pr\u00e9sents. Or, en France, une large partie a tr\u00e8s certainement migr\u00e9 vers les roches-r\u00e9servoir de la Mer du Nord et du bassin aquitain, et il n'y a plus beaucoup de gaz dans la roche m\u00e8re (ce que dit Patrick Pouyann\u00e9 lors d'une audition r\u00e9cente devant une commission d'enqu\u00eate parlementaire : https://bit.ly/3XQMSPd )\n\n- que la roche m\u00e8re soit fracturable (elle peut \u00eatre trop \"molle\" pour cela, comme en Pologne qui a essay\u00e9 pour de vrai)\n\n- qu'il y ait l'espace en surface pour mettre tous les quelques kilom\u00e8tres une installation qui ressemble \u00e0 ce qu'il y a sur la photo (avec les pistes d'acc\u00e8s qui vont avec et qui sont parcourues par des norias de camions pour acheminer l'eau et le sable, et \u00e9vacuer le gaz ou le p\u00e9trole) \n\n- comme la dur\u00e9e de vie d'un puits est faible, il faut qu'il y ait une industrie du forage apte \u00e0 faire en permanence beaucoup de trous (les USA forent environ 100.000 puits par an) qui n'existe pas en Europe\n\nUn dernier point est central : le droit. Aux USA, les ressources mini\u00e8res pr\u00e9sentes sous le sol appartiennent au propri\u00e9taire du sol. Il suffit donc \u00e0 ce dernier de toper avec un exploitant pour que les op\u00e9rations d\u00e9marrent. \n\nEn France, les ressources mini\u00e8res appartiennent \u00e0 l'Etat (j'ai bien peur d'avoir invent\u00e9 dans ma chronique une limite de 10 m\u00e8tres qui n'existe pas ! Heureusement ca ne change pas la suite). \n\nDe ce fait, si vous ou moi avons du gaz (ou du plomb, ou de l'or, ou du lithium) sous notre terrain, nous ne pouvons pas en confier l'extraction \u00e0 un op\u00e9rateur avec partage des recettes : c'est l'Etat qui en est propri\u00e9taire et qui seul peut en attribuer la concession \u00e0 une entreprise. Aux USA, en pareil cas le propri\u00e9taire du terrain devient mon\u00e9tairement riche, alors qu'en France il se fait exproprier !\n\nPour d\u00e9marrer une exploitation \u00e0 large \u00e9chelle de gaz de schiste chez nous, il faudrait donc une concession mini\u00e8re par puits ou ensemble de puits, avec \u00e0 chaque fois des recours possibles \u00e9videmment : il y en aurait pour plus d'une d\u00e9cennie. \n\nEn conclusion, m\u00eame si la fracturation hydraulique \u00e9tait r\u00e9-autoris\u00e9e, le \"gaz de schiste\" ne pourrait pas du tout compenser le d\u00e9clin des importations russes en Europe. Mais le gaz fossile, dont l'usage \u00e9met du CO2, doit dispara\u00eetre d'ici 2050, ce n'est pas vraiment un drame." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7022876020517031937,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7022876021402042368,urn:li:activity:7022876021402042368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 65, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7022876021402042368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7022876021402042368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7022876021402042368", + "threadId": "activity:7022876021402042368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022876021402042368", + "urn": "urn:li:activity:7022876021402042368", + "numComments": 116, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7022876021402042368", + "reactionTypeCounts": [ + { + "count": 733, + "reactionType": "LIKE" + }, + { + "count": 167, + "reactionType": "INTEREST" + }, + { + "count": 64, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7022876021402042368", + "numLikes": 978, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022876021402042368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 981, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 5, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3w \u2022 ", + "accessibilityText": "3 weeks ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7022523538767065088", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7022523538767065088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7022523538767065088)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-pr%C3%A9sident-r%C3%A9pond-%C3%A0-vos-questions-sur-l%C3%A9cologie-activity-7022523538767065088-vcvG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7022523537882001408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7022523538767065088", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7022523537882001408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "cHe1cBBJhic1scVWnjz6GQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7022523538767065088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7813238101893236222", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675718107712?e=1677240000&v=beta&t=tTycSPvq-2cJXqlpoeDYJ-esbvLOS6McsW9PiXCnVhM", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675718107712?e=1677240000&v=beta&t=TGtQVfiZEIEadSEbMen9q5u7hD1PL7U2zyaE9Yns4nI", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675718107712?e=1677240000&v=beta&t=_98YHkqRJl0oPCYH3RRSbGLGaKiE_c5ocf8I6jJNTsQ", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675718107712?e=1677240000&v=beta&t=F-XZ1R-rGoJ-24aUumltjT-4Za3EFwA401Jb1FJMGjI", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHXUyrP0HNczw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7813238101893236222)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7813238101893236222)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "elysee.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Pr\u00e9sident r\u00e9pond \u00e0 vos questions sur l'\u00e9cologie, \u00e9pisode 3. by elysee.fr", + "actionTarget": "https://www.elysee.fr/emmanuel-macron/2023/01/17/le-president-repond-a-vos-questions-sur-lecologie-episode-3" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Pr\u00e9sident r\u00e9pond \u00e0 vos questions sur l'\u00e9cologie, \u00e9pisode 3." + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7022523537882001408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "eGw8kasCSeKB8B17nteFaw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Emmanuel Macron r\u00e9pond \u00e0 vos questions sur l'\u00e9cologie, \u00e9pisode 3. Je viens de regarder cette courte vid\u00e9o (17 minutes). Ce format a le m\u00e9rite de traiter de questions d\u00e9tour\u00e9es, ce qui rend la critique (que j'esp\u00e8re constructive) circonstanci\u00e9e. Voici quelques commentaires.\n\n- sur le \"qui aurait pu pr\u00e9voir\" : \"on\" pouvait mettre dans le discours de voeux la pr\u00e9cision donn\u00e9e dans cette vid\u00e9o (que ce qui \u00e9tait impr\u00e9visible \u00e9tait la vitesse d'\u00e9volution) et qui levait toute ambiguit\u00e9. Y avoir pens\u00e9 sans l'avoir fait est hautement improbable et il reste toujours \u00e0 savoir pourquoi...\n\n- l'Elys\u00e9e a demand\u00e9 aux 50 sites industriels les plus \u00e9metteurs en France de diviser leurs \u00e9missions par 2 en 10 ans. Il s'agit essentiellement d'industrie lourde (acier, chimie, ciment). Cette derni\u00e8re a besoin de d\u00e9ployer des technologies nouvelles (hydrog\u00e8ne produit par \u00e9lectrolyse, capture et s\u00e9questration du CO2, recyclage chimique) pour baisser ses \u00e9missions de plus de 30% (voir le plan de transformation de l'\u00e9conomie fran\u00e7aise : https://bit.ly/3WqangU ). Cela demande que le pays fasse des investissements de son c\u00f4t\u00e9 (production \u00e9lectrique d\u00e9carbon\u00e9e pour l'\u00e9lectrolyse, organisation de la collecte de mat\u00e9riaux \u00e0 recycler pour les industriels...) qui doivent \u00eatre au rendez vous dans les temps impartis. Cela demande aussi une mani\u00e8re d'obliger les investissements des industriels pour y parvenir. Pour le moment le plan d'ensemble qui le garantisse n'est pas sur la table.\n\n- La \"taxe carbone aux fronti\u00e8res\" n'est pas une taxe (en pratique les importateurs devront acheter des quotas et le prix de ces derniers n'est pas connu \u00e0 l'avance), et surtout ce m\u00e9canisme ne s'appliquera pas, dans un premier temps, \u00e0 l'essentiel des produits import\u00e9s (il s'appliquera en gros aux \"commodit\u00e9s\" : acier, mat\u00e9riaux chimiques de base, ciment). \n\n- la r\u00e9ponse \u00e0 la question \"que faites vous pour le climat\" liste quelques actions dispers\u00e9es, mais ne donne aucune vision d'ensemble (existe-t-elle ?).\n\n- sur le plastique les mesures essentielles sont du c\u00f4t\u00e9 amont (moins d'emballages, plus de de recyclage, etc) \n\n- la for\u00eat doit augmenter sa capacit\u00e9 comme puits tout en contribuant \u00e0 plus d'usages aval, et cela dans un contexte d'adversit\u00e9 climatique croissante. Organiser cela demande des comp\u00e9tences et un plan d'ensemble qui est pour le moment sont plut\u00f4t inexistants c\u00f4t\u00e9 Etat. Ca ne se r\u00e9sume pas \u00e0 \"planter des arbres\".\n\n- la r\u00e9ponse sur les ZFE \u00e9voque des \"solutions\" qui ne seront pas d\u00e9ploy\u00e9es \u00e0 l'\u00e9chelle - voire ne le seront jamais - au moment de l'installation de ces zones. \n\nPersonne ne travaillant seul, pas plus notre pr\u00e9sident que les autres, il est dommage qu'aucune r\u00e9ponse ne parle de la mise \u00e0 niveau de l'\u00e9quipe \u00e9lys\u00e9enne (https://bit.ly/2TcaAU9 ) sur ces sujets. Il me semble qu'il y a l\u00e0 une \"m\u00e8re de toutes les mesures\"." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7022523537882001408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7022523538767065088,urn:li:activity:7022523538767065088,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 74, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7022523538767065088,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7022523538767065088,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7022523538767065088", + "threadId": "activity:7022523538767065088", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022523538767065088", + "urn": "urn:li:activity:7022523538767065088", + "numComments": 112, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7022523538767065088", + "reactionTypeCounts": [ + { + "count": 1231, + "reactionType": "LIKE" + }, + { + "count": 112, + "reactionType": "INTEREST" + }, + { + "count": 60, + "reactionType": "MAYBE" + }, + { + "count": 38, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7022523538767065088", + "numLikes": 1455, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022523538767065088", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1463, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7022131882947407872", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7022131882947407872)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7022131882947407872)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_1973-et-2008-premi%C3%A8res-crises-%C3%A9cologiques-activity-7022131882947407872-AjAs?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7022131881886248960", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7022131882947407872", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7022131881886248960", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "R9Yi+7Vgb54Wk0YrolIpKA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7022131882947407872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8326292110930180784", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676272478778?e=1677240000&v=beta&t=AZRqA2grv193oYMxVGbEZGQfBmV7nVbgaQVw5iXKktE", + "expiresAt": 1677240000000, + "height": 725 + }, + { + "width": 883, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676272478778?e=1677240000&v=beta&t=7Dq-8kH7JcpEEKaB4wVZsdeOyDyC8mzVLApS2mpHVDw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676272478778?e=1677240000&v=beta&t=-IjAVqsWqa4iNOWh5pEdD61dh9R1HYKzWgxppQ60r3o", + "expiresAt": 1677240000000, + "height": 145 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676272478778?e=1677240000&v=beta&t=M_c4QuIERWmG6JVGnD8EAIzHItRVybRbfHK6d5Y11AQ", + "expiresAt": 1677240000000, + "height": 435 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEHE4OHtSnMnQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.90625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8326292110930180784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8326292110930180784)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 21 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: 1973 et 2008, premi\u00e8res crises \u00e9cologiques des \u00ab limites \u00e0 la croissance \u00bb ? by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/blog/petrole/2023/01/18/1973-et-2008-premieres-crises-ecologiques-des-limites-a-la-croissance/#_ftn1" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "1973 et 2008, premi\u00e8res crises \u00e9cologiques des \u00ab limites \u00e0 la croissance \u00bb ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7022131881886248960,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1077, + "length": 18, + "miniProfile": { + "firstName": "Matthieu", + "lastName": "Auzanneau", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAA2LO4UB7ks-me882mrEhMLuJ2ZBEpiaEbY", + "occupation": "Directeur du Shift Project", + "objectUrn": "urn:li:member:227228549", + "entityUrn": "urn:li:fs_miniProfile:ACoAAA2LO4UB7ks-me882mrEhMLuJ2ZBEpiaEbY", + "publicIdentifier": "matthieu-auzanneau-00512264", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1676289970483?e=1677240000&v=beta&t=myga6sAPvVyeGpm5LCDRWoTkGvnv6JopDw00RoS8VLg", + "expiresAt": 1677240000000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1676289970483?e=1677240000&v=beta&t=I2UeR-BHRgFXLNlkjKerVCtXsT4xJhqPL2-IBDilx0M", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1676289970483?e=1677240000&v=beta&t=NGjxeEOMQT2OBVSe2Iq8A5NgnQU_KwcGe2VmH_t1-3A", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1676289970483?e=1677240000&v=beta&t=c-bzWYW8YWjyis4tmdkXYzlqvfGIA24nSV_baGgrQoQ", + "expiresAt": 1677240000000, + "height": 100 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E35AQFMUHwrYWXYGw/profile-framedphoto-shrink_" + } + }, + "trackingId": "8JQmPq0KQw+wxiJNNp4eVg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2060, + "length": 14, + "miniProfile": { + "firstName": "Michel", + "lastName": "LEPETIT", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAPCu2sBs1ZQWNfIFizcuo9YmjS4ot4sg8A", + "occupation": "Pr\u00e9sident de Global Warning ; Vice-Pr\u00e9sident de The Shift Project", + "objectUrn": "urn:li:member:63093611", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAPCu2sBs1ZQWNfIFizcuo9YmjS4ot4sg8A", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1523477310682?e=1681948800&v=beta&t=ue8_LPuhRYqLcBHpJcVvAHohi2g7yB255issMI8WFWc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1523477310682?e=1681948800&v=beta&t=Nf1OLDZTwcTQonOrp4fD6E2Qj0J3DBw7d_B5qzeeY8o", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHnMKKx14ZNYw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "michel-lepetit", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1526301071435?e=1681948800&v=beta&t=v5P6-ITTB4DhRp7_YX2UEJKwU3kWrY-wKgAHgUHQP24", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1526301071435?e=1681948800&v=beta&t=dg22nwIhKRgV-MvnqXA-YzEeRF21yq4cJ9BfOayE4IE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1526301071435?e=1681948800&v=beta&t=Rq3d8xruf-AjJIxUGFu7BqWSyQztUW2r6v0qdSkqnuk", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1526301071435?e=1681948800&v=beta&t=wh6XyNIs4bp8DCawGp3mG3-isCp60iNvO_vs_2N54mk", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQHcVgn7JKsYxA/profile-displayphoto-shrink_" + } + }, + "trackingId": "NpaerVzhTxeLZGu9AM0b8w==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans le premier chapitre de \"Dormez tranquilles jusqu'en 2100\", j'avais fait remarquer que la \"crise des subprime\" avait suivi 3 ans de stagnation de la production de p\u00e9trole accompagn\u00e9e d'une envol\u00e9e de son prix, et que la d\u00e9c\u00e9l\u00e9ration du PIB am\u00e9ricain avait pr\u00e9c\u00e9d\u00e9 la crise financi\u00e8re et non l'avait suivie.\n\nJ'en avais tir\u00e9 l'hypoth\u00e8se que cette crise financi\u00e8re \u00e9tait un sympt\u00f4me - comme la crise de 1973 - d'une rupture de pente sur l'approvisionnement p\u00e9trolier occidental. En 1973, le monde industriel - essentiellement compos\u00e9 de l'OCDE \u00e0 une \u00e9poque o\u00f9 les BRICS ne pesaient vraiment pas lourd dans l'\u00e9conomie mondiale - avait vu la hausse de son approvisionnement p\u00e9trolier passer brutalement de 8% par an \u00e0 une stagnation puis une hausse beaucoup plus modeste (l\u00e9g\u00e8rement sup\u00e9rieure \u00e0 1% par an).\n\nCela avait mis un tr\u00e8s gros coup de frein \u00e0 la croissance \u00e9conomique, et d\u00e9clench\u00e9 le d\u00e9but d'un ph\u00e9nom\u00e8ne qui n'a fait que prendre de l'ampleur depuis : l'endettement.\n\nDans un article beaucoup plus fouill\u00e9 sur le plan \u00e9conomique que ce que j'avais \u00e9crit \u00e0 l'\u00e9poque, Matthieu Auzanneau (par ailleurs directeur du Shift Project dans le civil :) ) revient sur cette \"crise des subprime\" et documente pourquoi, selon lui, elle est doublement d\u00e9termin\u00e9e par un probl\u00e8me d'approvisionnement p\u00e9trolier. \n\nLe premier facteur d\u00e9clencheur est le choc de 1973, qui a ralenti la croissance et engendr\u00e9 une augmentation constante des dettes dans les \u00e9conomies occidentales apr\u00e8s 1973. Ce que soutient Matthieu Auzanneau - et beaucoup d'autres sp\u00e9cialistes du p\u00e9trole avec lui - est que le choc de 1973 est une cons\u00e9quence directe du pic p\u00e9trolier conventionnel am\u00e9ricain de 1970, \u00e0 une \u00e9poque o\u00f9 les USA produisaient un quart de l'or noir mondial (\u00e0 la m\u00eame \u00e9poque l'URSS c'est 15% et l'Arabie Saoudite c'est 8%). \n\nLe deuxi\u00e8me facteur d\u00e9clencheur est le pic p\u00e9trolier conventionnel mondial en 2008. C'est sur cet \u00e9pisode qu'il s'attarde dans son analyse, qui est convergente avec celle d'autres sp\u00e9cialistes du lien entre p\u00e9trole et \u00e9conomie, comme par exemple Michel LEPETIT (chercheur associ\u00e9 au Laboratoire interdisciplinaire des \u00e9nergies de demain - https://bit.ly/3XLS5Yk ).\n\nMatthieu Auzanneau passe par une observation de l'\u00e9volution de l'inflation, du taux directeur de la banque centrale, ou encore du d\u00e9ficit commercial, qu'il relie de mani\u00e8re argument\u00e9e \u00e0 l'\u00e9volution de la production de p\u00e9trole. \n\nDans un travail fouill\u00e9 du Shift Project publi\u00e9 il y a un an (https://bit.ly/3R8e1uV ), nous avions soulign\u00e9 que les 16 principaux producteurs de p\u00e9trole de la plan\u00e8te \u00e9taient probablement pass\u00e9s par leur pic de production en 2018. \n\nSi les m\u00eames causes produisent les m\u00eames effets \u00e0 l'avenir, cela signifie que le paysage \u00e9conomique et financier de demain pourrait bien \u00eatre plus proche de la collection de chocs et de crises qu'un \"retour \u00e0 la normale\", et ce quelles que soient nos aspirations sur les retraites..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7022131881886248960,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7022131882947407872,urn:li:activity:7022131882947407872,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 28, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7022131882947407872,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7022131882947407872,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7022131882947407872", + "threadId": "activity:7022131882947407872", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022131882947407872", + "urn": "urn:li:activity:7022131882947407872", + "numComments": 37, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7022131882947407872", + "reactionTypeCounts": [ + { + "count": 455, + "reactionType": "LIKE" + }, + { + "count": 99, + "reactionType": "INTEREST" + }, + { + "count": 74, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7022131882947407872", + "numLikes": 637, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7022131882947407872", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 637, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7021901658376806400", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7021901658376806400)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7021901658376806400)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-novembre-dernier-la-fondation-descartes-activity-7021901658376806400-jFOD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7021901657420505089", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7021901658376806400", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7021901657420505089", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "X4Si+5pel+nIJthaBaEOhw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7021901658376806400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEBzmKbiVbR_A", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEBzmKbiVbR_A", + "artifacts": [ + { + "width": 914, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1674151813718?e=1679529600&v=beta&t=Xn--UUNyck6BIcyAAm0GeBl3RVSNzsCST2dTyLg1pY8", + "expiresAt": 1679529600000, + "height": 1526 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1674151814620?e=1679529600&v=beta&t=EAu4SK6om7DCLUCnq3PnIcm0V0PPTu5hDK_fpV2X9O0", + "expiresAt": 1679529600000, + "height": 33 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280/0/1674151814620?e=1679529600&v=beta&t=4H0uH9YP8w_w0RINnGVOTBN1BL9oZwxpV6Mm4rHFZT0", + "expiresAt": 1679529600000, + "height": 1526 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1674151814620?e=1679529600&v=beta&t=LyPZZP_uT3TfYvswNjUCIa9RmotU0HDYId_nGTBSRVQ", + "expiresAt": 1679529600000, + "height": 801 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1674151814620?e=1679529600&v=beta&t=HvHvuaU5Em4-lmXmjcRfBqnBfzZssdADnLJiucmrvjk", + "expiresAt": 1679529600000, + "height": 267 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1674151814620?e=1679529600&v=beta&t=xqDKGvyYkrh3WQNC8SoYf6VTnWd_wRfIlwDL64VsOxw", + "expiresAt": 1679529600000, + "height": 1336 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEBzmKbiVbR_A/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "timeline" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7021901657420505089,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En Novembre dernier, la Fondation Descartes a publi\u00e9 une \u00e9tude sur la mani\u00e8re dont les fran\u00e7ais(es) s'informent sur le changement climatique : https://bit.ly/3HqMQZ3 \n\nOn y apprend que le premier canal d'information sur la question est constitu\u00e9 des media g\u00e9n\u00e9ralistes, puis on va trouver l'entourage (proches et amis) et les r\u00e9seaux sociaux. \n\nDans notre pays (et si les r\u00e9ponses ont \u00e9t\u00e9 honn\u00eates :) ) ce ne sont donc pas ces r\u00e9seaux qui constituent le premier vecteur d'information.\n\nAlors qu'un autre graphique (en commentaire) montre que la plus grande cote de confiance est accord\u00e9e aux scientifiques qui travaillent sur la question, il est dommage de ne pas avoir mis dans la liste des r\u00e9ponses les sites des institutions scientifiques.\n\nMais l\u00e0 o\u00f9 ca devient farce, c'est que les media sont par ailleurs, juste avant les r\u00e9seaux sociaux, les modes d'informations que la population consid\u00e8re comme les moins fiables ! Seulement 16% de la population d\u00e9clare en effet leur faire un peu ou beaucoup confiance de mani\u00e8re g\u00e9n\u00e9rale.\n\nCe grand \u00e9cart entre habitudes (puisque nous continuons \u00e0 utiliser les media) et confiance n'est pas une nouveaut\u00e9. La bonne question est de savoir pourquoi c'est une constante que la population aille s'informer essentiellement aupr\u00e8s d'entit\u00e9s \u00e0 qui elle n'accorde que peu de cr\u00e9dit, alors que d\u00e9sormais les organismes \u00e9metteurs d'information le font en direct via leurs sites internet.\n\nTentons une explication : le media vient \u00e0 vous, alors que d'utiliser internet demande d'aller \u00e0 l'information (et donc de savoir naviguer dans un univers plus complexe). En fait, ce que dit probablement cet \u00e9cart, c'est que la population souhaite des interm\u00e9diaires qui feront le tri et la vulgarisation pour elle, mais n'est pas satisfaite de la mani\u00e8re dont les personnes qui assurent aujourd'hui cette fonction s'acquittent de la t\u00e2che l'essentiel du temps. \n\nD'o\u00f9 peut venir ce d\u00e9faut de confiance contre des media qui sont par ailleurs utilis\u00e9s parce que c'est \"normal\" d'\u00e9couter l'information qui vient \u00e0 vous ?\n\nTentons \u00e0 nouveau une hypoth\u00e8se : nous avons tendance \u00e0 caler notre niveau de confiance sur la plus mauvaise surprise v\u00e9cue et non sur la moyenne de ce qui se passe : il suffit donc d'une fois o\u00f9 nous avons pris un media en flagrant d\u00e9lit d'incoh\u00e9rence, ou de m\u00e9connaissance d'un sujet que nous connaissons bien, et ensuite nous deviendrons m\u00e9fiants de fa\u00e7on habituelle.\n\nL'antidote \u00e0 cela est donc qu'un media ne d\u00e9roge jamais \u00e0 quelques r\u00e8gles simples :\n- ne pas traiter une information quand il n'y a pas le temps pour cela\n- bien comprendre qui est l\u00e9gitime pour s'exprimer sur quoi (\u00e9vite les incoh\u00e9rences)\n- \u00eatre transparent sur ce que l'on sait et ce que l'on ne sait pas\n- ne pas confondre les faits et les opinions (y compris la sienne), \n- ne pas confondre la ligne \u00e9ditoriale avec la r\u00e9gie publicitaire.\n\nUne d\u00e9mocratie qui fonctionne bien a besoin de media qui fonctionnent bien. Les houspiller pour les faire progresser est donc utile :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7021901657420505089,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7021901658376806400,urn:li:activity:7021901658376806400,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 46, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7021901658376806400,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7021901658376806400,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7021901658376806400", + "threadId": "activity:7021901658376806400", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021901658376806400", + "urn": "urn:li:activity:7021901658376806400", + "numComments": 76, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7021901658376806400", + "reactionTypeCounts": [ + { + "count": 624, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 61, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7021901658376806400", + "numLikes": 773, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021901658376806400", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 773, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 Edited \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7021435585357586432", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7021435585357586432)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7021435585357586432)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-charbon-de-l%C3%BCtzerath-met-lallemagne-face-activity-7021435585357586432-IoQI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7021435584514523136", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7021435585357586432", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7021435584514523136", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "DiCDXm51MUQw8ysq/y9h5g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7021435585357586432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7497948053080086853", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676500910822?e=1677240000&v=beta&t=ovxYBKCUXocaVCTB7ImI60WKOxC85-TVBtS_EJaOKV4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676500910822?e=1677240000&v=beta&t=BRa3iBhwzujzRQmr9NXxpaRvJ6w0hxCvRo1tikC1cTk", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676500910822?e=1677240000&v=beta&t=dTCJFeVUZ4GevrQk3nO4ZgmtjMhrmnFgTxpFc3YoSTQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676500910822?e=1677240000&v=beta&t=dX-jtRUPX5fAKz_lxiiprWdW2-4aHc6ZB8BvQ-gDHOU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFOl7YXRszTzg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7497948053080086853)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7497948053080086853)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le charbon de L\u00fctzerath met l'Allemagne face \u00e0 ses contradictions by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/le-charbon-de-lutzerath-met-lallemagne-face-a-ses-contradictions-1897595" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le charbon de L\u00fctzerath met l'Allemagne face \u00e0 ses contradictions" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7021435584514523136,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Lorsque l'Allemagne a d\u00e9cid\u00e9 - et mis en application - sa sortie du nucl\u00e9aire (que l'on doit \u00e0 Schroeder - avant Fukushima - et non \u00e0 Merkel, contrairement \u00e0 ce qui est souvent dit ou \u00e9crit), d'aucuns s'\u00e9taient \u00e9mus que cela pourrait conduire \u00e0 recourir plus longtemps au charbon, conduisant en cela \u00e0 des \u00e9missions de CO2 suppl\u00e9mentaires - outre d'autres petits \u00e0-c\u00f4t\u00e9 de cette \u00e9nergie : particules fines (des milliers de morts pr\u00e9matur\u00e9s en Europe chaque ann\u00e9e), NOx, pollution des eaux de surface, montagnes de cendres (des milliers de tonnes par jour pour les plus grosses centrales) qui contiennent des m\u00e9taux lourds et des substances toxiques (arsenic, fluor...), et \u00e9videmment destruction totale des \u00e9cosyst\u00e8mes sur les dizaines de km2 d'emprise de l'excavation de lignite.\n\nA l'\u00e9poque d\u00e9j\u00e0, il \u00e9tait possible d'observer depuis le ciel les vastes \u00e9tendues (plusieurs kilom\u00e8tres de c\u00f4t\u00e9) des mines \u00e0 ciel ouvert de lignite, comme celle de Garzweiler, pr\u00e8s de Cologne : https://bit.ly/3Xlzfra (il y en a d'autres pas loin, dont une encore plus grande \u00e0 Hambach : https://bit.ly/3QNlhMo ), dont la cr\u00e9ation a conduit \u00e0 l'\u00e9vacuation d\u00e9finitive d'un peu moins de 100.000 personnes, avec destruction volontaire de leur habitat.\n\nMais tout cela n'aurait pas du arriver avec la substitution du charbon par le gaz, diront d'autres. A cela on peut r\u00e9pondre 2 choses : \n\n- cela serait encore moins arriv\u00e9 si l'Allemagne avait conserv\u00e9 son nucl\u00e9aire. Si on regarde l'\u00e9volution de la puissance pilotable chez nos voisins, elle est rest\u00e9e \u00e0 peu pr\u00e8s constante depuis 2002 : https://bit.ly/3w9Y4KH. Il y avait 22,4 GW de nucl\u00e9aire \u00e0 cette \u00e9poque et 20 GW de lignite. Aujourd'hui il reste 4 GW de nucl\u00e9aire : \u00e0 la place il pourrait ne rester que 2 GW de lignite... et l'agrandissement de L\u00fctzerath ne serait pas n\u00e9cessaire.\n\n- la d\u00e9pendance aux russes \u00e9tait un pari, et l'histoire nous a quand m\u00eame enseign\u00e9 que nos relations avec notre grand voisin n'ont pas toujours \u00e9t\u00e9 tranquilles. Ne pas envisager que ca puisse tourner vinaigre est quand m\u00eame gentiment impr\u00e9voyant.\n\nEn Europe, quand un \u00e9tat n'est pas assez disciplin\u00e9 sur le plan de l'\u00e9quilibre des comptes publics, il est th\u00e9oriquement susceptible de se voir infliger une amende par le Conseil, allant jusqu'\u00e0 0,5% du PIB (soit environ 10 milliards pour la France). Plus g\u00e9n\u00e9ralement, lorsque l'on entend \u00eatre r\u00e9ellement s\u00e9rieux sur le respect d'une obligation, il y a des sanctions en cas de non respect qui sont d'autant plus s\u00e9v\u00e8res que l'obligation \u00e0 respecter est importante.\n\nSi l'Europe \u00e9tait r\u00e9ellement s\u00e9rieuse sur le CO2, il y aurait un syst\u00e8me de sanctions pr\u00e9vu pour non respect d'un plafond d'\u00e9missions de CO2 par un pays donn\u00e9. Et cette sanction pourrait \u00eatre major\u00e9e lorsqu'un pays a fait l'exact inverse de ce qu'il pouvait physiquement faire pour respecter l'obligation." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7021435584514523136,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7021435585357586432,urn:li:activity:7021435585357586432,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 138, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7021435585357586432,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7021435585357586432,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7021435585357586432", + "threadId": "activity:7021435585357586432", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021435585357586432", + "urn": "urn:li:activity:7021435585357586432", + "numComments": 270, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7021435585357586432", + "reactionTypeCounts": [ + { + "count": 4064, + "reactionType": "LIKE" + }, + { + "count": 389, + "reactionType": "INTEREST" + }, + { + "count": 232, + "reactionType": "MAYBE" + }, + { + "count": 179, + "reactionType": "PRAISE" + }, + { + "count": 38, + "reactionType": "APPRECIATION" + }, + { + "count": 26, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7021435585357586432", + "numLikes": 4928, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021435585357586432", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4937, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7021023431466864640", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7021023431466864640)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7021023431466864640)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nappes-deau-souterraine-au-1er-janvier-2023-activity-7021023431466864640-MXp_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7021023430669955073", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7021023431466864640", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7021023430669955073", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "5ub5fxlsJdWm9ehEZGZ5CQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7021023431466864640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8292823613674768012", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676468818461?e=1677240000&v=beta&t=03Qvbhkuvzt7Bn2t4VALKXdBV_ISKCBFLRXGumDU5tY", + "expiresAt": 1677240000000, + "height": 565 + }, + { + "width": 1132, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676468818461?e=1677240000&v=beta&t=yk5yCKeP8ZeRuYw0GCfkISF54XdKdw0xQk9kgIW-0Mk", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676468818461?e=1677240000&v=beta&t=Qlukaqg5zmF7GSCyulmwgB4CPCBZ1nszKHTWM7f3nbI", + "expiresAt": 1677240000000, + "height": 113 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676468818461?e=1677240000&v=beta&t=NL_xgG2sYgW6hbZzu03IhJlwL03Zs7iEyWFwZKDMdig", + "expiresAt": 1677240000000, + "height": 339 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF29HS5kKpu2g/articleshare-shrink_" + }, + "displayAspectRatio": 0.70625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8292823613674768012)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8292823613674768012)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "brgm.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nappes d'eau souterraine au 1er janvier 2023 | BRGM by brgm.fr", + "actionTarget": "https://www.brgm.fr/fr/actualite/communique-presse/nappes-eau-souterraine-au-1er-janvier-2023" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nappes d'eau souterraine au 1er janvier 2023 | BRGM" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7021023430669955073,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il pleut, donc il fait beau. Apr\u00e8s 2 mois d'automne (novembre et d\u00e9cembre), les trois quarts des nappes phr\u00e9atiques fran\u00e7aises ont encore tr\u00e8s soif. En effet, m\u00eame s'il a plu apr\u00e8s la fin octobre, il y a eu un tel d\u00e9ficit accumul\u00e9 avant que la situation d'ensemble reste d\u00e9ficitaire sur une large partie du pays, parfois tr\u00e8s fortement. \n\nAu surplus, fin octobre la v\u00e9g\u00e9tation \u00e9tait encore active \u00e0 cause d'un temps tr\u00e8s chaud, et les premi\u00e8res pluies de novembre ont donc \u00e9t\u00e9 alimenter les plantes et non les nappes. Il a aussi fallu humidifier des sols tr\u00e8s secs, ce qui a aussi utilis\u00e9 une partie de l'eau tomb\u00e9e qui n'est pas all\u00e9e jusqu'aux nappes.\n\nEnfin, lorsque les \u00e9pisodes de pr\u00e9cipitations ont \u00e9t\u00e9 intenses, une fraction a ruissel\u00e9 directement vers les rivi\u00e8res puis la mer, parce que l'infiltration dans un sol tr\u00e8s sec est plus difficile que dans un sol d\u00e9j\u00e0 un peu humidifi\u00e9. \n\nGlobalement, ce n'est pas maintenant que cette faiblesse du niveau des nappes est g\u00eanante. La v\u00e9g\u00e9tation est en dormance, l'agriculture ne pr\u00e9l\u00e8ve pas, et il reste de quoi alimenter les r\u00e9seaux d'eau potable le cas \u00e9ch\u00e9ant (https://lnkd.in/gG9eZM8 ), surtout que ce n'est pas non plus l'\u00e9poque de l'arrosage des pelouses et du remplissage des piscines.\n\nC'est au retour de la saison chaude que cela risque de poser probl\u00e8me. Si d'ici l\u00e0 la recharge n'a pas \u00e9t\u00e9 bonne (et donc qu'il n'y a pas eu suffisamment de ces d\u00e9pressions qui nous am\u00e8nent pluie et parfois vent, ce que nous appelons aujourd'hui \"mauvais temps\"), cela signifie que l'on abordera l'\u00e9t\u00e9 prochain - et ses possibles vagues de chaleur, puisque chaque \u00e9t\u00e9 offrira h\u00e9las l'occasion de battre le record pr\u00e9c\u00e9dent - avec moins d'eau pour l'agriculture, et pour les arbres quand ces derniers ont des racines qui vont jusqu'\u00e0 la nappe.\n\nL'\u00e9volution future d'une nappe est typiquement un processus qui a du mal \u00e0 \u00eatre mod\u00e9lis\u00e9 dans le cadre d'un climat qui se r\u00e9chauffe. Il est possible de faire des projections sur les pr\u00e9cipitations globales (sur une large zone) de l'ann\u00e9e, voire sur l'augmentation des \u00e9pisodes pluvieux intenses (moins bons pour l'infiltration dans le sol, \u00e0 pr\u00e9cipitations \u00e9gales, que des \u00e9pisodes continus), mais ensuite chaque g\u00e9ologie du sol est particuli\u00e8re, adjectif qui s'applique aussi aux usages locaux (qui d\u00e9pendent beaucoup des cultures et de la nature de la v\u00e9g\u00e9tation).\n\nPour autant, les tendances sont claires : il ne faudra pas venir se demander \"qui aurait pu pr\u00e9voir ?\". Il faut donc essayer au maximum d'imaginer ce que l'avenir peut nous r\u00e9server, pour limiter au mieux le risque de manquer de cette pr\u00e9cieuse ressource qu'est l'eau. Actuellement, faisons nous vraiment le maximum en ce sens ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7021023430669955073,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7021023431466864640,urn:li:activity:7021023431466864640,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 143, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7021023431466864640,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7021023431466864640,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7021023431466864640", + "threadId": "activity:7021023431466864640", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021023431466864640", + "urn": "urn:li:activity:7021023431466864640", + "numComments": 243, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7021023431466864640", + "reactionTypeCounts": [ + { + "count": 3850, + "reactionType": "LIKE" + }, + { + "count": 644, + "reactionType": "INTEREST" + }, + { + "count": 330, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "APPRECIATION" + }, + { + "count": 29, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7021023431466864640", + "numLikes": 4900, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7021023431466864640", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4900, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7020332265222103041", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7020332265222103041)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7020332265222103041)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pourquoi-le-groupe-sud-ouest-sengage-face-activity-7020332265222103041-2RL5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7020332264400019456", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7020332265222103041", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7020332264400019456", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "zMyiGEL1x0pCHHWNgGhXAw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7020332265222103041,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7821471158464017771", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676296478581?e=1677240000&v=beta&t=i6maEpqNKW4utXPWggRacVOKTFO2PEZEd1EW37kQRd8", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676296478581?e=1677240000&v=beta&t=Vm46meJeSt1avBzC8cKY_dWHwg00PSlO8u7hwJhnVJg", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676296478581?e=1677240000&v=beta&t=_I_BiOg7KxA1PF1ovHqhkT7Owr-cB-2cc9Jf4fu1MBg", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676296478581?e=1677240000&v=beta&t=pXFFWqlE28w-qoNrdgfUy8TFphAaG9RiLok9-Ygja20", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEHZkdt_k19zQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7821471158464017771)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7821471158464017771)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "sudouest.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pourquoi le Groupe Sud Ouest s\u2019engage face aux enjeux climatiques et environnementaux by sudouest.fr", + "actionTarget": "https://www.sudouest.fr/declic-pourquoi-le-groupe-sud-ouest-s-engage-face-aux-enjeux-climatiques-et-environnementaux-13648961.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pourquoi le Groupe Sud Ouest s\u2019engage face aux enjeux climatiques et environnementaux" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7020332264400019456,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s The Guardian, qui est probablement le \"grand\" media europ\u00e9en qui a ouvert la voie, en proposant une rubrique \"crise climatique\" (https://lnkd.in/e8q7-6rG ) accessible d\u00e8s la homepage, et apr\u00e8s Radio France qui a pris l'engagement de former l'ensemble de sa r\u00e9daction aux enjeux climatiques, c'est au tour du groupe Sud-Ouest de publier une charte dans laquelle il affirme \"Les \u00e9diteurs du Groupe Sud Ouest s\u2019engagent \u00e0 inscrire les enjeux climatiques et environnementaux au c\u0153ur de leur production \u00e9ditoriale, en organisant des espaces de prise de parole et d\u2019\u00e9change constructifs, en documentant les enjeux locaux et en mettant en relief les connaissances scientifiques, avec rigueur, objectivit\u00e9 et ind\u00e9pendance\".\n\nSuivent 15 engagements, qui incluent la mise en place d'un conseil scientifique, la formation de la r\u00e9daction, la mise en place d'un bilan carbone et d'actions de sobri\u00e9t\u00e9 (y compris num\u00e9rique), l'origine du papier, ou encore le contenu publicitaire.\n\nEn lisant attentivement cette charte, on comprend \u00e9videmment que le Diable sera dans les d\u00e9tails, et en particulier dans l'ambition effective associ\u00e9e \u00e0 chacune des actions. On peut faire un bilan carbone et agir ensuite pour faire baisser ses \u00e9missions de 1% par an, de 5% par an, ou... les faire cro\u00eetre \"moins que plus\", en visant juste une baisse par exemplaire imprim\u00e9 ou diffus\u00e9 sur le serveur, tout en ayant un plan d'augmentation de la diffusion !\n\nSur la publicit\u00e9, l\u00e0 aussi toutes les nuances de gris sont possibles : Sud Ouest dit vouloir proposer des espaces gratuits aux associations, mais on peut imaginer des syst\u00e8mes plus dissuasifs pour la promotion de produits ou services lorsqu'ils vont avec des pressions plus importantes sur l'environnement. \n\nAvoir un encart pour promouvoir l'avion, une voiture, un mode de commerce ou des produits alimentaires \"\u00e9lev\u00e9s en carbone\" couterait donc plus cher que la promotion du march\u00e9 du coin, des v\u00e9los ou des livres.\n\nPour la formation, l\u00e0 aussi il y a un monde entre la demi-heure que le gouvernement a royalement accord\u00e9e au climat et les 150 heures minimum qui sont pr\u00e9conis\u00e9es pour les \u00e9tudiants du sup\u00e9rieur par The Shift Project. \n\nIl faut donc voir cette charte comme un premier pas \u00e9minemment bienvenu. Ce qu'il en adviendra ensuite dans les faits d\u00e9pendra essentiellement des personnes qui vont la mettre en oeuvre (\u00e0 commencer par le patron !), de l'accueil qui lui sera fait en interne et de la pression que mettront les salari\u00e9s, et \u00e9videmment de la r\u00e9ponse du lectorat, puisqu'un m\u00e9dia priv\u00e9 reste une entreprise commerciale qui a du mal \u00e0 agir si cela fait fuir les gens qui consomment l'information.\n\nPour favoriser le fait que toutes les \"parties prenantes\" soutiennent l'\u00e9volution, il sera utile d'avoir un syst\u00e8me d'indicateurs ad\u00e9quats et de r\u00e9guli\u00e8rement en rendre compte. Ca ne devrait pas faire peur \u00e0 des journalistes : c'est de l'information !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7020332264400019456,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7020332265222103041,urn:li:activity:7020332265222103041,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 49, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7020332265222103041,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7020332265222103041,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7020332265222103041", + "threadId": "activity:7020332265222103041", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020332265222103041", + "urn": "urn:li:activity:7020332265222103041", + "numComments": 82, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7020332265222103041", + "reactionTypeCounts": [ + { + "count": 1138, + "reactionType": "LIKE" + }, + { + "count": 73, + "reactionType": "INTEREST" + }, + { + "count": 63, + "reactionType": "MAYBE" + }, + { + "count": 38, + "reactionType": "PRAISE" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7020332265222103041", + "numLikes": 1339, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020332265222103041", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1339, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 Edited \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7020064089167036416", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7020064089167036416)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7020064089167036416)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_transports-jean-marc-jancovici-explique-activity-7020064089167036416-fg6a?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7020064088613351424", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7020064089167036416", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7020064088613351424", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "JOn7PXo52mARiMfw8VXjhg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7020064089167036416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7293133745184405373", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676153159732?e=1677240000&v=beta&t=MG8aQJJda8qiK7a3AmNFgnVmEIcosNBotIDLKff-7HA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676153159732?e=1677240000&v=beta&t=1eLnULUIfs6H8HgypCdA5nKjoYn5ZUolwxPufmVeM0c", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676153159732?e=1677240000&v=beta&t=OBtsdWdf6H9v8K69xA61nic8wKTbRL_YKPhJ3vRdcJ8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676153159732?e=1677240000&v=beta&t=oXRQR7DYUbG81Y8XH79mdA4-ElUOspRV6wPoaFGtMuA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHdKmBnBNhZ2w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7293133745184405373)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7293133745184405373)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Transports : Jean-Marc Jancovici explique l'importance de se mettre au v\u00e9lo by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900225118-transports-jean-marc-jancovici-explique-l-importance-de-se-mettre-au-velo" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Transports : Jean-Marc Jancovici explique l'importance de se mettre au v\u00e9lo" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7020064088613351424,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tou(te)s en selle ! Apparu \u00e0 la fin du 19\u00e8 si\u00e8cle, le v\u00e9lo a rapidement vu son emploi augmenter, et en 1925 il offrait en moyenne \u00e0 un fran\u00e7ais autant de km parcourus par jour que l'automobile (alors nettement moins r\u00e9pandue qu'actuellement, c'est clair !).\n\nMais depuis 1940 son usage plafonne. Aujourd'hui, un habitant du pays fait en moyenne plus de km en avion par an qu'en v\u00e9lo ! Pourtant d\u00e9velopper son usage procure de nombreux b\u00e9n\u00e9fices :\n- moins de CO2\n- moins de pollution\n- moins d'argent \u00e0 d\u00e9penser\n- depuis qu'il y a une assistance \u00e9lectrique, apte \u00e0 transporter enfants et courses, et aussi \u00e0 monter les c\u00f4tes, sans trop souffrir\n- en univers \"congestionn\u00e9\" (ville ou p\u00e9riurbain) pas beaucoup moins rapide qu'une voiture\n- meilleur pour la sant\u00e9\n\nVu comme cela, on se demande vraiment pourquoi ce mode de transport ne repr\u00e9sente pas l'essentiel des km parcourus pour la mobilit\u00e9 dite du quotidien (travail, courses, \u00e9cole etc), qui repr\u00e9sente 2/3 des km faits annuellement en voiture, g\u00e9n\u00e9ralement tr\u00e8s peu remplie (1,1 personne en taux moyen). O\u00f9 est le probl\u00e8me alors ?\n\nLe premier d'entre eux est g\u00e9n\u00e9ralement l'ins\u00e9curit\u00e9 potentiellement ressentie par le ou la cycliste qui chemine au milieu de \"beaucoup plus lourd que son v\u00e9lo\". La cl\u00e9 du d\u00e9veloppement du v\u00e9lo s'appelle donc des pistes cyclables. Et des pistes exclusivement cyclables ! \n\nLes itin\u00e9raires mixtes (pi\u00e9tons et v\u00e9los) n'ont pas plus de pertinence que si on autorisait les pi\u00e9tons \u00e0 descendre sur la chauss\u00e9e dans les rues o\u00f9 la vitesse est limit\u00e9e \u00e0 30. Comme je l'\u00e9voque dans cette chronique, il n'y a rien de commun entre un(e) cycliste allant \u00e0 son travail \u00e0 25 ou 30 km/h et un pi\u00e9ton qui d\u00e9ambule avec enfants ou chien, ou en regardant son t\u00e9l\u00e9phone...\n\nLe deuxi\u00e8me d'entre eux est la possibilit\u00e9 de garer son v\u00e9lo \u00e0 destination (qui peut \u00eatre le lieu d'acc\u00e8s \u00e0 un autre moyen de transport) ou chez soi sans se le faire voler. \n\nLe 3\u00e8 probl\u00e8me est que, l'automobile coutant plus cher, les constructeurs de voiture gagnent beaucoup d'argent que ceux de v\u00e9los, et donc emploient plus de monde. Cela en fait des interlocuteurs plus \u00e9cout\u00e9s des pouvoirs publics... qui tendent \u00e0 maintenir le syst\u00e8me.\n\nOn pourrait ajouter un 4\u00e8 \u00e9l\u00e9ment : la voiture est un objet de statut social. Il faudrait qu'une jolie paire de mollets le devienne un peu plus !\n\nLa voirie n'est pas pay\u00e9e par les automobilistes mais par les contribuables. Un cycliste l'est autant qu'un conducteur d'un engin d'une tonne ou plus. A l'heure de l'imp\u00e9rieuse d\u00e9carbonation, il serait tout \u00e0 fait justifi\u00e9 que la collectivit\u00e9 - qui fonctionne avec les imp\u00f4ts - assure aux utilisateurs de la petite reine autant de facilit\u00e9s \u00e0 se d\u00e9placer qu'aux utilisateurs d'engins motoris\u00e9s d'une tonne, \u00e9lectriques ou pas. \n\nIl n'y a plus qu'\u00e0 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7020064088613351424,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7020064089167036416,urn:li:activity:7020064089167036416,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 316, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7020064089167036416,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7020064089167036416,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7020064089167036416", + "threadId": "activity:7020064089167036416", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020064089167036416", + "urn": "urn:li:activity:7020064089167036416", + "numComments": 727, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7020064089167036416", + "reactionTypeCounts": [ + { + "count": 5511, + "reactionType": "LIKE" + }, + { + "count": 377, + "reactionType": "PRAISE" + }, + { + "count": 333, + "reactionType": "EMPATHY" + }, + { + "count": 118, + "reactionType": "APPRECIATION" + }, + { + "count": 74, + "reactionType": "INTEREST" + }, + { + "count": 45, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7020064089167036416", + "numLikes": 6458, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7020064089167036416", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6466, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7019787230227390464", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7019787230227390464)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7019787230227390464)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_projet-de-loi-%C3%A9nergies-renouvelables-la-activity-7019787230227390464-05ON?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7019787229342396417", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7019787230227390464", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7019787229342396417", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "WNOrTFClOsjR208F1dI0lA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7019787230227390464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7324151095709206240", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 707, + "fileIdentifyingUrlPathSegment": "800/0/1676184990921?e=1677240000&v=beta&t=frqYJQGPT6hXYyzFof0xc1ayH0lEYAOdwPRMhZN8nvQ", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 707, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676184990921?e=1677240000&v=beta&t=F6O1kuPey80t7rAKtn74-AAkgWWQAvwzp_1QachHcx0", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676184990921?e=1677240000&v=beta&t=tPr9MJUMyNBASga9QM5QeGKVZMu7yXN_lzpcxeqRBZM", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676184990921?e=1677240000&v=beta&t=Q-stBGHJ64XWVjcWZ37x0dOz0vFmGY81CoxuxxD1Rrc", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH9Ke5BNHZWUw/articleshare-shrink_" + }, + "displayAspectRatio": 0.6661951909476662 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7324151095709206240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7324151095709206240)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "novethic.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Projet de loi \u00e9nergies renouvelables : la chaleur est la grande oubli\u00e9e by novethic.fr", + "actionTarget": "https://www.novethic.fr/actualite/energie/energies-renouvelables/isr-rse/projet-de-loi-energies-renouvelables-la-chaleur-est-la-grande-oubliee-151282.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Projet de loi \u00e9nergies renouvelables : la chaleur est la grande oubli\u00e9e" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7019787229342396417,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le projet de loi sur les \u00e9nergies renouvelables se concentre essentiellement sur l'\u00e9lectricit\u00e9. De fait, dans l'expos\u00e9 des motifs du projet initialement d\u00e9pos\u00e9 au S\u00e9nat (253 pages ! https://lnkd.in/eq2amZEk ), il est surtout question d'\u00e9olien et de photovolta\u00efque, et un peu de m\u00e9thanisation. \n\nPourtant, dans notre pays, 45% de l'\u00e9nergie sert \u00e0 avoir de la chaleur, et aujourd'hui cette derni\u00e8re est essentiellement fossile. Dans ces usages on va trouver :\n\n- le chauffage des logements et des b\u00e2timents dits tertiaires (en gros tout ce qui n'est ni logements, ni b\u00e2timents industriels : bureaux, commerces, h\u00f4pitaux, \u00e9coles, piscines, casernes, mus\u00e9es...)\n\n- la production d'eau chaude sanitaire dans ces m\u00eames b\u00e2timents, et plus marginalement la cuisson\n\n- la chaleur industrielle, importante dans les mat\u00e9riaux de base (m\u00e9taux, ciment, chimie de base, papier), dans la chimie de sp\u00e9cialit\u00e9 et dans l'agroalimentaire \n\nC'est le gaz qui est la premi\u00e8re source de chaleur en France (dans l'autre sens 55% du gaz sert au chauffage). Par les temps qui courent, il n'est peut-\u00eatre pas idiot de se pencher sur la mani\u00e8re de le remplacer par de la chaleur renouvelable. \n\nFont partie de cette cat\u00e9gorie la biomasse solide (bois buche et granul\u00e9s) ou gazeuse (biogaz), la g\u00e9othermie profonde (on extrait la chaleur du sous-sol pour chauffer des b\u00e2timents), les pompes \u00e0 chaleur (puisant les calories dans l'air ou dans le sol, et qui peuvent aussi servir pour des usages industriels \u00e0 haute temp\u00e9rature), et le solaire thermique (pour l'eau chaude sanitaire ou le chauffage avec un plancher chauffant).\n\nCes solutions sont matures, elles substituent directement du gaz ou du fioul l'essentiel du temps (et quand elles substituent de l'\u00e9lectricit\u00e9 ca sera toujours ca de gagn\u00e9 pour la mobilit\u00e9 \u00e9lectrique ou l'\u00e9lectrification d'usages industriels), ne posent pas de probl\u00e8me particulier d'approvisionnement en m\u00e9taux, et elles sont \u00e9conomiquement \u00e9quivalentes aux alternatives fossiles.\n\nQuestion biodiversit\u00e9, le tableau est plus nuanc\u00e9 : pour les pompes \u00e0 chaleur, le solaire thermique et la g\u00e9othermie, les atteintes sont faibles. Ces dispositifs occupent peu d'espace en plus du b\u00e2ti existant. C'est plus d\u00e9licat pour la biomasse : il faut \u00e9videmment \u00e9viter la d\u00e9forestation, ou la perte de biodiversit\u00e9 en rempla\u00e7ant les for\u00eats diversifi\u00e9es par des plantations monosp\u00e9cifiques d'esp\u00e8ces \u00e0 croissance rapide.\n\nMais globalement il y a beaucoup de potentiel et peu d'effets pervers \u00e0 leur d\u00e9ploiement. Pourtant, la priorit\u00e9 a \u00e9t\u00e9 surtout donn\u00e9e aux ENR \u00e9lectriques. Est-ce si pertinent ?\n \nIncidemment il y a une autre source de chaleur d\u00e9carbon\u00e9e qui n'int\u00e9resse personne : celle issue du refroidissement des centrales nucl\u00e9aires, soit environ 600 milliards de kWh, soit environ ce qui est utilis\u00e9 en France en \u00e9nergie fossile pour le chauffage et l'eau chaude sanitaire ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7019787229342396417,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7019787230227390464,urn:li:activity:7019787230227390464,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 161, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7019787230227390464,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7019787230227390464,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7019787230227390464", + "threadId": "activity:7019787230227390464", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019787230227390464", + "urn": "urn:li:activity:7019787230227390464", + "numComments": 291, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7019787230227390464", + "reactionTypeCounts": [ + { + "count": 2454, + "reactionType": "LIKE" + }, + { + "count": 381, + "reactionType": "INTEREST" + }, + { + "count": 228, + "reactionType": "MAYBE" + }, + { + "count": 37, + "reactionType": "PRAISE" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7019787230227390464", + "numLikes": 3137, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019787230227390464", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3140, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7019403760263122944", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7019403760263122944)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7019403760263122944)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_un-de-mes-coll%C3%A8gues-de-travail-ma-envoy%C3%A9-activity-7019403760263122944-DzI5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7019403759420088320", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7019403760263122944", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7019403759420088320", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "Wg/NtAmFgxfugovXwLqCBg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7019403760263122944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHkT5OV6xQ0Tg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHkT5OV6xQ0Tg", + "artifacts": [ + { + "width": 1792, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1673556266820?e=1679529600&v=beta&t=qJ40GCnBwLExHbAqZiVDApukzsgXQhdpZRVxV3h1U8U", + "expiresAt": 1679529600000, + "height": 1065 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1673556270057?e=1679529600&v=beta&t=cSAzrow4STLCcvv7nHec7gfEEJxzXrond8kAxdeinMM", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1673556270057?e=1679529600&v=beta&t=o9pwrppHNlnJuuENLs5EILlnQKB6WKUTrIrAJrhfvK8", + "expiresAt": 1679529600000, + "height": 761 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1673556270057?e=1679529600&v=beta&t=fWnPnEc-bqYby6hvCP-UO9GGmI8TYdIbzxPTdno8-20", + "expiresAt": 1679529600000, + "height": 285 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1673556270057?e=1679529600&v=beta&t=eQQbuD5E_tlOCt0rQLpftP_vXPI0_qQI4cVunhy1kEE", + "expiresAt": 1679529600000, + "height": 95 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1673556270057?e=1679529600&v=beta&t=HI9-bK-miuOaYANTKrpn8yMuQDdG1sjpW5vdQ7rJgJg", + "expiresAt": 1679529600000, + "height": 475 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHkT5OV6xQ0Tg/feedshare-shrink_" + }, + "displayAspectRatio": 0.5943080357142857 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7019403759420088320,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un de mes coll\u00e8gues de travail m'a envoy\u00e9 hier la question suivante : \"\u00e0 quand faut-il remonter dans le pass\u00e9 pour avoir des \u00e9missions de 2 tonnes de CO2 par personne ?\"\n\nSi l'on inclut la d\u00e9forestation (qui a toujours accompagn\u00e9 la croissance d\u00e9mographique), la r\u00e9ponse est donn\u00e9e par ce graphique (compilation de l'auteur sur sources diverses) : \u00e0 1860. En effet, le CO2 issu des combustibles fossiles est \"r\u00e9cent\", mais avant il y a eu de la d\u00e9forestation, qui a longtemps \u00e9t\u00e9 le terme dominant dans l'ensemble des \u00e9missions humaines.\n\nSi l'on regarde juste le CO2 issu des \u00e9nergies fossiles (graphique en commentaire), en supposant que l'on arr\u00eate la d\u00e9forestation (ce qui pour le moment est h\u00e9las une vue de l'esprit mais finira par arriver, au plus tard quand il n'y aura plus rien \u00e0 couper !), la r\u00e9ponse fait un peu moins peur : on parle de 1940. \n\nPour \u00eatre \"compatible 2\u00b0C\", il faudra donc a minima ramener en 27 ans les \u00e9missions fossiles moyennes par personne \u00e0 ce qu'elles \u00e9taient il y a 80 ans. En d'autres termes, il va falloir \"descendre\" 3 fois plus vite que nous sommes \"mont\u00e9s\", sachant que \"monter\" ne demande aucune contrainte alors que descendre oui. Ce n'est clairement pas au train o\u00f9 vont les choses que nous allons y arriver.\n\nDans le graphique sur le CO2 fossile seul on constate aussi que les \u00e9missions par personne ont brutalement arr\u00eat\u00e9 de monter au moment des chocs p\u00e9troliers (et en tenant compte de la d\u00e9forestation il y a eu une baisse pendant 30 ans).\n\nCela illustre de mani\u00e8re directe que ces chocs n'ont pas juste \u00e9t\u00e9 une grosse variation de prix \u00e0 cause d'un blocus : ils ont mat\u00e9rialis\u00e9 le premier ralentissement physique de l'\u00e8re industrielle par d\u00e9faut de ressources. La production de p\u00e9trole ne pouvait juste plus physiquement augmenter de 8% par an (surtout que les USA venaient de passer le pic conventionnel en 1970...). La limite physique \u00e0 l'amont s'appliquera de plus en plus si celle \u00e0 l'aval n'est pas g\u00e9r\u00e9e.\n\nLa grosse bosse des ann\u00e9es 2000 correspond \u00e0 l'essor de la Chine (et de son charbon). Cet essor a d\u00e9marr\u00e9 un peu moins de 10 ans apr\u00e8s le Sommet de la Terre de 1992, o\u00f9 a \u00e9t\u00e9 sign\u00e9e la Convention Climat. Pour le moment cette derni\u00e8re a \u00e9t\u00e9 mise KO debout par nos aspirations consum\u00e9ristes et \u00e9conomiques..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7019403759420088320,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7019403760263122944,urn:li:activity:7019403760263122944,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 98, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7019403760263122944,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7019403760263122944,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7019403760263122944", + "threadId": "activity:7019403760263122944", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019403760263122944", + "urn": "urn:li:activity:7019403760263122944", + "numComments": 215, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7019403760263122944", + "reactionTypeCounts": [ + { + "count": 2931, + "reactionType": "LIKE" + }, + { + "count": 868, + "reactionType": "INTEREST" + }, + { + "count": 401, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7019403760263122944", + "numLikes": 4250, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019403760263122944", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4255, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7019063851266535424", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7019063851266535424)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7019063851266535424)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_oceans-were-the-hottest-ever-recorded-in-activity-7019063851266535424-6LO5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7019063850654216192", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7019063851266535424", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7019063850654216192", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "X37x4jLfEjzg3VrpiHGlKA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7019063851266535424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8745374758198028966", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675874214305?e=1677240000&v=beta&t=M8NMzTG9rYZyrXviyyIdonqfNQ3X4hxpBpJPJAL70OI", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675874214306?e=1677240000&v=beta&t=d-KRSNg-Ted4wQuqqPuOiXqslLO3nF2gWFaCr6i8qcU", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675874214306?e=1677240000&v=beta&t=8lQCo4UGtL56Ar8J_i8XdIA6VrXI_YxA17qoNNw5SI0", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675874214306?e=1677240000&v=beta&t=OUXbz77n84LkBhLPRS0-1hH3htrcBIQM-REct9L_kHM", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGyr8tBrfl1eA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8745374758198028966)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8745374758198028966)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Oceans were the hottest ever recorded in 2022, analysis shows by theguardian.com", + "actionTarget": "https://www.theguardian.com/environment/2023/jan/11/oceans-were-the-hottest-ever-recorded-in-2022-analysis-shows" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Oceans were the hottest ever recorded in 2022, analysis shows" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7019063850654216192,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il n'y a pas que sur terre que 2022 a \u00e9t\u00e9 chaude : pour l'ensemble de l'oc\u00e9an mondial, l'ann\u00e9e pass\u00e9e a \u00e9t\u00e9 la plus chaude depuis le d\u00e9but des relev\u00e9s. \n\nOn le dit peu souvent, mais en fait 90% de l'\u00e9nergie suppl\u00e9mentaire amen\u00e9e \u00e0 la surface de la plan\u00e8te par le suppl\u00e9ment d'effet de serre r\u00e9chauffe les oc\u00e9ans et non la surface de la terre. C'est un ph\u00e9nom\u00e8ne lent mais massif, qui engendre derri\u00e8re des cons\u00e9quences en cascade :\n\n- l'\u00e9l\u00e9vation de temp\u00e9rature est une agression en tant que telle pour de nombreux organismes marins (par exemple les coraux dont 15% sont d\u00e9j\u00e0 morts, et \u00e0 2\u00b0C de r\u00e9chauffement global les coraux tropicaux auront probablement disparu pour l'essentiel)\n\n- cela affaiblit le puits oc\u00e9anique car l'eau chaude dissout moins bien le CO2 que l'eau froide (c'est pour cela que dans le pass\u00e9 l'\u00e9l\u00e9vation de temp\u00e9rature pr\u00e9c\u00e8de l'augmentation du CO2 : lorsque la modification des param\u00e8tres astronomiques de la terre r\u00e9chauffait climat, l'oc\u00e9an se mettait ensuite \u00e0 d\u00e9gazer du CO2 - qui incidemment amplifiait encore le r\u00e9chauffement)\n\n- l'eau chaude \u00e9tant moins dense, cela stratifie l'oc\u00e9an : l'eau chaude surnage en surface et ne communique plus avec les eaux plus profondes, plus froides. Cela diminue la teneur en oxyg\u00e8ne de l'eau de l'oc\u00e9an profond et donc la vie marine associ\u00e9e\n\n- l'eau se dilate quand elle chauffe : plus l'oc\u00e9an chauffe vite et plus son niveau monte vite. En retour cette hausse du niveau de la mer et ce r\u00e9chauffement de l'eau d\u00e9stabilisent de mani\u00e8re acc\u00e9l\u00e9r\u00e9e les langues terminales des glaciers des calottes polaires qui du coup se d\u00e9sagr\u00e8gent plus vite, en produisant plus rapidement des icebergs qui font encore plus monter le niveau de l'eau...\n\n- une eau de surface plus chaude favorise l'apparition de ph\u00e9nom\u00e8nes cycloniques plus intenses (ce qui se constate d\u00e9j\u00e0)\n\nBref que l'oc\u00e9an chauffe vite n'est pas juste une affaire de temp\u00e9rature de l'eau quand on va se baigner. Comme pour d'autres aspects du changement climatique, cela va engendrer des discontinuit\u00e9s qui, \u00e0 mesure que le temps passera, seront de plus en plus amples et peu sympathiques. \n\nIl reste peu de temps pour bien comprendre les risques et organiser au mieux la soci\u00e9t\u00e9 pour ne pas trop en souffrir...\n" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7019063850654216192,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7019063851266535424,urn:li:activity:7019063851266535424,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 45, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7019063851266535424,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7019063851266535424,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7019063851266535424", + "threadId": "activity:7019063851266535424", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019063851266535424", + "urn": "urn:li:activity:7019063851266535424", + "numComments": 77, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7019063851266535424", + "reactionTypeCounts": [ + { + "count": 1408, + "reactionType": "LIKE" + }, + { + "count": 337, + "reactionType": "INTEREST" + }, + { + "count": 135, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7019063851266535424", + "numLikes": 1924, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7019063851266535424", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1925, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7018690369332625409", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7018690369332625409)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7018690369332625409)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-investissements-repartent-%C3%A0-la-hausse-activity-7018690369332625409-HQgG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7018690368690958336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7018690369332625409", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7018690368690958336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "Kj9n4xZC/fLTBVPeyq0FFA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7018690369332625409,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7340652649154548267", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675937217011?e=1677240000&v=beta&t=P6m27VSboerHnWce-qfLvJ9sjCYRGO9-Jx-PB6QF1ek", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675937217011?e=1677240000&v=beta&t=e_yTw0qPsbfl2rpq-l6KsAGB3uonmrK4BoSfD9qDSHo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675937217011?e=1677240000&v=beta&t=KWsXgdGAMf8fCmExC88nU7irVNjfNjkpCl_fAcIf3Pw", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675937217011?e=1677240000&v=beta&t=jKZALKXxRgjmOvVpm_NCAWrw9DjURHnglM7D3ugXV-k", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGpdVhkaDfC-A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7340652649154548267)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7340652649154548267)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les investissements repartent \u00e0 la hausse dans l'exploration et l'extraction p\u00e9troli\u00e8re by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/les-investissements-repartent-a-la-hausse-dans-lexploration-et-lextraction-petroliere-1894533#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les investissements repartent \u00e0 la hausse dans l'exploration et l'extraction p\u00e9troli\u00e8re" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7018690368690958336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A votre avis, quel est le premier crit\u00e8re qui pilote le volume d'investissements dans le p\u00e9trole ? Si vous pensez - ou esp\u00e9rez - que c'est les politiques \u00e9nerg\u00e9tiques de long terme des \u00e9tats, la r\u00e9ponse risque de vous d\u00e9cevoir : depuis plusieurs d\u00e9cennies, le premier d\u00e9terminant du nombre de centaines de milliards de dollars (car c'est l'ordre de grandeur) investi chaque ann\u00e9e dans ce que l'on appelle \"l'amont p\u00e9trolier\" (en pratique l'exploration et la construction des infrastructures de production) est... le prix du baril.\n\nQuand celui-ci est au plus bas, comme par exemple en 2020, les investissements baissent tr\u00e8s fortement. Quand le prix monte fortement (2014 a \u00e9t\u00e9 embl\u00e9matique) alors les investissements font de m\u00eame. En effet, quand le prix est haut, les p\u00e9troliers arrivent \u00e0 rentabiliser des projets qui ne le sont pas quand le prix est bas, ce qui explique cette \"r\u00e9ponse\" des investissements.\n\nC'est particuli\u00e8rement vrai dans le shale oil (non \u00e9voqu\u00e9 dans l'article des Echos) o\u00f9 la production suit d'assez pr\u00e8s l'investissement (forage et fracturation). \n\nCette r\u00e9ponse des investissements au prix est un des \u00e9l\u00e9ments \u00e0 prendre en compte pour savoir si, pour consommer moins de p\u00e9trole, \"il suffit d'attendre qu'il y en ait moins\", ou si c'est utile de baisser la consommation par des r\u00e8glementations et des taxes.\n\nCar de fait nous approchons du peak oil et donc il va y en avoir moins. Mais si nous laissons le march\u00e9 g\u00e9rer la d\u00e9crue, ce \"moins\" se traduit par des envol\u00e9es des prix, donc des investissements additionnels, et donc... un peu plus que \"moins\".\n\nSi la d\u00e9crue est pilot\u00e9e \u00e0 l'aval (quotas de consommation sur les voitures, camions et avions, sur les fours industriels etc) \u00e0 ce moment c'est tout l'inverse qui se passe : la pression sur la demande maintient des prix bas, ce qui \u00e9vite cet effet rebond li\u00e9 \u00e0 un surplus d'investissements quand c'est le march\u00e9 qui r\u00e9gule. Et, cerise sur le g\u00e2teau pour tous les gens qui n'aiment pas les p\u00e9troliers : ces derniers gagnent moins d'argent qu'avec une p\u00e9nurie faisant grimper les prix :)\n\nAjoutons \u00e0 cela que de se contenter du \"peak oil+peak gas+peak coal\" pour limiter notre consommation de fossiles ne permet pas de tenir la limite des 2 \u00b0C. La d\u00e9crue p\u00e9troli\u00e8re est d\u00e9j\u00e0 amorc\u00e9e en Europe, malheureusement elle va \u00e0 la fois trop vite pour pr\u00e9server une \u00e9conomie qui ne se r\u00e9invente pas et pas assez vite pour pr\u00e9server le climat..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7018690368690958336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7018690369332625409,urn:li:activity:7018690369332625409,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 68, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7018690369332625409,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7018690369332625409,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7018690369332625409", + "threadId": "activity:7018690369332625409", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018690369332625409", + "urn": "urn:li:activity:7018690369332625409", + "numComments": 128, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7018690369332625409", + "reactionTypeCounts": [ + { + "count": 1284, + "reactionType": "LIKE" + }, + { + "count": 269, + "reactionType": "INTEREST" + }, + { + "count": 212, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7018690369332625409", + "numLikes": 1794, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018690369332625409", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1794, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7018309415040647168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7018309415040647168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7018309415040647168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-prix-de-l%C3%A9nergie-ils-montent-ils-activity-7018309415040647168-bt9d?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7018309413862006785", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7018309415040647168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7018309413862006785", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "z8KTCDJievgPvB3BKRCkeA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7018309415040647168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQG0JXzfKNejZg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQG0JXzfKNejZg", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1673295353733?e=1679529600&v=beta&t=x2h7b7jx-pUN89hkhC5E5FFanYD7NvD9Fa0JEq4mtsE", + "expiresAt": 1679529600000, + "height": 1298 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1673295357068?e=1679529600&v=beta&t=HyD_wqBJBJlNQPHGXVPpmI_iVNT4mk4IMJ6YLss21N0", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1673295357068?e=1679529600&v=beta&t=lexYzO3c4evsq-cyByOa9DPPqjVR96CtLPCsPVP3LMY", + "expiresAt": 1679529600000, + "height": 811 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1673295357068?e=1679529600&v=beta&t=XBq3trvmtEpesG8ZumCEFNMHfZkFDMSwcTcYMdGIGgc", + "expiresAt": 1679529600000, + "height": 304 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1673295357068?e=1679529600&v=beta&t=YJtfVUAjeUSNuHmRs921OCN8FxS1UL0G8pWlBPKcqvw", + "expiresAt": 1679529600000, + "height": 101 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1673295357068?e=1679529600&v=beta&t=uKo0pWza7or1ly5wQ31L4nPSogG1Ne9RiEti6zobIG4", + "expiresAt": 1679529600000, + "height": 507 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQG0JXzfKNejZg/feedshare-shrink_" + }, + "displayAspectRatio": 0.6337890625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, line chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7018309413862006785,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les prix de l'\u00e9nergie ? Ils montent, ils descendent... mais, depuis les chocs p\u00e9troliers, la part des d\u00e9penses \u00e9nerg\u00e9tiques dans les budgets des m\u00e9nages est rest\u00e9e tr\u00e8s stable. Il faudra voir si 2022 nous rapproche de 1974, car les donn\u00e9es ne sont pas encore disponibles au minist\u00e8re de la transition \u00e9nerg\u00e9tique, d'o\u00f9 sont issus ces chiffres (et plus pr\u00e9cis\u00e9ment de https://lnkd.in/eXsAPG2k ).\n\nDonner \u00e0 manger et \u00e0 boire \u00e0 nos 1000 esclaves \u00e9nerg\u00e9tiques planqu\u00e9s sous le capot de la voiture, \u00e0 ceux qui peuplent cuisines et salles de bains, \u00e0 ceux qui, dans la cave, assurent le chaud et parfois le froid, et encore \u00e0 ceux qui nous \u00e9clairent ou nous permettent de communiquer coute donc un peu moins de 10% de ce que nous gagnons. \n\nBien sur, cette facture n'inclut pas les esclaves \u00e9nerg\u00e9tiques des usines et des transports de marchandises, mais avouez que, quand m\u00eame, pour le service rendu, c'est donn\u00e9 !\n\nEt, depuis 1970, o\u00f9 l'\u00e9nergie coutait aussi 8% de ce que gagnaient nos parents ou grands-parents, l'arm\u00e9e d'esclaves m\u00e9caniques n'a cess\u00e9 de grossir : \u00e0 l'\u00e9poque, pour 8% t'avais presque rien. Il y avait quasiment 3 fois moins de voitures, peu d'\u00e9lectrom\u00e9nager, pas de chauffage central partout, peu de t\u00e9l\u00e9visions, et bien \u00e9videmment pas d'internet ou de box TV.\n\nA l'avenir, nous allons devoir devenir sobres. Est-ce \u00e0 dire qu'avec une consommation divis\u00e9e par 2 ou 3, la part de l'\u00e9nergie dans le budget sera divis\u00e9e par le m\u00eame facteur ? Notre logique de d\u00e9penses \u00e9tant g\u00e9n\u00e9ralement budg\u00e9taire (on \u00e9pargne ce que l'on doit \u00e9pargner et on d\u00e9pense tout le reste), il n'est pas \u00e9vident de comprendre pourquoi on se mettrait tout d'un coup \u00e0 consommer beaucoup moins alors que nous en aurions les moyens.\n\nSi notre facture d'\u00e9nergie nous coute moins cher parce que nous \u00e9conomisons de l'\u00e9nergie, qu'allons nous faire du surplus ? Jusqu'\u00e0 maintenant la r\u00e9ponse a \u00e9t\u00e9 de consommer autre chose en plus... et donc de consommer un peu plus d'une autre \u00e9nergie (celle pour la mise \u00e0 disposition de ce que nous allons consommer en plus). \n\nLa m\u00eame question se pose aussi pour toute l'\u00e9nergie \"incluse\" dans les produits ou services de la consommation finale : jusqu'\u00e0 maintenant nous avons utilis\u00e9 les marges de manoeuvre budg\u00e9taires d\u00e9gag\u00e9es par la baisse du prix d'un produit ou service pour consommer plus d'autre chose.\n\nSavoir si nous pouvons devenir sobres sans hausse des prix r\u00e9els - ce qui est le but m\u00eame de la taxe carbone - est donc une vraie question. Au regard du climat, l'inflation est-elle une calamit\u00e9 ou une b\u00e9n\u00e9diction ? Pour le moment il existe peu de propositions probantes mariant \"d\u00e9fense du pouvoir d'achat\" et baisse rapide des \u00e9missions..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7018309413862006785,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7018309415040647168,urn:li:activity:7018309415040647168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 59, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7018309415040647168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7018309415040647168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7018309415040647168", + "threadId": "activity:7018309415040647168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018309415040647168", + "urn": "urn:li:activity:7018309415040647168", + "numComments": 140, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7018309415040647168", + "reactionTypeCounts": [ + { + "count": 1169, + "reactionType": "LIKE" + }, + { + "count": 199, + "reactionType": "INTEREST" + }, + { + "count": 181, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7018309415040647168", + "numLikes": 1568, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7018309415040647168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1568, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7017863646768726017", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7017863646768726017)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7017863646768726017)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lurgence-%C3%A9cologique-se-heurte-%C3%A0-la-culture-activity-7017863646768726017-gZ9o?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7017863646001123328", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7017863646768726017", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7017863646001123328", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "KAfMREBLAzu9jKHAuc/LUQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7017863646768726017,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8047021039996732535", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675783088239?e=1677240000&v=beta&t=eDUY3htTypZjPMj78nZ01R5WRYtpmdGbspedR3gVgFs", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675783088239?e=1677240000&v=beta&t=UX8I2pGUrdbZDVeOTvPSP128Xihf__epuPeMnW2zQmc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675783088239?e=1677240000&v=beta&t=avcCbQ_serzL2ZZlJ122k_A69hIFYTWhrj0GpsX74MY", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675783088239?e=1677240000&v=beta&t=uJvypUhkzIiTTBLFF_9so8_2avTBSGUPSWYaGjdZSd8", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGEDH2N_D63tw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8047021039996732535)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8047021039996732535)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L\u2019urgence \u00e9cologique se heurte \u00e0 la culture acad\u00e9mique des universit\u00e9s by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/societe/article/2023/01/06/crise-climatique-dans-les-universites-l-urgence-ecologique-se-heurte-a-la-culture-academique_6156904_3224.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L\u2019urgence \u00e9cologique se heurte \u00e0 la culture acad\u00e9mique des universit\u00e9s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7017863646001123328,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a la th\u00e9orie, et il y a la pratique. La th\u00e9orie, c'\u00e9tait par exemple le rapport du Shift Project \"Mobiliser l'enseignement sup\u00e9rieur pour le climat\" (https://lnkd.in/dNVfiau ), o\u00f9 nous proposions un certain nombre de choses pour que l'enseignement sup\u00e9rieur soit mis en coh\u00e9rence avec la d\u00e9carbonation en particulier, et les limites plan\u00e9taires en g\u00e9n\u00e9ral.\n\nMais en pratique c'est une autre paire de manches. Que faire des enseignements qui ne sont pas ou plus \"raccord\" avec la nouvelle donne ? On peut penser \u00e0 l'\u00e9conomie par exemple, qui int\u00e8gre tr\u00e8s imparfaitement la limite sur les ressources et le r\u00f4le central de l'\u00e9nergie et des machines dans les raisonnements. \n\nQue faire des enseignants qui seront trop nombreux dans un monde qui se d\u00e9carbone ? On peut alors penser aux \u00e9tudes de langues ou d'art par exemple : un monde plus sobre sera un monde avec moins de flux internationaux, et il ne sera peut-\u00eatre plus utile d'avoir autant de traducteurs, d'interpr\u00e8tes ou de guides pour touristes internationaux, et partant plus autant d'\u00e9tudiant(e)s faisant juste des \u00e9tudes de langues \u00e0 l'Universit\u00e9 (mais les langues en \"culture g\u00e9n\u00e9rale\" resteront importantes !).\n\nLa question n'est donc pas seulement d'ajouter un cours avec les bases physiques et biologiques d\u00e9crivant le monde dans lequel nous sommes entr\u00e9s : il faut que le reste de ce qui est enseign\u00e9 ne soit pas en contradiction, et pr\u00e9pare par ailleurs \u00e0 des m\u00e9tiers qui ne le seront pas plus.\n\nEt l\u00e0, nous n'y sommes pas encore. Dans un pays o\u00f9 la libert\u00e9 acad\u00e9mique est un principe tr\u00e8s fort (je ne discute pas du bien fond\u00e9 !), et o\u00f9 les enseignants universitaires sont inamovibles (m\u00eame remarque), r\u00e9orienter le paquebot ne se fera pas rapidement, et la question est m\u00eame pos\u00e9e de savoir ce qui pourrait d\u00e9clencher un changement au bon rythme (c'est \u00e0 dire pour demain matin).\n\nUne autre difficult\u00e9 est aussi soulign\u00e9e en fin de l'article du Monde : pour un enseignant chercheur, modifier le contenu de son cours, c'est potentiellement modifier sa recherche, et cela signifie que, pendant un temps, il ne publie plus (ou plus autant). Avec la sacralisation des classements (dont Shanghai) bas\u00e9s sur le nombre de publications annuelles, rien que cela peut \u00eatre un obstacle tr\u00e8s difficile \u00e0 surmonter pour les universit\u00e9s qui voudraient \"changer de direction\".\n\nIl est donc probable que l'innovation va avoir du mal \u00e0 venir \"d'en haut\". Pour le moment elle vient \"d'\u00e0 c\u00f4t\u00e9\", par exemple avec des cours en ligne que beaucoup d'\u00e9tudiant(e)s peuvent suivre en plus de leur cursus, ou d'\u00e9tablissements \"partis de rien\" (comme le Campus de la Transition cit\u00e9 dans cet article).\n\nIl y aura aussi de l'innovation partie \"d'en bas\", \u00e0 savoir les initiatives individuelles de certain(e)s enseignant(e)s, dont il faut esp\u00e9rer qu'elles inspireront le plus vite possible leurs coll\u00e8gues.\n\nCar, au sens propre chaque \u00e9t\u00e9 d\u00e9sormais, il y a le feu !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7017863646001123328,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7017863646768726017,urn:li:activity:7017863646768726017,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 128, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7017863646768726017,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7017863646768726017,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7017863646768726017", + "threadId": "activity:7017863646768726017", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017863646768726017", + "urn": "urn:li:activity:7017863646768726017", + "numComments": 171, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7017863646768726017", + "reactionTypeCounts": [ + { + "count": 1646, + "reactionType": "LIKE" + }, + { + "count": 212, + "reactionType": "MAYBE" + }, + { + "count": 206, + "reactionType": "INTEREST" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7017863646768726017", + "numLikes": 2117, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017863646768726017", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2117, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7017569097689223168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7017569097689223168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7017569097689223168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_economies-d%C3%A9nergie-la-chasse-au-gaspi-activity-7017569097689223168-Zi03?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7017569096808431616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7017569097689223168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7017569096808431616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "V0VtQXgw31jSBr4KwNGsEw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7017569097689223168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7653124443252468776", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675701078167?e=1677240000&v=beta&t=07x_uGGcRHYB6MvBCf8pfP9qv9ZT7Egb0PeMXIl6SDQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675701078167?e=1677240000&v=beta&t=H4GATfZ2YRqXDmmaHjrYZt2TPC-rgOomyIigpR1jgoQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675701078167?e=1677240000&v=beta&t=T43V-a5tlS56Nr0SYBhoi2mYDnNtDEXTjEZ2aDI4x_c", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675701078167?e=1677240000&v=beta&t=FzBbD7hwD_IBx91R2sVN91fDNj79zE9Kz5Li1gE3Vp4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE26hMK7K6Qvg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7653124443252468776)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7653124443252468776)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Economies d'\u00e9nergie : la chasse au gaspi ne fait que commencer by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/economies-denergie-la-chasse-au-gaspi-ne-fait-que-commencer-1894540#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Economies d'\u00e9nergie\u00a0: la chasse au gaspi ne fait que commencer" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7017569096808431616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A l'\u00e9poque o\u00f9 le monde \u00e9tait 100% renouvelable, il \u00e9tait moins pilotable qu'aujourd'hui. Il d\u00e9pendait fortement de la biomasse, du vent, du soleil et de l'eau, et ces 4 composantes sont elles-m\u00eames tributaires, de fa\u00e7on tr\u00e8s r\u00e9active (vent par exemple) ou plus lente (biomasse), des conditions du moment.\n\nA l'\u00e9poque, la marine \u00e0 voile avan\u00e7ait quand il y avait du vent, et on ne savait pas exactement \u00e0 quelle heure (ni parfois o\u00f9 !) on toucherait terre.\n\nLes moulins \u00e0 vent tournaient aussi quand il y avait du vent, et il valait mieux avoir un petit stock de farine sous la main pour ne pas risquer de manquer de pain en cas de panne \u00e9olienne un peu prolong\u00e9e. \n\nLes moulins \u00e0 eau \u00e9taient plus r\u00e9guliers, mais, lors d'une ann\u00e9e s\u00e8che ou d'un hiver tr\u00e8s froid (gel), ils pouvaient aussi s'arr\u00eater de tourner. La biomasse pour les animaux \u00e9tait disponible l'\u00e9t\u00e9 et il fallait faire des stocks pour l'hiver... en priant pour qu'ils soient suffisants.\n\nL'\u00e8re des combustibles fossiles a compl\u00e8tement chang\u00e9 la donne, et nous a habitu\u00e9s \u00e0 un monde o\u00f9 la disponibilit\u00e9 d'un produit ou service ne d\u00e9pend en rien des \u00e9l\u00e9ments ext\u00e9rieurs. \n\nAujourd'hui, au sens litt\u00e9ral du terme, nous ne voyons pas pourquoi il serait n\u00e9cessaire qu'il y ait du vent ou du soleil pour qu'un v\u00eatement soit assembl\u00e9 ou transport\u00e9, un aliment mis \u00e0 notre disposition, une classe d'histoire ou une op\u00e9ration de l'appendicite ait lieu, un bus avance ou un coup de fil puisse \u00eatre pass\u00e9.\n\nLa \"chasse au gaspi\" - c'est \u00e0 dire l'av\u00e8nement de l'\u00e8re des \u00e9conomies d'\u00e9nergie impos\u00e9es par insuffisance d'offre - et le retour en force des productions renouvelables non pilotables vont probablement nous remettre, un peu ou beaucoup, dans ce monde moins pr\u00e9visible, moins abondant et plus volatil. \n\nAinsi il a \u00e9t\u00e9 question que les \u00e9coles soient ferm\u00e9es ou une partie du r\u00e9seau t\u00e9l\u00e9phonique inop\u00e9rant les jours sans vent (puisque ce sont les jours, en hiver, o\u00f9 il y a potentiellement un probl\u00e8me d'approvisionnement). Pour le moment cette \u00e9ventualit\u00e9 n'est pas arriv\u00e9e (un temps d\u00e9pressionnaire est plut\u00f4t doux et venteux ; bonne conjonction !) mais son \u00e9vocation montre bien que le monde qui nous attend n'a pas vraiment \u00e9t\u00e9 pens\u00e9 \u00e0 l'avance c\u00f4t\u00e9 consommation.\n\nIl va falloir se faire \u00e0 l'id\u00e9e que tous les kWh ne sont pas \u00e9quivalents. Les combustibles fossiles n'ont pas juste amen\u00e9 des kWh en grande quantit\u00e9 : ils les ont amen\u00e9s \u00e0 la demande. S'organiser sans cette caract\u00e9ristique demandera beaucoup d'efforts : c'est ce que l'on appelle la \"flexibilit\u00e9\". Sa description pr\u00e9cise, et son caract\u00e8re plus ou moins indolore, restent g\u00e9n\u00e9ralement un point (tr\u00e8s) faible des sc\u00e9narios pour l'avenir." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7017569096808431616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7017569097689223168,urn:li:activity:7017569097689223168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 106, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7017569097689223168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7017569097689223168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7017569097689223168", + "threadId": "activity:7017569097689223168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017569097689223168", + "urn": "urn:li:activity:7017569097689223168", + "numComments": 326, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jean Lecordier" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7017569097689223168", + "reactionTypeCounts": [ + { + "count": 2648, + "reactionType": "LIKE" + }, + { + "count": 266, + "reactionType": "INTEREST" + }, + { + "count": 212, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7017569097689223168", + "numLikes": 3197, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017569097689223168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3199, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7017105538584829952", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7017105538584829952)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7017105538584829952)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-r%C3%A9chauffement-climatique-bient%C3%B4t-activity-7017105538584829952-Y_ZL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7017105537964113923", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7017105538584829952", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7017105537964113923", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "S0sfZwEJdU88bV021HOERw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7017105538584829952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8487082001303440346", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676572886461?e=1677240000&v=beta&t=KkOiaVSp-Q-QesrwMn7FM4Q-k_NA2lQEPhkBYAtlAe8", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676572886461?e=1677240000&v=beta&t=FqFYH8qUnpYZpA4ZegNISBDKX6XfacUazmbGRWPZtjo", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676572886461?e=1677240000&v=beta&t=qWCk_WjS_Kvt254DvdM9z5SDrN4y0WmiDOw8taZt280", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676572886461?e=1677240000&v=beta&t=QooZRPPEjPXUqkonVioLHaxYdOeHaFAqit7Ph8dvT9I", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEBltEFv9DyRQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8487082001303440346)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8487082001303440346)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici : R\u00e9chauffement climatique : bient\u00f4t la fin des saisons ? - Yves Calvi - 02/01/2023 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=bwzeqRt8dNs" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici \u00e9tait invit\u00e9 sur RTL dans l\u2019\u00e9mission d'Yves Calvi le 2 janvier 2023. Vid\u00e9o originale : https://www.youtube.com/watch?v=FMbKODJqb7k Site de Jancovici : https://jancovici.com Page Facebook :..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici : R\u00e9chauffement climatique : bient\u00f4t la fin des saisons ? - Yves Calvi - 02/01/2023" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7017105537964113923,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Faut-il parler de \"d\u00e9r\u00e8glement\", de \"crise\", de \"d\u00e9rive\", ou encore une autre expression pour caract\u00e9riser l'\u00e9volution climatique ?\n\nRestera-t-il des hivers dans un monde qui se r\u00e9chauffe ?\n\nDoit-on encore utiliser le mot de \"normale\" en mati\u00e8re de m\u00e9t\u00e9o ou de climat, puisque l'\u00e9volution que nous avons mise en route enclenche une modification d\u00e9sormais permanente du syst\u00e8me climatique, qui ne permet pas le retour \u00e0 un \u00e9tat stable ? (or, ce que l'on qualifie de \"normale\" est g\u00e9n\u00e9ralement un \u00e9tat stable).\n\nAllons-nous pouvoir g\u00e9rer la question climatique sans que les \"\u00e9lites\" ne se forment de mani\u00e8re approfondie pour en cerner les contours ? (chose que manifestement la personne qui a r\u00e9dig\u00e9 le discours de voeux de Macron n'a pas bien faite :) )\n\nVoici quelques unes des questions abord\u00e9es dans cette br\u00e8ve apparition dans la matinale de RTL. Malgr\u00e9 une quantit\u00e9 de \"heu\" qui ferait sauter en l'air n'importe quel conseiller en communication, j'esp\u00e8re que les r\u00e9ponses apport\u00e9es seront utiles \u00e0 un auditoire qui a aussi droit \u00e0 Pascal Praud 2 heures par jour.\n\nEn particulier, il me semble essentiel que la population comprenne bien que \"l'\u00e9tat normal\" n'existe plus. Car c'est cela qui justifie que, alors m\u00eame que nous allons devoir consacrer plus de moyens \u00e0 la d\u00e9carbonation, nous commencions aussi \u00e0 redoubler d'efforts en mati\u00e8re \"d'adaptation au changement climatique\".\n\nIl faut donc consacrer des comp\u00e9tences et des moyens physiques \u00e0 nous pr\u00e9munir au mieux contre des \u00e9volutions adverses qui ne sont pas encore l\u00e0, mais dont nous savons avec certitude qu'elles vont arriver.\n\nCe qui vient de se produire rappelle qu'un jour l'avenir devient le pr\u00e9sent. Les seuls qui ne sont pas surpris sont les mod\u00e9lisateurs du climat et celles et ceux qui pr\u00eatent attention \u00e0 leurs propos. Mais l'important est que ce soit le reste de la population qui comprenne ce qui se passe et en tire les cons\u00e9quences pour l'action." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7017105537964113923,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7017105538584829952,urn:li:activity:7017105538584829952,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 66, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7017105538584829952,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7017105538584829952,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7017105538584829952", + "threadId": "activity:7017105538584829952", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017105538584829952", + "urn": "urn:li:activity:7017105538584829952", + "numComments": 146, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7017105538584829952", + "reactionTypeCounts": [ + { + "count": 1395, + "reactionType": "LIKE" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 88, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7017105538584829952", + "numLikes": 1650, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7017105538584829952", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1650, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7016681335809261568", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7016681335809261568)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7016681335809261568)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-mati%C3%A8re-d%C3%A9nergie-le-mot-%C3%A0-la-mode-est-activity-7016681335809261568-vfwj?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7016681334949486592", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7016681335809261568", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7016681334949486592", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "rMJWgimNOi/3gJw7OIkx0Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7016681335809261568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHCB8XtHW9GHw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHCB8XtHW9GHw", + "artifacts": [ + { + "width": 2028, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1672907191445?e=1679529600&v=beta&t=vtfryN3kWNbOYNXBPw9j4rZ_JIxCoNE0NLs8GGFDaxA", + "expiresAt": 1679529600000, + "height": 1142 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1672907192650?e=1679529600&v=beta&t=b4F4DPfwA0oj8ivxE4Gw0hY6-iYFrcVFnblSn0CWFZk", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1672907192650?e=1679529600&v=beta&t=I6WzfaoMsgmQwY36C4LgXb6Gg2HpZZRhuz6fCCk7mjA", + "expiresAt": 1679529600000, + "height": 721 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1672907192650?e=1679529600&v=beta&t=nbiYV6FcfRTugH_N9ayL8036DLy0KAfo8_6GpWhNrcs", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1672907192650?e=1679529600&v=beta&t=Fk3GWirnONYNRwpUUhl1yc6uWl_w6KqxH84OsT8xsWU", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1672907192650?e=1679529600&v=beta&t=4myYwYnLyPgq3klaGIPl0Lq4qhnI8izRJZS5zNfxl7U", + "expiresAt": 1679529600000, + "height": 450 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHCB8XtHW9GHw/feedshare-shrink_" + }, + "displayAspectRatio": 0.5631163708086785 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7016681334949486592,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En mati\u00e8re d'\u00e9nergie, le mot \u00e0 la mode est donc \"sobri\u00e9t\u00e9\" (qui ne figure cependant pas dans le message de voeux pr\u00e9sidentiel). Pour savoir ce que ce terme inspirait \u00e0 nos concitoyens, l'IFOP est aller les cuisiner un peu (cela s'appelle un sondage), et en a retir\u00e9 une analyse de 86 pages (pas en libre acc\u00e8s mais que l'on m'a gentiment fournie quand m\u00eame :) ). \n\nIl y figure notamment le graphique ci-dessous, qui r\u00e9sume ce \u00e0 quoi peut servir la sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique selon les personnes interrog\u00e9es. On y d\u00e9couvre avec \u00e9tonnement (enfin pour moi) que la moiti\u00e9 de la population (environ) pense que la sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique peut contribuer au manque de certaines \u00e9nergies ou au d\u00e9r\u00e8glement climatique. \n\nCela sugg\u00e8re que ce mot apparu de fa\u00e7on r\u00e9cente dans le discours politique est tr\u00e8s loin d'\u00eatre correctement compris par nos concitoyens, du moins si la bonne compr\u00e9hension est la baisse volontaire de la consommation des individus. \n\nAu demeurant, une question sur \"qui doit s'engager en faveur de la sobri\u00e9t\u00e9\", pos\u00e9e un peu plus loin, met les entreprises devant les citoyens, alors que, \u00e0 l'\u00e9vidence, la sobri\u00e9t\u00e9 est bien une affaire de consommation finale...\n\nIl est vraisemblable que, pour l'heure, cette notion de sobri\u00e9t\u00e9 est aussi confondue avec celle d'efficacit\u00e9. Les questions pos\u00e9es dans l'\u00e9tude de l'IFOP sur les actes auxquels les personnes sont pr\u00eates m\u00e9langent du reste un peu les deux (choisir des appareils plus efficaces et isoler son logement se retrouve est dans la m\u00eame liste que moins utiliser sa voiture et moins prendre l'avion). \n\nEnfin il est probable que \"les gens\" n'ont pas du tout les ordres de grandeur en t\u00eate sur l'effort \u00e0 faire. Beaucoup de r\u00e9pondants consid\u00e8rent que de r\u00e9duire sa consommation d'\u00e9nergie de 10% est ce qu'il faut viser, mais la \"sobri\u00e9t\u00e9 des 2\u00b0C\" nous am\u00e8nera tr\u00e8s au-del\u00e0 de cette valeur !\n\nIl ne suffira donc pas de brandir ce mot de \"sobri\u00e9t\u00e9\" pour d\u00e9gager un consensus et d\u00e9crire qui devra faire quoi. Pour parvenir \u00e0 cet objectif, il faudra donner corps \u00e0 ce terme sous forme... d'un plan. Ca ne vous rappelle rien :) ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7016681334949486592,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7016681335809261568,urn:li:activity:7016681335809261568,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 96, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7016681335809261568,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7016681335809261568,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7016681335809261568", + "threadId": "activity:7016681335809261568", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016681335809261568", + "urn": "urn:li:activity:7016681335809261568", + "numComments": 165, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7016681335809261568", + "reactionTypeCounts": [ + { + "count": 1326, + "reactionType": "LIKE" + }, + { + "count": 155, + "reactionType": "MAYBE" + }, + { + "count": 151, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7016681335809261568", + "numLikes": 1666, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016681335809261568", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1667, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7016472206754906113", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7016472206754906113)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7016472206754906113)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_participez-au-concours-dimaginaires-bas-activity-7016472206754906113-Qtan?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7016472206020853760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7016472206754906113", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7016472206020853760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "MQkubZM52bkSibZilLBWsg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7016472206754906113,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7906247804821788833", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676541270542?e=1677240000&v=beta&t=7tNh6_qMA647heeysbDosS_Bem8GgT93EZbo_OUJdQk", + "expiresAt": 1677240000000, + "height": 413 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676541270542?e=1677240000&v=beta&t=n-fFNTQx01DQ5WebAGdaMcvl8Q8UkgNKih-bCPZQ-D4", + "expiresAt": 1677240000000, + "height": 421 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676541270542?e=1677240000&v=beta&t=JTiEIqmJbqsROTXKCb8_SMneqecq_1gGYYlseRobcrM", + "expiresAt": 1677240000000, + "height": 82 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676541270542?e=1677240000&v=beta&t=1b-i59kHc4RPWbzfwen1Sx-IpL63Hpbrp7BLufX38FY", + "expiresAt": 1677240000000, + "height": 247 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFrGW2ai70isQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7906247804821788833)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7906247804821788833)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Participez au concours d'imaginaires bas carbone des Shifters ! by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/concours-shifters-imaginaires-bas-carbone/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Participez au concours d'imaginaires bas carbone des Shifters !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7016472206020853760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Vous maniez le crayon ou la cam\u00e9ra de mani\u00e8re acceptable ? Contribuer \u00e0 la d\u00e9carbonation vous tente ? Vous n'avez pas la possibilit\u00e9, comme Bruno Le Maire, de le faire en faisant r\u00e9diger un projet de loi sur l'industrie \"verte\" (https://bit.ly/3Cq4rgK ) ?\n\nDevenez auteur de BD \u00e0 succ\u00e8s (c'est possible m\u00eame si on ne s'y attend pas, je peux en t\u00e9moigner :) ), ou rivalisez avec \"Don't Look Up\" ! Pour agir, il faut en avoir envie, et la fiction, en \"donnant \u00e0 voir\", peut \u00eatre un moyen de susciter cette envie. \n\nLes Shifters - l'association des b\u00e9n\u00e9voles soutenant et contribuant aux travaux du Shift Project - organisent donc un concours de (tr\u00e8s) courts m\u00e9trages et de (tr\u00e8s) courtes bandes dessin\u00e9es autour du th\u00e8me \"un lundi en 2050\". Ce Lundi devra \u00e9videmment \u00eatre \u00e0 la fois d\u00e9carbon\u00e9, r\u00e9aliste, et enviable.\n\nL'ann\u00e9e derni\u00e8re, 210 \u00e9crivain(e)s en herbe avaient tent\u00e9 leur chance \u00e0 un concours de nouvelles organis\u00e9 par la m\u00eame association, avec un cahier des charges voisin : https://lnkd.in/eun_dbnd . Cette ann\u00e9e le format est diff\u00e9rent mais l'objectif est le m\u00eame. \n\nIl m'est souvent arriv\u00e9 de le dire, donc je peux le faire une fois de plus : changer de mod\u00e8le de soci\u00e9t\u00e9 n'est pas qu'une affaire d'ing\u00e9nieurs (et peut-\u00eatre m\u00eame pas avant tout une affaire d'ing\u00e9nieurs). C'est aussi et surtout une affaire de valeurs, d'\u00e9thique, de priorit\u00e9s, et d'incarnation de ce qui est possible.\n\nCe petit concours est donc la \"part du colibri\" pour contribuer sur ces plans l\u00e0. Alors, si ce petit d\u00e9fi vous tente, lancez vous !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7016472206020853760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7016472206754906113,urn:li:activity:7016472206754906113,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 164, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7016472206754906113,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7016472206754906113,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7016472206754906113", + "threadId": "activity:7016472206754906113", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016472206754906113", + "urn": "urn:li:activity:7016472206754906113", + "numComments": 218, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7016472206754906113", + "reactionTypeCounts": [ + { + "count": 1652, + "reactionType": "LIKE" + }, + { + "count": 121, + "reactionType": "EMPATHY" + }, + { + "count": 109, + "reactionType": "APPRECIATION" + }, + { + "count": 44, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7016472206754906113", + "numLikes": 1961, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016472206754906113", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1961, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7016101906401927169", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7016101906401927169)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7016101906401927169)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_greenwashing-lutilisation-abusive-du-label-activity-7016101906401927169-r47p?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7016101905554628608", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7016101906401927169", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7016101905554628608", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "x5OxzB7rBPY8eGmAe7mF8A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7016101906401927169,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8137118342388500607", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676285803796?e=1677240000&v=beta&t=69safCPVZC4HoXRpAn_10xjIFqJHZ4rBLAl22S1aajg", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676285803796?e=1677240000&v=beta&t=dPoRbVmgdTrii-edHRz0bmYyGaMeLrE_v_Tzel1GhSo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676285803796?e=1677240000&v=beta&t=YUgDm72eZQ4buviWSaHoAFm7lBucru2G4ZHC6axoXVY", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676285803796?e=1677240000&v=beta&t=ei-rjOjwwhTlOOr4o26ATntyAx1UR0GFQDXVItsKsHI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEVsJxQJmZ4mw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8137118342388500607)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8137118342388500607)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Greenwashing : l'utilisation abusive du label \u00ab neutralit\u00e9 carbone \u00bb punie par la loi by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/conso-distribution/greenwashing-lutilisation-abusive-du-label-neutralite-carbone-punie-par-la-loi-1893390" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Greenwashing\u00a0: l'utilisation abusive du label \u00ab\u00a0neutralit\u00e9 carbone\u00a0\u00bb punie par la loi" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7016101905554628608,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il va devenir un peu plus difficile pour les entreprises de pr\u00e9senter leurs produits comme \"neutres\". Pas totalement impossible (cela aurait \u00e9t\u00e9 l'id\u00e9al : https://lnkd.in/dGTt6Zs), mais plus difficile : l'entreprise qui affirme qu'un de ses produits est neutre ne pourra le faire que si elle a :\n- fait un bilan des \u00e9missions de gaz \u00e0 effet de serre du produit ou service concern\u00e9 sur l'ensemble de son cycle de vie.\n- \u00e9tabli et publi\u00e9 la trajectoire de r\u00e9duction des \u00e9missions de CO2 associ\u00e9es au produit ou au service, avec des objectifs quantifi\u00e9s \u00e0 10 ans\n- pr\u00e9cis\u00e9 la nature et la description des projets utilis\u00e9s pour acheter des cr\u00e9dits (la \"compensation\").\n\nCela peut sembler un peu anecdotique de se concentrer sur la communication des entreprises au lieu de se concentrer sur leurs proc\u00e9d\u00e9s, leurs mati\u00e8res premi\u00e8res, les usages de leurs produits, etc.\n\nSauf que, dans un monde qui doit se d\u00e9carboner, le premier juge de paix auquel confronter les proc\u00e9d\u00e9s, mati\u00e8res premi\u00e8res et usages, c'est justement leur \"contenu en carbone\". Obliger les entreprises \u00e0 le mesurer, et \u00e0 le faire \u00e9voluer dans la bonne direction, est donc une figure impos\u00e9e pour que l'ensemble du syst\u00e8me se mette en mouvement. C'est bien l'objectif qui d\u00e9termine la nature de l'action \u00e0 suivre, et non l'inverse.\n\nLa sanction pr\u00e9vue en cas d'infraction peut aller jusqu'au montant d\u00e9pens\u00e9 dans la communication (donc plus d'un million si c'est \u00e0 la t\u00e9l\u00e9). A cela il faudrait probablement rajouter, en cas de condamnation, la r\u00e9putation un peu \u00e9corn\u00e9e de l'entreprise prise la main dans le pot de peinture verte, qui lui coutera aussi n\u00e9cessairement quelque chose, sur sa capacit\u00e9 \u00e0 recruter par exemple.\n\nEvidemment, l'id\u00e9al serait d'obliger \u00e0 communiquer sur chaque produit ou service son empreinte carbone sans autre forme de commentaire. A ce moment, plus besoin de se demander si un produit est neutre ou pas : on saurait combien a \u00e9t\u00e9 \u00e9mis pour sa fabrication, point. \n\nLa difficult\u00e9 pour en arriver l\u00e0 est que, \u00e0 l'heure des chaines de valeur mondialis\u00e9es (aucun m\u00e9tal incorpor\u00e9 dans un objet disponible dans notre pays ne vient de notre pays, par exemple), on ne peut pas calculer le contenu carbone d'un produit de mani\u00e8re exacte sans que l'ensemble des entreprises - en France ou \u00e0 l'\u00e9tranger - qui ont contribu\u00e9 \u00e0 la sa fabrication ne disposent d'une comptabilit\u00e9 carbone analytique. \n\nComme il est peu probable que, la semaine prochaine, la Chine, l'Allemagne, le Mexique, le Chili, le Maroc et la Turquie, et en fait tous les autres pays, imposent \u00e0 leurs entreprises de tenir une telle comptabilit\u00e9, cela signifie que, pour un temps au moins, il sera plus facile d'interdire ce qui est grossi\u00e8rement faux que de mettre en place ce qui est quantitativement exact." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7016101905554628608,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7016101906401927169,urn:li:activity:7016101906401927169,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 155, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7016101906401927169,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7016101906401927169,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7016101906401927169", + "threadId": "activity:7016101906401927169", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016101906401927169", + "urn": "urn:li:activity:7016101906401927169", + "numComments": 261, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7016101906401927169", + "reactionTypeCounts": [ + { + "count": 5552, + "reactionType": "LIKE" + }, + { + "count": 378, + "reactionType": "PRAISE" + }, + { + "count": 324, + "reactionType": "MAYBE" + }, + { + "count": 185, + "reactionType": "INTEREST" + }, + { + "count": 52, + "reactionType": "EMPATHY" + }, + { + "count": 35, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7016101906401927169", + "numLikes": 6526, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7016101906401927169", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6529, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7015751553600880640", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7015751553600880640)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7015751553600880640)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-ces-universit%C3%A9s-qui-interdisent-%C3%A0-activity-7015751553600880640-4mhu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7015751552820772864", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7015751553600880640", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7015751552820772864", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "dZdFxoV2ot1QXNgCtxl81A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7015751553600880640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9150029488320398542", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676616576342?e=1677240000&v=beta&t=FyCtPqizWs4W3ePQ2jAJ96rT0GRu0l8wnQa4T4i154Y", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676616576342?e=1677240000&v=beta&t=knk4TEM_UDQjHQ8YA-DRRF5tVa40Ppe43EzSn9tzjt0", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676616576342?e=1677240000&v=beta&t=49qrQyFKE939zdLe1k-cQLC4y79g9acZ-fjZba0KoaA", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676616576343?e=1677240000&v=beta&t=0YT7aLf9enwQkHHeoCFGjpci0N4UGsF2UW3h7l2_Aek", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHotGCXQDS2RA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9150029488320398542)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9150029488320398542)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "courrierinternational.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat. Ces universit\u00e9s qui interdisent \u00e0 leurs chercheurs de prendre l\u2019avion by courrierinternational.com", + "actionTarget": "https://www.courrierinternational.com/article/climat-ces-universites-qui-interdisent-a-leurs-chercheurs-de-prendre-l-avion" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat. Ces universit\u00e9s qui interdisent \u00e0 leurs chercheurs de prendre l\u2019avion" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7015751552820772864,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "De m\u00e9moire (car je n'ai plus la r\u00e9f\u00e9rence en t\u00eate), un professeur d'universit\u00e9 suisse a (ou avait avant covid) une empreinte carbone li\u00e9e \u00e0 sa profession d'environ 10 tonnes de CO2 par an. En cause : essentiellement les voyages en avion associ\u00e9s aux colloques qui deviennent l'ordinaire des universitaires quand ils se sont fait un nom dans leur sp\u00e9cialit\u00e9.\n\nL'\u00e9tude qui donnait ce r\u00e9sultat indiquait \u00e9galement que cette empreinte carbone \"a\u00e9rienne\" \u00e9tait croissante avec le statut : elle d\u00e9marrait \u00e0 une tonne pour un doctorat ou post-doctorant (ma m\u00e9moire me fait d\u00e9faut sur ce point pr\u00e9cis) pour finir \u00e0 10 tonnes en haut de l'\u00e9chelle (qui en Suisse s'appelle \"professeur ordinaire\" !).\n\nC'est donc une initiative int\u00e9ressante que celle de l\u2019Universit\u00e9 d\u2019Utrecht, aux\u00a0Pays-Bas, qui, apparemment, va interdire \u00e0 son personnel de prendre l'avion sur des distances inf\u00e9rieures \u00e0 700 km.\n\nL'Universit\u00e9 de Neufch\u00e2tel, elle, demande \u00e0 ce que l'avion ne soit utilis\u00e9 que si il n'y a pas d'alternative en train de moins de 10 heures. Notre gouvernement fait p\u00e2le figure avec ses 2h30 et l'exclusion d'un grand nombre de liaisons du dispositif !\n\nCette initiative commence \u00e9videmment par le plus facile, parce que, m\u00eame si 10 heures c'est long, ca reste g\u00e9rable sur une journ\u00e9e, et par ailleurs dans un train un chercheur peut travailler. Certes si son m\u00e9tier est de faire des manips sur des plantes ou des tests de r\u00e9sistance des mat\u00e9riaux il va avoir du mal \u00e0 le faire en se d\u00e9pla\u00e7ant, mais rien ne l'emp\u00eache de traiter son courrier, r\u00e9diger des comptes-rendus, en lire d'autres....\n\nMalheureusement, dans les vols a\u00e9riens, ce qui \u00e9met beaucoup ce sont les long-courrier : en gros, les \u00e9missions d'un vol sont proportionnelles au kilom\u00e9trage (pas tout \u00e0 fait parce que le d\u00e9collage consomme proportionnellement plus, mais en premi\u00e8re approximation on peut retenir ca).\n\nEt pour les long-courrier l'alternative devient moins confortable. Le train pour traverser la Russie ou les USA c'est plusieurs jours d'affil\u00e9e, et le bateau pour traverser l'Atlantique une semaine. R\u00e9duire les long courrier, qui est donc une mesure \"forte\" pour diminuer l'empreinte carbone de la recherche, signifie en pratique r\u00e9duire les colloques, ou les passer en visioconf\u00e9rence (ca va faire grincer quelques dents !).\n\nIl n'emp\u00eache que la recherche, comme le reste de nos activit\u00e9s, devra fatalement \u00e9voluer un jour ou l'autre dans un monde o\u00f9 la mobilit\u00e9 longue distance sera moins facile. Il serait souhaitable que tout nouveau projet qui d\u00e9marre soit compatible, \u00e0 la fois sur le fond et sur le mode op\u00e9ratoire du projet, avec ce cahier des charges." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7015751552820772864,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7015751553600880640,urn:li:activity:7015751553600880640,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 224, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7015751553600880640,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7015751553600880640,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7015751553600880640", + "threadId": "activity:7015751553600880640", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015751553600880640", + "urn": "urn:li:activity:7015751553600880640", + "numComments": 497, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7015751553600880640", + "reactionTypeCounts": [ + { + "count": 3816, + "reactionType": "LIKE" + }, + { + "count": 297, + "reactionType": "MAYBE" + }, + { + "count": 293, + "reactionType": "INTEREST" + }, + { + "count": 90, + "reactionType": "PRAISE" + }, + { + "count": 44, + "reactionType": "APPRECIATION" + }, + { + "count": 33, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7015751553600880640", + "numLikes": 4573, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015751553600880640", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4579, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7015289760269099008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7015289760269099008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7015289760269099008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_v%C5%93ux-2023-aux-fran%C3%A7ais-activity-7015289760269099008-rJ0N?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7015289759484760064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7015289760269099008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7015289759484760064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "HlRRkOXTBdjoJdgV3Y+8Iw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7015289760269099008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9135926289784138403", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676205431089?e=1677240000&v=beta&t=CVFKCB-CNm3BXsciwVv9Wm5Yfg8NsDticPtsxqPp45Y", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676205431089?e=1677240000&v=beta&t=QDiAYAeBXtqourVqPOFG8ZdSNiOwgV4s_nkfpcBxLew", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676205431089?e=1677240000&v=beta&t=IP5ylVl89ntHHE__-muWSA2-I_F9o2HjNuXpeTA82pY", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676205431089?e=1677240000&v=beta&t=zg7iYGDm5sRYspMLvaMN8ZvFjbUbTsKbPFtLRK4ZKJU", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGGm99cVWgHQQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9135926289784138403)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9135926289784138403)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "elysee.fr \u2022 12 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: V\u0153ux 2023 aux Fran\u00e7ais. by elysee.fr", + "actionTarget": "https://www.elysee.fr/emmanuel-macron/2022/12/31/voeux-2023-aux-francais" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "V\u0153ux 2023 aux Fran\u00e7ais." + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7015289759484760064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est l'\u00e9poque des voeux ! M\u00eame si seul le prononc\u00e9 fait foi, j'ai attentivement lu le texte mis en ligne par l'Elys\u00e9e. \n\nOn y lit \"Qui aurait imagin\u00e9 [il y a un an] que (...) nous\u00a0\u00a0aurions \u00e0 affronter (...) une effroyable crise\u00a0\u00a0\u00e9nerg\u00e9tique, une crise alimentaire mena\u00e7ante, (...) la vague d\u2019inflation, (...) ou la crise climatique\u00a0?\"\n\nQui ? Sur l'\u00e9nergie, tous ceux qui, remarquant que les combustibles fossiles sont \u00e9puisables alors qu'ils fondent la soci\u00e9t\u00e9 moderne, soulignent depuis longtemps que leur baisse subie dans un monde non pr\u00e9par\u00e9 se traduira par des cons\u00e9quences adverses d'ampleur croissante (d\u00e8s Meadows et al au moins : https://bit.ly/2HkwcIl ).\n\nL'Europe \u00e9tait bien avant l'Ukraine en baisse subie sur le p\u00e9trole (depuis 2007), le gaz (depuis 2005), le charbon (depuis les ann\u00e9es 50), et en baisse choisie sur le nucl\u00e9aire (depuis 2005). Notre baisse de production physique (des tonnes charg\u00e9es dans les camions ou des immeubles construits) a commenc\u00e9 d\u00e8s 2008. L'empreinte carbone des fran\u00e7ais a commenc\u00e9 \u00e0 baisser en m\u00eame temps que leur revenu disponible, en 2009 ou 2010, dans la foul\u00e9e de cette d\u00e9crue \u00e9nerg\u00e9tique.\n\nIl n'y a donc pas besoin d'\u00eatre grand clerc pour \"voir venir des ennuis\" avec la d\u00e9crue \u00e9nerg\u00e9tique, sans bien s\u00fbr \u00eatre en mesure de d\u00e9crire ces derniers avec pr\u00e9cision. Pour ce que j'en connais ce qui pr\u00e9c\u00e8de ne fait l'objet d'aucune attention particuli\u00e8re de l'Elys\u00e9e.\n\nSur l'alimentation, m\u00eame motif m\u00eame punition : l'agriculture moderne c'est un climat stable et des combustibles fossiles. Que le climat devienne instable et les combustibles fossiles moins accessibles, et la conclusion devient logique \u00e0 d\u00e9faut d'\u00eatre plaisante. \n\nEnfin, sur la crise climatique, c'est \u00e0 se demander ce qui est pass\u00e9 par la t\u00eate de la personne qui a r\u00e9dig\u00e9 ce discours que de poser la question de savoir \"qui l'aurait pr\u00e9dite\". S\u00e9rieux ?\n\nOn trouve ensuite \"A chaque \u00e9preuve, l\u2019Europe nous a permis d\u2019agir plus vite et plus fort\". C'est vrai et faux : l'Europe avance aujourd'hui sur deux pieds qui contribuent in\u00e9galement au mandat initial de paix et \"prosp\u00e9rit\u00e9\". Le pied \"lib\u00e9ral et concurrentiel\" tire de plus en plus contre son propre camp. On a vu ses effets sur l'\u00e9lectricit\u00e9, sur la perte industrielle ou sur l'incapacit\u00e9 \u00e0 faire \u00e9merger une agriculture \"durable\".\n\nLe pied r\u00e9glementaire prend de la vigueur. On lui doit par exemple la limitation des \u00e9missions des voitures neuves, les \u00e9conomies d'\u00e9nergie dans le b\u00e2timent, les obligations de transparence sur les \u00e9missions ou la \"taxe carbone aux fronti\u00e8res\". Mais l'Europe doit encore apprendre \u00e0 marcher -) donc coordonner ses 2 pieds - dans le monde fini.\n\nSuivent plusieurs paragraphes mentionnant que \"notre travail\" va permettre d'avancer dans la bonne direction. Mais ce discours - qui parle surtout d'intendance \u00e0 court terme, certes utile - ne d\u00e9crit pas de grand projet coh\u00e9rent de long terme qui soit lisible (et donc qui motive \u00e0 travailler). Peut-\u00eatre n'\u00e9tait-ce pas le moment d'en parler." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7015289759484760064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7015289760269099008,urn:li:activity:7015289760269099008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 259, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7015289760269099008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7015289760269099008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7015289760269099008", + "threadId": "activity:7015289760269099008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015289760269099008", + "urn": "urn:li:activity:7015289760269099008", + "numComments": 382, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7015289760269099008", + "reactionTypeCounts": [ + { + "count": 7104, + "reactionType": "LIKE" + }, + { + "count": 570, + "reactionType": "PRAISE" + }, + { + "count": 435, + "reactionType": "INTEREST" + }, + { + "count": 250, + "reactionType": "MAYBE" + }, + { + "count": 72, + "reactionType": "APPRECIATION" + }, + { + "count": 64, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7015289760269099008", + "reacted": "LIKE", + "numLikes": 8495, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7015289760269099008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 8514, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7014995835687944192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7014995835687944192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7014995835687944192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_apr%C3%A8s-une-ann%C3%A9e-agit%C3%A9e-le-monde-des-m%C3%A9taux-activity-7014995835687944192-APdy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7014995834752630785", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7014995835687944192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7014995834752630785", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "pu8QgyBDxn8M/vJSNTfCXg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7014995835687944192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9219098135315210715", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675804672450?e=1677240000&v=beta&t=yHsEYzRExqkyqfP3iCzsyH1W048JXDrcoyaU1YUdGKU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675804672450?e=1677240000&v=beta&t=Rjpmnc34ptGnOmX3PZSCy6s0BdpQsAZUy99e8vFBN34", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675804672450?e=1677240000&v=beta&t=C56D_WtSnaJ-xLm4_C--kj2jgQqYaKN3u529dspjME0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675804672450?e=1677240000&v=beta&t=BM9XcqcWkHfQhYMLv9dCmveyKK_lAISEW_e6fLd-I4g", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFDmmheuQatYA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9219098135315210715)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9219098135315210715)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Apr\u00e8s une ann\u00e9e agit\u00e9e, le monde des m\u00e9taux se pr\u00e9pare \u00e0 un supercycle by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/apres-une-annee-agitee-le-monde-des-metaux-se-prepare-a-un-supercycle-1892507" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s une ann\u00e9e agit\u00e9e, le monde des m\u00e9taux se pr\u00e9pare \u00e0 un supercycle" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7014995834752630785,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 374, + "length": 19, + "miniProfile": { + "firstName": "Christophe", + "lastName": "Poinssot", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAA24xQEBcOp94cQTsFmv_bpbgQ-B9153eZ8", + "occupation": "Directeur G\u00e9n\u00e9ral D\u00e9l\u00e9gu\u00e9 et Directeur Scientifique chez BRGM / Deputy CEO and scientific director at French Geological Survey (Brgm)", + "objectUrn": "urn:li:member:230212865", + "entityUrn": "urn:li:fs_miniProfile:ACoAAA24xQEBcOp94cQTsFmv_bpbgQ-B9153eZ8", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1617046772083?e=1681948800&v=beta&t=coZNqswSvg1ZqLHvnCcfdOC5ZTPMl8ojNv9jjIItHcM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1617046772083?e=1681948800&v=beta&t=CrFrd4e9tQsOBBv5Ez7o1EC5YtFYy3BtljlCweDL-Io", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQGD-PEAIuFPVA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "christophe-poinssot-05512165", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1628084112044?e=1681948800&v=beta&t=twpYle4QGNZu1tUE65Nn_xDxxUCpoeAEGM9PO-wecYE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1628084112044?e=1681948800&v=beta&t=-f95a7iK1s3JdEYW7S9B6gjcvlolIh-o5xz46RjKziE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1628084112044?e=1681948800&v=beta&t=wkykgdbKJjwrBkj9_8bjpWdzy2-k59ufptTYayDp-Zg", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1628084112044?e=1681948800&v=beta&t=WG4lYv3R8a4trzjyEo7K-JSQQxnrIibtc8Zw8OvtBZk", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQETwdRSJOoDlA/profile-displayphoto-shrink_" + } + }, + "trackingId": "zxSLX3JbTQCh5bk/Kboheg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Une des \u00e9quations infernales de la transition \u00e9nerg\u00e9tique, c'est de pouvoir disposer de plus en plus de m\u00e9taux, dans un monde o\u00f9 les flux internationaux seront de plus en plus chahut\u00e9s et l'\u00e9nergie \n\nPour ceux qui ont le temps (ou le prendront !), dans les auditions r\u00e9centes de la commission d'enqu\u00eate sur la perte de souverainet\u00e9 \u00e9nerg\u00e9tique de la France, il y a celle de Christophe Poinssot, qui fournit un certain nombre d'\u00e9l\u00e9ments tr\u00e8s int\u00e9ressants sur les usages et la disponibilit\u00e9 future des m\u00e9taux : https://lnkd.in/ef4BhrY5\n\nOn y apprend notamment que le monde utilisait principalement 10 m\u00e9taux en 1900, alors que c'est d\u00e9sormais de l'ordre de 60, et que nombre d'entre eux sont utilis\u00e9s de mani\u00e8re trop dilu\u00e9e dans les objets qui les contiennent pour pouvoir \u00eatre r\u00e9cup\u00e9r\u00e9s ensuite.\n\nOn y apprend aussi qu'il faut en moyenne 17 ans (dans le monde) entre la d\u00e9cision d'ouvrir une mine et le moment o\u00f9 l'exploitation d\u00e9marre. Ceci explique par exemple que la disponibilit\u00e9 mondiale en cuivre ne va pas beaucoup augmenter (voire l\u00e9g\u00e8rement diminuer) dans les 20 ans qui viennent (information rappel\u00e9e par Poinssot), et il faut voir si cela est compatible avec les plans d'\u00e9lectrification massive qui supposent une consommation accrue de ce m\u00e9tal. \n\nM\u00eame s'il faut toujours \u00eatre prudent avec les pr\u00e9visions de prix des mati\u00e8res premi\u00e8res (un des gags dans le monde du p\u00e9trole consiste \u00e0 dire : \"vous pouvez pr\u00e9voir un prix, vous pouvez pr\u00e9voir une date, mais il ne faut jamais faire les deux en m\u00eame temps !\"), il est logique de penser que cette tension devrait finir par se voir dans les prix. Dans cet article des Echos, les n\u00e9gociants interrog\u00e9s tablent tous sur des hausses significatives pour l'ann\u00e9e prochaine.\n\nDans les sc\u00e9narios de transition \u00e9nerg\u00e9tique, les alternatives sont souvent \u00e9valu\u00e9es \u00e0 l'aune des montants respectifs d'investissements demand\u00e9s. Mais ces derniers peuvent fortement d\u00e9pendre des cours des mati\u00e8res premi\u00e8res, en particulier pour les moyens qui sont \"gourmands\" en m\u00e9tal par kWh produit (ce qui est le cas - pour de b\u00eates raisons physiques - des collecteurs d'\u00e9nergies diffuses).\n\nLa sagesse voudrait donc que nous prenions nos paris avant tout sur la base des param\u00e8tres \"physiques\", en ne donnant pas aux couts actuels plus de valeur pr\u00e9dictive qu'ils n'en ont. Ca sera mon voeu pour 2023, puisque c'est l'\u00e9poque !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7014995834752630785,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7014995835687944192,urn:li:activity:7014995835687944192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7014995835687944192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7014995835687944192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7014995835687944192", + "threadId": "activity:7014995835687944192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014995835687944192", + "urn": "urn:li:activity:7014995835687944192", + "numComments": 130, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7014995835687944192", + "reactionTypeCounts": [ + { + "count": 1379, + "reactionType": "LIKE" + }, + { + "count": 175, + "reactionType": "INTEREST" + }, + { + "count": 148, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7014995835687944192", + "numLikes": 1741, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014995835687944192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1741, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7014531641989603328", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7014531641989603328)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7014531641989603328)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_litt%C3%A9rature-franc-succ%C3%A8s-du-roman-graphique-activity-7014531641989603328-k-0C?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7014531641289105408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7014531641989603328", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7014531641289105408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "BoI4DZNm7rUoj8xWGBP7Dw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7014531641989603328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8198496211263763453", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675683616896?e=1677240000&v=beta&t=UqoKmzYHwn8V7I73dA1Zq4kZWyaT9kBVD0kiayqnbQE", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675683616896?e=1677240000&v=beta&t=_H5DCX7z7BOS41vXOa-yIqPNhY_31CnLfinjKhp_vdY", + "expiresAt": 1677240000000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675683616897?e=1677240000&v=beta&t=pODs7QyriaGn_TiTiQxEbDcCmMsAxcTk6P09EaiMCrM", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675683616897?e=1677240000&v=beta&t=dk4OSUaXf1I6wSl-8zo0ofEaH5spc7TBDoi1RxWC2OA", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF6fZQs7GLi_w/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le livre le plus vendu en France est une bande-dessin\u00e9e intitul\u00e9e \"Le monde sans fin\". Plus d'un demi-million d'exemplaires ont \u00e9t\u00e9 \u00e9coul\u00e9s. L\u2019\u0153uvre est sign\u00e9e Jean-Marc Jancovici, sp\u00e9cialiste du climat et de l\u2019\u00e9nergie, et Christophe Blain, dessinateur." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8198496211263763453)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8198496211263763453)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "francetvinfo.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Litt\u00e9rature : franc succ\u00e8s du roman graphique sur la crise climatiqe \"Le Monde sans fin\" by francetvinfo.fr", + "actionTarget": "https://www.francetvinfo.fr/culture/bd/litterature-franc-succes-du-roman-graphique-sur-la-crise-climatiqe-le-monde-sans-fin_5569977.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Litt\u00e9rature : franc succ\u00e8s du roman graphique sur la crise climatiqe \"Le Monde sans fin\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7014531641289105408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Monde Sans Fin a bien march\u00e9, il semblerait :) . Peut-on tenter de comprendre pourquoi ?\n\nIl y a tout d'abord le th\u00e8me trait\u00e9 qui fait que l'on \"surfe sur la vague\" : arrivant d\u00e9sormais r\u00e9guli\u00e8rement en t\u00eate des sondages sur les pr\u00e9occupations pour l'avenir, le changement climatique, et plus r\u00e9cemment l'\u00e9nergie, int\u00e9ressent de plus en plus de monde. Un livre des m\u00eames auteurs sur la reproduction des bulots aurait probablement connu un destin un peu diff\u00e9rent.\n\nIl y a l'objet ensuite. Lorsque Christophe m'a contact\u00e9, il m'a dit la chose suivante : \"tes conf\u00e9rences sur Youtube permettent de tr\u00e8s bien comprendre la situation, mais quand on veut r\u00e9expliquer \u00e0 quelqu'un d'autre, on se rend compte que l'on n'y arrive pas\". \n\nIl avait donc d\u00e9j\u00e0 en t\u00eate de faire un livre graphique (car plus facile \u00e0 comprendre) qui puisse s'offrir en disant \"tiens, tu vas comprendre\". C'\u00e9tait sa fa\u00e7on de contribuer \u00e0 un acte militant mais tr\u00e8s bien tol\u00e9r\u00e9 (offrir un livre). Et de fait, c'est un album qui a \u00e9t\u00e9 tr\u00e8s souvent achet\u00e9 pour quelqu'un d'autre (quelques entreprises en ont m\u00eame achet\u00e9 des milliers pour leurs salari\u00e9s !).\n\nIl y a Christophe enfin. Il n'est pas qu'un ma\u00eetre du crayon : c'est aussi et surtout un perfectionniste qui ne laisse absolument rien passer sur le fond. Tant qu'un \u00e9l\u00e9ment reste incompris, obscur ou incoh\u00e9rent avec le reste, il y revient. Il ne faut pas du tout croire qu'il a dessin\u00e9 sous ma dict\u00e9e : il m'a bombard\u00e9 de questions, et nous avons pass\u00e9 des heures carr\u00e9es sur chaque case de l'album, jusqu'au moment o\u00f9 l'explication \u00e9tait compl\u00e8te et l'enchainement fluide. Accessoirement (!) c'est aussi lui qui a convaincu Dargaud.\n\nAvions nous une ambition en mati\u00e8re de ventes ? Pour ma part, je souhaitais \"faire beaucoup mieux que les essais\", mais cela d\u00e9marrait \u00e0 50.000 exemplaires, nombre qu'aucun de mes essais n'avait atteint.\n\nChristophe, lui, voulait cr\u00e9er \"un ph\u00e9nom\u00e8ne\". Au moment de notre rencontre il \u00e9tait d\u00e9j\u00e0 \"pris aux tripes\", consid\u00e9rait que le sujet trait\u00e9 \u00e9tait \"le\" sujet, et que ce livre devait \u00eatre \"le\" livre. En cons\u00e9quence, il voulait faire mieux que Quai d'Orsay, dont le premier tome a \u00e9t\u00e9 vendu \u00e0 250.000 exemplaires. C'est lui qui a eu raison :)\n\nPour ma part, j'avais deux autres souhaits : d'abord qu'une BD permette de toucher des gens qui n'auraient jamais achet\u00e9 un essai. Sur ce plan l\u00e0, on peut dire que le pari est r\u00e9ussi. Et ensuite, que plus de femmes s'int\u00e9ressent \u00e0 la question \u00e9nerg\u00e9tique. \n\nPour les mails spontan\u00e9s que je re\u00e7ois, les demandes de connexion linkedin (que je ne peux plus satisfaire la quasi-totalit\u00e9 du temps, car je suis proche de mon quota !), les r\u00e9actions \u00e0 mes posts ici, et quelques autres \"points de sonde\", dans plus de 80% des cas j'ai affaire \u00e0 un homme (et >98% quand c'est un commentaire agressif :) ). \n\nJe ne sais pas si cette nouvelle forme d'expression a un peu corrig\u00e9 ce d\u00e9s\u00e9quilibre (pas pour les agressions !), mais si oui j'en serai heureux." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7014531641289105408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7014531641989603328,urn:li:activity:7014531641989603328,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 320, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7014531641989603328,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7014531641989603328,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7014531641989603328", + "threadId": "activity:7014531641989603328", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014531641989603328", + "urn": "urn:li:activity:7014531641989603328", + "numComments": 484, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7014531641989603328", + "reactionTypeCounts": [ + { + "count": 4978, + "reactionType": "LIKE" + }, + { + "count": 687, + "reactionType": "PRAISE" + }, + { + "count": 250, + "reactionType": "EMPATHY" + }, + { + "count": 77, + "reactionType": "APPRECIATION" + }, + { + "count": 21, + "reactionType": "INTEREST" + }, + { + "count": 20, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7014531641989603328", + "numLikes": 6033, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014531641989603328", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6034, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7014139569486888960", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7014139569486888960)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7014139569486888960)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_patrick-pouyann%C3%A9-pdg-de-totalenergies-audition-activity-7014139569486888960-R4wo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7014139568698368000", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7014139569486888960", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7014139568698368000", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "kWsei50AyxnbhfQ32ugDSA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7014139569486888960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7334399710424462882", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1675558478787?e=1677240000&v=beta&t=Qubh7r5hmc0FOI3u9HEnfNRCkVzBPnsEVPgzik-hIg0", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675558478787?e=1677240000&v=beta&t=NxGoR36p6qo0VGoWVNJZZN03IMEQBnqTy3445sKbM4I", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675558478788?e=1677240000&v=beta&t=OEt6gJub-B4mpvaAjoULj4Opuz4TUtXLzqCCjgn46q8", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675558478788?e=1677240000&v=beta&t=2eYMz9AULBoFa27mtsYGK7WnCzd-nHCsG8mo4fFSt9k", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH1QiaF0aoWGA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7334399710424462882)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7334399710424462882)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Patrick Pouyann\u00e9 -PDG de TotalEnergies, audition, Assembl\u00e9e nationale, 23 novembre 2022 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=syo0atzlYH0" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Commission d'enqu\u00eate \"Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France\"\n\nSource : www.assemblee-nationale.fr" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Patrick Pouyann\u00e9 -PDG de TotalEnergies, audition, Assembl\u00e9e nationale, 23 novembre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7014139568698368000,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tr\u00e8s int\u00e9ressante audition de Patrick Pouyann\u00e9 par la \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\".\n\nQu'on le veuille ou non, \u00e0 tr\u00e8s court terme la s\u00e9curit\u00e9 d'approvisionnement du pays d\u00e9pend largement du comportement des acteurs du monde p\u00e9trolier et gazier, de fait num\u00e9riquement moins couvert par les auditions de cette commission que le secteur \u00e9lectrique, alors que les hydrocarbures dominent dans l'approvisionnement national. Les quasiment 2 heures pass\u00e9es avec le PDG de Total permettent de comprendre, de fa\u00e7on bienvenue, beaucoup de choses sur le fonctionnement de ce monde l\u00e0.\n\nUne des pr\u00e9occupations du moment est bien sur l'approvisionnement en gaz. Avec l'arr\u00eat des importations russes, la marge de manoeuvre restante est le Gaz Naturel Liqu\u00e9fi\u00e9, pour lequel nous sommes en concurrence avec le reste du monde. Un moyen de faire baisser les prix \u00e0 court terme serait de nouer des contrats de long terme. Mais.... cela signifie que l'on s'engage \u00e0 consommer du gaz longtemps, ce qui est contradictoire avec l'engagement de neutralit\u00e9 !\n\nPouyann\u00e9 explique aussi pourquoi il a investi dans les centrales \u00e9lectriques \u00e0 gaz : l'essor des modes \u00e9lectriques intermittents rend de toute fa\u00e7on n\u00e9cessaires ces moyens de production si l'on veut un approvisionnement \u00e9lectrique continu (\u00e0 ce propos il affirme que le nucl\u00e9aire fran\u00e7ais n'est pas modulable, ce qui est inexact et est une des deux erreurs que j'ai relev\u00e9es dans son propos). \n\nPouyann\u00e9 confirme dans cette audition que le taux naturel de d\u00e9clin des puits de p\u00e9trole en production dans le monde est de 4% \u00e0 5% par an, ce qui lui fait conclure que, pour que son secteur fasse sa part dans les objectifs climat, il suffit d'arr\u00eater d'investir (mais il dit que ce n'est pas encore le moment, ce qui est inexact puisque les \u00e9missions devraient baisser de 5% par an d\u00e8s demain matin pour tenir les 2\u00b0C).\n\nIl indique que Total a regard\u00e9 le nucl\u00e9aire mais a recul\u00e9 \u00e0 cause de la longueur des engagements, qui ne lui semblent compatibles qu'avec le mode de fonctionnement d'une entreprise publique.\n\nIl s'exprime aussi sur le solaire, l'\u00e9olien, la \"concurrence\" sur l'\u00e9lectricit\u00e9, le biogaz, l'hiver 2023 qui sera plus compliqu\u00e9 que l'actuel, la demande \u00e9nerg\u00e9tique des pays \u00e9mergents qui pour le moment est impossible \u00e0 satisfaire sans fossiles additionnel, la Californie et le Qatar...\n\nA d\u00e9faut de fournir les bonnes r\u00e9ponses pour certain(e)s, cette audition permet de poser quelques questions qui piquent un peu. Et quand la r\u00e9ponse de Pouyann\u00e9 nous agace, c'est parfois tout simplement parce qu'il nous place face \u00e0 nos propres contradictions." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7014139568698368000,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7014139569486888960,urn:li:activity:7014139569486888960,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 125, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7014139569486888960,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7014139569486888960,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7014139569486888960", + "threadId": "activity:7014139569486888960", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014139569486888960", + "urn": "urn:li:activity:7014139569486888960", + "numComments": 224, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7014139569486888960", + "reactionTypeCounts": [ + { + "count": 3795, + "reactionType": "LIKE" + }, + { + "count": 590, + "reactionType": "INTEREST" + }, + { + "count": 577, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7014139569486888960", + "numLikes": 5014, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7014139569486888960", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5016, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 Edited \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7013918188404899840", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7013918188404899840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7013918188404899840)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_changement-climatique-lagriculture-n%C3%A9erlandaise-activity-7013918188404899840-n2gn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7013918187515691008", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7013918188404899840", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7013918187515691008", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "ibFDVLnACqosEfEhyi4WCQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7013918188404899840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7180284881110044128", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675856954303?e=1677240000&v=beta&t=uEBZSjrgFPcdFGtOL5DrEJPRdoEvqpT_2JmCWEArtR4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675856954304?e=1677240000&v=beta&t=oFZiEZbBylyp36N6gdzB5Bj3VgGfGJNXAP6lHaKb6rs", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675856954304?e=1677240000&v=beta&t=jlTSxGZNldMTRycqa2Pm_kt90EUaXfwC7G0JdM1pSW0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675856954304?e=1677240000&v=beta&t=vlneTm6qMDTRHy4I0dOZmGIV3YCZ3HE9P_7txZrJnpk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFaWrlSgQyIEg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7180284881110044128)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7180284881110044128)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Changement climatique : l'agriculture n\u00e9erlandaise plong\u00e9e dans une crise sans pr\u00e9c\u00e9dent by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/changement-climatique-lagriculture-neerlandaise-plongee-dans-une-crise-sans-precedent-1892004" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Changement climatique\u00a0: l'agriculture n\u00e9erlandaise plong\u00e9e dans une crise sans pr\u00e9c\u00e9dent" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7013918187515691008,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "On peut appeler cela un miracle ou une h\u00e9r\u00e9sie, selon le point de vue : selon Les Echos, les Pays Bas, pays de 42.000 km2 de superficie, est le 2\u00e8 exportateur mondial de produits agricoles et agroalimentaires, derri\u00e8res les USA, pays 230 fois plus vaste, et devant la France, qui est plus de 10 fois plus vaste, et tout cela avec 52.000 agriculteurs seulement, qui commandent forc\u00e9ment \u00e0 beaucoup beaucoup de machines.\n\nCar, \u00e9videmment, ce n'est pas tant aux vastes terres fertiles de ce pays tr\u00e8s dens\u00e9ment peupl\u00e9 que l'on doit cela, mais \u00e0 l'\u00e9nergie. Le mod\u00e8le n\u00e9erlandais s'est bas\u00e9 largement sur les exploitations intensives qui demandent des engrais (du gaz et du p\u00e9trole), des serres (du gaz pour les chauffer et pour faire le verre), des \u00e9levages intensifs, impossibles \u00e0 approvisionner sans d'importants volumes de transport associ\u00e9s (pour faire venir les aliments) et des produits v\u00e9g\u00e9taux pas chers. Un mod\u00e8le fortement exportateur est aussi un mod\u00e8le fortement d\u00e9pendant des transports internationaux (du p\u00e9trole \u00e0 nouveau).\n\nCe d\u00e9veloppement est \u00e9videmment all\u00e9 avec une augmentation de quelques pressions environnementales (effluents ou \u00e9missions), et est d\u00e9pendant d'une \u00e9nergie abondante et pas ch\u00e8re. Le d\u00e9sir de limiter les nuisances environnementales et la \"crise du gaz\" rebattent fortement les cartes. \n\nRappelons que la production hollandaise de gaz, qui \u00e9tait encore tr\u00e8s significative il y a quelques ann\u00e9es, s'est brusquement effondr\u00e9e apr\u00e8s la d\u00e9cision d'arr\u00eater l'exploitation du plus grand champ gazier d'Europe du Nord (Groninge), qui avait fait de ce pays une petite Norv\u00e8ge pendant de longues d\u00e9cennies.\n\nCet exemple hollandais est en fait embl\u00e9matique de ce qui finira par arriver ailleurs. Une agriculture avec peu de monde, tr\u00e8s m\u00e9canis\u00e9e, tr\u00e8s d\u00e9pendante des transports amont et aval, et tr\u00e8s d\u00e9pendante des engrais et des phytosanitaires, est un enfant de la mondialisation, et aura du mal \u00e0 survivre face \u00e0 la d\u00e9crue \u00e9nerg\u00e9tique. \n\nComme le paysage agricole est tr\u00e8s long \u00e0 r\u00e9orienter (parce que c'est un domaine de traditions, et parce que l'organisation globale mise en place ne se modifie pas en une semaine), il n'est que temps de se demander \u00e0 quoi elle devra ressembler si les conditions climatiques et \u00e9nerg\u00e9tiques de cette ann\u00e9e 2022 deviennent la norme, voire \"moins pire\" que cette derni\u00e8re.\n\nAu Shift Project, cela fait partie de nos ambitions pour 2023 que d'y revenir (le chapitre du PTEF sur l'agriculture n'est pas suffisant \u00e0 nos yeux et manger est raisonnablement vital). Mais nous esp\u00e9rons bien ne pas \u00eatre les seuls \u00e0 avoir envie de mettre un peu de jus de cerveau dans la question !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7013918187515691008,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7013918188404899840,urn:li:activity:7013918188404899840,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 175, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7013918188404899840,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7013918188404899840,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7013918188404899840", + "threadId": "activity:7013918188404899840", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013918188404899840", + "urn": "urn:li:activity:7013918188404899840", + "numComments": 264, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7013918188404899840", + "reactionTypeCounts": [ + { + "count": 4160, + "reactionType": "LIKE" + }, + { + "count": 796, + "reactionType": "INTEREST" + }, + { + "count": 697, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "APPRECIATION" + }, + { + "count": 42, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7013918188404899840", + "numLikes": 5754, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013918188404899840", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5756, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7013550267006656512", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7013550267006656512)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7013550267006656512)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_depuis-quelques-semaines-le-ton-monte-parfois-activity-7013550267006656512-Ld4Y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7013550266134220800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7013550267006656512", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7013550266134220800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "aKTxw5IAL53tcsSyljOMiA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7013550267006656512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGcco5e3bgq2A", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGcco5e3bgq2A", + "artifacts": [ + { + "width": 960, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1672160688444?e=1679529600&v=beta&t=0NtzRPPsLqWL9YK6aCg9nEKkpGSYtL5yXqjRFjLjVYI", + "expiresAt": 1679529600000, + "height": 960 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1672160688455?e=1679529600&v=beta&t=Prf9LxDp9ZwfrAt_t1F6usfb0vIPrSA3vLyVy6_9VK8", + "expiresAt": 1679529600000, + "height": 20 + }, + { + "width": 960, + "fileIdentifyingUrlPathSegment": "1280/0/1672160688455?e=1679529600&v=beta&t=ig8BMsFEz2yhVd0QhrbfdSe_vK-R-Ddf-CC021JdxCw", + "expiresAt": 1679529600000, + "height": 960 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1672160688455?e=1679529600&v=beta&t=ZBymUF-uC8cOMq9iNFut2_3R-nxZ9oZ-ouWr3u51uZU", + "expiresAt": 1679529600000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1672160688455?e=1679529600&v=beta&t=IfdWrERVd7psbdid9rQ8wKLCPNoxU9jONS1hCl9inKg", + "expiresAt": 1679529600000, + "height": 160 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1672160688455?e=1679529600&v=beta&t=si7Z51ZRrGS7HBxMDxLAEo5cinJIpf06UhK6T92_JBU", + "expiresAt": 1679529600000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGcco5e3bgq2A/feedshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "text, engineering drawing, calendar" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7013550266134220800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis quelques semaines, le ton monte parfois sur ce r\u00e9seau \u00e0 propos de certaines de mes prises de position. Puisque la fin de l'ann\u00e9e (ou plut\u00f4t le d\u00e9but de l'ann\u00e9e nouvelle) c'est le moment des bonnes r\u00e9solutions, je voudrais en proposer quelques unes pour les \u00e9changes qui peuvent avoir lieu sur ce que j'aurais dit ou \u00e9crit. \n\nCela s'applique id\u00e9alement \u00e0 ceux qui me critiquent (un exercice utile pour moi car on ne progresse qu'en \u00e9tant sorti de sa zone de confort), et plus encore \u00e0 ceux qui prennent le clavier pour r\u00e9pondre aux premiers.\n\nEssayez de s\u00e9parer le message du messager. Un argument s'examine au fond, et non en fonction de celui qui l'invoque. Si une personne que je d\u00e9teste cordialement dit que 2 et 2 font 4, il n'a pas tort parce que sa t\u00eate ne me revient pas. C'est seulement une fois que l'on a \u00e9ventuellement fait la preuve d'un raisonnement erron\u00e9 que l'on peut se demander si cela a a un rapport avec la profession - ou une autre caract\u00e9ristique - de la personne qui l'a tenu. \n\nMais ca va dans cet ordre l\u00e0 et pas dans le sens inverse. A titre personnel je n'invoque \u00e0 peu pr\u00e8s jamais la profession de mes \"contradicteurs\" dans un argumentaire (m\u00eame si parfois il me semble \u00e9vident qu'elle explique la motivation).\n\nEssayez de rester courtois. L'agressivit\u00e9 - ou pire, l'insulte ou la calomnie - clarifient rarement le d\u00e9bat. Les \u00e9changes \u00e9tant publics, on s'adresse autant \u00e0 son contradicteur qu'\u00e0 toutes les personnes qui vont lire l'\u00e9change, et ces derni\u00e8res apprendront plus avec des argumentaires pos\u00e9s qu'avec des invectives. Linkedin n'est normalement ni un pr\u00e9toire ni un plateau de t\u00e9l\u00e9vision !\n\nNe faites pas dire \u00e0 votre opposant ce qu'il ne dit pas. Le proc\u00e9d\u00e9 qui consiste par commencer \u00e0 d\u00e9former ce que dit l'adversaire pour ensuite mieux le combattre est malheureusement assez r\u00e9pandu, mais dans le d\u00e9bat d'id\u00e9es il va assez souvent se retourner t\u00f4t ou tard contre celui ou celle qui l'emploie. \n\nD\u00e9battre prend du temps. Mieux vaut s'abstenir de r\u00e9pondre que de le faire de mani\u00e8re inappropri\u00e9e faute de temps pour mettre son raisonnement en forme.\n\nDans le m\u00eame esprit, il arrive malheureusement que, avec certaines personnes, il soit impossible de sortir du dialogue de sourds (on revient encore et encore sur les m\u00eames arguments alors que l'on y a r\u00e9pondu N fois). A ce moment il faut savoir qu'\u00e0 l'impossible nul n'est tenu et la meilleure des choses \u00e0 faire est d'arr\u00eater l'\u00e9change.\n\nIl est essentiel qu'en d\u00e9mocratie il y ait confrontation d'id\u00e9es. C'est comme cela que l'on finit par avoir de la convergence (n\u00e9cessaire pour d\u00e9gager des majorit\u00e9s). Mais quand la forme employ\u00e9e aboutit \u00e0 des crispations dures, on s'\u00e9loigne en fait de l'objectif que l'on voulait atteindre (converger). Donc autant l'\u00e9viter, et ce d'autant plus que l'on parle d'un sujet essentiel !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7013550266134220800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7013550267006656512,urn:li:activity:7013550267006656512,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 420, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7013550267006656512,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7013550267006656512,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7013550267006656512", + "threadId": "activity:7013550267006656512", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013550267006656512", + "urn": "urn:li:activity:7013550267006656512", + "numComments": 794, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Valentin Derouet" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7013550267006656512", + "reactionTypeCounts": [ + { + "count": 9279, + "reactionType": "LIKE" + }, + { + "count": 1102, + "reactionType": "PRAISE" + }, + { + "count": 605, + "reactionType": "APPRECIATION" + }, + { + "count": 240, + "reactionType": "EMPATHY" + }, + { + "count": 46, + "reactionType": "INTEREST" + }, + { + "count": 45, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7013550267006656512", + "numLikes": 11317, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013550267006656512", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 11357, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7013230316441976832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7013230316441976832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7013230316441976832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cest-moins-anxiog%C3%A8ne-ces-artisans-qui-activity-7013230316441976832-Qt4-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7013230315577987072", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7013230316441976832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7013230315577987072", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "wJdm1V8qqrLqxFmh4jB13Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7013230316441976832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7556560582917123471", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1675845426153?e=1677240000&v=beta&t=oNLpL8088oAYF6YxfWfF8M0syn20v2OmcQJ2aXqKKpw", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675845426153?e=1677240000&v=beta&t=m3tnF3kR4XdDydxNSM87HZEM773bRTckF_vtQUepHRA", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675845426153?e=1677240000&v=beta&t=12mKmqaSrbNsu1SV7k18Ogg8zPFMoJB1A96JldsNtR0", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675845426153?e=1677240000&v=beta&t=52TPCIY5Pgr_4ogh6g3kXv8XE0LNpSnYq72DRhMtfmc", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHbBuUiBMkX6Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le v\u00e9lo cargo d\u00e9livre en centre-ville 60% plus rapidement que celle d'une camionnette diesel selon l'\u00e9tude \u00abThe Promise of LowCarbon Freight\u00bb." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7556560582917123471)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7556560582917123471)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lefigaro.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00abC'est moins anxiog\u00e8ne\u00bb : ces artisans qui font le choix de se d\u00e9placer en v\u00e9lo-cargo by lefigaro.fr", + "actionTarget": "https://www.lefigaro.fr/societes/c-est-moins-anxiogene-ces-artisans-qui-font-le-choix-de-se-deplacer-en-velo-cargo-20221223" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00abC'est moins anxiog\u00e8ne\u00bb : ces artisans qui font le choix de se d\u00e9placer en v\u00e9lo-cargo" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7013230315577987072,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Moins cher, plus rapide en ville, et \u00e9videmment beaucoup plus bas carbone que la camionnette, m\u00eame \u00e9lectrique : le v\u00e9lo-cargo pointe de plus en plus le bout de sa roue en univers urbain (ou de sa p\u00e9dale).\n\nMoins cher \u00e0 l'achat, le v\u00e9lo cargo l'est presque d'un facteur 5 \u00e0 10 si l'on compare son prix neuf avec celui d'un v\u00e9hicule de type Kangoo (thermique ou \u00e9lectrique) neuf. Mais, avec une consommation de l'ordre de 10 Wh par km, il l'est aussi \u00e0 l'usage : face \u00e0 un v\u00e9hicule thermique il n'y a pas photo (6 litres de p\u00e9trole aux 100 km = 600 Wh de p\u00e9trole par km), et m\u00eame face \u00e0 une camionnette \u00e9lectrique il y a plus d'un facteur 10.\n\nSon bilan carbone est aussi consid\u00e9rablement plus faible : \n- la batterie \u00e9tant 100 fois plus petite (0,5 kWh contre 50 en gros) ses \u00e9missions de fabrication le sont aussi \n- le poids \u00e9tant 20 fois plus faible (50 kg contre 1000 kg) les \u00e9missions de fabrication du v\u00e9hicule hors batterie sont en proportion identique.\n\nM\u00eame dans un pays produisant toute son \u00e9lectricit\u00e9 au charbon, passer d'une camionnette thermique \u00e0 un v\u00e9lo cargo divise les \u00e9missions de livraison par un facteur de plusieurs dizaines.\n\nEnfin, en ville, il est plus rapide qu'une camionnette. Cette fois ci c'est l'espace au sol qui lui procure son avantage : les bouchons ont moins de prise !\n\nAjoutons que c'est aussi moins bruyant, et engendre tr\u00e8s peu de pollution locale (les particules des freins et des pneus essentiellement).\n\nPour autant il n'est pas difficile de voir que l'essentiel de ce qui circule en ville (du moins en Occident) reste actionn\u00e9 par un moteur thermique. A l'\u00e9vidence le v\u00e9lo cargo ne peut pas rivaliser sur tous les plans (un r\u00e9servoir avec le plein d'essence procure une bien plus grande autonomie qu'une batterie charg\u00e9e de v\u00e9lo \u00e9lectrique), et par ailleurs les moyens de transport sont toujours dimensionn\u00e9s \u00e0 leur usage de pointe et la charge utile maximale d'une camionnette reste sup\u00e9rieure \u00e0 ce que peut transporter ce genre de v\u00e9hicule. Mais cela ne s'applique pas tout le temps, puisque quelques intr\u00e9pides \"basculent\" !\n \nLe t\u00e9moignage d'une des personnes interrog\u00e9es dans cet article indique qu'il a opt\u00e9 pour ce mode de transport \u00e0 la suite d'une panne de son v\u00e9hicule pr\u00e9c\u00e9dent. Il n'est probablement pas le seul qui ait opt\u00e9 pour le v\u00e9lo (cargo ou pas) contraint au d\u00e9but, par choix ensuite. Comme on disait dans une vieille pub, l'essayer c'est apparemment souvent l'adopter.\n\nPeut-\u00eatre que l'on pourrait imaginer que dans le cadre de toute formation d'artisan il y ait de mani\u00e8re obligatoire l'essai de ce genre de v\u00e9hicule :) ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7013230315577987072,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7013230316441976832,urn:li:activity:7013230316441976832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 269, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7013230316441976832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7013230316441976832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7013230316441976832", + "threadId": "activity:7013230316441976832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013230316441976832", + "urn": "urn:li:activity:7013230316441976832", + "numComments": 674, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7013230316441976832", + "reactionTypeCounts": [ + { + "count": 2967, + "reactionType": "LIKE" + }, + { + "count": 120, + "reactionType": "PRAISE" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 79, + "reactionType": "MAYBE" + }, + { + "count": 61, + "reactionType": "EMPATHY" + }, + { + "count": 39, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7013230316441976832", + "numLikes": 3369, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7013230316441976832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3373, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7012438021207654401", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7012438021207654401)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7012438021207654401)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_no%C3%ABl-2022-quelles-sont-les-%C3%A9missions-de-activity-7012438021207654401-BLYG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7012438020716929024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7012438021207654401", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7012438020716929024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "QDeuc9RzaYggmTPD2YEWIw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7012438021207654401,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9204072766123965787", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675523063047?e=1677240000&v=beta&t=nHBLLK6hJcw6DTId6ssgI1ZdOeEcjuRuaBFYuWqI6Co", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675523063047?e=1677240000&v=beta&t=jbGlBwzMe6801mfgt6ChUL4OCBtFPC0GTbIDXVg2G_o", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675523063047?e=1677240000&v=beta&t=x90-nfvUND7kInpsZj2VTdmdBdAhLkul6mX_GRfH87Q", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675523063047?e=1677240000&v=beta&t=8QKNvlbqXhFVLYl1-XpQ2eOPK2L-TroGVhGDwD_m3E0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEyPLv-QqAtBg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9204072766123965787)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9204072766123965787)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: No\u00ebl 2022 : quelles sont les \u00e9missions de gaz \u00e0 effet de serre particuli\u00e8res en cette p\u00e9riode de f\u00eate ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900218075-noel-2022-quelles-sont-les-emissions-de-gaz-a-effet-de-serre-particulieres-en-cette-periode-de-fete" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "No\u00ebl 2022 : quelles sont les \u00e9missions de gaz \u00e0 effet de serre particuli\u00e8res en cette p\u00e9riode de f\u00eate ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7012438020716929024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Sapin en plastique artificiel r\u00e9utilisable ou sapin naturel qui ne l'est pas ? C'\u00e9tait traditionnellement la question de la rubrique \u00e9colo sur les radios dans les jours et semaines pr\u00e9c\u00e9dant Noel.\n\nEn fait, cette question est l'arbre qui cache la for\u00eat. Car dans les \u00e9missions de gaz \u00e0 effet de serre associ\u00e9es \u00e0 cette f\u00eate de fin d'ann\u00e9e, les gros morceaux sont ailleurs, et principalement dans les postes suivants :\n- les cadeaux\n- les d\u00e9placements pour se retrouver en famille\n- et apr\u00e8s on va trouver la nourriture (car entre le fois gras et le chapon, c'est rarement un repas pauvre en produits animaux).\n\nDans cette chronique je n'ai pas mentionn\u00e9 les logements secondaires chauff\u00e9s, qui ne sont pas propres \u00e0 Noel, mais concernent toutes les vacances d'hiver, cependant c'est aussi un poste qui va peser quelque chose dans l'ensemble.\n\nFaut-il se priver de tout pour \u00eatre \u00e9colo alors ? Cet exemple illustre lui aussi que d'\u00eatre heureux dans un monde de limites va nous demander un peu de cr\u00e9ativit\u00e9 et des normes sociales qui changent. \n\nIl y a quand m\u00eame une bonne nouvelle dans l'ensemble : \u00e0 condition de ne pas incin\u00e9rer les coquilles ensuite (sinon le CO2 est rel\u00e2ch\u00e9 dans l'air), manger des huitres ne r\u00e9chauffe quasiment pas le climat. En effet le calcaire des coquilles n'est rien d'autre que du carbone atmosph\u00e9rique s\u00e9questr\u00e9 par le m\u00e9tabolisme des petites b\u00eates. \n\n1 kg de coquilles d'huitres contient 450 grammes de CO2. C'est beaucoup plus que les \u00e9missions de son transport depuis le lieu d'\u00e9levage. Il faut certes ajouter les \u00e9missions de l'exploitation ostr\u00e9icole, mais c'est tr\u00e8s certainement la prot\u00e9ine la plus bas carbone du r\u00e9veillon. Et la nuit sera plus calme apr\u00e8s une douzaine d'huitre qu'apr\u00e8s une douzaine de dindes aux marrons !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7012438020716929024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7012438021207654401,urn:li:activity:7012438021207654401,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 93, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7012438021207654401,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7012438021207654401,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7012438021207654401", + "threadId": "activity:7012438021207654401", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012438021207654401", + "urn": "urn:li:activity:7012438021207654401", + "numComments": 156, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7012438021207654401", + "reactionTypeCounts": [ + { + "count": 1320, + "reactionType": "LIKE" + }, + { + "count": 98, + "reactionType": "INTEREST" + }, + { + "count": 36, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "EMPATHY" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7012438021207654401", + "numLikes": 1506, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012438021207654401", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1598, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1mo \u2022 ", + "accessibilityText": "1 month ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7012013351413121024", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7012013351413121024)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7012013351413121024)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_souverainet%C3%A9-et-ind%C3%A9pendance-%C3%A9nerg%C3%A9tique-activity-7012013351413121024-O4Qb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7012013350385500161", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7012013351413121024", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7012013350385500161", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "4/tvoUnwXvcYQIBxS7hTlw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7012013351413121024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7036454563543430667", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675423596080?e=1677240000&v=beta&t=p9xbqpJ-c1Cz-XgTW4S91ELWetQ-IS-F-7-nTsUrLLI", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 914, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675423596080?e=1677240000&v=beta&t=R8G-Q8_0ACC_Z2zV5ta7zRPwsnKJPepmXlXEJdzkzEg", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675423596080?e=1677240000&v=beta&t=MAGbW2dYoxqPb8V-njj9Pfsfd5c_EoKfXKLR3IqyM8s", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675423596080?e=1677240000&v=beta&t=JSO513tt_3CQ5tBRuqd7Xq18vizRPwTunMf2DCmkKUo", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGJBWYjNebuuQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7036454563543430667)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7036454563543430667)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "videos.assemblee-nationale.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Fran\u00e7ois Brottes, Conseiller-ma\u00eetre \u00e0 la Cour des comptes ; M. Jean-Bernard L\u00e9vy, ancien pr\u00e9sident-directeur g\u00e9n\u00e9ral de EDF - Mercredi 14 d\u00e9cembre 2022 on videos.assemblee-nationale.fr", + "actionTarget": "https://videos.assemblee-nationale.fr/video.12647058_6399f0a907461.souverainete-et-independance-energetique-de-la-france--m-francois-brottes-conseiller-maitre-a-la--14-decembre-2022" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "- \u00c0 17 heures : - Audition, ouverte \u00e0 la presse, de M. Fran\u00e7ois Brottes, Conseiller-ma\u00eetre \u00e0 la Cour des comptes, ancien Pr\u00e9sident du directoire de R\u00e9seau de transport d\u2019\u00e9lectricit\u00e9 (RTE), ancien D\u00e9put\u00e9 - \u00c0 18 heures 30 : - Audition, ouverte \u00e0 la..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Souverainet\u00e9 et ind\u00e9pendance \u00e9nerg\u00e9tique de la France : M. Fran\u00e7ois Brottes, Conseiller-ma\u00eetre \u00e0 la Cour des comptes ; M. Jean-Bernard L\u00e9vy, ancien pr\u00e9sident-directeur g\u00e9n\u00e9ral de EDF - Mercredi 14 d\u00e9cembre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7012013350385500161,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Certain(e)s d'entre vous se sont peut-\u00eatre demand\u00e9s un jour d'o\u00f9 sortait l'abaissement de la part du nucl\u00e9aire \u00e0 50% de la production \u00e9lectrique (initialement en 2025 quand Hollande est \u00e9lu pr\u00e9sident, en 2012) figurant dans la Loi de Transition Energ\u00e9tique pour la Croissance Verte de 2015.\n\nCette audition de Fran\u00e7ois Brottes (ancien pr\u00e9sident de la Commission des Affaires Economiques \u00e0 l'Assembl\u00e9e au moment de la discussion et du vote de cette loi, ancien pr\u00e9sident de RTE) donne la r\u00e9ponse. Cet objectif d\u00e9coule uniquement d'un \"jugement de Salomon\" rendu dans l'alliance Verts-PS de 2011, entre ceux qui voulaient un objectif de sortie compl\u00e8te du nucl\u00e9aire, et ceux qui voulaient en garder autant. La n\u00e9gociation a d\u00e9bouch\u00e9 sur ces 50% m\u00e9dians, cens\u00e9s contenter \u00e0 peu pr\u00e8s tout le monde.\n\nMais Brottes dit dans la m\u00eame audition que, devenu pr\u00e9sident de RTE, il n'aura eu de cesse d'expliquer au gouvernement que cet objectif de 50% en 2025, qu'il a fait voter comme artisan de la LTCEV, n'\u00e9tait pas r\u00e9aliste ! Il dit aussi qu'il regrette de ne pas avoir pris l'avis de RTE avant de faire voter la loi... comme quoi de temps en temps \u00e9couter les gens du m\u00e9tier avant de d\u00e9cider plut\u00f4t qu'apr\u00e8s n'est pas n\u00e9cessairement une mauvaise id\u00e9e.\n\nBrottes insiste beaucoup sur le fait que la baisse du nucl\u00e9aire \u00e9tait n\u00e9cessaire pour \"d\u00e9velopper les ENR\", et que cela a \u00e9t\u00e9 \"un succ\u00e8s\". Mais la question ne lui est pas pos\u00e9e de savoir pourquoi taper sur le nucl\u00e9aire \u00e9tait un pr\u00e9requis pour augmenter les ENR, ni pourquoi il \u00e9tait pertinent de remplacer une production \u00e9lectrique sans combustion par une autre, sachant que les \u00e9oliennes et panneaux solaires (et le r\u00e9seau \u00e0 d\u00e9velopper, ce qu'indique aussi Brottes) ne sont ni plus ni moins renouvelables que les centrales nucl\u00e9aires (et pas n\u00e9cessairement moins risqu\u00e9s).\n\nOn apprend aussi qu'un r\u00e9seau avec beaucoup de dispositifs de production r\u00e9partis demande de l'\u00e9lectronique partout, alors que les r\u00e9seaux \u00e9lectriques \"descendants\" et les r\u00e9acteurs nucl\u00e9aires peuvent fonctionner de mani\u00e8re analogique. Personne n'a demand\u00e9 si cela \u00e9tait g\u00eanant ou pas pour la souverainet\u00e9 \u00e9nerg\u00e9tique.\n\nBrottes explique aussi qu'il a \u00e9t\u00e9 \u00e0 l'origine de l'arenh, qui a \u00e9t\u00e9 une mani\u00e8re d'\u00e9viter la scission du parc nucl\u00e9aire entre deux exploitants (autre mani\u00e8re de supprimer le monopole, ce qui \u00e9tait l'objectif europ\u00e9en). \n\nEn fait le mal originel a \u00e9t\u00e9 de faire de l'\u00e9lectricit\u00e9 un produit \"ordinaire\", comme des chaussettes ou des yaourts, devant donc faire l'objet d'un march\u00e9 \"ordinaire\", au passage sans monopole d'aucune sorte. Une fois cette d\u00e9cision prise, il n'y avait que de mauvaises mani\u00e8res de s'en sortir...\n\nDans l'ensemble il faut s'armer de patience pour d\u00e9nicher les faits int\u00e9ressants dans cette audition, assez \"louvoyante\" et o\u00f9 l'absence de r\u00e9ponse claire \u00e0 la question pos\u00e9e est plus la r\u00e8gle que l'exception. Mais la compr\u00e9hension est parfois \u00e0 ce prix !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7012013350385500161,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7012013351413121024,urn:li:activity:7012013351413121024,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7012013351413121024,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7012013351413121024,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7012013351413121024", + "threadId": "activity:7012013351413121024", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012013351413121024", + "urn": "urn:li:activity:7012013351413121024", + "numComments": 205, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7012013351413121024", + "reactionTypeCounts": [ + { + "count": 1085, + "reactionType": "LIKE" + }, + { + "count": 185, + "reactionType": "INTEREST" + }, + { + "count": 142, + "reactionType": "MAYBE" + }, + { + "count": 26, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7012013351413121024", + "numLikes": 1447, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7012013351413121024", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1449, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:66641273", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:66641273", + "entityUrn": "urn:li:fs_miniCompany:66641273", + "name": "MyCO2 par Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1594818120745?e=1684972800&v=beta&t=iu0KPu8LLJ9RAfjnT2Ns5LZl33RPKeM9HX6-ZLDA21k", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1594818120745?e=1684972800&v=beta&t=_mCrEcZ-7ykNMvdPjukL2wRv9vwlFKKCFeayuZ86FtM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1594818120745?e=1684972800&v=beta&t=oeC9Hq1Uc2ASP0IP9mQN7GVDE17ikFZ9KCBOFO9D33Y", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQG2GlbS3GKBow/company-logo_" + } + }, + "universalName": "myco2-par-carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:66641273", + "trackingId": "Ey6BU+ymRLefA7/m5OaGLg==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniCompany": { + "objectUrn": "urn:li:company:66641273", + "entityUrn": "urn:li:fs_miniCompany:66641273", + "name": "MyCO2 par Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1594818120745?e=1684972800&v=beta&t=iu0KPu8LLJ9RAfjnT2Ns5LZl33RPKeM9HX6-ZLDA21k", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1594818120745?e=1684972800&v=beta&t=_mCrEcZ-7ykNMvdPjukL2wRv9vwlFKKCFeayuZ86FtM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1594818120745?e=1684972800&v=beta&t=oeC9Hq1Uc2ASP0IP9mQN7GVDE17ikFZ9KCBOFO9D33Y", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQG2GlbS3GKBow/company-logo_" + } + }, + "universalName": "myco2-par-carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:66641273", + "trackingId": "Ey6BU+ymRLefA7/m5OaGLg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "MyCO2 par Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: MyCO2 par Carbone 4", + "actionTarget": "https://www.linkedin.com/company/myco2-par-carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A66641273" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "28,825 followers" + }, + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:66641273", + "followerCount": 28825, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:66641273", + "following": false, + "trackingUrn": "urn:li:company:66641273" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followCompany" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:7010966247366381569", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7010966247366381569)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7010966247366381569)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/myco2-par-carbone-4_les-statistiques-myco2-nous-avons-activity-7010966247366381569-75z4?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7010966246607192064", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:66641273", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7010966246607192064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "LsriWMu99NWiF1WhoN8xrA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7010966247366381569,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQFzjFbp3VZe0g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQFzjFbp3VZe0g", + "artifacts": [ + { + "width": 1080, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1671544609460?e=1679529600&v=beta&t=HN7MObth8zSKWDHOhpWQhIKCAtJoGsXEmWgBDHK0LNo", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1671544609424?e=1679529600&v=beta&t=PLQ2KUCY0Lbtlu-UHVb_LMpB2IXMqQgPDZoJTzr88Bg", + "expiresAt": 1679529600000, + "height": 20 + }, + { + "width": 1080, + "fileIdentifyingUrlPathSegment": "1280/0/1671544609424?e=1679529600&v=beta&t=uf-zSDvZJlRVXc6GFt_mKFtc5KqEHGqt_-gxdxhK3sQ", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1671544609424?e=1679529600&v=beta&t=SItFDRx6lDY3WPEYy1HqROkxGbDhPUQyMzPiVxtYu94", + "expiresAt": 1679529600000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1671544609424?e=1679529600&v=beta&t=PrgPxIql5yVMf21oO0UktYUhxIfDwhFs2eH_i6CZD0w", + "expiresAt": 1679529600000, + "height": 160 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1671544609424?e=1679529600&v=beta&t=0bQ-l63afwzRf7s6bIm-DVpW-p6n8HmXoWdanH69q6Q", + "expiresAt": 1679529600000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQFzjFbp3VZe0g/feedshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7010966246607192064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\ud83d\udc4b\u00a0Les statistiques MyCO2 ! \ud83d\udd22\n\nNous avons l\u2019habitude de demander au d\u00e9but de nos conf\u00e9rences aux participant.e.s comment ils ou elle se situent en termes de connaissance sur le sujet de l\u2019empreinte carbone. \ud83e\udd14\n\nD\u00e9j\u00e0 35 000 personnes sensibilis\u00e9es lors des conf\u00e9rences MyCO2 et nous pouvons d\u00e9j\u00e0 tirer de nombreux et riches enseignements gr\u00e2ce aux statistiques et retours que nous avons suite aux centaines d\u2019ateliers d\u00e9j\u00e0 r\u00e9alis\u00e9s.\n\n\ud83d\udc47\u00a0Quelques chiffres cl\u00e9s \ud83d\udc47\n\n\ud83d\udc49\u00a02 tonnes de CO2eq : c\u2019est la diff\u00e9rence qu\u2019il y a entre l\u2019empreinte carbone d\u2019une personne se disant \u201csans connaissance\u201d \u00e0 une conf\u00e9rence MyCO2 et une personne se disant \u201cbien renseign\u00e9e\u201d (soit une empreinte 20% plus faible).\n\nLa corr\u00e9lation forte qu\u2019il y a entre le niveau de connaissance auquel les participant.e.s s\u2019\u00e9valuent et leur empreinte carbone met en \u00e9vidence le lien puissant qui s\u2019op\u00e8re entre la compr\u00e9hension des enjeux et les comportements quotidiens, entre la connaissance des ordres de grandeur et l\u2019efficacit\u00e9 des actions mises en oeuvre.\n\n\ud83d\udd0e\u00a0La compr\u00e9hension des enjeux physiques et surtout des r\u00e9ponses concr\u00e8tes \u00e0 apporter sont essentielles et surtout efficaces pour faire face au d\u00e9fi commun du changement climatique.\n\n\ud83d\udc49\u00a077% : c\u2019est la part de personnes se disant \u201cnovice\u201d ou \u201csans connaissance\u201d sur le sujet de l\u2019empreinte carbone aux conf\u00e9rences MyCO2 (hors conf\u00e9rences Grand Public). Une grande majorit\u00e9 donc !\n\nPour que le changement soit efficace, il doit \u00eatre collectif et c\u2019est l\u2019objectif de MyCO2 que de s\u2019adresser aux personnes novices sur le sujet afin que l\u2019ensemble de la soci\u00e9t\u00e9 puisse s\u2019emparer de la lutte contre le changement climatique d\u00e8s la fin de la conf\u00e9rence !\n\nSi les pouvoirs publics et les entreprises doivent urgemment s\u2019emparer de la transition \u00e9cologique, celle-ci ne pourra se faire sans une implication et une acceptation forte de la soci\u00e9t\u00e9 civile et des individus eux-m\u00eames.\n\n\u23ec\u00a0Ci-dessous une infographie r\u00e9sumant les principaux chiffres issus des conf\u00e9rences MyCO2 ! \u23ec\n\nD\u2019autres sont \u00e0 venir en 2023, nous les analyserons gr\u00e2ce \u00e0 notre partenariat avec le Laboratoire de Neurosciences Cognitives Computationnelles sous la tutelle de ENS !\n\n\ud83d\udc49\u00a0Vous n\u2019avez pas encore particip\u00e9 \u00e0 une conf\u00e9rence MyCO2 ? Inscrivez-vous \u00e0 notre prochaine conf\u00e9rence grand public gratuite en cliquant ici : https://lnkd.in/eC4d4aSC\n\n\u27a1\ufe0f\u00a0Pour organiser une conf\u00e9rence dans votre structure (entreprise, association\u2026), vous pouvez nous contacter \u00e0 l\u2019adresse myco2@carbone4.com." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7010966246607192064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7010966247366381569,urn:li:activity:7010966247366381569,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7010966247366381569,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7010966247366381569,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7010966247366381569", + "threadId": "activity:7010966247366381569", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010966247366381569", + "urn": "urn:li:activity:7010966247366381569", + "numComments": 47, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7010966247366381569", + "reactionTypeCounts": [ + { + "count": 608, + "reactionType": "LIKE" + }, + { + "count": 72, + "reactionType": "INTEREST" + }, + { + "count": 60, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "EMPATHY" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7010966247366381569", + "numLikes": 771, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010966247366381569", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 771, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:7011460603802230784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7011460603802230784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7011460603802230784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-statistiques-myco2-nous-avons-activity-7011460603802230784-_dhv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7011460603047223296", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7011460603802230784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7011460603047223296", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "LsriWMu99NWiF1WhoN8xrA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7011460603802230784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7011460603047223296,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis maintenant presque 2 ans, Carbone 4 propose aux particuliers (gratuitement) et entreprises (en payant ; \u00e0 un moment il faut bien que quelqu'un paye !) un calculateur d'empreinte carbone personnel un peu particulier, MyCO2 (http://www.myco2.fr). \n\nIl est un peu particulier parce que ce calculateur ne peut pas s'utiliser seul. Il faut n\u00e9cessairement participer \u00e0 une d\u00e9couverte collective, une esp\u00e8ce de carboniques anonymes :), au cours d'une \"conf\u00e9rence interactive\". La raison est que l'effet de groupe lib\u00e8re du stress et favorise le passage \u00e0 l'action (ce qui est bien le but). Et l'interactivit\u00e9 permet aux personnes faisant le calcul de poser toutes sortes de questions sur les modalit\u00e9s de ce dernier.\n\nLors de ces conf\u00e9rences interactives, il est possible de collecter quelques informations (non nominatives \u00e9videmment) sur les participant(e)s. La premi\u00e8re est \u00e9videmment le r\u00e9sultat (combien chaque participant \"p\u00e8se\" en carbone). Mais il y a \u00e9galement la r\u00e9ponse \u00e0 quelques questions pos\u00e9es au d\u00e9but de l'exercice. Et notamment celle-ci : \"comment \u00e9valuez vous votre degr\u00e9 de connaissances sur le changement climatique ?\".\n\nEt le r\u00e9sultat, qui figure ci-dessous, est tr\u00e8s int\u00e9ressant : plus les gens d\u00e9clarent en savoir long sur l'enjeu, plus leur empreinte carbone est basse. Dit autrement, il y a une corr\u00e9lation entre degr\u00e9 de connaissance et action. Comme il est peu probable que l'action ait pr\u00e9c\u00e9d\u00e9 la connaissance, le plus vraisemblable est donc l'inverse : avoir compris le probl\u00e8me pousse \u00e0 s'en occuper.\n\nCe n'est donc pas totalement un hasard - et pas juste un effet du radotage du \u00e0 l'\u00e2ge :) - si la bonne compr\u00e9hension des enjeux est de mes chevaux de bataille, notamment pour les gens qui sont \u00e0 des poste de d\u00e9cision. \n\nEn attendant, si vous n'avez pas d'id\u00e9e de cadeau pour No\u00ebl, offrez (ou offrez vous) la d\u00e9couverte de votre empreinte carbone : c'est assur\u00e9ment un cadeau utile !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7011460603047223296,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7011460603802230784,urn:li:activity:7011460603802230784,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 77, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7011460603802230784,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7011460603802230784,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7011460603802230784", + "threadId": "activity:7011460603802230784", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011460603802230784", + "urn": "urn:li:activity:7011460603802230784", + "numComments": 120, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7011460603802230784", + "reactionTypeCounts": [ + { + "count": 1917, + "reactionType": "LIKE" + }, + { + "count": 151, + "reactionType": "INTEREST" + }, + { + "count": 118, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "PRAISE" + }, + { + "count": 30, + "reactionType": "EMPATHY" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7011460603802230784", + "numLikes": 2280, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011460603802230784", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2280, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7011000497289469952", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7011000497289469952)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7011000497289469952)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_like-an-oilwell-in-your-back-yard-irish-activity-7011000497289469952-lBaZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7011000496417034240", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7011000497289469952", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7011000496417034240", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "3FwHe3P5Zq0aCX0Gwc34Hg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7011000497289469952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7772741583642015129", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676441404779?e=1677240000&v=beta&t=QJx9XZAll547t87K_KEt7Lf8Jzea6PJeiIhRGb6qwFE", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676441404779?e=1677240000&v=beta&t=hbFF7aYHt5jhWRcJnyFFjEkCy1eYUHSVWNhWRulTojg", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676441404780?e=1677240000&v=beta&t=te_tL1-1td7MbVtc8JxqA_SDSXkbBc3_mL8TDBL2UCE", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676441404780?e=1677240000&v=beta&t=uucskdg6QRLhXARlcijneQFmNi9LEVJbEbrJUQ8o01A", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGMeVBfIZGZbw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7772741583642015129)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7772741583642015129)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u2018Like an oilwell in your back yard\u2019: Irish people turn to cutting peat to save on energy bills by theguardian.com", + "actionTarget": "https://www.theguardian.com/world/2022/dec/12/like-an-oilwell-in-your-back-yard-irish-turn-to-cutting-peat-to-save-on-energy-bills?amp" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u2018Like an oilwell in your back yard\u2019: Irish people turn to cutting peat to save on energy bills" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7011000496417034240,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a 2 si\u00e8cles, l'\u00e9mergence du charbon \"de terre\" en Europe a contribu\u00e9 \u00e0 sauver ce qui restait des for\u00eats. A cette \u00e9poque, tout terrain de plaine ou \u00e0 peu pr\u00e8s avait \u00e9t\u00e9 d\u00e9frich\u00e9 pour faire place aux cultures, mais il restait des for\u00eats situ\u00e9es sur des terrains trop pauvres ou trop accident\u00e9s pour \u00eatre facilement utilis\u00e9s pour l'agriculture. Ces for\u00eats \u00e9taient mises \u00e0 rude \u00e9preuve par l'utilisation croissante du bois par les forges et le chauffage des villes.\n\nDepuis que les combustibles fossiles ont \u00e9t\u00e9 utilis\u00e9s en quantit\u00e9s croissantes, les for\u00eats sont partiellement revenues. D'abord la pression sur le bois de feu a baiss\u00e9, ce dernier \u00e9tant remplac\u00e9 d'abord par le charbon (chauffage et cuisson), puis par le gaz pour les m\u00eames usages.\n\nLa productivit\u00e9 \u00e0 l'hectare a fortement augment\u00e9 gr\u00e2ce \u00e0 la m\u00e9canisation et aux intrants (engrais et phytosanitaires), c'est \u00e0 dire gr\u00e2ce au p\u00e9trole et au gaz. Cela permet de produire plus avec moins de surfaces (avec quelques effets de bords sur la biodiversit\u00e9...), et a engendr\u00e9 une \"reprise foresti\u00e8re\" sur d'anciens terrains agricoles ou p\u00e2turages cessant d'\u00eatre exploit\u00e9s.\n\nMais voil\u00e0 : le stress croissant sur les \u00e9nergies fossiles est en train d'inverser la donne. Cet article du Guardian explique que les irlandais reviennent \u00e0 la tourbe (le pire en mati\u00e8re d'\u00e9missions de CO2 par unit\u00e9 d'\u00e9nergie) parce que le gaz et le p\u00e9trole sont plus chers (car moins disponibles), et les allemands au bois (mais ca doit probablement \u00eatre aussi vrai pour les fran\u00e7ais), avec dans ce dernier cas du \"braconnage\", c'est \u00e0 dire des pr\u00e9l\u00e8vements ill\u00e9gaux qui augmentent.\n\nIl \u00e9tait \u00e0 craindre que, au moment o\u00f9 les combustibles fossiles feraient d\u00e9faut, cela ferait revenir la pression sur le bois et la biomasse en g\u00e9n\u00e9ral que charbon, p\u00e9trole et gaz avaient supprim\u00e9. C'est exactement ce que l'on constate actuellement : les m\u00e9nages veulent se chauffer, les voitures rouler, les avions voler,et l'industrie tourner \u00e0 la biomasse, et tout cela est en train de cr\u00e9er une pression croissante sur le vivant.\n\nSi nous voulons garder des for\u00eats dans un contexte de pression climatique croissante et de pression \u00e9nerg\u00e9tique croissante, il va falloir \u00e0 la fois (re)planter les bonnes esp\u00e8ces, bien g\u00e9rer les usages aval pour r\u00e9partir au mieux la ressource rare, et... probablement embaucher quelques gardes forestiers de plus." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7011000496417034240,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7011000497289469952,urn:li:activity:7011000497289469952,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 66, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7011000497289469952,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7011000497289469952,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7011000497289469952", + "threadId": "activity:7011000497289469952", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011000497289469952", + "urn": "urn:li:activity:7011000497289469952", + "numComments": 125, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7011000497289469952", + "reactionTypeCounts": [ + { + "count": 1434, + "reactionType": "LIKE" + }, + { + "count": 236, + "reactionType": "INTEREST" + }, + { + "count": 197, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7011000497289469952", + "numLikes": 1907, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7011000497289469952", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1908, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7010689509977653249", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7010689509977653249)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7010689509977653249)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cop15-les-entreprises-incit%C3%A9es-%C3%A0-divulguer-activity-7010689509977653249-f_XO?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7010689509080080384", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7010689509977653249", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7010689509080080384", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "I++IijfZGRVLLCjEZxO4cA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7010689509977653249,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7320927171555309572", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676619110204?e=1677240000&v=beta&t=CB0gpxrmH1R4SM3nooTIhQ6IzCevzcEjOQh3mRUCUbc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676619110204?e=1677240000&v=beta&t=dsQuT7hytRLXEKEk1L7I0RuEI42KTOvIABGlKYx2YYc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676619110204?e=1677240000&v=beta&t=AjmCmkJuthef54rsxN4KxYxKRRsBeynKqsoDHkB3z1Y", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676619110204?e=1677240000&v=beta&t=3SOOR8Ld7tkJ9GZ_vvJkSpMn1l-Jm0MWIWX7P0sdeA8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEfmciC_NDtuQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7320927171555309572)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7320927171555309572)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: COP15 : les entreprises incit\u00e9es \u00e0 divulguer leur impact sur la biodiversit\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/enjeux-internationaux/cop15-les-entreprises-incitees-a-divulguer-leur-impact-sur-la-biodiversite-1890665" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "COP15\u00a0: les entreprises incit\u00e9es \u00e0 divulguer leur impact sur la biodiversit\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7010689509080080384,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Fin du monde contre fin du mois : l'agenda pr\u00e9sidentiel a factuellement pench\u00e9 du deuxi\u00e8me c\u00f4t\u00e9 pendant la semaine qui vient de s'\u00e9couler. La pr\u00e9servation contre la fin du monde - comprendre la d\u00e9fense de la biodiversit\u00e9 - n'aura justifi\u00e9 aucun d\u00e9placement de haut niveau pour soutenir les n\u00e9gociateurs fran\u00e7ais et europ\u00e9ens, pourtant cr\u00e9dit\u00e9s du succ\u00e8s obtenu au Canada par notre premier magistrat sur ce r\u00e9seau (https://bit.ly/3FDV9P2 ). \n\nLe Qatar et le foot (\u00e0 moins que ce ne soient le foot et le Qatar) auront donc vu deux fois les roues de l'avion pr\u00e9sidentiel (dont Sud Ouest a \u00e9valu\u00e9 l'empreinte carbone : https://bit.ly/3Webuky ) en une semaine, la cote de popularit\u00e9 et le gaz ayant manifestement des charmes que les papillons et coraux n'ont pas.\n\nPourtant, si l'on replace les choses dans le bon ordre, sur une plan\u00e8te sans esp\u00e8ces v\u00e9g\u00e9tales et animales (c'est cela la biodiversit\u00e9), il va \u00eatre un peu difficile d'organiser des tournois de foot... et tout aussi difficile de faire tourner une \u00e9conomie. Incidemment, l'article des Echos ci-dessous contient la phrase \"Il faut rappeler que\u00a0plus de la moiti\u00e9 du PIB mondial est tributaire de la biodiversit\u00e9 et de ses services.\". Objection votre honneur : c'est 100% puisque sans esp\u00e8ces animales et v\u00e9g\u00e9tales il n'y a plus d'humanit\u00e9 et plus de PIB du tout !\n\nLa presse qualifie cet accord de succ\u00e8s parce que les aires prot\u00e9g\u00e9es doivent monter \u00e0 30% de la surface terrestre. Mais la vraie victoire, elle sera \u00e0 chercher, ou pas, dans les r\u00e9glementations nationales - ou \u00e9ventuellement les accords commerciaux - qui imposeront des obligations concr\u00e8tes aux acteurs domestiques. \n\nCar on peut appeler \"prot\u00e9g\u00e9e\" une zone qui en pratique ne l'est pas (par exemple une aire marine prot\u00e9g\u00e9e qui est chalut\u00e9e comme si elle ne l'\u00e9tait pas), ou encore cr\u00e9er une r\u00e9serve avec 3 gardes et demi pour des milliers de km2, qui restent en pratique soumis aux m\u00eames pressions qu'avant ou presque.\n\nLes obligations de transparence cr\u00e9\u00e9es pour les entreprises sont une \u00e9tape bienvenue, mais le Diable sera aussi dans les d\u00e9tails. Pour le moment, les m\u00e9thodes sont \u00e9mergentes (nous le savons \u00e0 Carbone 4 pour travailler dessus !), et les moyens allou\u00e9s par les acteurs \u00e9conomiques pour \"bien compter\" les pressions environnementales (biodiversit\u00e9 ou climat) restent bien plus faibles que pour les euros. On peut aller en prison quand on compte l'argent de travers (fraude fiscale, comptabilit\u00e9 non tenue, etc), mais c'est rarement le cas quand on compte le CO2 ou la biodiversit\u00e9 de travers !\n\nLe vrai s\u00e9rieux des pays ratificataires se mesurera donc \u00e0 l'aune de ce qu'ils seront capables d'imposer \u00e0 leurs acteurs domestiques. Pour la biodiversit\u00e9, comme pour le climat, il va falloir y consacrer un peu plus de temps que celui de simples f\u00e9licitations adress\u00e9es entre deux avions pour aller voir un match." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7010689509080080384,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7010689509977653249,urn:li:activity:7010689509977653249,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 92, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7010689509977653249,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7010689509977653249,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7010689509977653249", + "threadId": "activity:7010689509977653249", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010689509977653249", + "urn": "urn:li:activity:7010689509977653249", + "numComments": 184, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7010689509977653249", + "reactionTypeCounts": [ + { + "count": 4177, + "reactionType": "LIKE" + }, + { + "count": 238, + "reactionType": "APPRECIATION" + }, + { + "count": 201, + "reactionType": "MAYBE" + }, + { + "count": 151, + "reactionType": "PRAISE" + }, + { + "count": 107, + "reactionType": "INTEREST" + }, + { + "count": 46, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7010689509977653249", + "numLikes": 4920, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010689509977653249", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4921, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7010203411170131968", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7010203411170131968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7010203411170131968)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_executive-summary-coal-2022-analysis-activity-7010203411170131968-THNI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7010203410385752064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7010203411170131968", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7010203410385752064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "DYUgR2SwgYMcaFJVh2Wmdw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7010203411170131968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8533787876617618175", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676530833333?e=1677240000&v=beta&t=OqEF3547iRFk_rZ0ROxfc6QhjMobGu_PeYlxXAu8GnU", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676530833333?e=1677240000&v=beta&t=D6zVPesylIe-wCG1VoA1ykCS8f_-eMxSgl_hRSS5CUY", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676530833333?e=1677240000&v=beta&t=kMWM6ZKCd2U0WsDH3SBWOiQ8VGkrdSj75gqASpMTibs", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676530833334?e=1677240000&v=beta&t=h-r8ZWo1sYblEqd_pl-Lm1oX-bPYX152Osaw3TaHKyE", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF8yJBuWzqvvw/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8533787876617618175)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8533787876617618175)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "iea.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Executive summary \u2013 Coal 2022 \u2013 Analysis - IEA by iea.org", + "actionTarget": "https://www.iea.org/reports/coal-2022/executive-summary" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Executive summary \u2013 Coal 2022 \u2013 Analysis - IEA" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7010203410385752064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce n'est pas une bonne nouvelle pour le climat : la consommation mondiale de charbon en 2022 devrait \u00eatre la plus haute depuis le d\u00e9but de l'utilisation de ce combustible. \n\nEn cause, il y a la tr\u00e8s forte hausse du prix du gaz liqu\u00e9fi\u00e9 qui a suivi les troubles en Europe (laquelle devait compenser au mieux par du GNL les importations disparues d'une partie du gaz russe), et qui a conduit \u00e0 un basculement du gaz vers le charbon pour une partie de la production \u00e9lectrique dans le monde. Rappelons qu'environ 2/3 du charbon plan\u00e9taire sert \u00e0 produire de l'\u00e9lectricit\u00e9 (voir https://bit.ly/3uXedCM - qui date un peu mais l'essentiel reste valable - pour avoir un aper\u00e7u de ses usages dans le monde).\n\nL'AIE publie aussi un graphique qui d\u00e9compose la variation de la production \u00e9lectrique dans le monde de 2021 \u00e0 2022. Les deux \"moteurs\" de la hausse de la consommation de charbon dans ce secteur sont la hausse de la consommation \u00e9lectrique tout court et... la baisse du nucl\u00e9aire. \n\nDans un contexte de stress sur l'approvisionnement en gaz (qui \u00e9tait envisageable pour la p\u00e9riode actuelle \u00e0 d\u00e9faut d'\u00eatre certain), l'arr\u00eat des r\u00e9acteurs de nos voisins du Nord a en particulier directement d\u00e9bouch\u00e9 sur une hausse de la pire mani\u00e8re de produire de l'\u00e9lectricit\u00e9 (voir https://bit.ly/3j60iYh ), ce qui se constate assez facilement en ce moment en regardant par exemple la d\u00e9composition de la production \u00e9lectrique disponible sur https://lnkd.in/ecWPwUDV\n\nL'AIE fournit aussi un pronostic d'ici \u00e0 2025. Dans ce dernier, la hausse attendue de la consommation \u00e9lectrique n'est pas assur\u00e9e en totalit\u00e9 par les renouvelables, et il y a aussi un poil d'augmentation de charbon. Certes la hausse est dans l'\u00e9paisseur du trait selon cette projection, mais si ce combustible solide suivait le chemin demand\u00e9 par la \"trajectoire 2\u00b0C\" il faudrait que sa consommation baisse de 14% (dans le monde) en 3 ans. \n\nAppliqu\u00e9e \u00e0 l'\u00e9lectricit\u00e9, cette baisse signifie 1450 TWh (\u00e9lectriques) de production au charbon en moins en 3 ans (1 TWh = un milliard de kWh). Par ailleurs l'AIE envisage une hausse de la demande \u00e9lectrique de 2500 TWh sur la m\u00eame p\u00e9riode. Pour que l'\u00e9quation soit tenue il faudrait donc 4000 TWh de production non carbon\u00e9e en plus, soit :\n- un doublement de l'hydro\n- ou une multiplication par presque 5 du solaire (qui a augment\u00e9 d'environ 14% par an de 2018 \u00e0 2021)\n- ou une multiplication par 3 de l'\u00e9olien (qui a augment\u00e9 d'environ 10% par an de 2018 \u00e0 2021)\n- ou une multiplication par 2,5 du nucl\u00e9aire (qui est stable de 2018 \u00e0 2021).\n\nM\u00eame en combinant tout cela, on voit le formidable d\u00e9calage entre les discours de d\u00e9carbonation et les actes. Si nous voulons 2\u00b0C, il va surtout falloir consommer moins d'\u00e9lectricit\u00e9 dans le monde...\n\nNB : la photo d'illustration choisie par l'AIE est assez mal venue : il aurait mieux valu montrer une mine ayant remplac\u00e9 la v\u00e9g\u00e9tation, ou un train traversant un paysage dess\u00e9ch\u00e9, cela aurait \u00e9t\u00e9 plus \u00e0 propos ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7010203410385752064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7010203411170131968,urn:li:activity:7010203411170131968,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 99, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7010203411170131968,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7010203411170131968,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7010203411170131968", + "threadId": "activity:7010203411170131968", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010203411170131968", + "urn": "urn:li:activity:7010203411170131968", + "numComments": 190, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7010203411170131968", + "reactionTypeCounts": [ + { + "count": 1309, + "reactionType": "LIKE" + }, + { + "count": 330, + "reactionType": "INTEREST" + }, + { + "count": 300, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7010203411170131968", + "numLikes": 1964, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7010203411170131968", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1966, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7009917420706365440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7009917420706365440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7009917420706365440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_entreprises-audacieuses-soutenez-le-shift-activity-7009917420706365440-76OG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7009917419930451969", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7009917420706365440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7009917419930451969", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "2n41armWEsb6heGOkCjt9Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7009917420706365440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7299614099246559126", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675430869943?e=1677240000&v=beta&t=m_h85Ptd4lKTv5NPZARCY0adv4w-azik0xvrjR6v9ao", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675430869943?e=1677240000&v=beta&t=V2X9Ay4pzI4N0CzzeB2292jCgMtGcN2ngvUzdqNii0g", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675430869944?e=1677240000&v=beta&t=p6V4mi778C-WwgNn7VbU2gdm8eGarQyWC9blWstM_dc", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675430869944?e=1677240000&v=beta&t=1AmioKJnSLeBXs61e_Su_q4HLcwfcKPRkHhhwN8QXTY", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHRAzXBsYbayg/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7299614099246559126)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7299614099246559126)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Entreprises audacieuses, soutenez le Shift Project ! by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/shift-appel-entreprises/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Entreprises audacieuses, soutenez le Shift Project !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7009917419930451969,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9cembre, c'est l'\u00e9poque du courrier presque du coeur au P\u00e8re No\u00ebl ! C\u00f4t\u00e9 Shift Project, et m\u00eame si nous savons que les rennes commencent \u00e0 souffrir du r\u00e9chauffement climatique, nous avons aussi un souhait sur le contenu de la hotte. Il s'appelle un(e) chef(fe) d'entreprise militant(e). \n\nPlus pr\u00e9cis\u00e9ment, ce que nous souhaiterions trouver sous le sapin, ce sont des entreprises membres, c'est \u00e0 dire qui adh\u00e8rent \u00e0 l'association et qui versent une cotisation. Cette derni\u00e8re est d'abord bienvenue parce que nous avons en permanence plus d'id\u00e9es que de moyens. Et, quand nous sommes dans une course contre la montre, avoir les moyens de creuser ses id\u00e9es est plus utile avant les ennuis qu'apr\u00e8s !\n\nUne entreprise qui adh\u00e8re c'est aussi un acteur \u00e9conomique de plus qui \"soutient la cause\". Il n'est pas n\u00e9cessaire de soutenir l'int\u00e9gralit\u00e9 de ce que nous faisons ou disons pour adh\u00e9rer : il suffit juste de consid\u00e9rer que notre existence est globalement utile \u00e0 la collectivit\u00e9, sans \u00eatre frontalement antagonistes des activit\u00e9s du membre concern\u00e9.\n\nNous ne cherchons donc pas \u00e0 avoir toute entreprise de ce pays comme membre : juste celles qui ont sinc\u00e8rement envie de nous voir travailler, proposer et exister dans le d\u00e9bat public, parce que c'est leur int\u00e9r\u00eat, ou parce que leurs instances dirigeantes sont profond\u00e9ment convaincues que de toute fa\u00e7on \"nous n'y couperons pas\", et \u00e0 ce moment autant le faire en ayant r\u00e9fl\u00e9chi le plus possible au plan d'ensemble (ce qui est notre ambition).\n\nOn pourra nous reprocher une collusion avec le grand capital. C'est in\u00e9vitable d\u00e8s lors que nous avons choisi une position moins pure que de protester de l'ext\u00e9rieur : nous avons cibl\u00e9 le monde \u00e9conomique, et nous cherchons \u00e0 y mobiliser \"de l'int\u00e9rieur\". C'est moins visible et plus ingrat, mais c'est aussi l\u00e0 que se gagnent une partie des batailles. Nos membres acceptent aussi que nous les asticotions un peu de temps en temps : pour progresser, il faut sortir de sa zone de confort.\n\nOn pourra aussi nous reprocher de ne pas \u00eatre \u00e0 la hauteur de l'enjeu, puisque la situation globale continue \u00e0 \u00e9voluer dans le mauvais sens. Mais, tant qu'il n'y a pas de plan B, il n'y a aucune chance de voir l'\u00e9conomie se r\u00e9orienter : vers quoi le ferait-elle ? Avoir des propositions op\u00e9rationnelles n'est pas suffisant, mais c'est assur\u00e9ment n\u00e9cessaire.\n\nEn 2022, le budget du Shift Project aura \u00e9t\u00e9 de 2 millions. Avec les Shifters, notre force de frappe est multipli\u00e9e par 2 ou 3, mais cela reste faible face aux milliards qui vont, de par le monde, dans la recherche \u00e9conomique \"traditionnelle\", ou aux centaines de milliards qui vont dans la recherche \"purement technologique\", qui ne suffira pas, loin s'en faut, \u00e0 nous faire atterrir en douceur.\n\nSi vous avez le carnet de ch\u00e8ques de votre entreprise, donc, et que vous pensez que quelques cervelles de plus mobilis\u00e9es sur la d\u00e9carbonation ne sont pas de trop, vous savez ce qui nous ferait plaisir sous le sapin !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7009917419930451969,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7009917420706365440,urn:li:activity:7009917420706365440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 56, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7009917420706365440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7009917420706365440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7009917420706365440", + "threadId": "activity:7009917420706365440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009917420706365440", + "urn": "urn:li:activity:7009917420706365440", + "numComments": 147, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7009917420706365440", + "reactionTypeCounts": [ + { + "count": 1848, + "reactionType": "LIKE" + }, + { + "count": 234, + "reactionType": "APPRECIATION" + }, + { + "count": 45, + "reactionType": "EMPATHY" + }, + { + "count": 25, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7009917420706365440", + "numLikes": 2169, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009917420706365440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2170, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7009466059044847616", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7009466059044847616)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7009466059044847616)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_publication-former-une-finance-au-service-activity-7009466059044847616--Tgb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7009466058004692993", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7009466059044847616", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7009466058004692993", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "5NlJhOkKDkb07v1oyRKOhg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7009466059044847616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7418578237810237887", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676404361478?e=1677240000&v=beta&t=ggVaGavtFimpISphgTljo5T1Q7-bc_3fVtRxWBQdQgo", + "expiresAt": 1677240000000, + "height": 354 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676404361478?e=1677240000&v=beta&t=vTW5uDijW_OKWXGcmqoDHbSpWOduH18IYRhIu4cjuFk", + "expiresAt": 1677240000000, + "height": 361 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676404361478?e=1677240000&v=beta&t=jb---DEVZ3d_-zpPk29aQRoD3RlYDiSOPms4p5yO-L4", + "expiresAt": 1677240000000, + "height": 70 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676404361479?e=1677240000&v=beta&t=htDAq_fW_x8qkoafME6SdV-MReJMDlXj3WEXrTt5la8", + "expiresAt": 1677240000000, + "height": 212 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGERsOAV9mnkA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7418578237810237887)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7418578237810237887)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [Publication] Former une finance au service de la transition by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/climatsup-finance-rapport-final/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[Publication] Former une finance au service de la transition" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7009466058004692993,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 268, + "length": 14, + "miniProfile": { + "firstName": "Bruno", + "lastName": "Le Maire", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "occupation": "Ministre de l\u2019\u00c9conomie, des Finances et de la Souverainet\u00e9 industrielle et num\u00e9rique", + "objectUrn": "urn:li:member:489338904", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1615820384690?e=1681948800&v=beta&t=1lSONwEqNZ6YCfsSa_SSdMyy3lRIBlt7HnIa8FhbD_0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1615820384690?e=1681948800&v=beta&t=mXrkcvswYDvA5nxrWnHwv0uRHbVbSrbb-YTCHNh3hZs", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFtlzemSILDlQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "brunolemaire", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650470576103?e=1681948800&v=beta&t=grYiuKFOw0Vps9r0gskTHNlsABqKydJY1BD9PqrCOZE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650470576103?e=1681948800&v=beta&t=_dq5B-XcARKywCPZ39sHI46v2wiioUaRLXHB6EjQEZA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650470576103?e=1681948800&v=beta&t=hpGqyzWjIXtO01PmwOzhVATdVIHajDaeNdSiiN6I2KY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650470576103?e=1681948800&v=beta&t=sDT3g5ZnR6kL5Ks0S37qtLS2Z-UNhM119fiXH0t1h8I", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQH2hSTPjrAuKw/profile-displayphoto-shrink_" + } + }, + "trackingId": "dljMdZP5QpCQLNLL7r+QBw==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 286, + "length": 27, + "miniProfile": { + "firstName": "Fran\u00e7ois Villeroy", + "lastName": "de Galhau", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAC9b73YBapktRkPFyw1DZFtDGlXkCYd1JCI", + "occupation": "Governor of the Banque de France", + "objectUrn": "urn:li:member:794554230", + "entityUrn": "urn:li:fs_miniProfile:ACoAAC9b73YBapktRkPFyw1DZFtDGlXkCYd1JCI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1649147062675?e=1681948800&v=beta&t=MsbRBiX6P0n7C6hxrlDxYJwS6ieVrOjEfj2KRFU3hh4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1649147062675?e=1681948800&v=beta&t=DcwQYEuVGJzz1tvBJBv2-DXkpufPU_frG7t-VMMsNAU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQEr5GQrsYSKbQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "francois-villeroy", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1616086237471?e=1681948800&v=beta&t=2bcB6ZoXIBdEa4LUkoZS2GM-9SjRon1R_KN31hVLsiI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1616086237471?e=1681948800&v=beta&t=YSle_dAUmLeMv4MynvXNkPyYF0uRoiiRxB1oF1ATgUg", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1616086237471?e=1681948800&v=beta&t=kFX3nSgwWyA3wJNHnRsGEM2QXhDegP89vSd1BRd9eNU", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1616086237471?e=1681948800&v=beta&t=VF9lRNFYP1C72-B7C7iVqwxiX4SPjX4bQKD7_VxwATc", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHXvQJDAmH7dA/profile-displayphoto-shrink_" + } + }, + "trackingId": "0PpusA/kSlyLHVCkTbASVA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "D\u00e8s que l'on parle d'argent, cela int\u00e9resse du monde :) : pour la pr\u00e9sentation du rapport du Shift Project sur l'int\u00e9gration des enjeux environnementaux dans la formation des futurs (et actuels) salari\u00e9s du monde financier, avaient fait le d\u00e9placement jusqu'\u00e0 l'amphi Bruno Le Maire et Fran\u00e7ois Villeroy de Galhau, entre autres.\n\nNB : Pour celles et ceux qui n'ont pas regard\u00e9 cette pr\u00e9sentation la vid\u00e9o est disponible sur Facebook : https://lnkd.in/eAWNaJKd (aller directement \u00e0 21 minutes du d\u00e9but, car il y a eu un peu de retard, et avant c'est juste un plan fixe sur l'image ayant servi \u00e0 l'annonce).\n\nLe rapport en question a fait l'objet d'une pr\u00e9sentation synth\u00e9tique, mais vous pouvez d'ores et d\u00e9j\u00e0 le t\u00e9l\u00e9charger sur la page d\u00e9di\u00e9e du site du Shift Project (lien ci-dessous) et voir quelles sont nos propositions pour les futurs employ\u00e9s du grand (et du petit, et parfois public) capital.\n\nDeux chiffres essentiel r\u00e9sument l'avant et apr\u00e8s :\n\n- actuellement, sur 1400 cursus (de formation de futurs \"financiers\") examin\u00e9s, seuls 5% int\u00e8grent les enjeux \u00e9cologiques de mani\u00e8re acceptable dans l'enseignement dispens\u00e9, et c'est essentiellement pour des personnes qui suivent un parcours sp\u00e9cialis\u00e9 dans l'extrafinancier. Ailleurs il n'y a rien, ou quasi.\n\n- pour commencer \u00e0 disposer d'une compr\u00e9hension acceptable des enjeux (changement climatique, biodiversit\u00e9, ressources min\u00e9rales, etc), et de la boite \u00e0 outils pour \"penser syst\u00e8me\" et arbitrer les conflits d'objectifs, il faut compter un peu plus de 150 heures de formation. \n\nComme les \u00e9pisodes pr\u00e9c\u00e9dents pour les ing\u00e9nieurs et les gestionnaires, ce rapport aborde des questions tr\u00e8s pratiques, comme par exemple la formation ou le recrutement des enseignants, la conception d'une maquette p\u00e9dagogique, la question des classements, et plein d'autres aspects concrets auxquels est confront\u00e9 tout responsable d'\u00e9tablissement de bonne volont\u00e9.\n\nIl ne se passe d\u00e9sormais plus un jour sans annonce de verdissement dans le secteur financier. Mais pour passer des d\u00e9clarations aux actes il y a des \u00e9tapes incontournables : \u00eatre capable d'inclure la question environnementale (et en particulier climatique) dans les processus du quotidien, avoir des seuils et des objectifs servis par ces processus, et \u00eatre capable d'arbitrer les conflits d'objectifs qui sont in\u00e9vitables d\u00e8s qu'il y a r\u00e9orientation strat\u00e9gique.\n\nCet ensemble demande notamment (mais pas que) des salari\u00e9s correctement form\u00e9s sur les enjeux et les m\u00e9thodes pour les inclure dans les processus. Ce qui a \u00e9t\u00e9 pr\u00e9sent\u00e9 hier soir n'est donc pas suffisant, mais \u00e0 l'\u00e9vidence c'est n\u00e9cessaire : on peut douter de la cr\u00e9dibilit\u00e9 d'entreprises du secteur financier qui ne se pr\u00e9occuperaient pas de la mont\u00e9e en comp\u00e9tence de l'ensemble de leurs salari\u00e9s (c'est bien l'objet du rapport) et pas juste de leur \u00e9quipe RSE. Au travail !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7009466058004692993,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7009466059044847616,urn:li:activity:7009466059044847616,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 52, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7009466059044847616,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7009466059044847616,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7009466059044847616", + "threadId": "activity:7009466059044847616", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009466059044847616", + "urn": "urn:li:activity:7009466059044847616", + "numComments": 75, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7009466059044847616", + "reactionTypeCounts": [ + { + "count": 863, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 57, + "reactionType": "PRAISE" + }, + { + "count": 37, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7009466059044847616", + "numLikes": 1040, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009466059044847616", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1041, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7009114386082504704", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7009114386082504704)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7009114386082504704)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_crise-%C3%A9nerg%C3%A9tique-leurope-se-pr%C3%A9pare-d%C3%A9j%C3%A0-activity-7009114386082504704-gMq1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7009114385205854208", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7009114386082504704", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7009114385205854208", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "NtvXJYHpblLI0orW7cKlyw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7009114386082504704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7528916263422900654", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676110814399?e=1677240000&v=beta&t=iMYIDP4KBmxF4sHs0X5IXrMrH9JOnheOo-m2n3GhVjQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676110814399?e=1677240000&v=beta&t=26im_LCLEijHzcKAaxsquluLnUasTERrYQp3x3q-WMY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676110814399?e=1677240000&v=beta&t=aPI9FGrnvib74KBBeLKFA8I4lxQf1rRZvnaUE84q1sA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676110814399?e=1677240000&v=beta&t=QLEdgJuTWT968aMcmnIa_lFAOTTMcDajMBTKRehrTxA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHY4iSuylKinw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7528916263422900654)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7528916263422900654)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Crise \u00e9nerg\u00e9tique : l'Europe se pr\u00e9pare d\u00e9j\u00e0 \u00e0 un hiver 2023 tr\u00e8s difficile by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/crise-energetique-leurope-se-prepare-deja-a-un-hiver-2023-tres-difficile-1888396" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Crise \u00e9nerg\u00e9tique\u00a0: l'Europe se pr\u00e9pare d\u00e9j\u00e0 \u00e0 un hiver\u00a02023 tr\u00e8s difficile" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7009114385205854208,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Commission est raccord avec The Shift Project, m\u00eame si c'est pour tirer une forme de signal d'alarme (https://lnkd.in/eVVGtZCc ) : la situation gazi\u00e8re actuelle ne fait qu'annoncer un avenir qui sera probablement de plus en plus compliqu\u00e9 \u00e0 g\u00e9rer, et ce d\u00e8s l'hiver prochain.\n\nLors d'un hiver \"normal\", le gaz utilis\u00e9 provient de deux sources :\n- les stocks qui ont \u00e9t\u00e9 constitu\u00e9s pendant l'\u00e9t\u00e9, \u00e0 un moment o\u00f9 l'approvisionnement (via gazoduc ou GNL) d\u00e9passe la consommation\n- mais aussi du gaz qui continue d'\u00eatre achemin\u00e9 en continu par les m\u00eames moyens.\n\nAvant la guerre en Ukraine, le gaz russe repr\u00e9sentait 40% des approvisionnement de l'Union. D\u00e9sormais Nordstream est hors service (il avait une capacit\u00e9 de 25% de la consommation europ\u00e9enne environ), et seul subsiste l'approvisionnement via le gazoduc qui passe par l'Ukraine... qui est un point d'interrogation. On peut tr\u00e8s bien imaginer que d\u00e8s que les russes auront r\u00e9alis\u00e9 les infrastructures physiques leur permettant de commercer avec la Chine, cet approvisionnement l\u00e0 aussi puisse baisser ou dispara\u00eetre (car il permet aussi aux ukrainiens d'avoir du gaz).\n\nAvant m\u00eame que cette hypoth\u00e8que ne se concr\u00e9tise, la faiblesse de l'approvisionnement \"en continu\" depuis la guerre pourrait obliger les europ\u00e9ens \u00e0 compl\u00e8tement vider les stocks pour passer l'hiver, et cette m\u00eame faiblesse nous emp\u00eacher de disposer d'assez de gaz pou faire face \u00e0 la demande l'hiver prochain.\n\nIncidemment cette faiblesse de l'approvisionnement en gaz devrait maintenir des prix de march\u00e9 \u00e9lev\u00e9s, et, \u00e0 \"market design\" identique sur l'\u00e9lectricit\u00e9, maintenir des prix tr\u00e8s \u00e9lev\u00e9s pour l'\u00e9lectricit\u00e9 europ\u00e9enne.\n\nFace \u00e0 cela, les mesures palliatives sur l'offre sont lentes : plus d'ENR (ou de nucl\u00e9aire) demande du temps, outre que les ENR \u00e9lectriques non pilotables concourent peu \u00e0 la s\u00e9curit\u00e9 d'approvisionnement (il suffit de regarder https://lnkd.in/eRvA7w-a depuis une semaine pour voir que l'Allemagne - et nous via importations pour une petite partie - tourne fortement au charbon parce qu'il y a peu de soleil et peu de vent depuis une semaine). \n\nLes mesures \"purement techniques\" sur la demande sont aussi lentes \u00e0 mettre en place : on ne peut pas multiplier par 10 le nombre d'op\u00e9rations lourdes de r\u00e9novation des b\u00e2timents \"comme cela\".\n\nSi la baisse est significative, il y a donc fort \u00e0 parier que ce sont des \"mesures rapides\" sur la demande qui vont devoir faire le job (car de fait on ne peut pas consommer un gaz qui n'existe pas !). Baisse du thermostat, de la consommation \u00e9lectrique et de la production industrielle sont donc \u00e0 envisager. Il faut malheureusement aussi se pr\u00e9parer \u00e0 cela." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7009114385205854208,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7009114386082504704,urn:li:activity:7009114386082504704,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7009114386082504704,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7009114386082504704,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7009114386082504704", + "threadId": "activity:7009114386082504704", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009114386082504704", + "urn": "urn:li:activity:7009114386082504704", + "numComments": 117, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7009114386082504704", + "reactionTypeCounts": [ + { + "count": 751, + "reactionType": "LIKE" + }, + { + "count": 170, + "reactionType": "INTEREST" + }, + { + "count": 140, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7009114386082504704", + "numLikes": 1069, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7009114386082504704", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1069, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7008752503869554688", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7008752503869554688)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7008752503869554688)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lunion-europ%C3%A9enne-instaure-la-premi%C3%A8re-taxe-activity-7008752503869554688-Ptv2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7008752502338650112", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7008752503869554688", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7008752502338650112", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "UeeNrQpbibIcMrwzehBtoQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7008752503869554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7495116679254268835", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675940365622?e=1677240000&v=beta&t=5tzIuc2O4zjPw3q30H9c-MTxNCZ3mw3Pmh4sbFDiZNM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675940365622?e=1677240000&v=beta&t=YHYkXuI2AyJz_ZibrFCXYgx2cnWzyi8Z4katx4D3JXY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675940365622?e=1677240000&v=beta&t=OEJja4MPtkeDK59yKWGBXiyibDbWbKD6GhOMiZzVtgM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675940365623?e=1677240000&v=beta&t=HuPrAXYSTqKU0a4_mB7nU1NQ0j1RYvF8r47YBYYfG0Q", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE2Fqr-9jW6fg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7495116679254268835)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7495116679254268835)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'Union europ\u00e9enne instaure la premi\u00e8re taxe carbone aux fronti\u00e8res au monde by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/climat-le-parlement-europeen-adopte-la-taxe-carbone-aux-frontieres-1888558" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'Union europ\u00e9enne instaure la premi\u00e8re taxe carbone aux fronti\u00e8res au monde" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7008752502338650112,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Union europ\u00e9enne vient de se doter d'un m\u00e9canisme pour prot\u00e9ger les industriels du continent contre leurs comp\u00e9titeurs \u00e9trangers qui n'ont pas \u00e0 payer pour leurs \u00e9missions de gaz \u00e0 effet de serre. Cette mesure est r\u00e9clam\u00e9e depuis longtemps par les milieux \u00e9conomiques au motif - l\u00e9gitime dans son principe - que, pour des produits soumis \u00e0 la concurrence internationale, payer pour le CO2 rench\u00e9rit les couts face \u00e0 la concurrence.\n\nIl y a certes quelques secteurs qui crient un peu fort avant m\u00eame d'avoir mal. Par exemple le ciment voyage peu, et les \u00e9changes internationaux sont faibles. Mais pour d'autres produits de base - et a fortiori manufactur\u00e9s - c'est plut\u00f4t la r\u00e8gle. L'intention europ\u00e9enne est donc pertinente.\n\nRevenons un peu sur les quotas : ils sont attribu\u00e9s site par site (et non par entreprise) pour un peu plus de 10.000 sites tr\u00e8s \u00e9missifs (centrales \u00e9lectriques, cimenteries, aci\u00e9ries, etc). \n\nDepuis 2013 la les quotas sont vendus aux ench\u00e8res. En d\u00e9but de p\u00e9riode (car les quotas sont valables pour une p\u00e9riode de quelques ann\u00e9es), la Commission permet \u00e0 chaque site concern\u00e9 de se procurer des autorisations administratives d'\u00e9mettre (appel\u00e9es quotas), qui sont payants (vendus aux ench\u00e8res), et disponibles en quantit\u00e9 limit\u00e9 pour un site donn\u00e9 (https://bit.ly/3YlMJ7m ).\n\nC'est donc payant... mais il y a plein de d\u00e9rogations permettant d'avoir ces m\u00eames quotas gratuitement : pour les sites tr\u00e8s expos\u00e9s \u00e0 la concurrence, pour ceux qui se modernisent, etc (https://bit.ly/3hnL28R ).\n\nL'id\u00e9e de cette \"taxe aux fronti\u00e8res\" est justement de pouvoir - entre autres - supprimer ces exceptions parce que les comp\u00e9titeurs internationaux vont aussi devoir payer quelque chose. En pratique l'Europe ne peut pas taxer des usines situ\u00e9es hors de ses fronti\u00e8res : ce sont les importateurs qui vont devoir acheter des quotas. Ce n'est donc pas une taxe carbone \u00e0 proprement parler, \u00e0 savoir un prix fixe par tonne de CO2 \u00e9mise par les industriels qui exportent des produits en Europe.\n\nPour savoir combien de quotas les importateurs vont devoir se procurer, il va donc falloir se mettre d'accord sur un \"contenu en carbone\" par unit\u00e9 de produit import\u00e9e. Il faudra aussi se mettre d'accord sur la source de ces quotas (achet\u00e9s sur le march\u00e9 sans augmentation du volume global de quotas disponibles ? Issus d'une nouvelle enveloppe suppl\u00e9mentaire et vendus aux ench\u00e8res ? Autre ?), et le m\u00e9canisme qui va garantir que le prix moyen \u00e0 la tonne de CO2 pay\u00e9 par l'importateur sera \u00e9quivalent au prix moyen pay\u00e9 par l'industriel europ\u00e9en pour la fabrication du m\u00eame produit (et sur ce dernier point tout n'est pas si simple : une tonne de poutrelle en acier est-elle \u00e9quivalente \u00e0 une tonne de feuille d'acier en rouleau ?).\n\nIl n'emp\u00eache : cette innovation est bienvenue. Rappelons qu'en France, acier, ciment et chimie de base repr\u00e9sentent les 3/4 des \u00e9missions industrielles. Ce syst\u00e8me de compensation aux fronti\u00e8res interagit avec un gros paquet d'\u00e9missions." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7008752502338650112,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7008752503869554688,urn:li:activity:7008752503869554688,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 72, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7008752503869554688,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7008752503869554688,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7008752503869554688", + "threadId": "activity:7008752503869554688", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008752503869554688", + "urn": "urn:li:activity:7008752503869554688", + "numComments": 117, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7008752503869554688", + "reactionTypeCounts": [ + { + "count": 2617, + "reactionType": "LIKE" + }, + { + "count": 252, + "reactionType": "INTEREST" + }, + { + "count": 203, + "reactionType": "MAYBE" + }, + { + "count": 81, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7008752503869554688", + "numLikes": 3189, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008752503869554688", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3190, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7008343783905845248", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7008343783905845248)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7008343783905845248)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_voitures-v%C3%A9los-smartphones-leurope-va-activity-7008343783905845248-Dppi?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7008343783176044544", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7008343783905845248", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7008343783176044544", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "ZBZcjhQtc/O8VTt0nTz6Hg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7008343783905845248,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7482535744954721878", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675761705422?e=1677240000&v=beta&t=Lvz3GK2Mm_4CvcOBUjkoiaQ0iwSlQ76uo5snQdWHaZQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675761705423?e=1677240000&v=beta&t=VVzPaZvmd5Xb8kDngYhyvKAzS4pHfhMDr5AbuBPDLN0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675761705423?e=1677240000&v=beta&t=mJqiNdSpAWu_t00RoXWVbj7fqaaY7TjtVNpQJvjbNJ8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675761705423?e=1677240000&v=beta&t=JgXTHAHa5FbAmCN0k5tLlCc5UU3Y7ZJcNJim-qTfJxc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGQ9Okk73Vr7w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7482535744954721878)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7482535744954721878)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Voitures, v\u00e9los, smartphones : l'Europe va contraindre les industriels \u00e0 verdir leurs batteries by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/voitures-velos-smartphones-leurope-va-contraindre-les-industriels-a-verdir-leurs-batteries-1887966" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Voitures, v\u00e9los, smartphones\u00a0: l'Europe va contraindre les industriels \u00e0 verdir leurs batteries" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7008343783176044544,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans le d\u00e9bat sur la mani\u00e8re de d\u00e9carboner l'industrie europ\u00e9enne, un argument est souvent mis en avant par les adversaires de la taxe carbone : elle cr\u00e9erait une distorsion de concurrence avec les industriels \u00e9trangers, qui n'y seraient pas soumis. \n\nCet argument est de fait souvent recevable (pas toujours : sur les pond\u00e9reux qui voyagent peu, par exemple le ciment, le risque de \"fuites\" aux fronti\u00e8res est limit\u00e9). Il y a une autre mani\u00e8re de faire, que l'Europe vient de d\u00e9cider \u00e0 propos des batteries : limiter l'empreinte carbone d'un produit ou service. \n\nDe fait, pour une voiture \u00e9lectrique, la fabrication de la batterie engendre la moiti\u00e9 des \u00e9missions de fabrication de l'ensemble. Cela n'emp\u00eache pas un v\u00e9hicule \u00e9lectrique d'\u00eatre, sur sa dur\u00e9e de vie, significativement moins \u00e9missif qu'un v\u00e9hicule \u00e0 p\u00e9trole de taille et puissance \u00e9quivalentes pour beaucoup de pays europ\u00e9ens, mais diminuer l'empreinte carbone de la batterie reste un objectif important pour baisser le contenu carbone d'un v\u00e9hicule \u00e9lectrique.\n\nLa l\u00e9gislation europ\u00e9enne qui vient d'\u00eatre d\u00e9cid\u00e9e, dont je confesse ne pas encore avoir regard\u00e9 les d\u00e9tails, est donc pertinente. Il n'\u00e9chappera \u00e0 personne que cette r\u00e9glementation est aussi une arme anti-importation et pro-fili\u00e8re europ\u00e9enne. En effet, la fabrication d'une batterie est un processus assez gourmand en \u00e9lectricit\u00e9 et en \u00e9nergie fossile \"en direct\". Pas juste pour l'assemblage final des packs de cellules (qui est n\u00e9gligeable dans l'ensemble de l'empreinte carbone), mais pour les \u00e9tapes amont : extraction des minerais, raffinage des divers m\u00e9taux (nickel, cobalt, lithium, cuivre), fabrication des principes actifs des composants (anode, cathode, \u00e9lectrolyte), et fabrication des cellules.\n\nPour d\u00e9carboner significativement la fabrication d'une batterie, il faudra donc non seulement des usines d'assemblage (les fameuses \"gigafactories\"), mais surtout rapatrier en Europe - et pr\u00e9f\u00e9rentiellement dans les pays \u00e0 \u00e9lectricit\u00e9 peu carbon\u00e9e, \u00e0 supposer que l'on en ait assez :) - la fraction maximale des \u00e9tapes qui vont juste \u00e0 l'aval de la mine (sachant que la mine sera difficile \u00e0 rapatrier en Europe !) : raffinage des m\u00e9taux, principes actifs, et cellules.\n\nC'est bien ce mouvement que l'Europe cherche \u00e0 enclencher avec le r\u00e8glement europ\u00e9en adopt\u00e9 (rappelons qu'un r\u00e8glement est d'application directe dans les \u00e9tats membres et n'a pas besoin de transposition par les parlements nationaux comme une directive). Reste \u00e0 ce que la physique soit d'accord (pour avoir assez d'\u00e9lectricit\u00e9 d\u00e9carbon\u00e9e pour faire ET des batteries ET de l'hydrog\u00e8ne ET de la mobilit\u00e9 ET alimenter des pompes \u00e0 chaleur ET \u00e9lectrifier d'autres industries...) et que l'industrie soit d'accord pour investir.\n\nIl y aura aussi un d\u00e9bat \u00e0 avoir sur l'usage de ces batteries : avec de quoi \u00e9lectrifier un \"tank \u00e9lectrique\" de plus de 2 tonnes on peut motoriser 200 v\u00e9los \u00e9lectriques. A l'heure de la rar\u00e9faction des ressources ce d\u00e9bat l\u00e0 est aussi essentiel." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7008343783176044544,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7008343783905845248,urn:li:activity:7008343783905845248,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7008343783905845248,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7008343783905845248,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7008343783905845248", + "threadId": "activity:7008343783905845248", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008343783905845248", + "urn": "urn:li:activity:7008343783905845248", + "numComments": 157, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7008343783905845248", + "reactionTypeCounts": [ + { + "count": 1362, + "reactionType": "LIKE" + }, + { + "count": 145, + "reactionType": "INTEREST" + }, + { + "count": 120, + "reactionType": "MAYBE" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7008343783905845248", + "numLikes": 1661, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008343783905845248", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1662, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7008083556673454080", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7008083556673454080)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7008083556673454080)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_invitation-pr%C3%A9sentation-du-rapport-final-activity-7008083556673454080-UFEY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7008083553888423936", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7008083556673454080", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7008083553888423936", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "Rzvy8wOk79DeyHryKLzn7Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7008083556673454080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8690400836592023625", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675988383003?e=1677240000&v=beta&t=ReMEKvevyyAsuLACCgt_7UcLd0pqcGdk1VM7jlh4fLw", + "expiresAt": 1677240000000, + "height": 354 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675988383003?e=1677240000&v=beta&t=rurrLnPvTFcc8tiOTITy2TG6vjXHkkWLQiG_PAZ_1VE", + "expiresAt": 1677240000000, + "height": 361 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675988383004?e=1677240000&v=beta&t=FnuXXdV0Xh0kMWeLs8hXdrenRtvWBYbLTsNkWGZCp9c", + "expiresAt": 1677240000000, + "height": 70 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675988383004?e=1677240000&v=beta&t=9u9tRHXiqsz558OQvTbhG0bzOXi1Wr0WzdmQ0FgqgTM", + "expiresAt": 1677240000000, + "height": 212 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGH-5n4VmAywA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8690400836592023625)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8690400836592023625)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [INVITATION] Pr\u00e9sentation du rapport final \u00ab ClimatSup Finance \u2013 Former pour une finance au service de la transition \u00bb (15 DECEMBRE) - The Shift Project by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-presentation-du-rapport-final-climatsupfinance-15-decembre/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[INVITATION] Pr\u00e9sentation du rapport final \u00ab ClimatSup Finance \u2013\u00a0Former pour une finance au service de la transition \u00bb (15 DECEMBRE) - The Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pourra-t-on un jour avoir une finance \"verte\" ? Un jour viendra peut-\u00eatre o\u00f9 nous aurons le graal d'une performance environnementale et d'une performance financi\u00e8re allant de pair. A ce moment l\u00e0, les financiers pourront faire l'esprit tranquille ce qui est leur m\u00e9tier habituel : maximiser le rendement des capitaux investis pour un risque donn\u00e9, puisque par construction cela minimisera \u00e0 l'occasion le risque environnemental. \n\nPour en arriver l\u00e0, il faut cependant une petite condition aux limites : que l'ensemble des contraintes applicables aux entreprises les poussent dans une direction telle que ce qui est le meilleur pour l'environnement est aussi le plus rentable pour elles (ou le moins \"moins rentable\" !).\n\nMais pour le moment cette convergence n'est pas l\u00e0, comme le rappelle un article r\u00e9cent des Echos (https://lnkd.in/e4BJit5P ), et il est donc n\u00e9cessaire de donner aux acteurs du monde financier les outils et m\u00e9thodes pour arbitrer entre les deux.\n\nLe financier \"de base\" doit donc regarder s\u00e9par\u00e9ment \u00e9conomie et environnement pour savoir si les deux sont raccord ou pas. Cela signifie qu'il ou elle doit comprendre \u00e0 peu pr\u00e8s il retourne quand il est question d'environnement, et plus particuli\u00e8rement de climat et de ressources \u00e9nerg\u00e9tiques.\n\nRemontons d'un cran : pour que notre financier(e) ait les bases en mati\u00e8re d'\u00e9nergie et de climat, il faut bien qu'il ou elle les ait apprises un jour. Il faut aussi qu'il ou elle n'apprenne pas, ou ne \"conserve\" pas, en mati\u00e8re de finance ou d'\u00e9conomie, des choses qui pr\u00e9supposent que les limites plan\u00e9taires n'existent pas. \n\nAdmettons que notre futur(e) financier(e) soit encore en train de suivre sa formation initiale. A ce moment la question devient : que doit-on apprendre, et ne pas apprendre (ou d\u00e9sapprendre !), pour faire converger la logique du secteur et la pr\u00e9servation de l'environnement ?\n\nApr\u00e8s les ing\u00e9nieurs et les gestionnaires, The Shift Project s'attaque \u00e0 cette question de la formation initiale du sup\u00e9rieur pour les futurs salari\u00e9s de ce secteur (on appr\u00e9ciera la gradation de la difficult\u00e9 !), et vous propose, le Jeudi 15 d\u00e9cembre, un webinaire de pr\u00e9sentation de nos travaux sur le sujet.\n\nCela n'\u00e9puise pas le sujet de la formation, puisque les personnes d\u00e9j\u00e0 en activit\u00e9 ne peuvent plus, par la force des choses, retrouver leurs 20 ans et redevenir \u00e9tudiantes. Esp\u00e9rons que nos suggestions, qui incluent le corpus de connaissances de base sur l'environnement qu'il faut absolument avoir acquises pour \u00eatre pertinent sur le sujet, infuseront aussi tr\u00e8s vite la formation continue !\n\nProgramme et modalit\u00e9s d'inscription ci-dessous." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7008083556673454080,urn:li:activity:7008083556673454080,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 67, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7008083556673454080,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7008083556673454080,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7008083556673454080", + "threadId": "activity:7008083556673454080", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008083556673454080", + "urn": "urn:li:activity:7008083556673454080", + "numComments": 91, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7008083556673454080", + "reactionTypeCounts": [ + { + "count": 852, + "reactionType": "LIKE" + }, + { + "count": 46, + "reactionType": "INTEREST" + }, + { + "count": 43, + "reactionType": "PRAISE" + }, + { + "count": 36, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7008083556673454080", + "numLikes": 996, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7008083556673454080", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 998, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7007679410803744768", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7007679410803744768)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7007679410803744768)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_commission-denqu%C3%AAte-%C3%A0-lassembl%C3%A9e-s%C3%A9gol%C3%A8ne-activity-7007679410803744768-JvER?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7007679409943924736", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7007679410803744768", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7007679409943924736", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "5anoq3hWG6zUSQxoYVYOOA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7007679410803744768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8349937802885585333", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 790, + "fileIdentifyingUrlPathSegment": "800/0/1676197050742?e=1677240000&v=beta&t=O_WtHaUy3WUrnNDpTDfeZFJg9zzh6r74HRIknZOTmZw", + "expiresAt": 1677240000000, + "height": 498 + }, + { + "width": 790, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676197050742?e=1677240000&v=beta&t=b0Ze7caMO2lDPOAhTgyuEH5zyEU1lFC6VbRjT4VWBxs", + "expiresAt": 1677240000000, + "height": 498 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676197050742?e=1677240000&v=beta&t=D4ws-1WJ0LmLdAu4I_Fh3E_e9GS7kwRbfUFIbOtNpBY", + "expiresAt": 1677240000000, + "height": 100 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676197050742?e=1677240000&v=beta&t=J9xdjlCDCsI4zu8wwHjwkDUUF2EWUPdg7tm2L-kcK1w", + "expiresAt": 1677240000000, + "height": 302 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGn7WzLuyUAwQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.6303797468354431 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8349937802885585333)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8349937802885585333)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "marianne.net \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Commission d\u2019enqu\u00eate \u00e0 l'Assembl\u00e9e\u2009: S\u00e9gol\u00e8ne Royal attendue de pied ferme sur le plafonnement du nucl\u00e9aire by marianne.net", + "actionTarget": "https://www.marianne.net/politique/petites-indiscretions-grosses-revelations/commission-denquete-a-lassemblee-segolene-royal-attendue-de-pied-ferme-sur-le-plafonnement-du-nucleaire" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Commission d\u2019enqu\u00eate \u00e0 l'Assembl\u00e9e\u2009: S\u00e9gol\u00e8ne Royal attendue de pied ferme sur le plafonnement du nucl\u00e9aire" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Commission d'enqu\u00eate \"visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\", devant laquelle j'ai \u00e9t\u00e9 auditionn\u00e9 (https://bit.ly/3FHL0BV ), va passer \u00e0 ce qui \u00e9tait probablement son objectif premier depuis le d\u00e9but : nommer des \"responsables\" \u00e0 la situation difficile dans laquelle nous sommes, pr\u00e9f\u00e9rentiellement des adversaires politiques de l'initiateur :). \n\nCe n'est pas la premi\u00e8re fois que je le constate : j'ai \u00e9t\u00e9 convoqu\u00e9 par deux autres Commissions d'enqu\u00eate du Parlement :\n- une sur \"l'impact \u00e9conomique, industriel et environnemental des \u00e9nergies renouvelables, sur la transparence des financements et sur l'acceptabilit\u00e9 sociale des politiques de transition \u00e9nerg\u00e9tique\" pilot\u00e9e par un d\u00e9put\u00e9 LR : https://bit.ly/3iSJ9kV\n- une sur le \"co\u00fbt r\u00e9el de l'\u00e9lectricit\u00e9 afin d'en d\u00e9terminer l'imputation aux diff\u00e9rents agents \u00e9conomiques\" demand\u00e9 par un s\u00e9nateur Vert : https://bit.ly/3PjgRw3\n\nA chaque fois un des buts \u00e9tait bien \"d'\u00e9pingler\" des adversaires politiques, au motif qu'ils avaient d\u00e9cid\u00e9 d'actions contraires \u00e0 la conviction du parlementaire qui d\u00e9clenchait la Commission.\n\nCela n'emp\u00eache \u00e9videmment pas d'apprendre des choses int\u00e9ressantes pour qui prend le temps d'\u00e9couter les auditions ou de lire les rapports, et c'est bien en entrant dans ce niveau de d\u00e9tail que l'on peut profiter de ces travaux. La partie \"tribunal pour politiques\" n'est qu'une partie \u00e9merg\u00e9e - et pas la plus int\u00e9ressante - de l'iceberg, sauf \u00e0 permettre \u00e0 l'ensemble de la classe politique de devenir plus adulte ensuite, et ce n'est pas garanti !\n\nA l'\u00e9vidence, fermer Fessenheim a priv\u00e9 le pays d'une production \u00e9lectrique bas carbone qui serait pr\u00e9cieuse aujourd'hui. Mais qui en est responsable ? Royal parce qu'elle a sign\u00e9 le d\u00e9cret ? Hollande parce qu'il a pris cet engagement dans la campagne ? Macron parce qu'il n'est pas revenu dessus alors qu'il le pouvait ? La presse qui a longtemps et majoritairement pr\u00e9sent\u00e9 le nucl\u00e9aire comme bien plus dangereux que ses alternatives et facile \u00e0 remplacer sans trop se demander si l'argumentation \u00e9tait factuellement solide ? Jospin qui a donn\u00e9 le coup d'envoi de 20 ans de nucl\u00e9aire honteux ? Les experts techniques qui n'ont pas su faire la p\u00e9dagogie des seuls faits ? L'Education Nationale qui a laiss\u00e9 circuler des manuels scolaires contenant des contre-v\u00e9rit\u00e9s ? L'Allemagne qui a fait tout ce qu'elle a pu pour faire \u00e9merger des r\u00e8gles europ\u00e9ennes d\u00e9favorables au nucl\u00e9aire et nous jeter dans les bras des russes ?\n\nClouer Royal au pilori ne nous aidera que peu \u00e0 mieux r\u00e9fl\u00e9chir \u00e0 l'avenir. Plus que des noms, notre premier objet d'attention doit \u00eatre l'ad\u00e9quation entre processus de d\u00e9cision et probl\u00e8me \u00e0 traiter. Ce sont les m\u00e9canismes structurels \u00e0 l'oeuvre (cadre de march\u00e9, partage des faits, horizon temporel de l'action), qu'il faut examiner et \u00e9ventuellement corriger. C'est moins spectaculaire que de conspuer un individu (m\u00eame peu sympathique), mais bien plus fondamental." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7007679410803744768,urn:li:activity:7007679410803744768,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 361, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7007679410803744768,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7007679410803744768,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7007679410803744768", + "threadId": "activity:7007679410803744768", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007679410803744768", + "urn": "urn:li:activity:7007679410803744768", + "numComments": 602, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7007679410803744768", + "reactionTypeCounts": [ + { + "count": 5801, + "reactionType": "LIKE" + }, + { + "count": 485, + "reactionType": "PRAISE" + }, + { + "count": 479, + "reactionType": "MAYBE" + }, + { + "count": 228, + "reactionType": "INTEREST" + }, + { + "count": 73, + "reactionType": "APPRECIATION" + }, + { + "count": 45, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7007679410803744768", + "numLikes": 7111, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007679410803744768", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7121, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7007412643036545024", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7007412643036545024)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7007412643036545024)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_20000-personnes-dans-30-pays-tel-est-l%C3%A9chantillon-activity-7007412643036545024-0Ki9?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7007412642214477824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7007412643036545024", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7007412642214477824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "4tB8JW8RexIMguZo1gYG7g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7007412643036545024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:D4E22AQH31vNWmrMYug", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:D4E22AQH31vNWmrMYug", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1670697363822?e=1679529600&v=beta&t=zmTNjSjxr3_vTJ_uOrLsA--1bVz588PceyOI2GaKpoI", + "expiresAt": 1679529600000, + "height": 1154 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1670697364338?e=1679529600&v=beta&t=IfTiXei25O-1j0490HkrfXY-37CMTDeEMtVTQXPDXDs", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1670697364338?e=1679529600&v=beta&t=05adXSL3Lq0cbJ7xzElsh3pqfmZDDMTYOW-ximE-YTo", + "expiresAt": 1679529600000, + "height": 721 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1670697364338?e=1679529600&v=beta&t=XoLjmGdSr1jRfegFJGk-wgemCLpCoRQfyGmxRZtQC_0", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1670697364338?e=1679529600&v=beta&t=PWOpQGDt2HDlAFTQAI364kjjrYLkbw-KCPDvtXxczT4", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1670697364338?e=1679529600&v=beta&t=8OTZHo0DVEHC_naKX_nFhTyWxwf-5VsVlW41RyOzIoI", + "expiresAt": 1679529600000, + "height": 451 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E22AQH31vNWmrMYug/feedshare-shrink_" + }, + "displayAspectRatio": 0.5634765625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "20.000 personnes dans 30 pays : tel est l'\u00e9chantillon dont Ipsos a sond\u00e9 d\u00e9but septembre les coeurs et les reins pour avoir des avis sur un certain nombre de sujets concernant l'environnement et l'\u00e9nergie.\n\nLe rapport complet propose 100 pages de tableaux de chiffres : https://bit.ly/3W8qaB0 Id\u00e9alement il faut tout lire (et ne pas juste lire les enseignements - disponibles sur https://bit.ly/3HqkBKn) pour se faire sa propre id\u00e9e. \n\nL'environnement c'est important, mais la hausse du cout de la vie l'est un peu plus dans tous les pays... sauf un : l'Inde, o\u00f9 la hi\u00e9rarchie est inverse.\n\nLa Chine est le pays o\u00f9 il y a le plus fort taux de r\u00e9pondants consid\u00e9rant que la situation environnementale y est bonne ou tr\u00e8s bonne (chacun peut voir midi \u00e0 sa porte !). La Cor\u00e9e du Sud et l'Espagne sont les pays de l'autre extr\u00e9mit\u00e9 du spectre.\n\nLe pays le plus climatosceptique de l'\u00e9chantillon est l'Arabie Saoudite, suivie juste apr\u00e8s par les USA puis la Russie. En Europe c'est la Norv\u00e8ge. Il y aurait comme un lien entre le climatoscepticisme et l'importance des hydrocarbures dans l'\u00e9conomie domestique :) (en Norv\u00e8ge il y a en plus une majorit\u00e9 qui consid\u00e8re que le r\u00e9chauffement est globalement neutre ou positif pour le pays).\n\nSur un sujet qui concerne plus directement EDF, dans l'essentiel des pays sond\u00e9s le nucl\u00e9aire est majoritairement vu comme une source significative de gaz \u00e0 effet de serre (alors que pour l'agriculture ou le digital seule une minorit\u00e9 l'affirme), ce qui n'emp\u00eache pas le soutien (dans une autre question) du remplacement des centrales \u00e0 combustibles fossiles par du nucl\u00e9aire !\n\nLes br\u00e9siliens et indon\u00e9siens pr\u00e9f\u00e8rent m\u00eame le charbon au nucl\u00e9aire, et pr\u00e9f\u00e8rent remplacer le charbon par du gaz plut\u00f4t que par du nucl\u00e9aire. Ils sont loin de Poutine ! Les chinois sont les plus favorables au nucl\u00e9aire et les colombiens le moins. Toutes les populations sont favorables au solaire et \u00e0 l'\u00e9olien.\n\nCe sont les japonais les plus s\u00e9v\u00e8res avec leurs responsables politiques (qui sont vus comme tr\u00e8s peu actifs) et les chinois les plus laudatifs. C'est aussi en Chine qu'il y a la plus grande fraction de la population qui consid\u00e8re que leur pays est dans le peloton de t\u00eate des efforts contre le changement climatique.\n\nCe sont les turcs les plus nombreux \u00e0 vouloir que l'on privil\u00e9gie l'environnement sur la croissance (65% vs 25%). Mais ce sont les chinois les plus persuad\u00e9s que leur pays va donner la priorit\u00e9 \u00e0 l'environnement dans un avenir proche m\u00eame si cela nuit \u00e0 la croissance !\n\nA la fin de l'enqu\u00eate sont test\u00e9es les acceptabilit\u00e9s d'un certain nombre de mesures. Sans grande surprise, tout ce qui est taxes et limitations est bien moins accept\u00e9 que le d\u00e9veloppement (gratuit on suppose !) des \u00e9nergies bas carbone (y compris le nucl\u00e9aire).\n\nEvidemment on sort de cette avalanche de chiffres en voyant bien des contradictions dans les r\u00e9ponses. Mais on y voir aussi des indications utiles pour que certaines actions de sobri\u00e9t\u00e9 soient d'ores et d\u00e9j\u00e0 men\u00e9es." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7007412643036545024,urn:li:activity:7007412643036545024,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7007412643036545024,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7007412643036545024,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7007412643036545024", + "threadId": "activity:7007412643036545024", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007412643036545024", + "urn": "urn:li:activity:7007412643036545024", + "numComments": 73, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7007412643036545024", + "reactionTypeCounts": [ + { + "count": 959, + "reactionType": "LIKE" + }, + { + "count": 200, + "reactionType": "INTEREST" + }, + { + "count": 151, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7007412643036545024", + "numLikes": 1325, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7007412643036545024", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1328, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7006908707229868032", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7006908707229868032)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7006908707229868032)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_towards-biodiversity-certificates-proposal-activity-7006908707229868032-3yZz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7006908706328059904", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7006908707229868032", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7006908706328059904", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "ZwgpZElpNAflLuTtcTJktQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7006908707229868032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8922422006420302619", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676537279279?e=1677240000&v=beta&t=nkvYMTkiYvQtKgNmOqCxXjas49T8ChIQjNcieIMVqUE", + "expiresAt": 1677240000000, + "height": 1200 + }, + { + "width": 533, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676537279279?e=1677240000&v=beta&t=6t05O6Iuxu5cZrsHqfUwJExkxn0miT43WNrBjVR1jkw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676537279280?e=1677240000&v=beta&t=ep-qrTU6nSdV0htS9ThL304-U9WU-ybnfXZL7kHGDSI", + "expiresAt": 1677240000000, + "height": 240 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676537279280?e=1677240000&v=beta&t=ATczr6KiocZ-83euiNdo21P-3q0I-PkeFwFjNyBLWHU", + "expiresAt": 1677240000000, + "height": 720 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFDIWdEacXhUg/articleshare-shrink_" + }, + "displayAspectRatio": 1.5 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8922422006420302619)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8922422006420302619)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Towards biodiversity certificates: proposal for a methodological framework | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-biodiversity-certificates-obc" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Towards biodiversity certificates: proposal for a methodological framework | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7006908706328059904,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis sa cr\u00e9ation, Carbone 4 s'est historiquement int\u00e9ress\u00e9 au carbone fossile, celui des combustibles \u00e9ponymes. Mais il y a aussi du carbone \"vivant\" : la biodiversit\u00e9. Nous avons d\u00e9cid\u00e9, il y a un peu plus d'un an, de nous lancer aussi dans cette direction l\u00e0. \n\nPour chaque nouveau domaine ou secteur, notre mani\u00e8re de faire est toujours la m\u00eame : nous commen\u00e7ons par nous creuser un peu la cervelle pour savoir ce que nous pourrions apporter d'utile et de nouveau en mati\u00e8re de m\u00e9thodes. Et la m\u00e9thode qui d\u00e9coule de notre r\u00e9flexion est g\u00e9n\u00e9ralement rendue disponible en acc\u00e8s libre.\n\nLa comptabilit\u00e9 carbone pratiqu\u00e9e par Carbone 4 est ainsi venue apr\u00e8s la cr\u00e9ation du Bilan Carbone. Notre approche de la neutralit\u00e9 apr\u00e8s la mise au point de Net Zero Initiative (https://bit.ly/3uAeYl1 ). Les \u00e9tudes de r\u00e9silience d'une activit\u00e9 face aux risques physiques du changement climatique apr\u00e8s la mise au point d'Ocara (https://bit.ly/3W6LpTI ). La notation carbone d'une entreprise apr\u00e8s la mise au point de CIA (https://bit.ly/3FCFIYh ) et de CRIS (https://bit.ly/3F7CTNq). L'alignement (= la \"compatibilit\u00e9\") d'une infrastructure avec une trajectoire 2\u00b0C sur les \u00e9missions apr\u00e8s la mise au point de CIARA (https://lnkd.in/dAMBzut).\n\nEt, dans cette m\u00eame veine, nos premiers pas dans la biodiversit\u00e9 ont concern\u00e9 la cr\u00e9ation de m\u00e9thodes dont nous esp\u00e9rons qu'elles \"am\u00e8nent quelque chose\" \u00e0 la prise en compte de ces enjeux dans l'activit\u00e9 \u00e9conomique.\n\nLa premi\u00e8re brique a \u00e9t\u00e9 Biodiversity Impact Analytics (https://bit.ly/3iMwdwQ ), d\u00e9velopp\u00e9 en partenariat avec la CDC Biodiversit\u00e9, et qui permet de \"noter\" les titres (actions ou obligations) d'une entreprise (c'est donc une m\u00e9thode destin\u00e9e au secteur financier). \n\nNous venons d'en publier une deuxi\u00e8me, portant sur des \"certificats biodiversit\u00e9\". De quoi s'agit-il ? De fournir une r\u00e9ponse \u00e0 la question suivante : comment compter le b\u00e9n\u00e9fice associ\u00e9 \u00e0 une action qui vise \u00e0 restaurer de la biodiversit\u00e9, ou \u00e0 emp\u00eacher sa d\u00e9gradation ? En effet, si l'on veut attirer des moyens dans la pr\u00e9servation ou la restauration de la biodiversit\u00e9, il faut pouvoir comparer des alternatives entre elles pour savoir o\u00f9 ces moyens seront le plus utiles. Mais cela soul\u00e8ve de multiples questions.\n\nComment \u00e9valuer des gains biodiversit\u00e9 alors que la nature est souvent consid\u00e9r\u00e9e comme \u00e9tant trop complexe pour \u00eatre mesur\u00e9e ? Peut-on d\u00e9velopper une m\u00e9thodologie universelle, robuste et facile \u00e0 mettre en \u0153uvre sur le terrain ? Comment d\u00e9passer la logique de compensation, dont on a vu les effets pervers en mati\u00e8re de climat ? Quelle doit \u00eatre la place des certificats dans la strat\u00e9gie biodiversit\u00e9 des entreprises ?\n\nCarbone 4 et le Mus\u00e9um national d'Histoire Naturelle ont con\u00e7u un cadre m\u00e9thodologique pour tenter de r\u00e9pondre \u00e0 ces questions, que nous proposons aux personnes int\u00e9ress\u00e9es de d\u00e9couvrir et de commenter. Ce n'est bien \u00e9videmment qu'une premi\u00e8re \u00e9tape, mais il faut bien commencer un jour !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7006908706328059904,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7006908707229868032,urn:li:activity:7006908707229868032,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 57, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7006908707229868032,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7006908707229868032,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7006908707229868032", + "threadId": "activity:7006908707229868032", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006908707229868032", + "urn": "urn:li:activity:7006908707229868032", + "numComments": 67, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7006908707229868032", + "reactionTypeCounts": [ + { + "count": 837, + "reactionType": "LIKE" + }, + { + "count": 91, + "reactionType": "PRAISE" + }, + { + "count": 61, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7006908707229868032", + "numLikes": 1056, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006908707229868032", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1056, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7006525348163014657", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7006525348163014657)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7006525348163014657)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-sncf-va-prendre-en-compte-le-prix-du-carbone-activity-7006525348163014657-mGx3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7006525347370262528", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7006525348163014657", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7006525347370262528", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "val/pYlbeVKwnUqfoov6Rw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7006525348163014657,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8044829150830183589", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 707, + "fileIdentifyingUrlPathSegment": "800/0/1675756968260?e=1677240000&v=beta&t=dDULs5A-OGmmE8q6SF99MJZaU0i2NBSf7yhvZ5cDKxM", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 707, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675756968260?e=1677240000&v=beta&t=hZOe8YUAltR-q-9DHfvqre1xQ482HhOzViAFypoXIGI", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675756968260?e=1677240000&v=beta&t=b9p1mn0UC3RflK4w0-NxWLXt5joF4BwPQyYVObaJB-4", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675756968260?e=1677240000&v=beta&t=9iVJK7iH0CPqRBo9HecIFj2qq9m0pOJQcI6a9Ewn-EI", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHOtXbNvsBx1Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.6661951909476662 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8044829150830183589)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8044829150830183589)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "novethic.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La SNCF va prendre en compte le prix du carbone dans ses appels d'offres by novethic.fr", + "actionTarget": "https://www.novethic.fr/actualite/entreprise-responsable/isr-rse/la-sncf-va-prendre-en-compte-le-prix-du-carbone-dans-ses-appels-d-offre-151217.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La SNCF va prendre en compte le prix du carbone dans ses appels d'offres" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 778, + "length": 17, + "miniProfile": { + "firstName": "Mika\u00ebl", + "lastName": "Lemarchand", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAB0vwQBlSktLEmYdTdyOGWrd7KRp7YnXkA", + "occupation": "Chief Sustainability Officer / Directeur de l'engagement social, territorial et environnemental. Directeur du Projet d'entreprise. Membre du COMEX.Vice-Pr\u00e9sident de la Fondation SNCF.", + "objectUrn": "urn:li:member:7651076", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAB0vwQBlSktLEmYdTdyOGWrd7KRp7YnXkA", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1617166213063?e=1681948800&v=beta&t=jkSa3vunXUPrGO39bw6CGVf_v2pQd-Q5FRKsdozekuc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1617166213063?e=1681948800&v=beta&t=oRxuYz4FxnQKUlzDZpQVL2c4cZ_NjTOoMe3Jdu1ZL2c", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQEQY-jW4ws5jg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "mika\u00ebl-lemarchand", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516278647887?e=1681948800&v=beta&t=E-hMUmZP67EMWIr_OWJg3zxR-zaGh92f239kNzlW6gc", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516278647887?e=1681948800&v=beta&t=rzujsePk5rgQmqZj3-itViw7U7eYCbWv1ozx46StTRo", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516278647887?e=1681948800&v=beta&t=jZz18hYdaIzdGh4SVmhKExX3cfjIZ3ETaMTx5JKHGNA", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516278647887?e=1681948800&v=beta&t=JrI_z5CqwwKYbpkfuWhpTWepa_NIVw6yoQwBOQ1kvTY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHo0SxCAyGx4g/profile-displayphoto-shrink_" + } + }, + "trackingId": "VeP0BXRkSsiXiRrVgVSdRw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "On n'en attendait pas moins de la soci\u00e9t\u00e9 qui \"h\u00e9berge\" l'un des auteurs de la commission qui a fix\u00e9 une trajectoire de prix pour la \"valeur tut\u00e9laire du carbone\" (Alain Quinet) : la SNCF a annonc\u00e9 qu'elle allait introduire un \"prix du carbone\" dans ses achats.\n\nLe m\u00e9canisme pr\u00e9cis n'est pas d\u00e9taill\u00e9 dans cet article de Novethic (et pas plus dans les autres articles qui sont disponibles dans l'espace public), mais, \"vu de Mars\" (pardon Elon, on t'emprunte ta future r\u00e9sidence secondaire), j'imagine qu'il s'agit de recalculer des prix en ajoutant \u00e0 l'offre en euros un montant correspondant au contenu carbone de l'offre (fourni ou d\u00e9duit du bilan carbone du fournisseur) multipli\u00e9 par le prix de la tonne de carbone (si ce n'est pas ce m\u00e9canisme, il serait int\u00e9ressant que Mika\u00ebl Lemarchand pr\u00e9cise en commentaire quelle proc\u00e9dure sera utilis\u00e9e).\n\nDans le monde des soci\u00e9t\u00e9s marchandes, seule la contrainte fait avancer les entreprises commerciales \u00e0 la bonne vitesse. La contrainte peut venir de la r\u00e9glementation, des clients, des ressources humaines (les \"ressources rares\" qui ont le choix de leur employeur orientent un peu l'action de ces derniers)...\n\nQue le client mette une haie \u00e0 franchir qui s'appelle le carbone va donc dans le bon sens. Accessoirement une partie des fournisseurs de la SNCF sont des soci\u00e9t\u00e9s importantes (de travaux publics, de mat\u00e9riel roulant ou fixe, etc) qui seront soumises \u00e0 l'obligation de publier un bilan carbone au titre de la nouvelle r\u00e9glementation europ\u00e9enne CSRD. \n\nUne des \"conditions aux limites\" qui fera de ce genre de mesure un acc\u00e9l\u00e9rateur de la d\u00e9carbonation s'appelle la formation. En effet, seule la formation large des salari\u00e9s permet de d\u00e9centraliser l'action et l'initiative de terrain apr\u00e8s avoir annonc\u00e9 une intention : sans cela, il faut garder une fonction centralis\u00e9e de d\u00e9cision et de contr\u00f4le qui g\u00e8re quasi-exclusivement le sujet et impose les r\u00e9sultats aux autres entit\u00e9s de l'entreprise, o\u00f9 il n'y aura alors que peu de capacit\u00e9 d'initiative ou de motivation (voire une franche r\u00e9sistance !).\n\nLa formation n'est \u00e9videmment jamais suffisante. Mais c'est une condition n\u00e9cessaire pour que les \"d\u00e9cisions intelligentes\" (et mettre le carbone dans la relation client-fournisseur en est une) produisent leurs pleins effets." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7006525348163014657,urn:li:activity:7006525348163014657,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 57, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7006525348163014657,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7006525348163014657,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7006525348163014657", + "threadId": "activity:7006525348163014657", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006525348163014657", + "urn": "urn:li:activity:7006525348163014657", + "numComments": 99, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7006525348163014657", + "reactionTypeCounts": [ + { + "count": 1501, + "reactionType": "LIKE" + }, + { + "count": 111, + "reactionType": "MAYBE" + }, + { + "count": 102, + "reactionType": "INTEREST" + }, + { + "count": 68, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7006525348163014657", + "numLikes": 1802, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006525348163014657", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1802, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7006225119303880704", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7006225119303880704)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7006225119303880704)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_quand-bien-m%C3%AAme-il-ny-aurait-pas-eu-de-guerre-activity-7006225119303880704-Sq4T?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7006225118406279168", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7006225119303880704", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7006225118406279168", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "MAOOCCC/qIptKiBteDra/Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7006225119303880704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQG6NenqEshWWg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQG6NenqEshWWg", + "artifacts": [ + { + "width": 1434, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1670414236027?e=1679529600&v=beta&t=XYTghidqbyL_wu7UqAS8vAC1beSuWqQGwARUlVh6NI4", + "expiresAt": 1679529600000, + "height": 998 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1670414236066?e=1679529600&v=beta&t=dq7Farb1DEDJrG6ilDNTFyfnzef2hGlRu1W4n3KnZJ4", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1670414236066?e=1679529600&v=beta&t=CQCjBitZpuvmLtkI6WD_7F0b87M4Z4wUQaR_Po3KTp4", + "expiresAt": 1679529600000, + "height": 890 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1670414236066?e=1679529600&v=beta&t=9SKVjRY357GgI5XUyY7Do6xsobej1jZdXom98IFf83I", + "expiresAt": 1679529600000, + "height": 334 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1670414236066?e=1679529600&v=beta&t=CBhvRNmhCBvaIaxbtZ68wBwmjv-KdjBXm19d4RxO7rY", + "expiresAt": 1679529600000, + "height": 111 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1670414236066?e=1679529600&v=beta&t=4fKQQzbwmOtG-ebkq5cdec_g7k9uBz9zN3JCj6BMzh8", + "expiresAt": 1679529600000, + "height": 556 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQG6NenqEshWWg/feedshare-shrink_" + }, + "displayAspectRatio": 0.6959553695955369 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, surface chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7006225118406279168,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quand bien m\u00eame il n'y aurait pas eu de guerre en Ukraine, notre continent allait de toute fa\u00e7on devoir faire face \u00e0 une baisse \"physique\" de la possibilit\u00e9 d'importer du gaz \u00e0 l'avenir. Bien \u00e9videmment, nos d\u00e9m\u00eal\u00e9s avec un pays qui fournissait, avant conflit, 40% du gaz consomm\u00e9 dans l'Union, agissent comme un acc\u00e9l\u00e9rateur, mais le coup \u00e9tait parti. \n\nTelle est la conclusion \u00e0 laquelle nous parvenons au Shift Project, \u00e0 l'issue d'une analyse portant sur les possibilit\u00e9s d'approvisionnement en gaz de l'Union Europ\u00e9enne sous seule contrainte g\u00e9ologico-technique (on ne prend donc en consid\u00e9ration comme facteurs limitants que le contenu des gisements et la capacit\u00e9 \u00e0 faire des infrastructures d'extraction et de transport) : https://bit.ly/3HhowJ7\n\nCe travail - soutenu financi\u00e8rement par le Minist\u00e8re des Arm\u00e9es, RTE et le BRGM - a \u00e9t\u00e9 men\u00e9 avec comme mati\u00e8re premi\u00e8re l'inventaire de la totalit\u00e9 des gisements mondiaux (y compris ceux restant \u00e0 d\u00e9couvrir) fourni par Rystad Energy, ainsi que les les perspectives de production par gisement, ou encore les contrats d\u00e9j\u00e0 pass\u00e9s en GNL pour chaque pays importateur et chaque pays producteur. \n\nLe graphique ci-dessous r\u00e9sume notre analyse. Il fournit les divers approvisionnements identifi\u00e9s (via gazoducs ou via contrats pour le GNL) pour l'Europe, ainsi que divers niveaux de consommation possibles :\n- la courbe orange est du \"tendanciel avec \u00e9conomies\"\n- la croix jaune est le point d'arriv\u00e9e en 2030 dans le sc\u00e9nario \"Fit for 55\"\n- la croix rouge est le point d'arriv\u00e9e dans \"Repower EU\" (https://bit.ly/3VUBy3s )\n\nOn voit facilement que la situation que nous allons vivre cette hiver ne devrait pas \u00eatre suivie d'un \"retour \u00e0 la normale\" sur les approvisionnements (et il se discute de savoir ce qu'est \"la normale\" quand la consommation de gaz devrait de toute fa\u00e7on baisser tr\u00e8s rapidement pour des raisons de climat !). \n\nPour remplacer les importations qui n'ont plus lieu par gazoduc il faut recourir au GNL, sur lequel nous sommes en concurrence croissante avec les pays asiatiques, et il n'y en aura pas pour tout le monde. En outre le pic mondial sur la production gazi\u00e8re (sous seule contrainte g\u00e9ologique) est attendu aux alentours de 2030 avec les donn\u00e9es fournies par Rystad. \n\nClimat ou pas, Ukraine ou pas, le coup \u00e9tait aussi parti sur le p\u00e9trole (https://bit.ly/3F7Ty3y ). Rappelons que le charbon est aussi en baisse subie depuis les ann\u00e9es 1950 (car les mines europ\u00e9ennes sont de plus en plus vides et le commerce international de ce pond\u00e9reux solide n'est pas si simple). \n\nQuand bien m\u00eame nous ne voudrions pas faire d'efforts parce que l'UE ce n'est que 10% des \u00e9missions, que les am\u00e9ricains ont une empreinte carbone individuelle 2 fois plus \u00e9lev\u00e9e que la n\u00f4tre, etc, nous allons devoir d\u00e9carboner de toute fa\u00e7on. Il est plus qu'urgent de comprendre que nous sommes au d\u00e9but d'une \u00e9volution structurelle, et pas dans un accident de parcours." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7006225118406279168,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7006225119303880704,urn:li:activity:7006225119303880704,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 73, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7006225119303880704,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7006225119303880704,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7006225119303880704", + "threadId": "activity:7006225119303880704", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006225119303880704", + "urn": "urn:li:activity:7006225119303880704", + "numComments": 185, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7006225119303880704", + "reactionTypeCounts": [ + { + "count": 2527, + "reactionType": "LIKE" + }, + { + "count": 499, + "reactionType": "INTEREST" + }, + { + "count": 304, + "reactionType": "MAYBE" + }, + { + "count": 59, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7006225119303880704", + "numLikes": 3405, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7006225119303880704", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3406, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7005825581208477696", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7005825581208477696)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7005825581208477696)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rising-prices-and-supply-chain-risks-threaten-activity-7005825581208477696-NdeL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7005825580357033984", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7005825581208477696", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7005825580357033984", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "2UzKYpPBRLRGXLR1eA5ucA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7005825581208477696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7627523493011370695", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676381140655?e=1677240000&v=beta&t=_RGTkHmL1SVdUWS8tI4hjbr6ZhL3TAqLk0_xKz2XWoY", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 900, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676381140656?e=1677240000&v=beta&t=ivg2hhqJZOc3JK8837WeLQOoxLr9cmBsSDWJd_rMeMs", + "expiresAt": 1677240000000, + "height": 506 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676381140656?e=1677240000&v=beta&t=72umEvDSZ5SsdC4V4B7U4Oq7xR4Gv-vrLfYMsYPlUko", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676381140656?e=1677240000&v=beta&t=920ortEasOHTHAyvzkhbG3IlWR6x04vKngyFFCFYryw", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEeTs2pCdQnhw/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7627523493011370695)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7627523493011370695)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ft.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Rising prices and supply chain risks threaten Europe\u2019s renewable aims by ft.com", + "actionTarget": "https://www.ft.com/content/de817195-f21c-4055-ae0a-67430f20be1e" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Rising prices and supply chain risks threaten Europe\u2019s renewable aims" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7005825580357033984,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Alors m\u00eame que l'Etat fran\u00e7ais souhaite acc\u00e9l\u00e9rer sur les \u00e9nergies renouvelables (dont l'\u00e9olien et le solaire pour une large part), le contexte international fait ce qu'il peut pour contrarier ce plan, en rench\u00e9rissant fortement le cout des mati\u00e8res premi\u00e8res n\u00e9cessaires.\n\nLa raison ? C'est \"l'imbrication des \u00e9nergies\", \u00e9voqu\u00e9e par Jean-Baptiste Fressoz dans cette vid\u00e9o (et dans d'autres) qui date d'il y a quelques mois : https://lnkd.in/eWKNDxK9\n\nAujourd'hui, toutes les \u00e9nergies sont imbriqu\u00e9es les unes dans les autres. Il faut du charbon pour la m\u00e9tallurgie, du p\u00e9trole pour la chimie organique et les transports, et du gaz pour l'industrie et l'\u00e9lectricit\u00e9, et sans ces \u00e9nergies fossiles l'industrie mondialis\u00e9e est moins disponible, et donc le prix de n'importe quoi augmente... y compris celui des dispositifs de production \u00e0 base de vent et de soleil (et aussi le cout des composants pour le nucl\u00e9aire, bien s\u00fbr !).\n\nLes sc\u00e9narios \u00e9nerg\u00e9tiques que nous avons discut\u00e9s ces derni\u00e8res ann\u00e9es ignorent cette \u00e9ventualit\u00e9. Ils supposent que dans un monde se heurtant aux limites physiques nous conservons un cadre tranquille, sans accidents, sans p\u00e9nuries de mati\u00e8res premi\u00e8res, et sans disruptions des chaines mondialis\u00e9es qui permettent de s'approvisionner en tout et n'importe quoi \u00e0 prix sans cesse en baisse.\n\nIl y a donc une contradiction interne qui commence \u00e0 devenir visible : ces sc\u00e9narios supposent de garder le b\u00e9n\u00e9fice des combustibles fossiles (la formidable \"productivit\u00e9\" de l'\u00e9conomie) tout en se d\u00e9barrassant de ces m\u00eames combustibles. La traduction \u00e9conomique est des prix suppos\u00e9s rester bas pour les dispositifs ENR alors m\u00eame que ces ENR b\u00e9n\u00e9ficient de la productivit\u00e9 fossile.\n\nRTE a annonc\u00e9 publiquement il y a quelques mois avoir mis en chantier une variante de ses sc\u00e9narios appel\u00e9e \"mondialisation contrari\u00e9e\". Il est pertinent de penser les options possibles dans un monde o\u00f9 se procurer tout ce qui est lointain devient de plus en plus difficile, et o\u00f9 la productivit\u00e9 du travail (qui vient avant tout des machines, lesquelles sont avant tout nourries \u00e0 l'\u00e9nergie fossile, et qui sont pour une large part situ\u00e9es \u00e0 l'ext\u00e9rieur du pays) est structurellement orient\u00e9e \u00e0 la baisse et non \u00e0 la hausse.\n\nPour d\u00e9sagr\u00e9able que soit peut-\u00eatre un exercice de pens\u00e9e consistant \u00e0 imaginer que tout puisse aller de travers, il correspond \u00e0 une \u00e9volution possible du monde (car gouverner c'est pr\u00e9voir !). Il y a fort \u00e0 parier que dans un tel cadre :\n- aucune option n'apparait comme sans risque (le risque premier \u00e9tant de ne \"pas y arriver\" et donc d'avoir des p\u00e9nuries \u00e9lectriques chroniques, et les impacts sur le fonctionnement du pays qui vont avec)\n- la hi\u00e9rarchie des options sera bien plus diff\u00e9renci\u00e9e que dans le monde \"en croissance verte\" de tous les sc\u00e9narios d\u00e9j\u00e0 publi\u00e9s (y compris ceux de l'Ademe).\n\nNous n'avons qu'un seul essai pour b\u00e2tir le syst\u00e8me \u00e9nerg\u00e9tique d\u00e9carbon\u00e9 de 2100. Se tromper de plan est pour partie non rattrapable." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7005825580357033984,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7005825581208477696,urn:li:activity:7005825581208477696,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7005825581208477696,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7005825581208477696,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7005825581208477696", + "threadId": "activity:7005825581208477696", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005825581208477696", + "urn": "urn:li:activity:7005825581208477696", + "numComments": 66, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7005825581208477696", + "reactionTypeCounts": [ + { + "count": 658, + "reactionType": "LIKE" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 101, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7005825581208477696", + "numLikes": 881, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005825581208477696", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 882, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7005603227807186944", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7005603227807186944)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7005603227807186944)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_electricit%C3%A9-le-gouvernement-pr%C3%A9pare-les-activity-7005603227807186944-WEjO?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7005603226947313664", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7005603227807186944", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7005603226947313664", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "2fyG3ptBNba7LeSBQkgVbA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7005603227807186944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7579087810109670610", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676128670297?e=1677240000&v=beta&t=Zory4vDCcetQub6l2KKyzfgroswyc3HJSBv7opOD9I8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676128670297?e=1677240000&v=beta&t=g7MSRoOsUVT39Spfi_73bMIgIUjqbjLdB1Px3ALIo1Y", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676128670297?e=1677240000&v=beta&t=F9v2fqfgybn0VwfLorm7ALjKnxKFEJIGwC7IXKu8LxU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676128670297?e=1677240000&v=beta&t=mllRXWVw8agtKH0Asftn0fUMqIbe_WrfJQlhMjaNxsY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGLr3kXPRWv0w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7579087810109670610)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7579087810109670610)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Electricit\u00e9 : le gouvernement pr\u00e9pare les esprits aux coupures de courant by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/electricite-le-gouvernement-prepare-les-esprits-aux-coupures-de-courant-1884506" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Electricit\u00e9\u00a0: le gouvernement pr\u00e9pare les esprits aux coupures de courant" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7005603226947313664,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il aura fallu la menace de d\u00e9lestages en janvier pour que le pays se rappelle que toute notre soci\u00e9t\u00e9 moderne repose sur l'\u00e9lectricit\u00e9. De fait, sans \u00e9lectricit\u00e9, comment faire pour passer un coup de fil, accueillir les \u00e9l\u00e8ves \u00e0 l'\u00e9cole, conserver le lait au frais, maintenir une ligne de production, faire un retrait d'argent ou un virement, monter dans l'ascenseur, travailler n'importe o\u00f9 apr\u00e8s la tomb\u00e9e du jour ou dans un local sans fen\u00eatres, faire ses courses dans une grande surface (qui a besoin de lumi\u00e8re car il s'agit g\u00e9n\u00e9ralement d'un local borgne, et besoin de caisses enregistreuses), s'informer, ou faire avancer un train ? Il faut des \u00e9lectrons pour tout et partout aujourd'hui, y compris... pour apprendre qu'il n'y en aura peut-\u00eatre pas demain ! \n\nCe qui se discute actuellement, cependant, n'est pas comparable \u00e0 ce qui se passe dans Ravage de Barjavel (un roman bas\u00e9 sur la disparition instantan\u00e9e de l'\u00e9lectricit\u00e9 dans une civilisation \"avanc\u00e9e\", avec retour \u00e0 la barbarie) : il est juste question de possibles d\u00e9lestages de 2 heures, avec un seul d\u00e9lestage par client pour l'ensemble de l'hiver.\n\nMais \u00e0 quelque chose malheur est bon : esp\u00e9rons que cet \u00e9pisode, qui nous fait toucher du doigt que le risque d'un d\u00e9faut d'\u00e9lectricit\u00e9 par manque de moyens de production est possible, va nous inciter (et inciter les politiques) \u00e0 consacrer plus de temps et d'intelligence \u00e0 bien peser les risques dans le choix d'un sc\u00e9nario \u00e9lectrique pour l'avenir. \n\nActuellement, nous voyons un peu la trace des choix faits dans le pass\u00e9 (pas que, il y a aussi le nucl\u00e9aire en r\u00e9paration ou maintenance en France) : capacit\u00e9s nucl\u00e9aires d\u00e9lib\u00e9r\u00e9ment abandonn\u00e9es (Allemagne, en Belgique et en France), moindre disponibilit\u00e9 du gaz qui devait \"assurer la transition\", modes intermittents qui ne sont pas compl\u00e9t\u00e9s par du stockage. \n\nLa cons\u00e9quence est \"juste\" un recours accru au charbon alors que le plan \u00e9tait de s'en passer (les \u00e9missions instantan\u00e9es de l'\u00e9lectricit\u00e9 sont assez \u00e9lev\u00e9es \u00e0 l'heure o\u00f9 je tape ces lignes : https://lnkd.in/eRvA7w-a ), et \u00e9ventuellement un risque de quelques coupures courtes.\n\nMais le syst\u00e8me peut parfaitement devenir bien plus instable. Il suffit pour cela qu'il y ait de moins en moins de gaz \u00e0 l'avenir (rendez vous demain soir pour le savoir ! https://bit.ly/3h23tja ), pas plus de nucl\u00e9aire (ce qui sera le cas pour les 10 \u00e0 15 ans \u00e0 venir), pas beaucoup de capacit\u00e9s de stockage saisonnier (sans lesquels une hausse de l'\u00e9olien et du solaire ne contribuent que tr\u00e8s peu \u00e0 la s\u00e9curit\u00e9 d'approvisionnement), et pas plus - voire moins - de charbon. \n\nDans nos d\u00e9bats sur l'avenir \u00e9lectrique, nous avons souvent consid\u00e9r\u00e9 que le risque majeur \u00e9tait celui li\u00e9 \u00e0 un mode de production (le nucl\u00e9aire). En fait, il est d'abord de se retrouver avec un syst\u00e8me sur lequel on ne peut plus compter en toutes circonstances. En pareil cas il n'y a plus de sortie facile \u00e0 br\u00e8ve \u00e9ch\u00e9ance." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7005603226947313664,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7005603227807186944,urn:li:activity:7005603227807186944,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 146, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7005603227807186944,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7005603227807186944,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7005603227807186944", + "threadId": "activity:7005603227807186944", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005603227807186944", + "urn": "urn:li:activity:7005603227807186944", + "numComments": 300, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7005603227807186944", + "reactionTypeCounts": [ + { + "count": 2672, + "reactionType": "LIKE" + }, + { + "count": 282, + "reactionType": "INTEREST" + }, + { + "count": 248, + "reactionType": "MAYBE" + }, + { + "count": 54, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "EMPATHY" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7005603227807186944", + "numLikes": 3285, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005603227807186944", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3287, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7005239120478224384", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7005239120478224384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7005239120478224384)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_eu-climate-plan-sacrifices-carbon-storage-activity-7005239120478224384-CJct?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7005239119605825536", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7005239120478224384", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7005239119605825536", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "fGFDx7Uc5h5oPj8+rWuyGw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7005239120478224384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7777078811448406199", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676232472315?e=1677240000&v=beta&t=Dna6-QwOGpbDsSNZmnJ2d83_M4DxLjx_r8gfd5tfRIE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676232472315?e=1677240000&v=beta&t=1Us5wDqEAlDPoMb3dh0HrXOUy2rmCxBMifADLwPrWoA", + "expiresAt": 1677240000000, + "height": 576 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676232472315?e=1677240000&v=beta&t=uUiTMbjNHlmnKDbD9QRZzYuF8zRmZFy0gjcvuxWtGS4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676232472315?e=1677240000&v=beta&t=NcZBSNlhk0YZqe_Kgzt1zSYa3tBcPqHhwkInXAXdlEY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHnJ4MzeszS0g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7777078811448406199)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7777078811448406199)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "nature.com \u2022 11 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EU climate plan sacrifices carbon storage and biodiversity for bioenergy by nature.com", + "actionTarget": "https://www.nature.com/articles/d41586-022-04133-1#ref-CR1" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EU climate plan sacrifices carbon storage and biodiversity for bioenergy" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7005239119605825536,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La biomasse est-elle \"neutre en carbone\" ? Dit autrement, lorsque l'on utilise de la biomasse (du bois b\u00fbche, des granul\u00e9s de bois, du biogaz, un \"biocarburant\"), peut-on compter pour z\u00e9ro les \u00e9missions de CO2 issues de la combustion du carbone organique contenu dans les v\u00e9g\u00e9taux utilis\u00e9s ?\n\nOui disent g\u00e9n\u00e9ralement les inventaires d'\u00e9mission (dont le bilan carbone). Oui, dit actuellement la r\u00e9glementation europ\u00e9enne ou fran\u00e7aise. Certes il faut compter le carbone fossile utilis\u00e9 pendant le proc\u00e9d\u00e9 de transformation qui va de la plante jusqu'au vecteur \u00e9nerg\u00e9tique qui sera utilis\u00e9 (par exemple pour de l'\u00e9thanol qui remplace de l'essence, il faut compter le carburant et la fabrication du tracteur, la distillation du \"jus\" obtenu apr\u00e8s fermentation des betteraves ou du ma\u00efs, et encore quelques bricoles), mais le carbone qui \u00e9tait contenu dans la plante, non.\n\nCa se discute, explique un \"commentaire\" paru dans Nature (un \"commentaire\" est un article qui ne donne pas lieu \u00e0 un processus de revue par les pairs, la r\u00e9daction de la revue d\u00e9cidant seule si elle le prend ou pas). Car si l'on regarde au plan mondial, il y a de la d\u00e9forestation nette pour obtenir de nouvelles surfaces agricoles.\n\nSi l'Europe rajoute des cultures \u00e9nerg\u00e9tiques en plus des cultures alimentaires, il faut disposer de plus de surface au total. Soit l'Europe d\u00e9foreste chez elle, soit elle importe directement de la biomasse \u00e9nerg\u00e9tique, et alors elle va accro\u00eetre encore plus la d\u00e9forestation \u00e0 l'ext\u00e9rieur, par effet de domino si ce n'est en direct. \n\nSi la population de l'Europe continue d'augmenter un peu, et que les r\u00e9gimes alimentaires ne changent pas, le recours accru \u00e0 la biomasse est donc assur\u00e9 d'engendrer plus de d\u00e9forestation de mani\u00e8re globale. \n\nIncidemment, les auteurs ont postul\u00e9 - de mani\u00e8re surprenante puisque le GIEC souligne abondamment le risque d'un stress accru sur les rendements agricoles - sur une augmentation \u00e0 l'avenir des rendements des cultures. Si l'on enl\u00e8ve cette hypoth\u00e8se optimiste, la conclusion est encore plus nette.\n\nIl y a 20 ans, nous aurions pu choisir d'\u00e9conomiser du gaz et du p\u00e9trole essentiellement par une baisse de la consommation (consommation des v\u00e9hicules neufs baissant bien plus vite, trafic a\u00e9rien limit\u00e9 en volume, r\u00e9novation plus vigoureuse des b\u00e2timents), ce qui aurait permis de diminuer la quantit\u00e9 de p\u00e9trole et de gaz utilis\u00e9s sans avoir besoin de compenser par la biomasse.\n\nEt aujourd'hui ? L'option nucl\u00e9aire en plus comme l'option \u00e9lectricit\u00e9 ENR en plus prenant des d\u00e9cennies pour des quantit\u00e9s significatives, et la rotation du parc (de voitures, de b\u00e2timents r\u00e9nov\u00e9s) \u00e9tant lente, si nous voulons faire manger de la biomasse \u00e0 nos voitures et nos b\u00e2timents existants, il faut en manger moins nous-m\u00eames, sauf \u00e0 sacrifier un peu plus la biodiversit\u00e9. Il n'y a qu'un sol !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7005239119605825536,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7005239120478224384,urn:li:activity:7005239120478224384,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 63, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7005239120478224384,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7005239120478224384,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7005239120478224384", + "threadId": "activity:7005239120478224384", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005239120478224384", + "urn": "urn:li:activity:7005239120478224384", + "numComments": 122, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7005239120478224384", + "reactionTypeCounts": [ + { + "count": 974, + "reactionType": "LIKE" + }, + { + "count": 150, + "reactionType": "INTEREST" + }, + { + "count": 134, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7005239120478224384", + "numLikes": 1277, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7005239120478224384", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1277, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7004752069165203457", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7004752069165203457)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7004752069165203457)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_invitation-nouveau-rapport-du-shift-sur-activity-7004752069165203457-5F0y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7004752068309581824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7004752069165203457", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7004752068309581824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "JGPpypCvBXofBCChJl0uXQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7004752069165203457,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7196578192530557346", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676331116371?e=1677240000&v=beta&t=hU9dAJeAR1dtr2tKDeNDIInagtDe9dOknv613A49B98", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676331116371?e=1677240000&v=beta&t=q4bc8ZN55Pnd_HljdK0tvFjy5fOvVoZ7JOAGHaWHCZ0", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676331116371?e=1677240000&v=beta&t=ijhyQykymxO_G0l_Yp-QR7hpYk_BMhIXaz-hAP3KN_s", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676331116371?e=1677240000&v=beta&t=HHrbcvsgM-2pD-Jw6s0NGlUHv0x9J4Uyc7dxnc3EcC4", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEhDFyuTKuKOQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7196578192530557346)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7196578192530557346)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [INVITATION] Nouveau rapport du Shift sur le gaz | 6 d\u00e9c. \u00e0 18h by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-rapport-gaz-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[INVITATION] Nouveau rapport du Shift sur le gaz | 6 d\u00e9c. \u00e0 18h" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7004752068309581824,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Aurons nous du gaz cet hiver ? Derri\u00e8re cette question s'en cache une autre, qui est la m\u00eame mais \u00e0 des horizons de temps plus \u00e9loign\u00e9s : aurons nous du gaz les hivers d'apr\u00e8s ? The Shift Project vous propose d'assister, le 6 d\u00e9cembre prochain \u00e0 18h, \u00e0 la pr\u00e9sentation d'un travail qui a \u00e9t\u00e9 men\u00e9 par notre association et qui permet entre autres de disserter sur cette question. \n\nPlus pr\u00e9cis\u00e9ment, nous fournirons notre analyse sur les possibilit\u00e9s \"physiques\" maximales (donc avec pour seules limites les capacit\u00e9s de production contraintes par la seule g\u00e9ologie, et les capacit\u00e9s de transport d\u00e9ployables \u00e0 l'avenir) d'approvisionnement en gaz de l'Union Europ\u00e9enne d'ici \u00e0 2050.\n\nNous avons utilis\u00e9 la m\u00eame m\u00e9thode que celle qui avait \u00e9t\u00e9 suivie pour les perspectives d'approvisionnement en p\u00e9trole dans l'Union Europ\u00e9enne d'ici \u00e0 2050 (https://lnkd.in/dwPcgve ). Nous avions alors eu acc\u00e8s \u00e0 une base de donn\u00e9es (non publique) recensant l'int\u00e9gralit\u00e9 des gisements p\u00e9troliers dans le monde, exploit\u00e9s ou non, incluant les gisements restants \u00e0 d\u00e9couvrir (en volume), et des experts du secteur (mentionn\u00e9s en t\u00eate du rapport) en ont d\u00e9duit, apr\u00e8s analyse, la production maximale possible d'ici \u00e0 2050, sous seule contrainte g\u00e9ologique, des 16 premiers pays fournissant l'Europe (qui sont aussi les 16 premiers producteurs mondiaux, hors Br\u00e9sil et Canada).\n\nNous avons reproduit la m\u00eame d\u00e9marche avec les gisements de gaz. Incidemment ces derniers sont pour partie aussi ceux fournissant du p\u00e9trole, puisqu'une partie du gaz produit dans le monde est issu de gisements mixtes (contenant du p\u00e9trole et du gaz).\n\nCe travail - in\u00e9dit en France dans l'espace public - a fait l'objet d'un financement sp\u00e9cifique de RTE (rappelons que 20% environ de l'\u00e9lectricit\u00e9 europ\u00e9enne \u00e9tait produite avec du gaz en 2021), de la Direction g\u00e9n\u00e9rale des relations internationales et de la strat\u00e9gie (DGRIS) du Minist\u00e8re des Arm\u00e9es, et du BRGM, le service g\u00e9ologique national (https://lnkd.in/etMp4BRp).\n\nC'est donc Mardi prochain que vous pourrez \"venir au r\u00e9sultat\". Sans divulg\u00e2cher le r\u00e9sultat, comme disent nos amis qu\u00e9becois, et sans mauvais jeu de mots, vous d\u00e9couvrirez en quoi, apr\u00e8s le p\u00e9trole (dont le flux entrant en Europe devrait baisser de mani\u00e8re massive d'ici \u00e0 2050 m\u00eame si la question climatique n'est pas g\u00e9r\u00e9e), ca risque aussi d'\u00eatre chaud pour le gaz...\n\nInscription gratuite \u00e0 partir de la page en lien dans l'image. Si vous \u00eates journaliste, une conf\u00e9rence de presse aura lieu le m\u00eame jour \u00e0 9h30 (d\u00e9tails d'inscription sur la m\u00eame page). A vos cols roul\u00e9s ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7004752068309581824,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7004752069165203457,urn:li:activity:7004752069165203457,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 31, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7004752069165203457,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7004752069165203457,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7004752069165203457", + "threadId": "activity:7004752069165203457", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004752069165203457", + "urn": "urn:li:activity:7004752069165203457", + "numComments": 86, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7004752069165203457", + "reactionTypeCounts": [ + { + "count": 973, + "reactionType": "LIKE" + }, + { + "count": 92, + "reactionType": "MAYBE" + }, + { + "count": 79, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7004752069165203457", + "numLikes": 1174, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004752069165203457", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1175, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7004364148159471617", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7004364148159471617)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7004364148159471617)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_russia-is-using-energy-as-a-weapon-activity-7004364148159471617-wnvo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7004364146745995264", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7004364148159471617", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7004364146745995264", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "xX7gtLd0pHDYfbRkJlxLPg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7004364148159471617,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9013362913010070605", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675783101554?e=1677240000&v=beta&t=9UnxAAu09oNCZI0y6rULc3Kl3nM9f0f8AOe0QrUfB7Q", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675783101554?e=1677240000&v=beta&t=sdhXF9yc3_bGtwX5GWPpvNlfEJcdc11QU6TzRrFB2ZA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675783101555?e=1677240000&v=beta&t=ult9fJx2cRvoRyqI-KqMyL33CFoockOkPOrswyMcH8o", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675783101555?e=1677240000&v=beta&t=PryQDLdW0XBF4f_4vBkj6Vzl2W8Gt2G4lWHq0__jOqs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHnQFMSY0aQmA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9013362913010070605)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9013362913010070605)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "economist.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Russia is using energy as a weapon by economist.com", + "actionTarget": "https://www.economist.com/interactive/graphic-detail/2022/11/26/high-fuel-prices-could-kill-more-europeans-than-fighting-in-ukraine-has" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Russia is using energy as a weapon" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7004364146745995264,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"Ile ne passera pas l'hiver\" : cette vieille maxime rappelle que le froid tue. Il tue en direct car il augmente les risques cardiovasculaires (le froid stresse un peu le syst\u00e8me circulatoire), et en indirect car il favorise la survie des virus pendant leur s\u00e9jour dans l'air, et nous rassemble dans des int\u00e9rieurs peu ventil\u00e9s o\u00f9 la contamination est plus rapide (c'est pour ces deux raisons que les \u00e9pid\u00e9mies de grippe ont lieu l'hiver).\n\nChez les \u00eatres humains, une saison hivernale plus froide tue donc un peu plus (ce n'est pas le cas pour nombre de v\u00e9g\u00e9taux des moyennes latitudes, o\u00f9 un hiver trop doux n'\u00e9limine pas les ravageurs). En Europe, cet effet de surmortalit\u00e9 hivernale est d'autant plus prononc\u00e9 que la temp\u00e9rature moyenne du pays est \u00e9lev\u00e9e. Un hiver \"plus froid que la normale\" fait donc plus de morts au Portugal qu'en Finlande, parce que dans les pays du Nord les infrastructures sont con\u00e7ues \"\u00e0 la base\" pour prot\u00e9ger les gens du froid alors que ce n'est pas autant le cas au sud.\n\nPar ailleurs, quand les prix de l'\u00e9nergie sont \u00e9lev\u00e9s, les gens se chauffent moins, et cela fait des morts en plus. Cet effet avait d\u00e9j\u00e0 \u00e9t\u00e9 constat\u00e9 au Japon suite \u00e0 Fukushima, et avec l'envol\u00e9e des prix du gaz et de l'\u00e9lectricit\u00e9 sur notre continent, il va malheureusement aussi s'appliquer l'hiver prochain (et possiblement les hivers d'apr\u00e8s, car nous n'avons pas fini d'avoir des sujets avec l'approvisionnement en gaz sur notre continent : https://lnkd.in/dmPNvP3V ).\n\nThe Economist a ainsi fait des simulations sur le nombre de morts que la guerre en Ukraine allait provoquer avec cet effet de hausse des prix. La conclusion est que les morts par d\u00e9faut de chauffage seront plus nombreux que ceux directement li\u00e9s au conflit. Mais \u00e9videmment ce ne sont pas les m\u00eames : sans que ce constat ne porte en quoi que ce soit un jugement de valeur, la guerre tue surtout des gens jeunes et \"bien portants\", le froid surtout des gens \u00e2g\u00e9s et/ou d\u00e9j\u00e0 en mauvaise condition sanitaire.\n\nCe serait en Italie que cet effet serait le plus ample, et en France et en Espagne le moins. \n\nCet \u00e9pisode rappelle qu'il y a une diff\u00e9rence importante entre la sobri\u00e9t\u00e9 et la pauvret\u00e9 : les deux vont avec une baisse de l'\u00e9nergie utilis\u00e9e parce que nous nous passons de services auparavant utilis\u00e9s (par exemple des m\u00e8tres carr\u00e9s chauff\u00e9s), mais dans le premier cas c'est d\u00e9sir\u00e9 et planifi\u00e9 (par exemple on optimise l'occupation des b\u00e2timents existants en diminuant l'\u00e9nergie pour chauffer ou refroidir le parc, mais sans diminuer le confort thermique des occupants), ce qui minimise les cons\u00e9quences d\u00e9sagr\u00e9ables ; dans le second c'est subi alors que nous n'avions rien demand\u00e9, et fatalement ca se passe moins bien." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7004364146745995264,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7004364148159471617,urn:li:activity:7004364148159471617,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 43, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7004364148159471617,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7004364148159471617,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7004364148159471617", + "threadId": "activity:7004364148159471617", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004364148159471617", + "urn": "urn:li:activity:7004364148159471617", + "numComments": 113, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7004364148159471617", + "reactionTypeCounts": [ + { + "count": 1049, + "reactionType": "LIKE" + }, + { + "count": 242, + "reactionType": "INTEREST" + }, + { + "count": 183, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7004364148159471617", + "numLikes": 1490, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7004364148159471617", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1490, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7003671719844446208", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7003671719844446208)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7003671719844446208)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_chaleur-renouvelable-la-grande-oubli%C3%A9e-activity-7003671719844446208-feFe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7003671719206879232", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7003671719844446208", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7003671719206879232", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "/Rej7lIh7t23i7LyZqQcWg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7003671719844446208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8585409607354519917", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676548360767?e=1677240000&v=beta&t=BQCp4N22cu_N9qcnpeoDmA6vyYWox4jBdJz00947Ya0", + "expiresAt": 1677240000000, + "height": 599 + }, + { + "width": 1067, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676548360767?e=1677240000&v=beta&t=FKoVBE-gpJlVEXJBqHCGG9vmC_2mowISwYnrqGVm63g", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676548360767?e=1677240000&v=beta&t=tv1ZYPraSMa833VWWoWZK_RoQSHypygt9e73pcGkXV4", + "expiresAt": 1677240000000, + "height": 119 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676548360767?e=1677240000&v=beta&t=GvGrhaNw9bE3tmiM-K0wn9KsmgYc-9uMJG2OgeSx9lU", + "expiresAt": 1677240000000, + "height": 359 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEDoFy4e7cplA/articleshare-shrink_" + }, + "displayAspectRatio": 0.74875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8585409607354519917)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8585409607354519917)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Chaleur renouvelable : la grande oubli\u00e9e de la strat\u00e9gie \u00e9nerg\u00e9tique fran\u00e7aise ? | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-chaleur-renouvelable" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Chaleur renouvelable : la grande oubli\u00e9e de la strat\u00e9gie \u00e9nerg\u00e9tique fran\u00e7aise ? | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7003671719206879232,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quand on prononce l'expression \"\u00e9nergie renouvelable\", nombre d'entre nous vont inconsciemment remplacer \"\u00e9nergie\" par \"\u00e9lectricit\u00e9\", et, aid\u00e9s en cela par l'image d'Epinal du panneau solaire et de l'\u00e9olienne, au sein de l'\u00e9lectricit\u00e9 on ne pense pas souvent aux barrages, pourtant la premi\u00e8re source d'\u00e9lectricit\u00e9 renouvelable dans le monde (16% du total vs environ 7% pour l'\u00e9olien et 4% pour le solaire) et en France.\n\nMais dans l'\u00e9nergie il n'y a pas que l'\u00e9lectricit\u00e9. Carbone 4 vous propose une publication de 50 pages sur la chaleur, et plus pr\u00e9cis\u00e9ment la chaleur renouvelable, qui, de fait, a re\u00e7u consid\u00e9rablement moins d'attention et de moyens de la part de la puissance publique que l'\u00e9lectricit\u00e9 ces derni\u00e8res d\u00e9cennies, alors que la chaleur est bien plus fossile que l'\u00e9lectricit\u00e9 dans notre pays. D'o\u00f9 la question pos\u00e9e dans le titre : n'avons nous pas \"oubli\u00e9\" l'essentiel, sachant que la chaleur c'est 45% des usages \u00e9nerg\u00e9tiques finaux en France (l'\u00e9lectricit\u00e9 c'est environ 20%).\n\nPompes \u00e0 chaleur a\u00e9rothermiques ou g\u00e9othermiques, pour le chauffage (chaleur basse temp\u00e9rature) ou l'industrie (chaleur haute temp\u00e9rature), bois, solaire thermique, biogaz... : l'\u00e9quipe de Carbone 4 a pass\u00e9 en revue les diverses sources \u00e9ligibles, leurs usages possibles, les potentiels, et les couts. \n\nComme dans l'\u00e9lectricit\u00e9, toutes les sources de chaleur renouvelable ne se valent pas : pas les m\u00eames gisements, pas les m\u00eames efficacit\u00e9s, pas les m\u00eames couts de mise en oeuvre et couts \u00e0 tonne de CO2 \u00e9vit\u00e9e. Comme pour l'\u00e9lectricit\u00e9, certaines sources sont b\u00e9n\u00e9fiques pour le CO2 mais pas sans contreparties sur d'autres impacts : c'est notamment le cas pour la biomasse et la biodiversit\u00e9. \n\n2 applications sont largement sous-d\u00e9velopp\u00e9es (au sens premier du terme : pas assez d\u00e9velopp\u00e9es) en France : le solaire thermique et la g\u00e9othermie (incluant les pompes \u00e0 chaleur).\n\nEn conclusion \"La d\u00e9carbonation de la chaleur en France ne suit pas une trajectoire qui permettrait d\u2019atteindre les objectifs fix\u00e9s dans la loi pour respecter une neutralit\u00e9 carbone \u00e0 horizon 2050\". Avant de savoir quoi faire pour que cette conclusion soit un peu moins valable, cette publication vous permet de comprendre de quelle situation nous partons (et en plus c'est gratuit, c'est pas beau \u00e7a ?)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7003671719206879232,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7003671719844446208,urn:li:activity:7003671719844446208,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 144, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7003671719844446208,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7003671719844446208,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7003671719844446208", + "threadId": "activity:7003671719844446208", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003671719844446208", + "urn": "urn:li:activity:7003671719844446208", + "numComments": 214, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7003671719844446208", + "reactionTypeCounts": [ + { + "count": 2280, + "reactionType": "LIKE" + }, + { + "count": 254, + "reactionType": "INTEREST" + }, + { + "count": 156, + "reactionType": "MAYBE" + }, + { + "count": 51, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "EMPATHY" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7003671719844446208", + "numLikes": 2787, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003671719844446208", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2787, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7003260990230274048", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7003260990230274048)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7003260990230274048)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-cop-27-sest-achev%C3%A9e-il-y-a-peu-il-est-activity-7003260990230274048-SRQ0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7003260989353689088", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7003260990230274048", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7003260989353689088", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "M4BaC10aactm1tMeVFdmBw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7003260990230274048,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGOEGTIiL_H7Q", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGOEGTIiL_H7Q", + "artifacts": [ + { + "width": 767, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1669707532955?e=1679529600&v=beta&t=NlLx-UB6aFn87i2zEznRCtcrX1TUUYofRjzF5xvP6gw", + "expiresAt": 1679529600000, + "height": 477 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1669707533110?e=1679529600&v=beta&t=Lh7LuBSBKHRkVWbQAloi5UbXCqnMHlMgCWd_5k95UkA", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 767, + "fileIdentifyingUrlPathSegment": "1280/0/1669707533110?e=1679529600&v=beta&t=B7VeYs6XDQm1oy6t1n_kqoGuwVYZEnfAofKSR9wjSxA", + "expiresAt": 1679529600000, + "height": 477 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1669707533110?e=1679529600&v=beta&t=MFi_44HT1B3oVfybH9qVPeH1UQ4KEopS3lf-ovNH8vU", + "expiresAt": 1679529600000, + "height": 299 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1669707533110?e=1679529600&v=beta&t=iX4_CsRKgAZdFcRSVmNlxm-e-aMZb_j3EFDbJ2ih9_4", + "expiresAt": 1679529600000, + "height": 100 + }, + { + "width": 767, + "fileIdentifyingUrlPathSegment": "800/0/1669707533110?e=1679529600&v=beta&t=5o7jBQwLNfiyA9_3My6B80GrY3dwSreE9yGGXUxGpKY", + "expiresAt": 1679529600000, + "height": 477 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGOEGTIiL_H7Q/feedshare-shrink_" + }, + "displayAspectRatio": 0.621903520208605 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7003260989353689088,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La COP 27 s'est achev\u00e9e il y a peu. Il est trop t\u00f4t pour savoir si cette COP aura contribu\u00e9, comme la COP 26, \u00e0 polariser l'opinion de mani\u00e8re plus prononc\u00e9e qu'avant (un article en libre acc\u00e8s dans Nature montre que la COP 26 a conduit la twittosph\u00e8re \u00e0 se polariser bien plus qu'avant, avec un camp \"d'anti\", largement pioch\u00e9 dans les milieux tr\u00e8s conservateurs, qui monte en puissance : https://lnkd.in/eVRJBvhn ).\n\nPar contre il est toujours temps de faire un bilan de l'\u00e9volution des \u00e9missions depuis la signature de la Convention Climat, au Sommet de la Terre en 1992. C'est en effet dans le cadre de cette Convention que se tiennent des rencontres annuelles depuis 1995, appel\u00e9es COP (Convention Of the Parties), qui donnent lieu \u00e0 de nombreux commentaires sur le fait qu'elles aient \u00e9t\u00e9 un succ\u00e8s ou un \u00e9chec.\n\nLe bilan que je vous propose est tout simplement la variation des \u00e9missions plan\u00e9taires de gaz \u00e0 effet de serre entre 1992 et 2021 (graphique ci-dessous). Pour chaque gaz, et chaque source principale pour le CO2, j'ai regard\u00e9 de combien avaient vari\u00e9 les \u00e9missions de 1992 quand on les regarde aujourd'hui. Par exemple, les \u00e9missions de CO2 issu du charbon \u00e9taient en 2021 75% plus \u00e9lev\u00e9 qu'en 1992.\n\nPour l'ensemble du CO2 les \u00e9missions ont augment\u00e9 d'environ 60% en 29 ans, et ainsi de suite.\n\nDans l'ensemble des \u00e9nergies fossiles, c'est aujourd'hui le charbon qui engendre les \u00e9missions les plus fortes, mais c'est le gaz qui a connu la plus forte augmentation sur la p\u00e9riode. \n\n\"Lime calcination\" d\u00e9signe en fran\u00e7ais la calcination du calcaire, c'est \u00e0 dire la r\u00e9action qui a lieu dans les fours \u00e0 ciment (chauff\u00e9s \u00e0 plus de 1000 \u00b0C), o\u00f9 la mol\u00e9cule de calcaire - CaCO3 - est d\u00e9compos\u00e9e en chaux vive - CaO - et du CO2, ce dernier partant dans l'air. la chaux vive se combine avec d'autres min\u00e9raux (marne et argile) pour former le clinker qui, broy\u00e9, donnera le composant principal du ciment. Il se produit annuellement environ 4 milliards de tonnes de ciment dans le monde, conduisant \u00e0 l'\u00e9mission d'environ 2,5 milliards de tonnes de CO2.\n\nLe m\u00e9thane a augment\u00e9 de 25% sur la p\u00e9riode et les autres gaz (protoxyde d'azote et gaz halog\u00e9n\u00e9s) d'environ 50% Aucun n'a baiss\u00e9.\n\nEn regardant ce tableau il est \u00e9vident que d'avoir sign\u00e9 la Convention Climat n'a pour l'heure pas suffit \u00e0 inverser la tendance. On peut au moins en d\u00e9duire une conclusion simple : compter essentiellement sur ces r\u00e9unions pour r\u00e9gler le probl\u00e8me \"\u00e0 notre place\" est une illusion. Si nous voulons que les valeurs de ce graphique deviennent n\u00e9gatives (ce qui est l'objectif) il faudra prendre le taureau par les cornes dans chaque pays pris individuellement.\n\nEn Europe, comme de toute fa\u00e7on la d\u00e9crue d'approvisionnement en combustibles fossiles \u00e9tait amorc\u00e9e avant Poutine, la direction n'est pas n\u00e9gociable. Seules les modalit\u00e9s de la p\u00e9dagogie du probl\u00e8me et les modalit\u00e9s de gestion de la baisse le sont.\n\nDonn\u00e9es diverses et compilation de votre serviteur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7003260989353689088,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7003260990230274048,urn:li:activity:7003260990230274048,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7003260990230274048,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7003260990230274048,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7003260990230274048", + "threadId": "activity:7003260990230274048", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003260990230274048", + "urn": "urn:li:activity:7003260990230274048", + "numComments": 115, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7003260990230274048", + "reactionTypeCounts": [ + { + "count": 1014, + "reactionType": "LIKE" + }, + { + "count": 170, + "reactionType": "INTEREST" + }, + { + "count": 98, + "reactionType": "MAYBE" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7003260990230274048", + "numLikes": 1315, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7003260990230274048", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1315, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002900350407966720", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002900350407966720)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002900350407966720)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sondage-exclusif-les-fran%C3%A7ais-trouvent-activity-7002900350407966720-nU0y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002900349405569024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002900350407966720", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002900349405569024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "ukIDGOBrmheHfor3iiTN3Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002900350407966720,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8036308201381245324", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675670372974?e=1677240000&v=beta&t=G0WzxIoKLR1_wltPY-Obdk_O7oatLCMsLS6phybYoXc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675670372974?e=1677240000&v=beta&t=fzszG6ZvbnoIvPBXS6wmpLd4LBgEgaFbvz5SM2or5A0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675670372974?e=1677240000&v=beta&t=UM5RmY9T6ra8XHPlyzYiF7-lJdRhYhDWQWfVEEkvC2k", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675670372974?e=1677240000&v=beta&t=9fIDs0KmhYKXbY1KRf1QoiNAWR_makJ5tF48HOQlAUQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHDs8Y3iG5jPg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8036308201381245324)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8036308201381245324)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: SONDAGE EXCLUSIF - Les Fran\u00e7ais trouvent peu lisible la politique \u00e9nerg\u00e9tique du gouvernement by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/politique-societe/societe/sondage-exclusif-les-francais-trouvent-illisible-la-politique-energetique-du-gouvernement-1881508" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "SONDAGE EXCLUSIF - Les Fran\u00e7ais trouvent peu lisible la politique \u00e9nerg\u00e9tique du gouvernement" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002900349405569024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un sondage effectu\u00e9 pour Les Echos sur la politique \u00e9nerg\u00e9tique du gouvernement est publi\u00e9 dans ce journal (\u00e9lectronique ; on devrait plut\u00f4t dire \"publi\u00e9 sur cet \u00e9cran !).\n\nIl fait appara\u00eetre quelques enseignements int\u00e9ressants :\n\n- aucune des questions reproduites dans l'article ne contient les mots \"p\u00e9trole\" ou \"gaz\". Les questions portent quasi-exclusivement sur l'\u00e9lectricit\u00e9 (un travers classique des d\u00e9bats sur l'\u00e9nergie). Il y a une question sur l'ind\u00e9pendance \u00e9nerg\u00e9tique qui peut \u00e9ventuellement s'interpr\u00e9ter en pensant p\u00e9trole, mais c'est tout.\n\n- ensuite les r\u00e9ponses sont parfois gentiment contradictoires les unes avec les autres (ce que fait remarquer l'article), parce que la r\u00e9ponse est souvent dans la question avec cette mani\u00e8re de proc\u00e9der. Les anglais posent souvent des questions comportant leurs propres contreparties (par exemple \"sachant que d'avoir au moins y% d'\u00e9olien demandera qu'\u00e0 un moment il y ait une \u00e9olienne de plus de z m de haut \u00e0 moins de x km de chez vous si vous habitez dans une agglom\u00e9ration de moins de N habitants, \u00eates vous favorable \u00e0 ce d\u00e9veloppement ?\" \n\n- nonobstant ce qui pr\u00e9c\u00e8de on d\u00e9couvre (avec \u00e9tonnement pour moi parce que c'est probablement un revirement r\u00e9cent) que la construction de nouvelles centrales nucl\u00e9aires est vue plus favorablement que la construction de nouvelles \u00e9oliennes. \n\n- la strat\u00e9gie du gouvernement est consid\u00e9r\u00e9e comme \"pas claire\" sur l'\u00e9nergie (en fait l'\u00e9lectricit\u00e9, donc). Mais il est impossible de savoir au vu de ce seul sondage si cela r\u00e9sulte du fait que le gouvernement est consid\u00e9r\u00e9 comme \"pas clair\" quoi qu'il fasse (ce qui est possible voire probable si le pouvoir en place a \u00e9t\u00e9 \"mal \u00e9lu\"), ou bien si l'\u00e9nergie - l'\u00e9lectricit\u00e9 donc - est \"nettement moins claire\" que le reste. Dans ce dernier cas il y a \u00e0 nouveau deux possibilit\u00e9s : que ce soit le r\u00e9sultat logique de revirements (sur le nucl\u00e9aire par exemple), ou un jugement qui cache en fait le d\u00e9sarroi face \u00e0 la valse actuelle des prix (la question n'est pas pos\u00e9e).\n\nSavoir ce que pensent nos concitoyens est essentiel en d\u00e9mocratie. Mais pour avoir une mati\u00e8re suffisamment d\u00e9taill\u00e9e pour en tirer des conclusions pour l'action (l'action pouvant inclure la p\u00e9dagogie du probl\u00e8me quand il est manifeste que ce dernier n'est pas bien appr\u00e9hend\u00e9), il faut aller au del\u00e0 des questions \"trop simples\" des sondages, qui donnent souvent une information incompl\u00e8te - et parfois incoh\u00e9rente - sur la hi\u00e9rarchie des pr\u00e9f\u00e9rences quand on ne peut pas tout avoir. La premi\u00e8re conclusion que je tire de la lecture des r\u00e9sultats est qu'il faut en savoir plus !\n\nNous n'aurons pas deux essais pour b\u00e2tir un syst\u00e8me d\u00e9carbon\u00e9 et durable au 21\u00e8 si\u00e8cle. Pour se donner les meilleures chances d'y parvenir, il faut comprendre \u00e0 la fois les barri\u00e8res physiques et les pr\u00e9f\u00e9rences et barri\u00e8res sociales. Les sondages ne servent \u00e0 rien pour les premi\u00e8res, et pour les secondes il doivent imp\u00e9rativement \u00eatre compl\u00e9t\u00e9s par des analyses plus d\u00e9taill\u00e9es." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002900349405569024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002900350407966720,urn:li:activity:7002900350407966720,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002900350407966720,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002900350407966720,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002900350407966720", + "threadId": "activity:7002900350407966720", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002900350407966720", + "urn": "urn:li:activity:7002900350407966720", + "numComments": 115, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002900350407966720", + "reactionTypeCounts": [ + { + "count": 774, + "reactionType": "LIKE" + }, + { + "count": 60, + "reactionType": "INTEREST" + }, + { + "count": 58, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002900350407966720", + "numLikes": 908, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002900350407966720", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 914, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002749696876150784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002749696876150784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002749696876150784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sales-commercial-marketing-projet-r%C3%A9glementaire-activity-7002749696876150784-3K-J?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002749696234397697", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002749696876150784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002749696234397697", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "Cv7ek9qgQeceur3WHNKcIA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002749696876150784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7566106737272260772", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675670043036?e=1677240000&v=beta&t=x1ru5RvXQ49McxndMr5GlDc_RC1phb3s-zKdZ5Em7cw", + "expiresAt": 1677240000000, + "height": 418 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675670043036?e=1677240000&v=beta&t=H7ARJdDbe9KBHwswMCXvK-reBmg1bjSIELTqMLLFYw8", + "expiresAt": 1677240000000, + "height": 627 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675670043036?e=1677240000&v=beta&t=WsZJgYnwBx9JnkqNZ8R3ytkVEMk6ZlsH4IODRfMgrXU", + "expiresAt": 1677240000000, + "height": 83 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675670043036?e=1677240000&v=beta&t=bCu3II122KWOkPJG0sZteD-2r2ErJ_Ox5kvKFOMYSzc", + "expiresAt": 1677240000000, + "height": 250 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHEi-G2uVKrIA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7566106737272260772)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7566106737272260772)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "welcometothejungle.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Sales (Commercial, Marketing, Projet, R\u00e9glementaire) - Carbon4 Finance - CDI \u00e0 Paris by welcometothejungle.com", + "actionTarget": "https://www.welcometothejungle.com/fr/companies/carbon4-finance/jobs/sales-junior-commercial-marketing-projet-reglementaire_paris" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Sales (Commercial, Marketing, Projet, R\u00e9glementaire) - Carbon4 Finance - CDI \u00e0 Paris" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002749696234397697,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Imaginons que vous veniez de terminer des \u00e9tudes sup\u00e9rieures en vue d'avoir une activit\u00e9 dans le monde financier ou dans une fonction commerciale. Imaginons que, pendant vos \u00e9tudes, vous ayez par ailleurs r\u00e9alis\u00e9 que vous ne souhaitiez pas vendre ou financer des voitures \u00e0 essence, des m\u00e8tres carr\u00e9s de centres commerciaux, de l'imperm\u00e9abilisation des sols, des v\u00eatements qui seront port\u00e9s 3 fois, des aliments ou boissons avec plein de sucre, des engins digitaux alimentant la course aux d\u00e9bits, et j'en passe.\n\nIl se pourrait alors que cette annonce de Carbon 4 Finance vous int\u00e9resse : nous cherchons un(e) \"junior sales\" (en bon fran\u00e7ais dans le texte !), qui id\u00e9alement connaisse \u00e0 la fois la finance et les questions environnementales, pour renforcer notre \u00e9quipe commerciale.\n\nTous les d\u00e9tails dans l'annonce ci-dessous !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002749696234397697,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002749696876150784,urn:li:activity:7002749696876150784,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002749696876150784,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002749696876150784,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002749696876150784", + "threadId": "activity:7002749696876150784", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002749696876150784", + "urn": "urn:li:activity:7002749696876150784", + "numComments": 54, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002749696876150784", + "reactionTypeCounts": [ + { + "count": 688, + "reactionType": "LIKE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002749696876150784", + "numLikes": 751, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002749696876150784", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 751, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002601952358375426", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002601952358375426)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002601952358375426)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_air-quality-in-europe-2022-activity-7002601952358375426-xEsX?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002601951557251072", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002601952358375426", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002601951557251072", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "9d3Ull4Cd6rnGLNEI1qDVg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002601952358375426,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8151027872525130342", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1669316510253?e=1677240000&v=beta&t=lZOCKeTcrBgj3OD_p1FDP8fCrSpyLfcZ3emcslcoCt8", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1669316510253?e=1677240000&v=beta&t=0vyP1Yffr0uIRHdNikiRm4XUQYTglJwFS9R5kW7JGfU", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1669316510253?e=1677240000&v=beta&t=ZUey7RbLLqkJ8fr_JbJq9KZxygaIW1VhErW5LLDJsYA", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1669316510253?e=1677240000&v=beta&t=LHOkK7PguJRoeVo9uy_YBLN3-OP_4u85Djyk2zu_4g0", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE2_RweuB2cWQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8151027872525130342)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8151027872525130342)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "eea.europa.eu \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Air quality in Europe 2022 by eea.europa.eu", + "actionTarget": "https://www.eea.europa.eu/publications/air-quality-in-europe-2022/air-quality-in-europe-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Air quality in Europe 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002601951557251072,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans un rapport qui vient d'\u00eatre publi\u00e9 par l'Agence Europ\u00e9enne de l'Environnement (qui est une des instances officielles de l'Union europ\u00e9enne), figure un chiffre un peu impressionnant : la pollution aux particules fines (en particulier aux particules les plus fines, sous 2,5 microns) a engendr\u00e9 en 2020 plus de 200.000 morts pr\u00e9matur\u00e9s au sein des 27 pays membres, ou encore des millions d'ann\u00e9es de vie perdues.\n\nCette pollution engendre aussi de la morbidit\u00e9 chronique (affections bronchiques et pulmonaires notamment) qui peuvent conduire \u00e0 des invalidit\u00e9s partielles. Ce sont les pays de l'Est qui payent le plus lourd tribut \u00e0 cette pollution en nombre de vies perdues pour 100.000 habitants.\n\nLa pollution aux oxydes d'azote (qui vient de toute source de combustion) engendre elle aussi des morts pr\u00e9matur\u00e9 ainsi que du diab\u00e8te, et l'ozone des probl\u00e8mes respiratoires et aussi des morts pr\u00e9matur\u00e9s.\n\n90% de la population urbaine europ\u00e9enne est ainsi expos\u00e9e \u00e0 des niveaux de pollution qui exc\u00e8dent les seuils recommand\u00e9s par l'OMS. Les particules les plus fines viennent surtout de la combustion des \u00e9nergies fossiles : transports (qui sont aussi la premi\u00e8re source d'oxydes d'azote), chaudi\u00e8res de b\u00e2timents, et \u00e9lectricit\u00e9 faite au gaz et au charbon (une centrale \u00e0 charbon en rejette des dizaines de tonnes par milliard de kWh produit). \n\nDiminuer la quantit\u00e9 d'\u00e9nergies fossiles que nous utilisons a donc aussi un b\u00e9n\u00e9fice sanitaire. En fait il est m\u00eame double : passer \u00e0 plus de modes actifs dans les transports (marcher ou p\u00e9daler) \u00e9vite \u00e0 la fois des \u00e9missions de CO2 et de polluants locaux, et \u00e9vite de la s\u00e9dentarit\u00e9, qui est aussi un facteur important de baisse de la condition sanitaire. \n\nL'\u00e9quation n'est \u00e9videmment pas si simple, parce que, compar\u00e9 \u00e0 il y a un si\u00e8cle, l'\u00e9nergie abondante est aussi ce qui nous a amen\u00e9 la suffisance alimentaire (production accrue de nourriture et moyens de stockage et de transport performants), la protection contre les \u00e9l\u00e9ments (froid notamment), et la prophylaxie (eau potable, d\u00e9tergents et d\u00e9sinfectants). Mais il est tout \u00e0 fait possible de bouger progressivement le curseur pour conserver ces acquis tout en d\u00e9carbonant fortement notre mode de vie. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002601951557251072,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002601952358375426,urn:li:activity:7002601952358375426,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 90, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002601952358375426,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002601952358375426,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002601952358375426", + "threadId": "activity:7002601952358375426", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002601952358375426", + "urn": "urn:li:activity:7002601952358375426", + "numComments": 165, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002601952358375426", + "reactionTypeCounts": [ + { + "count": 1868, + "reactionType": "LIKE" + }, + { + "count": 231, + "reactionType": "INTEREST" + }, + { + "count": 117, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "APPRECIATION" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002601952358375426", + "numLikes": 2286, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002601952358375426", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2287, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7002220857016119296", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7002220857016119296)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7002220857016119296)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_laugmentation-des-tarifs-de-lassurance-activity-7002220857016119296-_SG_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7002220856265297920", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7002220857016119296", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7002220856265297920", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "uefSe6AZBKt2jNDIk5wZGg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7002220857016119296,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8423740630780296532", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675805509728?e=1677240000&v=beta&t=-Echq-g8P-gZ5EuK7PfmVNLAyRlRJnW5gDd2iYwyq_A", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675805509728?e=1677240000&v=beta&t=lvHY1vbDuQsuXhtOrwabVkXtJ9UsZbyt9rbC-V45xiY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675805509728?e=1677240000&v=beta&t=eSCSksqnoHXZQXDjw8sG1s4ycxs_ruailwGSd5JIzk4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675805509728?e=1677240000&v=beta&t=mZj_7DZkjXTou8JGTaXv0YIUukEnW_7hnlGORA-qTII", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHmip5sxOcWHA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8423740630780296532)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8423740630780296532)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab L'augmentation des tarifs de l'assurance est in\u00e9vitable \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/banque-assurances/laugmentation-des-tarifs-de-lassurance-est-inevitable-1882711" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0L'augmentation des tarifs de l'assurance est in\u00e9vitable\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7002220856265297920,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a fort fort longtemps, la gestion du risque se faisait en ne comptant que sur ses propres forces et une solidarit\u00e9 \"de proximit\u00e9\". Le paysan normand du Moyen Age qui avait de mauvaises r\u00e9coltes ne pouvait gu\u00e8re compter sur le proven\u00e7al ou le lorrain pour le sortir de ce mauvais pas. Le portugais qiu a vu sa maison d\u00e9truire par le s\u00e9isme de Lisbonne en 1755 ne pouvait pas vraiment compter sur le ch'ti ou m\u00eame le basque pour l'aider \u00e0 reconstruire plus vite.\n\nNous vivons aujourd'hui dans un monde o\u00f9 il en va tout autrement. Tout d'abord, gr\u00e2ce \u00e0 l'\u00e9nergie abondante, la r\u00e9paration apr\u00e8s dommage est bien plus facile. Notre maison est reconstruite par des cimenteries, des camions, des grues et des aci\u00e9ries (donc de l'\u00e9nergie) ; les r\u00e9coltes insuffisantes ici sont compens\u00e9es par des cultures exc\u00e9dentaires \"ailleurs\" qui sont elles-m\u00eames produites et achemin\u00e9es gr\u00e2ce \u00e0 des usines d'engrais, tracteurs, camions, entrep\u00f4ts et j'en passe (de l'\u00e9nergie \u00e0 nouveau).\n\nLa mise \u00e0 disposition des victimes des ressources physiques permettent de reconstruire ou compenser est par ailleurs effectu\u00e9e par la mise en commun de moyens \u00e9conomiques, par le biais de l'assurance.\n\nDeux \u00e9volutions vont venir contrarier ce m\u00e9canismes \u00e0 l'avenir :\n\n- le premier, largement \u00e9voqu\u00e9 dans cette interview du DG de Groupama dans Les Echos, est l'augmentation des sinistres que l'\u00e9volution climatique va engendrer : r\u00e9coltes plus souvent atteintes, patrimoine b\u00e2ti plus souvent d\u00e9grad\u00e9 (voir \u00e0 ce propos https://bit.ly/3OH6C4f qui rappelle que la s\u00e9cheresse cause d'importants dommages par r\u00e9tractation gonflement des argiles)\n\n- le second, non \u00e9voqu\u00e9, est que notre capacit\u00e9 \u00e0 reconstruire va s'affaiblir, puisque la d\u00e9crue \u00e9nerg\u00e9tique va fatalement diminuer aussi la quantit\u00e9 d'acier, de ciment, de camions et de grues dont nous pourrons disposer.\n\nLa traduction \u00e9conomique de cette double \u00e9volution n'est pas difficile \u00e0 deviner, et c'est exactement celle \u00e9voqu\u00e9e dans cette interview : des primes plus \u00e9lev\u00e9es (il va donc y avoir aussi de l'inflation \"r\u00e9elle\" - rapport\u00e9e au revenu en clair - dans l'assurance, comme en fait partout d\u00e8s lors que les ressources physiques baissent ; c'est m\u00e9canique) et des dommages moins bien couverts (l'interview\u00e9 parle d'exclusion croissante de certains biens de l'assurance dommage des habitations par exemple).\n\nDans un monde structurellement inflationniste par rapport aux revenus r\u00e9els, nous allons devoir renoncer. Il est probablement plus facile de renoncer \u00e0 la 5G pour regarder Netflix dans le m\u00e9tro, \u00e0 la construction de stades climatis\u00e9s pour jouer au foot, ou au Black Friday pour avoir un v\u00eatement en plus, que de renoncer \u00e0 garder un toit en cas de coup dur ou avoir de quoi manger si le climat est adverse.\n\nEn tout \u00e9tat de cause, cette interview rappelle - m\u00eame si ce n'est pas sympathique - qu'\u00e0 ne vouloir rien abandonner nous prenons le risque de perdre beaucoup plus." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7002220856265297920,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7002220857016119296,urn:li:activity:7002220857016119296,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 102, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7002220857016119296,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7002220857016119296,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7002220857016119296", + "threadId": "activity:7002220857016119296", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002220857016119296", + "urn": "urn:li:activity:7002220857016119296", + "numComments": 164, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7002220857016119296", + "reactionTypeCounts": [ + { + "count": 2115, + "reactionType": "LIKE" + }, + { + "count": 302, + "reactionType": "INTEREST" + }, + { + "count": 237, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7002220857016119296", + "numLikes": 2724, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7002220857016119296", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2726, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2mo \u2022 Edited \u2022 ", + "accessibilityText": "2 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7001982091718443008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7001982091718443008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7001982091718443008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-m%C3%AAme-%C3%A0-lautomne-la-s%C3%A9cheresse-reste-activity-7001982091718443008-KWuL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7001982090997047297", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7001982091718443008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7001982090997047297", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "JimrpsL3LwwW5lakxuimOw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7001982091718443008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9089597486000845732", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675646722797?e=1677240000&v=beta&t=He1rK_g2f3pezbcmLz-o1cVeRN7pvFZfZNbFz36e3A8", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675646722798?e=1677240000&v=beta&t=X7LOGLkKzK9RUSq6TdhegvG5--G32Xkscyaw3Uzh_4c", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675646722798?e=1677240000&v=beta&t=DcazK0DmmPw18mtC5ABkdr1Aibx9RaSnJjWn2UYLnoE", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675646722798?e=1677240000&v=beta&t=pf5syXLkO4oeoGwesABh4bZ7RI1lQRaRFOWc5RzzxWs", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEvkcZbNlZTqg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9089597486000845732)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9089597486000845732)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "courrierinternational.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat. M\u00eame \u00e0 l\u2019automne, la s\u00e9cheresse reste d\u2019actualit\u00e9 en Espagne by courrierinternational.com", + "actionTarget": "https://www.courrierinternational.com/article/climat-meme-a-l-automne-la-secheresse-reste-d-actualite-en-espagne" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat. M\u00eame \u00e0 l\u2019automne, la s\u00e9cheresse reste d\u2019actualit\u00e9 en Espagne" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7001982090997047297,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Cela fait maintenant 2 mois que c'est l'automne. Normalement c'est la saison des feuilles mortes, et surtout l'\u00e9poque d'un temps nettement plus humide que ne l'a \u00e9t\u00e9 la p\u00e9riode estivale.\n\nMais en Espagne il y a eu un d\u00e9ficit de pr\u00e9cipitations d'environ 25% depuis le 1er septembre, rapporte Courrier International. En cons\u00e9quence, les r\u00e9serves d'eau sont bien plus vides que celles de gaz, et notre voisin va devoir imposer des restrictions sur l'usage de l'eau alors que nous devrions ne plus avoir de tels probl\u00e8mes \u00e0 cette \u00e9poque.\n\nLa France n'est pas non plus \u00e9pargn\u00e9e en totalit\u00e9 : il y a encore de nombreuses r\u00e9gions en France qui sont toujours en niveau \"crise\" pour l'approvisionnement en eau : https://lnkd.in/gG9eZM8\n\nRappelons, m\u00eame si ce n'est pas dr\u00f4le, qu'il est pr\u00e9vu que la d\u00e9rive climatique entra\u00eene une baisse des pr\u00e9cipitations sur toute la partie sud de l'Europe, Espagne et France comprises. Cela va mettre sous pression la production agricole, les \u00e9cosyst\u00e8mes, la production hydro\u00e9lectrique, et les infrastructures, puisque la s\u00e9cheresse favorise la r\u00e9tractation-gonflement des argiles, qui peut fortement d\u00e9grader une bonne partie des b\u00e2timents et voies de communication construits r\u00e9cemment (https://lnkd.in/ee_AXXbQ ).\n\nIl n'est donc toujours pas temps d'utiliser l'expression \"beau temps\" quand il fait soleil. Il faudrait attendre la disparition de la totalit\u00e9 des restrictions d'usage de l'eau en France et en Espagne !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7001982090997047297,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7001982091718443008,urn:li:activity:7001982091718443008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 59, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7001982091718443008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7001982091718443008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7001982091718443008", + "threadId": "activity:7001982091718443008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001982091718443008", + "urn": "urn:li:activity:7001982091718443008", + "numComments": 102, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7001982091718443008", + "reactionTypeCounts": [ + { + "count": 1064, + "reactionType": "LIKE" + }, + { + "count": 169, + "reactionType": "INTEREST" + }, + { + "count": 161, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7001982091718443008", + "numLikes": 1429, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001982091718443008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1431, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7001543092705095681", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7001543092705095681)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7001543092705095681)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_black-friday-de-bonnes-affaires-sauf-pour-activity-7001543092705095681-Tm7L?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7001543092034011136", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7001543092705095681", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7001543092034011136", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "E0vaj/zo6qdLgdOxhfHe8g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7001543092705095681,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7798340498303405476", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675595431832?e=1677240000&v=beta&t=0jruQcEIxQoE7WzvHM5ThEk8BWxsMd6-wpn20LGWzb0", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1199, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675595431832?e=1677240000&v=beta&t=A_KvfPDKYEJWZlbCUmxOlhQDmhzs2NVYK7OuJWyecB4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675595431832?e=1677240000&v=beta&t=8amhkhstLZHm_IwJzv6yIjfmflewJMr94fXaTTlf11M", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675595431832?e=1677240000&v=beta&t=zaQ5oy8-YR7NvwDUUB9pI9qaP5MetgWj9dTRdj_uVtQ", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQERbGygi-59dQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7798340498303405476)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7798340498303405476)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Black Friday, de bonnes affaires sauf pour le climat | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/analyse-black-friday" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Black Friday, de bonnes affaires sauf pour le climat | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7001543092034011136,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le \"Vendredi noir\" commence demain (et est devenu un week-end noir en pratique, m\u00eame s'il n'est pas question d'accidents de la route). Cette f\u00eate commerciale venue tout droit des USA apr\u00e8s Halloween (\"where else\" pourrait demander un acteur c\u00e9l\u00e8bre) est une incitation de plus \u00e0 se ruer dans les magasins puis sur son compte en banque pour acheter \u00e0 moiti\u00e9 prix des choses sans lesquelles nous allons n\u00e9cessairement nous trouver tr\u00e8s mal.\n\nCette journ\u00e9e de promotion augmente de mani\u00e8re tr\u00e8s forte les ventes en ligne, qui elles-m\u00eames augmentent de mani\u00e8re forte le fret a\u00e9rien - le plus polluant de tous - ainsi que la livraison du dernier kilom\u00e8tre, bien plus souvent faite en camionnette qu'en v\u00e9lo \u00e9lectrique.\n\nC'est une des cons\u00e9quences du fait que les objets promus sont rarement fabriqu\u00e9s en France, qu'il s'agisse d'\u00e9lectrom\u00e9nager, de v\u00eatements, ou encore d'\u00e9lectronique. Sur ce dernier poste, du reste, cette journ\u00e9e vient se combiner avec la coupe du monde, qui, dans le pass\u00e9, a \u00e9t\u00e9 un gros acc\u00e9l\u00e9rateur de la vente de t\u00e9l\u00e9visions \u00e0 grand \u00e9cran (pour mieux voir les matchs), des objets eux-m\u00eames tr\u00e8s \u00e9nergivores \u00e0 la fabrication. \n\nUn petit clic sur un site de vente en ligne sera donc une petite claque pour le climat, puisque les objets command\u00e9s n'arrivent pas par pigeon voyageur, ne sont pas fabriqu\u00e9s uniquement en rotin dans le village d'\u00e0-cot\u00e9, et poussent \u00e0 la hausse la fabrication d'emballages... et les d\u00e9chets qui vont avec.\n\nUne autre cons\u00e9quence de la fabrication \"lointaine\" des objets sur lesquels nous allons nous ruer est que leur consommation accrue d\u00e9s\u00e9quilibre la balance commerciale (puisque quasiment tout est import\u00e9). \n\nCette incitation \u00e0 faire un peu plus les cigales ne va donc pas vraiment dans la bonne direction c\u00f4t\u00e9 climat, comme le rappelle cet article publi\u00e9 sur le site de Carbone 4, et n'est pas vraiment raccord avec la sobri\u00e9t\u00e9 tant vant\u00e9e par le gouvernement (mais nous ne sommes pas \u00e0 une contradiction pr\u00e8s). \n\nPlut\u00f4t que de singer les am\u00e9ricains, nous devrions faire un Vendredi vert, avec des promotions sur les v\u00e9los (qu'il faut fabriquer plus en France, composants inclus), les isolants pour les murs, les pompes \u00e0 chaleur et la reprise des cols de chemise \u00e9lim\u00e9s !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7001543092034011136,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7001543092705095681,urn:li:activity:7001543092705095681,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 270, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7001543092705095681,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7001543092705095681,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7001543092705095681", + "threadId": "activity:7001543092705095681", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001543092705095681", + "urn": "urn:li:activity:7001543092705095681", + "numComments": 394, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7001543092705095681", + "reactionTypeCounts": [ + { + "count": 6669, + "reactionType": "LIKE" + }, + { + "count": 541, + "reactionType": "PRAISE" + }, + { + "count": 291, + "reactionType": "APPRECIATION" + }, + { + "count": 106, + "reactionType": "MAYBE" + }, + { + "count": 90, + "reactionType": "INTEREST" + }, + { + "count": 70, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7001543092705095681", + "numLikes": 7767, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001543092705095681", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7774, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7001300260295696384", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7001300260295696384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7001300260295696384)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_augustin-de-romanet-la-course-au-volume-activity-7001300260295696384-SAV6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7001300259519758336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7001300260295696384", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7001300259519758336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "MGsid0FZnDFXS5pVeKI+xg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7001300260295696384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8259246450223429300", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675931543568?e=1677240000&v=beta&t=kCucKym5y9DMjKYciFFxE-U9X5q03oy02ENRMexWK2o", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675931543568?e=1677240000&v=beta&t=iO5EgkW6ga8KjwdMcc61yHd5H8W27CoWKVKM51mqBuM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675931543569?e=1677240000&v=beta&t=RYrDBqjeQ1KdEWeHBPyxbAFqJF-CFpB853OFsF1rIoA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675931543569?e=1677240000&v=beta&t=KqyRfrq7KorueY2p1138FBuaWv3Dz24C56K2c-1tHPE", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQG94VINE3HRvA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8259246450223429300)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8259246450223429300)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Augustin de Romanet : \u00abLa course au volume dans l'a\u00e9rien doit passer apr\u00e8s la d\u00e9carbonation\u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/augustin-de-romanet-laerien-doit-cesser-la-course-au-volume-1880072" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Augustin de Romanet\u00a0: \u00abLa course au volume dans l'a\u00e9rien doit passer apr\u00e8s la d\u00e9carbonation\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7001300259519758336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si dans une interview vous lisez les propos suivants :\n- qu'il faut faire passer la d\u00e9carbonation avant la croissance en volume dans l'a\u00e9rien\n- qu'il est d\u00e9raisonnable de multiplier les vols long-courriers pour un week-end ou quelques jours de vacances\n- que si les gens ne sont pas raisonnables il finira par y avoir des quotas de vols par an et par personne\n\n\u00e0 qui aurez vous envie de les attribuer ? \n\nUne premi\u00e8re r\u00e9ponse \"intuitive\" ne sera probablement pas l'auteur effectif de ces propos, \u00e0 savoir... le patron d'A\u00e9roports de Paris. Et pourtant c'est tr\u00e8s exactement ce qui est contenu dans cette interview parue dans Les Echos.\n\nCertes l'auteur des propos ajoute qu'il n'est pas favorable \u00e0 de tels quotas, et qu'il ne souhaite pas que l'on prive les fran\u00e7ais de la possibilit\u00e9 de d\u00e9couvrir le monde gr\u00e2ce \u00e0 l'avion. Mais il n'emp\u00eache : cet appel \u00e0 la mod\u00e9ration est une premi\u00e8re dans le secteur a\u00e9rien en France, o\u00f9 la r\u00e8gle jusqu'\u00e0 maintenant \u00e9tait plut\u00f4t que la technique allait se charger de r\u00e9gler la question carbonique pendant que le trafic poursuivrait sa croissance, et qu'il \u00e9tait hors de question d'entraver cette derni\u00e8re volontairement.\n\nLa situation actuelle n'est pourtant pas durable. L'aviation consommait environ 8% du p\u00e9trole mondial avant covid. Si on transformait en agrocarburants la totalit\u00e9 des 4 premi\u00e8res cultures mondiales (bl\u00e9 - ma\u00efs - riz - soja) cela ferait \"juste\" 25% du p\u00e9trole mondial : il est d\u00e8s lors difficile d'imaginer que l'on va massivement se priver de cultures v\u00e9g\u00e9tales (au surplus dans un monde o\u00f9 les rendements vont \u00eatre attaqu\u00e9s par le r\u00e9chauffement climatique) pour avoir simplement le plaisir de passer d'un continent \u00e0 l'autre pour aller \u00e0 l'h\u00f4tel. \n\nCertes si on d\u00e9vie massivement des cultures pour alimenter des avions plut\u00f4t que des estomacs ce ne seront pas les m\u00eames qui profiteront des voyages et qui auront faim, mais quand m\u00eame.\n\nSi l'on parle d'hydrog\u00e8ne, pour servir en carburant les avions d\u00e9collant de France il faudrait y consacrer un petit quart de la production \u00e9lectrique fran\u00e7aise : l\u00e0 aussi je pense que toute personne un peu sens\u00e9e ne prendra pas le pari sur ses propres \u00e9conomies que l'on va y arriver bient\u00f4t.\n\nDonc oui, dans un monde sans carbone et donc sans p\u00e9trole il y aura beaucoup moins d'avions qu'aujourd'hui. Se pr\u00e9parer \u00e0 la d\u00e9crue dans ce domaine n'est surement pas l'option la plus confortable intellectuellement \u00e0 court terme, mais \u00e0 un horizon plus lointain c'est n\u00e9anmoins la meilleure. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7001300259519758336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7001300260295696384,urn:li:activity:7001300260295696384,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 175, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7001300260295696384,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7001300260295696384,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7001300260295696384", + "threadId": "activity:7001300260295696384", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001300260295696384", + "urn": "urn:li:activity:7001300260295696384", + "numComments": 329, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7001300260295696384", + "reactionTypeCounts": [ + { + "count": 5578, + "reactionType": "LIKE" + }, + { + "count": 413, + "reactionType": "INTEREST" + }, + { + "count": 364, + "reactionType": "MAYBE" + }, + { + "count": 258, + "reactionType": "PRAISE" + }, + { + "count": 56, + "reactionType": "APPRECIATION" + }, + { + "count": 37, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7001300260295696384", + "reacted": "LIKE", + "numLikes": 6706, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7001300260295696384", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6710, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7000731729195888642", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7000731729195888642)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7000731729195888642)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_coupe-du-monde-2022-le-mirage-de-la-compensation-activity-7000731729195888642-J80S?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7000731728361222144", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7000731729195888642", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7000731728361222144", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "2mTldTFEWFdRVC96bctQSw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7000731729195888642,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8534559222220643578", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676412388842?e=1677240000&v=beta&t=U0Z1Q1-5ccDYHFjsDXM7Q_DfRIf7uQne2QNs705d0OM", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676412388843?e=1677240000&v=beta&t=syzE4CzJlz3EKQoSFFiNjKRvC7TON5KA9MkLH65x1f0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676412388843?e=1677240000&v=beta&t=LL9Fas58rSzWCWckICpN9JL-Y028Uu9VZCuur3LY_P8", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676412388843?e=1677240000&v=beta&t=eybCRC6o0tmiS3EhPz3h02m_I8TAhb5KGIe1OOM5gOE", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGgqymP3wEOAQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8534559222220643578)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8534559222220643578)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Coupe du monde 2022 : le mirage de la compensation carbone pour atteindre la \u00ab neutralit\u00e9 \u00bb promise par la FIFA by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/football/article/2022/11/18/coupe-du-monde-2022-le-mirage-de-la-compensation-carbone-pour-atteindre-la-neutralite-promise-par-la-fifa_6150404_1616938.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Coupe du monde 2022\u00a0: le mirage de la compensation carbone pour atteindre la \u00ab\u00a0neutralit\u00e9\u00a0\u00bb promise par la FIFA" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7000731728361222144,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si cette information rapport\u00e9e par Le Monde est exacte, la F\u00e9d\u00e9ration Internationale de Football (FIFA) a des progr\u00e8s \u00e0 faire en mati\u00e8re de compr\u00e9hension de la science du climat.\n\nDe Google \u00e0 Microsoft, en passant par le transport a\u00e9rien ou... La Poste, de nombreuses entreprises ou organisations ont affirm\u00e9 pouvoir r\u00e9duire leur impact sur le climat \u00e0 z\u00e9ro par le biais de la \"compensation\". La technique est en apparence simple et de bon gout : on compte les \u00e9missions associ\u00e9es \u00e0 l'organisation (id\u00e9alement en les limitant au plus petit p\u00e9rim\u00e8tre possible), puis on ach\u00e8te des \"cr\u00e9dits carbone\" qui sont cens\u00e9s correspondre \u00e0 des \u00e9missions \u00e9vit\u00e9es (ou du carbone s\u00e9questr\u00e9 par reforestation) ailleurs, et le tour est jou\u00e9 : plus et moins ca fait z\u00e9ro.\n\nSauf que... pour les raisons expliqu\u00e9es en r\u00e9sum\u00e9 sur https://lnkd.in/dGTt6Zs , cette approche n'a pas de fondement scientifique. Elle donne donc au final l'illusion que l'activit\u00e9 consid\u00e9r\u00e9e peut continuer comme aujourd'hui dans un monde neutre en carbone, alors que c'est l'exact inverse qui est vrai : dans un tel monde, la quasi-totalit\u00e9 des organisations ou entreprises ne peuvent garder les m\u00eames clients, pour leur vendre la m\u00eame chose, fabriqu\u00e9e ou mise \u00e0 disposition de la m\u00eame mani\u00e8re. \n\nPar ailleurs la comptabilit\u00e9 m\u00eame des cr\u00e9dits carbone est tr\u00e8s discutable : elle ne tient pas compte du moment effectif d'\u00e9vitement (maintenant ou beaucoup plus tard), et attribue \u00e0 l'acheteur du cr\u00e9dit la totalit\u00e9 des \u00e9missions \u00e9vit\u00e9es par un projet alors m\u00eame que l'acheteur ne finance qu'une partie de ce qui permet cet \u00e9vitement. \n\nLa FIFA nous raconte donc des salades en consid\u00e9rant que, dans un monde sans \u00e9missions du tout, elle pourra continuer \u00e0 organiser des manifestations demandant 1 million de touristes a\u00e9roport\u00e9s, se rendant dans un stade climatis\u00e9, l'ensemble \u00e9tant financ\u00e9 par des recettes publicitaires de vendeurs de tout un tas de trucs qui ne pourront plus fabriquer une large partie de leurs produits.\n\nCette affirmation de \"neutralit\u00e9\" est - c'est de circonstance - se mettre la t\u00eate dans le sable, parce que \u00e0 l'\u00e9vidence dans un monde sans \u00e9missions les manifestations sportives \"plan\u00e9taires\" seront plus rares et plus modestes.\n\nEt, pour parler de neutralit\u00e9, la bonne approche est de compter s\u00e9par\u00e9ment sa contribution aux puits et ses \u00e9missions induites, et de se demander ce qui passe toujours dans un monde o\u00f9 les \u00e9missions globales baissent de 5% par an. Le bagage m\u00e9thodologique existe pour cela (voir https://lnkd.in/db7JzB2q ), mais s'y lancer demande \u00e9videmment plus de courage que de faire un communiqu\u00e9 de presse sans fondement !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7000731728361222144,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7000731729195888642,urn:li:activity:7000731729195888642,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 129, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7000731729195888642,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7000731729195888642,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7000731729195888642", + "threadId": "activity:7000731729195888642", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000731729195888642", + "urn": "urn:li:activity:7000731729195888642", + "numComments": 181, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7000731729195888642", + "reactionTypeCounts": [ + { + "count": 3001, + "reactionType": "LIKE" + }, + { + "count": 260, + "reactionType": "INTEREST" + }, + { + "count": 215, + "reactionType": "PRAISE" + }, + { + "count": 96, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "APPRECIATION" + }, + { + "count": 17, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7000731729195888642", + "numLikes": 3629, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000731729195888642", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3642, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7000475429773963264", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7000475429773963264)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7000475429773963264)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_autonomie-%C3%A9nerg%C3%A9tique-ces-villes-qui-y-activity-7000475429773963264-Jlqq?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7000475428607901696", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7000475429773963264", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7000475428607901696", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "qvEDbNpVl03hLPt0DFBvBA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7000475429773963264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8392422123000208391", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676302316259?e=1677240000&v=beta&t=knQHvM3w1p7CfRWt7HLljKWLGtSmRK_JyBX_IgtSfXQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676302316259?e=1677240000&v=beta&t=hLwVRg_QnCoChvXOzmjy9fVZ0NcMWVxCQJsX5zeRGjo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676302316259?e=1677240000&v=beta&t=0JXBaU49PmY1cKrNIWLWmpVEJl-J15P980uhoBMR_uo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676302316260?e=1677240000&v=beta&t=DHvhJDRpNpzieKhUfVWzt5vp1zbtndy-WWrYN-NmoJs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFFJ3l1Gux0RA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8392422123000208391)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8392422123000208391)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Autonomie \u00e9nerg\u00e9tique : ces villes qui y sont presque by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/autonomie-energetique-ces-villes-qui-y-sont-presque-1879686" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Autonomie \u00e9nerg\u00e9tique\u00a0: ces villes qui y sont presque" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7000475428607901696,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les Echos sont tomb\u00e9s dans le panneau... publicitaire de certains \u00e9lus locaux. Un certain nombre de communes revendiquent d\u00e9sormais une \"autonomie \u00e9nerg\u00e9tique\". Cette expression v\u00e9hicule explicitement l'id\u00e9e qu'un territoire pourrait se replier sur lui-m\u00eame, et vivre \u00e0 l'avenir en ne comptant que sur ses propres forces. Fini la d\u00e9pendance aux autres, et en route vers le paradis !\n\nMalheureusement, cette expression rel\u00e8ve d'une illusion d'optique. Tout d'abord, m\u00eame en se limitant aux consommations directes des m\u00e9nages (sans parler des entreprises, g\u00e9n\u00e9ralement non prises en compte), l'\u00e9nergie consid\u00e9r\u00e9e est le plus souvent (voire quasiment toujours ) limit\u00e9e \u00e0 l'\u00e9lectricit\u00e9, le gaz \u00e9tant parfois (mais rarement) inclus. C'est oublier un peu vite que la premi\u00e8re \u00e9nergie finale consomm\u00e9e en France c'est le p\u00e9trole. Et les puits de p\u00e9trole sont rares en France !\n\nM\u00eame les communes qui produiraient des cultures pour agrocarburants ne peuvent utiliser ces derniers purs : il n'existe pas de moteur de voiture \u00e0 l'\u00e9thanol ou \u00e0 l'huile de colza en France. \n\nEnsuite une large partie de l'\u00e9nergie consomm\u00e9e par les m\u00e9nages est incorpor\u00e9e dans les aliments, v\u00eatements, objets et services publics ou priv\u00e9s dont ils b\u00e9n\u00e9ficient : o\u00f9 est l'autonomie \u00e9nerg\u00e9tique quand on d\u00e9pend des mines de charbon australiennes et de la marine marchande mondiale pour avoir des objets en acier ?\n\nEnfin cette notion \"d'autonomie \u00e9nerg\u00e9tique\" (et \"d'\u00e9nergie positive\") est apparue avec les renouvelables. Je n'ai jamais entendu une commune poss\u00e9dant un barrage ou une centrale nucl\u00e9aire la revendiquer, alors qu'elle serait nettement plus justifi\u00e9e dans ces derniers cas si le concept \u00e9tait valide !\n\nIncidemment, si l'autonomie uniquement \u00e9lectrique \u00e9tait r\u00e9elle pour les communes qui la revendiquent \u00e0 cause de leurs \u00e9oliennes (cas \u00e9voqu\u00e9 dans l'article), cela signifierait que l'on pourrait couper la commune en question du r\u00e9seau national (si on est autonome on n'a plus besoin des autres, correct ?). Mais... avoir une production annuelle \u00e9quivalente \u00e0 la consommation annuelle ne garantirait pas pour autant de l'\u00e9lectricit\u00e9 aux habitants concern\u00e9s les jours avec peu ou pas de vent. Ces communes restent d\u00e9pendantes du r\u00e9seau et donc... ne sont pas autonomes, m\u00eame pour l'\u00e9lectricit\u00e9.\n\nEn fait, dans notre pays, aucune commune ne peut s'extraire de la mondialisation (et donc de l'\u00e9nergie utilis\u00e9e \"ailleurs\"), qui fournit \u00e0 nos habitants logements (qui contiennent de l'acier alors que nous n'avons plus de minerai de fer en France), v\u00e9hicules, aliments et v\u00eatements, et m\u00eame... les \u00e9oliennes qui rendent \"autonomes\" qui sont fabriqu\u00e9es ailleurs !\n\nCela ne nous fait pas courir plus vite dans la bonne direction que de se tromper sur le sens des mots. Pire : en cr\u00e9ant l'illusion d'une s\u00e9curit\u00e9 qui n'existe pas, nous augmentons le risque." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7000475428607901696,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7000475429773963264,urn:li:activity:7000475429773963264,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 133, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7000475429773963264,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7000475429773963264,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7000475429773963264", + "threadId": "activity:7000475429773963264", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000475429773963264", + "urn": "urn:li:activity:7000475429773963264", + "numComments": 258, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7000475429773963264", + "reactionTypeCounts": [ + { + "count": 2875, + "reactionType": "LIKE" + }, + { + "count": 300, + "reactionType": "INTEREST" + }, + { + "count": 191, + "reactionType": "PRAISE" + }, + { + "count": 106, + "reactionType": "MAYBE" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7000475429773963264", + "numLikes": 3506, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000475429773963264", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3515, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7000055382219837440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7000055382219837440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7000055382219837440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-marc-jancovici-the-shift-project-activity-7000055382219837440-qqX7?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7000055381280313344", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7000055382219837440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7000055381280313344", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "WBtN4uGfuqwn1Jc9XiCA6Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7000055382219837440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7567828376856683698", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676311096259?e=1677240000&v=beta&t=j1ENF_uJOE2upWwOSx8Hhpv7dh9X1BSL3otAgriSX_I", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676311096259?e=1677240000&v=beta&t=j2p3q2NmfdkASONWmfKd0dX5Iu4a54lB8Bpf156vNTQ", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676311096259?e=1677240000&v=beta&t=D_VaU6fhSvzbaOmM_m7YgHq5TIcnjgfPyS3ohEA225M", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676311096259?e=1677240000&v=beta&t=J0gdlKo8X94MhOoSAeJAsRaQCUU7OKqhy-PpjKQn14Y", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGcbPSVCiClrQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7567828376856683698)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7567828376856683698)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lecho.be \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean-Marc Jancovici (The Shift Project): \"Si votre entreprise ne parvient pas \u00e0 d\u00e9carboner, elle devra t\u00f4t ou tard fermer boutique\" by lecho.be", + "actionTarget": "https://www.lecho.be/dossiers/climat/jean-marc-jancovici-the-shift-project-si-votre-entreprise-ne-parvient-pas-a-decarboner-elle-devra-tot-ou-tard-fermer-boutique/10429041" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici (The Shift Project): \"Si votre entreprise ne parvient pas \u00e0 d\u00e9carboner, elle devra t\u00f4t ou tard fermer boutique\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7000055381280313344,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 51, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "qekdMpEHRuCpB2lwBapOYQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "A l'occasion d'un p\u00e9riple en Belgique organis\u00e9 par Les Shifters (belges !), l'Echo a publi\u00e9 une interview de votre serviteur. COP 27, hydrog\u00e8ne, sobri\u00e9t\u00e9, nucl\u00e9aire, d\u00e9croissance, taxe carbone et capitalisme (entre autres) ont fait l'objet du classique jeu de questions-r\u00e9ponses. Je profite de l'occasion pour rappeler quelques pr\u00e9cautions d'emploi en pareil cas.\n\nApr\u00e8s une interview (que je ne sollicite jamais, pas plus qu'un portrait, exercice que je trouve plein d'effets pervers), le texte publi\u00e9 est r\u00e9dig\u00e9 par le/la journaliste que j'ai rencontr\u00e9(e), et non par bibi. M\u00eame si je demande toujours \u00e0 me relire, le r\u00e9sultat n'est jamais ce que j'aurais \u00e9crit si j'avais r\u00e9dig\u00e9 les r\u00e9ponses en partant de z\u00e9ro.\n\nEn particulier, mon style oral et mon style \u00e9crit sont diff\u00e9rents. A l'oral, l'intonation, l'expression faciale ou le contexte autorisent des tournures qui ne prennent pas la m\u00eame signification \u00e0 l'\u00e9crit, sans ces \"\u00e0-c\u00f4t\u00e9s\". La seule mani\u00e8re d'\u00e9viter les malentendus est d'utiliser un style adapt\u00e9 \u00e0 chaque cas.\n\nPourtant, les transcriptions \u00e9crites reprennent souvent une partie des verbatim de l'interview. Cela peut donner une impression injustifi\u00e9e de radicalit\u00e9 qui n'aurait pas exist\u00e9 en style \u00e9crit utilis\u00e9 d'embl\u00e9e.\n\nUne autre pr\u00e9caution d'usage concerne le chap\u00f4 qui pr\u00e9sente l'interview\u00e9(e) : il est fait par la r\u00e9daction du journal, sans relecture, et n'engage pas la personne concern\u00e9e. C'est aussi le cas pour tout \"portrait\" publi\u00e9 dans la presse.\n\nIncidemment, \"ma\" page Wikipedia est un portrait parmi d'autres, essentiellement bas\u00e9 sur des portraits ou avis de journalistes rapportant des avis de tiers (il suffit de regarder les r\u00e9f\u00e9rences), soit de l'information de 3\u00e8 main ou plus. Je n'en ai pas \u00e9crit une ligne, et elle comporte plusieurs dizaines d'erreurs factuelles ou de conclusions erron\u00e9es.\n\nL'Echo a repris l'expression \"rock star de l'\u00e9cologie\" utilis\u00e9e r\u00e9cemment par Le Monde. S'exprimer parfois dans des amphis bien remplis n'est pas vraiment comparable \u00e0 remplir le Stade de France ! M\u00eame avec l'audience digitale, le compte n'y est pas : sur Youtube \"ma\" vid\u00e9o la plus regard\u00e9e d\u00e9passe 3 millions de vues ; pour Rihanna ou DJ Khaled on d\u00e9passe le milliard de vues (https://bit.ly/3Ep4nhb ).\n\nEnfin l'expression servant de titre correspond toujours \u00e0 un sujet \u00e9voqu\u00e9, mais pas n\u00e9cessairement celui sur lequel j'ai le plus insist\u00e9, alors que c'est l'impression que cela donne. Cet effet s'amplifie si d'autres journalistes reprennent cette expression comme si elle \u00e9tait de moi mot \u00e0 mot : ce qui \u00e9tait une mise en exergue d'un(e) journaliste devient ce qui fait foi !\n\nTout ca pour dire que, pour moi comme pour n'importe qui, la seule chose qui m'engage est ce que j'\u00e9cris en direct, ou prononce \u00e0 l'oral dans un enregistrement non mont\u00e9. Tout le reste incorpore peu ou prou l'avis de quelqu'un d'autre, m\u00eame une interview. Dans le cas pr\u00e9sent on est dans la nuance, mais dans un portrait il peut y avoir des erreurs grossi\u00e8res." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7000055381280313344,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7000055382219837440,urn:li:activity:7000055382219837440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7000055382219837440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7000055382219837440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7000055382219837440", + "threadId": "activity:7000055382219837440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000055382219837440", + "urn": "urn:li:activity:7000055382219837440", + "numComments": 76, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7000055382219837440", + "reactionTypeCounts": [ + { + "count": 964, + "reactionType": "LIKE" + }, + { + "count": 54, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "APPRECIATION" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 28, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7000055382219837440", + "numLikes": 1126, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7000055382219837440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1127, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6999689020733554688", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6999689020733554688)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6999689020733554688)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cop-27-jean-marc-jancovici-explique-pourquoi-activity-6999689020733554688-_8Pn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6999689019898871808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6999689020733554688", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6999689019898871808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "D04ybdLeJmPo+fSRQkZsTQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6999689020733554688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8045091743199397876", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676292863883?e=1677240000&v=beta&t=mGFUiF12pQB91rDSnhfNXj0NYKmLv7jR_s3OsFWHxq8", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1199, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676292863883?e=1677240000&v=beta&t=VkueliHYtQCNoZtEhYTckb2Zcn5YLUVh3lM5WioY7LE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676292863883?e=1677240000&v=beta&t=7USaFvbMxD_EYguGlANr1D926y1UIIhNvWZWtDu6J2Q", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676292863883?e=1677240000&v=beta&t=f0M2TEcQh4KJUaRW1A0M7Q5owZzl0Y5Dhf1f8-OweQo", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGKNHYgSZo8Pg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8045091743199397876)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8045091743199397876)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: COP 27 : Jean-Marc Jancovici explique pourquoi \u00e7a n'est pas un succ\u00e8s by rtl.fr", + "actionTarget": "https://www.rtl.fr/actu/debats-societe/cop27-jean-marc-jancovici-explique-pourquoi-ca-n-est-pas-un-succes-7900207731" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "COP 27 : Jean-Marc Jancovici explique pourquoi \u00e7a n'est pas un succ\u00e8s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6999689019898871808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Que penser de la COP 27, qui se termine (normalement) aujourd'hui en Egypte ? Rien de plus et rien de moins que ce qu'il faut penser des autres COP, ai-je tent\u00e9 d'expliquer aujourd'hui aux auditrices et auditeurs (matinaux !) de RTL : le processus onusien conduira par nature \u00e0 aboutir \u00e0 un texte qui ne peut pas juridiquement contraindre quelque pays que ce soit \u00e0 faire plus que ce qu'il d\u00e9sire d\u00e9j\u00e0 faire.\n\nRappelons que, depuis le Trait\u00e9 de Westphalie, les \u00e9tats sont souverains : un \u00e9tat ne peut imposer \u00e0 un autre ses r\u00e8gles par le droit. Le processus onusien en prend acte, et demande \u00e0 ce que les d\u00e9cisions soient prises \u00e0 l'unanimit\u00e9 et par consensus. Une telle dynamique conduit n\u00e9cessairement \u00e0 un texte qui ne cr\u00e9e aucune obligation nouvelle significative pour les pays.\n\nIl y a eu une exception dans l'histoire des COP, que je rappelle dans cette chronique, et qui a pourtant correspondu \u00e0 l'ann\u00e9e o\u00f9 la presse a conclu le plus rapidement que cela avait \u00e9t\u00e9 un \u00e9chec : Copenhague (la COP 15, en 2009). \n\nLes \"moins de 2\u00b0C\" d\u00e9sormais associ\u00e9s \u00e0 l'Accord de Paris datent en effet... de Copenhague, comme toutes les autres dispositions fortes qui ont \u00e9t\u00e9 avalis\u00e9es \u00e0 Paris. Et ces \u00e9l\u00e9ments ont pu \u00eatre act\u00e9s parce que Copenhague a \u00e9t\u00e9, de fa\u00e7on impr\u00e9vue, la seule COP qui ait \u00e9t\u00e9 une OPA du G20 sur les Nations Unies. \n\nAu retour de la COP - o\u00f9 j'avais \u00e9t\u00e9 les 15 jours - j'avais pris la plume pour expliquer pourquoi elle \u00e9tait en fait l'un des rares succ\u00e8s des discussions internationales : https://bit.ly/3GuuPIT Ce mot d'\u00e9chec est arriv\u00e9 parce que c'est le processus et non le fond qui a \u00e9t\u00e9 comment\u00e9 par les ONG, les seules \u00e0 pouvoir s'exprimer dans la presse \u00e0 l'approche de la fin de la COP, alors que les d\u00e9l\u00e9gations nationales \u00e9taient tenues au silence devant la r\u00e9union des pr\u00e9sidents en cours.\n\nComme les danois avaient fait une erreur logistique en ne pr\u00e9voyant pas assez de place pour laisser rentrer tout le monde la 2\u00e8 semaine (alors que les d\u00e9l\u00e9gations pr\u00e9sidentielles \u00e9taient arriv\u00e9s en masse), les repr\u00e9sentants des ONG \u00e9taient pass\u00e9s de 5000 \u00e0... 90, et ceux toujours admis \u00e0 rentrer dans l'enceinte de la COP \u00e9taient du coup tr\u00e8s \u00e9nerv\u00e9s par ce qu'elles consid\u00e9raient \u00eatre une entorse majeure au principe de transparence des n\u00e9gociations. \n\nSi on y ajoute la forme de la discussion (exit les d\u00e9l\u00e9gations nationales, remplac\u00e9es au pied lev\u00e9 par des pr\u00e9sidents discutant en direct dans une salle), cette fin de COP n'avait plus rien d'onusien, et c'est cela qui a conduit les ONG \u00e0 parler d'\u00e9chec \u00e0 la presse, constat discutable mais devenu depuis l'\u00e9vidence pour le public. \n\nC'est pourtant \u00e0 cet \"\u00e9chec\" que l'on doit l'objectif politique des 2\u00b0C, d\u00e9sormais si pr\u00e9cieux pour cadrer toute l'action - m\u00eame insuffisante - des entreprises et des \u00e9tats dans les d\u00e9bats domestiques. \n\nSi, du point de vue du formalisme onusien, elle est un succ\u00e8s, la COP 27 ne changera pas plus le cours des choses \"\u00e0 notre place\" que les autres. Quoi qu'en dise la presse..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6999689019898871808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6999689020733554688,urn:li:activity:6999689020733554688,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 71, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6999689020733554688,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6999689020733554688,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6999689020733554688", + "threadId": "activity:6999689020733554688", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999689020733554688", + "urn": "urn:li:activity:6999689020733554688", + "numComments": 118, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6999689020733554688", + "reactionTypeCounts": [ + { + "count": 1090, + "reactionType": "LIKE" + }, + { + "count": 140, + "reactionType": "INTEREST" + }, + { + "count": 129, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6999689020733554688", + "numLikes": 1387, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999689020733554688", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1388, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6999439943286554624", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6999439943286554624)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6999439943286554624)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carrefour-acte-le-d%C3%A9classement-de-la-soci%C3%A9t%C3%A9-activity-6999439943286554624-9L7t?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6999439942372229121", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6999439943286554624", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6999439942372229121", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "0RnjqaZ/6uJN4Evdfd8uUg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6999439943286554624,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7401995635390681707", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676110940690?e=1677240000&v=beta&t=Q0iwGL79t_1wR29hVmUjGgFAZlisR2KNLoPKC7-dHZU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676110940690?e=1677240000&v=beta&t=2X-iiwUNBW_yBvmlagYgAOwBkE9ILZAx7BdouiOuyi4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676110940690?e=1677240000&v=beta&t=hIXV7-LuUHHrjo-RFV3QbPTee0tD3fFhfjp7bR4SDd4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676110940690?e=1677240000&v=beta&t=xKwh0WdV_RtRE9QmpBthd-gpFZXnTc-LiChW87DXFmc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFs7-hl2Mq0yw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7401995635390681707)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7401995635390681707)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carrefour acte le d\u00e9classement de la soci\u00e9t\u00e9 fran\u00e7aise by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/carrefour-acte-le-declassement-de-la-societe-francaise-1879303" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carrefour acte le d\u00e9classement de la soci\u00e9t\u00e9 fran\u00e7aise" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6999439942372229121,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Vive la croissance verte ! Vous savez, celle qui ne suppose pas de consommer plus de ressources, et qui va donc permettre de marier PIB en hausse et flux physiques en baisse.\n\nSauf que... cette croissance l\u00e0, \u00e0 supposer qu'elle arrive, ne permet pas d'avoir la constance en volume des objets parfaitement mat\u00e9riels que les fran\u00e7aises et les fran\u00e7ais ach\u00e8tent. Et il se trouve que, pour le moment, et probablement pour un certain temps encore, les brosses \u00e0 dents, machines \u00e0 laver, m\u00e8tres carr\u00e9s de moquette, pantalons, produits alimentaires, m\u00e8tres carr\u00e9s de logement, tonnes de voitures, sans oublier les m\u00e8tres cubes de gaz ou d'eau qui entrent dans un logement sont parfaitement mat\u00e9riels.\n\nSi les flux physiques de production baissent parce que la quantit\u00e9 d'\u00e9nergie disponible - et donc la quantit\u00e9 de machines au travail - baisse, peu importe la fa\u00e7on dont les choses se passeront sur le plan des prix : de fait il sera plus difficile \u00e0 la population de ce procurer tout ce qui est \"physique\", du tube de colle aux kilom\u00e8tres en voiture, en passant par les t\u00e9l\u00e9phones, les cartables et les p\u00e2tes \u00e0 la tomate.\n\nOr, l'\u00e9nergie disponible baisse en Europe depuis 2007. Donc la production domestique de ce qui est \"physique\" y baisse (la confirmation se trouve dans les s\u00e9ries longues des tonnes charg\u00e9es dans les camions et des m\u00e8tres carr\u00e9s construits en Europe). On peut temporairement compenser par des importations pay\u00e9es par des revenus \"autres\" (activit\u00e9s financi\u00e8res et b\u00e9n\u00e9fices rapatri\u00e9s, par exemple), mais cette mani\u00e8re de proc\u00e9der a ses limites.\n\nIl se trouve que cette baisse de la possibilit\u00e9 d'acheter se traduit d\u00e9j\u00e0 de fa\u00e7on mon\u00e9taire. Le revenu disponible des m\u00e9nages est en effet pass\u00e9 par un maximum en 2010 et a fortement baiss\u00e9 ensuite, avant de remonter \u00e0 partir de 2014 (quand l'\u00e9nergie disponible en Europe est remont\u00e9e gr\u00e2ce au shale oil !), sans pour autant revenir au niveau ant\u00e9rieur. \n\nEt surtout la logique voudrait malheureusement que cet indicateur reparte \u00e0 la baisse, dans le droit fil de l'approvisionnement \u00e9nerg\u00e9tique europ\u00e9en qui va faire de m\u00eame (NB: la s\u00e9rie de l'INSEE que j'ai obtenue sur https://bit.ly/3UR7BRR s'arr\u00eate en 2019).\n\nL'article des Echos qui annonce la cr\u00e9ation par Carrefour d'une nouvelle enseigne ciblant les faibles revenus ouvre probablement une nouvelle \u00e8re : celle de l'\u00e9conomie... des \u00e9conomies. L'auteur rappelle \u00e0 juste titre que l'on peut mettre dans le m\u00eame panier que cette nouvelle enseigne Blablacar, AirBnb, la colocation, les bus Macron et Too Good to Go : \u00e0 chaque fois c'est une r\u00e9ponse pour conserver des services dans un monde avec mat\u00e9riellement moins. \n\nFaut-il se plaindre d'avoir moins de r\u00e9f\u00e9rences et moins d'emballages dans les magasins ? Faut-il appeler cela d\u00e9classement (donc pauvret\u00e9), comme le font Les Echos, ou sobri\u00e9t\u00e9 ? Tant que nous vivrons dans une soci\u00e9t\u00e9 de la tentation, c'est probablement la premi\u00e8re r\u00e9ponse qui sera la bonne, h\u00e9las. Il reste \u00e0 inventer le r\u00e9cit pour passer \u00e0 la seconde." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6999439942372229121,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6999439943286554624,urn:li:activity:6999439943286554624,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 58, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6999439943286554624,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6999439943286554624,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6999439943286554624", + "threadId": "activity:6999439943286554624", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999439943286554624", + "urn": "urn:li:activity:6999439943286554624", + "numComments": 93, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6999439943286554624", + "reactionTypeCounts": [ + { + "count": 1208, + "reactionType": "LIKE" + }, + { + "count": 131, + "reactionType": "MAYBE" + }, + { + "count": 124, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6999439943286554624", + "numLikes": 1501, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999439943286554624", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1502, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 Edited \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6999135868418465792", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6999135868418465792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6999135868418465792)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_il-arrive-aux-instances-de-supervision-activity-6999135868418465792-PfwE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6999135867332087808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6999135868418465792", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6999135867332087808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "cDigJ3L/1LWM8mad2YDIqQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6999135868418465792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGVmp0-xQNHdw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGVmp0-xQNHdw", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1668724027136?e=1679529600&v=beta&t=TnFLTaAyNYZNtMpzh5tmiyKlF4vuH-NkMhrtXhIq_ss", + "expiresAt": 1679529600000, + "height": 290 + }, + { + "width": 2332, + "fileIdentifyingUrlPathSegment": "20/0/1668724027085?e=1679529600&v=beta&t=wYBVI2Dbq7OUSq2rcHnWsVWMMobmUlNh7gmi0Vtybi4", + "expiresAt": 1679529600000, + "height": 330 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1668724027085?e=1679529600&v=beta&t=z3_AESExjt1u-qJoPVUSHmjv1ayG9k8lyBWyP45-5Lo", + "expiresAt": 1679529600000, + "height": 181 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1668724027085?e=1679529600&v=beta&t=Qax37wLUFbH0z7pTiAiOgmF_I8HZ595x8bnE5e2DzQg", + "expiresAt": 1679529600000, + "height": 68 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1668724027085?e=1679529600&v=beta&t=sIFOkhWDpFeLBnR_ncynlHm43VDuglVB5C0kwwbkM9w", + "expiresAt": 1679529600000, + "height": 23 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1668724027085?e=1679529600&v=beta&t=tE6lgs0USJhwCz22KcFuGHQIrNSdehyighKkOkAzvdY", + "expiresAt": 1679529600000, + "height": 113 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGVmp0-xQNHdw/feedshare-shrink_" + }, + "displayAspectRatio": 0.14150943396226415 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6999135867332087808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il arrive aux instances de supervision - qui ont pour mission de faire \u00e0 la fois les r\u00e8gles et parfois la police dans un secteur r\u00e9glement\u00e9, par exemple la comptabilit\u00e9 ou l'assurance - de faire des consultations.\n\nCe genre de d\u00e9marche vise \u00e0 prendre l'avis de \"qui veut\" (en fait c'est plut\u00f4t \"qui est au courant et a le temps de r\u00e9pondre\" !) pour ensuite nourrir une future \u00e9volution des r\u00e8gles applicables au secteur.\n\nLes 3 autorit\u00e9s europ\u00e9ennes qui concernent le monde bancaire et financier (European Banking Authority, European Insurance and Occupational Pensions Authority, et European Securities and Market Authority, qui supervisent respectivement les banques, les compagnies d'assurance et les places de march\u00e9) viennent de lancer une consultation sur... le greenwashing : https://lnkd.in/eif8F2XC\n\nJe n'y aurais pas pens\u00e9, mais l'id\u00e9e est franchement excellente. En effet, le meilleur moyen de corriger une r\u00e9glementation qui n'atteint pas encore son but est de se faire expliquer toutes les mani\u00e8res de la d\u00e9voyer !\n\nDe fait, le \"verdissement\" du secteur financier dans son ensemble est aujourd'hui discutable. Les annonces de finance durable se multiplient comme les petits pains, mais dans les faits les pratiques sont toujours \u00e0 peu pr\u00e8s les m\u00eames, et l'\u00e9conomie financ\u00e9e toujours la m\u00eame (ce n'est pas un jugement de valeur mais un fait). Il est donc tout \u00e0 fait pertinent de poser la question des techniques utilis\u00e9es pour faire prendre des vessies pour des lanternes.\n\nCe proc\u00e9d\u00e9 pourrait utilement \u00eatre \u00e9tendu \u00e0 d'autres secteurs, et notamment la publicit\u00e9. Le Bureau de V\u00e9rification de la Publicit\u00e9 pourrait ouvrir une grande consultation en demandant aux r\u00e9pondantes de d\u00e9crire toutes les formes possibles de publicit\u00e9 mensong\u00e8re en mati\u00e8re d'environnement. A l'inverse du message pr\u00e9c\u00e9dant souvent les oeuvres de fiction, on y verrait assez souvent un rapport avec des faits et des personnages ayant exist\u00e9 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6999135867332087808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6999135868418465792,urn:li:activity:6999135868418465792,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6999135868418465792,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6999135868418465792,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6999135868418465792", + "threadId": "activity:6999135868418465792", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999135868418465792", + "urn": "urn:li:activity:6999135868418465792", + "numComments": 31, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6999135868418465792", + "reactionTypeCounts": [ + { + "count": 488, + "reactionType": "LIKE" + }, + { + "count": 46, + "reactionType": "MAYBE" + }, + { + "count": 24, + "reactionType": "INTEREST" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6999135868418465792", + "numLikes": 589, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6999135868418465792", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 591, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6998765435470888961", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6998765435470888961)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6998765435470888961)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_ce-gigantesque-village-de-marque-et-ses-100-activity-6998765435470888961-SpLz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6998765434871128064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6998765435470888961", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6998765434871128064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "EjwTav6zuDQoLhAOI+R7aQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6998765435470888961,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8757585883586012526", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676178950553?e=1677240000&v=beta&t=8nkBAQV7PUu0khMDChZvoJxzPpmpLTkqNBBXgP3lnt0", + "expiresAt": 1677240000000, + "height": 493 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676178950553?e=1677240000&v=beta&t=S1hM41RuQiasoJvut-aqbvvugobzrg4EMjqE0WwmABs", + "expiresAt": 1677240000000, + "height": 789 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676178950553?e=1677240000&v=beta&t=SUjxh9ctotm2uya3zCGtwTBrspIfb8la6ZToPhTofIg", + "expiresAt": 1677240000000, + "height": 98 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676178950554?e=1677240000&v=beta&t=TIiScrRgFSQe6NeyjCQu-kP9CqdA_o6sQRai5W2f4DQ", + "expiresAt": 1677240000000, + "height": 295 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEYeYYCcuIcOg/articleshare-shrink_" + }, + "displayAspectRatio": 0.61625 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Une centaine de boutiques de grandes marques comme Adidas ou Levis vont ouvrir." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8757585883586012526)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8757585883586012526)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "actu.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Ce gigantesque village de marque et ses 100 magasins vont sortir de terre \u00e0 1 heure de Lyon by actu.fr", + "actionTarget": "https://actu.fr/auvergne-rhone-alpes/valserhone_01033/ce-gigantesque-village-de-marque-et-ses-100-magasins-vont-sortir-de-terre-a-1-heure-de-lyon_55210956.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Ce gigantesque village de marque et ses 100 magasins vont sortir de terre \u00e0 1 heure de Lyon" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6998765434871128064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Prenez un pays qui souhaite limiter l'usage de la voiture. Qui souhaite inciter \u00e0 la sobri\u00e9t\u00e9. Qui souhaite limiter ses importations. Qui souhaite baisser ses \u00e9missions de gaz \u00e0 effet de serre. Et qui souhaite arr\u00eater l'artificialisation des sols. \n\nDans un tel pays on se dirait que l'on va inciter \u00e0 ce que les nouveaux commerces soient \u00e9tablis pr\u00e8s des logements,\n de telle sorte que l'on puisse y aller au maximum sans voiture ; on va \u00e9viter de construire de nouveaux parkings g\u00e9ants qui imperm\u00e9abilisent le sol et sont des aspirateurs \u00e0 voiture ; on va \u00e9viter de cr\u00e9er des \"villages de la tentation\" pour inciter \u00e0 consommer encore plus d'objets (notamment v\u00eatements et accessoires) alors que ce n'est peut-\u00eatre pas la priorit\u00e9 ; enfin on va \u00e9viter de favoriser la consommation de biens import\u00e9s (sachant que les \"marques pas ch\u00e8res\" se fournissent pour l'essentiel hors de France, puisque la condition des prix bas est de ne pas fabriquer dans l'Hexagone).\n\nLe \"gigantesque village de marques\" qui s'ouvrira bient\u00f4t entre Lyon et Gen\u00e8ve illustre \u00e0 merveille que pour le moment les grands discours ne sont pas n\u00e9cessairement incarn\u00e9s dans les projets concrets. Dans le cas pr\u00e9sent le probl\u00e8me n'est pas un d\u00e9faut de financement ou de comp\u00e9tences pour faire ce qu'il faut faire : il est un d\u00e9faut de r\u00e8gles emp\u00eachant l'apparition de projets qui contribuent \u00e0 nous entra\u00eener dans mauvaise direction. \n\nCar c'est une chose de modifier l'existant, et une autre de ne pas en rajouter aux probl\u00e8mes. Le deuxi\u00e8me cas de figure est \u00e0 l'\u00e9vidence bien plus facile. Tant que le pays ne se dotera pas de la capacit\u00e9 \u00e0 emp\u00eacher d'en rajouter aux difficult\u00e9s, on peut malheureusement \u00eatre un peu pessimiste sur notre capacit\u00e9 \u00e0 modifier l'existant, ce qui est g\u00e9n\u00e9ralement un cran au dessus question difficult\u00e9 \u00e0 faire." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6998765434871128064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6998765435470888961,urn:li:activity:6998765435470888961,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 643, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6998765435470888961,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6998765435470888961,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6998765435470888961", + "threadId": "activity:6998765435470888961", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6998765435470888961", + "urn": "urn:li:activity:6998765435470888961", + "numComments": 1036, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6998765435470888961", + "reactionTypeCounts": [ + { + "count": 17946, + "reactionType": "LIKE" + }, + { + "count": 1677, + "reactionType": "MAYBE" + }, + { + "count": 1376, + "reactionType": "PRAISE" + }, + { + "count": 531, + "reactionType": "INTEREST" + }, + { + "count": 382, + "reactionType": "APPRECIATION" + }, + { + "count": 73, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6998765435470888961", + "numLikes": 21985, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6998765435470888961", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 22024, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6997830447921561600", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6997830447921561600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6997830447921561600)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-capitalisme-ne-sadaptera-au-d%C3%A9fi-climatique-activity-6997830447921561600-PuUI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6997830446734524416", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6997830447921561600", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6997830446734524416", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "U29DrCni07L4vbh81h4/bA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6997830447921561600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7864941750132445850", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 639, + "fileIdentifyingUrlPathSegment": "800/0/1675664003015?e=1677240000&v=beta&t=N4bFqc3BN3Xj-ZGbJcdGfdKb6B__Ei1h6qwPxim3uR8", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 639, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675664003015?e=1677240000&v=beta&t=b0QcqNJrTROWC9XVv-GuwND5p6oYrGUG0aJSiwI84Js", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675664003015?e=1677240000&v=beta&t=FkwdSfq2D_aLwpDeoxqRmkfhQ5RMdNi7-ZJFF0HpkOM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675664003015?e=1677240000&v=beta&t=ILyc_iBgTvC90fXz1oyJiGprs-ptTZ-mimqJmSwuBRY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHlYDPowtEfOg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5633802816901409 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7864941750132445850)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7864941750132445850)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "xerficanal.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le capitalisme ne s'adaptera au d\u00e9fi climatique que par la contrainte by xerficanal.com", + "actionTarget": "https://www.xerficanal.com/economie/emission/Anton-Brender-Le-capitalisme-ne-s-adaptera-au-defi-climatique-que-par-la-contrainte_3748380.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le capitalisme ne s'adaptera au d\u00e9fi climatique que par la contrainte" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6997830446734524416,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"il faut que les \u00e9tats exercent une pression sur le capitalisme\" pour que ce dernier ait des activit\u00e9s qui soient compatibles avec la pr\u00e9servation de l'environnement. Il ne faut pas compter sur les chefs d'entreprise, \"dont ce n'est pas la logique\", pour le faire spontan\u00e9ment, parce que la nature n'a pas de prix. M\u00eame si les dirigeants d'entreprise \"comprennent\" le probl\u00e8me, leur logique - comprendre la pr\u00e9\u00e9minence des euros sur les indicateurs environnementaux dans le cadre juridique actuel - les pousse dans une direction qui est inverse \u00e0 celle qui pr\u00e9serve les ressources.\n\nCes propos seraient d'une banalit\u00e9 affligeante s'ils venaient de la bouche d'un Gael Giraud ou d'un d\u00e9put\u00e9 LFI. Mais en l'esp\u00e8ce ils sont tenus par un \u00e9conomiste de chez Candriam, une soci\u00e9t\u00e9 de gestion d'actifs, qui appartient donc, au sens large, \u00e0 la \"finance mondialis\u00e9e lib\u00e9rale\".\n\nEt le m\u00eame de rappeler que, de m\u00eame que le travail des enfants n'a pas \u00e9t\u00e9 supprim\u00e9 par la bont\u00e9 d'\u00e2me des patrons, mais parce que la puissance publique l'a interdit (dans un contexte o\u00f9 les machines pouvaient prendre le relais, il ne faut pas l'oublier !), ce ne sont pas les chefs d'entreprise qui vont d'eux-m\u00eames se mettre dans le cadre de l'accord de Paris : c'est \u00e0 l'Etat de les y pousser, par des taxes et des interdictions.\n\nIl se trouve que, pas plus tard que le week-end dernier, j'ai d\u00e9fendu \u00e0 peu pr\u00e8s la m\u00eame th\u00e8se au micro de RTL dans le cadre de ma chronique hebdomadaire, qui portait sur la \"finance verte\" : https://lnkd.in/eG2t9mvQ\n\nL'id\u00e9e qu'un chef d'entreprise \"vert\" est en pratique un chef d'entreprise qui accepte - voire d\u00e9sire - que l'Etat mette des contraintes pour orienter l'activit\u00e9 \u00e9conomique du \"bon c\u00f4t\u00e9\" fait de plus en plus de chemin. Accepter ses propres limites n'est pas un aveu de faiblesse : c'est en les ignorant que l'on se met \u00e0 risque.\n\nIncidemment c'est cette population que The Shift project cherche \u00e0 rassembler : depuis le d\u00e9but notre think tank ambitionne (que l'on y parvienne est une autre histoire !) de coaliser des dirigeants qui pensent sinc\u00e8rement qu'il faut mettre des contraintes sur les \u00e9missions de gaz \u00e0 effet de serre. Comme cette population n'est pas compl\u00e8tement na\u00efve, ils et elles le souhaitent \u00e9videmment parce qu'ils et elles pensent que ca sera bon pour leur entreprise.\n\nSauf \u00e0 compl\u00e8tement supprimer le capitalisme, que je comprends ici comme la propri\u00e9t\u00e9 individuelle de tout ou partie des moyens de production (laquelle propri\u00e9t\u00e9 priv\u00e9e est, sous une forme ou sous une autre, pr\u00e9sente depuis la s\u00e9dentarisation de notre esp\u00e8ce il y a 10.000 ans), la voie \u00e0 explorer est donc d'encadrer ce dernier pour le forcer \u00e0 \"rentrer dans le monde fini\". Vaste mais n\u00e9cessaire programme." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6997830446734524416,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6997830447921561600,urn:li:activity:6997830447921561600,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 257, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6997830447921561600,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6997830447921561600,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6997830447921561600", + "threadId": "activity:6997830447921561600", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997830447921561600", + "urn": "urn:li:activity:6997830447921561600", + "numComments": 453, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6997830447921561600", + "reactionTypeCounts": [ + { + "count": 4843, + "reactionType": "LIKE" + }, + { + "count": 333, + "reactionType": "MAYBE" + }, + { + "count": 308, + "reactionType": "INTEREST" + }, + { + "count": 179, + "reactionType": "PRAISE" + }, + { + "count": 90, + "reactionType": "APPRECIATION" + }, + { + "count": 44, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6997830447921561600", + "numLikes": 5797, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997830447921561600", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5800, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 Edited \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6997515090895732736", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6997515090895732736)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6997515090895732736)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_terrawater-le-sc%C3%A9nario-%C3%A9nerg%C3%A9tiquedes-activity-6997515090895732736-vuxZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6997515089960402944", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6997515090895732736", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6997515089960402944", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "4Hjv/vRZ5iCEDVXlFV/68A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6997515090895732736,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8782828938415420476", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 768, + "fileIdentifyingUrlPathSegment": "800/0/1675705386746?e=1677240000&v=beta&t=Q3OzTro5raoywjJTp1cHSirxdNJOh7wfFF1ZitEQqX0", + "expiresAt": 1677240000000, + "height": 768 + }, + { + "width": 768, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675705386746?e=1677240000&v=beta&t=S9iLHCj8YsY2pakelZ-9-VTEqwfzx70z2VddQUVQiII", + "expiresAt": 1677240000000, + "height": 768 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675705386747?e=1677240000&v=beta&t=2kbVHicQ26IrV6wqZ_8sDI1w3UlEcxN8esN15vvn1kg", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675705386747?e=1677240000&v=beta&t=NEUDg6vicHw3REvvqdv2eiEaRxvuIgURgbzAKdq0S8o", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFphLqMFYQx8w/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8782828938415420476)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8782828938415420476)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "voix-du-nucleaire.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: TerraWater : le sc\u00e9nario \u00e9nerg\u00e9tique des Voix by voix-du-nucleaire.org", + "actionTarget": "https://www.voix-du-nucleaire.org/terrawater-scenario-energetique-des-voix/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "TerraWater : le sc\u00e9nario \u00e9nerg\u00e9tique\u00a0des\u00a0Voix" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6997515089960402944,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un sc\u00e9nario \u00e9lectrique qui concilie d\u00e9fense de l'environnement et augmentation de la capacit\u00e9 nucl\u00e9aire ? Ce n'est pas s\u00e9rieux voyons ! \n\nM\u00eame si l'adh\u00e9sion \u00e0 l'\u00e9nergie atomique a connu r\u00e9cemment un regain de faveur - en fait depuis les chocs p\u00e9troliers le meilleur marqueur du soutien \u00e0 cette forme de production est le prix des alternatives :), et en ce moment cet \u00e9l\u00e9ment est bien pr\u00e9sent - nous n'en sommes pas encore au point o\u00f9 la population adh\u00e8re massivement \u00e0 l'id\u00e9e que le nucl\u00e9aire est ce qu'il y a de plus \u00e9colo et durable - et de moins dangereux - pour une production \u00e9lectrique un peu cons\u00e9quente et disponible plus ou moins \u00e0 la demande.\n\nDe fait, l'essentiel des sc\u00e9narios \u00e9lectriques produits ces derniers temps pour notre pays voient tous une diminution de la puissance \u00e9lectrique install\u00e9e pour le nucl\u00e9aire dans les d\u00e9cennies \u00e0 venir et jusqu'\u00e0 la fin du si\u00e8cle. \n\nMais un \"nouveau venu\" - les Voix du Nucl\u00e9aire - propose (sans surprise avec un tel nom !) une trajectoire o\u00f9 le nucl\u00e9aire augmente fortement - et la production \u00e9lectrique aussi - d'ici \u00e0 2100. Dans ce m\u00eame sc\u00e9nario \u00e9olien et solaire augmentent aussi jusqu'au milieu du si\u00e8cle, et surtout du stockage assur\u00e9 par des stations de pompage-turbinage (des STEP), qui seraient massivement construites d\u00e8s maintenant. Elle serviront d'abord \u00e0 \u00e9quilibrer les ENR intermittentes, et ensuite \u00e0 assurer la flexibilit\u00e9 journali\u00e8re et hebdomadaire en compl\u00e9ment d'un nucl\u00e9aire plus important qu'aujourd'hui.\n\nEn pratique ce sc\u00e9nario repose sur les axes suivants :\n- \u00e0 court terme d\u00e9ploiement de solaire, \u00e9olien, ainsi que de STEP pour assurer le pilotage du r\u00e9seau\n- maintien en service des r\u00e9acteurs actuels aussi longtemps que possible (sous contr\u00f4le de l'ASN bien s\u00fbr), soit un peu plus de 60 ans (dur\u00e9e d\u00e9j\u00e0 autoris\u00e9e aux USA pour tous les r\u00e9acteurs \u00e0 eau pressuris\u00e9e)\n- d\u00e9ploiement d\u00e8s maintenant d'EPR2\n- d\u00e8s 2050 d\u00e9but du d\u00e9ploiement de r\u00e9acteurs de la 4\u00e8 g\u00e9n\u00e9ration et d\u00e9crue corr\u00e9lative des ENR intermittentes. Les STEP sont conserv\u00e9es pour assurer la flexibilit\u00e9 en compl\u00e9ment d'un nucl\u00e9aire utilis\u00e9 essentiellement en base.\n- d\u00e9ploiement de turbines \u00e0 combustion biomasse pour l'hyperpointe\n\nCe sc\u00e9nario est purement \u00e9lectrique, et fait passer la production de 500 TWh actuellement \u00e0 800 TWh en 2070. Il n'est formellement pas incompatible avec la sobri\u00e9t\u00e9 puisqu'aujourd'hui la France utilise 1600 TWh d'\u00e9nergie finale tout compris.\n\nIl est trop t\u00f4t pour dire si ce sc\u00e9nario est, dans ses moindres d\u00e9tails, pertinent ou pas. Mais il offre une base de r\u00e9flexion int\u00e9ressante d\u00e8s lors que l'on souhaite discuter du meilleur compromis possible dans un monde qui va se d\u00e9mondialiser, et o\u00f9 tout ce qui est physique (espace au sol, biomasse, m\u00e9taux) va devenir de plus en plus difficile d'acc\u00e8s, hypoth\u00e8se g\u00e9n\u00e9ralement peu pr\u00e9sente dans les autres sc\u00e9narios de place qui postulent \u00e0 peu pr\u00e8s tous l'inverse.\n\nEsp\u00e9rons aussi qu'il contribuera \u00e0 nourrir un d\u00e9bat pacifi\u00e9 et non \u00e0 renforcer la fr\u00e9quence des noms d'oiseau !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6997515089960402944,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6997515090895732736,urn:li:activity:6997515090895732736,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 74, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6997515090895732736,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6997515090895732736,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6997515090895732736", + "threadId": "activity:6997515090895732736", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997515090895732736", + "urn": "urn:li:activity:6997515090895732736", + "numComments": 248, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6997515090895732736", + "reactionTypeCounts": [ + { + "count": 1905, + "reactionType": "LIKE" + }, + { + "count": 222, + "reactionType": "MAYBE" + }, + { + "count": 216, + "reactionType": "INTEREST" + }, + { + "count": 34, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "EMPATHY" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6997515090895732736", + "numLikes": 2428, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997515090895732736", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2428, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6997237239227244544", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6997237239227244544)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6997237239227244544)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_reporting-extra-financier-ladoption-du-activity-6997237239227244544-FgD2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6997237238065418241", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6997237239227244544", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6997237238065418241", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "1KmZc1ILTkG3p/QolVMlaQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6997237239227244544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7336260786284283234", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676538389786?e=1677240000&v=beta&t=uAmX5va8gSM6U-TB_DAZl3q1YiFXfPjSe2oGTS3Govs", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676538389786?e=1677240000&v=beta&t=j-6H7o2P4lROfiHhsdsuDfEO-QOoE2crqZSxQfBnYq4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676538389786?e=1677240000&v=beta&t=CXtH7PWjD8K33XlWUe9rGQ5GAwe3o0ku3b0LL8Hc9J0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676538389786?e=1677240000&v=beta&t=K9Q3bJdeB2okES3YR1Y-tlOo5696bVdkeXS7JERB2TI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHcNy7Dy0tBDA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7336260786284283234)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7336260786284283234)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Reporting extra-financier : l'adoption du cadre europ\u00e9en laisse de nombreuses questions en suspens by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/reporting-extra-financier-ladoption-du-cadre-europeen-laisse-de-nombreuses-questions-en-suspens-1877784" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Reporting extra-financier\u00a0: l'adoption du cadre europ\u00e9en laisse de nombreuses questions en suspens" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6997237238065418241,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Parlement europ\u00e9en a vot\u00e9 Jeudi dernier une nouvelle directive qui renforce les obligations pour les entreprises europ\u00e9ennes en mati\u00e8re de publication d'informations \"non financi\u00e8res\". On met dans ce vocable les informations relatives \u00e0 la pression sur l'environnement (voir liste dans le graphique en commentaire), aux sujets sociaux (idem) et concernant la gouvernance (idem).\n\nL'\u00e9laboration des \"comptes extrafinanciers\" \u00e9tant bien plus r\u00e9cente que celle des comptes financiers, la r\u00e9glementation - ou son absence - qui s'y applique est aussi bien plus r\u00e9cente. C'est un domaine dans lequel l'Europe - et au sein de l'Europe la France - est globalement en avance sur le reste du monde.\n\nUn pas de plus vient donc d'\u00eatre franchi avec cette directive CSRD (pour Corporate Sustainability Reporting Directive). Comme c'est une directive, elle devra \u00eatre transpos\u00e9e dans les l\u00e9gislations nationales avant de s'appliquer.\n\nToutes les soci\u00e9t\u00e9s cot\u00e9es de plus de 500 salari\u00e9s devront s'y conformer d\u00e8s 2024. Ca sera 2025 ou 2026 pour celles comprises entre 10 et 500 salari\u00e9s. Dans le non cot\u00e9, seules les entreprises de moins de 250 salari\u00e9s y \u00e9chapperont, \u00e0 condition qu'elles ne fassent pas plus de 40 M\u20ac de CA et 20 M\u20ac de total de bilan (ce qui \u00e9vite d'exon\u00e9rer les soci\u00e9t\u00e9s d'investissement avec beaucoup d'actifs et peu d'effectifs).\n\nLe contenu pr\u00e9cis des modalit\u00e9s \u00e0 respecter \u00e0 \u00e9t\u00e9 d\u00e9l\u00e9gu\u00e9 \u00e0 l'EFRAG (European Financial Reporting Advisory Group), une association cr\u00e9\u00e9e en 2001, qui est majoritairement financ\u00e9e par la Commission, mais o\u00f9 sont repr\u00e9sent\u00e9es nombre de \"parties prenantes\" (voir https://bit.ly/3GaRBW9 ).\n\nCette instance a fait des propositions qui tiennent en 220 pages de rapport et plus de 400 pages d'annexes (https://bit.ly/3g0Re5W ). Ouf !\n\nOn note dans ces propositions :\n\n- que les entreprises ne doivent pas juste publier les informations qui vont avec un risque financier direct pour elles (\"simple mat\u00e9rialit\u00e9\" dans le jargon), mais aussi les informations permettant d'appr\u00e9cier les impacts qu'elles ont sur leur environnement, m\u00eame si cet impact n'est pas porteur de risque financier pour l'entreprise (la somme des deux s'appelant \"double mat\u00e9rialit\u00e9\").\n\n- que les informations communiqu\u00e9es pour les impacts doivent concerner l'ensemble de la cha\u00eene de valeur (et donc inclure le \"scope 3\" dans le jargon pour les \u00e9missions de gaz \u00e0 effet de serre)\n\n- que le sujet le plus mature pour un reporting normatif et quantifi\u00e9 est le climat (au sein de l'environnement qui globalement est le sujet le plus simple des 3 E S et G)\n\n- qu'en mati\u00e8re de climat il faudrait parler \u00e0 la fois \u00e9missions et vuln\u00e9rabilit\u00e9 aux risques physiques\n\n- et que la biodiversit\u00e9 est aussi un domaine qui devra \u00eatre couvert\n\nComme d'habitude, d'aucuns vont consid\u00e9rer que l'Europe se tire une balle dans le pied pendant que d'autres se f\u00e9liciteront de ce cadre un peu contraignant. Consid\u00e9rant qu'une entreprise n'innove que sous la contrainte, j'appartiens plut\u00f4t \u00e0 la 2\u00e8 cat\u00e9gorie :)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6997237238065418241,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6997237239227244544,urn:li:activity:6997237239227244544,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 125, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6997237239227244544,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6997237239227244544,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6997237239227244544", + "threadId": "activity:6997237239227244544", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997237239227244544", + "urn": "urn:li:activity:6997237239227244544", + "numComments": 158, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6997237239227244544", + "reactionTypeCounts": [ + { + "count": 2650, + "reactionType": "LIKE" + }, + { + "count": 247, + "reactionType": "INTEREST" + }, + { + "count": 175, + "reactionType": "MAYBE" + }, + { + "count": 74, + "reactionType": "PRAISE" + }, + { + "count": 27, + "reactionType": "EMPATHY" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6997237239227244544", + "numLikes": 3186, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6997237239227244544", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3189, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6996901590204870656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6996901590204870656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6996901590204870656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_el-mundo-sin-fin-norma-editorial-activity-6996901590204870656-jNFe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6996901588053164032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6996901590204870656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6996901588053164032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "9FVswJHe5cyYLpuPyVNqrQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6996901590204870656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9149176262847108493", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 779, + "fileIdentifyingUrlPathSegment": "800/0/1675595650829?e=1677240000&v=beta&t=LwPDaDGVzHdFyslug_EKCcyQhjwAEbF9YtKbyHZqJgQ", + "expiresAt": 1677240000000, + "height": 941 + }, + { + "width": 662, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675595650829?e=1677240000&v=beta&t=ovqKWUauEHAz4B83ELLahXUiMPhXuow5k-V_Eip4eD4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675595650829?e=1677240000&v=beta&t=1xkRfIdjh82Jnq_R-pCxoOMPsxgBYzD-dJMSGnXGq8E", + "expiresAt": 1677240000000, + "height": 193 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675595650829?e=1677240000&v=beta&t=ixHmRK8RIi3JPgSq6AUS25A--1EmmsL44fpGHPPXzOI", + "expiresAt": 1677240000000, + "height": 579 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEsohMCBcJHNA/articleshare-shrink_" + }, + "displayAspectRatio": 1.2079589216944802 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "EL MUNDO SIN FIN" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9149176262847108493)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9149176262847108493)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "normaeditorial.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EL MUNDO SIN FIN - Norma Editorial by normaeditorial.com", + "actionTarget": "https://www.normaeditorial.com/ficha/comic-europeo/el-mundo-sin-fin" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EL MUNDO SIN FIN - Norma Editorial" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6996901588053164032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s \u00eatre all\u00e9 au nord (Allemagne : https://lnkd.in/e-Qc7Q8P - Pays Bas/Belgique : https://lnkd.in/e7YeMvnm ), et au Nord Ouest (version digitale anglaise : https://lnkd.in/e4zr_Pgh ) Le Monde Sans fin met le cap au Sud, et plus pr\u00e9cis\u00e9ment en Espagne.\n\nCe n'est pas une mais deux versions espagnoles qui viennent de sortir :\n- une en castillan (lien dans l'image ci-dessous)\n- une en catalan : https://lnkd.in/eHxRTkEC (qui a m\u00eame une couverture bleue, histoire de montrer que vraiment c'est pas comme l'autre !)\n\nSi vous avez des relations au pays de Don Quichotte qui ont le mauvais go\u00fbt de ne pas parler fran\u00e7ais (!), il est d\u00e9sormais possible de leur sugg\u00e9rer de la lecture en espagnol, quel que soit ce dernier !\n\nEt tant que nous y sommes, au sud-est il y a aussi une version croate : https://lnkd.in/e3TznwXi \n\nD'ici quelques mois on devrait pers\u00e9v\u00e9rer au sud (de l'Europe) avec une version italienne et une portugaise, et pers\u00e9v\u00e9rer \u00e0 l'est (de l'Europe) avec une version polonaise. L'Europe s'est b\u00e2tie sur l'\u00e9nergie, ne l'oublions pas !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6996901588053164032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6996901590204870656,urn:li:activity:6996901590204870656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 212, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6996901590204870656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6996901590204870656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6996901590204870656", + "threadId": "activity:6996901590204870656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996901590204870656", + "urn": "urn:li:activity:6996901590204870656", + "numComments": 259, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6996901590204870656", + "reactionTypeCounts": [ + { + "count": 4698, + "reactionType": "LIKE" + }, + { + "count": 521, + "reactionType": "PRAISE" + }, + { + "count": 190, + "reactionType": "EMPATHY" + }, + { + "count": 59, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6996901590204870656", + "numLikes": 5484, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996901590204870656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5485, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6996436027229765634", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6996436027229765634)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6996436027229765634)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-spectacle-vivant-au-d%C3%A9fi-de-la-transition-activity-6996436027229765634-DbXR?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6996436026411909121", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6996436027229765634", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6996436026411909121", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "hnN4nl4/DmgjnSBqCIiApw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6996436027229765634,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7741171083256221759", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675670386167?e=1677240000&v=beta&t=q-pqBiRJvFKr9MFX7FNSdsXiu-IYmFdJ2Yic-wuz9TQ", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675670386167?e=1677240000&v=beta&t=w2tgpgc4QX7KcXDwwKaMuV8_QyBU6auaet358JB-LGI", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675670386168?e=1677240000&v=beta&t=QaTdVPc-sn4WMckhC5JO8yNUFiaSojRG4AsdULJP2Ig", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675670386168?e=1677240000&v=beta&t=fUJbYr2qa_9SFjpKmxsCuppbEcxGHI3oS3y6no7T7As", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGE-d7dTWr4-g/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7741171083256221759)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7741171083256221759)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le spectacle vivant au d\u00e9fi de la transition \u00e9cologique by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/culture/article/2022/11/05/le-spectacle-vivant-au-defi-de-la-sobriete-energetique_6148598_3246.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le spectacle vivant au d\u00e9fi de la transition \u00e9cologique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6996436026411909121,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La d\u00e9carbonation ? Une affaire d'ing\u00e9nieurs (de l'inerte ou du vivant) pardi ! Eoliennes, m\u00e9thaniseurs, voitures \u00e9lectriques et bornes de recharge, ampoules \u00e0 LED, mat\u00e9riaux isolants et pompes \u00e0 chaleur, s\u00e9questration du CO2, r\u00e9gimes alimentaires des bovins, arr\u00eat du labour, hydrog\u00e8ne, batteries, trains, v\u00e9los.... la liste des objets techniques qui arrivent dans les d\u00e9bats est presque infinie d\u00e8s lors qu'il est question de baisser les \u00e9missions plan\u00e9taires de CO2.\n\nJuste apr\u00e8s on va trouver l'argent, \u00e2prement discut\u00e9 \u00e0 la COP 27 incidemment. Ce faisant, nous ratons peut-\u00eatre l'essentiel : notre repr\u00e9sentation de l'id\u00e9al, ce qui nous attire et nous repousse, le mod\u00e8le sur lequel on essaie de se caler, les habitudes qu'il faut prendre et celles dont il faut se d\u00e9partir, en un mot ce qui rel\u00e8ve du bien ou d\u00e9sirable et ce qui rel\u00e8ve du mal et du repoussant. \n\nIl y a donc un tout petit sujet culturel dans cette histoire. La culture, en fait, a un double rapport avec les \u00e9missions de gaz \u00e0 effet de serre. Tout d'abord son fonctionnement m\u00eame en engendre. \n\nLes mus\u00e9es sont parfois des aspirateur \u00e0 touristes a\u00e9roport\u00e9s (le Louvre ou le Moma), et les festivals, cin\u00e9mas, sites historiques ou remarquables (comme le Mont Saint Michel), des aspirateurs \u00e0 voitures. Les b\u00e2timents doivent aussi \u00eatre chauff\u00e9s et les d\u00e9cors fabriqu\u00e9s, et enfin l'audiovisuel - qui fait partie de la culture, porno compris :) - est le premier motif d'emploi du digital, lequel engendre 4% des \u00e9missions plan\u00e9taires environ.\n\nComme toute activit\u00e9 \"moderne\", la culture est elle aussi devenue d\u00e9pendante des combustibles fossiles. \n\nMais elle a un autre rapport \u00e0 la question : celle de \"cr\u00e9atrice de tendances\". Hollywood a surement fait autant - sinon plus - pour l'id\u00e9alisation du mode de vie \u00e9nergivore des am\u00e9ricains que toutes les campagnes publicitaires ou marketing des constructeurs de grosses voitures ou de maisons individuelles.\n\nC'est pour cela que, dans le Plan de Transformation de l'Economie Fran\u00e7aise, il y a un chapitre entier sur la culture (https://bit.ly/3UnN8ni ). Ce n'est pas juste un petit truc dont il faut s'occuper pour donner le change pendant que les sujets vraiment s\u00e9rieux se discutent avec les industriels. C'est un secteur qui contribue puissamment aux effets de mode et qui est par ailleurs issu de l'anthropoc\u00e8ne dans sa forme actuelle. \n\nCet article du Monde \u00e9voque quelques initiatives sur le sujet, soit port\u00e9es par des acteurs individuels (compagnies de th\u00e9\u00e2tre, organisateurs de festivals) soit par des entit\u00e9s collectives (associations professionnelles ou syndicats). \n\nSelon l'article du Monde, le travail du Shift Project sert \"de r\u00e9f\u00e9rence\" au secteur. M\u00eame si cette affirmation ne refl\u00e8te que le dixi\u00e8me de la r\u00e9alit\u00e9, cela signifie quand m\u00eame que nous sommes identifi\u00e9s comme utiles pour que les acteurs de ce domaine s'emparent de la question climatique. C'est indispensable pour que le reste de la soci\u00e9t\u00e9 fasse de la d\u00e9carbonation un but d\u00e9sirable. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6996436026411909121,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6996436027229765634,urn:li:activity:6996436027229765634,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6996436027229765634,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6996436027229765634,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6996436027229765634", + "threadId": "activity:6996436027229765634", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996436027229765634", + "urn": "urn:li:activity:6996436027229765634", + "numComments": 109, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6996436027229765634", + "reactionTypeCounts": [ + { + "count": 1235, + "reactionType": "LIKE" + }, + { + "count": 86, + "reactionType": "INTEREST" + }, + { + "count": 75, + "reactionType": "PRAISE" + }, + { + "count": 43, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "EMPATHY" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6996436027229765634", + "numLikes": 1472, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6996436027229765634", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1472, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6995781404512952320", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6995781404512952320)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6995781404512952320)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climatsup-business-former-les-acteurs-de-activity-6995781404512952320-70v_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6995781403606929410", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6995781404512952320", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6995781403606929410", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "PVTJRP8vz4q0eVzf32VbfQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6995781404512952320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8459012764171481968", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676596121923?e=1677240000&v=beta&t=mQcuJKnoZipMWKudDoCL8QNgQ5Um8fJ8yW2JgA5Szuw", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676596121923?e=1677240000&v=beta&t=l_5dQeoNwEuQIG2Qm8SktdZA0E65KSoofB1b1hlXH08", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676596121923?e=1677240000&v=beta&t=29IAA03gIOdM100ACzbxxsgD6i_2MuqrAzWOMpxIq9c", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676596121923?e=1677240000&v=beta&t=ZBAzvvpnQT8Mz4Fq_2GtEHvRLIW9SL1AsnG64tG_eQo", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGzKG2KtofCCA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8459012764171481968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8459012764171481968)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: ClimatSup Business - Former les acteurs de l'\u00e9conomie de demain by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/rapport-final-climat-sup-business/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "ClimatSup Business - Former les acteurs de l'\u00e9conomie de demain" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6995781403606929410,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Comment apprendre aux \u00e9l\u00e8ves des \u00e9coles de gestion \u00e0 faire un business plan compatible accord de Paris ? Du marketing ou de la publicit\u00e9 compatible avec les limites plan\u00e9taires ? Du management \"bas carbone\" ?\n\nApr\u00e8s avoir travaill\u00e9 sur la mise en harmonie de l'enseignement dans les \u00e9coles d'ing\u00e9nieur avec la n\u00e9cessaire d\u00e9carbonation (sous contrainte d'autres ressources) de l'\u00e9conomie, The Shift Project r\u00e9cidive (si l'on peut dire) avec les \u00e9coles de gestion (en attendant de compl\u00e9ter la trilogie dans pas longtemps avec l'enseignement de la finance).\n\nLe travail effectu\u00e9 par notre think tank a consist\u00e9 \u00e0 cr\u00e9er une \"m\u00e9thode op\u00e9rationnelle\" pour aider un \u00e9tablissement d'enseignement sup\u00e9rieur en gestion \u00e0 proposer un enseignement compatible avec les d\u00e9fis de demain et non avec ceux d'hier.\n\nUne fois cela dit, un certain nombre de probl\u00e8mes pratiques se posent pour passer \u00e0 l'action :\n- comment r\u00e9viser les programmes ? Faut-il proposer la m\u00eame chose qu'actuellement avec en plus un peu de RSE ou de physique, ou bien il faut revoir tout l'enseignement, y compris faire un tri s\u00e9v\u00e8re dans ce qui existe ?\n- Aura-t-on besoin des m\u00eames enseignants qu\u2019il faudra juste former \u00e0 de nouvelles approches, ou bien l\u2019angle sera tellement diff\u00e9rent que le corps enseignant apte \u00e0 officier dans ce nouveau contexte viendra surtout de l\u2019ext\u00e9rieur ?\n-\u00a0Faut-il s\u00e9lectionner les \u00e9l\u00e8ves sur des bases diff\u00e9rentes ?\n- Faut-il changer les syst\u00e8mes de classement des \u00e9tablissements, pour que le salaire \u00e0 la sortie ne soit plus le principal crit\u00e8re prix en compte ? \n- Pour une \u00e9cole qui voudrait \"faire sa r\u00e9volution\", comment cesser de servir un syst\u00e8me que l\u2019on sait aller dans le mur sans aller dans le mur soi-m\u00eame parce que l\u2019on est sorti du jeu ?\n- Faut-il \u00e9couter les recruteurs, qui sont par nature l\u2019incarnation de l\u2019existant dont il faut se d\u00e9partir, ou \u00e9couter des \u00e9l\u00e8ves, qui peuvent avoir des aspirations qui ne correspondent pas (encore) \u00e0 des emplois existants ?\n\nLe rapport du Shift Project ne fournira pas de r\u00e9ponse exhaustive \u00e0 toutes ces questions, et \u00e0 toutes les autres qui viennent \u00e0 l'esprit, mais il devrait n\u00e9anmoins int\u00e9resser toute personne qui partagerait nos souhaits de voir cet enseignement sup\u00e9rieur \"shifter\" un peu plus rapidement que maintenant. \n\nCar si nous prenons l'accord de Paris au pied de la lettre - et ne pas le faire en pleine COP est os\u00e9 :) - il reste 30 ans pour amener les \u00e9missions \u00e0 z\u00e9ro. Les cadres arrivant aujourd'hui sur le march\u00e9 du travail devraient donc d\u00e9j\u00e0 avoir les r\u00e9flexes adapt\u00e9s \u00e0 un monde o\u00f9 l'\u00e9nergie facile va se contracter, ce qui est l'\u00e9volution inverse de celle qui a men\u00e9 \u00e0 la mondialisation dont les anciens des \u00e9coles de gestion sont les b\u00e9n\u00e9ficiaires directs. \n\nNB : Si par chance vous \u00eates disponible dans 45 minutes (!) la pr\u00e9sentation du rapport aura lieu \u00e0 Audencia (\u00e0 Nantes) et en visio sur la page https://lnkd.in/eaSz8idj (il y aura un replay sinon)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6995781403606929410,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6995781404512952320,urn:li:activity:6995781404512952320,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 110, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6995781404512952320,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6995781404512952320,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6995781404512952320", + "threadId": "activity:6995781404512952320", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995781404512952320", + "urn": "urn:li:activity:6995781404512952320", + "numComments": 144, + "reactionText": { + "textDirection": "USER_LOCALE", + "text": "Jacques PYRAT" + }, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6995781404512952320", + "reactionTypeCounts": [ + { + "count": 1748, + "reactionType": "LIKE" + }, + { + "count": 129, + "reactionType": "INTEREST" + }, + { + "count": 125, + "reactionType": "PRAISE" + }, + { + "count": 87, + "reactionType": "MAYBE" + }, + { + "count": 35, + "reactionType": "APPRECIATION" + }, + { + "count": 26, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6995781404512952320", + "numLikes": 2150, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995781404512952320", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2150, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6995652656836837376", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6995652656836837376)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6995652656836837376)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_letat-r%C3%A9clame-plus-defforts-de-d%C3%A9carbonation-activity-6995652656836837376-aFC3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6995652655922487296", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6995652656836837376", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6995652655922487296", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "5YW1IlI7vQn5rztJZAhVBQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6995652656836837376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8979046753261814202", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675759221812?e=1677240000&v=beta&t=3O_5Z-W14bzk2hKGftC-p4zcfCPcRz1nqxMrG1sTRN8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675759221812?e=1677240000&v=beta&t=7Dt_UKvUlJo_2BkN7TjnjboOm4nqQfd40swI52RPGVY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675759221812?e=1677240000&v=beta&t=p2GoxTcKSLaIMOp3hKQjeW3jnd-25UHlMATsQC-6AQA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675759221812?e=1677240000&v=beta&t=Exybn4d77Fqb4K6leh_49183uk9WkO-AwsKUmfG0pCU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG5QbMuSz8lqw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8979046753261814202)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8979046753261814202)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'Etat r\u00e9clame plus d'efforts de d\u00e9carbonation aux industriels by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/letat-reclame-plus-defforts-de-decarbonation-aux-industriels-1876669#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'Etat r\u00e9clame plus d'efforts de d\u00e9carbonation aux industriels" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6995652655922487296,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans le chapitre \"industrie\" du Plan de Transformation de l'Economie Fran\u00e7aise (https://lnkd.in/esiqHkbf), nous avions fait le constat que les 3/4 des \u00e9missions directes (donc hors \u00e9missions associ\u00e9es \u00e0 la consommation \u00e9lectrique du secteur, et bien \u00e9videmment hors \u00e9missions du \"scope 3\") du secteur industriel en France viennent de 3 activit\u00e9s qui repr\u00e9sentent chacune environ un quart du total du secteur :\n- l'aci\u00e9rie\n- la cimenterie et activit\u00e9s connexes (production de chaux par exemple, mais le ciment domine de la t\u00eate et des \u00e9paules)\n- la chimie de base (production des monom\u00e8res, de la soude et du chlore, de l'hydrog\u00e8ne, etc).\n\nNos propositions permettaient de viser, pour ces secteurs, une division par 5 \u00e0 10 des \u00e9missions \u00e0 l'horizon 2050 - ce n'est pas encore la neutralit\u00e9 mais on s'en rapproche - en combinant sobri\u00e9t\u00e9 - il y a une baisse des volumes - et avanc\u00e9es techniques (par exemple la r\u00e9duction directe \u00e0 l'hydrog\u00e8ne dans la m\u00e9tallurgie ou un m\u00e9lange de capture et s\u00e9questration du carbone et de combustibles non fossiles dans la cimenterie).\n\nJe ne sais pas si l'Elys\u00e9e a lu le PTEF, mais l'\u00e9v\u00e9nement rapport\u00e9 par Les Echos s'inscrit dans la m\u00eame logique : porter une attention particuli\u00e8re aux sites fortement \u00e9missifs, o\u00f9 la d\u00e9carbonation va souvent avec des investissements lourds qu'il faut donc pouvoir \"s\u00e9curiser\".\n\n\"s\u00e9curiser\" signifie en pratique que, sur leur dur\u00e9e de vie, ces investissements vont \u00e9viter plus de couts qu'ils n'en engendreront. La logique est que, comme les sites gros \u00e9metteurs sont soumis aux quotas, et que ces derniers sont d\u00e9sormais payants, tout le CO2 non \u00e9mis peut se convertir en quotas non achet\u00e9s, et cet argent peut \u00eatre mis en face de l'amortissement de l'investissement r\u00e9alis\u00e9.\n\nPour que le syst\u00e8me fonctionne bien, il y a un point que cet article n'\u00e9voque pas : la garantie d'un prix \u00e9lev\u00e9 et stable du CO2 \u00e0 l'avenir. Le march\u00e9 ne peut pas garantir cela. Il faut donc que la puissance publique s'en m\u00eale, or pour le moment la Commission (car cela d\u00e9pend d'elle) est r\u00e9tive \u00e0 l'id\u00e9e de mettre un prix plancher aux quotas mis aux ench\u00e8res.\n\nLe deuxi\u00e8me point qui n'est pas \u00e9voqu\u00e9 est la protection aux fronti\u00e8res : si les couts de production domestiques qui n'engendrent que peu de CO2 sont sup\u00e9rieurs \u00e0 ceux des concurrents \u00e9trangers qui \u00e9mettent plus, il faut pouvoir compenser la diff\u00e9rence aux fronti\u00e8res (comme pour la TVA). \n\nDans les commodit\u00e9s certaines voyagent peu en pratique (le ciment), mais d'autres beaucoup plus (acier ou polym\u00e8res). Si l'Etat veut que les industriels avancent - et il a raison de le vouloir - il faut qu'il fasse sa part dans la planification, en s'occupant des deux \u00e9l\u00e9ments \u00e9voqu\u00e9s plus haut. Une troisi\u00e8me alternative est qu'il prenne \u00e0 sa charge les investissements des industriels, en allant \u00e9ventuellement jusqu'\u00e0 une nationalisation ou une cogestion - une \u00e9ventualit\u00e9 aujourd'hui tr\u00e8s peu compatible avec l'orientation \u00e9conomique lib\u00e9rale, mais l'histoire n'a pas fini d'\u00eatre \u00e9crite !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6995652655922487296,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6995652656836837376,urn:li:activity:6995652656836837376,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 42, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6995652656836837376,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6995652656836837376,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6995652656836837376", + "threadId": "activity:6995652656836837376", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995652656836837376", + "urn": "urn:li:activity:6995652656836837376", + "numComments": 67, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6995652656836837376", + "reactionTypeCounts": [ + { + "count": 966, + "reactionType": "LIKE" + }, + { + "count": 98, + "reactionType": "MAYBE" + }, + { + "count": 92, + "reactionType": "INTEREST" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6995652656836837376", + "numLikes": 1189, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995652656836837376", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1189, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6995295509888299008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6995295509888299008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6995295509888299008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_agriculture-il-faut-abandonner-le-labour-activity-6995295509888299008-tR2d?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6995295508894220288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6995295509888299008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6995295508894220288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "geE9GLYMLxxPrk+/mSmaUQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6995295509888299008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7352330957760746843", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676368873920?e=1677240000&v=beta&t=oSKXCH78m-dui7lavcEXHFJ5NPFiGSfqnoU-H2soLeQ", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676368873920?e=1677240000&v=beta&t=TorH-d6o01axdCngyF_5lTaYDnR4mqZZHS3RIP0fymo", + "expiresAt": 1677240000000, + "height": 526 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676368873921?e=1677240000&v=beta&t=ks4ZMq7wd94h2L6Onl6Lcsiw0qbd4XfNoBJIvOt9GJ8", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676368873921?e=1677240000&v=beta&t=U4iR0h-I2rqsRSK_Y98XbATNe86cXo5jZghTu9R4QsU", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQH90A8YSrTHmg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7352330957760746843)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7352330957760746843)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "letelegramme.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Agriculture : \u00ab Il faut abandonner le labour \u00bb by letelegramme.fr", + "actionTarget": "https://www.letelegramme.fr/dossiers/en-quete-de-demain/agriculture-il-faut-abandonner-le-labour-04-11-2022-13210066.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Agriculture\u00a0: \u00ab\u00a0Il faut abandonner le labour\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6995295508894220288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 67, + "length": 14, + "miniProfile": { + "firstName": "Lionel", + "lastName": "Alletto", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB2KoKkBj0_b_myDoXow3e41vHVaBIz6tEg", + "occupation": "Directeur de recherche chez INRAE", + "objectUrn": "urn:li:member:495624361", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB2KoKkBj0_b_myDoXow3e41vHVaBIz6tEg", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1517601436955?e=1681948800&v=beta&t=6UDhR5DaDQc0abluUVzw5DIRZdzIDUqZ8laPProAioE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1517601436955?e=1681948800&v=beta&t=3kj7moF6B14uDTKAL3l58_lUZuh2devx1C3v18QRsM4", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5116AQF2X3nHXIo75w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "lionel-alletto-7a1b97119", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1519478248294?e=1681948800&v=beta&t=xRv5YFR8F6qpGh64kDFcFg2INTWRXm47nZITXBkNQk0", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1519478248294?e=1681948800&v=beta&t=cQSJzvyxVOq_542c3A4h8TkF0sI0-unWUlWb6D906b0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1519478248294?e=1681948800&v=beta&t=GAsalzLUw4G74zryvfm0gjVeQXqsYqVNh07P1Dxd_9Q", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1519478248294?e=1681948800&v=beta&t=BC9H48gVjSWv8g5FtdZq3y35szq7clYTuNLSKPXtVgU", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQF0oKakpSHzWQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "0Gg2u9XYRhasO5Bcjp1wpQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans un entretien au T\u00e9l\u00e9gramme (qui \u00e0 une \u00e9poque fut \"de Brest\"), Lionel Alletto \u00e9voque les modifications des pratiques agricoles qu'il serait pertinent de mettre en oeuvre pour gagner en r\u00e9silience et diminuer la pression sur l'environnement (NB : je soup\u00e7onne la transcription de l'interview de comporter quelques erreurs ici ou l\u00e0, qui conduisent certaines phrases \u00e0 \u00eatre \u00e9tranges ou en d\u00e9calage).\n\nQuelques \u00e9l\u00e9ments int\u00e9ressants de cette interview :\n- les techniques sans labour semblent am\u00e9liorer la r\u00e9sistance \u00e0 la s\u00e9cheresse (un avantage qui pourrait ne pas \u00eatre mince avec ce qui nous attend)\n- la diversification des cultures - dont la polyculture \u00e9levage - permet de diminuer l'usage des phytosanitaires\n- le seul phytosanitaire vraiment utile en agriculture de conservation c'est... le glyphosate (tous les \u00e9chos que j'ai eus laissent penser que ce n'est pas celui dont l'interdiction est la plus prioritaire...)\n- en \"p\u00e9riode de temps calme\" sur le prix de l'\u00e9nergie, l'agriculture de conservation ne change pas la donne sur le plan \u00e9conomique (donc elle ne rapporte rien de plus... mais ne coute pas plus non plus), mais quand les prix des hydrocarbures grimpent au plafond elle donne un avantage\n\nJ'avais retenu par ailleurs que d'avoir un couvert v\u00e9g\u00e9tal sur l'ensemble de l'ann\u00e9e favorise la s\u00e9questration de carbone dans le sol. \n\n\"sur le papier\", dixit l'urbain que je suis qui ne tient pas souvent une fourche ou une b\u00eache :), cette technique semble donc \u00e0 g\u00e9n\u00e9raliser. Que manque-t-il pour que cela soit le cas ? La liste des \"conditions du succ\u00e8s\" n'est pas tr\u00e8s diff\u00e9rente ici de ce qu'elle est pour tout passage \u00e0 l'\u00e9chelle d'une mani\u00e8re de faire pour laquelle des pionniers montrent que globalement ca fonctionne :\n- une valorisation \"culturelle\" d'un changement de pratique dans un monde o\u00f9 c'est plut\u00f4t l'inverse qui est la r\u00e8gle. Les terroirs, AOC, etc, valorisent le fait de \"faire toujours pareil\", et l\u00e0 il s'agit de valoriser l'inverse !\n- du coup il faut un accompagnement et de la formation, \u00e0 la fois par la recherche (c'est donc une tr\u00e8s bonne chose que l'INRAE s'en m\u00eale) et par les entit\u00e9s d\u00e9volues \u00e0 cet effet (chambres d'agriculture et conseil interne des coop\u00e9ratives notamment)\n- il faut aussi que les r\u00e8gles \u00e9conomiques ne dissuadent pas explicitement les modifications de pratiques, voire les encouragent (il n'y a pas que les prix de vente pour cela : l'Etat, comme il l'a fait pour le covid, pourrait reprendre de la dette d'agriculteurs qui accepteraient de changer de pratiques, par exemple). Or le premier souci des r\u00e8gles \u00e9conomiques aujourd'hui n'est pas d'assurer la \"durabilit\u00e9 physique\" !\n\nTout est r\u00e9sum\u00e9 dans cette phrase de l'interview : \"Les syst\u00e8mes [agricoles]\u00a0doivent (...) gagner en r\u00e9silience et (...) \u00eatre moins d\u00e9pendants des ressources externes, \u00eatre plus diversifi\u00e9s pour faire face aux al\u00e9as, maximiser les services \u00e9cosyst\u00e9miques\". Il n'y a plus qu'\u00e0 :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6995295508894220288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6995295509888299008,urn:li:activity:6995295509888299008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 194, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6995295509888299008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6995295509888299008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6995295509888299008", + "threadId": "activity:6995295509888299008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995295509888299008", + "urn": "urn:li:activity:6995295509888299008", + "numComments": 320, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6995295509888299008", + "reactionTypeCounts": [ + { + "count": 1800, + "reactionType": "LIKE" + }, + { + "count": 187, + "reactionType": "INTEREST" + }, + { + "count": 176, + "reactionType": "MAYBE" + }, + { + "count": 46, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "EMPATHY" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6995295509888299008", + "numLikes": 2246, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6995295509888299008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2247, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6994982486191566848", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6994982486191566848)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6994982486191566848)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_aujourdhui-commence-la-cop-27-%C3%A0-charm-el-cheikh-activity-6994982486191566848-5yPd?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6994982484799037440", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6994982486191566848", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6994982484799037440", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "UgzA/UFe3JbhcLzPa/9WBA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6994982486191566848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHyVFCilO5z7g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHyVFCilO5z7g", + "artifacts": [ + { + "width": 1530, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1667733782241?e=1679529600&v=beta&t=E76FRm9Gog9U9xAl9hvwLkEN4q4nGln5JAmo0TtQSMg", + "expiresAt": 1679529600000, + "height": 978 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1667733784190?e=1679529600&v=beta&t=VOWkEpgiTvYBGBugRdds3g0Aeby8hDcRFJphHtLwVB4", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1667733784190?e=1679529600&v=beta&t=HA2EVhpqJD87lljIQXa14UZWyNHm-GxsbpsW1DlW7s8", + "expiresAt": 1679529600000, + "height": 818 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1667733784190?e=1679529600&v=beta&t=sjOjBFsypelUKUIl5khRlgGMSh_i6JtW2JIBRlRWuQM", + "expiresAt": 1679529600000, + "height": 307 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1667733784190?e=1679529600&v=beta&t=PNWXm69zmjFs7ssCfPQRkZajU-OKUPgV9bLMCGG5K-s", + "expiresAt": 1679529600000, + "height": 102 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1667733784190?e=1679529600&v=beta&t=1SiZkvv8Dcw_dYgVNMF8TZuOVEFERA9RHtiq8qM5CVg", + "expiresAt": 1679529600000, + "height": 511 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHyVFCilO5z7g/feedshare-shrink_" + }, + "displayAspectRatio": 0.6392156862745098 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6994982484799037440,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Aujourd'hui commence la COP 27 \u00e0 Charm el-Cheikh, au bord de la Mer Rouge. Esp\u00e9rons que la proximit\u00e9 d'un d\u00e9sert et les 28 \u00e0 30 \u00b0C en novembre (https://bbc.in/3FNxQ6R ) permettront aux participant(e)s de se sentir plus concern\u00e9s que quand tout le monde est en doudoune !\n\nIl y sera question d'agir pour limiter le r\u00e9chauffement. Or, c'est physique, cela signifie se contraindre sur les \u00e9missions. De combien ? Cela d\u00e9pend de l'objectif !\n\nLe graphique ci-dessous donne les trajectoires d'\u00e9missions qui vont avec des r\u00e9chauffements donn\u00e9s en 2100. Tout en bas, le trait bleu ciel correspond \u00e0 1,5 \u00b0C et, et tout en haut la rouge fonc\u00e9e du haut \u00e0 4,5 \u00b0C. On trouvera en commentaire le graphique des \u00e9l\u00e9vations de temp\u00e9rature fait avec le m\u00eame code couleur.\n\nPour 1,5\u00b0C en 2100 on voit que les \u00e9missions doivent \u00eatre nulles en 2060, puis \"n\u00e9gatives\" : cela signifie que la totalit\u00e9 de l'\u00e9nergie utilis\u00e9e se d\u00e9carbone en 40 ans, et ensuite on arrive \u00e0 reprendre du CO2 depuis l'air via des pr\u00e9c\u00e9d\u00e9s technologiques d\u00e9ploy\u00e9s \u00e0 large \u00e9chelle. Pour \"moins de 2\u00b0C en 2100\" c'est pareil mais d\u00e9cal\u00e9 de 20 ans.\n\nAvec des \u00e9missions qui seraient surtout contraintes \u00e0 l'avenir par la disponibilit\u00e9 en \u00e9nergie fossile (pic p\u00e9trolier maintenant, pic gazier en 2030, pic charbonnier d'ici 2050) on est un peu en dessous de 3\u00b0C en 2100 (courbe orange).\n\nEnfin les deux courbes du haut signifient une \"\u00e9conomie fossile\" non limit\u00e9e - ni par l'\u00e9puisement des gisements d'hydrocarbures, ni par les cons\u00e9quences du changement climatique, ni par d'autres limites plan\u00e9taires - jusqu'en 2100.\n\nQuelques commentaires :\n\n- m\u00eame en diminuant les \u00e9missions mondiales de 7% par an d\u00e8s demain matin, la temp\u00e9rature continue d'augmenter d'environ 0,2 \u00b0C par d\u00e9cennie pour les 20 ans qui viennent. Cela est du \u00e0 l'inertie chimique du CO2 : tant que les \u00e9missions ne sont pas nulles la concentration de ce gaz dans l'air - et \u00e0 la suite la temp\u00e9rature - augmente.\n\n- comme je ne crois pas que l'on puisse compter sur la reprise du CO2 de l'atmosph\u00e8re \u00e0 l'\u00e9chelle imagin\u00e9e pour les sc\u00e9narios 1,5 \u00b0C et 2\u00b0C, sauf pand\u00e9mie ou chute de com\u00e8te on va se prendre 1,5\u00b0C de toute fa\u00e7on, et c'est presque pareil pour 2\u00b0C -> il faut penser massivement r\u00e9silience (et non juste \"adaptation\", terme qui suppose une absence d'inconv\u00e9nient si on s'y prend bien) d\u00e8s \u00e0 pr\u00e9sent\n\n- baisser les \u00e9missions de 5% par an c'est tr\u00e8s probablement baisser le PIB de 3 \u00e0 4% par an (https://bit.ly/3T2QevC ). J'ai quelques doutes sur le fait que ca puisse \u00eatre un objectif consensuel dans l'enceinte des Nations Unies (o\u00f9 tout se d\u00e9cide par consensus).\n\nCOP 27 ou pas, en Europe, la \"voiture balai\" de la baisse subie des combustibles fossiles est d\u00e9j\u00e0 en cours (et l'\u00e9tait avant Poutine !). Ca ne va pas arr\u00eater la d\u00e9rive climatique, mais ca nous force d\u00e9j\u00e0 \u00e0 conjuguer d\u00e9crue des moyens mat\u00e9riels \u00e0 notre disposition et accroissement des dommages climatiques. Il serait temps de se creuser la cervelle pour l'avenir avec le bon cahier des charges. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6994982484799037440,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6994982486191566848,urn:li:activity:6994982486191566848,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 81, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6994982486191566848,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6994982486191566848,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6994982486191566848", + "threadId": "activity:6994982486191566848", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994982486191566848", + "urn": "urn:li:activity:6994982486191566848", + "numComments": 206, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6994982486191566848", + "reactionTypeCounts": [ + { + "count": 2411, + "reactionType": "LIKE" + }, + { + "count": 337, + "reactionType": "INTEREST" + }, + { + "count": 180, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "APPRECIATION" + }, + { + "count": 28, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6994982486191566848", + "numLikes": 2997, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994982486191566848", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2998, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6994608569127968768", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6994608569127968768)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6994608569127968768)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_assurer-le-risque-climatique-laffaire-activity-6994608569127968768-I5uI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6994608568117174272", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6994608569127968768", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6994608568117174272", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "5OJ5/G7iXescdlmkqFFr5A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6994608569127968768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8973742835780954443", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676035233502?e=1677240000&v=beta&t=aoF78Vj7tIBuES_kZTi7d8egvBTZJBWuWTPfTLJzi5M", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676035233502?e=1677240000&v=beta&t=FUSlvnHm-OGfpjYxgpdvNeHxvLZfUVC8FJC9sb5PrLM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676035233502?e=1677240000&v=beta&t=wp8Q4reARiRcL4toRvnF1uBW_qFLzNoTYN-J-Z4pKkA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676035233502?e=1677240000&v=beta&t=lD0QDQ_ta9YHWInqf0vw0aBB_0dPLyLIDTtut8fi4bA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFIxxGc--M1BQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8973742835780954443)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8973742835780954443)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Assurer le risque climatique ? L'affaire du public et du priv\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/assurer-le-risque-climatique-laffaire-du-public-et-du-prive-1873039" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Assurer le risque climatique\u00a0? L'affaire du public et du priv\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6994608568117174272,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"Un monde \u00e0 4\u00b0C n'est pas assurable\" : on se souvient (ou pas !) de cette d\u00e9claration d'Henri de Castries (ex-patron d'Axa), pour rappeler qu'on ne pouvait compter sur les assureurs pour servir de filet de s\u00e9curit\u00e9 en cas de r\u00e9chauffement trop prononc\u00e9.\n\nDans une tribune r\u00e9cente parue dans Les Echos, le pr\u00e9sident du premier r\u00e9assureur fran\u00e7ais (SCOR) confirme que ceux qui sont \u00e0 risque dans cette histoire sont les assur\u00e9s et non les assureurs. Il a largement raison.\n\nTout d'abord, le changement climatique va surtout endommager des actifs naturels qui valent z\u00e9ro par convention dans l'\u00e9conomie, et ne peuvent \u00eatre ni assur\u00e9s, ni remis en \u00e9tat. La Mer de Glace, la pluviom\u00e9trie en France ou les coraux tropicaux ne peuvent pas \u00eatre remis en \u00e9tat si n\u00e9cessaire par une bonne police d'assurance ! Et dans ces cas de figure le risque est \u00e0 l'\u00e9vidence port\u00e9 par les humains qui b\u00e9n\u00e9ficient des services naturels, non par l'assureur.\n\nCe qui peut \u00e9ventuellement \u00eatre assur\u00e9 est le d\u00e9faut d'activit\u00e9 \u00e9conomique qui fait suite \u00e0 la disparition d'actifs naturels : si le Rhin baisse trop pour que les barges passent, l'industriel en bord de Rhin peut essayer de s'assurer pour les pertes d'exploitation qui en r\u00e9sultent. Mais ca ne fait pas revenir le Rhin.\n\nIl y a ensuite l'argument que l'assureur n'aimerait pas le risque. C'est tout le contraire : sans risque il n'y a pas besoin d'assurance. Le m\u00e9tier de l'assureur est, pour un risque donn\u00e9, de \"pr\u00e9voir\" l'ampleur des dommages possibles pour les assur\u00e9s, et de faire payer \u00e0 ces derniers le cout de son service pour le m\u00eame montant plus sa marge.\n\nQuand il y a un risque de devoir payer plus que les primes encaiss\u00e9es (alea trop volatil et pr\u00e9vision des dommages trop impr\u00e9cise, et/ou consentement \u00e0 payer de l'assur\u00e9 pas assez \u00e9lev\u00e9), alors l'assureur cesse de proposer ses services. Pour l'assureur, le risque est \"juste\" une diminution de son activit\u00e9 dans le segment consid\u00e9r\u00e9.\n\nPourquoi est-ce que cela ne semble pas chagriner plus que ca l'auteur de cette tribune qui rappelle ce fait ? Probablement parce que toutes les projections \u00e9conomiques \"voient\" de la croissance \u00e0 l'infini, climat ou pas (m\u00eame les sc\u00e9narios \"compatibles accord de Paris\" utilis\u00e9s pour les mod\u00e9lisations du GIEC postulent de la croissance \u00e9conomique ininterrompue jusqu'en 2100). \n\nLe secteur de l'assurance sait que son chiffre d'affaire est grosso modo proportionnel au PIB. La seule crainte que lui inspire la d\u00e9rive climatique est alors de devoir basculer sur d'autres types de risques, mais comme la solvabilit\u00e9 globale de ses clients est cens\u00e9e suivre la croissance, le climat est juste un motif d'arbitrage de son portefeuille de risques assur\u00e9s.\n\nEvidemment l'\u00e9quation change du tout au tout si la d\u00e9rive climatique peut contracter le PIB (et non juste le faire croitre moins vite). Pour avoir vraiment peur, les assureurs devront donc se convaincre que la d\u00e9rive climatique est susceptible d'engendrer une r\u00e9cession structurelle. Nous n'y sommes pas." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6994608568117174272,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6994608569127968768,urn:li:activity:6994608569127968768,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 77, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6994608569127968768,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6994608569127968768,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6994608569127968768", + "threadId": "activity:6994608569127968768", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994608569127968768", + "urn": "urn:li:activity:6994608569127968768", + "numComments": 100, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6994608569127968768", + "reactionTypeCounts": [ + { + "count": 1707, + "reactionType": "LIKE" + }, + { + "count": 274, + "reactionType": "MAYBE" + }, + { + "count": 266, + "reactionType": "INTEREST" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6994608569127968768", + "numLikes": 2281, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994608569127968768", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2282, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6994209415067279360", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6994209415067279360)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6994209415067279360)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-audition-%C3%A0-lassembl%C3%A9e-nationale-activity-6994209415067279360-fmrw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6994209414270320641", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6994209415067279360", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6994209414270320641", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "ftypeIyrOW5wpTWb1GcZuA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6994209415067279360,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8737146986113728955", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676509249480?e=1677240000&v=beta&t=aKmtczLLBoZuv7UPzf6ovQfl42lu_bFPT7baIrZMFT0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676509249480?e=1677240000&v=beta&t=6BUjz0YCLIRdhxQGF49S7Bejq55MJFJsPU5BjW05UVc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676509249480?e=1677240000&v=beta&t=JvgSAvHlBmAgSq1UBKkQf3MJItYxm9pMdwLB7NYdpro", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676509249480?e=1677240000&v=beta&t=OTlidCxsswX5D-rOQHjefiBOVEo7uqO-A8yjKXudoRo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGW7zT2IOjyIg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8737146986113728955)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8737146986113728955)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici : Audition \u00e0 l'Assembl\u00e9e nationale - 02/11/2022 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=oweVFXFFh04" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Audition de Jean-Marc Jancovici, membre du Haut Conseil pour le climat, par la commission d'enqu\u00eate de l'Assembl\u00e9e Nationale visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France ( infos sur cette..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici : Audition \u00e0 l'Assembl\u00e9e nationale - 02/11/2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6994209414270320641,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Assembl\u00e9e Nationale vient de cr\u00e9er une \"Commission d'enqu\u00eate visant \u00e0 \u00e9tablir les raisons de la perte de souverainet\u00e9 et d'ind\u00e9pendance \u00e9nerg\u00e9tique de la France\" (https://bit.ly/3FJnu81 ). Les commissions d'enqu\u00eate du Parlement sont des instances qui servent \u00e0 contr\u00f4ler l'action du gouvernement (https://bit.ly/3E0VxaA ). \n\nElles ont des pouvoirs d'investigation \u00e9tendus : une personne convoqu\u00e9e par une commission d'enqu\u00eate ne peut refuser d'y aller sous peine de sanctions p\u00e9nales, et la Commission peut se faire communiquer tout document qu'elle juge utile (sauf ce qui est couvert par le secret d\u00e9fense ou assimil\u00e9) pour mener ses travaux.\n\nLa possibilit\u00e9 de cr\u00e9er une commission d'enqu\u00eate fait partie des pr\u00e9rogatives des groupes politiques \u00e0 l'Assembl\u00e9e, et ces commissions d'enqu\u00eate s'inscrivent \u00e9videmment dans le jeu politique o\u00f9 un groupe de l'opposition va pr\u00e9f\u00e9rentiellement choisir un sujet qui \"agace\" le pouvoir en place.\n\nLa commission pour laquelle j'ai \u00e9t\u00e9 convoqu\u00e9 a \u00e9t\u00e9 cr\u00e9\u00e9e par les R\u00e9publicains, et je parierais volontiers qu'elle veut pouvoir conclure que Hollande et Macron (voire avant) ont fait \"n'importe quoi\" en mati\u00e8re de politique \u00e9lectrique. Cela \u00e9tant, mon audition n'a que peu port\u00e9 sur l'\u00e9valuation des politiques publiques men\u00e9es ces 10 ou 20 derni\u00e8res ann\u00e9es. \n\n\"On\" m'a surtout pos\u00e9 des questions sur les avantages et inconv\u00e9nients de tel ou tel type d'\u00e9nergie, sans oublier de parler de sobri\u00e9t\u00e9 ou de d\u00e9pendance - et sur quoi - de notre pays \u00e0 des approvisionnements \u00e9trangers. Car, de fait, depuis la fin de l'\u00e8re renouvelable, notre pays est d\u00e9pendant de pays producteurs d'hydrocarbures ou de minerais, et le restera demain.\n\nDepuis la mise en ligne de cette vid\u00e9o, des extraits de 10 secondes (!) ou 2 minutes ont commenc\u00e9 \u00e0 circuler, avec comme commentaire \"voici ce que pense Jancovici\". Mais... dans une vid\u00e9o de plus de 2 heures, chacun pourra trouver un court extrait qui lui plait plus particuli\u00e8rement et cens\u00e9 r\u00e9sumer ma pens\u00e9e !\n\nToutes les \u00e9nergies ont des avantages, toutes ont des inconv\u00e9nients, et dans cette audition j'ai du \u00e9voquer les avantages de toutes les \u00e9nergies potentiellement disponibles. Avec un bon logiciel de montage on peut donc me pr\u00e9senter comme \u00e9tant favorable \u00e0... n'importe laquelle de nos \u00e9nergies !\n\nBien \u00e9videmment, il est impossible de r\u00e9sumer en quelques minutes la totalit\u00e9 de ce qu'il faut comprendre pour se faire une opinion sur la question. Un r\u00e9sum\u00e9 est toujours un exercice imparfait (h\u00e9las) et il faut du temps (h\u00e9las \u00e0 nouveau) pour suffisamment faire le tour de la question pour avoir une conclusion \u00e9tay\u00e9e.\n\nIl y a 10 ans j'avais \u00e9t\u00e9 auditionn\u00e9 par une autre commission d'enqu\u00eate (sur le \"cout r\u00e9el de l'\u00e9lectricit\u00e9\" : https://bit.ly/3NBhxMr ). Selon que l'on aime les verres \u00e0 moiti\u00e9 vides ou \u00e0 moiti\u00e9 pleins, on pourra se r\u00e9jouir que les questions soient moins na\u00efves et brossent plus large, ou que certains faits \"\u00e9l\u00e9mentaires\" fassent toujours l'objet d'un dialogue de sourds." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6994209414270320641,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6994209415067279360,urn:li:activity:6994209415067279360,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 183, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6994209415067279360,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6994209415067279360,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6994209415067279360", + "threadId": "activity:6994209415067279360", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994209415067279360", + "urn": "urn:li:activity:6994209415067279360", + "numComments": 355, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6994209415067279360", + "reactionTypeCounts": [ + { + "count": 3673, + "reactionType": "LIKE" + }, + { + "count": 329, + "reactionType": "INTEREST" + }, + { + "count": 273, + "reactionType": "PRAISE" + }, + { + "count": 167, + "reactionType": "MAYBE" + }, + { + "count": 66, + "reactionType": "APPRECIATION" + }, + { + "count": 43, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6994209415067279360", + "numLikes": 4551, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6994209415067279360", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4554, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "I/Dh3vOURuiZ2XuAWmd9GA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6993985139571580929", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6993985139571580929)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6993985139571580929)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_frank-elderson-membre-du-comit%C3%A9-ex%C3%A9cutif-activity-6993985139571580929-zGjJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6993985138636259329", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6993985139571580929", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6993985138636259329", + "excludedFromSeen": false, + "trackingData": { + "requestId": "04ebaf92-834b-4b6e-8509-35c65b4dc8aa", + "trackingId": "dBqo7fhVk/6SMBi2NFYtRQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6993985139571580929,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHwjgrhmtYhIA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHwjgrhmtYhIA", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1667495998379?e=1679529600&v=beta&t=H8y6XUiphaldLUGsn1SElCY1EozWTNlrcZZXgXvBqrk", + "expiresAt": 1679529600000, + "height": 804 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1667495998664?e=1679529600&v=beta&t=b-bHORho5AWUogMaE4E8EjOLaF7lKaypdvGa3gkJnEc", + "expiresAt": 1679529600000, + "height": 8 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1667495998664?e=1679529600&v=beta&t=J1qrsyh2nQhK71CK1F2sEXdBmnIir91WTt0s2Z7Ltrc", + "expiresAt": 1679529600000, + "height": 502 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1667495998664?e=1679529600&v=beta&t=OlKSlrfk_tdZBua0_g6opDtsrOVEKCnJ_ESJqKKgRR0", + "expiresAt": 1679529600000, + "height": 188 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1667495998664?e=1679529600&v=beta&t=vfkF5jP5xM35Dm90QSaPHekdHzPVv6SsaNfMEfqSzWs", + "expiresAt": 1679529600000, + "height": 63 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1667495998664?e=1679529600&v=beta&t=b86bgqoVhBjrcKsC_F5YZwRCAUT8F1bSaiZuXU90kGE", + "expiresAt": 1679529600000, + "height": 314 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHwjgrhmtYhIA/feedshare-shrink_" + }, + "displayAspectRatio": 0.392578125 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, text, application" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6993985138636259329,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Frank Elderson, membre du comit\u00e9 ex\u00e9cutif de la Banque Centrale Europ\u00e9enne, utilise le blog de la BCE pour dire aux banques de la zone euro qu'elles ne tiennent pas assez compte des sujets climatiques et environnementaux dans la conduite de leurs affaires \"ordinaires\" : https://bit.ly/3NunD0U . Sa conclusion repose sur l'examen de 186 banques supervis\u00e9es par la BCE, avec un total de bilan cumul\u00e9 de 25.000 milliards d'euros.\n\nL'auteur consid\u00e8re que les banques ne sont pas encore \"en mesure d'identifier, d'\u00e9valuer, de contr\u00f4ler et d'att\u00e9nuer les risques in\u00e9vitables d\u00e9coulant des crises climatiques et environnementales\". Plus pr\u00e9cis\u00e9ment, trois points sont l'objet de faiblesses importantes :\n\n- la m\u00e9thode : 96% des banques audit\u00e9es ne savent pas identifier correctement les risques li\u00e9s au climat et \u00e0 l'environnement dans leurs actifs. En particulier, elles ne collectent pas de donn\u00e9es granulaires sur les contreparties et les actifs qui permettraient de faire des analyses fines sur les risques. Le dirigeant de la BCE fait aussi remarquer que le concept de \"net zero en 2050\" est souvent avanc\u00e9 sans d\u00e9finition claire de ce que cela recouvre, et sans d\u00e9finition d'objectifs interm\u00e9diaires indispensables pour l'action.\n\n- un \u00e9cart entre discours et actes : alors que les documents de r\u00e9f\u00e9rence des banques \u00e9voquent abondamment le climat, dans la pratique les sources de revenus des banques sont aujourd'hui \u00e0 peu pr\u00e8s les m\u00eames \"qu'avant\". Lorsque des initiatives sont prises pour les clients les plus \"intensifs en carbone\", il n'est pas expliqu\u00e9 en quoi cela pr\u00e9figure une action plus syst\u00e9mique pour rendre la banque globalement compatible avec une \u00e9conomie qui se d\u00e9carbone rapidement\n\n- enfin des politiques annonc\u00e9es mais non mises en oeuvre en pratique, y compris en ignorant des avertissements d'experts internes dans un certain nombre de cas.\n\nLes bons points - car il y en a quand m\u00eame - vont aux banques qui int\u00e8grent les risques physiques et de transition dans la couverture en capital de leurs engagements en fonction des \"caract\u00e9ristiques climat\" de ces derniers.\n\nDans les recommandations du r\u00e9gulateur, il y a notamment :\n- l'utilisation d'outils pour planifier la transition, avec la fixation d'objectifs interm\u00e9diaires. \n- la collecte large d'informations, pour calculer des risques de mani\u00e8re granulaire\n- l'int\u00e9gration des risques de transition et physique de long terme dans l'\u00e9valuation des besoins en capitaux (argh ! le mot qui f\u00e2che une banque est l\u00e2ch\u00e9 :) ).\n- la gestion des risques li\u00e9s \u00e0 la perte de biodiversit\u00e9\n\nL'article se termine en disant que, en 2024, toutes les banques devront \u00eatre \"align\u00e9es avec les les exigences du r\u00e9gulateur\". L'auteur ne dit pas ce que la BCE fera si cet objectif n'est pas atteint, mais la mani\u00e8re classique de g\u00e9rer un risque consid\u00e9r\u00e9 comme \u00e9lev\u00e9 dans le monde bancaire est d'exiger une couverture \u00e9lev\u00e9e en fonds propre pour les engagements concern\u00e9s. La question est pos\u00e9e de savoir si c'est cela que la BCE a en t\u00eate." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6993985138636259329,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6993985139571580929,urn:li:activity:6993985139571580929,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6993985139571580929,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6993985139571580929,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6993985139571580929", + "threadId": "activity:6993985139571580929", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6993985139571580929", + "urn": "urn:li:activity:6993985139571580929", + "numComments": 37, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6993985139571580929", + "reactionTypeCounts": [ + { + "count": 524, + "reactionType": "LIKE" + }, + { + "count": 80, + "reactionType": "INTEREST" + }, + { + "count": 66, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6993985139571580929", + "numLikes": 679, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6993985139571580929", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 679, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6993520338269569024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6993520338269569024", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6993520338269569024)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6993520338269569024)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-pr%C3%A9face-pour-le-livre-algocratie-activity-6993520338269569024-R8Ff?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6993520336805711872", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6993520338269569024", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6993520338269569024,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6993520338269569024,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6993520336805711872", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "SfUPipWodDgMojRsrm8jnA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6993520338269569024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7451013333643239022", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 400, + "fileIdentifyingUrlPathSegment": "800/0/1676105661835?e=1677240000&v=beta&t=N9onmVSe-R0ooayh8uVTIbsiE2biJsLZzJ31O26keGY", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676105661835?e=1677240000&v=beta&t=g5mzx_M9eFeIFPHr7eA9D1dJMyapCeVmpbXuSG9WRcU", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676105661835?e=1677240000&v=beta&t=72zmy9I4SML0BUvg_8C3fV-nFG6VUlskPnVHJekSJ-w", + "expiresAt": 1677240000000, + "height": 217 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "480/0/1676105661835?e=1677240000&v=beta&t=wGwmn0bQ2q7VrVkNjaj14ogVtA011auWN7FofVeKkhU", + "expiresAt": 1677240000000, + "height": 543 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFfBHaH3fohiw/articleshare-shrink_" + }, + "displayAspectRatio": 1.3575 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7451013333643239022)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7451013333643239022)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Une pr\u00e9face pour le livre Algocratie by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/contributions-a-ouvrage/une-preface-pour-le-livre-algocratie/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Une pr\u00e9face pour le livre Algocratie" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6993520336805711872,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1349, + "length": 17, + "miniProfile": { + "firstName": "Arthur", + "lastName": "Grimonpont", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABI0QdEB8VwxLH630wmcwoXmrihelwsJVKw", + "occupation": "Engineer", + "objectUrn": "urn:li:member:305414609", + "entityUrn": "urn:li:fs_miniProfile:ACoAABI0QdEB8VwxLH630wmcwoXmrihelwsJVKw", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1674634622493?e=1681948800&v=beta&t=uIRzRuqwUW2q4eZ3cEFeDPuFZuTsT3Quj1pQVjYREwQ", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1674634622493?e=1681948800&v=beta&t=ZVQ3ufBIECfSy3cXuufFhLE5U0SSjwO5PsCNJ5sEdLw", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQHc4nqGA9PF4g/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "arthur-grimonpont-69534886", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662626968132?e=1681948800&v=beta&t=nUnPRu9Ngh1Kp7GNtXADY26f9cNkQR_2oUMyyGeILw8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662626968132?e=1681948800&v=beta&t=slqwV46YG9smVtHnL-Ox2O6LSjpcogL3B27syiA48x8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662626968132?e=1681948800&v=beta&t=MPSdtyxDEHsknFkU6dDsNu-a9qCdD7zh8fUF0xwDbX8", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1662626968132?e=1681948800&v=beta&t=RF0oYHB5MPnd1Oexq2ANCYZqWEC4rnrszotnopIJVbI", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQE36ZAMjOJ13g/profile-displayphoto-shrink_" + } + }, + "trackingId": "iIB7iX1DQr6No/o58D8DSw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Nous sommes ici... sur un r\u00e9seau social. Et une des caract\u00e9ristiques de ce r\u00e9seau est que chacun va trouver sur son \"fil\" d'actualit\u00e9 des informations qui, pour l'essentiel, sont en accord avec sa vision du monde et non l'inverse. \n\nIl m'est assez facile de le constater pour mes propres publications : les r\u00e9actions sont toujours tr\u00e8s majoritairement positives (ou les commentaires n\u00e9gatifs toujours tr\u00e8s minoritaires, ce qui revient au m\u00eame). Il y a certes quelques exceptions, par exemple sur les publications des personnages politiques, o\u00f9 les commentaires n\u00e9gatifs peuvent \u00eatre dominants, mais c'est parce que... nous trouvons agr\u00e9able de lire les publications de ces auteurs pour pouvoir les critiquer ensuite !\n\nPourquoi est-ce que, sur tout r\u00e9seau, nous avons essentiellement des informations qui nous maintiennent dans notre zone de confort ? Parce que ces r\u00e9seaux sociaux sont structur\u00e9s par des algorithmes qui vont analyser nos r\u00e9actions (temps de lecture, \"like\", etc), en d\u00e9duire ce qui nous plait, et de l\u00e0 nous proposer le plus possible la m\u00eame chose.\n\nCar le m\u00e9tier de ces r\u00e9seaux n'est pas de nous informer : il est de proposer du \"temps de cerveau disponible\" \u00e0 leurs vrais clients, ceux qui payent, qui sont les annonceurs (dont les utilisateurs de comptes premium ici sont une variante).\n\nDe cette observation est n\u00e9 le livre d'Arthur Grimonpont dont j'ai accept\u00e9 de faire la pr\u00e9face. Ce n'est pas \u00e0 cause de mes souvenirs d'algorithmique (j'en ai fait un peu quand j'\u00e9tais jeune !) que l'on m'a demand\u00e9 cette contribution !\n\nPar contre, s'informer sur la question des limites plan\u00e9taires - qui concernent tout le monde, que cela nous plaise ou pas - n'est pas sp\u00e9cialement une op\u00e9ration qui nous maintient dans notre zone de confort. Et la place d\u00e9sormais occup\u00e9e par les r\u00e9seaux sociaux - quelques soci\u00e9t\u00e9s seulement qui \"informent\" quotidiennement des milliards d'individus - fait de ces entit\u00e9s des acteurs dominants dans la diffusion de l'information d\u00e9sormais. \n\nDu coup, comment marier leur int\u00e9r\u00eat - ne pas nous faire fuir - et l'acc\u00e8s de l'essentiel de la population \u00e0 une information qui, lorsqu'elle est factuelle, n'est pas sp\u00e9cialement agr\u00e9able ? (ce qui explique pourquoi les fake news se propagent plus vite : elles nous laissent dans notre zone de confort...). C'est toute la question de l'ouvrage.\n\nNormalement cette pr\u00e9face n'est disponible que pour les personnes qui voudront bien acheter cet ouvrage fort on\u00e9reux (22 euros !). Mais j'esp\u00e8re que ni l'\u00e9diteur ni l'auteur ne m'en voudront de la rendre publique pour au contraire inciter \u00e0 lire le reste, qui d\u00e9cortique par le menu le m\u00e9canisme effleur\u00e9 dans ce post. \n\nL'ambition - salutaire - de l'auteur est \u00e9videmment de nous amener \u00e0 prendre du recul vis-\u00e0-vis de ces plates-formes. Le \"principe de pr\u00e9caution\" porte ici un double nom : la curiosit\u00e9, et la compr\u00e9hension des m\u00e9canismes d'\u00e9laboration de l'information." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6993520336805711872,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6993520338269569024,urn:li:activity:6993520338269569024,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 152, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6993520338269569024,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6993520338269569024,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6993520338269569024", + "threadId": "activity:6993520338269569024", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6993520338269569024", + "urn": "urn:li:activity:6993520338269569024", + "numComments": 209, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6993520338269569024", + "reactionTypeCounts": [ + { + "count": 2689, + "reactionType": "LIKE" + }, + { + "count": 263, + "reactionType": "MAYBE" + }, + { + "count": 263, + "reactionType": "INTEREST" + }, + { + "count": 81, + "reactionType": "PRAISE" + }, + { + "count": 29, + "reactionType": "EMPATHY" + }, + { + "count": 28, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6993520338269569024", + "numLikes": 3353, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6993520338269569024", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3353, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6993154668814069760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6993154668814069760", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6993154668814069760)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6993154668814069760)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cop15-business-statement-business-for-nature-activity-6993154668814069760-VTdL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6993154668029734912", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6993154668814069760", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6993154668814069760,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6993154668814069760,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6993154668029734912", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "I9H9l+hUGLnSVw6+NYj4jA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6993154668814069760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7266540330150215141", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676301949573?e=1677240000&v=beta&t=yr0btfzB9GRui1cWVqH0tsIiQ8AKRQki9NWXqwZAraw", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676301949573?e=1677240000&v=beta&t=JhPq_dBSSq1-AUd5BOBEFq-JW-wKPr3oKxwsdYcJZNU", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676301949573?e=1677240000&v=beta&t=wPHZyn7c9dQ46oZoye1LkMQ3tbAKjpshYRzreg9oHSQ", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676301949573?e=1677240000&v=beta&t=Qqk3q2m5xPPVzJRA2LuXdupd-XvBN-DM3El4msgh2bI", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGV6kghUfml3Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7266540330150215141)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7266540330150215141)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "businessfornature.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: COP15 business statement \u2014 Business For Nature by businessfornature.org", + "actionTarget": "https://www.businessfornature.org/cop15-business-statement" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "COP15 business statement \u2014 Business For Nature" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6993154668029734912,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans moins d'une semaine d\u00e9marrera la 27\u00e8me COP (pour Convention Of the Parties : party = pays ayant ratifi\u00e9 la Convention Climat des Nations Unies) de la Convention Climat.\n\nMais une autre \"COP\" aura \u00e9galement lieu en d\u00e9cembre \u00e0 Montr\u00e9al : la 15\u00e8me de la \"Convention sur la Diversit\u00e9 Biologique\" (https://www.cbd.int/ ), \u00e9galement r\u00e9gie par les Nations Unies, et \u00e9galement sign\u00e9e en 1992 au Sommet de la Terre \u00e0 Rio (comme la Convention Climat).\n\nEn vue de cette COP, plus de 300 entit\u00e9s du monde \u00e9conomique ont demand\u00e9 aux gouvernements de rendre obligatoire, pour les entreprises \"importantes et multinationales\", et pour les institutions financi\u00e8res, l'\u00e9valuation et la publication de leurs impacts sur la biodiversit\u00e9, et d\u00e9pendances \u00e0 cette derni\u00e8re, et ce d'ici 2030.\n\nLes signataires affirment par ailleurs que :\n\n\"Nous jouons notre r\u00f4le, en prenant des mesures telles que :\u00a0\n- L'\u00e9valuation de nos impacts et de nos d\u00e9pendances vis-\u00e0-vis de la nature\u00a0\n- la divulgation de nos informations importantes sur la nature\u00a0\u00a0\n- l'engagement public d'\u00e9viter et de r\u00e9duire nos impacts n\u00e9gatifs (...)\n- la transformation de nos strat\u00e9gies et mod\u00e8les d'entreprise pour restaurer et r\u00e9g\u00e9n\u00e9rer la nature (...).\"\n\nQue penser de cette initiative ? Poudre aux yeux, ou d\u00e9but d'une r\u00e9volution ? La r\u00e9ponse est probablement exactement la m\u00eame que pour le climat : un peu de tout ca ! \n\nAu sein de 300 signatures, on trouvera quelques entreprises extr\u00eamement engag\u00e9es, capables de renoncer \u00e0 du chiffre d'affaires de mani\u00e8re tr\u00e8s significative au nom de leurs convictions, c'est \u00e0 dire capables de faire passer la biodiversit\u00e9 avant les euros. \n\nMais on trouvera aussi du cynisme absolu d'entit\u00e9s se disant qu'elles seront capables de faire illusion sans rien changer, en passant par toutes celles qui n'ont juste rien compris, et qui se disent que de toute fa\u00e7on 2030 c'est plus loin que le probable mandat du PDG en place.\n\nEt puis le Diable sera dans les d\u00e9tails. En mati\u00e8re de climat il est facile de donner le change sans modifier significativement l'activit\u00e9. Il suffit de postuler des am\u00e9liorations venues d'ailleurs dont on b\u00e9n\u00e9ficiera, de fixer des objectifs relatifs (qui se sont toujours am\u00e9lior\u00e9s pour des raisons strictement \u00e9conomiques) et non absolus, de choisir un p\u00e9rim\u00e8tre restreint qui ne couvre pas tous les liens de d\u00e9pendance ou d'impact, d'utiliser des termes sans contenu normatif (\"responsable\", \"vert\", \"durable\", etc), bref le pass\u00e9 r\u00e9cent a offert un floril\u00e8ge de possibilit\u00e9s en la mati\u00e8re.\n\nDe m\u00eame, les obligations impos\u00e9es par les \u00e9tats peuvent \u00eatre r\u00e9elles mais sans impact (et j'ai vu N fois des entreprises militer pour que ce soit le cas) : publication d'informations partielles, ou non pertinentes, ou avec des sanctions non dissuasives en cas de d\u00e9faut, etc... \n\nPour la biodiversit\u00e9 comme pour le climat, la vraie r\u00e9volution est d'accepter que les \u00e9tats diminuent d\u00e9lib\u00e9r\u00e9ment une large partie des business existants. Est-ce vraiment la volont\u00e9 des signataires de ce texte ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6993154668029734912,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6993154668814069760,urn:li:activity:6993154668814069760,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 37, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6993154668814069760,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6993154668814069760,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6993154668814069760", + "threadId": "activity:6993154668814069760", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6993154668814069760", + "urn": "urn:li:activity:6993154668814069760", + "numComments": 80, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6993154668814069760", + "reactionTypeCounts": [ + { + "count": 657, + "reactionType": "LIKE" + }, + { + "count": 60, + "reactionType": "MAYBE" + }, + { + "count": 58, + "reactionType": "INTEREST" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6993154668814069760", + "numLikes": 810, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6993154668814069760", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 811, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6992806535496105985,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6992806535496105985", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6992806535496105985)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6992806535496105985)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_bruno-le-maire-arr%C3%AAtons-de-claquer-de-largent-activity-6992806535496105985-IAGU?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6992806534669869057", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6992806535496105985", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6992806535496105985,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6992806535496105985,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6992806534669869057", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "gaXmzd177IRDG6YQdEoSfA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6992806535496105985,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7457390237058979612", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675752686642?e=1677240000&v=beta&t=c-KqaED88om1z9ZzR55f_yRTxy_P3XSXOM69n-LRZAw", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675752686643?e=1677240000&v=beta&t=y4UW4wITBKjEu_8uw8NxX49feR6xH6RlkXbMmA6YH4I", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675752686643?e=1677240000&v=beta&t=5W3aEACBN8iP7hGUZIfOlrbteF1ciFN8RiHACEFyiAw", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675752686643?e=1677240000&v=beta&t=fnixFEeQikWw4G1ehuQk3vEv_YVGL-S1CiNruNllkMY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHMnAnEICVtGg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7457390237058979612)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7457390237058979612)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "bfmtv.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Bruno Le Maire: \"Arr\u00eatons de claquer de l'argent pour les \u00e9nergies fossiles que nous ne produisons pas!\" by bfmtv.com", + "actionTarget": "https://www.bfmtv.com/economie/entreprises/energie/bruno-le-maire-arretons-de-claquer-de-l-argent-pour-les-energies-fossiles-que-nous-ne-produisons-pas_AV-202210270272.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Bruno Le Maire: \"Arr\u00eatons de claquer de l'argent pour les \u00e9nergies fossiles que nous ne produisons pas!\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6992806534669869057,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Faites ce que je dis, pas ce que je fais ! Apr\u00e8s avoir abondamment subventionn\u00e9 carburants et gaz (import\u00e9s en quasi-totalit\u00e9 puisque la France ne produit aucun gaz et 1% de son p\u00e9trole), voici que notre ministre de l'\u00e9conomie d\u00e9clare sur BFM... que ce n'est pas une bonne id\u00e9e.\n\nDe fait, cela fait tr\u00e8s longtemps que nous savons que de subventionner les combustibles fossiles a quelques petits inconv\u00e9nients :\n- cela vide les caisses de l'Etat, qui du coup ne peuvent pas \u00eatre vid\u00e9es une deuxi\u00e8me fois pour financer ce qui permettrait pr\u00e9cis\u00e9ment de nous d\u00e9carboner (voir https://lnkd.in/esiqHkbf )\n- cela maintient la d\u00e9pendance \u00e0 ces combustibles alors qu'il faut s'en passer\n- cela apauvrit le pays, en transf\u00e9rant massivement de l'argent depuis la France vers les fournisseurs de p\u00e9trole et de gaz.\n\nQuestion : pourquoi, alors, le faisons nous ? On pourrait y rajouter une autre question : pourquoi les gilets jaunes apparaissent quand le prix augmente par la fiscalit\u00e9 (avec l'argent qui reste en France), et non quand le prix de march\u00e9 augmente (avec l'argent qui quitte le pays) ?\n\nTentons quelques explications :\n\n- La promesse politique est faite sans crise. Du coup il n'y a pas de plan B pr\u00eat pour... lesdites crises, pourtant pr\u00e9visibles pour partie, plan B que l'on aurait pens\u00e9 et communiqu\u00e9 \u00e0 la population \u00e0 l'avance (le dispositif Ecowatt est un exemple, et il est possible de g\u00e9n\u00e9raliser cela \u00e0 toutes les \u00e9nergies)\n\n- les modifications structurelles d\u00e9favorables sont vues comme des crises transitoires. Du coup on enclenche un dispositif de soutien en se persuadant qu'il sera bref... donc indolore.\n\n- au moment o\u00f9 le prix de march\u00e9 augmente de mani\u00e8re \"impr\u00e9vue\" (si le march\u00e9 \u00e9tait pr\u00e9visible, ca se saurait :) ), le pouvoir d'achat baisse. Or en d\u00e9mocratie le court terme prime. L'arbitrage se fait donc de mani\u00e8re quasi-automatique en faveur de la subvention (qui r\u00e8gle le court terme) et au d\u00e9triment du reste (qui porte sur des horizons de temps plus longs), et la couleur politique n'y change pas grand chose. LFI comme le RN et LR \u00e9taient favorables \u00e0 une subvention sur le prix des carburants lors de la derni\u00e8re campagne pr\u00e9sidentielle.\n\nPour en sortir, il faut accepter que de toute fa\u00e7on l'abondance p\u00e9troli\u00e8re va diminuer (et donc aller aux formations o\u00f9 cela est expliqu\u00e9 :) ), apprendre ensuite \u00e0 faire la p\u00e9dagogie du probl\u00e8me, et enfin discuter de mani\u00e8re adulte avec une population qui peut tr\u00e8s bien comprendre que de s'organiser autrement sera imp\u00e9ratif.\n\nCeci rejoint la r\u00e9ponse \u00e0 la question de la diff\u00e9rence de r\u00e9action \u00e0 la taxe et la hausse de prix de march\u00e9 : dans le premier cas l'argent va \u00e0 une puissance publique \u00e0 qui nous ne faisons pas confiance, alors que dans le 2\u00e8me nous sommes dans la fatalit\u00e9 que nous acceptons. Peut-\u00eatre que de mettre un peu plus de fatalit\u00e9 pertinente (et un peu moins de promesses intenables) dans le discours de la puisance publique aiderait \u00e0 avancer..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6992806534669869057,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6992806535496105985,urn:li:activity:6992806535496105985,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 163, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6992806535496105985,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6992806535496105985,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6992806535496105985", + "threadId": "activity:6992806535496105985", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6992806535496105985", + "urn": "urn:li:activity:6992806535496105985", + "numComments": 248, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6992806535496105985", + "reactionTypeCounts": [ + { + "count": 3130, + "reactionType": "LIKE" + }, + { + "count": 179, + "reactionType": "INTEREST" + }, + { + "count": 179, + "reactionType": "MAYBE" + }, + { + "count": 109, + "reactionType": "PRAISE" + }, + { + "count": 27, + "reactionType": "EMPATHY" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6992806535496105985", + "numLikes": 3644, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6992806535496105985", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3690, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6992428300992143360,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6992428300992143360", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6992428300992143360)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6992428300992143360)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_hydrog%C3%A8ne-bas-carbone-quels-usages-pertinents-activity-6992428300992143360-SPBZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6992428300048474112", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6992428300992143360", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6992428300992143360,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6992428300992143360,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6992428300048474112", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "AgHh462SBRQ3WbJdTPXBFA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6992428300992143360,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7397446984893249883", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675646112132?e=1677240000&v=beta&t=Yyi1QQ811keJkxZ_j93qIIuPg2-fvpAW9Mepju4jn38", + "expiresAt": 1677240000000, + "height": 1200 + }, + { + "width": 533, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675646112133?e=1677240000&v=beta&t=Et-1WBv9XDoOmJpe2mCRR0RLXRG-bemNjahIUp5BSeg", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675646112133?e=1677240000&v=beta&t=nf425vHdnRb0DBFbEaiBEnA9pgASqfE5zISfSO7RQ-Q", + "expiresAt": 1677240000000, + "height": 240 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675646112133?e=1677240000&v=beta&t=DIp5q38Uw0qRMc6m6wuHweeaBkttTYThgN78nHsmb3k", + "expiresAt": 1677240000000, + "height": 720 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG4vivqGpg8TQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.5 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7397446984893249883)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7397446984893249883)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Hydrog\u00e8ne bas-carbone : quels usages pertinents \u00e0 moyen terme dans un monde d\u00e9carbon\u00e9 ? | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-hydrogene-bas-carbone" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Hydrog\u00e8ne bas-carbone : quels usages pertinents \u00e0 moyen terme dans un monde d\u00e9carbon\u00e9 ? | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6992428300048474112,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les uns l'\u00e9voquent comme un composant majeur de la d\u00e9carbonation, d'autres sont beaucoup plus sceptiques sur sa capacit\u00e9 \u00e0 changer massivement la donne dans les d\u00e9cennies qui viennent. De quoi s'agit-il ? Du plus petit \u00e9l\u00e9ment du monde qui nous entoure : l'hydrog\u00e8ne. \n\nQuoi qu'\u00e9tant l'\u00e9l\u00e9ment le plus abondant de l'univers et de loin, l'hydrog\u00e8ne n'existe pas \u00e0 l'\u00e9tat natif (c'est \u00e0 dire sous forme de mol\u00e9cule H2 \"pr\u00eate \u00e0 l'emploi\" que l'on pourrait trouver dans l'environnement) sur Terre, \u00e0 l'exception de quelques flux (marginaux) provenant du sous-sol.\n\nPour disposer d'hydrog\u00e8ne \"pur\", il faut donc... de l'\u00e9nergie, qui va servir \u00e0 dissocier l'hydrog\u00e8ne des autres atomes auxquels il est g\u00e9n\u00e9ralement associ\u00e9 dans des mol\u00e9cules courantes. On peut ainsi le s\u00e9parer de l'oxyg\u00e8ne dans la mol\u00e9cule d'eau - H2O - par \u00e9lectrolyse, ou le s\u00e9parer du carbone dans les hydrocarbures - de formule g\u00e9n\u00e9rale CnHp - par un proc\u00e9d\u00e9 qui s'appelle le vaporeformage, et qui consiste \u00e0 chauffer tr\u00e8s fort un m\u00e9lange d'hydrocarbures et de vapeur d'eau pour obtenir de l'hydrog\u00e8ne et du CO2.\n\nSelon l'\u00e9nergie utilis\u00e9e pour op\u00e9rer cette dissociation (de la chaleur pour le vaporeformage ou de l'\u00e9lectricit\u00e9 pour l'\u00e9lectrolyse), et selon l'usage final de cet hydrog\u00e8ne, l'affaire est potentiellement int\u00e9ressante - ou pas - pour contribuer de mani\u00e8re significative \"un jour\" \u00e0 la d\u00e9carbonation d'une partie de nos flux physiques actuels (de transport, de production, etc), ou pas.\n\nEn 57 pages, Carbone 4 vous propose un panorama des modes actuels et futurs possibles de production de l'hydrog\u00e8ne, des usages actuels et futurs possibles, des contenus carbone actuels et futurs possibles des couples (production, usage), et cela permet de hi\u00e9rarchiser les usages par ordre de pertinence (\u00e0 savoir \u00e0 la fois les plus accessibles techniquement - donc physiquement - et \u00e9vitant le plus de CO2) pour cet hydrog\u00e8ne d\u00e9carbon\u00e9 quand ce dernier sera disponible. \n\nLa publication fournit \u00e9videmment le contenu carbone de l'hydrog\u00e8ne s'il est produit avec de l'\u00e9lectricit\u00e9 toujours carbon\u00e9e, et \u00e0 ce moment il n'est pas difficile de constater que cela ne r\u00e9sout pas du tout nos probl\u00e8mes. Dire \"hydrog\u00e8ne\" ne suffit donc pas.\n\nCe sont les usages \"fixes\" qui doivent b\u00e9n\u00e9ficer des premi\u00e8res mol\u00e9cules d'hydrog\u00e8ne d\u00e9carbon\u00e9, \u00e0 savoir la production d'engrais, de m\u00e9thanol et d'acier. Dans les transports terrestres l'hydrog\u00e8ne produit par \u00e9lectrolyse est p\u00e9nalis\u00e9 par un rendement global deux fois moindre que l'usage direct de l'\u00e9lectricit\u00e9, et par une logistique complexe (qui n'est pas n\u00e9cessaire pour les usages fixes).\n\nLa conclusion que l'on est tent\u00e9 d'en tirer est donc que la puissance publique devrait fl\u00e9cher les premiers milliards inject\u00e9s dans la fili\u00e8re hydrog\u00e8ne d\u00e9carbon\u00e9 vers ces usages fixes et exclusivement ceux-ci. Incidemment c'est aussi la pr\u00e9conisation du Shift Project dans le Plan de Transformation de l'Economie Fran\u00e7aise. Toujours cette satan\u00e9e physique !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6992428300048474112,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6992428300992143360,urn:li:activity:6992428300992143360,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 183, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6992428300992143360,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6992428300992143360,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6992428300992143360", + "threadId": "activity:6992428300992143360", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6992428300992143360", + "urn": "urn:li:activity:6992428300992143360", + "numComments": 324, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6992428300992143360", + "reactionTypeCounts": [ + { + "count": 3947, + "reactionType": "LIKE" + }, + { + "count": 680, + "reactionType": "INTEREST" + }, + { + "count": 442, + "reactionType": "MAYBE" + }, + { + "count": 78, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "EMPATHY" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6992428300992143360", + "numLikes": 5190, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6992428300992143360", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5191, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "3mo \u2022 ", + "accessibilityText": "3 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6992125337887252480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6992125337887252480", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6992125337887252480)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6992125337887252480)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-interview-dans-lh%C3%A9micycle-en-septembre-activity-6992125337887252480-Nh-r?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6992125337107070976", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6992125337887252480", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6992125337887252480,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6992125337887252480,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6992125337107070976", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "ej5dSDa7aGBZMvUx2I/w8Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6992125337887252480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7220921314876754974", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675557933456?e=1677240000&v=beta&t=IpNXQkaoZgSs7SgfzbrIfoZu-92VNeZp27e9xor06zE", + "expiresAt": 1677240000000, + "height": 508 + }, + { + "width": 1184, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675557933456?e=1677240000&v=beta&t=oWy44LsTa0zyvHUL4nVVHxtb5egvFfs0cT7KlQteC3g", + "expiresAt": 1677240000000, + "height": 752 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675557933456?e=1677240000&v=beta&t=BOD6VMJadjUlwUgUq8UhLTnUA0lt6ruL1AsGcm9aMrc", + "expiresAt": 1677240000000, + "height": 102 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675557933456?e=1677240000&v=beta&t=b_3h7VBRXqrGpmletbmOLg7oBmj5Nlv2uBQzL_h9pAg", + "expiresAt": 1677240000000, + "height": 305 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHDmMCaVSvHsg/articleshare-shrink_" + }, + "displayAspectRatio": 0.635 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7220921314876754974)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7220921314876754974)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 9 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Une interview dans l'H\u00e9micycle en septembre 2022 by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/interviews/une-interview-dans-lhemicycle-en-septembre-2022/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Une interview dans l'H\u00e9micycle en septembre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6992125337107070976,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "O\u00f9 causer de politique publique concernant l'\u00e9nergie et le climat ? Une premi\u00e8re bonne r\u00e9ponse serait de dire partout o\u00f9 l'on peut, puisque, d\u00e8s que nous sommes majeurs, nous avons tous le droit de vote. Mais une deuxi\u00e8me mani\u00e8re de voir la chose est de dire que c'est particuli\u00e8rement indiqu\u00e9 dans une revue qui s'adresse \u00e0 des parlementaires, puisque ces derniers ont pr\u00e9cis\u00e9ment comme m\u00e9tier de d\u00e9cider de ce que doit faire la piussance publique.\n\nDont acte : en juillet, la revue l'H\u00e9micycle, qui comme son nom l'indique a vocation \u00e0 s'adresser avant tout au monde des \u00e9lus, est venu me proposer une interview. Sans grande surprise, il y est donc surtout question... de politique : planification, formation des \u00e9lus et fonctionnaires, pertinence de la politique publique, etc.\n\nCette interview est publi\u00e9e alors qu'un sondage suppl\u00e9mentaire sugg\u00e8re que les Europ\u00e9ens \"en voudraient plus\" en mati\u00e8re d'action contre le r\u00e9chauffement climatique : https://lnkd.in/etKph3B8 Alors, qu'attendent ceux qui entendent nous repr\u00e9senter pour passer aux actes ?\n\nSauf que... \"en vouloir plus\" est justement l\u00e0 o\u00f9 les difficult\u00e9s commencent, parce que la probabilit\u00e9 que tous les gens inquiets soient par ailleurs d'accord sur ce qu'il faut faire, dans quel ordre, et avec quelles contreparties, reste une question non investigu\u00e9e, faute de sondages qui \"entrent dans le dur\". \n\nDans celui publi\u00e9 par La Fondation Jean Jaur\u00e8s qui fonde la conclusion de l'article de France Info (https://lnkd.in/ebfheEFk ), il manque des questions qui permettraient d'en avoir le coeur net en abordant des arbitrages pas simples, comme par exemple :\n- \u00eates vous toujours d'accord pour que l'on en fasse plus pour le climat si cela signifie perdre du pouvoir d'achat \u00e0 court terme ?\n- \u00eates vous toujours d'accord pour agir si cela signifie que le nucl\u00e9aire est plus pertinent que les ENR \u00e0 terme ?\n- \u00eates vous toujours d'accord pour que l'on en fasse plus si cela signifie que certains m\u00e9tiers vont fortement diminuer ?\n- etc.\n\nCa ne veut pas dire qu'il faut uniquement d\u00e9sesp\u00e9rer Billancourt, mais il ne faut pas non plus en rester \u00e0 des questions bisounours comme \"pensez vous qu'il faille acc\u00e9l\u00e9rer dans les ENR ?\". Savoir qui est pr\u00eat \u00e0 quel effort et avec quelles contreparties aiderait beaucoup pour r\u00e9fl\u00e9chir \u00e0 des plans qui aient une chance de se r\u00e9aliser. Pour le moment nous naviguons pour partie \u00e0 l'aveugle.\n\nLa maturit\u00e9 n'est peut-\u00eatre pas encore l\u00e0 du c\u00f4t\u00e9 politique, mais il reste difficile de savoir \u00e0 quel point elle est d\u00e9j\u00e0 l\u00e0 pour une large majorit\u00e9 de la population (et alors il y a juste un probl\u00e8me de repr\u00e9sentativit\u00e9), ou bien si nous - les \u00e9lecteurs - restons aussi parfaitement incoh\u00e9rents, et nos \u00e9lus n'en sont alors que le reflet parfaitement logique. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6992125337107070976,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6992125337887252480,urn:li:activity:6992125337887252480,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6992125337887252480,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6992125337887252480,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6992125337887252480", + "threadId": "activity:6992125337887252480", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6992125337887252480", + "urn": "urn:li:activity:6992125337887252480", + "numComments": 60, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6992125337887252480", + "reactionTypeCounts": [ + { + "count": 539, + "reactionType": "LIKE" + }, + { + "count": 40, + "reactionType": "MAYBE" + }, + { + "count": 30, + "reactionType": "INTEREST" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6992125337887252480", + "numLikes": 640, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6992125337887252480", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 640, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 Edited \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6991327111152074752,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6991327111152074752", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6991327111152074752)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6991327111152074752)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nucl%C3%A9aire-top-d%C3%A9part-pour-le-d%C3%A9bat-public-activity-6991327111152074752-fnDW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6991327110355152896", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6991327111152074752", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6991327111152074752,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6991327111152074752,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6991327110355152896", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "+MXZsf0EvcIa7+YO4N7MsQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6991327111152074752,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8411703600761242127", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675425234522?e=1677240000&v=beta&t=VkBwjZPeJ1FqtWtqMvRLyrbw0BwGK-rKTc9-8CURdxI", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675425234522?e=1677240000&v=beta&t=wFfUgMe0dFl0t0FJP22PL5oQOI3aMgO_LraVz63EyFA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675425234522?e=1677240000&v=beta&t=lBq3X0EQdXMyvzpGCshJpkWHXXviV2OLkRylWGFzl08", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675425234522?e=1677240000&v=beta&t=iGhfMffwtV9THGxHlLosJjcQr5X6cV6NpgsaZb1OTSc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGcjV_KRgFAXw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8411703600761242127)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8411703600761242127)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nucl\u00e9aire : top d\u00e9part pour le d\u00e9bat public sur la relance de l'atome en France by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/nucleaire-top-depart-pour-le-debat-public-sur-la-relance-de-latome-en-france-1873202" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nucl\u00e9aire\u00a0: top d\u00e9part pour le d\u00e9bat public sur la relance de l'atome en France" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6991327110355152896,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un ancien ministre de l'industrie avait un jour dit que \"le nucl\u00e9aire civil c'est 5% des probl\u00e8mes mais 95% des discussions\". Nous voici donc repartis pour un d\u00e9bat public de plus sur le nucl\u00e9aire, alors m\u00eame que les opposants \u00e0 l'atome civil, en France, se plaignent assez souvent du \"manque de d\u00e9bats et de d\u00e9mocratie\" :).\n\nDe fait, notre pays n'a jamais fait de \"d\u00e9bat public\" limit\u00e9 au gaz (pourtant l'actualit\u00e9 le justifierait !) ou au p\u00e9trole. On peut inclure dans cette r\u00e9flexion les missions d'information et commissions d'enqu\u00eate du Parlement, qui, l\u00e0 aussi, n'ont quasiment jamais exist\u00e9 limit\u00e9es au p\u00e9trole, au charbon ou au gaz (alors qu'une commission d'enqu\u00eate sur les possibilit\u00e9s futures d'approvisionnement en p\u00e9trole sous contrainte g\u00e9ologique serait plus que pertinente) mais ont \u00e9t\u00e9 tr\u00e8s nombreuses sur le nucl\u00e9aire.\n\nQu'esp\u00e9rer de celui qui d\u00e9marre ? La seule chose qui n'en sortira pas, malheureusement, sera une meilleure information technique pour l'essentiel de la population fran\u00e7aise. Cela ne d\u00e9pend pas tant de la qualit\u00e9 des dossiers pr\u00e9sent\u00e9s par les participants \u00e0 ces d\u00e9bats organis\u00e9s par la Commission Nationale du D\u00e9bat Public - ils repr\u00e9sentent une infime partie de la population fran\u00e7aise - ou de l'organisation de ces lieux d'\u00e9change que de la mani\u00e8re dont les media et les r\u00e9seaux sociaux vulgarisent des notions complexes aupr\u00e8s du grand public.\n\nGrand public pour lequel l'adh\u00e9sion ou pas au nucl\u00e9aire d\u00e9pend avant tout d'un param\u00e8tre : le prix ! Le regain r\u00e9cent d'int\u00e9r\u00eat pour l'atome dans un certain nombre de pays n'a pas beaucoup d'autres d\u00e9terminants que l'explosion du prix du gaz, et surement pas celui du climat, qui est un contributeur \"lent\" au changement d'opinion (alors que le prix est un contributeur \"rapide\").\n\nMais voil\u00e0 : construire un r\u00e9acteur ne se fait pas en une semaine. Pour toute \u00e9nergie, entre l'envie d'en disposer et le fait d'en avoir en quantit\u00e9 significative il s'\u00e9coule des d\u00e9cennies. La p\u00e9riode \u00e0 venir va donc \u00eatre celle de toutes les frustrations pour tous les pays qui \"comptent\" sur plus de cette \u00e9nergie :\n- la Su\u00e8de (https://bit.ly/3W7VNeL ).\n- les Pays Bas (https://bit.ly/3TKam6Q )\n- la Pologne (https://bit.ly/3Fg87DY ) et plus largement en Europe de l'Est\n- le Japon (https://bit.ly/3D4B0QM )\n- sans parler de la Belgique et en Allemagne qui remettent \u00e0 plus tard la fermeture des r\u00e9acteurs existants.\n\nEn France, alors m\u00eame que l'essentiel de la population serait favorable \u00e0 la construction de nouveaux r\u00e9acteurs (https://bit.ly/3DfLNYk ), ces derniers ne peuvent sortir rapidement de terre pour remplacer un gaz et un p\u00e9trole devenus moins disponibles.\n\nIl y a au moins un sujet sur lequel les fr\u00e8res ennemis pro-nuke et pro-enr vont \u00eatre renvoy\u00e9s dos \u00e0 dos : aucun des deux camps ne peut significativement all\u00e9ger l'effort d'\u00e9conomies que l'actualit\u00e9 rend d\u00e9sormais incontournable \u00e0 court terme. Pour qu'il en soit autrement il aurait fallu s'y prendre il y a 20 ans." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6991327110355152896,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6991327111152074752,urn:li:activity:6991327111152074752,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 105, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6991327111152074752,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6991327111152074752,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6991327111152074752", + "threadId": "activity:6991327111152074752", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6991327111152074752", + "urn": "urn:li:activity:6991327111152074752", + "numComments": 190, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6991327111152074752", + "reactionTypeCounts": [ + { + "count": 1853, + "reactionType": "LIKE" + }, + { + "count": 117, + "reactionType": "MAYBE" + }, + { + "count": 113, + "reactionType": "INTEREST" + }, + { + "count": 36, + "reactionType": "PRAISE" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6991327111152074752", + "numLikes": 2145, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6991327111152074752", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2146, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6991036666123579392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6991036666123579392", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6991036666123579392)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6991036666123579392)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_plan-de-sobri%C3%A9t%C3%A9-efficacit%C3%A9-et-anti-gaspillage-activity-6991036666123579392-XJdb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6991036665293086720", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6991036666123579392", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6991036666123579392,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6991036666123579392,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6991036665293086720", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "S11K4iGjsa+SfeS4MbRsHQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6991036666123579392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8636290091737115331", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676540060490?e=1677240000&v=beta&t=gEbJfqiYgzP183XtMtyb84MO-KOPRd8bFunrYVaMPms", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676540060490?e=1677240000&v=beta&t=Ca2FeHkf53V7f0iVsCQ_4tWa6L2bDwQi1hYAAEYfxP0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676540060490?e=1677240000&v=beta&t=LZYM3E_upZv5aHrjjhRQJUAvYBsbC7p6OcyM2qxUgzU", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676540060490?e=1677240000&v=beta&t=M82Laz7_TufhOPgsW357Ef54DhELKn6mtUM7ywfPSgs", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEpSp_Ey3d_Xw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8636290091737115331)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8636290091737115331)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Plan de \u201csobri\u00e9t\u00e9\u201d : efficacit\u00e9 et anti-gaspillage ne veulent pas dire sobri\u00e9t\u00e9 | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/analyse-plan-sobriete" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Plan de \u201csobri\u00e9t\u00e9\u201d : efficacit\u00e9 et anti-gaspillage ne veulent pas dire sobri\u00e9t\u00e9 | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6991036665293086720,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Consultant un jour, consultant toujours : \u00e0 Carbone 4, nous (enfin pas moi :) ) nous sommes empar\u00e9s du plan de sobri\u00e9t\u00e9 du gouvernement fran\u00e7ais, qui vise \u00e0 faire passer la consommation d'\u00e9nergie finale du pays de 1600 \u00e0 1450 TWh (1 TWh = un milliard de kWh) en 2 ans, pour voir ce qui s'y trouvait exactement, et notamment si les mesures propos\u00e9es sont en ad\u00e9quation avec l'objectif.\n\nEn mati\u00e8re d'\u00e9conomies d'\u00e9nergie, on peut d\u00e9terminer en gros 3 cat\u00e9gories :\n- l'efficacit\u00e9 vise \u00e0 diminuer l'\u00e9nergie n\u00e9cessaire pour un acte de consommation. Tabler sur l'efficacit\u00e9 concentre l'effort sur les entreprises et ne demande pas d'efforts au consommateur (donc en d\u00e9mocratie on pr\u00e9f\u00e8re)\n- la sobri\u00e9t\u00e9 vise \u00e0 supprimer d\u00e9lib\u00e9r\u00e9ment un acte de sa consommation, pour pouvoir r\u00e9aliser des \u00e9conomies d'\u00e9nergie (ou de mat\u00e9riaux ou d'\u00e9missions). A la diff\u00e9rence de l'efficacit\u00e9 l'effort est essentiellement \u00e0 la charge des individus.\n- enfin la pauvret\u00e9 (dont il n'est pas question dans cet article de Carbone 4, puisque c'est une lecture critique d'un plan qui n'en parle pas) repr\u00e9sente la fin subie d'une consommation faute de moyens pour se la payer.\n\nLa conclusion de l'analyse de Carbone 4 est que le gouvernement appelle \"sobri\u00e9t\u00e9\" de nombreuses mesures qui ne rel\u00e8vent pas de cette cat\u00e9gorie, mais qui sont en pratique de l'efficacit\u00e9. Elles ne sont \u00e9videmment pas inutiles, mais il n'emp\u00eache que le terme employ\u00e9 n'est pas le bon.\n\nCarbone 4 a par ailleurs regard\u00e9 un catalogue de 50 propositions pr\u00e9cises faites par Negawatt (association dont l'acte de naissance \u00e9tait largement associ\u00e9 aux \u00e9conomies d'\u00e9nergie dans le b\u00e2timent) dans le b\u00e2timent et les transports, pour comparer le potentiel d'\u00e9conomies des mesures d\u00e9crites avec ce qui est propos\u00e9 par le gouvernement. Il s'av\u00e8re qu'il y a quasiment un facteur 2 entre les deux (60 TWh d'\u00e9conomies annuelles dans les propositions de Negawatt vs. 35 dans ce qui est propos\u00e9 par le gouvernement), et par ailleurs un petit doute sur la m\u00e9thode, puisque les mesures gouvernementales rel\u00e8vent surtout de l'incitation. \n\nIl est assez peu probable que nous allons r\u00e9duire l'\u00e9nergie fossile \u00e0 la vitesse demand\u00e9e par l'Accord de Paris - aid\u00e9 par l'ami Poutine :) - avec juste de l'efficacit\u00e9 des exhortations \u00e0 la population. Peut-\u00eatre que le gouvernement peut tenter un exercice in\u00e9dit : expliquer l'\u00e9quation de Kaya \u00e0 la population ? (https://lnkd.in/gAthJhJ )\n" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6991036665293086720,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6991036666123579392,urn:li:activity:6991036666123579392,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 39, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6991036666123579392,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6991036666123579392,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6991036666123579392", + "threadId": "activity:6991036666123579392", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6991036666123579392", + "urn": "urn:li:activity:6991036666123579392", + "numComments": 75, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6991036666123579392", + "reactionTypeCounts": [ + { + "count": 855, + "reactionType": "LIKE" + }, + { + "count": 98, + "reactionType": "INTEREST" + }, + { + "count": 44, + "reactionType": "MAYBE" + }, + { + "count": 30, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6991036666123579392", + "numLikes": 1046, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6991036666123579392", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1046, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6990207388993658880,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6990207388993658880", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6990207388993658880)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6990207388993658880)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-m%C3%A9thode-du-gouvernement-sur-la-planification-activity-6990207388993658880-965g?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6990207388263817216", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6990207388993658880", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6990207388993658880,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6990207388993658880,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6990207388263817216", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "/KroEYOA6XOa8wd3lsUllg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6990207388993658880,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7105203313397324722", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676279065615?e=1677240000&v=beta&t=daR51dTBwG78Up04I7M5UswNQdncKh-dCIIwDsKHEYc", + "expiresAt": 1677240000000, + "height": 448 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676279065615?e=1677240000&v=beta&t=aP0WJFkLGzUUeetQUHAHQK5EER2V717Y4YKKcufA1to", + "expiresAt": 1677240000000, + "height": 718 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676279065616?e=1677240000&v=beta&t=iWpmt3DddPn71BfvyFR28KVaEd6EKbRkfVp0fDtKK88", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676279065616?e=1677240000&v=beta&t=PUd21FxVSV022Q1yI437hTU-WHcP7d5MPrHaEACSxHA", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHbyq272nwRMg/articleshare-shrink_" + }, + "displayAspectRatio": 0.56 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "France Nation Verte : agir ; mobiliser ; acc\u00e9l\u00e9rer." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7105203313397324722)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7105203313397324722)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "gouvernement.fr \u2022 15 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La m\u00e9thode du Gouvernement sur la planification \u00e9cologique by gouvernement.fr", + "actionTarget": "https://www.gouvernement.fr/actualite/la-methode-du-gouvernement-sur-la-planification-ecologique" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La m\u00e9thode du Gouvernement sur la planification \u00e9cologique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6990207388263817216,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Vendredi dernier, notre premi\u00e8re ministre a tenu un discours sur la planification \u00e9cologique \u00e0 La Recyclerie (lieu \u00e9videmment en ad\u00e9quation avec le propos), avec un nom de code qui est d\u00e9sormais \"France Nation Verte\".\n\nLes discours politiques - et les concepts associ\u00e9s - sont toujours \u00e0 prendre avec des pincettes. Apr\u00e8s la maison qui br\u00fble de Chirac ou la plan\u00e8te qui devait devenir \"great again\" de Macron, nous avons tou(te)s pu constater que la direction d'ensemble n'avait pas fondamentalement chang\u00e9. \n\nD\u00e8s que l'on passait aux travaux pratiques, le cadre de d\u00e9cision ou d'arbitrage sur le terrain est rest\u00e9 le m\u00eame. Par exemple nous n'avons pas chang\u00e9 la m\u00e9thode permettant de d\u00e9cider ou pas de la construction d'une infrastructure routi\u00e8re, la valorisation \u00e9conomique d'une surface b\u00e2tie vs non b\u00e2tie, le classement des \u00e9tablissements d'enseignement sup\u00e9rieur en fonction du seul salaire de sortie, ou la valeur du march\u00e9 vs la planification dans les politiques publiques.\n\nUne fois que cette (grosse) pr\u00e9caution (amenant parfois \u00e0 de grosses d\u00e9ceptions) a \u00e9t\u00e9 prise, que retenir de ce discours ? \n\n-> que la planification doit se faire par fili\u00e8re ou par usage, c'est-\u00e0-dire exactement la m\u00e9thode qui a \u00e9t\u00e9 retenue dans le plan de transformation de l'\u00e9conomie fran\u00e7aise (https://lnkd.in/esiqHkbf)\n\n-> qu'il faut n\u00e9anmoins r\u00e9fl\u00e9chir de mani\u00e8re transverse\n\n-> qu'il faut impliquer les territoires, ce qui est l'objet de \"strat\u00e9gie de r\u00e9silience des territoires\" du Shift Project (https://bit.ly/3sqPBkF ). \n\n-> qu'il est question de v\u00e9hicules \u00e9lectriques, de v\u00e9los, de r\u00e9novation des b\u00e2timents, de r\u00e9industrialisation bas carbone (ce que r\u00e9clame plus ou moins le patron de France Industrie : https://bit.ly/3TsYOoz ), de recyclage, d'agriculture plus \"durable\", de formation, d'optimisation sous contrainte de m\u00e9taux ou d'espace, d'emploi, et de jeunes.\n\nA quelques d\u00e9tails pr\u00e8s (comme la croissance verte \ud83d\ude02 ) c'est du Shift Project dans le texte. Dont acte. Pour que cela devienne une r\u00e9alit\u00e9 dans les faits, il va falloir que la r\u00e9volution copernicienne descende chez les acteurs de terrain, et cela commence par un changement de l'ordre de priorit\u00e9 des crit\u00e8res pris en compte lors des d\u00e9cisions pratiques (par exemple le CO2 ou la biodiversit\u00e9 avant les euros pour une fili\u00e8re \u00e9conomique). \n\nC'est seulement \u00e0 cette condition que l'on pourra dire de ce discours qu'il annonce une r\u00e9elle inflexion. Aligner des milliards (m\u00eame quelques dizaines) en plus de l'existant qui resterait en l'\u00e9tat ne changera h\u00e9las pas grand chose. Dans tous les domaines \u00e9voqu\u00e9s et tous les minist\u00e8res, la premi\u00e8re \u00e9tape \u00e0 suivre est donc de se mettre d'accord sur la nouvelle m\u00e9thode d'arbitrage (ce qui accessoirement permettra d'\u00e9vacuer quelques chim\u00e8res technologiques qui ne seront jamais \u00e0 l'\u00e9chelle). \n\nSi cela n'est pas fait - et ca ne sera pas facile - ce discours sera un de plus sans lendemain, ce qui serait dommage. Nous n'avons plus le temps !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6990207388263817216,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6990207388993658880,urn:li:activity:6990207388993658880,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 41, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6990207388993658880,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6990207388993658880,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6990207388993658880", + "threadId": "activity:6990207388993658880", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6990207388993658880", + "urn": "urn:li:activity:6990207388993658880", + "numComments": 52, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6990207388993658880", + "reactionTypeCounts": [ + { + "count": 924, + "reactionType": "LIKE" + }, + { + "count": 61, + "reactionType": "INTEREST" + }, + { + "count": 54, + "reactionType": "PRAISE" + }, + { + "count": 33, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6990207388993658880", + "numLikes": 1088, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6990207388993658880", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1089, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 Edited \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6989884540794068993,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6989884540794068993", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6989884540794068993)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6989884540794068993)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_il-y-aura-bient%C3%B4t-un-projet-de-loi-concernant-activity-6989884540794068993-uzAK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6989884539988758528", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6989884540794068993", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6989884540794068993,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6989884540794068993,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6989884539988758528", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "RjwNr2HlwPTWVYdyNUpn8Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6989884540794068993,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHrB3qWD8dZ_g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHrB3qWD8dZ_g", + "artifacts": [ + { + "width": 1882, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1666518337423?e=1679529600&v=beta&t=g1gbjM7GciJXThCiPaWOIIKEJxtmbzmkDVWPRMiu6QY", + "expiresAt": 1679529600000, + "height": 1077 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1666518338856?e=1679529600&v=beta&t=2veu9aOEqMCeSxFzOQe1Vy0mz39Z2F2EWhZfihOJxuo", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1666518338857?e=1679529600&v=beta&t=dtuahfX5xmDZXmavFa9ebQOPrNvHEgmWpQffpfiRAh4", + "expiresAt": 1679529600000, + "height": 732 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1666518338857?e=1679529600&v=beta&t=0GpwOspvU8LI5tUa6nSqwVxOS0WD8F4m1AFpNB0RMRM", + "expiresAt": 1679529600000, + "height": 275 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1666518338857?e=1679529600&v=beta&t=OL7Ptzf5qZhMkvJj7dmJRzp4GZ8ZprJUd4sFXJUC8Ts", + "expiresAt": 1679529600000, + "height": 92 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1666518338857?e=1679529600&v=beta&t=NKFwVgNi1AvxcR-BYBLUaHVz2yGKIoKlKsF_V6pvjP0", + "expiresAt": 1679529600000, + "height": 458 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHrB3qWD8dZ_g/feedshare-shrink_" + }, + "displayAspectRatio": 0.5722635494155154 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, histogram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6989884539988758528,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y aura bient\u00f4t un projet de loi concernant les \u00e9nergies renouvelables qui va \u00eatre d\u00e9battu au Parlement. Mais au fait, que trouve-t-on dans les \u00e9nergies renouvelables dans notre pays ?\n\nLe r\u00e9flexe aujourd'hui, quand on dit \"ENR\", est de visualiser une \u00e9olienne ou un champ de panneaux solaires. Mais n'y a-t-il rien d'autre dans cette cat\u00e9gorie ? Le graphique ci-dessous (source https://lnkd.in/etxYaJTb ) donne la production par type d'\u00e9nergie en TWh depuis 1970, et l'on voit tout de suite que le photovolta\u00efque est l'une des plus petites contributions actuellement, par contre l'\u00e9olien arrive d\u00e9sormais dans le trio de t\u00eate (la consommation totale d'\u00e9nergie finale en France est de 1600 TWh, soit 1600 milliards de kWh). \n\nPar ordre d'importance d\u00e9croissante les 3 marches du podium sont occup\u00e9es par :\n- la biomasse solide, avec un tiers du total, est essentiellement compos\u00e9e de bois de feu ou de granul\u00e9s, et est essentiellement utilis\u00e9e pour le chauffage chez les particuliers (po\u00eales \u00e0 bois - inserts - chaudi\u00e8res bois)\n- l'hydro\u00e9lectricit\u00e9, avec 18% du total ENR, fournit un peu plus de 10% de la production \u00e9lectrique nationale\n- enfin l'\u00e9olien, avec 12% du total ENR en 2020, fournit un peu moins de 7% de la production \u00e9lectrique nationale.\n\nPour favoriser une ENR plut\u00f4t qu'une autre, il faut consid\u00e9rer les crit\u00e8res suivants :\n- le CO2 \u00e9vit\u00e9 par unit\u00e9 physique investie (tonne de m\u00e9tal ou de ciment, m2 occup\u00e9, etc) et la provenance de ces unit\u00e9s physiques\n- le CO2 \u00e9vit\u00e9 par euro d\u00e9pens\u00e9 (mais ce sont au vu des prix actuels qui ne seront peut-\u00eatre pas valables plus tard alors que les unit\u00e9s physiques sont plus fiables)\n- le besoin en services syst\u00e8me dans le cas de l'\u00e9lectricit\u00e9 (stockage, r\u00e9seau, ajustement en fr\u00e9quence)\n- les atteintes \u00e0 la biodiversit\u00e9 (notamment dans le cas de la biomasse ou des modes gourmands en espace)\n- le calendrier et la p\u00e9rennit\u00e9 des alternatives actuellement utilis\u00e9es.\n\nRien de tout cela n'est simple, sachant qu'\u00e0 terme il ne peut rester qu'un m\u00e9lange d'ENR (mais pas n\u00e9cessairement essentiellement \u00e9lectriques) et de nucl\u00e9aire. L'id\u00e9al serait que le d\u00e9bat national \u00e0 venir permette de converger sur les faits et sur la m\u00e9thode de tri. C'est quelque part plus important que de converger sur des mesures de court terme pour favoriser telle ou telle ENR sans s'\u00eatre clarifi\u00e9 les id\u00e9es sur le cadre global.\n" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6989884539988758528,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6989884540794068993,urn:li:activity:6989884540794068993,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 97, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6989884540794068993,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6989884540794068993,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6989884540794068993", + "threadId": "activity:6989884540794068993", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6989884540794068993", + "urn": "urn:li:activity:6989884540794068993", + "numComments": 304, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6989884540794068993", + "reactionTypeCounts": [ + { + "count": 1850, + "reactionType": "LIKE" + }, + { + "count": 252, + "reactionType": "INTEREST" + }, + { + "count": 165, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6989884540794068993", + "numLikes": 2306, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6989884540794068993", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2306, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6989512780055748608,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6989512780055748608", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6989512780055748608)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6989512780055748608)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-la-nouvelle-z%C3%A9lande-veut-taxer-les-activity-6989512780055748608-VFHu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6989512779053285376", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6989512780055748608", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6989512780055748608,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6989512780055748608,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6989512779053285376", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "ZPCyPxDfk3+ewBv+4thJdA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6989512780055748608,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8198186675844631990", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676337740633?e=1677240000&v=beta&t=9Qt8RBCiBVV5JyN2zPfQy7L0TQQod_XL5DDoKvFq3xA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676337740633?e=1677240000&v=beta&t=06-NwCslCkohKnmLCx71on6oeK0Ab0Z0wmrssBvfwNw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676337740633?e=1677240000&v=beta&t=BFXgqonQ4jQ2OHBBWhkWAGTZ2y13soZhZm7CcQAwnCk", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676337740633?e=1677240000&v=beta&t=GrzEolOrB_U_mm-8BXSDvsrW0WxMtFMe1rceO5PhoDk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF6tczFUhpYRg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8198186675844631990)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8198186675844631990)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : la Nouvelle-Z\u00e9lande veut taxer les pets de vaches by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/climat-la-nouvelle-zelande-veut-taxer-les-pets-de-vaches-1867974" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat\u00a0: la Nouvelle-Z\u00e9lande veut taxer les pets de vaches" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6989512779053285376,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il est moins souvent cit\u00e9 que le CO2, mais il compte aussi. Le m\u00e9thane - de formule CH4 - repr\u00e9sente un peu plus de 20% des \u00e9missions humaines de gaz \u00e0 effet de serre. En tonnage, les \u00e9missions mondiales sont presque 100 fois plus faibles que celles du CO2 (450 millions de tonnes contre 43 milliards pour le CO2), mais une mol\u00e9cule de m\u00e9thane est 30 fois plus efficace pour augmenter l'effet de serre sur un si\u00e8cle qu'une mol\u00e9cule de CO2.\n\nCe m\u00e9thane poss\u00e8de plusieurs sources d'origine humaine (voir graphique en commentaire), et l'une d'entre elles est les ruminants, \u00e0 cause de la fermentation qui a lieu dans le premier de leurs 4 estomacs apr\u00e8s l'oesophage : la panse.\n\nNB : le titre de l'article des Echos est techniquement inexact puisque le m\u00e9thane des ruminants ne sort pas pas le trou du c... mais par le haut :)\n\nDe ce fait, le pays des hobbits, qui compte quelques dizaines de millions de ruminants pour 5 millions d'habitants, voit le m\u00e9thane compter pour environ la moiti\u00e9 de ses \u00e9missions domestiques, alors que dans un pays comme la France, o\u00f9 pourtant nous avons 15 millions de t\u00eates de b\u00e9tail, nous sommes \u00e0 un peu moins de 15%.\n\nLa Nouvelle Z\u00e9lande a donc formul\u00e9 l'id\u00e9e de mettre une taxe carbone sur le m\u00e9thane. Evidemment cette id\u00e9e n'est pas mieux accueillie par les \u00e9leveurs que la taxe carbone par les utilisateurs de p\u00e9trole, gaz et charbon, mais elle n'est pas d\u00e9nu\u00e9e de fondement.\n\nUn des avantages de s'attaquer au m\u00e9thane est que ce gaz ne reste pas aussi longtemps que le CO2 dans l'atmosph\u00e8re. Il poss\u00e8de un \"puits\" atmosph\u00e9rique : la mol\u00e9cule de m\u00e9thane est en effet d\u00e9grad\u00e9e dans l'air m\u00eame (par des radicaux hydroxyle), ce qui n'est pas le cas du CO2, ce qui cr\u00e9e des surplus qui restent bien plus longtemps dans l'air pour ce dernier gaz.\n\nUne action forte sur les \u00e9missions de m\u00e9thane conduit donc \u00e0 une baisse assez peu de temps derri\u00e8re de sa concentration atmosph\u00e9rique, et donc de l'effet de serre suppl\u00e9mentaire du \u00e0 ce gaz.\n\nL'industrie ou les transports seront peu concern\u00e9s pour passer \u00e0 l'action : on va parler pratiques agricoles (la m\u00e9thanisation des vaches d\u00e9pend un peu de ce qu'elles mangent) et r\u00e9gimes alimentaires (moins de bovins...), gestion des d\u00e9chets (moins de d\u00e9charges ou r\u00e9cup\u00e9ration du m\u00e9thane de ces derni\u00e8res), et aussi production \u00e9lectrique, puisque la ventilation des mines de charbon - utilis\u00e9 aux 2/3 pour produire des \u00e9lectrons - \u00e9vacue du m\u00e9thane (le principal constituant du grisou), vers l'atmosph\u00e8re.\n\nDans les rizi\u00e8res, on peut faire baisser les \u00e9missions (issues de la d\u00e9composition de d\u00e9bris v\u00e9g\u00e9taux sous l'eau) avec... des canards. Ces derniers brassent l'eau (ce qui l'oxyg\u00e8ne et g\u00eane les bact\u00e9ries qui produisent le m\u00e9thane \u00e0 partir des d\u00e9bris v\u00e9g\u00e9taux) et la filtrent pour se nourrir (ce qui diminue la mati\u00e8re organique en suspension). C'est low tech mais efficace !\n\nCe m\u00e9thane \u00e9tait aussi le sujet de la chronique du matin sur RTL : https://bit.ly/3VOt0Mj (graphiques en moins, la radio ne peut pas tout)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6989512779053285376,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6989512780055748608,urn:li:activity:6989512780055748608,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 97, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6989512780055748608,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6989512780055748608,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6989512780055748608", + "threadId": "activity:6989512780055748608", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6989512780055748608", + "urn": "urn:li:activity:6989512780055748608", + "numComments": 194, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6989512780055748608", + "reactionTypeCounts": [ + { + "count": 1633, + "reactionType": "LIKE" + }, + { + "count": 255, + "reactionType": "INTEREST" + }, + { + "count": 194, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6989512780055748608", + "numLikes": 2125, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6989512780055748608", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2148, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 Edited \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6989160876008206336,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6989160876008206336", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6989160876008206336)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6989160876008206336)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_bruno-colmant-le-n%C3%A9olib%C3%A9ralisme-est-incompatible-activity-6989160876008206336-N1AD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6989160875127373824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6989160876008206336", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6989160876008206336,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6989160876008206336,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6989160875127373824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "vfkZClYpGhLmCQ+FA0iaMQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6989160876008206336,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:9175216059516600096", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676354549389?e=1677240000&v=beta&t=yV5LdYwAN256UR7eLSOS_mC3Nr5FyvgFSxiIn9tedGM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676354549389?e=1677240000&v=beta&t=wGRbXLk0r1mQa0Yh2D1uEwFseFPFzXhuRbXCtt3xwlQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676354549390?e=1677240000&v=beta&t=LLMKcm1hN2N6KK27oUapL0GHArxU-qtgL83dyXrW00k", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676354549390?e=1677240000&v=beta&t=rDRwuaW2_5SWWoBrf9KNWCEhQj0D7Zxl30dGsK7IPMM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF3uBgwcOlmfw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9175216059516600096)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9175216059516600096)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Bruno Colmant - Le n\u00e9olib\u00e9ralisme est incompatible avec l\u2019\u00e9cologie ! | LIMIT on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=l3GehCd6XC4" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\u2799 Cette cha\u00eene vit gr\u00e2ce \u00e0 vos dons ! https://linktr.ee/limit.media Nouveau \"TALK\" sur LIMIT avec Bruno Colmant, docteur en \u00e9conomie et membre de l'acad\u00e9mie royale de Belgique. 87 livres \u00e0 son actif. Comme il le dit, sa vie s'est orient\u00e9 sur 3 axes :..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Bruno Colmant - Le n\u00e9olib\u00e9ralisme est incompatible avec l\u2019\u00e9cologie ! | LIMIT" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6989160875127373824,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 185, + "length": 10, + "miniProfile": { + "firstName": "Vinz", + "lastName": "Kant\u00e9", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABnoaesBFyeDnfMQ7vVH_WdqzzSE1gZnFeI", + "occupation": "Cr\u00e9ateur, Animateur, Prod, conf\u00e9rencier chez #LIMIT #SchoolUp \ud83c\udf0d\ud83d\udc9a", + "objectUrn": "urn:li:member:434661867", + "entityUrn": "urn:li:fs_miniProfile:ACoAABnoaesBFyeDnfMQ7vVH_WdqzzSE1gZnFeI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1643988095695?e=1681948800&v=beta&t=7C2zsu2AnUIGYGJLxdwy6H0Pfz49i4bCG42UTyrDQiU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1643988095695?e=1681948800&v=beta&t=4mbItdC9wOaAB8PKJJb-Yb_-TvLU7cJhmTKvMc1TnoE", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQGwWxvh-yImnw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "vinzkante", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1652368741388?e=1681948800&v=beta&t=oBVj0OP183lIxUjW-ObsX93mvqUUhnlf8CUv9CYdkL8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1652368741388?e=1681948800&v=beta&t=QLthymcqCv14W4AiYsuUqj2QbfpGNDM6Pj43wuQjwBY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1652368741388?e=1681948800&v=beta&t=qpYGcnw-PgEP8UZgyFGsOXkDPZUoHvFO1KR2QFlKBb4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1652368741388?e=1681948800&v=beta&t=_jJyLbpMGXX6ocxEt866mRbwvojncDU-oE19Bdveik8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFVgbwuDHeE9Q/profile-displayphoto-shrink_" + } + }, + "trackingId": "iO8N/CWmQ1uBucXeQHd0nQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 221, + "length": 23, + "miniProfile": { + "firstName": "Prof. Dr. Bruno ", + "lastName": "Colmant ", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAY0OwQBNZUFXdT902dMVDMSitRPasWX9Oc", + "occupation": "Member of the Belgian Royal Academy, Ph.D. in Economy. University Professor (UCLouvain, ULB, Vlerick, ICHEC and St-Louis). President of the Belgian Finance Center. My posts are strictly own.", + "objectUrn": "urn:li:member:104086276", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAY0OwQBNZUFXdT902dMVDMSitRPasWX9Oc", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658335906908?e=1681948800&v=beta&t=RDRgsqAUcjxsmSTeTsFBSGccR_MURjTgaREfuu1Qkyw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658335906908?e=1681948800&v=beta&t=ANH2xzbGzFXwniRtnUTvVpAyukdmy1VaKhU1So6646w", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQEexz40u15vjQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "brunocolmant", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1654431601631?e=1681948800&v=beta&t=ELjjarwc-osNxGZTfHgPs6fOgPuQ6t_KiTl1FG-x3DM", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1654431601631?e=1681948800&v=beta&t=wyrTUncEjkZk7A3AULirgizosJd4Qq7VYdAKK5K0pWs", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1654431601631?e=1681948800&v=beta&t=LlbnrSRV4nTl9v6JR5471I94Q9E4rlMFK0ng2zV2fpI", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1654431601631?e=1681948800&v=beta&t=IYTUMCRjbnA4dKYR91lCzEnh388jjrhfK6_PkSSWRZ8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQF3CthzFsVYCQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "PEGLY3PRQvOWEuKgDLRkmA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Peut-on devenir un partisan de l'Etat strat\u00e8ge apr\u00e8s avoir enseign\u00e9 pendant des d\u00e9cennies que le march\u00e9 avait presque la r\u00e9ponse \u00e0 tout ? La preuve que oui dans cette nouvelle vid\u00e9o de Vinz Kant\u00e9, qui passe \u00e0 la question Prof. Dr. Bruno Colmant sur son parcours, et le changement de regard qu'il porte sur sa mati\u00e8re (l'\u00e9conomie) par rapport \u00e0 ce qui l'animait il y a quelques temps.\n\nBruno Colmant est un \u00e9conomiste belge qui a pass\u00e9 l'essentiel de sa carri\u00e8re dans des fonctions \"au service\" de l'\u00e9conomie lib\u00e9ralis\u00e9e et financiaris\u00e9e dans laquelle nous vivons aujourd'hui, qu'il s'agisse de conseiller un ministre des finances ou de diriger une institution financi\u00e8re. Il a \u00e9galement enseign\u00e9 (l'\u00e9conomie, \u00e9videmment) \u00e0 des g\u00e9n\u00e9rations d'\u00e9tudiants.\n\nD'aucuns lui reprocheront peut-\u00eatre ce pass\u00e9, mais les autres seront particuli\u00e8rement int\u00e9ress\u00e9s (c'est mon cas) par ce regard de l'int\u00e9rieur, qui permet de porter un jugement \u00e9clair\u00e9 sur les sujets \u00e9voqu\u00e9s.\n\nL'enseignement de l'\u00e9conomie tout d'abord : Bruno Colmant rappelle fort opportun\u00e9ment que, en l'esp\u00e8ce, un professeur dans cette mati\u00e8re transmet n\u00e9cessairement \u00e0 ses \u00e9l\u00e8ves des points de vue tr\u00e8s structurants m\u00eame quand en apparence il ne traite que de sujets techniques. D\u00e9crire un rouage d'un syst\u00e8me sans autre forme de commentaire c'est valider en fait la pertinence du syst\u00e8me...\n\nIl rappelle que le n\u00e9olib\u00e9ralisme a eu deux cons\u00e9quences sur le r\u00f4le de l'Etat :\n- il a raccourci ses horizons de temps puisque le r\u00f4le de la puissance publique n'est pas de planifier l'activit\u00e9 (et Colmant consid\u00e8re que ce n'est pas pertinent dans l'\u00e9poque actuelle)\n- ce dernier s'est vu confin\u00e9 au r\u00f4le de redistribution, au surplus dans un contexte o\u00f9 les acteurs priv\u00e9s cherchent syst\u00e9matiquement \u00e0 privatiser les profits et socialiser les pertes\n\nL'interview\u00e9 consid\u00e8re aussi que la pub nous manipule (ce que Patrick Le Lay - ancien patron de TF1 - avait eu au moins le courage de dire sans fard), que les gafam doivent contribuer au financement des infrastructures qu'ils utilisent en Europe. Plaider pour les imp\u00f4ts est courant pour les \"\u00e9cologistes\", mais plus rare pour un membre de l'establishment, je peux en t\u00e9moigner !\n\nL\u00e0 o\u00f9 il fait preuve d'un opinion encore plus rare dans sa cat\u00e9gorie, c'est quand il indique qu'il y a une d\u00e9connexion de plus en plus large des \u00e9lites avec ce qui se passe dans le pays (chose qui se passe probablement aussi au UK en ce moment). Il y voit un ferment d'une possible violence et je ne peux que partager cette crainte.\n\nA quand notre Bruno Colmant en France ? Ca ferait du bien au d\u00e9bat !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6989160875127373824,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6989160876008206336,urn:li:activity:6989160876008206336,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 74, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6989160876008206336,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6989160876008206336,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6989160876008206336", + "threadId": "activity:6989160876008206336", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6989160876008206336", + "urn": "urn:li:activity:6989160876008206336", + "numComments": 122, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6989160876008206336", + "reactionTypeCounts": [ + { + "count": 1689, + "reactionType": "LIKE" + }, + { + "count": 158, + "reactionType": "INTEREST" + }, + { + "count": 154, + "reactionType": "MAYBE" + }, + { + "count": 63, + "reactionType": "PRAISE" + }, + { + "count": 29, + "reactionType": "EMPATHY" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6989160876008206336", + "numLikes": 2111, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6989160876008206336", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2111, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6988815567142973441,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6988815567142973441", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6988815567142973441)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6988815567142973441)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-r%C3%A9chauffement-climatique-en-france-sannonce-activity-6988815567142973441-kH1o?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6988815566278946816", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6988815567142973441", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6988815567142973441,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6988815567142973441,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6988815566278946816", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "t+JVC46L4/jGcTKtEDrGwg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6988815567142973441,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6980049563916939849", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676476326865?e=1677240000&v=beta&t=QEs-oX5aSlavQX9nPPMbR8n3b1xO0LwytZjd9wLv6TY", + "expiresAt": 1677240000000, + "height": 383 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676476326865?e=1677240000&v=beta&t=HvkyR8hF31mPOnBz-h1q9Zv1Bsi1e-puUlh1e_ZiObQ", + "expiresAt": 1677240000000, + "height": 575 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676476326865?e=1677240000&v=beta&t=DcJf7edR8dqEbxp3t-0vFpjfItRlYyGsInTOFiqNAWk", + "expiresAt": 1677240000000, + "height": 76 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676476326865?e=1677240000&v=beta&t=fFp6cMGryTEu1lcKQupTVt43IeIGv7e8W994oOaH7rs", + "expiresAt": 1677240000000, + "height": 230 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF5Ul18MYfo2A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6980049563916939849)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6980049563916939849)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lejournal.cnrs.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le r\u00e9chauffement climatique en France s\u2019annonce pire que pr\u00e9vu by lejournal.cnrs.fr", + "actionTarget": "https://lejournal.cnrs.fr/articles/le-rechauffement-climatique-en-france-sannonce-pire-que-prevu" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le r\u00e9chauffement climatique en France s\u2019annonce pire que pr\u00e9vu" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6988815566278946816,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Journal du CNRS publie un article qui relaie une \u00e9tude qui vient d'\u00eatre effectu\u00e9e par des chercheurs appartenant \u00e0 des unit\u00e9s mixtes CNRS/M\u00e9t\u00e9o France. Ils ont recalibr\u00e9 les mod\u00e8les qui portent sur le climat futur en France avec les donn\u00e9es d'observation des derni\u00e8res d\u00e9cennies, et cette op\u00e9ration conduit \u00e0 un r\u00e9chauffement plus marqu\u00e9 \u00e0 la fin du si\u00e8cle par rapport \u00e0 ce qui \u00e9tait envisag\u00e9 jusqu'alors.\n\nAvec un sc\u00e9nario d'\u00e9mission de type \"2\u00b0C\", conduisant donc la plan\u00e8te \u00e0 se r\u00e9chauffer de... 2\u00b0C en 2100 par rapport \u00e0 1900, la temp\u00e9rature moyenne monterait de 3,8 \u00b0C en France \u00e0 cette \u00e9ch\u00e9ance, contre 3,4 dans les pr\u00e9c\u00e9dentes estimations.\n\nUne fois que l'on a dit cela, qu'en d\u00e9duire ? D'abord que l'incertitude est bien le signe d'un risque non limit\u00e9. Si il y a grande une incertitude sur le r\u00e9chauffement \u00e0 venir, quand le brouillard se dissipe on peut d\u00e9couvrir une situation moins affreuse que celle redout\u00e9e... ou bien pire.\n\nPar ailleurs la difficult\u00e9 pour savoir combien nous allons souffrir avec ce possible suppl\u00e9ment de temp\u00e9rature moyenne est de passer de ce param\u00e8tre \"primaire\" qu'est la temp\u00e9rature \u00e0 des cons\u00e9quences \"secondaires\" sur la s\u00e9cheresse des sols, la fonte des glaciers ou les temp\u00eates, et plus encore \u00e0 des cons\u00e9quences \"tertiaires\" sur les r\u00e9coltes, les for\u00eats, les infrastructures, les maladies, les migrations, les salinisations de plaines c\u00f4ti\u00e8res, ou encore les d\u00e9g\u00e2ts des infrastructures de montagne caus\u00e9s par des \u00e9boulements de terrain venant de la fonte du perg\u00e9lisol.\n\nOr, ce sont ces cons\u00e9quences \"tertiaires\" qui permettent de quantifier les d\u00e9g\u00e2ts possibles et les mesures de r\u00e9silience que nous pouvons mettre en oeuvre, ou pas, avec les horizons de temps n\u00e9cessaires pour se pr\u00e9parer... ou pour se pr\u00e9parer \u00e0 souffrir. \n\nAvoir une bonne id\u00e9e de ces cons\u00e9quences \"tertiaires\" ne demande pas que des mod\u00e8les de climat am\u00e9lior\u00e9s : il faut mettre derri\u00e8re ces derniers des mod\u00e8les hydrologiques ou glaciologiques, des mod\u00e8les de v\u00e9g\u00e9tation, des mod\u00e8les bact\u00e9riologiques ou \u00e9cosyst\u00e9miques, des mod\u00e8les \u00e9nerg\u00e9tiques, bref il faut rajouter plein de couches et d'\u00e9tapes de raisonnement, et cela explique qu'il reste presque aussi difficile de savoir \u00e0 quel moment et de quelle mani\u00e8re nous vivrons l'irr\u00e9parable avec 3,4 \u00b0C de r\u00e9chauffement en France en 2100 qu'avec 3,8 \u00b0C. \n\nEnfin, et pour finir de compliquer la chose, les cons\u00e9quences ne sont pas proportionnelles \u00e0 l'\u00e9l\u00e9vation de temp\u00e9rature. Pour les \u00e9pisodes caniculaires par exemple, la fr\u00e9quence d'apparition augmente bien plus vite que la temp\u00e9rature moyenne.\n\nLa principale conclusion que l'on peut tirer de cette analyse est juste que les ennuis seront globalement pour plus t\u00f4t et plus intenses plut\u00f4t que pour plus tard et plus facilement g\u00e9rables. Et il n'est que temps de s'occuper un peu plus s\u00e9rieusement de baisser les \u00e9missions d'une part, et surtout de se pr\u00e9parer au mieux \u00e0 un accroissement de la r\u00e9silience partout ou c'est possible d'autre part. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6988815566278946816,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6988815567142973441,urn:li:activity:6988815567142973441,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 67, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6988815567142973441,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6988815567142973441,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6988815567142973441", + "threadId": "activity:6988815567142973441", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6988815567142973441", + "urn": "urn:li:activity:6988815567142973441", + "numComments": 125, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6988815567142973441", + "reactionTypeCounts": [ + { + "count": 2264, + "reactionType": "LIKE" + }, + { + "count": 496, + "reactionType": "INTEREST" + }, + { + "count": 357, + "reactionType": "MAYBE" + }, + { + "count": 46, + "reactionType": "APPRECIATION" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6988815567142973441", + "numLikes": 3190, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6988815567142973441", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3192, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6988486458462330881,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6988486458462330881", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6988486458462330881)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6988486458462330881)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-entreprises-r%C3%A9duisent-plus-leurs-%C3%A9missions-activity-6988486458462330881-KdKF?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6988486457652879360", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6988486458462330881", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6988486458462330881,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6988486458462330881,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6988486457652879360", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "F59/4zM+lFAND3cfJXwpaw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6988486458462330881,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8735012803244115222", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675851158008?e=1677240000&v=beta&t=MCqciLOVcOfmQ7NwIgHEoFJOr_wLp8otRLZkG7b0p34", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675851158008?e=1677240000&v=beta&t=WxSgKTOJIs5r1ZQVEkvbx3GvuvaGPxTForPuxd7HoWw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675851158008?e=1677240000&v=beta&t=MRON2qnBpoi8yX5u7ZVy4s7ucN-R3UbuE5mOSiLnVeU", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675851158008?e=1677240000&v=beta&t=ypfUKuQU4Xo1-t4Jyll-tf5PPweIBSu2wAn3aLnPCpM", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGOjP_shOXHpg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8735012803244115222)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8735012803244115222)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab Les entreprises r\u00e9duisent plus leurs \u00e9missions de CO\u2082 lorsque leurs dirigeants ont \u00e9t\u00e9 expos\u00e9s \u00e0 des temp\u00e9ratures trop \u00e9lev\u00e9es \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/idees/article/2022/10/09/les-entreprises-reduisent-plus-leurs-emissions-de-co-lorsque-leurs-dirigeants-ont-ete-exposes-a-des-temperatures-trop-elevees_6145040_3232.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0Les entreprises r\u00e9duisent plus leurs \u00e9missions de CO\u2082 lorsque leurs dirigeants ont \u00e9t\u00e9 expos\u00e9s \u00e0 des temp\u00e9ratures trop \u00e9lev\u00e9es\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6988486457652879360,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "M\u00eame dot\u00e9e d'une cervelle analytique, notre esp\u00e8ce a manifestement du mal \u00e0 se d\u00e9partir de sa cervelle \"Saint Thomas\", c'est \u00e0 dire celle qui ne croit que ce qu'elle voit. Nous savons que nous agissons pr\u00e9f\u00e9rentiellement quand les ennuis sont d\u00e9j\u00e0 l\u00e0. Or, la d\u00e9rive climatique \u00e0 venir, c'est par d\u00e9finition des ennuis pas encore visibles.\n\nDans ce contexte, il est tentant de penser que le probl\u00e8me va commencer \u00e0 r\u00e9ellement nous motiver quand il sera effectivement sous notre nez. C'est ce que semble indiquer une analyse statistique effectu\u00e9e par deux chercheurs d'\u00e9coles de commerce, qui publient un papier expliquant que les dirigeants d'entreprise plus expos\u00e9s \u00e0 des vagues de chaleur sont ensuite plus d\u00e9sireux de s'attaquer \u00e0 la question climatique.\n\nCette conclusion est coh\u00e9rente avec ma modeste exp\u00e9rience de consultant. Parmi les motifs issus du \"v\u00e9cu personnel\" qui peuvent pousser cette population \u00e0 l'action, j'ai par exemple vu :\n- le dommage caus\u00e9 par des temp\u00e9ratures \u00e9lev\u00e9es ou la s\u00e9cheresse \u00e0 une parcelle de for\u00eat (voire juste \u00e0 un jardin) d\u00e9tenue par le dirigeant\n- la disparition progressive d'un glacier de montagne (car une partie des dirigeants se balade en montagne !)\n- la d\u00e9gradation d'une zone de plong\u00e9e...\n- et, dans une cat\u00e9gorie qui n'est pas celle des dommages \u00e0 la nature, mais celle de l'exp\u00e9rience personnelle, on va aussi trouver la dissension avec des enfants qui d\u00e9sapprouvent l'inaction des parents.\n\nOn pourrait se dire que c'est une bonne nouvelle : le climat commence \u00e0 se d\u00e9r\u00e9gler, les dirigeants le constatent, ils passent \u00e0 l'action, et hop on va r\u00e9gler le probl\u00e8me.\n\nSauf que dans cette logique l\u00e0 nous sommes un peu trop proches du fumeur qui d\u00e9cide d'arr\u00eater le jour o\u00f9 il a un cancer de la gorge. En effet, en mati\u00e8re de climat, le ma\u00eetre mot est l'inertie. Au moment o\u00f9 nous commencerons \u00e0 agir fortement cela ne va pas rendre les \u00e9missions nulles, mais juste les faire baisser (ou augmenter moins vite). \n\nOr, tant que les \u00e9missions ne sont pas nulles, la concentration en CO2 augmente, et \u00e0 la suite la temp\u00e9rature. Il faudra compl\u00e8tement arr\u00eater les \u00e9missions pour que la temp\u00e9rature se stabilise. Et m\u00eame \u00e0 ce moment l\u00e0, les calottes polaires vont continuer \u00e0 r\u00e9agir pendant des mill\u00e9naires, l'oc\u00e9an va continuer \u00e0 monter pendant la m\u00eame dur\u00e9e, les \u00e9cosyst\u00e8mes vont mettre des d\u00e9cennies \u00e0 des mill\u00e9naires \u00e0 se transformer (souvent pour moins bien) apr\u00e8s stabilisation du climat, etc. \n\nUne fois que les ennuis s\u00e9rieux d\u00e9marrent donc, et sauf arr\u00eat imm\u00e9diat des \u00e9missions humaines (ce qui demanderait une pand\u00e9mie pire que la peste ou une chute de com\u00e8te), la seule certitude est alors que les ennuis vont continuer d'augmenter. Plus nous voudrons faire confiance \u00e0 nos sens, plus nous prendrons de risques, paradoxalement. \n\nCette inertie plaide aussi pour que nous nous occupions de r\u00e9silience en m\u00eame temps que de baisse des \u00e9missions. Cela remettrait au gout du jour ce vieux proverbe : mieux vaut pr\u00e9venir que gu\u00e9rir." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6988486457652879360,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6988486458462330881,urn:li:activity:6988486458462330881,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 70, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6988486458462330881,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6988486458462330881,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6988486458462330881", + "threadId": "activity:6988486458462330881", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6988486458462330881", + "urn": "urn:li:activity:6988486458462330881", + "numComments": 119, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6988486458462330881", + "reactionTypeCounts": [ + { + "count": 1644, + "reactionType": "LIKE" + }, + { + "count": 143, + "reactionType": "INTEREST" + }, + { + "count": 115, + "reactionType": "MAYBE" + }, + { + "count": 24, + "reactionType": "APPRECIATION" + }, + { + "count": 24, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6988486458462330881", + "numLikes": 1961, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6988486458462330881", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1967, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6988149057248448512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6988149057248448512", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6988149057248448512)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6988149057248448512)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_%C3%A9cologie-un-fran%C3%A7ais-vit-comme-sil-avait-activity-6988149057248448512-Y2cW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6988149056606715904", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6988149057248448512", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6988149057248448512,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6988149057248448512,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6988149056606715904", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "Pi8D2zvmWmqx0E1kzipLMA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6988149057248448512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8617808053719168498", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676207347398?e=1677240000&v=beta&t=kfaskl7m0hJZz2Whw68pJxFcpYaznaAENC-ch2JLk5g", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676207347398?e=1677240000&v=beta&t=zxoXjJXh7qK9WIzUtqkciRzzfNiNdik3AFdutkMwN7Q", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676207347399?e=1677240000&v=beta&t=rlCYvShk_4r5RnN5LBA5YlEfSuAkbIXfEur8UNrF_1Y", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676207347399?e=1677240000&v=beta&t=yQiwztO9SvCqshKeg55F9l0Jk3SytXGX9EtwK09tZJQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGQbSjKFyHK7A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8617808053719168498)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8617808053719168498)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: \u00c9cologie : \"Un Fran\u00e7ais vit comme s'il avait 600 esclaves \u00e0 sa disposition\" (Jean-Marc Jancovici) on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=JyZA2YN2wIk" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Du lundi au vendredi, Philippe Vandel fait le point sur un sujet de l'actualit\u00e9 m\u00e9dia avec un invit\u00e9. Aujourd'hui, Jean-Marc Jancovici, ing\u00e9nieur, pour parler d'\u00e9cologie dans les m\u00e9dias. ABONNEZ-VOUS pour plus de vid\u00e9os : http://bit.ly/radioE1 LE..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "\u00c9cologie : \"Un Fran\u00e7ais vit comme s'il avait 600 esclaves \u00e0 sa disposition\" (Jean-Marc Jancovici)" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6988149056606715904,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce devait \u00eatre un exercice rigolo : \u00eatre invit\u00e9 sur un media pour dire du mal des media :). En fait cela s'est transform\u00e9 en interview assez classique, et il a \u00e9t\u00e9 beaucoup question du \"Monde sans Fin\". \n\nA un moment il y a quand eu un passage sur... mes passages media justement. Vandel m'a demand\u00e9 comment je faisais pour garder la t\u00eate froide, et sur le coup je n'ai pas \u00e9t\u00e9 tr\u00e8s prolixe. Mais je vais profiter de ce post pour faire quelques compl\u00e9ments.\n\nQuand j'ai fait mes d\u00e9buts dans la mouvance associative environnementale, \u00e0 la Fondation qui s'appelait alors Nicolas Hulot (d\u00e9sormais pour la Nature et l'Homme), un ancien journaliste (pas Hulot) avait dit que la presse appliquait la r\u00e8gle des 3L :\n- d'abord elle l\u00e8che (comprendre elle vous porte aux nues)\n- ensuite elle l\u00e2che (donc elle est moins supportive parce qu'elle a trouv\u00e9 ailleurs des sujets qui sont plus motivants pour elle)\n- enfin elle lynche (ce qui est une fa\u00e7on de vous remettre en selle... mais sur des bases diff\u00e9rentes !)\n\nJ'en ai gard\u00e9 l'enseignement qu'il ne faut jamais avoir une situation pour laquelle la notori\u00e9t\u00e9 m\u00e9diatique positive soit indispensable. C'est une des raisons pour lesquelles je n'ai pas envie de faire de politique, soit dit en passant : dans ce r\u00f4le l\u00e0 il est difficile de construire si la presse passe son temps \u00e0 vous allumer (\u00e0 tort ou \u00e0 raison).\n\nDu coup je t\u00e2che de rester \"\u00e0 prudente distance\" du monde m\u00e9diatique :\n- je ne donne jamais la priorit\u00e9 \u00e0 la presse par rapport \u00e0 un RV \"ordinaire\" qui serait d\u00e9j\u00e0 pris (je dois refuser n'importe quoi entre 7 et 9 sollicitations sur 10)\n- je ne prends pas n'importe quel type d'exercice ou n'importe quel th\u00e8me juste parce que l'on va me tendre un micro\n- je sais tr\u00e8s bien que ce qui fait la l\u00e9gitimit\u00e9 d'un individu au long cours c'est de piocher ses dossiers techniques, pas d'avoir des punchlines (ca c'est du bonus quand on y arrive)\n- les r\u00e9seaux sociaux ont un peu chang\u00e9 la donne puisqu'un individu peut devenir son propre media (pour le meilleur ou pour le pire !)\n- je donne la priorit\u00e9 \u00e0 ce que je pense par rapport \u00e0 ce qui peut plaire \u00e0 un media. Du coup quand on vient me chercher je n'ai pas besoin d'adapter mon discours ni de pr\u00e9parer quelque chose de particulier (par exemple j'enregistre mes chroniques sur RTL sans avoir \u00e9crit de texte, et sans m\u00eame savoir de quoi je vais parler june demi-heure avant des fois !)\n- je demande syst\u00e9matiquement \u00e0 me relire pour les interview et refuse ces derni\u00e8res si ce n'est pas possible\n- enfin quand un organe de presse me fait un coup tordu une fois je refuse les sollicitations \u00e0 suivre (parce que pers\u00e9v\u00e9rer est diabolique !)\n\nJe suppose qu'une partie de tout cela est facile \u00e0 faire pr\u00e9cis\u00e9ment parce que je n'ai aucune ambition politique au sens ordinaire du terme. Mais ca ne me coute pas !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6988149056606715904,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6988149057248448512,urn:li:activity:6988149057248448512,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 82, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6988149057248448512,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6988149057248448512,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6988149057248448512", + "threadId": "activity:6988149057248448512", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6988149057248448512", + "urn": "urn:li:activity:6988149057248448512", + "numComments": 160, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6988149057248448512", + "reactionTypeCounts": [ + { + "count": 2522, + "reactionType": "LIKE" + }, + { + "count": 198, + "reactionType": "PRAISE" + }, + { + "count": 76, + "reactionType": "EMPATHY" + }, + { + "count": 49, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "INTEREST" + }, + { + "count": 36, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6988149057248448512", + "numLikes": 2921, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6988149057248448512", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2925, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6988046869218086912,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6988046869218086912", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6988046869218086912)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6988046869218086912)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lagriculture-chinoise-au-d%C3%A9fi-du-r%C3%A9chauffement-activity-6988046869218086912-UdFE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6988046868463132673", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6988046869218086912", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6988046869218086912,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6988046869218086912,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6988046868463132673", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "1b0/8jYQw6hESEMtZGb8BQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6988046869218086912,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8669792230290266611", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675771709524?e=1677240000&v=beta&t=koouRC3vFAoCywA25CA-RVawHcOrYTLlguc2BDb1OuI", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675771709524?e=1677240000&v=beta&t=Z6eMbNsNPSl3tlzlgo_bRpkN288M6grT58ioYoHiwlE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675771709525?e=1677240000&v=beta&t=XEX_zPDZOJla7cAD5ySlkdvIdBpjT07VrV-5NpLJidA", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675771709525?e=1677240000&v=beta&t=wggqqkaYLnZIiP6sD5HHxcYg4LwywLUeRhPweC3Sl18", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF2MlHy3DX3kw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8669792230290266611)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8669792230290266611)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L\u2019agriculture chinoise au d\u00e9fi du r\u00e9chauffement climatique by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/planete/article/2022/10/17/l-agriculture-chinoise-au-defi-du-rechauffement-climatique_6146074_3244.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L\u2019agriculture chinoise au d\u00e9fi du r\u00e9chauffement climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6988046868463132673,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Comme l'Europe du Sud, les USA ou une partie de l'Am\u00e9rique du Sud, la Chine fait partie des endroits o\u00f9 il est pr\u00e9vu que les sols s'ass\u00e8chent en r\u00e9ponse au r\u00e9chauffement climatique. Il est aussi pr\u00e9vu, comme partout, que les vagues de chaleur s'intensifient. \n\nCe pays a v\u00e9cu un avant-gout de l'ensemble l'\u00e9t\u00e9 dernier, avec un d\u00e9ficit de pr\u00e9cipitation et des temp\u00e9ratures record qui ne sont malheureusement que le d\u00e9but d'un \"nouveau normal\" qui sera bien plus d\u00e9sagr\u00e9able que cela \u00e0 l'avenir.\n\nEn r\u00e9ponse, l'agriculture souffre. Jusque l\u00e0, rien de nouveau, m\u00eame si ce n'est pas plaisant. L\u00e0 o\u00f9 cela devient int\u00e9ressant, enfin si l'on peut dire, c'est dans les \u00e9l\u00e9ments contenus dans cet article du Monde qui \u00e9voque ce qui vient de se passer.\n\nLe papier rapporte les propos d'un diplomate qui dit (modulo l'adaptation de ses propos par le journaliste) : \"A court terme, il n\u2019y a pas de risque de p\u00e9nurie, car les Chinois ont des stocks qui correspondent \u00e0 environ un an de consommation, mais nous allons sans doute assister \u00e0 la fois \u00e0 une augmentation des importations et \u00e0 un productivisme agricole accru\". \n\nCette pr\u00e9sentation me semble minorer le danger. D'une part, avec une \u00e9volution de long terme, le probl\u00e8me ne se limite \u00e9videmment pas \u00e0 l'ann\u00e9e prochaine. Ensuite, pour augmenter les importations, il faut plus de zones exportatrices, or avec les \"accidents climatiques\" la tendance va plut\u00f4t \u00eatre \u00e0 l'inverse.\n\nIl faut aussi pour cela disposer de moyens de transport \u00e0 longue distance, donc de p\u00e9trole. P\u00e9trole (et gaz) qui est aussi indispensable pour \"accro\u00eetre le productivisme\". \n\nLe propos rapport\u00e9 me semble donc \u00eatre typique du point de vue qui postule que nous allons r\u00e9soudre les probl\u00e8mes du monde fini (le r\u00e9chauffement climatique et la d\u00e9pl\u00e9tion p\u00e9troli\u00e8re) avec des moyens infinis. Certes l'article se conclut par \"Une fa\u00e7on de reconna\u00eetre que, aujourd\u2019hui, la Chine n\u2019a pas de solutions pour r\u00e9soudre l\u2019ensemble des probl\u00e8mes auxquels son agriculture fait face\". \n\nIl n'emp\u00eache : nous manquons de r\u00e9flexes pour comprendre que nous allons devoir progressivement g\u00e9rer plus d'ennuis avec moins de moyens. Que les conditions locales vont souvent devenir plus d\u00e9sagr\u00e9ables alors m\u00eame que la mondialisation et les \u00e9changes vont devenir plus difficiles.\n\nEvidemment, tout cela ne va pas se produire en un an. En fait, la conjoncture actuelle est assez illustrative de la mani\u00e8re dont cela va se produire : par conjonction de \"crises\", dont certaines arriveront avec peu de pr\u00e9avis, et qui deviendront de plus en plus profondes au fil du temps. Augmenter la r\u00e9silience quand tout va mal se paiera d'une diminution de la performance quand tout va bien.\n\nLa Chine est pourtant en train de compter sur plus de performance avec la consommation de viande par personne qui augmente, puisqu'il faut plus de production v\u00e9g\u00e9tale en pareil cas. Un domaine de plus o\u00f9 ce pays, comme le n\u00f4tre, est pris dans ses contradictions !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6988046868463132673,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6988046869218086912,urn:li:activity:6988046869218086912,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 38, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6988046869218086912,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6988046869218086912,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6988046869218086912", + "threadId": "activity:6988046869218086912", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6988046869218086912", + "urn": "urn:li:activity:6988046869218086912", + "numComments": 88, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6988046869218086912", + "reactionTypeCounts": [ + { + "count": 643, + "reactionType": "LIKE" + }, + { + "count": 87, + "reactionType": "INTEREST" + }, + { + "count": 74, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6988046869218086912", + "numLikes": 820, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6988046869218086912", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 821, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6987666544478535680,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6987666544478535680", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6987666544478535680)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6987666544478535680)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_m-raymond-barre-critique-s%C3%A9v%C3%A8rement-le-rapport-activity-6987666544478535680-eWT-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6987666543513862144", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6987666544478535680", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6987666544478535680,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6987666544478535680,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6987666543513862144", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "yqlU641ShIrcGgr6FMB2LA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6987666544478535680,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7831367712753811778", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675673227696?e=1677240000&v=beta&t=1JnJ-y2kF-L8h_ag19bhpip0txu0-ELVdH4xKjzqM8A", + "expiresAt": 1677240000000, + "height": 418 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675673227696?e=1677240000&v=beta&t=XGLZCcLYdeqw1rj5eL5uyoeVyTWPAlscF4lk_RVslHY", + "expiresAt": 1677240000000, + "height": 669 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675673227697?e=1677240000&v=beta&t=cNMKed0Hwiva_JrYGKvBPNp5sAREXw2_fUbObMN2ChM", + "expiresAt": 1677240000000, + "height": 83 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675673227697?e=1677240000&v=beta&t=U0VREDZVCYuQC-5L4nH4niKZnp2tz3IeBF1PAmbVUEs", + "expiresAt": 1677240000000, + "height": 251 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHW3j-oAh1BRQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7831367712753811778)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7831367712753811778)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: M. Raymond Barre critique s\u00e9v\u00e8rement le rapport du Club de Rome by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/archives/article/1972/06/15/m-raymond-barre-critique-severement-le-rapport-du-club-de-rome_2391103_1819218.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "M. Raymond Barre critique s\u00e9v\u00e8rement le rapport du Club de Rome" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6987666543513862144,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\nIl est rest\u00e9 dans les m\u00e9moires comme Premier ministre de Giscard, et un peu comme maire de Lyon, mais \u00e0 l'\u00e9poque o\u00f9 l'article du Monde ci-dessous a \u00e9t\u00e9 \u00e9crit, il \u00e9tait Vice-pr\u00e9sident de la Commission Europ\u00e9enne (de 1967 \u00e0 1973), en charge de l'\u00e9conomie. \n\nA ce titre, il a analys\u00e9 pour le compte de la Commission le \"Rapport du Club de Rome\", c'est \u00e0 dire le travail effectu\u00e9 par les \u00e9poux Meadows (Donella en t\u00eate, on l'oublie souvent) qui portait sur les limites \u00e0 la croissance \u00e9conomique dans un monde fini : https://bit.ly/2HkwcIl . \n\nCar, on l'oublie aujourd'hui, mais ce travail (The Limits to Growth) avait occup\u00e9 une place importante dans les d\u00e9bats \u00e0 l'\u00e9poque, et de nombreuses personnalit\u00e9s ont \u00e9t\u00e9 amen\u00e9es \u00e0 se prononcer sur son contenu... en ayant lu le livre ou pas :). \n\nQu'a pens\u00e9 notre ex-professeur d'\u00e9conomie de l'exercice de dynamique des syst\u00e8mes propos\u00e9 par les universitaires du MIT ? Je n'ai pas r\u00e9ussi \u00e0 retrouver en 3 clics de souris l'analyse r\u00e9dig\u00e9e (ou endoss\u00e9e) par Raymond Barre, mais, malgr\u00e9 ma grande d\u00e9fiance pour la presse :), il est probable que l'article du Monde en donne l'esprit, \u00e0 d\u00e9faut d'en donner la lettre : \"circulez, il n'y a pas grand chose \u00e0 voir\".\n\nLa priorit\u00e9, c'est la croissance \u00e9conomique (incidemment explicitement vis\u00e9e dans le Trait\u00e9 de Lisbonne, la \"constitution\" europ\u00e9enne), et nous pourrons, en affectant judicieusement une partie de son produit, supprimer les nuisances qui y sont attach\u00e9es. En clair, la croissance verte est \u00e0 port\u00e9e de la main.\n\nPourtant, \u00e0 l'\u00e9poque, le pr\u00e9sident de la Commission, Sicco Mansholt, a \u00e9t\u00e9 convaincu par le travail des mod\u00e9lisateurs du MIT. Il a m\u00eame \u00e9crit une lettre proposant plus ou moins de faire... de la planification \u00e9cologique ! https://bit.ly/3MAV29M\n\nIl \u00e9tait alors dans les temps. Si, d\u00e8s 1972, nous avions limit\u00e9 les grandes villes (et non \u00e9tal\u00e9 et fait grossir ces derni\u00e8res), maintenu du monde \u00e0 la campagne, \u00e9vit\u00e9 de mondialiser les chaines de valeur que nous ne pouvons d\u00e9sormais plus rapatrier chez nous, \u00e9vit\u00e9 une sp\u00e9cialisation agricole excessive, etc, nous serions aujourd'hui bien mieux plac\u00e9s pour affronter les d\u00e9fis de demain.\n\nMais \"le march\u00e9\" a \u00e9t\u00e9 plus fort que lui, tout pr\u00e9sident de la Commission qu'il \u00e9tait. Et depuis, rien ou presque n'a chang\u00e9. L'immense majorit\u00e9 des \u00e9conomistes continue \u00e0 consid\u00e9rer le travail fait en 1972 comme une aimable plaisanterie qui ne r\u00e9siste pas \u00e0 une analyse un peu s\u00e9rieuse, alors que c'est l'exact inverse en pratique : ce sont les mod\u00e8les macro\u00e9conomiques qui ne r\u00e9sistent pas \u00e0 une analyse un peu s\u00e9rieuse ! Entre autres choses, dans les mod\u00e8les \u00e9conomiques la croissance n'est pas un r\u00e9sultat en sortie, c'est une hypoth\u00e8se d'entr\u00e9e (sous forme d'augmentation de la productivit\u00e9 du travail et d'augmentation de la population) qui ne d\u00e9pend que de l'envie du mod\u00e9lisateur !\n\nL'histoire enseigne que les peuples n'ont rien appris de l'histoire, disait Hegel. A voir o\u00f9 en est toujours le d\u00e9bat \u00e9conomique aujourd'hui, il a h\u00e9las raison." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6987666543513862144,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6987666544478535680,urn:li:activity:6987666544478535680,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 87, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6987666544478535680,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6987666544478535680,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6987666544478535680", + "threadId": "activity:6987666544478535680", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6987666544478535680", + "urn": "urn:li:activity:6987666544478535680", + "numComments": 184, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6987666544478535680", + "reactionTypeCounts": [ + { + "count": 1722, + "reactionType": "LIKE" + }, + { + "count": 232, + "reactionType": "INTEREST" + }, + { + "count": 196, + "reactionType": "MAYBE" + }, + { + "count": 53, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "EMPATHY" + }, + { + "count": 19, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6987666544478535680", + "numLikes": 2243, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6987666544478535680", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2245, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6987349940679122944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6987349940679122944", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6987349940679122944)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6987349940679122944)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_france-2-extrait-climaction-activity-6987349940679122944-YGNb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6987349939735379968", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6987349940679122944", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6987349940679122944,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6987349940679122944,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6987349939735379968", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "cUIprL9XWLH7LpHHtkHNGA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6987349940679122944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8036189378405018704", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676553026760?e=1677240000&v=beta&t=cwrnW2BC4mwSMQDJ4HAuT03hbC5HbOIRz68q0M9GpS8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676553026760?e=1677240000&v=beta&t=X1EIJLIdgQPX7KR8yCMW6mUDl2uhtY04wybRGi18qlU", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676553026760?e=1677240000&v=beta&t=aar0tL3q4HPLOFDZ74UNzELrTsZmHIdEwGE0EkyVKPI", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676553026760?e=1677240000&v=beta&t=LYzZNg4h67RO-kOiti_fscvKSIPkE9cqBlP1oYlNm0k", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFq_XBNC3o-Og/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8036189378405018704)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8036189378405018704)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: France 2 - Extrait ClimAction on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=PDvHFf0CW-U" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Pr\u00e9sent\u00e9e en direct par Patrice Laffont et Ga\u00ebl Leforestier Avec Sophie Davant, Jean-Pierre Coffe, Laurence de la Ferri\u00e8re, Mouss Diouf, Anne Dep\u00e9trini, St\u00e9phane Diagana, Priscilla, Maureen Dor et Jean-Marc Jancovici.\n\nDiffus\u00e9 le 2 Juillet 2003." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "France 2 - Extrait ClimAction" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6987349939735379968,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'\u00e9tait il y a presque 20 ans. France 2 avait fait une \u00e9mission \u00e0 une heure de grande \u00e9coute sur le changement climatique : le Climaction. C'\u00e9tait un m\u00e9lange de documentaire, de jeu de plateau, de My CO2 avant l'heure, et de Don't Look Up pour une partie des r\u00e9actions observ\u00e9es chez les stars invit\u00e9es. \n\nHerv\u00e9 Le Treut (dans un reportage) et votre serviteur (en plateau) avaient 20 ans de moins, mais \u00e9taient d\u00e9j\u00e0 parfaitement casse bonbon avec les \"pr\u00e9dictions d'apocalypse\" (que nous avions par ailleurs consign\u00e9es ensemble dans cet ouvrage sorti une premi\u00e8re fois en 2001 avant de repara\u00eetre dans une autre collection en 2004 : https://bit.ly/3CYT3Jm ), et je me suis rassur\u00e9 (si l'on peut dire) en \u00e9coutant le commentaire que j'avais fait sur un bulletin m\u00e9t\u00e9o imagin\u00e9 pour 2093 que j'avais trouv\u00e9 \"un peu timide\". \n\nJe pouvais : l'\u00e9t\u00e9 dernier a donn\u00e9 lieu \u00e0 des temp\u00e9ratures plus \u00e9lev\u00e9es que ce qui figurait dans ce faux bulletin m\u00e9t\u00e9o pour la fin du si\u00e8cle ! Je me rappelle aussi que cette \u00e9mission avait fait moins d'audience que le film Bimboland diffus\u00e9 sur M6 le m\u00eame jour (film que je n'ai pas vu, mais avec un titre pareil on s'en souvient), et que je m'\u00e9tais dit en cons\u00e9quence que de convaincre une chaine de faire une \u00e9mission sur le changement climatique n'\u00e9tait pas suffisant : encore fallait-il que les gens regardent.\n\nQu'est-ce qui a chang\u00e9 depuis ? En bien, le sujet du climat est devenu beaucoup plus fr\u00e9quent dans les media et les discours politiques. Des lois ont \u00e9t\u00e9 vot\u00e9es (en 2005 appara\u00eet dans la loi l'objectif de diviser par 4 les \u00e9missions fran\u00e7aises entre 1990 et 2050), un objectif politique d'\u00e9l\u00e9vation maximale de la temp\u00e9rature a \u00e9t\u00e9 fix\u00e9 en 2009 \u00e0 Copenhague (pas plus de 2\u00b0C et si possible pas plus de 1,5), des obligations de publication des \u00e9missions pour les entreprises et les collectivit\u00e9s sont apparues, le sujet commence \u00e0 \u00eatre enseign\u00e9 dans le sup\u00e9rieur scientifique (encore tr\u00e8s peu dans le secondaire et tr\u00e8s peu dans le sup\u00e9rieur non scientifique), et une partie du monde \u00e9conomique commence \u00e0 int\u00e9grer le sujet dans ses r\u00e9flexions pour l'avenir.\n\nDes associations et entreprises focalis\u00e9es sur le sujet sont apparues, dont The Shift Project, qui vient de f\u00eater l'inscription du 20.000\u00e8 shifter (qui est une shifteuse non ing\u00e9nieure, le graal !).\n\nMais (car il y a toujours un mais) nous pouvons aussi consid\u00e9rer que nous avons surtout perdu du temps :\n- la situation climatique s'est fortement d\u00e9grad\u00e9e et les \u00e9missions plan\u00e9taires ont augment\u00e9\n- nos pratiques (\u00e9conomiques, de consommation, culturelles, plans de carri\u00e8re, etc) sont toujours \"orthogonales\" aux limites plan\u00e9taires pour l'essentiel\n - beaucoup de gens confondent \"avoir beaucoup entendu parler de la question\" avec \"avoir bien compris le probl\u00e8me\"\n- le \"n'importe quoi\" a largement disparu du c\u00f4t\u00e9 de la d\u00e9finition du probl\u00e8me pour r\u00e9appara\u00eetre du c\u00f4t\u00e9 des solutions au probl\u00e8me\n\nRegarder cette archive peut aider \u00e0 avoir envie de presser le pas. Il est temps." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6987349939735379968,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6987349940679122944,urn:li:activity:6987349940679122944,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 112, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6987349940679122944,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6987349940679122944,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6987349940679122944", + "threadId": "activity:6987349940679122944", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6987349940679122944", + "urn": "urn:li:activity:6987349940679122944", + "numComments": 232, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6987349940679122944", + "reactionTypeCounts": [ + { + "count": 2853, + "reactionType": "LIKE" + }, + { + "count": 191, + "reactionType": "MAYBE" + }, + { + "count": 162, + "reactionType": "INTEREST" + }, + { + "count": 79, + "reactionType": "PRAISE" + }, + { + "count": 73, + "reactionType": "APPRECIATION" + }, + { + "count": 31, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6987349940679122944", + "numLikes": 3389, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6987349940679122944", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3395, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6986980882167259136,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6986980882167259136", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6986980882167259136)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6986980882167259136)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-raffineries-fran%C3%A7aises-ont-fait-un-peu-activity-6986980882167259136-n_M6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6986980881114497024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6986980882167259136", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6986980882167259136,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6986980882167259136,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6986980881114497024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "g6IHC2QjSwHzVyY62fN3CQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6986980882167259136,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGQgXcLloN3oQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGQgXcLloN3oQ", + "artifacts": [ + { + "width": 1487, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1665826051259?e=1679529600&v=beta&t=i-jWQ8dfsdAbjv0lAlWTQofbX3MDTDj1JdcVUVMqIZU", + "expiresAt": 1679529600000, + "height": 1152 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1665826053105?e=1679529600&v=beta&t=WUtPb81BHn7omwO5x-r9hs5YPa8S-bK-pgQ2woRspKM", + "expiresAt": 1679529600000, + "height": 15 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1665826053105?e=1679529600&v=beta&t=6QXq3HXA84L5ZRil9pgGF9TSe5FAWrRmqajwAS_LrhI", + "expiresAt": 1679529600000, + "height": 992 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1665826053105?e=1679529600&v=beta&t=Oe8q8K9U8ZZsx0YlaGHu43Han8y6156ciNNYeg7_wqs", + "expiresAt": 1679529600000, + "height": 372 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1665826053105?e=1679529600&v=beta&t=E3JZEeLFTiArSrRcukFV6hEqOKOcUpkircHWKhclkg0", + "expiresAt": 1679529600000, + "height": 124 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1665826053105?e=1679529600&v=beta&t=gPZnjltB0FVhoyLyFsO3uUzLbHgLms1MdV63-2Qd5gU", + "expiresAt": 1679529600000, + "height": 620 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGQgXcLloN3oQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.7747141896435776 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, pie chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6986980881114497024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les raffineries fran\u00e7aises ont fait un peu parler d'elles r\u00e9cemment, en contribuant \u00e0 cr\u00e9er de longues files d'automobilistes en qu\u00eate de carburant aux stations service. C'est le th\u00e8me de ma chronique du samedi matin sur RTL : https://bit.ly/3CHSH8K\n\nLe graphique ci-dessous d\u00e9compose les usages de l'or noir dans notre pays (donn\u00e9es Minist\u00e8re du d\u00e9veloppement durable). \"Usage non \u00e9nerg\u00e9tique\" d\u00e9signe tous les cas de figure o\u00f9 le p\u00e9trole sert de mati\u00e8re premi\u00e8re et non de combustible : plastique et chimie organique (qui fournit la totalit\u00e9 des secteurs industriels actuellement), bitume, lubrifiants, cires...\n\nAu sein du transport routier les v\u00e9hicules particuliers repr\u00e9sentent \u00e0 peu pr\u00e8s la moiti\u00e9 (donc un quart du total), le reste allant dans les utilitaires (un quart environ), les poids lourds (environ 20%), et enfin les deux roues (quelques %).\n\nIl est assez facile de comprendre qu'une suppression durable du p\u00e9trole ne touchera donc pas que les automobilistes : cela concernera aussi la production agricole, le fret, la production de mat\u00e9riaux de synth\u00e8se, la p\u00eache, le chauffage, les avions ou encore la marine marchande...\n\nCette chronique fut l'occasion de rappeler aux auditeurs de RTL - qui n'ont pas du en entendre parler beaucoup via la r\u00e9daction de cette radio (remarque g\u00e9n\u00e9ralisable \u00e0 l'ensemble des media) - qu'apr\u00e8s le blocage des raffineries viendra le peak oil, d\u00e9j\u00e0 \u00e0 l'oeuvre depuis 2008 dans le monde pour le p\u00e9trole conventionnel, et qui le sera tr\u00e8s bient\u00f4t - si ce n'est d\u00e9j\u00e0 le cas - en incluant p\u00e9trole de schiste et sables bitumineux. \n\nPour l'Europe, et en cons\u00e9quence, l'or noir disponible a commenc\u00e9 \u00e0 baisser de mani\u00e8re subie depuis 2007 (un an avant Lehman Brothers, et 2008 a un d\u00e9terminant \u00e9nerg\u00e9tique majeur), et cela va continuer.\n\nClimat ou pas, l'approvisionnement europ\u00e9en en p\u00e9trole sera de toute fa\u00e7on divis\u00e9 par 2 \u00e0 20 d'ici un peu moins de 30 ans. Il est urgent de s'organiser en cons\u00e9quence, dans un monde qui ne sera pas en croissance \u00e9conomique. Ca va \u00eatre aussi ca la sobri\u00e9t\u00e9.\n\nDans les transports, le p\u00e9trole qui est le plus crucial n'est en fait pas celui qui fait avancer les voitures. Les personnes ont des jambes, une langue et une cervelle, et nous pouvons tr\u00e8s vite nous organiser avec moins de voitures, en combinant covoiturage, marche et v\u00e9lo, autocars, bus et trains, et t\u00e9l\u00e9travail. Ca ferait peut-\u00eatre grincer quelques dents, mais c'est physiquement possible.\n\nDans le domaine du fret, nous ne pouvons pas diviser par 2 ou 3 la quantit\u00e9 de camions qui circule sans diminuer tr\u00e8s vite les flux de marchandises, et donc affaiblir tr\u00e8s vite l'\u00e9conomie et l'approvisionnement des villes. Aujourd'hui, sans camions (et sans bateaux), rien de ce que nous pouvons acheter au magasin ou en ligne n'est plus disponible, y compris la nourriture. \n\nD\u00e9p\u00e9troliser nos flux logistiques est donc une urgence. The Shift Project en a fait un chapitre complet sur Plan de Transformation de l'Economie Fran\u00e7aise : https://bit.ly/3T6FRI3" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6986980881114497024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6986980882167259136,urn:li:activity:6986980882167259136,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 167, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6986980882167259136,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6986980882167259136,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6986980882167259136", + "threadId": "activity:6986980882167259136", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6986980882167259136", + "urn": "urn:li:activity:6986980882167259136", + "numComments": 378, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6986980882167259136", + "reactionTypeCounts": [ + { + "count": 5102, + "reactionType": "LIKE" + }, + { + "count": 775, + "reactionType": "INTEREST" + }, + { + "count": 537, + "reactionType": "MAYBE" + }, + { + "count": 71, + "reactionType": "PRAISE" + }, + { + "count": 45, + "reactionType": "APPRECIATION" + }, + { + "count": 29, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6986980882167259136", + "numLikes": 6559, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6986980882167259136", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6560, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6986592249119678464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6986592249119678464", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6986592249119678464)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6986592249119678464)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_transition-%C3%A9cologique-le-gouvernement-lance-activity-6986592249119678464-QpS7?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6986592248259837952", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6986592249119678464", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6986592249119678464,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6986592249119678464,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6986592248259837952", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "m5ByDeUJx0qGzNdcFzCivg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6986592249119678464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9200065973329006638", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676197851120?e=1677240000&v=beta&t=rSsx2Sre7kXmDFsdq3_vE2QLaquzyCnCl-DBaXFBHwQ", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676197851121?e=1677240000&v=beta&t=sMyQRCYKEhfDjC8dEVuuMjF_i7gkIbECAE67IeTuvsY", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676197851121?e=1677240000&v=beta&t=Kv8qbI7YTdZOQHsP42RTzRjl3DxILfjdk8OVtb7ZnhI", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676197851121?e=1677240000&v=beta&t=UZLMiX_8rOZ1ZGBgTvof80gARkw4MQkbr7Weo6yhkrk", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE8CMACaFe41Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9200065973329006638)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9200065973329006638)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Transition \u00e9cologique : le gouvernement lance la formation de ses hauts fonctionnaires by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/planete/article/2022/10/12/transition-ecologique-le-gouvernement-lance-la-formation-de-ses-hauts-fonctionnaires_6145459_3244.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Transition \u00e9cologique\u00a0: le gouvernement lance la formation de ses hauts fonctionnaires" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6986592248259837952,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "On ne peut bien g\u00e9rer qu'un probl\u00e8me qui a \u00e9t\u00e9 correctement d\u00e9crit. C'\u00e9tait la trame de \"Dormez Tranquilles jusqu'en 2100 : https://bit.ly/3rYb18x ), qui partait justement d'un certain nombre de contresens fr\u00e9quents qui placent la r\u00e9flexion pour l'action dans un mauvais cadre.\n\nC'est donc une excellente nouvelle que le gouvernement ait d\u00e9cid\u00e9 de lancer un programme de formation pour ses hauts fonctionnaires. M\u00eame si ce sont les d\u00e9put\u00e9s qui votent les lois, dans notre pays l'administration centrale a \u00e9norm\u00e9ment de pouvoir. \n\nD'abord elle r\u00e9dige l'essentiel des projets de loi, sachant que par ailleurs c'est le gouvernement qui d\u00e9termine l'essentiel de l'agenda du Parlement. Elle r\u00e9dige \u00e9galement les d\u00e9crets d'application, et, le Diable \u00e9tant dans les d\u00e9tails, ces d\u00e9crets peuvent changer du tout au tout la mani\u00e8re dont s'applique une intention. \n\nCeci \u00e9tant dit, pour la formation aussi le Diable est dans les d\u00e9tails. Quel commentaire porter sur ce qui a \u00e9t\u00e9 d\u00e9voil\u00e9 hier ?\n\n-> l'intention initiale porte sur \"climat+biodiversit\u00e9+ressources\". Dans le programme il y a bien climat (Fresque + 2 tonnes) mais rien sur la biodiversit\u00e9 ni sur les ressources. \n\n-> il n'y a en particulier rien de pr\u00e9vu sur le r\u00f4le de l'\u00e9nergie - donc des machines - dans la structuration du monde moderne (occupation du territoire, structuration de l'emploi, pouvoir d'achat, temps de travail, mondialisation, etc), amplement d\u00e9taill\u00e9 dans Le Monde sans Fin ou dans cette conf\u00e9rence de rentr\u00e9e \u00e0 Sciences Po : https://lnkd.in/d7HbYKe . Or, tant que cet aspect n'est pas explicit\u00e9, on essaiera - et on \u00e9chouera en faisant monter les populismes au passage - de faire de la croissance verte (croissance verte qui est dans les sc\u00e9narios d'\u00e9mission du GIEC, m\u00eame le 1.5 \u00b0C, dans les sc\u00e9narios 2050 de l'Ademe ou dans le 2\u00b0C de l'AIE, bref partout). Incidemment il n'y a personne dans le comit\u00e9 des experts qui porte cette th\u00e9matique, ni celle sur les ressources non \u00e9nerg\u00e9tiques (m\u00e9taux notamment)\n\n-> une formation doit donner une capacit\u00e9 \u00e0 l'action. La Fresque est un formidable outil de sensibilisation, et 2 tonnes rel\u00e8ve aussi de cette cat\u00e9gorie (sensibilisation). Mais pour parler de formation il faut par exemple que le haut fonctionnaire sache comment \u00e9valuer l'impact carbone d'un d\u00e9cret ou d'un programme industriel. Il faudra donc des modules sectoriels op\u00e9rationnels (b\u00e2timent, transport, industrie\u2026) en compl\u00e9ment, et le dispositif de gouvernance annonc\u00e9 ne dit rien sur la question (ce n'est pas un jugement sur la qualit\u00e9 des individus).\n\n-> Le mode de validation des connaissances n'a pas \u00e9t\u00e9 annonc\u00e9. Pour moi il faut les \"form\u00e9s\" soient par exemple capable de r\u00e9pondre aux questions figurant \u00e0 la fin de https://bit.ly/3MtCRD2 et il faut pouvoir le v\u00e9rifier.\n\nUn premier pas donc. Il en faut toujours un ; f\u00e9licitons nous en. Mais ce n'est que le premier et il est tout aussi urgent de s'occuper des suivants !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6986592248259837952,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6986592249119678464,urn:li:activity:6986592249119678464,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 78, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6986592249119678464,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6986592249119678464,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6986592249119678464", + "threadId": "activity:6986592249119678464", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6986592249119678464", + "urn": "urn:li:activity:6986592249119678464", + "numComments": 112, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6986592249119678464", + "reactionTypeCounts": [ + { + "count": 1158, + "reactionType": "LIKE" + }, + { + "count": 65, + "reactionType": "MAYBE" + }, + { + "count": 54, + "reactionType": "PRAISE" + }, + { + "count": 41, + "reactionType": "INTEREST" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6986592249119678464", + "numLikes": 1345, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6986592249119678464", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1350, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6986335536818839552,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6986335536818839552", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6986335536818839552)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6986335536818839552)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sans-d%C3%A9tour-ausha-activity-6986335536818839552-7U0e?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6986335536290406401", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6986335536818839552", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6986335536818839552,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6986335536818839552,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6986335536290406401", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "g/ByXVHbby2us/5N8CWGKA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6986335536818839552,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8057984252877305623", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1663922028969?e=1677240000&v=beta&t=FcvKLBbCtMsUL9k8G78F-hq597Wny7UC2f2dSa2YrSs", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1663922028969?e=1677240000&v=beta&t=isPmiM-vIN8sI3mlfzOfXIIslHf6YCucxfunQg38osw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1663922028969?e=1677240000&v=beta&t=TKf3nph8h4L4k2Gdet1GomLpYnbn_jFif6PJaYaaRng", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1663922028969?e=1677240000&v=beta&t=qNldqEA-WIXleQSUYloCjm-D8DKiyPbKKhK-yAwwfTw", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG3N1wvnGslIA/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "undefined cover" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8057984252877305623)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8057984252877305623)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "podcast.ausha.co \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Sans d\u00e9tour | Ausha by podcast.ausha.co", + "actionTarget": "https://podcast.ausha.co/sans-detour" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Sans d\u00e9tour | Ausha" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6986335536290406401,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "D'aucun(e)s pourraient consid\u00e9rer qu'il s'agit aussi de formation, qui va surement (et tant mieux) devenir le 2\u00e8 mot \u00e0 la mode apr\u00e8s sobri\u00e9t\u00e9 : Carbone 4 lance son podcast. \n\nNotre mati\u00e8re \u00e9tant assez technique, il s'agira le plus souvent de vulgariser des notions ou techniques propres \u00e0 notre secteur : qu'est-ce que la neutralit\u00e9 carbone ? Que signifie la r\u00e9silience pour une entreprise ? A quoi ressemble le cadre r\u00e9glementaire de reporting pour les entreprises ? Etc.\n\nLe public vis\u00e9 ne se limite pas \u00e0 nos clients : nous acceptons volontiers les personnes qui le deviendront plus tard :). Plus s\u00e9rieusement, comme toute la connaissance - m\u00e9thodes, analyses, articles - que produit Carbone 4, ces podcasts sont en acc\u00e8s libre. Ils peuvent \u00e9videmment int\u00e9resser des \u00e9tudiant(e)s, des enseignant(e)s, des fonctionnaires, des \u00e9lus, et j'en passe.\n\nNous esp\u00e9rons que vous aurez du plaisir et de l'int\u00e9r\u00eat \u00e0 les consulter. Si vous souhaitez faire un retour, le mieux est de passer par la page contact du site Carbone 4. Bonne \u00e9coute !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6986335536290406401,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6986335536818839552,urn:li:activity:6986335536818839552,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 24, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6986335536818839552,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6986335536818839552,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6986335536818839552", + "threadId": "activity:6986335536818839552", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6986335536818839552", + "urn": "urn:li:activity:6986335536818839552", + "numComments": 35, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6986335536818839552", + "reactionTypeCounts": [ + { + "count": 978, + "reactionType": "LIKE" + }, + { + "count": 72, + "reactionType": "PRAISE" + }, + { + "count": 49, + "reactionType": "INTEREST" + }, + { + "count": 18, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6986335536818839552", + "numLikes": 1134, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6986335536818839552", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1134, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6986038321063833601,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6986038321063833601", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6986038321063833601)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6986038321063833601)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_crise-%C3%A9nerg%C3%A9tique-letat-a-d%C3%A9pens%C3%A9-100-activity-6986038321063833601-JIX9?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6986038320166277120", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6986038321063833601", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6986038321063833601,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6986038321063833601,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6986038320166277120", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "gpVR2Y8oDnLUI9Hsb5Zcfw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6986038321063833601,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7356924794425426975", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 612, + "fileIdentifyingUrlPathSegment": "800/0/1676324348898?e=1677240000&v=beta&t=SJE93Vnii0Q7DEjauN02PmcbjWujgs8v-kirc9QaBq4", + "expiresAt": 1677240000000, + "height": 306 + }, + { + "width": 612, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676324348898?e=1677240000&v=beta&t=urUIPEUOISHIaH01Iy-mw0FMwnosHE_TW9QltaU6uO4", + "expiresAt": 1677240000000, + "height": 306 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676324348898?e=1677240000&v=beta&t=lTuRpnYiE9qHqhjaTL2d4t2g1w0mvu0ThBIBPWoURoY", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676324348898?e=1677240000&v=beta&t=xCvvcl-wPGYiOJb8WLV8vlEg6Icf1bNRzEbS9V4J52g", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGLjWFkhvMh4w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le ministre de l'Economie et des Finances Bruno Le Maire." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7356924794425426975)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7356924794425426975)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "latribune.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Crise \u00e9nerg\u00e9tique : l'Etat a d\u00e9pens\u00e9 100 milliards d'euros en trois ans, indique Bruno Le Maire by latribune.fr", + "actionTarget": "https://www.latribune.fr/economie/france/crise-energetique-l-etat-a-depense-100-milliards-d-euros-en-trois-ans-indique-bruno-le-maire-936140.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Crise \u00e9nerg\u00e9tique : l'Etat a d\u00e9pens\u00e9 100 milliards d'euros en trois ans, indique Bruno Le Maire" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6986038320166277120,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "100 milliards d'euros : voil\u00e0 ce que l'Etat va devoir d\u00e9penser pour le bouclier tarifaire en 3 ans. Avec 100 milliards, qu'aurions nous pu faire pour nous passer un peu ou beaucoup de combustibles fossiles ?\n\n-> payer environ 10 millions de pompes \u00e0 chaleur air-eau, ou la moiti\u00e9 en g\u00e9othermie. Il y a en France environ 4 millions de logements chauff\u00e9s au fioul et environ 12 millions de logements chauff\u00e9s au gaz (https://bit.ly/3eoGe1l ). Nous aurions donc pu supprimer 15% du p\u00e9trole et 30% du gaz.\n\n-> r\u00e9aliser environ 1 million de km de pistes cyclables (il y a un million de km de routes en France)\n\n-> construire 6000 km de LGV ou 100.000 km de voies \"normales\" en rase campagne. Il y a actuellement 30.000 km de voies ferr\u00e9es en France\n\n- construire 8 EPR (pas \u00e0 20 milliards pi\u00e8ce ; je suppose un effet d'apprentissage :) ).\n\nEt j'en passe.\n\nMais voil\u00e0... depuis 20 ans nous avons :\n- mis toute notre \u00e9nergie dans la cr\u00e9ation d'un \"march\u00e9 de l'\u00e9lectricit\u00e9\" dont nous commen\u00e7ons seulement \u00e0 voir les cons\u00e9quences d\u00e9l\u00e9t\u00e8res (car ce n'est pas fini)\n- c\u00e9d\u00e9 \u00e0 la d\u00e9magogie en mettant les milliards dans l'affaiblissement du parc nucl\u00e9aire plut\u00f4t que dans une \u00e9lectrification qui nous aurait prot\u00e9g\u00e9s contre la d\u00e9pendance au gaz (60% du gaz sert au chauffage en France)\n- consid\u00e9r\u00e9 le v\u00e9lo comme un gadget\n- rien fait pour supprimer le fioul dans le chauffage\n- continu\u00e9 \u00e0 financer massivement de la voirie pour voitures et sous investi dans le train\n- continu\u00e9 \u00e0 mondialiser l'\u00e9conomie, et donc \u00e0 la rendre la plus d\u00e9pendante possible d'approvisionnements externes tout en nous privant de la possibilit\u00e9 de faire des plans industriels domestiques ou europ\u00e9ens\n- envoy\u00e9 les ing\u00e9nieurs faire des algorithmes de finance de march\u00e9 et des mondes num\u00e9riques virtuels au lieu de les envoyer pr\u00e9parer les infrastructures adapt\u00e9es \u00e0 des temps plus sobres\n- etc.\n\nEt quand la bise arrive, on br\u00fbles les meubles pour se chauffer tant que ca passe, mais ca ne va pas passer tr\u00e8s longtemps. Si les prix du gaz ne redescendent pas en 2023 (et pourquoi redescendraient-ils ? Poutine va-t-il rouvrir le robinet ?) nous allons \u00e0 nouveau consacrer les milliards \u00e0 traiter les sympt\u00f4mes au lieu de traiter la cause... et \u00e0 la fin on \"s'effondre\".\n\nLa seule mani\u00e8re d'en sortir est d'une part de supprimer le m\u00e9canisme de march\u00e9 europ\u00e9en sur l'\u00e9lectricit\u00e9 (ce qui est un peu plus urgent que de s'occuper des retraites), et d'autre part de planifier une d\u00e9carbonation \"physique\" massive. Ca ira n\u00e9cessairement avec moins des libert\u00e9s individuelles actuelles, mais ca nous am\u00e8nera plus de \"libert\u00e9 collective\", \u00e0 savoir un pays qui peut encore \u00e0 peu pr\u00e8s piloter son destin.\n\nEt plus on attend, plus la fen\u00eatre d'opportunit\u00e9 se referme. Accessoirement je ne sais pas si le programme de formation des hauts fonctionnaires qui a \u00e9t\u00e9 annonc\u00e9 int\u00e8gre la d\u00e9pendance de l'\u00e9conomie \u00e0 l'\u00e9nergie. Si non, on rate l'essentiel et ils essaieront de faire de la croissance verte." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6986038320166277120,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6986038321063833601,urn:li:activity:6986038321063833601,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 484, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6986038321063833601,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6986038321063833601,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6986038321063833601", + "threadId": "activity:6986038321063833601", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6986038321063833601", + "urn": "urn:li:activity:6986038321063833601", + "numComments": 776, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6986038321063833601", + "reactionTypeCounts": [ + { + "count": 13268, + "reactionType": "LIKE" + }, + { + "count": 1253, + "reactionType": "INTEREST" + }, + { + "count": 1251, + "reactionType": "PRAISE" + }, + { + "count": 659, + "reactionType": "MAYBE" + }, + { + "count": 195, + "reactionType": "APPRECIATION" + }, + { + "count": 126, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6986038321063833601", + "numLikes": 16752, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6986038321063833601", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 16770, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6985496999382892544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6985496999382892544", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6985496999382892544)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6985496999382892544)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_espace-laustralie-veut-faire-pousser-des-activity-6985496999382892544-EjmE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6985496998669860865", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6985496999382892544", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6985496999382892544,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6985496999382892544,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6985496998669860865", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "ZdVihbXeTM4sCFqFN4viBA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6985496999382892544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8481752203225554445", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676360490777?e=1677240000&v=beta&t=hcd96DL20UVGsS3eqzSIl85GDW4OuqeVY5qtfx07noE", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676360490777?e=1677240000&v=beta&t=2KlETiI-BgigkHyes0-_tLSlHR2hIyVcvk8rizIokyg", + "expiresAt": 1677240000000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676360490777?e=1677240000&v=beta&t=ND_jjpTEQ35WQHrEjmQNVHTnn-dyi2Ls-5Qb3pqfOh4", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676360490777?e=1677240000&v=beta&t=TAwZbnLcsaEBFXPzaDaicMJr88Ir6d6kY_iqQuQoyh0", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHIxXKO8EbnnA/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Une vue de la Lune depuis Eindhoven (Pays-Bas), le 20 f\u00e9vrier 2019." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8481752203225554445)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8481752203225554445)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "francetvinfo.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Espace : l'Australie veut faire pousser des plantes sur la Lune d'ici 2025 by francetvinfo.fr", + "actionTarget": "https://www.francetvinfo.fr/sciences/espace/espace-l-australie-veut-faire-pousser-des-plantes-sur-la-lune-d-ici-2025_5403760.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Espace : l'Australie veut faire pousser des plantes sur la Lune d'ici 2025" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6985496998669860865,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ici on propose de produire de l'\u00e9nergie solaire depuis l'espace : https://bit.ly/3RPycfx. L\u00e0, de faire pousser des plantes sur la lune. Encore ailleurs, d'aller chercher sur les ast\u00e9ro\u00efdes les m\u00e9taux qui ne se trouveront plus dans nos mines \u00e9puis\u00e9es (selon l'Agence Internationale de l'Energie, les mines de cuivre actuellement en production ou en projet passeront leur pic de production dans les ann\u00e9es \u00e0 venir : https://bit.ly/3CmpYGk ).\n\nSi nous transformons notre \"bonne vieille terre\" en espace hostile et appauvri, pourrons nous trouver le salut au-del\u00e0 de la stratosph\u00e8re ? Avant de reprendre joyeusement les communiqu\u00e9s de presse qui pourraient le laisser penser, je propose aux media le petit calcul suivant.\n\nLa mission Apollo, qui a envoy\u00e9 quelques fus\u00e9es sur la Lune, en a ramen\u00e9 environ 400 kg de roches (https://lnkd.in/emcFGgte ) pour un cout d'environ 250 milliards de dollars actuels (https://bit.ly/3ejDbaW ). Cela met donc la tonne ramen\u00e9e de l'espace \u00e0 plus de 500 milliards de dollars, contre quelques centaines de dollars pour une tonne de minerai extraite sur terre. M\u00eame si l'argent n'est qu'une convention, on comprend facilement que la d\u00e9pense \u00e9nerg\u00e9tique associ\u00e9e \u00e0 ce \"minage de l'espace\" sera des millions de fois sup\u00e9rieure \u00e0 ce qu'elle sera sur terre...\n\nDans le m\u00eame ordre d'id\u00e9es, la station solaire en orbite aurait la puissance d'un r\u00e9acteur nucl\u00e9aire pour un cout qui sera fatalement bien plus \u00e9lev\u00e9, et il va se passer du temps avant que la Lune nous fournisse les 2 milliards de tonnes de r\u00e9coltes que repr\u00e9sentent bl\u00e9, ma\u00efs, soja et riz, sans parler du bois, des fibres textiles, des l\u00e9gumes et des poulets.\n\nFaire le buzz, c'est bien. Ne pas pousser indirectement (car c'est ca l'effet) des gouvernements et des investisseurs qui ignorent trop souvent la r\u00e8gle de trois \u00e0 confondre un conte de f\u00e9es avec une vraie solution, ca serait mieux. Peut-on esp\u00e9rer de la presse que ce genre d'information soit syst\u00e9matiquement accompagn\u00e9e d'un calcul d'ordre de grandeur ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6985496998669860865,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6985496999382892544,urn:li:activity:6985496999382892544,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 195, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6985496999382892544,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6985496999382892544,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6985496999382892544", + "threadId": "activity:6985496999382892544", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6985496999382892544", + "urn": "urn:li:activity:6985496999382892544", + "numComments": 308, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6985496999382892544", + "reactionTypeCounts": [ + { + "count": 3001, + "reactionType": "LIKE" + }, + { + "count": 308, + "reactionType": "PRAISE" + }, + { + "count": 214, + "reactionType": "INTEREST" + }, + { + "count": 79, + "reactionType": "MAYBE" + }, + { + "count": 53, + "reactionType": "APPRECIATION" + }, + { + "count": 26, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6985496999382892544", + "numLikes": 3681, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6985496999382892544", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3742, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6985159266068242432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6985159266068242432", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6985159266068242432)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6985159266068242432)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-d%C3%A9cision-de-lopep-de-baisser-sa-production-activity-6985159266068242432-k8Lm?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6985159265250373632", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6985159266068242432", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6985159266068242432,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6985159266068242432,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6985159265250373632", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "p0ltkgGJalS8UdjmN/R+PA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6985159266068242432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8898992385489831427", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676286129898?e=1677240000&v=beta&t=skBRoDGywDl4F9xgVtV1tZp5d1puHDlV4D4WSkGj6PI", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676286129898?e=1677240000&v=beta&t=fciWLglH05Akb9ioT373QyaikOF7psRO3e2mjn4ay2A", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676286129898?e=1677240000&v=beta&t=gzqGG8G_TysK63bjkbzh9A-a3B6XNPR4mVMY1ZIkz48", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676286129898?e=1677240000&v=beta&t=F7FxdRDpaaqyWDOCRQrj-jXV54DvPCntUv5uPOD516Y", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEnNSwV0LXtiw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8898992385489831427)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8898992385489831427)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La d\u00e9cision de l'Opep+ de baisser sa production fait planer de nouvelles menaces sur les march\u00e9s by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/petrole-les-pays-de-lopep-decident-de-reduire-drastiquement-leur-production-1866611" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La d\u00e9cision de l'Opep+ de baisser sa production fait planer de nouvelles menaces sur les march\u00e9s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6985159265250373632,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La production mensuelle de p\u00e9trole est pass\u00e9e par un maximum historique d'un peu plus de 84 millions de barils par jour en novembre 2018 (https://bit.ly/3MkWRro ). Alors qu'en juin dernier elle \u00e9tait de 79 millions de barils par jour seulement, les pays de \"l'OPEP +\" (donc l'OPEP et la Russie) ont n\u00e9anmoins d\u00e9cid\u00e9 de baisser leur production (qui ne concerne pas l'ensemble du monde mais une large partie) de 2 millions de barils par jour (ce qui est \u00e9norme). \n\nQuestion \u00e0 1 million de barils : o\u00f9 est la poule et o\u00f9 est l'oeuf ? Dit autrement, ce cartel de producteurs d\u00e9cide de baisser parce que la demande n'est pas l\u00e0, ou bien il habille d'une couleur volontaire une baisse subie qui est de toute fa\u00e7on inscrite dans la g\u00e9ologie ?\n\nLa question se pose notamment pour la Russie : \u00e0 cause de la guerre en Ukraine, les op\u00e9rateurs \u00e9trangers sont partis, et avec eux des technologies permettant une meilleure r\u00e9cup\u00e9ration du p\u00e9trole. La soci\u00e9t\u00e9 Rystad Energy consid\u00e8re ainsi que la Russie va voir sa production baisser fatalement de plusieurs millions de barils par jour (elle \u00e9tait \u00e0 10) \u00e0 cause de ces d\u00e9parts. \n\nComme par ailleurs la Russie \u00e9tait \u00e0 son pic de production avant le d\u00e9clenchement de la guerre, cette baisse ne sera pas r\u00e9cup\u00e9rable (toujours selon Rystad). Et par ailleurs avant m\u00eame cette annonce l'OPEP + n'avait pas r\u00e9ussi \u00e0 mettre en oeuvre les augmentations de production d\u00e9cid\u00e9es (la production physique restait en dessous).\n\nIl est donc possible que nous d\u00e9marrions une p\u00e9riode o\u00f9 les annonces de l'OPEP plus seront plus une r\u00e9action \u00e0 l'impossibilit\u00e9 physique de produire qu'une adaptation \u00e0 une demande en baisse...\n\nPour le moment c'est une gr\u00e8ve dans les raffineries qui engendre une difficult\u00e9 d'approvisionnement en carburants dans le pays (https://bit.ly/3Cm29hR ). Mais cet \u00e9pisode doit nous faire toucher du doigt ce qui se passera de mani\u00e8re structurelle bien avant que je ne passe de vie \u00e0 tr\u00e9pas. Esp\u00e9rons qu'il ait au moins cette vertu !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6985159265250373632,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6985159266068242432,urn:li:activity:6985159266068242432,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6985159266068242432,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6985159266068242432,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6985159266068242432", + "threadId": "activity:6985159266068242432", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6985159266068242432", + "urn": "urn:li:activity:6985159266068242432", + "numComments": 128, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6985159266068242432", + "reactionTypeCounts": [ + { + "count": 1206, + "reactionType": "LIKE" + }, + { + "count": 183, + "reactionType": "INTEREST" + }, + { + "count": 177, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6985159266068242432", + "numLikes": 1587, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6985159266068242432", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1590, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 Edited \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6984818845613973504,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6984818845613973504", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6984818845613973504)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6984818845613973504)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_%C3%A9nergie-et-climat-comprendre-et-agir-activity-6984818845613973504-m4N2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6984818845056147456", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6984818845613973504", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6984818845613973504,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6984818845613973504,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6984818845056147456", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "qNwdi9a0vissZJo7PKk2bw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6984818845613973504,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8223321616786051738", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 480, + "fileIdentifyingUrlPathSegment": "800/0/1676151300273?e=1677240000&v=beta&t=LWsw7vh0iuWFaK4BC_d4r5eaJYPf1I16sElHrpn_mB4", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676151300273?e=1677240000&v=beta&t=QApcJs-ZdGmhwpoI-GgdLLnVHVgjRCehnvr3bm4fgmc", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676151300273?e=1677240000&v=beta&t=yLy5UrRY33VEzMVbDNNkQprxTDauh0O-EA7TLD20Y2g", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676151300274?e=1677240000&v=beta&t=Gr5eTRbphbUcbt-bNIyZ5FLly562I8FHryhxM3iPdFw", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFhauCTrZ70SA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8223321616786051738)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8223321616786051738)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: \u00c9nergie et climat : comprendre et agir - Rencontre Coop\u00e9rative Ile-de-France - 29 septembre 2022 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=OVxFwBx_gws" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "\u00c9nergie et climat : comprendre et agir - Rencontre Coop\u00e9rative Ile-de-France - 29 septembre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6984818845056147456,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s Ast\u00e9rix chez les Bretons ou Tintin chez les soviets, voici Janco chez les banquiers. Il m'est d\u00e9j\u00e0 arriv\u00e9 de mettre en ligne des vid\u00e9os d'interventions dans le monde bancaire ou financier, mais souvent il s'agissait de conf\u00e9rences \"classiques\", avec les non moins classiques planches du consultant (si un jour Powerpoint n'est plus disponible, je pense que la totalit\u00e9 des consultants au monde fait faillite :) ), comme par exemple https://lnkd.in/dwg-hXi\n\nL\u00e0 l'exercice \u00e9tait non seulement sans planches, mais consistait uniquement \u00e0 r\u00e9pondre \u00e0 des questions. Pour certaines j'avais le droit de d\u00e9velopper, et pour d'autres il fallait tenir dans un format \"interview \u00e0 la radio\" (donc r\u00e9ponses de moins d'une minute). Les questions \u00e9taient pos\u00e9es pour l'essentiel par une personne du Cr\u00e9dit Coop\u00e9ratif (qui organisait la manifestation), et aussi par l'assistance (qui \u00e9tait constitu\u00e9e de clients du Cr\u00e9dit Coop\u00e9ratif et de repr\u00e9sentants de l'ESS pour faire court) \u00e0 la fin de l'enregistrement.\n\nDans cette vid\u00e9o de l'ensemble de l'\u00e9v\u00e9nement, ma partie d\u00e9marre \u00e0 13 minutes du d\u00e9but (et se termine quand elle se termine :) ).\n\nJe ne me souviens \u00e9videmment pas de l'ensemble des questions pos\u00e9es, mais, de m\u00e9moire, il y avait du classique et de temps en temps du moins classique. D'accord ou pas avec les r\u00e9ponses, j'esp\u00e8re que celles et ceux qui s'y risqueront y trouveront au moins une id\u00e9e, conclusion ou question qu'elles et ils n'avaient pas au d\u00e9but du visionnage (en tr\u00e8s basse d\u00e9f ca suffit), car c'est bien \u00e0 ca que ca doit servir !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6984818845056147456,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6984818845613973504,urn:li:activity:6984818845613973504,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 21, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6984818845613973504,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6984818845613973504,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6984818845613973504", + "threadId": "activity:6984818845613973504", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6984818845613973504", + "urn": "urn:li:activity:6984818845613973504", + "numComments": 74, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6984818845613973504", + "reactionTypeCounts": [ + { + "count": 452, + "reactionType": "LIKE" + }, + { + "count": 32, + "reactionType": "INTEREST" + }, + { + "count": 23, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6984818845613973504", + "numLikes": 528, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6984818845613973504", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 532, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6984538271162728448,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6984538271162728448", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6984538271162728448)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6984538271162728448)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cest-notre-plan%C3%A8te-081022-activity-6984538271162728448-V7GY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6984538270470709248", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6984538271162728448", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6984538271162728448,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6984538271162728448,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6984538270470709248", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "NnlyC+0SbPDKS+Zg3121UA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6984538271162728448,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8090920464732896471", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676349539083?e=1677240000&v=beta&t=VV6xB9MNbU5BCHIn9EYY3HSZF-xptDDaqyuoLZmlTag", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676349539083?e=1677240000&v=beta&t=H-O9jWKDur_12XNmm2ZCVF4umrR1kOlk3JGWAy23fi4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676349539083?e=1677240000&v=beta&t=0yEviHXnEGNXIvBQOfo_JzNf2dBbM5h1iL7gcNeGQW8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676349539083?e=1677240000&v=beta&t=jS_djdBYqYHFwGycdQ3vqfZH8cAdkPdNObupTIOyxzI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGmcpaTZkU8RQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8090920464732896471)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8090920464732896471)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: C'est notre plan\u00e8te (08/10/22) by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900193306-c-est-notre-planete-08-10-22" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "C'est notre plan\u00e8te (08/10/22)" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6984538270470709248,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Fesse de Bouc a chang\u00e9 de nom pour d\u00e9sormais s'appeler Meta. A nous la \"r\u00e9alit\u00e9 immersive\" et les \"mondes virtuels\" ! Et \u00e0 Meta le produit (\u00e9conomique) de notre envie de nous \u00e9vader du monde tel qu'il est pour nous en inventer un bien mieux, parce qu'il faudra au passage acqu\u00e9rir quelques babioles (masque de r\u00e9alit\u00e9 virtuelle, par exemple) disponibles contre esp\u00e8ces sonnantes et tr\u00e9buchantes : https://www.meta.com/fr/\n\nAlors que le digital repr\u00e9sente d\u00e9j\u00e0 4% \u00e0 5% de l'empreinte carbone mondiale, faut-il consacrer des ressources suppl\u00e9mentaires \u00e0 pouvoir acheter un terrain virtuel pour y construire un h\u00f4tel virtuel et y utiliser du Monsieur Propre virtuel ? (toutes ces choses existent d\u00e9j\u00e0...).\n\nUn ordinateur demande 40 \u00e0 50 \u00e9l\u00e9ments diff\u00e9rents (comme une \u00e9olienne incidemment). Ces \u00e9l\u00e9ments sont en quantit\u00e9 finie. Le digital consomme de l'\u00e9lectricit\u00e9. Cette derni\u00e8re est fossile \u00e0 60%. Plus on fera de metaverse et plus on mettra de CO2 dans l'air d'une part, et plus on perdra d\u00e9finitivement de m\u00e9taux et d'autres \u00e9l\u00e9ments pour payer nos imp\u00f4ts, nous inscrire \u00e0 l'\u00e9cole ou appeler les pompiers. \n\nEn effet, la soci\u00e9t\u00e9 moderne a tout organis\u00e9 autour du digital, c'est \u00e0 dire autour de la disponibilit\u00e9 en silicium, indium, cuivre, \u00e9tain, de or, aluminium, antimoine, arsenic, baryum, b\u00e9ryllium, cadmium, chrome, cobalt, gallium, plomb, mangan\u00e8se, mercure, palladium, platine, s\u00e9l\u00e9nium, zinc...\n\nSi demain matin nous devions nous retrouver priv\u00e9s de composants \u00e9lectroniques de mani\u00e8re massive, parce que les mat\u00e9riaux qui les permettent font d\u00e9faut, assez vite nous n'aurions plus de compte en banque, plus de communications, plus de gestion des trafics de v\u00e9hicules, plus d'\u00e9lectricit\u00e9, plus d'admission post bac (!), plus de vente en ligne et... plus d'imp\u00f4ts. \n\nQuestion donc : est-ce la voie de la raison que de piocher encore plus vite dans le stock r\u00e9siduel juste pour pouvoir se distraire, alors que ce n'est quand m\u00eame pas tr\u00e8s difficile de trouver d'autres moyens de le faire ? Cette question est d'autant plus l\u00e9gitime que la s\u00e9dentarit\u00e9 et les \u00e9crans chez les enfants sont raisonnablement d\u00e9l\u00e9t\u00e8res sur notre sant\u00e9, et que du num\u00e9rique il en faudrait probablement plut\u00f4t moins que plus d\u00e9sormais...\n\nIl est \u00e0 craindre que, comme d'habitude, nous nous posions la question de savoir s'il fallait y aller qu'une fois que la chose aura d\u00e9marr\u00e9. Or, comme chacun(e) sait, perdre une mauvaise habitude est consid\u00e9rablement plus difficile que de ne pas la prendre. Pourquoi est-ce si difficile d'avoir des d\u00e9bats apais\u00e9s sur les nouveaut\u00e9s techniques avant leur d\u00e9ploiement ?\n\nCela ne signifie pas que l'on refuse d'y aller par principe. Mais le faire parfois n'est pas n\u00e9cessairement un comportement r\u00e9trograde, mais juste faire preuve de discernement." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6984538270470709248,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6984538271162728448,urn:li:activity:6984538271162728448,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 233, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6984538271162728448,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6984538271162728448,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6984538271162728448", + "threadId": "activity:6984538271162728448", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6984538271162728448", + "urn": "urn:li:activity:6984538271162728448", + "numComments": 356, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6984538271162728448", + "reactionTypeCounts": [ + { + "count": 4546, + "reactionType": "LIKE" + }, + { + "count": 452, + "reactionType": "PRAISE" + }, + { + "count": 305, + "reactionType": "MAYBE" + }, + { + "count": 104, + "reactionType": "INTEREST" + }, + { + "count": 73, + "reactionType": "APPRECIATION" + }, + { + "count": 54, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6984538271162728448", + "numLikes": 5534, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6984538271162728448", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5540, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6983869184552148993,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6983869184552148993", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6983869184552148993)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6983869184552148993)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_isabelle-boemeke-nuclear-power-is-our-best-activity-6983869184552148993--xys?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6983869183713239040", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6983869184552148993", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6983869184552148993,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6983869184552148993,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6983869183713239040", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "bqxdZVB47NLpV7lozBNheg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6983869184552148993,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8810329122029054185", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676394849952?e=1677240000&v=beta&t=9gcqiSYdCJtPJLGKwo-q9nnA-mvk4pdctMG6mpk6nxQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1050, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676394849953?e=1677240000&v=beta&t=NpR3B0fVx6Uy1QRFYtSBGLFo7ZLufKHQGDyPGqwUtVk", + "expiresAt": 1677240000000, + "height": 591 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676394849953?e=1677240000&v=beta&t=ZEBIkebycyddSLbbfa_EWsGEF0yoLSa0iXzi-Ieg6Zg", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676394849953?e=1677240000&v=beta&t=FxHu3aaEhUm7ODC1taZXRqNgsjETf12TvnQqpDNscPI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF4tnhmmx9BGw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8810329122029054185)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8810329122029054185)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ted.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Isabelle Boemeke: Nuclear power is our best hope to ditch fossil fuels on ted.com", + "actionTarget": "https://www.ted.com/talks/isabelle_boemeke_nuclear_power_is_our_best_hope_to_ditch_fossil_fuels" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Nuclear power is one of the safest, cleanest forms of energy -- yet to most people, it might not feel that way. Why is that? Isabelle Boemeke, the world's first nuclear energy influencer and creator of the social media persona Isodope, deftly debunks..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Isabelle Boemeke: Nuclear power is our best hope to ditch fossil fuels" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6983869183713239040,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Elle porte un pr\u00e9nom fran\u00e7ais et un nom de famille belge, mais elle est br\u00e9silienne et parle anglais.Elle a \u00e9t\u00e9 mannequin et est devenue influenceuse. Avec une telle introduction nous aurons tous le r\u00e9flexe de nous dire qu'il s'agit d'un clone international de Kardashian, qui vit de la promotion de cosm\u00e9tiques et paires de chaussures.\n\nSauf que pas du tout : les tutos d'Isabelle Boemeke font la promotion... de l'\u00e9lectricit\u00e9 nucl\u00e9aire. Dans ce TedX r\u00e9cent, elle \u00e9voque son respect pour les scientifiques, sa d\u00e9marche pour comprendre, et rejoint (ou pr\u00e9c\u00e8de !) Vinz Kant\u00e9 dans la cat\u00e9gorie des personnes qui se sont fait un nom m\u00e9diatique sur la base d'activit\u00e9s \"l\u00e9g\u00e8res\" (la mode par exemple) et qui s'impliquent ensuite dans des causes plus difficiles.\n\nEn plus, cette influenceuse est partie avec une tr\u00e8s mauvaise opinion du nucl\u00e9aire. Mais elle a fait l'effort de rechercher par elle m\u00eame sans s'en tenir \u00e0 l'information m\u00e9diatique. En cela elle rejoint aussi un George Monbiot qui a fait un \"coming out\" dans le Guardian (o\u00f9 il chronique) en expliquant qu'il avait \u00e9t\u00e9 choqu\u00e9 par les choses fausses ou exag\u00e9r\u00e9es que le monde militant antinucl\u00e9aire avait diffus\u00e9es dans l'espace public.\n\nSachant qu'en France les personnes qui ont le plus d'a-priori contre le nucl\u00e9aire sont les femmes et les jeunes, c'est \u00e9videmment int\u00e9ressant qu'il existe au moins une femme jeune pour proposer un point de vue favorable.\n\nOn peut bien sur \u00eatre oppos\u00e9 au nucl\u00e9aire. Mais ce qui est dommage est de l'\u00eatre sur la base de faits inexistants ou mal mis en perspective." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6983869183713239040,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6983869184552148993,urn:li:activity:6983869184552148993,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 132, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6983869184552148993,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6983869184552148993,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6983869184552148993", + "threadId": "activity:6983869184552148993", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6983869184552148993", + "urn": "urn:li:activity:6983869184552148993", + "numComments": 526, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6983869184552148993", + "reactionTypeCounts": [ + { + "count": 5406, + "reactionType": "LIKE" + }, + { + "count": 300, + "reactionType": "PRAISE" + }, + { + "count": 271, + "reactionType": "MAYBE" + }, + { + "count": 99, + "reactionType": "INTEREST" + }, + { + "count": 65, + "reactionType": "APPRECIATION" + }, + { + "count": 62, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6983869184552148993", + "numLikes": 6203, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6983869184552148993", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6204, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6983690392068063232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6983690392068063232", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6983690392068063232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6983690392068063232)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_veracity-of-corporate-net-zero-pledges-and-activity-6983690392068063232-wDj3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6983690391220822016", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6983690392068063232", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6983690392068063232,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6983690392068063232,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6983690391220822016", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "67KtUl1lH4B7nOBgjsd/rQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6983690392068063232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8679946917402101029", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 500, + "fileIdentifyingUrlPathSegment": "800/0/1676035561679?e=1677240000&v=beta&t=TmtihuYAs2kCaYRHSZryKGlyi-qw3QdLgLOYYYj675E", + "expiresAt": 1677240000000, + "height": 241 + }, + { + "width": 500, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676035561679?e=1677240000&v=beta&t=E2s3qhI8SSR1nHYW22ZqvRgGJqPZc5pQXJWh8z3VuTI", + "expiresAt": 1677240000000, + "height": 241 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676035561679?e=1677240000&v=beta&t=6Xs-XaON5lzpWihw-rJC9UsJ5Yablq0DgWuzMjO34YI", + "expiresAt": 1677240000000, + "height": 77 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676035561680?e=1677240000&v=beta&t=krTVu7rmUlT59l6gBbyM2lM_oJEGgen2h86lF-Usx8c", + "expiresAt": 1677240000000, + "height": 231 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF7Dh0p2E4Chg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8679946917402101029)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8679946917402101029)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "energypost.eu \u2022 9 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Veracity of corporate net-zero pledges and advertising is being challenged in court - Energy Post by energypost.eu", + "actionTarget": "https://energypost.eu/veracity-of-corporate-net-zero-pledges-and-advertising-is-being-challenged-in-court/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Veracity of corporate net-zero pledges and advertising is being challenged in court - Energy Post" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6983690391220822016,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Toutes celles et tous ceux qui utilisent Google peuvent facilement le constater sur la page d'accueil : ce moteur de recherche (et du coup la soci\u00e9t\u00e9 qui va avec) se revendique \"neutre en carbone depuis 2007\". Un premier niveau de questionnement pourrait \u00eatre de se demander comment une entreprise dont le m\u00e9tier est de pousser \u00e0 la consommation (Google gagne sa vie en vendant du r\u00e9f\u00e9rencement publicitaire) peut \u00eatre compatible avec un monde o\u00f9 les \u00e9missions doivent baisser de 5% par an.\n\nMais m\u00eame si c'\u00e9tait le cas (et ca ne l'est pas) on peut se poser la question de savoir si une entreprise peut \u00eatre \"neutre dans son coin\" ou simplement \"compatible avec un objectif de neutralit\u00e9 plan\u00e9taire\".\n\nA Carbone 4 la r\u00e9ponse est tr\u00e8s claire : seule la 2\u00e8 option est scientifiquement fond\u00e9e (https://lnkd.in/eZaWan8r ). Et, \u00e0 Carbone 4, nous avons pour ligne, depuis notre cr\u00e9ation, de d\u00e9velopper des m\u00e9thodes (en libre acc\u00e8s de fa\u00e7on syst\u00e9matique ; c'est une r\u00e8gle) qui partent de questions pos\u00e9es par le dossier scientifique et non d'une volont\u00e9 d'\u00eatre rassur\u00e9s de nos clients. \n\nDit autrement nous leur proposons des approches avant tout bas\u00e9es sur l'\u00e9nonc\u00e9 scientifique du probl\u00e8me et non avant tout bas\u00e9es sur l'envie que les \"parties prenantes\" les laissent tranquilles, quelle que soit la pertinence du raisonnement suivi.\n\nSur la question de la neutralit\u00e9, \u00e0 chaque fois que des acteurs tiers prennent position d'une mani\u00e8re convergente avec nos vues, nous sommes donc contents (quelle surprise !). Nous avons donc accueilli avec plaisir l'avis de l'Ademe indiquant tr\u00e8s clairement pourquoi une entreprise ne pouvait pas \u00eatre neutre (https://bit.ly/3RJv4Sq ), ainsi que le projet de loi (en France) qui disait la m\u00eame chose (avant que ce projet de loi ne soit caviard\u00e9 par des gens \u00e0 qui cela d\u00e9plaisait, avec pour r\u00e9sultat la possibilit\u00e9 de dire quand m\u00eame qu'un produit ou service est neutre en respectant des conditions de forme qui n'ont pas de pertinence en l'esp\u00e8ce).\n\nPour la m\u00eame raison, et parce que les entreprises n'innovent que sous la contrainte, ce n'est pas une mauvaise chose que les revendications de neutralit\u00e9 de certaines entreprises se terminent devant les tribunaux. Le site Energy Post recense quelques cas de proc\u00e8s de par le monde qui ont \u00e9t\u00e9 intent\u00e9s par des ONG contre des grandes entreprises pour des affirmations qui leur semblent \"un peu fortes de caf\u00e9\". Ces proc\u00e8s sont \"pas de chance\" pour les entreprises concern\u00e9es, parce que ces derni\u00e8res ne sont qu'un tout petit \u00e9chantillon de celles qui affirment \u00e0 tort \u00eatre d\u00e9j\u00e0 en r\u00e8gle avec la contrainte climatique.\n\nEvidemment, l'id\u00e9al serait que ces proc\u00e8s n'aient pas lieu d'\u00eatre, parce que les pays et instances de r\u00e9gulation feraient d\u00e9j\u00e0 leur job. Mais en attendant, ces petites banderilles (pas m\u00e9chantes au regard d'un boycott ou une interdiction d'exercer) plant\u00e9es par les ONG ne peuvent pas faire de mal." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6983690391220822016,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6983690392068063232,urn:li:activity:6983690392068063232,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 36, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6983690392068063232,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6983690392068063232,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6983690392068063232", + "threadId": "activity:6983690392068063232", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6983690392068063232", + "urn": "urn:li:activity:6983690392068063232", + "numComments": 57, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6983690392068063232", + "reactionTypeCounts": [ + { + "count": 1135, + "reactionType": "LIKE" + }, + { + "count": 110, + "reactionType": "INTEREST" + }, + { + "count": 70, + "reactionType": "MAYBE" + }, + { + "count": 42, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6983690392068063232", + "numLikes": 1383, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6983690392068063232", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1385, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6983311009276911616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6983311009276911616", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6983311009276911616)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6983311009276911616)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-pr%C3%A9sente-ses-cahiers-r%C3%A9silience-activity-6983311009276911616-Fyez?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6983311008547102720", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6983311009276911616", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6983311009276911616,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6983311009276911616,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6983311008547102720", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "S5XAqp50dogjNXxja/fe/g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6983311009276911616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7853839975527889389", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676380634018?e=1677240000&v=beta&t=vEPJuB8wud9ALc1VcwwV50QuOWHWN8YeH8ncXuE8ryY", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676380634018?e=1677240000&v=beta&t=MoAfON9GdFXxZiWVGcNusEVNPux8XqBVC7CsyOCl-lo", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676380634018?e=1677240000&v=beta&t=rjH3h8k1cd8k08w9ZR1fKuEvXei18WYT1fWYXr6WBy0", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676380634018?e=1677240000&v=beta&t=ioz5TcjKQDbBkwMr37HlNTBTdcVpK4hi5vyo_6aOCJE", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGIrCJ_xQwgzw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7853839975527889389)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7853839975527889389)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift pr\u00e9sente ses cahiers R\u00e9silience des territoires, rdv le 11/10 by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-presentation-des-cahiers-resilience-des-territoires-et-lancement-de-la-campagne/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift pr\u00e9sente ses cahiers R\u00e9silience des\u00a0territoires, rdv le 11/10" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6983311008547102720,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il n'y a pas que les entreprises qui doivent s'armer pour affronter le d\u00e9fi \u00e9nergie climat (et d'autres). Les territoires aussi. Dans tous les territoires, ville ou campagne, mer ou montagne, l\u2019organisation actuelle d\u00e9pend au premier chef des hydrocarbures\u00a0: les camions \u2013 et souvent avant eux les bateaux - acheminent nourriture, v\u00eatements, pi\u00e8ces de rechange pour les r\u00e9seaux d\u2019eau, et un milliard d\u2019autres choses\u00a0; ils \u00e9vacuent la production des champs et usines\u00a0; voitures et avions am\u00e8nent les touristes sur lesquels reposent presque 10% des emplois du pays\u00a0; notre r\u00e9seau \u00e9lectrique europ\u00e9en ne fonctionne plus sans centrales \u00e0 gaz et tout territoire d\u00e9pend de l\u2019\u00e9lectricit\u00e9\u2026\n\u00a0\nL\u2019avenir de notre pays va nous confronter \u00e0 deux \u00e9volutions inexorables\u00a0: la baisse \u2013 d\u00e9j\u00e0 enclench\u00e9e par \u00e9puisement g\u00e9ologique \u2013 de l\u2019approvisionnement en p\u00e9trole, gaz et charbon, et l\u2019intensification d\u2019une d\u00e9rive climatique caus\u00e9e par l\u2019ensemble des \u00e9missions mondiales (et pas juste les \u00e9missions fran\u00e7aises).\n\u00a0\nEn m\u00eame temps que tous les flux sur lesquels repose notre organisation actuelle vont se contracter, l\u2019\u00e9volution climatique va devenir plus adverse. Une premi\u00e8re publication du Shift Project (https://lnkd.in/dfWN5cBP ) avait propos\u00e9 un certain nombre de propositions que tout ex\u00e9cutif local devrait avoir \u00e0 c\u0153ur de mettre en \u0153uvre pour pr\u00e9parer au mieux son territoire contre l\u2019adversit\u00e9 croissante, et saisir les opportunit\u00e9s s\u2019il y en a, et en particulier\u00a0:\n- former d\u2019urgence les \u00e9lus et les fonctionnaires territoriaux \u00e0 la compr\u00e9hension du probl\u00e8me, complexe et prot\u00e9iforme, pour ensuite partager cette compr\u00e9hension avec les acteurs locaux.\n- ne plus mettre en route des projets qui vont aggraver l\u2019adversit\u00e9\n- modifier la gouvernance (plus transversale et moins en silos) et de se doter d\u2019une strat\u00e9gie qui soit coh\u00e9rente avec le contexte.\n\u00a0\nPour faciliter le passage \u00e0 l\u2019action, il a paru pertinent au Shift Project de d\u00e9cliner cette approche en fonction des particularit\u00e9s des territoires. Selon que nous nous adressons \u00e0 une m\u00e9tropole, une plus petite ville, la campagne, la montagne, le littoral, ou l\u2019outre-mer, la mani\u00e8re d'attaquer la question varie. \n\u00a0\nUne s\u00e9rie de webinaires, qui d\u00e9marre Mardi 11 octobre, pr\u00e9sente ces nouveaux travaux. Comme tout ce que fait le Shift Project, c'est public, et c'est gratuit !\n" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6983311008547102720,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6983311009276911616,urn:li:activity:6983311009276911616,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 71, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6983311009276911616,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6983311009276911616,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6983311009276911616", + "threadId": "activity:6983311009276911616", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6983311009276911616", + "urn": "urn:li:activity:6983311009276911616", + "numComments": 122, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6983311009276911616", + "reactionTypeCounts": [ + { + "count": 1411, + "reactionType": "LIKE" + }, + { + "count": 95, + "reactionType": "PRAISE" + }, + { + "count": 82, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "INTEREST" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6983311009276911616", + "numLikes": 1651, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6983311009276911616", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1651, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6983170040263024640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6983170040263024640", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6983170040263024640)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6983170040263024640)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-tpe-pme-angoiss%C3%A9es-face-au-changement-activity-6983170040263024640-r-5G?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6983170039562522625", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6983170040263024640", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6983170040263024640,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6983170040263024640,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6983170039562522625", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "2feLYHsKd+T2bMVmKbEHeA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6983170040263024640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8187040415899134368", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675626202667?e=1677240000&v=beta&t=RrIj32g5ehmgEFTXpAQMKUDPoG3qimRbmw3AZhTwB3I", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675626202667?e=1677240000&v=beta&t=HqgCwceHH2mAiqDa_RM5MHwei5QDuoazky5P_HIJefU", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675626202667?e=1677240000&v=beta&t=hfo7eFoNVWbRew7JEn0N5wdxYJgs_iZ6qemi7jpzETM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675626202668?e=1677240000&v=beta&t=X3tQgaqTv1wV46Z0ROTHZxxqdyIXzRQO52nkpwvOcjI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF7PckcAljgTw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8187040415899134368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8187040415899134368)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les TPE-PME angoiss\u00e9es face au changement climatique by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/pme-regions/actualite-pme/les-tpe-pme-angoissees-face-au-changement-climatique-1865804" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les TPE-PME angoiss\u00e9es face au changement climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6983170039562522625,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "On a un peu tendance \u00e0 l'oublier quand on voit les noms mis en avant par les militants dans le \"combat environnemental\" : il n'y a pas que des grands groupes dans l'\u00e9conomie. Face au d\u00e9fi \u00e9nergie climat, les PME et TPE vont aussi devoir modifier leurs pratiques, et s'adapter \u00e0 un monde qui change. Mais, \u00e0 la diff\u00e9rence des grandes entreprises, les PME et TPE ont souvent beaucoup moins de moyens pour investiguer l'avenir et pour s'y pr\u00e9parer. \n\nDans les petites entreprises, l'encadrement est en effet souvent r\u00e9duit \u00e0 quelques personnes, qui doivent tout \u00e0 la fois trouver les clients, causer au banquier, g\u00e9rer les salari\u00e9s, interagir avec le comptable, g\u00e9rer en direct les formalit\u00e9s administratives de toute nature associ\u00e9es \u00e0 l'activit\u00e9.\n\nCela ne laisse que peu de temps pour r\u00e9fl\u00e9chir \u00e0 10 ans ou plus, et il y a souvent peu d'argent pour embaucher des consultants pour r\u00e9fl\u00e9chir \u00e0 leur place. Et pourtant il va bien falloir que nos TPE et PME s'y collent aussi. \n\nN'oublions pas que l'essentiel de l'activit\u00e9 \u00e9conomique et de l'emploi se loge dans des entit\u00e9s qui ne focalisent pas autant l'attention que Total ou BNPP, mais qui devront faire leur part. \n\nComme les PME et TPE sont globalement moins bien outill\u00e9es que les grands groupes pour trouver en interne les moyens de savoir \u00e0 quelle sauce elles seront mang\u00e9es, il est essentiel de mettre \u00e0 leur disposition par l'ext\u00e9rieur les informations leur permettant de comprendre o\u00f9 sont les limites plan\u00e9taires, et des outils de gestion leur permettant de se confronter aux limites en question.\n\nMais il sera aussi n\u00e9cessaire de les cadrer, car le virage \u00e0 prendre est trop serr\u00e9 pour compter uniquement sur les bonnes volont\u00e9s. La puissance publique doit donc donner de la visibilit\u00e9. Plus encore que pour les grands groupes, c'est le seul moyen d'\u00e9viter de la casse en s\u00e9rie avec des \u00e9v\u00e9nements externes qui nous forceront au changement.\n\nEnfin, il ne faut pas se raconter d'histoire : toutes les entreprises et tous les emplois ne passeront pas au travers de la d\u00e9carbonation. Il faut donc aussi planifier la reconversion des emplois, voire venir en aide aux chefs de petites entreprises qui se retrouveront sur le carreau (tous ne gagnent pas des fortunes !). \n\nMais une chose est sure : plus on reculera devant l'obstacle, plus il y aura de casse \u00e0 terme." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6983170039562522625,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6983170040263024640,urn:li:activity:6983170040263024640,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 63, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6983170040263024640,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6983170040263024640,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6983170040263024640", + "threadId": "activity:6983170040263024640", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6983170040263024640", + "urn": "urn:li:activity:6983170040263024640", + "numComments": 79, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6983170040263024640", + "reactionTypeCounts": [ + { + "count": 924, + "reactionType": "LIKE" + }, + { + "count": 79, + "reactionType": "MAYBE" + }, + { + "count": 59, + "reactionType": "INTEREST" + }, + { + "count": 19, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6983170040263024640", + "numLikes": 1091, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6983170040263024640", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1092, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6982704911536812034,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6982704911536812034", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6982704911536812034)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6982704911536812034)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_projection-transition-14-16-octobre-2022-activity-6982704911536812034-B9P_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6982704910941224960", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6982704911536812034", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6982704911536812034,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6982704911536812034,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6982704910941224960", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "WxfNc2Fgi7g37onVRHZG1w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6982704911536812034,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8562280486872677759", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675963547038?e=1677240000&v=beta&t=EUL0qqACVpTJE4BpfBrESJcln2mv6wUz30OHsZn0csA", + "expiresAt": 1677240000000, + "height": 418 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675963547038?e=1677240000&v=beta&t=tXhIXxWa4eCUmj-JQfeD_3_Mm5w3MgVWKYIy_-YXKu4", + "expiresAt": 1677240000000, + "height": 627 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675963547038?e=1677240000&v=beta&t=Q-xFW9lnrihW7wL69sr3etPmIGcNiqzedJPpyFwZlD8", + "expiresAt": 1677240000000, + "height": 83 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675963547038?e=1677240000&v=beta&t=RGerX6XuFK36lcT56Z1Nb1RsrMmYOFtw5tK5CqYDiWI", + "expiresAt": 1677240000000, + "height": 250 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGJ6qiB9nPjFg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8562280486872677759)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8562280486872677759)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "projectiontransition.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Projection Transition | 14 > 16 octobre 2022 by projectiontransition.fr", + "actionTarget": "https://projectiontransition.fr/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Projection Transition | 14 > 16 octobre 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6982704910941224960,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 331, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "2gADIT0xQ1iEZ/4vEOnl9Q==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Il est probable que, tant que nous n'aurons pas d\u00e9carbon\u00e9 notre mani\u00e8re de vivre (et accessoirement diminu\u00e9 la pression sur la biodiversit\u00e9 etc), il sera utile d'y revenir de temps en temps pour illustrer l'importance de l'enjeu.\n\nEntre autres mani\u00e8res de rappeler ce dernier \u00e0 votre bon souvenir sans que ce ne soit trop p\u00e9nible, Les Shifters vous proposent la 3\u00e8 \u00e9dition du festival Projection Transition. \n\nLe principe est simple : chaque jour du 14 au 16 octobre prochains, \u00e0 Paris, Nantes, Toulouse et Bruxelles, il y a une ou deux projection(s) d'un film suivie d'un d\u00e9bat. C'est sympa, c'est convivial, et c'est instructif : quoi demander de plus ?\n\nBon, les shifters n'\u00e9tant pas encore consid\u00e9r\u00e9s comme un investissement d'avenir (alors que Dieu sait qu'il y a un paquet d'hydrog\u00e8ne et de carbone renouvelables dans chaque shifteuse et chaque shifter), il vous faudra vous acquitter du prix d'une place aupr\u00e8s de cette bande de gredin(e)s, mais celles et ceux qui le feront ne devraient pas trop regretter le montant consid\u00e9rable qui leur sera r\u00e9clam\u00e9.\n\nEt si vous arrivez \u00e0 y trainer un membre du gouvernement (comme spectateur et pas pour causer), je prends sur moi de vous dire que l'on vous offre la place.\n\nAu plaisir de vous y voir !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6982704910941224960,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6982704911536812034,urn:li:activity:6982704911536812034,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 39, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6982704911536812034,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6982704911536812034,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6982704911536812034", + "threadId": "activity:6982704911536812034", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6982704911536812034", + "urn": "urn:li:activity:6982704911536812034", + "numComments": 71, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6982704911536812034", + "reactionTypeCounts": [ + { + "count": 1026, + "reactionType": "LIKE" + }, + { + "count": 43, + "reactionType": "APPRECIATION" + }, + { + "count": 39, + "reactionType": "EMPATHY" + }, + { + "count": 33, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6982704911536812034", + "numLikes": 1154, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6982704911536812034", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1161, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6982274387307544576,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6982274387307544576", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6982274387307544576)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6982274387307544576)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nous-le-savons-tous-la-neutralit%C3%A9-carbone-activity-6982274387307544576-NNoS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6982274386359689216", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6982274387307544576", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6982274387307544576,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6982274387307544576,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6982274386359689216", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "snCrEjbGwAeUqblvYq5S8w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6982274387307544576,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHllEukBXr8tA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHllEukBXr8tA", + "artifacts": [ + { + "width": 1784, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1664703935512?e=1679529600&v=beta&t=66DlkKBK2tGs1nj14_BfcMPnYmM0710Z2G1P3h5ArFk", + "expiresAt": 1679529600000, + "height": 1062 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1664703937377?e=1679529600&v=beta&t=nk9skge7ATSOM40eYJeVNhickGujl2Q_BP5LlfwN-Ew", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1664703937377?e=1679529600&v=beta&t=lDGbYX7BFyWFSvvfLz0HrTjXT8GG8m9es8dZsZsKWcc", + "expiresAt": 1679529600000, + "height": 762 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1664703937378?e=1679529600&v=beta&t=Q-phyiihhashR6Hfv_EflVA9f5CpnwsLLn8Ap_HWxDI", + "expiresAt": 1679529600000, + "height": 286 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1664703937378?e=1679529600&v=beta&t=rkXCOTceIrJ18itirIPVDDU_ajXGPYmtxwYozfx_lww", + "expiresAt": 1679529600000, + "height": 95 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1664703937378?e=1679529600&v=beta&t=EuNoyld8PBGpXGpXMKfV-4Bz5xJ0-3CWPvPqPhgyZCs", + "expiresAt": 1679529600000, + "height": 476 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHllEukBXr8tA/feedshare-shrink_" + }, + "displayAspectRatio": 0.5952914798206278 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6982274386359689216,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Nous le savons tous : la neutralit\u00e9 carbone signifiera en particulier de ne plus consommer de charbon. Le graphique ci-dessous (source des donn\u00e9es : https://lnkd.in/eBjED9Qi ) retrace la consommation fran\u00e7aise de ce combustible fossile solide depuis 1960.\n\nQuelques faits sautent aux yeux :\n\n- au d\u00e9but des ann\u00e9es 1960 on utilisait plus de charbon dans le chauffage (r\u00e9sidentiel) que dans l'industrie (hors sid\u00e9rurgie) ou pour la production \u00e9lectrique !\n\n- \u00e0 la m\u00eame \u00e9poque on utilisait plus de charbon en France que de gaz aujourd'hui (un peu moins de 400 TWh de gaz en France en 2020 contre 600 de charbon au d\u00e9but des ann\u00e9es 60), et presque autant que de p\u00e9trole aujourd'hui (660 TWh de carburants divers en 2020).\n\n- la d\u00e9crue de l'usage du charbon s'est amorc\u00e9e bien avant que le discours climatique ne prenne place, et on ne voit pas d'inflexion particuli\u00e8re de la tendance qui serait li\u00e9e \u00e0 une d\u00e9cision politique \"climatique\" particuli\u00e8re (Sommet de la Terre en 1992 par exemple).\n\n- la d\u00e9crue dans la production \u00e9lectrique est due \u00e0 l'\u00e9puisement des gisements domestiques (voir graphique en commentaire). Le charbon \u00e9tant un pond\u00e9reux solide, il voyage mal. La baisse forte de la production domestique pour cause d'\u00e9puisement des mines n'est jamais compens\u00e9e par des importations en totalit\u00e9\n\n- si nous avions eu plein de charbon, apr\u00e8s les chocs p\u00e9troliers nous serions pass\u00e9s du p\u00e9trole au charbon dans la production \u00e9lectrique (comme les allemands). L'essor du nucl\u00e9aire \u00e0 l'\u00e9poque (que je consid\u00e8re \u00eatre une bonne chose) ne doit rien \u00e0 la \"vertu climatique\" :) : c'est juste que nous n'avions pas assez de charbon !\n\n- c'est dans la sid\u00e9rurgie que la d\u00e9crue a \u00e9t\u00e9 la plus lente, parce que le charbon m\u00e9tallurgique (qui sert - apr\u00e8s avoir \u00e9t\u00e9 transform\u00e9 en coke - \u00e0 passer du minerai de fer \u00e0 la fonte) vaut plus cher que le charbon vapeur (qui sert \u00e0 produire de l'\u00e9lectricit\u00e9), et voyage donc plus, et par ailleurs le charbon est le moyen le plus simple (donc le moins cher) de produire un acier qui intervient partout dans la construction et l'industrie.\n\nCette \u00e9volution \u00e0 la baisse de la consommation se constate aussi en Europe au sens large, pour les m\u00eames raisons (le pic de production du charbon en Grande Bretagne a \u00e9t\u00e9 en 1914 !).\n\nQuelle conclusion tirer de tout cela ? D'abord qu'il faut toujours regarder les \u00e9volutions en s\u00e9rie longue - et interpr\u00e9ter les tendances - avant d'avoir un avis sur un \u00e9v\u00e9nement ponctuel (qui sera \u00e9ventuellement justifi\u00e9 par une action clairvoyante alors qu'il n'en est rien !).\n\nEnsuite et surtout que nous ne ferons pas n\u00e9cessairement un \"retour au charbon et au gaz et tant pis pour le CO2\" s'il n'y a plus de nucl\u00e9aire. Pour cela il faut avoir du charbon et du gaz !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6982274386359689216,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6982274387307544576,urn:li:activity:6982274387307544576,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 36, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6982274387307544576,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6982274387307544576,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6982274387307544576", + "threadId": "activity:6982274387307544576", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6982274387307544576", + "urn": "urn:li:activity:6982274387307544576", + "numComments": 57, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6982274387307544576", + "reactionTypeCounts": [ + { + "count": 941, + "reactionType": "LIKE" + }, + { + "count": 141, + "reactionType": "INTEREST" + }, + { + "count": 99, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6982274387307544576", + "numLikes": 1196, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6982274387307544576", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1196, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "4mo \u2022 Edited \u2022 ", + "accessibilityText": "4 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6981916773797216256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6981916773797216256", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6981916773797216256)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6981916773797216256)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lint%C3%A9grale-cest-notre-plan%C3%A8te-0110-activity-6981916773797216256-9vXS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6981916773130338304", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6981916773797216256", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6981916773797216256,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6981916773797216256,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6981916773130338304", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "iFAdkKpjFX/cFUYl+x3pAg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6981916773797216256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8707415143839365370", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675510394887?e=1677240000&v=beta&t=Ve3FpbXFqY-Bu7bQ1Ma9PCRfwpHTZmB5SmK3n5u_3YY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675510394887?e=1677240000&v=beta&t=Y-817wUl-qIfJ4jZr9nAteMnZffYd6Xxt-pyLs-Uc28", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675510394887?e=1677240000&v=beta&t=mPjnUxnBIRGVAQp-YzMU-SppzlBfD1f1wt-hyKNemOo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675510394887?e=1677240000&v=beta&t=Grm7cTqg6pM0edk4OaC0qy2e1H_5-CLBrPlNQSUe-eo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQED-WSnka-0RA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8707415143839365370)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8707415143839365370)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'INT\u00c9GRALE - C'est notre plan\u00e8te (01/10/22) by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900191033-l-integrale-c-est-notre-planete-01-10-22" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'INT\u00c9GRALE - C'est notre plan\u00e8te (01/10/22)" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6981916773130338304,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il n'y a pas que nos voitures, chaudi\u00e8res et biftecks qui concourent aux \u00e9missions de gaz \u00e0 effet de serre. Aller \u00e0 l'h\u00f4pital, ce qui n'est g\u00e9n\u00e9ralement pas quelque chose que l'on fait de gait\u00e9 de coeur, y contribue aussi.\n\nDans le Plan de Transformation de l'Economie Fran\u00e7aise, un plein chapitre est consacr\u00e9 \u00e0 l'empreinte carbone du secteur de la sant\u00e9, qui repr\u00e9sente environ 8% de l'empreinte du pays (chiffre qui peut varier de plus ou moins 2% en fonction des m\u00e9thodes) : https://bit.ly/3y6kyOq\n\nJ'ai tent\u00e9 d'en r\u00e9sumer l'esprit dans ces 3 minutes de chronique hebdomadaire sur RTL. La moyenne d'\u00e2ge de l'audience de la radio (entre 55 et 60 ans) en faisant - h\u00e9las - une population probablement d\u00e9j\u00e0 fr\u00e9quemment concern\u00e9e par la question, j'esp\u00e8re qu'elle sera int\u00e9ress\u00e9e par le contenu.\n\nLa \"grosse\" question est \u00e9videmment de savoir comment on maintient les gens en meilleure sant\u00e9 possible (jusqu'\u00e0 ce qu'ils meurent, parce que ca nous arrive \u00e0 tous) dans un monde avec de moins en moins de p\u00e9trole (transports des malades et du personnel, chimie organique pour faire tout ce qui contient du plastique ou des fibres de synth\u00e8se, ou des principes actifs ou r\u00e9actifs de labo), de gaz (chauffage et chimie organique aussi), et de charbon (m\u00e9tallurgie et donc acier de tous les dispositifs qui en contiennent). \n\nUne partie de la solution passe \u00e9videmment par la pr\u00e9vention. Si nous avons moins de pathologies chroniques, cela diminue \u00e0 l'\u00e9vidence le besoin de les prendre en charge : cela s'appelle la sobri\u00e9t\u00e9 de l'appareil de soins.\n\nPour cela on peut penser au sport, et \u00e0 l'action contre les mauvaises habitudes en mati\u00e8re de tabac, alcool, alimentation, et s\u00e9dentarit\u00e9. Au vu de l'importance des d\u00e9penses concernant les troubles psychiatriques dans le budget de la s\u00e9cu, on peut aussi se poser la question de l'impact qu'aurait un avenir collectif enthousiasmant et cr\u00e9dible propos\u00e9 par le monde politique.\n\nA ce titre l'interdiction de la publicit\u00e9 pour tout aliment dont le nutriscore n'est pas A, ou pour la voiture (on marche un peu quand on prend le bus ou le m\u00e9tro, et on fait un effort quand on marche ou on p\u00e9dale) serait pertinente !\n\nUne autre partie du chemin peut \u00eatre fait avec des mesures techniques (m\u00e9dicaments \u00e0 l'unit\u00e9, efforts chez les fabricants de m\u00e9dicaments et dispositifs m\u00e9dicaux - seringues, cath\u00e9ters seringues etc). Mais ca ne suffira pas \u00e0 ce que l'h\u00f4pital fonctionne dans un monde \"neutre en carbone\".\n\nBien \u00e9videmment ce chiffre de 8% est pour le moment un ordre de grandeur. Un autre effort est aussi \u00e0 faire pour am\u00e9liorer l'information qui permet de faire des arbitrages. On pourrait par exemple imaginer que les remboursements de m\u00e9dicaments soient conditionn\u00e9s \u00e0 la production d'un bilan carbone par le labo qui les fabrique. Apr\u00e8s tout le client (donc la CNAM) est roi...\n\nCe secteur est aujourd'hui tr\u00e8s en retard par rapport \u00e0 d'autres sur sa confrontation au monde de demain qui d\u00e9carbonera de gr\u00e9 ou de force. Au travail !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6981916773130338304,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6981916773797216256,urn:li:activity:6981916773797216256,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 65, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6981916773797216256,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6981916773797216256,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6981916773797216256", + "threadId": "activity:6981916773797216256", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6981916773797216256", + "urn": "urn:li:activity:6981916773797216256", + "numComments": 133, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6981916773797216256", + "reactionTypeCounts": [ + { + "count": 899, + "reactionType": "LIKE" + }, + { + "count": 94, + "reactionType": "MAYBE" + }, + { + "count": 86, + "reactionType": "INTEREST" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6981916773797216256", + "numLikes": 1116, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6981916773797216256", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1117, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6981513754509254656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6981513754509254656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6981513754509254656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6981513754509254656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-france-va-cofinancer-la-construction-de-activity-6981513754509254656-CHYm?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6981513753645178881", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6981513754509254656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6981513754509254656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6981513754509254656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6981513753645178881", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "Y1eTDIaQoaJ0UAn7A27vSg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6981513754509254656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7999534725000076478", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676293228658?e=1677240000&v=beta&t=NLBQuAbe1qjhltC9CYXt5v1CTrzM3InnpSh-j1HYimE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676293228658?e=1677240000&v=beta&t=-1N9XekoTKc_IbRMQ5rMCuEEAIT9cieP8JAtlOQYb7U", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676293228658?e=1677240000&v=beta&t=KuGJEmrxZUdZzZGkvyNLBEXVgGzWoTGxU1LEps-kwqo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676293228658?e=1677240000&v=beta&t=paRh7onpD1VGyNarA1CsbMHClqBteGHF3jZcYfw92cA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHoBqAI0X6V_Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7999534725000076478)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7999534725000076478)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La France va cofinancer la construction de dix usines misant sur l'hydrog\u00e8ne by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/la-france-va-cofinancer-la-construction-de-dix-usines-misant-sur-lhydrogene-1852460" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La France va cofinancer la construction de dix usines misant sur l'hydrog\u00e8ne" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6981513753645178881,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Nous avons d\u00e9sormais les yeux de Chim\u00e8ne pour l'hydrog\u00e8ne. Partons nous dans la bonne direction avec les annonces gouvernementales ?\n\nDans le Plan de Transformation de l'Economie Fran\u00e7aise, nous proposons d'en produire \"un peu\", c'est \u00e0 dire en gros autant qu'aujourd'hui, mais au lieu de le faire en \"reformant du m\u00e9thane\" (voir https://bit.ly/3LSyUHN ), il serait produit en \u00e9lectrolysant de l'eau avec de l'\u00e9lectricit\u00e9 d\u00e9carbon\u00e9e.\n\nDans notre plan, il ne sert qu'\u00e0 deux choses :\n- produire de l'ammoniac, qui permet lui-m\u00eame de produire des engrais. M\u00eame en diminuant la consommation d'engrais de synth\u00e8se, nous en aurons besoin un petit moment avant de pouvoir \u00e9ventuellement nous en passer \"un jour\" en agriculture\n- produire de l'acier, en rempla\u00e7ant le charbon (le coke) pour \u00f4ter l'oxyg\u00e8ne associ\u00e9 au fer dans le minera de fer.\n\nCe sont donc deux applications industrielles \"fixes\". Nous ne proposons pas d'en utiliser de mani\u00e8re significative dans les transports. Les raisons \u00e0 cela sont :\n\n- le volume d'\u00e9lectricit\u00e9 n\u00e9cessaire. Les poids lourds c'est actuellement 8 millions de tonnes de p\u00e9trole par an en France. Pour avoir la m\u00eame \u00e9nergie sous forme d'hydrog\u00e8ne (sachant que les rendements d'une pile \u00e0 combustible et d'un moteur de poids lourd sont proches) il faudrait environ un tiers de la production \u00e9lectrique actuelle (il en faudrait 3,5 fois moins pour une propulsion directe \u00e0 l'\u00e9lectricit\u00e9 en posant des cat\u00e9naires sur les autoroutes et les principales routes)\n\n- la logistique de l'hydrog\u00e8ne. Gaz le moins dense \u00e9nerg\u00e9tiquement par unit\u00e9 de volume, son stockage et sa manutention sont tr\u00e8s couteux \u00e9nerg\u00e9tiquement. Mol\u00e9cule la plus petite de notre environnement, ce gaz s'infiltre par la moindre fissure et fragilise l'acier : il faut modifier les r\u00e9seaux ou en construire de nouveaux (ca nous met hors d\u00e9lai)\n\nQuand on lit dans cet article des Echos que le plan hydrog\u00e8ne fran\u00e7ais concerne surtout la mobilit\u00e9, il est \u00e0 craindre que notre pays ne prenne \u00e0 nouveau un vrai probl\u00e8me par le mauvais bout. Cette mobilit\u00e9 hydrog\u00e8ne peut \u00e9ventuellement concerner des applications de niche (un train ici ou l\u00e0), mais il y a des alternatives plus pertinentes pour l''essentiel de la mobilit\u00e9 des personnes et des marchandises que de se jeter sur ce vecteur \u00e0 la mode.\n\nVoir https://bit.ly/3Ciz3B4 pour le fret ; https://bit.ly/2H5Eubp pour la mobilit\u00e9 du quotidien et https://bit.ly/3rj6lK1 pour la mobilit\u00e9 longue distance. \n\nEnfin le gouvernement table sur une \"baisse des couts\". Mais la baisse des couts se constate historiquement dans un monde mondialis\u00e9 en croissance \u00e9nerg\u00e9tique. Nous ne l'aurons plus dans un monde globalement en d\u00e9crue \u00e9nerg\u00e9tique. \n\nNous n'avons que 28 ans pour arriver \u00e0 diviser les \u00e9missions plan\u00e9taires par 3, ou pour avoir en Europe une division par 2 \u00e0 10 du p\u00e9trole disponible (https://bit.ly/3E6qJFY ). Nous n'avons pas le luxe de t\u00e2tonner en se disant que l'on changera de plan s'il est mauvais. Si le plan est mauvais ca se paiera en drames." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6981513753645178881,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6981513754509254656,urn:li:activity:6981513754509254656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 311, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6981513754509254656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6981513754509254656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6981513754509254656", + "threadId": "activity:6981513754509254656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6981513754509254656", + "urn": "urn:li:activity:6981513754509254656", + "numComments": 540, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6981513754509254656", + "reactionTypeCounts": [ + { + "count": 4096, + "reactionType": "LIKE" + }, + { + "count": 655, + "reactionType": "INTEREST" + }, + { + "count": 647, + "reactionType": "MAYBE" + }, + { + "count": 127, + "reactionType": "PRAISE" + }, + { + "count": 45, + "reactionType": "APPRECIATION" + }, + { + "count": 25, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6981513754509254656", + "numLikes": 5595, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6981513754509254656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5600, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 Edited \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6981141249013514240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6981141249013514240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6981141249013514240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6981141249013514240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-plan-v%C3%A9lo-sera-dot%C3%A9-de-250millions-activity-6981141249013514240-fooP?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6981141248136908800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6981141249013514240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6981141249013514240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6981141249013514240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6981141248136908800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "mCUXyAx4wu2SpFTKXg2oUA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6981141249013514240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8974255089298672142", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675837472488?e=1677240000&v=beta&t=DzwOTXa6wji5A9dXCPMU-xN7_1ximpYDQzxZlbp0Z0A", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675837472488?e=1677240000&v=beta&t=Ty3FCGMfBGdfCpLRSQSPGSamWGUudBVl3_UFQiN62og", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675837472488?e=1677240000&v=beta&t=9I4bDDtebnefaNqZp7FhXr2ZCyMy1DePDclOqsBFI1Q", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675837472488?e=1677240000&v=beta&t=lkvRK_H_eoKdafqRITbG7GAQQMmjDF6IraYb1vpoL30", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHOxZWqTgvD-w/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8974255089298672142)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8974255089298672142)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le plan v\u00e9lo sera \u00ab dot\u00e9 de 250 millions d\u2019euros en 2023 \u00bb, annonce Matignon by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/economie/article/2022/09/20/le-plan-velo-sera-dote-de-250-millions-d-euros-en-2023-annonce-matignon_6142361_3234.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le plan v\u00e9lo sera \u00ab\u00a0dot\u00e9 de 250\u00a0millions d\u2019euros en\u00a02023\u00a0\u00bb, annonce Matignon" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6981141248136908800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le gouvernement va d\u00e9penser 250 millions en 2023 pour le v\u00e9lo, essentiellement pour les infrastructures. Que peut-on faire avec une telle somme ? \n- construire 2500 km de pistes cyclables en bordure d'une voirie existante, ou 800 km si ce n'est pas le cas\n- construire une petite centaine de franchissements d'obstacles (passerelle au-dessus d'une voie rapide, tunnel sous une 2x2 voies, etc).\n\nPour donner une base de comparaison, c'est le cout de 10 km de tramway ou 40 km d'autoroute neuve. Tous modes confondus notre pays met environ 15 \u00e0 20 milliards d'euros par an dans les infrastructures de transport (https://bit.ly/3y19WA4 ). Le plan annonc\u00e9 par le gouvernement repr\u00e9sente donc 1% de cette somme.\n\nC'est assur\u00e9ment mieux que rien, et plus qu'avant. Mais pour un pays qui va voir 50% \u00e0 90% de son p\u00e9trole dispara\u00eetre d'ici \u00e0 2050 (https://bit.ly/3CfVHtR ), ce ne peut \u00eatre qu'un d\u00e9but. Dans le Plan de Transformation de l'Economie Fran\u00e7aise, le v\u00e9lo sous toutes ses formes participe de mani\u00e8re tr\u00e8s significative \u00e0 la d\u00e9crue de la circulation automobile en ville et en zone p\u00e9riurbaine.\n\nMais en fait la mani\u00e8re la plus utile de d\u00e9penser cet argent aurait probablement \u00e9t\u00e9 de former tous les gestionnaires de voirie des collectivit\u00e9s locales pour qu'ils aient envie de bien faire en mati\u00e8re de pistes cyclables et de garages \u00e0 v\u00e9lo. On ferait ainsi effet de levier sur les d\u00e9penses de voirie de ces entit\u00e9s, qui sont de loin les premiers clients du BTP. Apprendre aux enfants des rudiments de code de la voirie est aussi une excellente id\u00e9e.\n\nA ce propos, le modeste cycliste occasionnel que je suis propose aux \u00e9lus locaux quelques petits conseils pour am\u00e9liorer le sort des convertis \u00e0 la p\u00e9dale :\n\n- tous les cyclistes ne vont pas \u00e0 la m\u00eame vitesse. Il faut donc permettre le d\u00e9passement entre cycles avec des voies assez larges \n\n- \u00e9viter les itin\u00e9raires mixtes pi\u00e9tons/cyclistes. La personne qui va au travail \u00e0 25 km/h - et qui ne va pas se limiter \u00e0 5 km/h \u00e0 cause de ce qui suit - n'a pas grand chose en commun avec le pi\u00e9ton qui d\u00e9ambule \u00e0 5 km/h.\n\n- \u00e9vitez de mettre des chicanes aux intersections. Elles causent plus d'accidents qu'elles n'en \u00e9vitent (en particulier par temps de pluie quand la chauss\u00e9e est glissante) parce que tout cycliste cherchera \u00e0 la passer avec le maximum d'\u00e9lan pour \u00e9viter de forcer pour r\u00e9-acc\u00e9l\u00e9rer derri\u00e8re.\n\n- limitez au maximum la cohabitation avec les voitures. Ces derni\u00e8res ont une f\u00e2cheuse tendance \u00e0 occuper tout l'espace et \u00e0 d\u00e9passer de mani\u00e8re imprudente. Accessoirement, les routes \u00e9tant pay\u00e9es avec les imp\u00f4ts locaux et non avec l'argent des seuls automobilistes, il n'y a aucune raison pour que le/la cycliste (qui paye autant d'imp\u00f4ts locaux que les automobilistes) ait droit \u00e0 moins de voirie que les conducteurs d'engins motoris\u00e9s.\n\n- pr\u00e9voyez suffisamment de places dans les parkings \u00e0 v\u00e9lo. \n\n- et surtout faites appel \u00e0 des personnes \"qui savent\" !\n\nMerci :) " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6981141248136908800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6981141249013514240,urn:li:activity:6981141249013514240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 587, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6981141249013514240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6981141249013514240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6981141249013514240", + "threadId": "activity:6981141249013514240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6981141249013514240", + "urn": "urn:li:activity:6981141249013514240", + "numComments": 846, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6981141249013514240", + "reactionTypeCounts": [ + { + "count": 13413, + "reactionType": "LIKE" + }, + { + "count": 1139, + "reactionType": "PRAISE" + }, + { + "count": 441, + "reactionType": "APPRECIATION" + }, + { + "count": 333, + "reactionType": "EMPATHY" + }, + { + "count": 277, + "reactionType": "INTEREST" + }, + { + "count": 271, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6981141249013514240", + "numLikes": 15874, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6981141249013514240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 15889, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6980907047571628032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6980907047571628032", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6980907047571628032)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6980907047571628032)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_r%C3%A9formes-pourquoi-macron-pr%C3%A9f%C3%A8re-la-retraite-activity-6980907047571628032-cghs?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6980907046959202304", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6980907047571628032", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6980907047571628032,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6980907047571628032,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6980907046959202304", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "QhZIglGyBKsYG8B4mq1Alg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6980907047571628032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7665563469096296139", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676484425727?e=1677240000&v=beta&t=YlJxyOzrxUIufbGqHR8uNNPc86hpHNf179AUrd8CMz8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676484425727?e=1677240000&v=beta&t=fUTNNtMNEDz3I8GjM5x2ru9QpJqhNyA4sn0zSZIwHs4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676484425727?e=1677240000&v=beta&t=0dzoQR5zHIcMvoDH07W-1fwWbqcHBLhLBBXupYxEZEw", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676484425728?e=1677240000&v=beta&t=ob-DhRexoIqqgf20vbHtrzUYI1fMixDaCHKhAIS_124", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHEUNnSwh4LNQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7665563469096296139)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7665563469096296139)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: R\u00e9formes : pourquoi Macron pr\u00e9f\u00e8re la retraite au climat by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/politique-societe/emmanuel-macron-president/reformes-pourquoi-macron-prefere-la-retraite-au-climat-1852151" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "R\u00e9formes\u00a0: pourquoi Macron pr\u00e9f\u00e8re la retraite au climat" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6980907046959202304,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "2 ans apr\u00e8s la mise en route du Plan de Transformation de l'Economie Fran\u00e7aise, The Shift Project est \u00e0 l'honneur dans Les Echos, en l'esp\u00e8ce en \u00e9tant cit\u00e9 dans l'\u00e9dito politique du jour.\n\nL\u00e0 o\u00f9 ca devient int\u00e9ressant, c'est que la d\u00e9marche que nous avons mise en route semble, si l'on lit entre les lignes, \u00eatre cit\u00e9e en exemple par la macronie pour pousser son repr\u00e9sentant le plus haut plac\u00e9 \u00e0 s'illustrer par ses actions sur le climat plut\u00f4t que par ses actions sur les retraites.\n\nDe fait, il est peu probable que l'histoire se souvienne du N\u00e8 pr\u00e9sident qui aura r\u00e9form\u00e9 ce syst\u00e8me, juste apr\u00e8s le N-1\u00e8me et juste avant le N+1\u00e8me. Les retraites \u00e9tant un enfant de l'\u00e9nergie abondante, la d\u00e9crue \u00e9nerg\u00e9tique va p\u00e9riodiquement nous pousser \u00e0 y revenir, puisqu'\u00e0 chaque fois les pr\u00e9visions de recettes futures p\u00e8cheront par exc\u00e8s d'optimisme, car l'inverse est difficile \u00e0 vendre (en pratique ces recettes d\u00e9pendent du PIB qui est toujours pr\u00e9vu plus haut qu'il n'est r\u00e9ellement).\n\nPar contre l'histoire pourrait se souvenir du premier pr\u00e9sident qui aura un plan s\u00e9rieux - comprendre compatible avec la physique du probl\u00e8me - pour permettre \u00e0 chacun(e) d'exercer un emploi, d'esp\u00e9rer du lendemain et d'\u00eatre \u00e0 peu pr\u00e8s heureux dans un monde qui se d\u00e9carbone et s'accommode des limites plan\u00e9taires.\n\nNe pas avoir cet objectif, quand on est le chef d'un des deux \u00e9tats structurants de l'Union Europ\u00e9enne, quand on dirige un pays qui a tant contribu\u00e9 \u00e0 innover sur le plan des m\u00e9thodes et des syst\u00e8mes, quand on peut \"dire la v\u00e9rit\u00e9\" puisque ne pouvant \u00eatre r\u00e9\u00e9lu, et dans l'\u00e9poque pr\u00e9sente, n'est-il pas clairement manquer d'ambition ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6980907046959202304,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6980907047571628032,urn:li:activity:6980907047571628032,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 49, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6980907047571628032,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6980907047571628032,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6980907047571628032", + "threadId": "activity:6980907047571628032", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6980907047571628032", + "urn": "urn:li:activity:6980907047571628032", + "numComments": 136, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6980907047571628032", + "reactionTypeCounts": [ + { + "count": 1514, + "reactionType": "LIKE" + }, + { + "count": 121, + "reactionType": "PRAISE" + }, + { + "count": 90, + "reactionType": "MAYBE" + }, + { + "count": 35, + "reactionType": "INTEREST" + }, + { + "count": 28, + "reactionType": "APPRECIATION" + }, + { + "count": 18, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6980907047571628032", + "numLikes": 1806, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6980907047571628032", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1809, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6980484983194832896,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6980484983194832896", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6980484983194832896)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6980484983194832896)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_faut-il-vraiment-lutter-contre-linflation-activity-6980484983194832896-Uf5X?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6980484982276276224", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6980484983194832896", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6980484983194832896,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6980484983194832896,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6980484982276276224", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "i6h8hwDBEjU0eiQmmYnrRg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6980484983194832896,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8778973100178915041", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676503210875?e=1677240000&v=beta&t=IBtRkApfYB0Fu9-pnRSurzB_DQOB3NpY-t9mcmUKNPo", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676503210875?e=1677240000&v=beta&t=gsbfDgKjAWK10wNrBPPL17m_FA4TpA6N9Q2vFlqhKM0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676503210876?e=1677240000&v=beta&t=DpnjbT_RHU1r_zM6Q8pduT3SA31MSZz6td7z8uWvOdo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676503210876?e=1677240000&v=beta&t=IKRljYOlc_YdQ-w0P60_C9DCvLbVK8aaMHHbvswLbVs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG8EsYNNPevyQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8778973100178915041)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8778973100178915041)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Faut-il vraiment lutter contre l'inflation ? by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/faut-il-vraiment-lutter-contre-linflation-1851635" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Faut-il vraiment lutter contre l'inflation\u00a0?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6980484982276276224,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans le monde infini, la question ne se pose pas : s'il y a de l'inflation, cela signifie qu'il y a trop d'argent en circulation pour les biens et services disponibles, donc il faut restreindre l'acc\u00e8s \u00e0 l'argent, donc les banques centrales montent les taux. \n\nSi une r\u00e9cession doit suivre, le mal ne peut \u00eatre que temporaire, puisque le monde est infini, et que c'est juste une mauvaise passe avant le retour de la croissance. Cette derni\u00e8re est \u00e9videmment garantie sur facture \"\u00e0 long terme\", puisque c'est le conseil d'orientation des retraites qui le dit (voir tableau 1.4 page 44 de https://lnkd.in/d3Hef-HS qui \"pr\u00e9voit\" une croissance du PIB jusqu'en 2070, ou encore la figure 1.14 page 40, qui nie la baisse constante de la croissance de la productivit\u00e9 du travail depuis 1980, qui provient de la contrainte croissante sur la disponibilit\u00e9 en machines au travail).\n\nMais dans le monde fini, faut-il lutter contre l'inflation ? Ce n'est pas dans ce cadre que se place Jean-Marc Vittori dans cette tribune. Il se contente de souligner que, d\u00e8s \u00e0 pr\u00e9sent, diminuer l'inflation prot\u00e8ge certes les revenus des gens modestes, mais les prive d'une possibilit\u00e9 de rembourser leurs emprunts \u00e0 bon compte (car si les taux r\u00e9els baissent, ou deviennent n\u00e9gatifs, cela avantage les gens endett\u00e9s de mani\u00e8re significative par rapport \u00e0 leur revenu).\n\nMais il aurait pu prolonger la r\u00e9flexion en se demandant quelle \u00e9tait la bonne marche \u00e0 suivre dans un monde o\u00f9 le PIB ne va pas augmenter mais baisser, du moins si on le compte toujours de la m\u00eame mani\u00e8re, parce que les flux physiques qui sont \u00e0 la base de la machine \u00e9conomique vont baisser (\u00e0 cause de la contraction \u00e9nerg\u00e9tique). \n\nCar, dans ce monde l\u00e0, le pouvoir d'achat r\u00e9el va s'\u00e9roder. Cela pose \u00e9videmment la question cruciale de la r\u00e9partition de l'effort - et il est \u00e9vident que ceux qui ont beaucoup doivent y prendre une plus grande part par personne que ceux qui ont peu - mais cela pose aussi la question non moins cruciale de savoir quel sera le moyen le moins douloureux : par marches d'escalier - avec de temps en temps un grand craquement quelque part - ou de mani\u00e8re continue ?\n\nDans ce dernier cas l'inflation n'est pas n\u00e9cessairement la plus mauvaise mani\u00e8re de s'attaquer au probl\u00e8me. Cette conclusion peut sembler tr\u00e8s iconoclaste. Dans le monde infini elle l'est de mani\u00e8re certaine. Dans le monde vers lequel nous nous dirigeons il faudrait y r\u00e9fl\u00e9chir un peu quand m\u00eame." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6980484982276276224,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6980484983194832896,urn:li:activity:6980484983194832896,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 50, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6980484983194832896,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6980484983194832896,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6980484983194832896", + "threadId": "activity:6980484983194832896", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6980484983194832896", + "urn": "urn:li:activity:6980484983194832896", + "numComments": 93, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6980484983194832896", + "reactionTypeCounts": [ + { + "count": 918, + "reactionType": "LIKE" + }, + { + "count": 190, + "reactionType": "MAYBE" + }, + { + "count": 141, + "reactionType": "INTEREST" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6980484983194832896", + "numLikes": 1279, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6980484983194832896", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1279, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6980062471239647232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6980062471239647232", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6980062471239647232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6980062471239647232)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-dix-ans-225millions-de-personnes-sont-activity-6980062471239647232-0eNK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6980062470342111232", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6980062471239647232", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6980062471239647232,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6980062471239647232,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6980062470342111232", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "W3+/Tw6KgG8ElTbmpjP9Pw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6980062471239647232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6999843080746754134", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1663645581210?e=1677240000&v=beta&t=-Vju1XBvg_dx1RlH9HkPOJ6z0SNpvxnjVoQfiMjdeJM", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1663645581210?e=1677240000&v=beta&t=X-qEVWmfFfqy1gu5gWmp-ACfgx-D1Y6irW111CiXokQ", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1663645581210?e=1677240000&v=beta&t=ChuVffOxsIeG12LrVtunY2i63jpURGGuemwcKEA8tiA", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1663645581210?e=1677240000&v=beta&t=jtgY7tReDt1u5zmLz8h1VhV1FoFcMeyCmyRYu_cb4jM", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHPGNfE32aXFQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6999843080746754134)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6999843080746754134)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: En dix ans, 225 millions de personnes sont devenues r\u00e9fugi\u00e9es climatiques by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/asie-pacifique/en-dix-ans-225-millions-de-personnes-sont-devenues-refugiees-climatiques-1788943" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "En dix ans, 225\u00a0millions de personnes sont devenues r\u00e9fugi\u00e9es climatiques" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6980062470342111232,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les Echos publient un article bas\u00e9 sur une publication (que je suppose r\u00e9cente) de l' \"Internal Displacement Monitoring Centre\" sur les r\u00e9fugi\u00e9s climatiques en Asie sur a p\u00e9riode 2010 - 2021 (https://lnkd.in/e35jb6Sa ). \n\nPuisqu'elles se terminent \u00e0 fin 2021, les analyses n'incluent pas l'\u00e9pisode particuli\u00e8rement s\u00e9v\u00e8re qui vient de se produire au Pakistan, avec des inondations qui concernent plus de 100.000 km2 (et qui mettront parfois 6 mois \u00e0 dispara\u00eetre) et 8 millions de r\u00e9fugi\u00e9s (https://lnkd.in/ePf62QFU ).\n\nIl serait en fait plus juste de parler de \"r\u00e9fugi\u00e9s m\u00e9t\u00e9orologiques\", car les personnes qui ont \u00e9t\u00e9 oblig\u00e9es de quitter leur domicile l'ont fait \u00e0 cause d'un \"\u00e9v\u00e9nement extr\u00eame\", qui est du registre de la m\u00e9t\u00e9o, la r\u00e9p\u00e9tition de ces \u00e9v\u00e9nements \u00e9tant par contre du registre du climat. Le document ne dit pas quelle est la p\u00e9riode moyenne de d\u00e9placement (car une fois l'inondation partie une fraction des d\u00e9plac\u00e9s retourne l\u00e0 o\u00f9 elle \u00e9tait ; c'est \u00e9videmment moins vrai avec les tremblements de terre et glissements de terrain qui sont cependant la cause de beaucoup moins de mouvements de population).\n\nEn agr\u00e9g\u00e9 sur 11 ans, l'Asie concentre l'essentiel de ces r\u00e9fugi\u00e9s dans le monde, et au sein de la r\u00e9gion c'est la Chine qui arrive en t\u00eate. Ces r\u00e9fugi\u00e9s sont pour l'essentiel internes au pays, et par ailleurs les deux causes majeures, et de tr\u00e8s loin (plus de 90% du total) sont les inondations et les temp\u00eates. \n\nOutre les inondations, un ouragan majeur dans l'est de la r\u00e9gion peut conduire \u00e0 l'\u00e9vacuation de millions de personnes, ce qui fera probablement plus de d\u00e9c\u00e8s que la violence des \u00e9l\u00e9ments au moment du passage de l'ouragan, que dans la r\u00e9gion on appelle typhon ou cyclone.\n\nLe changement climatique devrait malheureusement accro\u00eetre la pression dans le mauvais sens :\n- il va augmenter les pluies de moussons en Asie\n- ces pluies causeront des inondations encore plus fortes si il y a des \u00e9pisodes plus secs pendant la saison s\u00e8che, parce que cela diminue la perm\u00e9abilit\u00e9 des sols\n- enfin le r\u00e9chauffement des eaux stagnantes favorisera probablement la diss\u00e9mination des maladies, qui sont souvent la premi\u00e8re cause de d\u00e9c\u00e8s en pareil cas (les gens n'ont plus acc\u00e8s \u00e0 de l'eau saine et/ou se contaminent les uns les autres).\n\nPar ailleurs l'urbanisation galopante de ces r\u00e9gions concentre les gens dans des villes souvent situ\u00e9es en plaine et pr\u00e8s de fleuves, donc avec une configuration particuli\u00e8rement propice pour conduire \u00e0 des victimes en nombre en cas de fortes pluies (qui vont augmenter dans la zone en r\u00e9ponse au r\u00e9chauffement climatique).\n\nDans une zone fortement peupl\u00e9e, il n'y a \u00e9videmment pas de solution miracle \u00e0 court terme pour contrer ce ph\u00e9nom\u00e8ne. Et plus ce genre de mouvement interne augmente, plus cela affecte de proche en proche le reste de la zone, voire le reste du monde. Il est h\u00e9las \u00e0 craindre que nous n'en soyons qu'au d\u00e9but." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6980062470342111232,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6980062471239647232,urn:li:activity:6980062471239647232,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 13, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6980062471239647232,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6980062471239647232,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6980062471239647232", + "threadId": "activity:6980062471239647232", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6980062471239647232", + "urn": "urn:li:activity:6980062471239647232", + "numComments": 40, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6980062471239647232", + "reactionTypeCounts": [ + { + "count": 515, + "reactionType": "LIKE" + }, + { + "count": 147, + "reactionType": "INTEREST" + }, + { + "count": 95, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6980062471239647232", + "numLikes": 784, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6980062471239647232", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 784, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6979740834556436480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6979740834556436480", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6979740834556436480)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6979740834556436480)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_daimler-truck-d%C3%A9voile-le-tout-premier-camion-activity-6979740834556436480-5Wg-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6979740833826643968", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6979740834556436480", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6979740834556436480,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6979740834556436480,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6979740833826643968", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "ZKCw5Ts6AHfJxAkD9vGHPQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6979740834556436480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8351554481181005847", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 612, + "fileIdentifyingUrlPathSegment": "800/0/1676222151316?e=1677240000&v=beta&t=0-8Jp_lVL1EzUOavQHWUQlNAcGCXj1189OAwx6koPyc", + "expiresAt": 1677240000000, + "height": 306 + }, + { + "width": 612, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676222151316?e=1677240000&v=beta&t=KeBLIq1XKH4rG8zpvn4HC3JTjZi0SHd0xM8comxHaAw", + "expiresAt": 1677240000000, + "height": 306 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676222151316?e=1677240000&v=beta&t=W72KfbWljh5KUE_kbaRgat6jXfqNB26o3AT9UUDuyWI", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676222151317?e=1677240000&v=beta&t=zNLECwASa0ExdqKODFdNPzFPlvfViWmjHyNHVXGzWJQ", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHsQU8MaIdFeQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Amazon et le groupe allemand de logistique Rhenus vont tester l'eActros en mode de fonctionnement r\u00e9el \u00e0 partir de 2023. @Daimler" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8351554481181005847)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8351554481181005847)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "latribune.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Daimler Truck d\u00e9voile le tout premier camion \u00e9lectrique et prend de vitesse Tesla by latribune.fr", + "actionTarget": "https://www.latribune.fr/entreprises-finance/industrie/automobile/daimler-truck-devoile-le-tout-premier-camion-electrique-et-prend-de-vitesse-tesla-933001.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Daimler Truck d\u00e9voile le tout premier camion \u00e9lectrique et prend de vitesse Tesla" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6979740833826643968,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il n'y a pas que les voitures et les avions qui utilisent du p\u00e9trole : il y a aussi les engins de transport des marchandises, dont les camions. Pourtant, quand on pense \"\u00e9lectrification des transports\", c'est d'abord au transports de personnes (voitures voire v\u00e9los) que nous pensons.\n\nMais, paradoxalement, la voiture est aujourd'hui moins vitale que le camion. Si demain matin 90% des voitures fran\u00e7aises \u00e9taient inutilisables, que se passerait-il ? Tous ceux qui habitent \u00e0 moins de 10 km de leur travail se l\u00e8veraient une heure et demie plus t\u00f4t et marcheraient, et \u00e0 moins de 20 km ils prendraient un v\u00e9lo. A plus on partagerait les voitures restantes transform\u00e9es en taxi. Bus et train seraient aussi mieux remplis.\n\nLes courses seraient faites \u00e0 pied ou v\u00e9lo avec un sac \u00e0 dos. Nous arr\u00eaterions de partir en vacances en voiture, et la vie sociale en prendrait un coup. Un certain nombre de personnes accepteraient un travail un peu moins int\u00e9ressant mais plus proche. Etc. Tout cela serait p\u00e9nible voire douloureux, mais rarement mortel.\n\nMais si demain matin nous n'avions plus que 10% des camions dans le pays, 90% des marchandises - qui en tonnage sont pour un tiers de la nourriture - ne circuleraient plus. La disette menacerait partout (sans camions les villes meurent de faim au sens propre), de nourriture comme de casseroles ou de d\u00e9tergents.\n\nC'est dire que le d\u00e9clin p\u00e9trolier, qui arrive d\u00e9j\u00e0 et va massivement s'amplifier dans les d\u00e9cennies \u00e0 venir, pour des raisons de climat ou de g\u00e9ologie (https://bit.ly/3DPdMQv ), pose une question bien plus cruciale que celle du d\u00e9placement des personnes \u00e0 notre \u00e9conomie mondialis\u00e9e, o\u00f9 plus rien n'est vraiment local (m\u00eame la patate locale a n\u00e9cessit\u00e9 un tracteur en acier pas local et fonctionnant au p\u00e9trole pas local) : le d\u00e9placement des marchandises. \n\nDe ce fait, s'il doit y avoir - et il y aura - une contrainte physique sur les m\u00e9taux pour batteries, vaut-il mieux d'abord garder des voitures d'une tonne, remplies avec une seule personne une tr\u00e8s large partie du temps, et les \u00e9lectrifier, ou passer la voiture \u00e0 p\u00e9trole d'une tonne au v\u00e9lo \u00e9lectrique (avec remorque pour les enfants et les courses) de 20 kg, et \u00e9lectrifier les camions ? (et d\u00e9velopper le train ?)\n\nAvec ce qui est \u00e9crit ci-dessus, poser la question c'est y r\u00e9pondre. Apr\u00e8s, la bonne question est de savoir comment \u00e9lectrifier le fret. Car on peut soit avoir des camions avec des grosses batteries pour faire 500 km, comme le propose Daimler, soit transformer les camions en trolleybus et les faire circuler sur l'\u00e9lectricit\u00e9 du r\u00e9seau tant qu'ils sont sur autoroutes et voies majeures (https://bit.ly/3BKTlBz ), pour utiliser une plus petite batterie batterie juste sur le segment terminal, ou assurer ce dernier avec d'autres v\u00e9hicules.\n\nDans un monde o\u00f9 les mat\u00e9riaux (qui en Europe \"viennent de loin\" et demandent des bateaux... au p\u00e9trole !) se rar\u00e9fient rapidement, mieux vaut affecter les batteries d'abord aux v\u00e9los et au fret." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6979740833826643968,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6979740834556436480,urn:li:activity:6979740834556436480,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 289, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6979740834556436480,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6979740834556436480,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6979740834556436480", + "threadId": "activity:6979740834556436480", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6979740834556436480", + "urn": "urn:li:activity:6979740834556436480", + "numComments": 466, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6979740834556436480", + "reactionTypeCounts": [ + { + "count": 4943, + "reactionType": "LIKE" + }, + { + "count": 657, + "reactionType": "MAYBE" + }, + { + "count": 641, + "reactionType": "INTEREST" + }, + { + "count": 90, + "reactionType": "PRAISE" + }, + { + "count": 34, + "reactionType": "APPRECIATION" + }, + { + "count": 27, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6979740834556436480", + "numLikes": 6392, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6979740834556436480", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6395, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6979108553403834368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1024481", + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "fYJXirmeS5CCariKViW8Iw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "fYJXirmeS5CCariKViW8Iw==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Carbone 4", + "actionTarget": "https://www.linkedin.com/company/carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1024481" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "118,673 followers" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6978631752084766720,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6978631752084766720", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6978631752084766720)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6978631752084766720)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/carbone-4_pre-registration-form-activity-6978631752084766720-ltQl?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6978631751220797441", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1024481", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6978631752084766720,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6978631752084766720,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6978631751220797441", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "KFTWXDC5rqOPx2dVqLJ9RQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6978631752084766720,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9206050142186431593", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676202008818?e=1677240000&v=beta&t=sSr8DqQiS9WZMGHP0r2khRv1c6NymFegnJ3FiaOlmSg", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676202008818?e=1677240000&v=beta&t=vakv1XxdhQo-RJghm6u8UcCjx3qUyhR5z30pbLY95ig", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676202008819?e=1677240000&v=beta&t=GJdHRNLy9iEK4XgjtRMcromt48CDnxLle-J4r4309bY", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676202008819?e=1677240000&v=beta&t=Xb_nTrLKdsRnNXmB-GZMABxtmWLN1n0XxepT0h2UEDI", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHSQ2HHD2pfcw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9206050142186431593)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9206050142186431593)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "docs.google.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: PRE-REGISTRATION FORM by docs.google.com", + "actionTarget": "https://docs.google.com/forms/d/e/1FAIpQLScr1Gd5kqtsnmTJAPqcHUwLtfjNlvw07wE-DP9LoHeTGS3WdQ/viewform" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "PRE-REGISTRATION FORM" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6978631751220797441,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 824, + "length": 7, + "miniCompany": { + "objectUrn": "urn:li:company:86056852", + "entityUrn": "urn:li:fs_miniCompany:86056852", + "name": "aDryada", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1652630688829?e=1684972800&v=beta&t=lDQaCZ9AQbbAeQaMenwzOpabdqYtMtpmPdRyGFZyuy0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1652630688829?e=1684972800&v=beta&t=WHcAkjlhdGEIHYgXFx0i7nN6UT29bSuIyXubHYyfWJs", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1652630688829?e=1684972800&v=beta&t=OLZt1jbymjJGGYOmmPJCINh2cQ4BG_k2PjyE4wOBdUk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQHAEoAtkkbzHg/company-logo_" + } + }, + "universalName": "adryada", + "dashCompanyUrn": "urn:li:fsd_company:86056852", + "trackingId": "KgT9xo3QSxO7CshffvdarQ==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 835, + "length": 23, + "miniCompany": { + "objectUrn": "urn:li:company:66970984", + "entityUrn": "urn:li:fs_miniCompany:66970984", + "name": "Le Printemps des Terres", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1595954207900?e=1684972800&v=beta&t=nj9yBceS8jvH9ID_OOgK8Fc_WeCtuXq8b8_tLbPnIuU", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1595954207900?e=1684972800&v=beta&t=qBBRkP37jGOIUn8aC42gFQC45nwj_uTYm-6gC9NzsYo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1595954207900?e=1684972800&v=beta&t=hDR4gvACcwHbNApkF9A_0bICQlmvKnsLoWLj737D-Ew", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGqSRYE9pbixA/company-logo_" + } + }, + "universalName": "le-printemps-des-terres", + "dashCompanyUrn": "urn:li:fsd_company:66970984", + "trackingId": "BfScti0US4O9ItuVkCSOLQ==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 880, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "Ku4HAVBURvat2zFA8RXXXQ==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 896, + "length": 36, + "miniCompany": { + "objectUrn": "urn:li:company:145469", + "entityUrn": "urn:li:fs_miniCompany:145469", + "name": "Museum national d'Histoire naturelle", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1668002222203?e=1684972800&v=beta&t=nQM9ykui5gkqZfQXJYlQMW0jYmyhP9eH2JOue0JGKos", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1668002222203?e=1684972800&v=beta&t=hW8UmTT1zV8SjujCJ097e9Ll6iY-S5uSC-hOgy-btgU", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1668002222203?e=1684972800&v=beta&t=vQXbLL2VhvEthklh0K95AORi4jDXMDB43sRBYUHlkB8", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGMeo4Aw3MIHA/company-logo_" + } + }, + "universalName": "museum-national-d'histoire-naturelle", + "dashCompanyUrn": "urn:li:fsd_company:145469", + "trackingId": "oSqxqh1FSRelEl274cXuvw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Lancement de l'Organization for Biodiversity Certificates\nVers un m\u00e9canisme juste et op\u00e9rationnel du\u00a0financement de la biodiversit\u00e9\n\nDe nombreuses entreprises et organisations publiques souhaitent initier des d\u00e9marches de protection de la biodiversit\u00e9, elles sont cependant souvent frein\u00e9es par une difficult\u00e9 majeure\u00a0: elles ne peuvent\u00a0\u00e9valuer\u00a0les effets positifs des actions qu\u2019elles mettent en \u0153uvre au niveau local,\u00a0ou qu\u2019elles veulent financer, faute de disposer d\u2019un outil adapt\u00e9.\u00a0 \n\nIl est pourtant indispensable qu\u2019elles initient et financent des projets d\u2019envergure de restauration et conservation des \u00e9cosyst\u00e8mes. Pr\u00e8s de\u00a0800 milliards de dollars\u00a0devraient en effet \u00eatre investis chaque ann\u00e9e pour enrayer l\u2019\u00e9rosion de la biodiversit\u00e9 d\u2019ici \u00e0 2030. Des montants que les Etats seuls ne peuvent engager.\n\nFond\u00e9e par aDryada et Le Printemps des Terres, en partenariat avec Carbone 4 et le Mus\u00e9um national d'Histoire naturelle,\u00a0l\u2019Organization for Biodiversity Certificates (OBC), qui rassemble de nombreux experts et ONG, a pour mission de cr\u00e9er et de d\u00e9velopper cet outil\u00a0: un m\u00e9canisme juste et op\u00e9rationnel pour le financement de la conservation et de la restauration des \u00e9cosyst\u00e8mes. \n\n\u00ab\u00a0Contribution positive\u00a0\u00bb et non \u00ab\u00a0compensation\u00a0\u00bb, \u00ab\u00a0\u00e9valuer la\u00a0qualit\u00e9 des habitats\u00a0\u00bb plus que \u00ab\u00a0compter les esp\u00e8ces\u00a0\u00bb et \u00ab\u00a0consensus scientifique, m\u00eame imparfait\u00a0\u00bb sont les ma\u00eetres mots d\u2019OBC, le tout en \u00ab\u00a0open-source\u00a0\u00bb, naturellement.\n\n\u27a1\ufe0f Demandez votre invitation pour le lancement officiel de l\u2019initiative, le 4 octobre \u00e0 18h \u00e0 Paris.\n\nhttps://lnkd.in/eFA4TNPs" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6978631751220797441,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6978631752084766720,urn:li:activity:6978631752084766720,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 0, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6978631752084766720,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6978631752084766720,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6978631752084766720", + "threadId": "activity:6978631752084766720", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6978631752084766720", + "urn": "urn:li:activity:6978631752084766720", + "numComments": 0, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6978631752084766720", + "reactionTypeCounts": [ + { + "count": 59, + "reactionType": "LIKE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "INTEREST" + }, + { + "count": 1, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6978631752084766720", + "numLikes": 66, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6978631752084766720", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 66, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6979108553403834368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6979108553403834368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6979108553403834368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pre-registration-form-activity-6979108553403834368-46ml?utm_source=share&utm_medium=member_desktop" + }, + { + "subActionsMenu": { + "title": "Who would you like to unfollow?", + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + } + ] + }, + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_ACTIONS", + "text": "Unfollow" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6979108552778903552", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6979108553403834368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6979108553403834368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6979108553403834368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6979108552778903552", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "KFTWXDC5rqOPx2dVqLJ9RQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6979108553403834368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6979108552778903552,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le 4 octobre prochain, Carbone 4 participe \u00e0 un \u00e9v\u00e9nement de pr\u00e9sentation d'un travail m\u00e9thodologique qui nous a pris \"un certain temps\", et qui porte sur la mani\u00e8re de compter une op\u00e9ration de pr\u00e9servation ou de restauration de la biodiversit\u00e9.\n\nNotre entreprise s'est en effet lanc\u00e9e dans ce domaine il y a d\u00e9sormais un an, \u00e0 la fois dans le domaine financier (via l'offre BIA-GBS, \u00e9labor\u00e9e en partenariat avec CDC Biodiversit\u00e9, et destin\u00e9e aux acteurs du secteur) et dans le domaine du conseil (incidemment nous cherchons un mouton ou une brebis \u00e0 5 pattes pour compl\u00e9ter l'\u00e9quipe : https://lnkd.in/eEUKcFKZ ).\n\nComme souvent quand nous d\u00e9marrons une activit\u00e9, nous avons besoin de proposer quelque chose de diff\u00e9rent de ce qui existe d\u00e9j\u00e0, et le meilleur moyen pour cela est de d\u00e9velopper une m\u00e9thodologie pour r\u00e9pondre \u00e0 une question qui n'est pas encore trait\u00e9e ailleurs.\n\nC'est ce que nous avons fait en l'esp\u00e8ce, la question \u00e9tant de savoir \"comment compter le b\u00e9n\u00e9fice\" quand on fournit des moyens pour \u00e9viter une d\u00e9gradation ou pour restaurer une zone. Vue la vitesse \u00e0 laquelle la biodiversit\u00e9 s'\u00e9rode, nous pensons que ce n'est pas compl\u00e8tement inutile de se pencher sur la question... \n\nSi vous \u00eates dirigeant(e) d'entreprise, expert(e), au sein d'une ONG du secteur, dans le monde acad\u00e9mique, ou journaliste, nous vous proposons de venir \u00e0 cette pr\u00e9sentation. Le formulaire d'inscription et des explications compl\u00e9mentaires figurent ci-dessous." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6979108552778903552,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6979108553403834368,urn:li:activity:6979108553403834368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 10, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6979108553403834368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6979108553403834368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6979108553403834368", + "threadId": "activity:6979108553403834368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6979108553403834368", + "urn": "urn:li:activity:6979108553403834368", + "numComments": 13, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6979108553403834368", + "reactionTypeCounts": [ + { + "count": 115, + "reactionType": "LIKE" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "INTEREST" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6979108553403834368", + "numLikes": 134, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6979108553403834368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 134, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 Edited \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6979067201173495808,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6979067201173495808", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6979067201173495808)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6979067201173495808)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_conf%C3%A9rence-isegoria-jean-marc-jancovici-activity-6979067201173495808-OtxL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6979067200506634242", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6979067201173495808", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6979067201173495808,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6979067201173495808,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6979067200506634242", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "KsKgJ/Jpqf2CIHf2G0zKMg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6979067201173495808,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7513490826761347469", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 480, + "fileIdentifyingUrlPathSegment": "800/0/1675929964789?e=1677240000&v=beta&t=1UohOVelmZ5fyZDUBW0cH53i97EJaEUDm_ykMaoOevM", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675929964789?e=1677240000&v=beta&t=mEYUyFRvAINVlMmvgkh7wLKwR5EumScsJAUJm2BmMIs", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675929964790?e=1677240000&v=beta&t=NvIsp-FAdIA71puvNSV14CIhAdxDhGjHAf_3cmS1Nxo", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675929964790?e=1677240000&v=beta&t=R2qOPzKDyReOxDf0BYPWJDQOrruocVRGYanQnC5r-J0", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG_0Fi702KhFA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7513490826761347469)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7513490826761347469)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Conf\u00e9rence Isegoria - Jean-Marc Jancovici on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=tUYFkZr4RZE" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Conf\u00e9rence Isegoria avec Jean-Marc Jancovici, ancien \u00e9l\u00e8ve de l\u2019Ecole polytechnique et de Telecom ParisTech, est le pr\u00e9sident du think tank The Shift Project dont la mission consiste \u00e0 \u00e9clairer et influencer le d\u00e9bat sur la transition \u00e9nerg\u00e9tique. The..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Conf\u00e9rence Isegoria - Jean-Marc Jancovici" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6979067200506634242,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Que signifie de devoir s'adapter \u00e0 la d\u00e9carbonation pour une \u00e9cole de commerce ? Voil\u00e0 la question qui est au coeur de la r\u00e9flexion men\u00e9e par The Shift Project dans le cadre du projet \"Climasup Business\" (https://lnkd.in/emKRFKAH ), projet dans le cadre duquel j'ai \u00e9t\u00e9 faire une (plus courte que d'habitude !) conf\u00e9rence suivie d'un d\u00e9bat avec des \u00e9tudiant(e)s d'Audencia.\n\nJ'ai propos\u00e9 \u00e0 l'assistance de r\u00e9fl\u00e9chir aux questions suivantes :\n\n- \u00e0 quoi peuvent/doivent servir les dipl\u00f4m\u00e9s d'une \u00e9cole de commerce dans un monde qui se d\u00e9mondialise (l'essentiel des dipl\u00f4m\u00e9s vont actuellement dans des grandes entreprises mondialis\u00e9es, ou chez leurs suppl\u00e9tifs directs que sont les financiers ou les cabinets de conseil en tout genre)\n\n- quels sont les d\u00e9bouch\u00e9s avec une \u00e9conomie qui se contracte de mani\u00e8re structurelle (ce qui est probablement ce qui va se passer pendant l'essentiel de l'existence des \u00e9l\u00e8ves que j'ai eus dans la salle).\n\nEn une heure de temps et avec juste 4 ou 5 questions de l'assistance (des contraintes horaires sur le train ont malheureusement emp\u00each\u00e9 que ce soit plus long), il m'est difficile de \"prendre la temp\u00e9rature\" du public que j'ai en face de moi (pour cela il faut beaucoup de questions et donc beaucoup de temps). \n\nMais d'exp\u00e9rience la r\u00e9action du public apr\u00e8s ce genre d'intervention est pour partie de la col\u00e8re, pour partie du d\u00e9ni, pour partie du \"\u00e0 quoi bon faire des efforts, autant consommer un max tant qu'il en reste\", pour partie \"demain il fera jour\", et pour partie l'envie de d\u00e9croisser la Lune, comme le chantait Brel.\n\nLes jeunes ne sont pas aux manettes. Il est donc illusoire que la g\u00e9n\u00e9ration actuellement aux commandes se repose sur eux, en se disant que, comme les suivants seront mieux outill\u00e9s, autant attendre de leur laisser la place et les probl\u00e8mes seront r\u00e9solus. Nous n'avons pas le temps pour cela. \n\nPar contre, des jeunes bien form\u00e9s peuvent peser \u00e0 court terme sur les d\u00e9cisions de leurs ain\u00e9s : en refusant d'aller travailler pour les entreprises o\u00f9 l'action ne leur semble pas \u00e0 la hauteur. De ma propre exp\u00e9rience, sur les quelques ann\u00e9es qui viennent de s'\u00e9couler, la crainte du \"d\u00e9faut de talents\" est un facteur qui a contribu\u00e9 \u00e0 rendre un certain nombre de dirigeant(e)s d'entreprises plus actifs sur la question environnementale en g\u00e9n\u00e9ral, et le climat en particulier.\n\nJ'esp\u00e8re donc que c'est utile d'aller tenir un \"discours v\u00e9rit\u00e9\" aux \u00e9l\u00e8ves d'\u00e9tablissements de cette nature. Ca va peut-\u00eatre un peu en secouer certain(e)s, mais ce n'est pas compl\u00e8tement sans effet sur les d\u00e9cisions \u00e0 suivre." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6979067200506634242,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6979067201173495808,urn:li:activity:6979067201173495808,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 56, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6979067201173495808,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6979067201173495808,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6979067201173495808", + "threadId": "activity:6979067201173495808", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6979067201173495808", + "urn": "urn:li:activity:6979067201173495808", + "numComments": 92, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6979067201173495808", + "reactionTypeCounts": [ + { + "count": 1408, + "reactionType": "LIKE" + }, + { + "count": 93, + "reactionType": "PRAISE" + }, + { + "count": 68, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + }, + { + "count": 15, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6979067201173495808", + "numLikes": 1631, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6979067201173495808", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1633, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6978711863446360065,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6978711863446360065", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6978711863446360065)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6978711863446360065)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_des-jeunes-polytechniciens-%C3%A9colos-veulent-activity-6978711863446360065-FwGl?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6978711862255177730", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6978711863446360065", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6978711863446360065,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6978711863446360065,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6978711862255177730", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "yvF1eF4SB9tnRCa2MspAeg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6978711863446360065,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7118018715869550648", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675550119029?e=1677240000&v=beta&t=OPlQtJcPNNF3Gth-DAe_b-_bx0UshGeNqPqhpejF1-s", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675550119029?e=1677240000&v=beta&t=ZaBM5-XaNxVSNhdkrGtd2NV55yvlw_ewBZKSZK_xC2I", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675550119029?e=1677240000&v=beta&t=1OSR5V_koYQixRxVzjNf_nOcl7q_u3QG5XTcB5rleTA", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675550119029?e=1677240000&v=beta&t=mmsK-h4sz3mosMEVglbKDE-A0zeaWeU31-BWPc0E8lQ", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFFYbAAz29Kbg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7118018715869550648)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7118018715869550648)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Des jeunes polytechniciens \u00ab \u00e9colos \u00bb veulent changer l\u2019Etat \u00ab de l\u2019int\u00e9rieur \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/campus/article/2022/09/20/des-polytechniciens-ecolos-a-l-assaut-des-hautes-spheres-de-l-etat_6142357_4401467.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Des jeunes polytechniciens \u00ab\u00a0\u00e9colos\u00a0\u00bb veulent changer l\u2019Etat \u00ab\u00a0de l\u2019int\u00e9rieur\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6978711862255177730,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pour celles et ceux qui ont mon \u00e2ge aujourd'hui, rares ont \u00e9t\u00e9 les ing\u00e9nieurs qui ont d\u00e9vou\u00e9 leur vie \u00e0 la question environnementale. Ils et elles ont plut\u00f4t contribu\u00e9 \u00e0 nous immerger dans les usines, les mines et puits de p\u00e9trole, le territoire am\u00e9nag\u00e9 (comprendre b\u00e9tonn\u00e9 !) avec force routes, autoroutes et aires urbaines diverses, les voiture ou le digital.\n\nD'autres ont financiaris\u00e9 l'\u00e9conomie, l'ont mondialis\u00e9e, am\u00e9ricanis\u00e9e, et ont install\u00e9 la pr\u00e9\u00e9minence des indicateurs \u00e9conomiques sur l'\u00e9tat des ressources naturelles. A l'\u00e9poque nous avons toutes et tous (enfin nos parents pour une partie d'entre nous) trouv\u00e9 cela tr\u00e8s bien pour l'essentiel, nonobstant Dumont et quelques autres avant-gardistes.\n\nMais voil\u00e0, les temps changent. A mesure que nous approchons des limites plan\u00e9taires, identifi\u00e9es \"en ordre de grandeur\" par l'\u00e9quipe Meadows et. al il y a 50 ans (https://bit.ly/2HkwcIl ), une fraction croissante des jeunes ing\u00e9nieurs souhaitent autre chose pour leur avenir professionnel. Leur ordre de pr\u00e9f\u00e9rence met le service public en t\u00eate de liste (preuve s'il en est que l'argent ne fait pas tout partout), et ils et elles r\u00eavent d'une \"r\u00e9volution de l'int\u00e9rieur\". \n\nLeur choix est courageux. Car ils portent des comp\u00e9tences et un prisme de lecture qui seront utiles - essentielles m\u00eame - lorsque les bifurcations viendront - nous en vivons d\u00e9j\u00e0 de petites aujourd'hui - et que le pouvoir politique choisira de faire les choses \"en grand\". Mais... ils devront peut-\u00eatre, avant cela, passer par une p\u00e9riode pas dr\u00f4le o\u00f9 ils devront servir des instructions politiques qu'ils savent \u00eatre \"\u00e0 c\u00f4t\u00e9 de la plaque\", et ce sans pouvoir d\u00e9sob\u00e9ir facilement \u00e0 la hi\u00e9rarchie.\n\nCertes leur pr\u00e9sence dans l'appareil public augmente la probabilit\u00e9 d'avoir une classe politique bien conseill\u00e9e. Mais in fine les d\u00e9cisions structurantes de cette derni\u00e8re viennent g\u00e9n\u00e9ralement d'une pression \u00e9lectorale, et pas de plans coh\u00e9rents mais qui n'ont pas encore \u00e9t\u00e9 compris du public. Et les fonctionnaires peuvent rarement s'exprimer dans l'espace public pour faire la p\u00e9dagogie d'une construction qui n'est pas celle mise en oeuvre par les pouvoirs publics (ca s'appelle le devoir de r\u00e9serve).\n\nJ'esp\u00e8re que l'histoire leur donnera raison. Ce n'est pas que leur int\u00e9r\u00eat : c'est aussi le n\u00f4tre. La d\u00e9carbonation de l'\u00e9conomie, dans le respect des autres limites plan\u00e9taires (biodiversit\u00e9, m\u00e9taux, espace...), et sans provoquer de d\u00e9stabilisation sociale majeure, est un des plus complexes probl\u00e8mes d'optimisation sous contrainte qu'il nous soit donn\u00e9 d'avoir \u00e0 r\u00e9soudre (\u00e0 c\u00f4t\u00e9 savoir comment concevoir un t\u00e9l\u00e9phone 5G ou aller sur Mars est de la gnognotte). \n\nIl est donc plus que souhaitable que ce probl\u00e8me attire des cervelles parmi les analytiquement les plus affut\u00e9es de notre pays. Et en plus cela rend parfois perplexes - de la bonne mani\u00e8re - leurs ain\u00e9s d\u00e9j\u00e0 en place. Allez-y les jeunes !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6978711862255177730,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6978711863446360065,urn:li:activity:6978711863446360065,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 113, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6978711863446360065,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6978711863446360065,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6978711863446360065", + "threadId": "activity:6978711863446360065", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6978711863446360065", + "urn": "urn:li:activity:6978711863446360065", + "numComments": 258, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6978711863446360065", + "reactionTypeCounts": [ + { + "count": 4785, + "reactionType": "LIKE" + }, + { + "count": 386, + "reactionType": "PRAISE" + }, + { + "count": 264, + "reactionType": "APPRECIATION" + }, + { + "count": 103, + "reactionType": "EMPATHY" + }, + { + "count": 96, + "reactionType": "MAYBE" + }, + { + "count": 42, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6978711863446360065", + "numLikes": 5676, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6978711863446360065", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5679, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6978464210682793984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6978464210682793984", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6978464210682793984)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6978464210682793984)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_augustin-de-romanet-adp-je-ne-veux-pas-activity-6978464210682793984--nQ1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6978464209973997568", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6978464210682793984", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6978464210682793984,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6978464210682793984,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6978464209973997568", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "2MAAuGm7FLL6YA+2kkLOCA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6978464210682793984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8698137954742804874", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676540851097?e=1677240000&v=beta&t=b9IwzourwPJl4Ksxg9ulmnkmV1gmOumK60PFGJdr-EU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676540851097?e=1677240000&v=beta&t=Zm4iz2gQTPGokFEjRU-wuTr5aJFHnqvM1gtzopz_Sik", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676540851097?e=1677240000&v=beta&t=pEeHjdzj0kdrNttj0NkASICs27UftqKomAvEQnGVQDE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676540851097?e=1677240000&v=beta&t=zKeArWUp6xewlyM9EcQCN5tfN5DlwRbD50A5vOGS9JY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGKBWNPpc9MjA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8698137954742804874)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8698137954742804874)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "bfmtv.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Augustin de Romanet (ADP): \"Je ne veux pas qu'on me reproche de pousser \u00e0 la consommation de voyage\" by bfmtv.com", + "actionTarget": "https://www.bfmtv.com/economie/augustin-de-romanet-aeroport-de-paris-je-ne-veux-pas-qu-on-me-reproche-de-pousser-a-la-consommation_AV-202209190623.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Augustin de Romanet (ADP): \"Je ne veux pas qu'on me reproche de pousser \u00e0 la consommation de voyage\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6978464209973997568,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 635, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:65525487", + "entityUrn": "urn:li:fs_miniCompany:65525487", + "name": "A\u00c9RO D\u00c9CARBO", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1632124851859?e=1684972800&v=beta&t=mPqBCEHb8iWqELNJG9bQXVELZNC4XCApGrlaId7_ixQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1632124851859?e=1684972800&v=beta&t=ZehY4fC1JjRd8Rcq1YPXQ0PFm_KemKatzCP-zEdqn64", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1632124851859?e=1684972800&v=beta&t=7KzqdHv_8SjezUgJiOMjgi4PXApGI-2VqJjBzgOxGYo", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGeJYGC8wwvNw/company-logo_" + } + }, + "universalName": "aero-decarbo", + "dashCompanyUrn": "urn:li:fsd_company:65525487", + "trackingId": "rvmThnUbT0mmVZUpZz8AZw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "C'est le monde \u00e0 l'envers : par les temps qui courent, le jeu de r\u00f4le entre patrons et journalistes est g\u00e9n\u00e9ralement d'avoir un(e) patron(ne) expliquant que son objectif est de faire de la croissance, et en face un(e) journaliste lui demandant si il ou elle a pens\u00e9 aux limites plan\u00e9taires.\n\nMais cette s\u00e9quence sur BFM Business se joue sur le mode exactement inverse : le patron d'A\u00e9roports de Paris explique qu'il s'accommodera d'un trafic a\u00e9rien en baisse si cela est n\u00e9cessaire pour la d\u00e9carbonation du transport a\u00e9rien, et c'est la journaliste qui a l'air de beaucoup tenir \u00e0 ce qu'il dise l'inverse !\n\nPeut-\u00eatre que le rapport d'A\u00c9RO D\u00c9CARBO et du Shift Project \"Pouvoir Voler en 2050\" (https://lnkd.in/d3h_4QA ) est parvenu jusqu'au bureau de l'invit\u00e9 du jour de la radio. Car le travail de mod\u00e9lisation qui avait \u00e9t\u00e9 effectu\u00e9 par des professionnels du secteur concluait sur le fait qu'il serait impossible au secteur a\u00e9rien de baisser ses \u00e9missions de 5% par an sans baisse du trafic. Les innovations techniques n'arriveront pas assez t\u00f4t et/ou ne seront pas du bon ordre de grandeur.\n\nPeut-\u00eatre aussi qu'Augustin de Romanet a pris ses informations en ce qui concerne le futur de la production p\u00e9troli\u00e8re, qui devrait entamer son d\u00e9clin tendanciel dans les ann\u00e9es \u00e0 venir (https://lnkd.in/dMFCWQFw ). Comme il n'y a pour le moment pas le moindre substitut \u00e0 l'\u00e9chelle, et que par ailleurs le p\u00e9trole (en volume) pilote le PIB, ca veut dire qu'il y aura moins de k\u00e9ros\u00e8ne et globalement moins de pouvoir d'achat pour se d\u00e9placer. \n\nAu lieu de vouloir \u00e0 toute force lui faire dire qu'il fallait que le trafic augmente, la journaliste aurait \u00e9t\u00e9 mieux inspir\u00e9e de demander \u00e0 son invit\u00e9 quelle \u00e9tait la raison profonde qui le poussait \u00e0 cette conclusion. Une autre fois peut-\u00eatre !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6978464209973997568,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6978464210682793984,urn:li:activity:6978464210682793984,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 93, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6978464210682793984,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6978464210682793984,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6978464210682793984", + "threadId": "activity:6978464210682793984", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6978464210682793984", + "urn": "urn:li:activity:6978464210682793984", + "numComments": 201, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6978464210682793984", + "reactionTypeCounts": [ + { + "count": 2242, + "reactionType": "LIKE" + }, + { + "count": 189, + "reactionType": "MAYBE" + }, + { + "count": 107, + "reactionType": "PRAISE" + }, + { + "count": 51, + "reactionType": "INTEREST" + }, + { + "count": 24, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6978464210682793984", + "numLikes": 2626, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6978464210682793984", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2640, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6978048784559710208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6978048784559710208", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6978048784559710208)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6978048784559710208)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lint%C3%A9grale-cest-notre-plan%C3%A8te-1709-activity-6978048784559710208-HgVS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6978048783792144384", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6978048784559710208", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6978048784559710208,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6978048784559710208,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6978048783792144384", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "w64ONlWGgI6VbfJZLlFznA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6978048784559710208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8389875195266081406", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676372500626?e=1677240000&v=beta&t=bK1woxR0nq4fHz9ORjEub5Mrjc59vT4z8O6N5vdWrCU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676372500626?e=1677240000&v=beta&t=M2CRAJ6EQp70u9_AU6U-0iZ5-KOG2w1GmrqP4qgXydw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676372500626?e=1677240000&v=beta&t=TfqlMvJ3ede6T9te_k7s8QVOP5mAIOA9p3Uqolbwft8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676372500626?e=1677240000&v=beta&t=U7hpw2vRAISWuAlGM56PfKuzcNcbjXa3Ge7tUfHRtn8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEnpMQ9H3s6BA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8389875195266081406)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8389875195266081406)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'INT\u00c9GRALE - C'est notre plan\u00e8te (17/09/22) by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900186365-l-integrale-c-est-notre-planete-17-09-22" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'INT\u00c9GRALE - C'est notre plan\u00e8te (17/09/22)" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6978048783792144384,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pouvoir d'achat ou pouvoir de vivre ? Dans cette chronique diffus\u00e9e Samedi dernier sur RTL, je tente d'expliquer qu'il serait pertinent de basculer sur quelque chose qui ressemblerait plus \u00e0 la deuxi\u00e8me appellation, et pourquoi.\n\nD\u00e8s lors que l'\u00e9nergie est le premier facteur limitant du syst\u00e8me productif (qui repose en fait sur des machines), et d\u00e8s lors que cette \u00e9nergie est appel\u00e9e \u00e0 largement se contracter dans les d\u00e9cennies \u00e0 venir, nous allons assister \u00e0 un mouvement qui sera l'inverse des Trente Glorieuses : la contraction de notre \"pouvoir d'acheter\" tout ce qui est physiquement produit par l'\u00e9conomie : des m\u00e8tres carr\u00e9s de logement, des tonnes de voiture, des km/h de vitesse de d\u00e9placement, des litres de soda, des kg de nourriture, des m3 d'eau du robinet, des litres de d\u00e9tergent ou des m2 de chemises, et bien sur des kWh de gaz...\n\nDans ce contexte, promettre la hausse du pouvoir d'achat va cr\u00e9er des malentendus (qui eux-m\u00eames cr\u00e9eront de l'instabilit\u00e9 politique), mais pas un plan qui va pouvoir se r\u00e9aliser (c'est peut-\u00eatre triste mais c'est h\u00e9las ce qui va se passer).\n\nIl faut arriver \u00e0 cr\u00e9er assez vite un indicateur qui int\u00e8gre d'autres param\u00e8tres qui influent de fait sur notre bonheur (la qualit\u00e9 de notre sant\u00e9, le niveau de bruit ou de pollution, l'acc\u00e8s \u00e0 de la verdure, le sentiment de s\u00e9curit\u00e9, le niveau d'entraide, le confort affectif, etc) et optimiser un ensemble dans lequel la taille du caddie de supermarch\u00e9 n'est pas notre seul crit\u00e8re.\n\nBien sur que pour une partie de la population optimiser ce crit\u00e8re reviendra \u00e0 se pr\u00e9occuper avant tout de choses tr\u00e8s mat\u00e9rielles essentielles (logement, nourriture). Mais pour une partie seulement. \n\nJe n'ai \u00e9videmment pas de solution toute pr\u00eate \u00e0 proposer \u00e0 l'instant. Mais il me semble qu'il y a l\u00e0 un domaine o\u00f9 un peu de jus de cerveau pourrait produire des propositions pertinentes, sachant que, pour \u00eatre pleinement op\u00e9rationnel, un indicateur alternatif devra pouvoir s'utiliser dans \u00e9norm\u00e9ment de situations de la vie courante (comme l'argent). \n\nLes indicateurs globaux sont en effet de peu d'effet d\u00e8s lors qu'ils sont en comp\u00e9tition avec un indicateur qui peut s'utiliser au quotidien. C'est l\u00e0 le d\u00e9fi pour toute alternative." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6978048783792144384,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6978048784559710208,urn:li:activity:6978048784559710208,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 73, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6978048784559710208,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6978048784559710208,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6978048784559710208", + "threadId": "activity:6978048784559710208", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6978048784559710208", + "urn": "urn:li:activity:6978048784559710208", + "numComments": 108, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6978048784559710208", + "reactionTypeCounts": [ + { + "count": 1098, + "reactionType": "LIKE" + }, + { + "count": 88, + "reactionType": "MAYBE" + }, + { + "count": 79, + "reactionType": "INTEREST" + }, + { + "count": 27, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6978048784559710208", + "numLikes": 1317, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6978048784559710208", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1317, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6977885605259001856,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6977885605259001856", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6977885605259001856)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6977885605259001856)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_how-are-we-decarbonising-our-corporate-bond-activity-6977885605259001856-Yr3I?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6977885602767589376", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6977885605259001856", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6977885605259001856,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6977885605259001856,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6977885602767589376", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "iM1Bd9Kvr0skAVKP/jlRuw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6977885605259001856,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8970190252896594972", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675719066383?e=1677240000&v=beta&t=JigI67Vkz7XSJATaDqBSJit_vsbxgaK-zuVVF2KYJj0", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675719066383?e=1677240000&v=beta&t=lweLC9AYE5E9b-Z_EU2Q14cWBvKDteCDjdnd4Cv3NNo", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675719066383?e=1677240000&v=beta&t=irVLjioSAZethEjz8DG1HyvxLMvIZSDvbXkc5dGbKcU", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675719066383?e=1677240000&v=beta&t=e90Md9mrlGGzzoDRXkkR67sSoY920x-7qJ-7g1KZU6g", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH1Nhp7iPmwCQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8970190252896594972)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8970190252896594972)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ecb.europa.eu \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: How are we decarbonising our corporate bond holdings? by ecb.europa.eu", + "actionTarget": "https://www.ecb.europa.eu/ecb/educational/explainers/html/decarbonising_corporate_bond_holdings.en.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "How are we decarbonising our corporate bond holdings?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6977885602767589376,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis la cr\u00e9ation de l'Euro, la cr\u00e9ation mon\u00e9taire dans la zone est la pr\u00e9rogative exclusive de la Banque Centrale Europ\u00e9enne (BCE). Du coup, les \u00e9tats adh\u00e9rents \u00e0 la monnaie unique ne peuvent plus financer le d\u00e9ficit de l'Etat par de la cr\u00e9ation mon\u00e9taire d\u00e9cid\u00e9e unilat\u00e9ralement : d\u00e8s qu'il y a un trou, il faut emprunter de l'argent, \"sur les march\u00e9s\", c'est \u00e0 dire en pratique \u00e0 des \u00e9pargnants (l'assurance vie contient surtout des emprunts d'Etat, par exemple).\n\nSi l'\u00e9conomie souffre, et que les flux d'\u00e9pargne baissent alors m\u00eame que les recettes fiscales diminuent, la seule solution pour l'Etat est de monter les taux des emprunts qu'il effectue. Cela d\u00e9clenche potentiellement une spirale infernale, avec des emprunts perp\u00e9tuellement croissants en nominal pour rembourser capital et int\u00e9r\u00eats des emprunts pass\u00e9s, et alors que les produits des imp\u00f4ts n'augmentent pas (la cr\u00e9ation mon\u00e9taire permettait de boucher le trou, mais avec un inconv\u00e9nient qui \u00e9tait la d\u00e9valuation de fait de la monnaie).\n\nPour \u00e9viter aux \u00e9tat europ\u00e9ens concern\u00e9s de se retrouver dans une trop mauvaise passe apr\u00e8s 2008 (date qui marque une \"inversion des flux physiques\" en Europe ; le covid ayant rajout\u00e9 une couche \u00e0 une \u00e9volution de fond), la BCE a depuis massivement achet\u00e9 les obligations \u00e9mises par les \u00e9tats (avec de l'argent magique puisqu'elle peut en cr\u00e9er autant qu'elle veut). \n\nElle a fait de m\u00eame avec les entreprises, pour soutenir l'\u00e9conomie, avec pour cons\u00e9quence que son \"total de bilan\" (la valeur de tout ce qu'elle d\u00e9tient, essentiellement des titres) a \u00e9t\u00e9 multipli\u00e9 par... 8 en 14 ans (voir graphique en commentaire).\n\nA quelque chose malheur est bon : la BCE a d\u00e9cid\u00e9 en juillet dernier qu'elle allait d\u00e9sormais faire intervenir le crit\u00e8re carbone dans ses achats d'obligations d'entreprises (les obligations d'\u00e9tat, dites \"souveraines\", ne sont pas - encore ? - concern\u00e9es). En pratique elle va faire de plus en plus la fine bouche pour acheter des obligations \u00e9mises par des entreprises dont l'activit\u00e9 n'est \"pas raccord\" avec la baisse des \u00e9missions. C'est un geste majeur, parce que jusqu'\u00e0 r\u00e9cemment la BCE consid\u00e9rait que son r\u00f4le n'\u00e9tait pas de se substituer aux \u00e9tats pour orienter l'\u00e9conomie vers la d\u00e9carbonation (la politique mon\u00e9taire doit \u00eatre \"neutre\").\n\nLa BCE a publi\u00e9 hier la mani\u00e8re dont elle allait proc\u00e9der. 3 crit\u00e8res vont \u00eatre utilis\u00e9s pour \u00e9valuer les entreprises concern\u00e9es :\n- l'empreinte carbone et son \u00e9volution pass\u00e9e\n- les objectifs fix\u00e9s\n- le degr\u00e9 de transparence sur la publication des \u00e9missions.\n\nA Carbon 4 Finance nous croisons les doigts : il se trouve que la BCE est notre cliente depuis quelques mois (https://bit.ly/3BR9B5k ), et il se trouve que notre m\u00e9thode Carbon Impact Analytics propose tr\u00e8s exactement les m\u00e9triques qui seront utilis\u00e9es (https://bit.ly/3Unlwza ). Comme notre premi\u00e8re vocation est d'avoir de l'impact (\"\u00eatre utiles \u00e0 quelque chose\"), nous serions heureux de contribuer \u00e0 cette \u00e9volution." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6977885602767589376,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6977885605259001856,urn:li:activity:6977885605259001856,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 33, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6977885605259001856,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6977885605259001856,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6977885605259001856", + "threadId": "activity:6977885605259001856", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6977885605259001856", + "urn": "urn:li:activity:6977885605259001856", + "numComments": 128, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6977885605259001856", + "reactionTypeCounts": [ + { + "count": 777, + "reactionType": "LIKE" + }, + { + "count": 70, + "reactionType": "PRAISE" + }, + { + "count": 57, + "reactionType": "INTEREST" + }, + { + "count": 45, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6977885605259001856", + "numLikes": 963, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6977885605259001856", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 963, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 Edited \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6977628227338956800,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6977628227338956800", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6977628227338956800)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6977628227338956800)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_donn%C3%A9es-climatiques-il-faut-mesurer-le-activity-6977628227338956800-lkoZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6977628226529464321", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6977628227338956800", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6977628227338956800,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6977628227338956800,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6977628226529464321", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "Ppq0oWmQuYlhLH/osu7bew==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6977628227338956800,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8734096981299390464", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676136726568?e=1677240000&v=beta&t=YOm74IPqqV7CXu4xwhZlnnxMM8o819WvdFfge8JvyWs", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676136726568?e=1677240000&v=beta&t=CosRgrhRC7rDIGPhbzD0u3n0_X2pm_ODScuB2mY41WM", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676136726568?e=1677240000&v=beta&t=GWd7UgMVap7A18Qga31JIZBeR_HKfeyVnD44Nx5YyS8", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676136726568?e=1677240000&v=beta&t=d30nr15HG86-l3SxhxWhgT1grattrG3v_T38TOLG4v8", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGzi7zmhxn_jw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8734096981299390464)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8734096981299390464)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Donn\u00e9es climatiques : \u00ab il faut mesurer le risque que le changement climatique fait courir aux entreprises, mais aussi l\u2019impact des entreprises sur le changement climatique \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/idees/article/2022/09/16/donnees-climatiques-il-faut-mesurer-le-risque-que-le-changement-climatique-fait-courir-aux-entreprises-mais-aussi-l-impact-des-entreprises-sur-le-changement-climatique_6141925_3232.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Donn\u00e9es climatiques\u00a0: \u00ab\u00a0il faut mesurer le risque que le changement climatique fait courir aux entreprises, mais aussi l\u2019impact des entreprises sur le changement climatique\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6977628226529464321,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est une bataille qui se joue dans les coulisses, et qui attire un peu moins l'attention que l'Euro de foot ou les matchs de Roland Garros. Mais elle pourrait avoir un impact tr\u00e8s significatif sur la mani\u00e8re dont les entreprises seront contraintes - ou pas - de diffuser des informations sur leur prise en compte de la question climatique.\n\nA la base de ce d\u00e9bat se trouve une notion qui s'appelle la \"mat\u00e9rialit\u00e9 du risque\". De quoi s'agit-il ? Il s'agit de disposer d'\u00e9l\u00e9ments qui sont associ\u00e9s \u00e0 l'existence d'un risque (et donc qui permettent de le \"mat\u00e9rialiser\". \n\nDans le domaine du climat, le premier camp est compos\u00e9 des partisans de la \"simple mat\u00e9rialit\u00e9\", qui disent que la seule chose importante est de s'occuper de ce qui peut cr\u00e9er un risque financier \u00e0 relativement court terme pour l'entreprise (sans surprise les am\u00e9ricains sont g\u00e9n\u00e9ralement de ce c\u00f4t\u00e9 l\u00e0).\n\nA ce moment on demande \u00e0 l'entreprise de produire uniquement les indicateurs qui sont susceptibles de se traduire en un risque direct et proche dans le temps, via une taxation du carbone par exemple. \n\nEn face se trouve le camp des partisans de la \"double mat\u00e9rialit\u00e9\". Ceux l\u00e0 disent qu'il faut aussi inclure ce qui permet de comprendre l'impact de l'activit\u00e9 de l'entreprise sur le climat, parce que cet impact contribue au risque pour l'ensemble de la soci\u00e9t\u00e9 (et pas juste pour l'entreprise). Ce camp l\u00e0 est plut\u00f4t repr\u00e9sent\u00e9 par les europ\u00e9ens et demande beaucoup plus d'indicateurs que les autres. Mais comme il est plus contraignant, et que les entreprises n'innovent que sous la contrainte, il est aussi potentiellement plus efficace !\n\nAu travers de diverses initiatives - dont la cr\u00e9ation de l'ISSB par la fondation IFRS - les am\u00e9ricains sont en train d'essayer de normaliser le reporting carbone \u00e0 leur avantage (donc avec peu d'indicateurs et peu de contraintes).\n\nOn note en ce moment l'omnipr\u00e9sence de Bloomberg dans ce combat, lequel Bloomberg a r\u00e9ussi \u00e0 se faire nommer envoy\u00e9 sp\u00e9cial de l'ONU \"pour l\u2019ambition et les solutions en faveur du climat\" : https://lnkd.in/eVhR8QJv\n\nAvouez qu'avoir l'ONU comme agence de RP pour vendre ses donn\u00e9es (car le m\u00e9tier de Bloomberg est de vendre de la donn\u00e9e aux financiers) ca en impose !\n\nCela en impose tellement que le m\u00eame Bloomberg a r\u00e9cemment r\u00e9ussi \u00e0 embarquer notre pr\u00e9sident dans une initiative contraire aux int\u00e9r\u00eats de notre pays, ce qui avait conduit \u00e0 la publication de cette tribune dans Le Monde : https://bit.ly/3DwDTM5\n\nL'auteure de la tribune ci-dessous se demande \u00e9galement pourquoi notre pr\u00e9sident soutient \"le camp adverse\" alors que notre pays est en avance sur les USA dans le domaine des m\u00e9thodes de reporting, et que celui qui fait la norme fera le march\u00e9. Bonne question." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6977628226529464321,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6977628227338956800,urn:li:activity:6977628227338956800,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 70, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6977628227338956800,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6977628227338956800,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6977628227338956800", + "threadId": "activity:6977628227338956800", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6977628227338956800", + "urn": "urn:li:activity:6977628227338956800", + "numComments": 91, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6977628227338956800", + "reactionTypeCounts": [ + { + "count": 1386, + "reactionType": "LIKE" + }, + { + "count": 207, + "reactionType": "MAYBE" + }, + { + "count": 205, + "reactionType": "INTEREST" + }, + { + "count": 26, + "reactionType": "PRAISE" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6977628227338956800", + "numLikes": 1849, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6977628227338956800", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1849, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6977304872748515328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6977304872748515328", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6977304872748515328)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6977304872748515328)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sobri%C3%A9t%C3%A9-nucl%C3%A9aire-et-gourou-avec-jean-marc-activity-6977304872748515328-bf-_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6977304871871905792", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6977304872748515328", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6977304872748515328,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6977304872748515328,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6977304871871905792", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "5toz9ZJhOvO0W4HPQXnUrA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6977304872748515328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7033069152438309103", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676201893676?e=1677240000&v=beta&t=BL51SYhZu9NgvuJKbYp8Lq6AOGdoyPtjA2_76UVJIKs", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676201893676?e=1677240000&v=beta&t=kGiJJprkedF7zaB0NIA3NkcwFaVGOLs0kAnQ5QdkqzU", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676201893676?e=1677240000&v=beta&t=H1knUkK8WHWXrUeTVBSvrqCmGw8x_B6XTELcBO0Pbww", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676201893677?e=1677240000&v=beta&t=DuEmracYJDzQDkreFDtwxavpWfuZgx-oUUgnMGRVBrY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGisaDJCeXNvA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7033069152438309103)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7033069152438309103)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Sobri\u00e9t\u00e9, nucl\u00e9aire et gourou avec Jean-Marc Jancovici - C Politique du 11 sept2022 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=dnT_Fu3CLPw" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Pour voir d'autres \u00e9missions \ud83d\udc49 https://www.france.tv/france-5/c-politique/ _______________________________________________________________ Notre premier invit\u00e9, il est l\u2019une des figures de l\u2019\u00e9cologie en France, une voix qui compte, une voix aussi qui..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Sobri\u00e9t\u00e9, nucl\u00e9aire et gourou avec Jean-Marc Jancovici - C Politique du 11 sept2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6977304871871905792,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A la suite de mon passage sur C Politique il y a une semaine, j'ai vu passer des critiques sur ma position qui serait trop complaisante sur le nucl\u00e9aire civil. En esp\u00e9rant que cela sera utile, j'aimerais pr\u00e9ciser quelques points :\n\n- mes investigations sur le nucl\u00e9aire datent de mes d\u00e9buts dans le domaine \u00e9nergie climat, en 2000-2001, \u00e0 une \u00e9poque o\u00f9 je n'avais aucun acteur de cette fili\u00e8re comme client (mon client le plus important \u00e9tait l'Ademe pour le Bilan Carbone ; si j'avais du avoir des conclusions par int\u00e9r\u00eat je serais devenu anti !)\n\n- longtemps - et peut-\u00eatre encore maintenant - mes prises de position publiques ont contrari\u00e9 plus de clients de Carbone 4 qu'elles n'en ont flatt\u00e9. Mes conclusions sur ce dossier ne proviennent pas d'abord de mon int\u00e9r\u00eat \u00e9conomique (et pas plus au Shift Project o\u00f9 nous acceptons sans probl\u00e8me de perdre un m\u00e9c\u00e8ne en cas de divergences de vues).\n\n- je n'ai jamais dit et ne dirai jamais que le nucl\u00e9aire est sans risques. Par contre il faut quantifier ces derniers, et ceux des alternatives, pour savoir quelles conclusions tirer. Voir par exemple https://bit.ly/3dlGrlE (qui date d'il y a 20 ans mais l'essentiel reste valable)\n\n- je n'ai jamais dit que de recourir au nucl\u00e9aire nous exon\u00e9rait d'efforts massifs de sobri\u00e9t\u00e9. J'ai toujours dit et \u00e9crit l'inverse.\n\n- je n'ai jamais \u00e9t\u00e9 \"anti ENR\", terme qui ne veut rien dire. Par contre j'ai toujours consid\u00e9r\u00e9 - et je maintiens - que de chercher \u00e0 remplacer du nucl\u00e9aire par de l'\u00e9olien et du solaire revenait \u00e0 augmenter le risque global que nous courrons. En pareil cas nous consacrons du temps et des ressources \u00e0 essayer de supprimer un risque faible au lieu d'allouer ce m\u00eame temps et ces m\u00eames ressources \u00e0 nous occuper d'un risque majeur. Lorsque nous sommes dans une course contre la montre - et nous le sommes - c'est l'assurance raisonnable de prendre des coups en plus (on ne va pas tarder \u00e0 s'en rendre compte).\n\n- pour autant je n'ai jamais dit que solaire et \u00e9olien \u00e9taient sans int\u00e9r\u00eat quelles que soient les circonstances. \n\n- je pense que dans les pays plats, dens\u00e9ment peupl\u00e9s, et fortement industrialis\u00e9s, nous n'aurons jamais un syst\u00e8me 100% ENR permettant un \"mode de vie\" ressemblant de pr\u00e8s ou de loin \u00e0 ce que nous avons aujourd'hui. Vouloir supprimer le nucl\u00e9aire pour le remplacer par des ENR nous expose \u00e0 un risque que les allemands (qui ont pourtant mis le paquet) s'appr\u00eatent \u00e0 conna\u00eetre cet hiver (et surtout les suivants) : avoir remplac\u00e9 une partie du nucl\u00e9aire par... rien.\n\n- enfin je maintiens que les grands media - en t\u00eate le service public - ont pris le nucl\u00e9aire en grippe jusqu'\u00e0 r\u00e9cemment, et ont cr\u00e9\u00e9 dans la population une crainte qui n'est pas en rapport avec les risques r\u00e9els. Elle n'est pas seule en cause, mais notre presse porte assur\u00e9ment sur ses \u00e9paules une part de responsabilit\u00e9 pour la situation actuelle de la fili\u00e8re. C'est pour cela qu'avoir des media qui sachent toujours faire la diff\u00e9rence entre un fait et une opinion est essentiel." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6977304871871905792,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6977304872748515328,urn:li:activity:6977304872748515328,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 328, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6977304872748515328,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6977304872748515328,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6977304872748515328", + "threadId": "activity:6977304872748515328", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6977304872748515328", + "urn": "urn:li:activity:6977304872748515328", + "numComments": 755, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6977304872748515328", + "reactionTypeCounts": [ + { + "count": 11858, + "reactionType": "LIKE" + }, + { + "count": 1221, + "reactionType": "PRAISE" + }, + { + "count": 425, + "reactionType": "APPRECIATION" + }, + { + "count": 256, + "reactionType": "MAYBE" + }, + { + "count": 204, + "reactionType": "INTEREST" + }, + { + "count": 150, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6977304872748515328", + "numLikes": 14114, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6977304872748515328", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 14120, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 Edited \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6976488474136739840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6976488474136739840", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6976488474136739840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6976488474136739840)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lartificialisation-des-sols-est-repartie-activity-6976488474136739840-DcQt?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6976488473285300224", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6976488474136739840", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6976488474136739840,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6976488474136739840,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6976488473285300224", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "BJ64xRTNX40C8+0X8BA5bQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6976488474136739840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9108505519543581813", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675759889693?e=1677240000&v=beta&t=pvV5AiByUJ_jk9POVrnHVuScZxssEMt3NAWD2w2do6E", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675759889693?e=1677240000&v=beta&t=L4IifOZIE_FFF_NkrqGkjLirUmH66jhwpFu3WKuCYwE", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675759889693?e=1677240000&v=beta&t=CuPuqGPCei4dBpWGfr_WzYHnaK7Oi21BapPx8IpKB7k", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675759889693?e=1677240000&v=beta&t=bVTo9XFpKOdJhcx-cr49GLharH_Rzy7B2AfKjqimwM8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGC4rKI9y1UOg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9108505519543581813)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9108505519543581813)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'artificialisation des sols est repartie \u00e0 la hausse en France by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/politique-societe/societe/lartificialisation-des-sols-est-repartie-a-la-hausse-en-france-1787839" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'artificialisation des sols est repartie \u00e0 la hausse en\u00a0France" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6976488473285300224,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le changement climatique n'est bien sur qu'une des pressions amen\u00e9es par la croissance de la population humaine et de la consommation de biens et d'objets par personne. Il y en a d'autres : l'\u00e9rosion de la biodiversit\u00e9, ou la pollution, par exemple. \n\nLa premi\u00e8re cause d'\u00e9rosion de la biodiversit\u00e9 est la destruction d'habitats (pour les esp\u00e8ces), et une des causes de destruction d'habitats est l'artificialisation des sols. Ce n'est certes pas la premi\u00e8re (qui est de loin l'augmentation des surfaces cultiv\u00e9es ou p\u00e2tur\u00e9es) mais elle y contribue. \n\nDans notre pays, cette artificialisation des sols - tr\u00e8s significative - est un autre exemple de hiatus entre le discours et les actes. Cela fait des ann\u00e9es ou m\u00eame des d\u00e9cennies que l'\u00e9talement urbain est consid\u00e9r\u00e9 comme une tendance \u00e0 combattre, et pour autant il ne cesse de se d\u00e9velopper (le Grand Paris \u00e9tant un projet d'\u00e9talement urbain parmi d'autres, quelles que soient ses justifications).\n\nPour voir comment a \u00e9volu\u00e9 la consommation d'espace pour artificialisation de 2009 \u00e0 janvier 2021, le minist\u00e8re de l'environnement (on me pardonnera de ne pas donner \u00e0 chaque fois le nom \u00e0 rallonge du moment et surtout de ne pas parler de d\u00e9veloppement durable :) ) publie une carte tr\u00e8s parlante : https://bit.ly/3RWb0xm\n\nLa France s'est fix\u00e9 un objectif de \"z\u00e9ro artificialisation nette\" dans la loi climat de 2021, qui pr\u00e9voit que d'ici \u00e0 2030 le rythme d'artificialisation soit divis\u00e9 par 2. Mais \u00e9videmment quand il s'agit de rentrer dans le dur les \u00e9lus locaux expliquent facilement que cet objectif doit surtout concerner les voisins : https://bit.ly/3LhAR06\n\nCela n'est pas tr\u00e8s \u00e9tonnant que les \u00e9lus locaux r\u00e9sistent. Car ce que l'on appelle \"am\u00e9nager\" signifie en pratique couler du b\u00e9ton. A mon modeste niveau d'utilisateur occasionnel d'une voie cyclable situ\u00e9e au sud de Paris (la Coul\u00e9e verte), \u00e0 chaque fois que je vois un panneau annon\u00e7ant un \"am\u00e9nagement\" de cette piste je sais que cela signifie que l'on va b\u00e9tonner/bitumer une partie de la voie ou de ses abords (et ca ne rate jamais !).\n\nTout \u00e9lu local adore en g\u00e9n\u00e9ral d\u00e9livrer des permis de construire. Cela augmente la population dont il a la charge et donc \u00e0 la fois son importance comme \"personne ayant charge d'\u00e2me\", et les imp\u00f4ts ou dotations de toute nature qui arrivent dans ses caisses.\n\nUne des choses qu'il faudra faire si l'on veut inverser la donne sur l'artificialisation sera probablement d'indexer les dotations de l'Etat sur des crit\u00e8res d'attribution qui ne sont pas avant tout la population (mais par exemple la surface non b\u00e2tie ou la superficie foresti\u00e8re).\n\nCe qui est sur, c'est qu'avec les incitations actuelles \u00e0 \u00e0 faire grossir les grandes aires urbaines, parce qu'elles sont \"mieux plac\u00e9es pour l'\u00e9conomie\", nous avons un autre conflit d'objectif entre \u00e9conomie (qui ne compte que l'apport humain) et destruction de ressources gratuites (sols, esp\u00e8ces)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6976488473285300224,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6976488474136739840,urn:li:activity:6976488474136739840,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 92, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6976488474136739840,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6976488474136739840,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6976488474136739840", + "threadId": "activity:6976488474136739840", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6976488474136739840", + "urn": "urn:li:activity:6976488474136739840", + "numComments": 126, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6976488474136739840", + "reactionTypeCounts": [ + { + "count": 1756, + "reactionType": "LIKE" + }, + { + "count": 244, + "reactionType": "MAYBE" + }, + { + "count": 240, + "reactionType": "INTEREST" + }, + { + "count": 35, + "reactionType": "PRAISE" + }, + { + "count": 22, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6976488474136739840", + "numLikes": 2308, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6976488474136739840", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2308, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6976218985650372608,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6976218985650372608", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6976218985650372608)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6976218985650372608)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cet-hiver-va-donc-%C3%AAtre-plac%C3%A9-sous-le-signe-activity-6976218985650372608-apb7?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6976218983184101377", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6976218985650372608", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6976218985650372608,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6976218985650372608,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6976218983184101377", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "cdkGhPUCs15v1RGRGQVHKQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6976218985650372608,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEhctxFyp_Fjg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEhctxFyp_Fjg", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1663260216717?e=1679529600&v=beta&t=F6IyIzLEoMvaEUadiXr3dyar9r0lSgKsODRkO9qRuHQ", + "expiresAt": 1679529600000, + "height": 682 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1663260216598?e=1679529600&v=beta&t=8drPDDON_2eY0I52jSpRCY5volDORIbr0YhtNTu5Bd4", + "expiresAt": 1679529600000, + "height": 7 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1663260216598?e=1679529600&v=beta&t=gfm6ADvwgbVWHauzSj8UasXgPAKZ-MEMOY69rJAKvZk", + "expiresAt": 1679529600000, + "height": 426 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1663260216598?e=1679529600&v=beta&t=w-7ar-0YFIN8YDsu1dg7bd82wOGnjV2NX5Q2CkizNnk", + "expiresAt": 1679529600000, + "height": 160 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1663260216598?e=1679529600&v=beta&t=cw-gOZv5gJrZj454eigDiSGH_6cVdE2rMBsJm4a-kds", + "expiresAt": 1679529600000, + "height": 53 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1663260216598?e=1679529600&v=beta&t=pZ0-WxXBNOgscowhfFxbDTKXpaK12t6eyWFMQJL4JlA", + "expiresAt": 1679529600000, + "height": 266 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEhctxFyp_Fjg/feedshare-shrink_" + }, + "displayAspectRatio": 0.3330078125 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6976218983184101377,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Cet hiver va donc \u00eatre plac\u00e9 sous le signe des \u00e9conomies d'\u00e9nergie. Les pouvoirs publics vont \u00e9videmment nous inciter - voire nous obliger - \u00e0 sauver ces pr\u00e9cieux kWh, mais l'Institut Fran\u00e7ais de la Performance Energ\u00e9tique du B\u00e2timent compte faire sa part en jouant sur un autre ressort : l'\u00e9mulation.\n\nDepuis plusieurs ann\u00e9es cette association organise le concours Cube, initialement limit\u00e9 au b\u00e2timent tertiaire, mais qui, d\u00e9sormais, couvre d'autres usages, comme les flottes automobiles, ou les logements collectifs. \n\nPour l'occasion, l'ensemble est regroup\u00e9 dans un \"championnat de France des \u00e9conomies d'\u00e9nergie\" : https://lnkd.in/d4rJus5h\nL'id\u00e9e est bien sur de jouer sur une motivation vieille comme le monde : l'envie de figurer dans un classement :)\n\nL'exp\u00e9rience montre que, en moyenne et pour les b\u00e2timents, les participants au concours baissent assez facilement la consommation d'\u00e9nergie de 10 \u00e0 20% dans l'ann\u00e9e. C'est donc dire que les 10% \u00e9voqu\u00e9s par les pouvoirs publics sont, au moins pour une partie importante de nos usages, \u00e0 port\u00e9e de main sans sacrifice majeur.\n\nLe r\u00e8glement ne dit pas si Dame Elisabeth fera la bise aux laur\u00e9at(e)s. Mais, plus que jamais, la devise de Coubertin peut s'appliquer : l'important est de participer !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6976218983184101377,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6976218985650372608,urn:li:activity:6976218985650372608,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 42, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6976218985650372608,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6976218985650372608,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6976218985650372608", + "threadId": "activity:6976218985650372608", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6976218985650372608", + "urn": "urn:li:activity:6976218985650372608", + "numComments": 69, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6976218985650372608", + "reactionTypeCounts": [ + { + "count": 1146, + "reactionType": "LIKE" + }, + { + "count": 41, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "INTEREST" + }, + { + "count": 28, + "reactionType": "PRAISE" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6976218985650372608", + "numLikes": 1281, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6976218985650372608", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1285, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6975725160221790208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6975725160221790208", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6975725160221790208)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6975725160221790208)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_croissance-inflation-bercy-noircit-le-activity-6975725160221790208-6SEq?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6975725159366205440", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6975725160221790208", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6975725160221790208,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6975725160221790208,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6975725159366205440", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "unauVrhCkiFWmMa34umt+Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6975725160221790208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8503707186950593093", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676614428599?e=1677240000&v=beta&t=mCQ5N6wHYNWf2yo6_enQERwdhQfFvQLwkePTwSkRtz8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676614428599?e=1677240000&v=beta&t=tbefcdcDlFQuFD484seJ14JbJkUWD9AcK5ud_klpSHY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676614428599?e=1677240000&v=beta&t=PqD-TylcbyJdSNagUKvY2bV04y86Nirl7ovKhnd5jf4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676614428599?e=1677240000&v=beta&t=d4w_kTmfRjm3ly1Q2pweOy1yhWQXpFGhMBCuyhfUHyE", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGWgXE-AszbLQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8503707186950593093)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8503707186950593093)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Croissance, inflation : Bercy noircit le tableau pour 2023 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/economie-france/budget-fiscalite/croissance-inflation-bercy-noircit-le-tableau-pour-2023-1787743" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Croissance, inflation\u00a0: Bercy noircit le tableau pour\u00a02023" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6975725159366205440,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Bercy explique qu'il va falloir composer avec une croissance faible et une inflation qui se d\u00e9veloppe. Bienvenue au 21\u00e8 si\u00e8cle.\n\nQuiconque prend le temps de regarder ce qu'est, sur le plan physique, un syst\u00e8me productif, comprend qu'il s'agit en fait d'un ensemble de flux physiques de transformation (https://bit.ly/3qAkHoO ). Cela explique le r\u00f4le central de l'\u00e9nergie, puisque cette derni\u00e8re est par d\u00e9finition ce qui permet de cr\u00e9er ces flux.\n\nD\u00e8s lors que, pour des raisons physiques, les \u00e9nergies fossiles (qui ont historiquement progressivement remplac\u00e9 les \u00e9nergies renouvelables) sont dominantes dans l'approvisionnement mondial, il n'est pas tr\u00e8s compliqu\u00e9 de comprendre que la diminution rapide de ces \u00e9nergies, pour des raisons de climat (elles sont directement \u00e0 l'origine de la majorit\u00e9 de nos \u00e9missions de gaz \u00e0 effet de serre) ou pour des raisons d'\u00e9puisement g\u00e9ologique des gisements de p\u00e9trole et de gaz (https://bit.ly/3UaDJjq ) est inexorable.\n\nCette baisse provoquera en retour une diminution des flux physiques (on ne reviendra pas aux \u00e9nergies renouvelables \u00e0 \"mode de vie constant\"), et donc une \"inversion de la croissance\". D'ici pas tr\u00e8s longtemps (quand est toute la question) la \"croissance structurelle de long terme\" sera remplac\u00e9e par la \"d\u00e9croissance structurelle de long terme\". Meadows et al. avait d\u00e9j\u00e0 tr\u00e8s bien expliqu\u00e9 cela il y a 50 ans : https://bit.ly/2HkwcIl\n\nAu niveau du consommateur final, apr\u00e8s qu'il ait \u00e9t\u00e9 possible d'avoir de plus en plus de choses \u00e0 consommer pour une m\u00eame dur\u00e9e de travail (ca s'appelle l'augmentation du pouvoir d'achat), nous allons vivre l'\u00e9volution inverse (d'autant plus marqu\u00e9e par personne que la d\u00e9mographie augmente puisque la contrainte est sur la production totale).\n\nEn pratique elle va s'exprimer par deux processus qui vont aussi devenir de plus en plus fr\u00e9quents : la p\u00e9nurie et l'inflation. Nous en vivons du reste aujourd'hui des signes avant-coureurs : p\u00e9nurie sur des composants issus de la mondialisation, inflation sur nombre de biens de consommation.\n\nBercy a tort de raconter que ca sera une mauvaise passe et qu'apr\u00e8s \"ca ira mieux\". Cela engendre dans la population l'espoir que cela soit physiquement possible. Mais ce qui est physiquement possible est d'apprendre \u00e0 \u00eatre heureux avec moins (tout le d\u00e9fi est d'y arriver !).\n\nPostuler que nous ne devons nous projeter que dans un monde o\u00f9 il y aura toujours plus de flux physiques est perdre notre temps : au lieu d'utiliser nos neurones \u00e0 r\u00e9fl\u00e9chir \u00e0 ce qui serait optimum avec une \u00e9volution \u00e0 la fois proche - en fait d\u00e9j\u00e0 en cours en Europe - et inexorable, nous les utilisons \u00e0 r\u00e9fl\u00e9chir \u00e0 ce que nous pourrions faire si les miracles existaient.\n\nPourquoi le faisons nous alors ? Parce qu'une part le cahier des charges des \u00e9lus en d\u00e9mocratie est h\u00e9las de promettre des miracles (relire https://bit.ly/3S3Dbd4 !), et d'autre part et surtout il n'y a pas de plan con\u00e7u pour l'hypoth\u00e8se inverse. Il est temps d'y r\u00e9fl\u00e9chir s\u00e9rieusement !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6975725159366205440,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6975725160221790208,urn:li:activity:6975725160221790208,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 182, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6975725160221790208,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6975725160221790208,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6975725160221790208", + "threadId": "activity:6975725160221790208", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6975725160221790208", + "urn": "urn:li:activity:6975725160221790208", + "numComments": 309, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6975725160221790208", + "reactionTypeCounts": [ + { + "count": 4218, + "reactionType": "LIKE" + }, + { + "count": 419, + "reactionType": "INTEREST" + }, + { + "count": 301, + "reactionType": "PRAISE" + }, + { + "count": 288, + "reactionType": "MAYBE" + }, + { + "count": 42, + "reactionType": "APPRECIATION" + }, + { + "count": 31, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6975725160221790208", + "numLikes": 5299, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6975725160221790208", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5302, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6975350776017657856,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6975350776017657856", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6975350776017657856)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6975350776017657856)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-banques-acc%C3%A9l%C3%A8rent-le-d%C3%A9ploiement-des-activity-6975350776017657856-dNqJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6975350775216533504", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6975350776017657856", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6975350776017657856,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6975350776017657856,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6975350775216533504", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "AimHcg7PZX+NtAyHhMg0/A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6975350776017657856,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7499220882313361081", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675926565919?e=1677240000&v=beta&t=o4XMnqFLgQAR327A6l0-AJSy29paZ7zGacRZdLwr5aE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675926565919?e=1677240000&v=beta&t=AgTNNV4YCB1_uzXzFlpRTwT8IB6VB2DxEkRjbYFasBA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675926565919?e=1677240000&v=beta&t=6sQLJId-I2RGG_YsA3c-nwgr0Gk-Fv0AD8rgC3Kp6vc", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675926565919?e=1677240000&v=beta&t=FAbVovlEOR9TcLP_tbbH2CMktaxbo0hk-nXkHiXbkhs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGUamP-kbP57w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7499220882313361081)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7499220882313361081)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les banques acc\u00e9l\u00e8rent le d\u00e9ploiement des pr\u00eats \u00e0 impact by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/banque-assurances/les-banques-accelerent-le-deploiement-des-prets-a-impact-1787002#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les banques acc\u00e9l\u00e8rent le d\u00e9ploiement des pr\u00eats \u00e0 impact" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6975350775216533504,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis que le monde financier s'est empar\u00e9 de la question climatique, l'indicateur le plus souvent utilis\u00e9 pour savoir si ses acteurs sont \"du bon c\u00f4t\u00e9 de la barri\u00e8re\" est de mesurer le caract\u00e8re \"compatible ou pas avec la d\u00e9carbonation\" des activit\u00e9s des entreprises ou \u00e9tats dont l'acteur financier d\u00e9tient des actions ou obligations, ou auxquels il accorde des cr\u00e9dits.\n\nLes m\u00e9thodes utilis\u00e9es pour r\u00e9pondre \u00e0 la question sont multiples, mais sur le principe m\u00eame on peut se demander en quoi une banque contribue plus \u00e0 la transition si elle c\u00e8de \u00e0 un tiers des actions d'une entreprise \"trop carbon\u00e9e\", ou si elle ne lui pr\u00eate pas mais qu'une autre banque le fait. En pareil cas, l'activit\u00e9 de l'entreprise ne change pas : il y a juste changement de propri\u00e9taire d'une action ou d'un pr\u00eat. Du coup les \u00e9missions mondiales ne changent pas non plus : elles sont juste allou\u00e9es \u00e0 des entit\u00e9s diff\u00e9rentes.\n\nEn outre, avec la quantit\u00e9 totale d'argent \u00e0 placer dans le monde (l'\u00e9pargne par capitalisation des futurs retrait\u00e9s, et l'\u00e9pargne financi\u00e8re autre), il n'existe pas assez d'activit\u00e9s \"r\u00e9ellement bien plac\u00e9es\" pour que les financiers deviennent tous \"verts\". C'est pour cela que chaque acteur fait un peu de \"vert\" dans un ensemble qui reste de la couleur de l'\u00e9conomie globale.\n\nMais le monde financier, et en particulier les banques, peut aller plus loin. Il peut influer sur l'activit\u00e9 de l'entreprise en conditionnant les modalit\u00e9s de mise \u00e0 disposition de son argent aux performances climat - ou sur un autre crit\u00e8re - de ladite entreprise. C'est le principe du \"pr\u00eat \u00e0 impact\". On peut envisager deux modalit\u00e9s :\n- le taux d'int\u00e9r\u00eat est fonction des performances de l'entreprise sur un crit\u00e8re extra-financier. Par exemple si on pr\u00eate \u00e0 un fabriquant de v\u00e9los \u00e9lectriques, plus il vend \u00e0 des gens qui mettent leur voiture \u00e0 la casse pour se d\u00e9placer \u00e0 v\u00e9lo (donc plus il \u00e9vite d'\u00e9missions) et plus le taux est bas\n- le capital restant du devient imm\u00e9diatement exigible si un crit\u00e8re cesse d'\u00eatre respect\u00e9. Par exemple, si un aci\u00e9riste emprunte de l'argent pour baisser ses \u00e9missions, et ces derni\u00e8res ne baissent pas au rythme promis, alors l'argent pr\u00eat\u00e9 doit \u00eatre imm\u00e9diatement rembours\u00e9.\n\nDans les deux cas de figure ci-dessus, on voit bien que les modalit\u00e9s du pr\u00eat poussent spontan\u00e9ment l'entreprise \u00e0 contribuer - soit sur son empreinte carbone propre, soit sur ses \u00e9missions \u00e9vit\u00e9es - \u00e0 la baisse des \u00e9missions humaines.\n\nPour avoir des banques r\u00e9ellement actrices de la transition, le sens de l'histoire est donc probablement que le taux variable ou le crit\u00e8re de remboursement anticip\u00e9 - bas\u00e9s sur le respect d'un crit\u00e8re carbone pertinent - deviennent la r\u00e8gle pour les pr\u00eats. Pour les actions, il sera probablement plus difficile de \"trouver quelque chose\".\n\nL\u00e0 comme ailleurs c'est le passage \u00e0 l'\u00e9chelle qui attestera de l'ampleur de l'effort. Et effort titanesque il doit y avoir si les \u00e9missions mondiales doivent devenir nulles d'ici quelques d\u00e9cennies !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6975350775216533504,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6975350776017657856,urn:li:activity:6975350776017657856,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 87, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6975350776017657856,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6975350776017657856,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6975350776017657856", + "threadId": "activity:6975350776017657856", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6975350776017657856", + "urn": "urn:li:activity:6975350776017657856", + "numComments": 110, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6975350776017657856", + "reactionTypeCounts": [ + { + "count": 1372, + "reactionType": "LIKE" + }, + { + "count": 166, + "reactionType": "MAYBE" + }, + { + "count": 159, + "reactionType": "INTEREST" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6975350776017657856", + "numLikes": 1742, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6975350776017657856", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1742, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6975156236082118656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6975156236082118656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6975156236082118656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6975156236082118656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_initiative-iris-r%C3%A9concilier-strat%C3%A9gie-d-activity-6975156236082118656-8QYW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6975156235134205952", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6975156236082118656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6975156236082118656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6975156236082118656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6975156235134205952", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "6uahQP8Y5UZ5A3aPwYQGMg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6975156236082118656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8171616399306146657", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675921768389?e=1677240000&v=beta&t=dFaojEYQ-wha-B67m69q3ie7FyF_XPgNJtWUyG2F55w", + "expiresAt": 1677240000000, + "height": 1066 + }, + { + "width": 600, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675921768389?e=1677240000&v=beta&t=RHPmV-LGp7zMvAm9lLwixNUecxa0vy3_vdk_8vfMVWE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675921768389?e=1677240000&v=beta&t=mAehzTOA8bJpKOdV0ewA_OWC6WYLMNuP6uaY9o4zBo4", + "expiresAt": 1677240000000, + "height": 213 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675921768389?e=1677240000&v=beta&t=5nsheDB60m4qZ9PjhtEgrNvHfBHFg3hg9XNE-DPoDn4", + "expiresAt": 1677240000000, + "height": 640 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGHfKIytnbz1A/articleshare-shrink_" + }, + "displayAspectRatio": 1.3325 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8171616399306146657)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8171616399306146657)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Initiative IRIS : r\u00e9concilier strat\u00e9gie d\u2019entreprise et enjeux \u00ab climat-ressources \u00bb | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/lancement-iris-initiative" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Initiative IRIS : r\u00e9concilier strat\u00e9gie d\u2019entreprise et enjeux \u00ab climat-ressources \u00bb | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6975156235134205952,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pour confronter les entreprises au d\u00e9fi climatique, il faut des rep\u00e8res et des outils. Pour le moment, l'essentiel de ce qui est disponible pour les acteurs \u00e9conomiques d\u00e9rive de \"sc\u00e9narios 2\u00b0C\" ou \"1,5 \u00b0C\" qui sont publi\u00e9s par l'Agence Internationale de l'Energie.\n\nLe principe est le suivant : \u00e0 partir d'une baisse des \u00e9missions globales compatible avec le respect d'une hausse de temp\u00e9rature donn\u00e9e, l'AIE propose une r\u00e9partition par secteur (transports, industrie, etc) puis sous-secteur (et aussi par g\u00e9ographie parfois) du budget carbone annuel, et cela sert de cadre pour fixer aux entreprises un rythme de baisse qui les rend \"compatibles 2\u00b0C\" ou \"compatibles 1,5 \u00b0C\" en fonction de leur secteur d'activit\u00e9 et de leurs implantations.\n\nCes sc\u00e9narios de l'AIE ont cependant plusieurs d\u00e9fauts :\n- ils comptent sur la capture et s\u00e9questration des \u00e9missions (https://bit.ly/3eDBKDT ; c'est un peu vieux mais ca fixe les id\u00e9es) de mani\u00e8re irr\u00e9aliste, ce qui all\u00e8ge d'autant les efforts sur les \u00e9missions du reste de l'\u00e9conomie\n- ils aboutissent \u00e0 des ratios unitaires (\u00e9missions par $ de CA ou de VA, ou par kWh...), qui ne sont pas r\u00e9ajust\u00e9s en permanence en fonction de l'\u00e9volution de l'\u00e9conomie et du nombre global d'acteurs.\n\nPour le pilotage de l'action, une entreprise a ensuite besoin de \"descendre\" dans les \u00e9volutions physiques sous-jacentes \u00e0 l'\u00e9conomie. Pour calculer son CA, un constructeur de voitures a besoin du nombre de v\u00e9hicules qu'il pense pouvoir vendre, et cela est pareil pour un producteur de v\u00eatements ou un gestionnaire de salles de cin\u00e9ma (qui se demande d'abord combien de personnes viendront voir un film).\n\nMais les sc\u00e9narios de place ne donnent que rarement des \"flux physiques\" sur les ventes. Il y a surtout des flux mon\u00e9taires. Du coup il est tr\u00e8s difficile pour les entreprises de savoir comment rapprocher leurs plans \"physiques\" (en nombre d'unit\u00e9s vendues) des plafonds permis par les budgets carbone.\n\nPour pallier ce manque, Carbone 4 a d\u00e9cid\u00e9 il y a 2 ans de lancer l'initiative Iris, pour cr\u00e9er une \"boite \u00e0 outils\" qui permettra de faire des sc\u00e9narios 2\u00b0C ou 1,5 \u00b0C en explicitant les flux physiques sous-jacents de l'\u00e9conomie qui y correspondent.\n\nCela permettra par exemple de dire combien on peut vendre de voitures et de quel type, ou fabriquer de machines \u00e0 laver au fil du temps, dans un monde qui veut respecter tel budget carbone, ou qui dispose de ressources fossiles ou m\u00e9talliques limit\u00e9es (les pics de production sur les fossiles - hors volont\u00e9 d'agir pour le climat - ou sur les m\u00e9taux seront activables).\n\nLa production de cette boite \u00e0 outils va se lancer. Pour cela nous recrutons :\n- un(e) chef(fe) de projet \"construction de sc\u00e9narios prospectifs\" : https://bit.ly/3BbXU7V\n- un(e) charg\u00e9(e) de conception de l'outil de mod\u00e9lisation : https://bit.ly/3Dre7IS\n- un(e) charg\u00e9(e) de projet sc\u00e9narisation prospective : https://bit.ly/3qwk3ZD\n\nSi tenter de reproduire Meadows \u00e0 l'\u00e9chelle micro\u00e9conomique vous parle, \u00e0 vos CV !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6975156235134205952,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6975156236082118656,urn:li:activity:6975156236082118656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 27, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6975156236082118656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6975156236082118656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6975156236082118656", + "threadId": "activity:6975156236082118656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6975156236082118656", + "urn": "urn:li:activity:6975156236082118656", + "numComments": 38, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6975156236082118656", + "reactionTypeCounts": [ + { + "count": 684, + "reactionType": "LIKE" + }, + { + "count": 49, + "reactionType": "PRAISE" + }, + { + "count": 39, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6975156236082118656", + "numLikes": 807, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6975156236082118656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 807, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6974980567641505792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6974980567641505792", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6974980567641505792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6974980567641505792)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_crise-de-l%C3%A9nergie-menace-sur-les-engrais-activity-6974980567641505792-nI9D?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6974980566924283904", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6974980567641505792", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6974980567641505792,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6974980567641505792,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6974980566924283904", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "DzAt9AjZLq1/zq0HI/GGzQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6974980567641505792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8449167010202594351", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676010595629?e=1677240000&v=beta&t=UIIulMFNf4cLlASuPC_xsfFNX0gdAyDOwzGvZzCC-dw", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676010595630?e=1677240000&v=beta&t=Xz1chk9OzeX59ksD4axmRnEJfLnFDnO1w8Yz1KKcdAI", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676010595630?e=1677240000&v=beta&t=brzv1dOifQmJVxf5payBW5Io54Hgkf-ya1Uqy8b4QKc", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676010595630?e=1677240000&v=beta&t=O_4Op76PbtyqsPS_aU7gCLxeXtD8ahMgLbVSjg4FHHQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEtNIxwdWbi6Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8449167010202594351)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8449167010202594351)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Crise de l'\u00e9nergie : menace sur les engrais strat\u00e9giques fran\u00e7ais by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/crise-de-lenergie-menace-sur-les-engrais-strategiques-francais-1786589" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Crise de l'\u00e9nergie\u00a0: menace sur les engrais strat\u00e9giques fran\u00e7ais" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6974980566924283904,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La guerre en Ukraine l'a peut-\u00eatre appris \u00e0 un certain nombre de mes concitoyen(ne)s : nous mangeons du gaz. Les esprits chagrins feront remarquer que le gaz se respire \u00e0 la rigueur, mais ne se mange pas, sauf que le gaz dit naturel, quand on regarde ce que nous en faisons, se mange bel et bien.\n\nPas sous forme de gaz cependant : une partie du composant principal du gaz naturel, le m\u00e9thane, de formule CH4, va servir \u00e0 produire des engrais (on appelle le gaz \"naturel\" par opposition au gaz \"artificiel\", qui \u00e9tait fabriqu\u00e9 dans les \"usines \u00e0 gaz\", par r\u00e9action entre du charbon et de la vapeur d'eau, et qui cr\u00e9ait un m\u00e9lange - hautement toxique quand on le respirait - de monoxyde de carbone et d'hydrog\u00e8ne appel\u00e9 \"gaz de ville\").\n\nPour cela on commence par extraire l'hydrog\u00e8ne du m\u00e9thane, avec une op\u00e9ration appel\u00e9e reformage, qui consiste \u00e0 chauffer tr\u00e8s fort un m\u00e9lange de m\u00e9thane et de vapeur d'eau, pour provoquer la r\u00e9action CH4 + 2*H20 -> 4*H2 + CO2. Pour une tonne d'hydrog\u00e8ne il se d\u00e9gage 10 tonnes de CO2 (combustion du gaz de chauffage & r\u00e9action chimique confondues).\n\nPuis on associe l'hydrog\u00e8ne \u00e0 de l'azote - pr\u00e9lev\u00e9 dans l'air - pour fabriquer de l'ammoniac, de formule NH3. Ce dernier sert alors \u00e0 fabriquer des ammonitrates (ou nitrate d'ammonium), qui sont utilis\u00e9s comme fertilisants pour l'agriculture (accessoirement quand ils sont m\u00e9lang\u00e9s \u00e0 du fioul ils forment un explosif puissant, ce que r\u00e9cemment Beyrouth a h\u00e9las appris \u00e0 ses d\u00e9pends : https://bit.ly/3eKRCnW ).\n\nCes engrais azot\u00e9s ont jou\u00e9 un r\u00f4le central dans le passage des rendements du bl\u00e9 de 10 \u00e0 15 quintaux par hectare en 1945 \u00e0 70 \u00e0 la fin des ann\u00e9es 1990 (https://bit.ly/3L4oSmv ). Nous mangeons donc du gaz.\n\nL'ammoniac valant plus cher que le gaz, une partie des producteurs de gaz - dont les russes - se sont int\u00e9gr\u00e9s \u00e0 l'aval et ont construit des usines pour fabriquer de l'ammoniac, voire produire directement des engrais azot\u00e9s.\n\nAvec le gaz, une partie de l'ammoniac et des engrais (la partie russe) est donc aussi devenue plus difficile d'acc\u00e8s et les prix de march\u00e9 ont mont\u00e9. Si des difficult\u00e9s d'approvisionnement sur les volumes persistent, le rendement des cultures ne pourra que baisser. Le bio, par exemple, qui n'utilise pas d'engrais de synth\u00e8se, pr\u00e9sente typiquement dans les c\u00e9r\u00e9ales un rendement de moiti\u00e9 par rapport \u00e0 ce qui s'appelle le \"conventionnel\".\n\nUne large partie des cultures (notamment tout le ma\u00efs) servant \u00e0 nourrir des animaux, nous ne risquons pas de mourir de faim. Il suffira de cultiver des v\u00e9g\u00e9taux que nous pouvons manger en direct (car manger du ma\u00efs fourrage on risque de ne pas trouver ca terrible !) au lieu de cultiver de la nourriture pour animaux.\n\nNe plus manger de gaz finira fatalement par arriver : le gaz, comme le p\u00e9trole, est \u00e9puisable, et son pic mondial devrait arriver vers 2030, climat ou pas. A quelque chose malheur est bon : t\u00e2chons de profiter de la situation actuelle pour d\u00e9marrer une transition inexorable de toutes fa\u00e7ons." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6974980566924283904,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6974980567641505792,urn:li:activity:6974980567641505792,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 92, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6974980567641505792,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6974980567641505792,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6974980567641505792", + "threadId": "activity:6974980567641505792", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6974980567641505792", + "urn": "urn:li:activity:6974980567641505792", + "numComments": 180, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6974980567641505792", + "reactionTypeCounts": [ + { + "count": 2535, + "reactionType": "LIKE" + }, + { + "count": 411, + "reactionType": "INTEREST" + }, + { + "count": 251, + "reactionType": "MAYBE" + }, + { + "count": 54, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6974980567641505792", + "numLikes": 3288, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6974980567641505792", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3290, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6974655136400842752,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6974655136400842752", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6974655136400842752)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6974655136400842752)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cest-notre-plan%C3%A8te-100922-activity-6974655136400842752-gals?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6974655135725559808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6974655136400842752", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6974655136400842752,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6974655136400842752,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6974655135725559808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "2j2OEIk3ig3ZHhork79y8w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6974655136400842752,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8313125282387522619", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676219410855?e=1677240000&v=beta&t=xeu0VRlsLs52dMaawaJZyTRiyJCV9SnhMU_TcZt2uqE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676219410855?e=1677240000&v=beta&t=s8rjIOb87TNdywuIFHZthKXW4apy1BJHLPtqCJJ8k3Q", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676219410855?e=1677240000&v=beta&t=b1YUagOgFluFouwcDcp4H5-R-cikrVSbVQqjr8Wlk-0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676219410856?e=1677240000&v=beta&t=ma2LALYw6AuIRe2YWCj9ZEybKOEiQWkhC_9tZ5zAvzQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFl-knoXg59Zg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8313125282387522619)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8313125282387522619)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: C'est notre plan\u00e8te (10/09/22) by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900184097-c-est-notre-planete-10-09-22" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "C'est notre plan\u00e8te (10/09/22)" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6974655135725559808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis que l'Europe cherche fr\u00e9n\u00e9tiquement comment se passer d'une partie de son gaz et de son p\u00e9trole pour lesquels nous sommes d\u00e9pendants des russes, un mot est apparu souvent dans l'espace m\u00e9diatique : la sobri\u00e9t\u00e9.\n\nComme beaucoup de mots utilis\u00e9s dans le discours politique, celui-ci est souvent utilis\u00e9 sans qu'il n'ait \u00e9t\u00e9 d\u00e9fini au pr\u00e9alable. Dans cette chronique du Samedi matin sur RTL (en l'esp\u00e8ce c'\u00e9tait celle d'hier), je tente d'en fournir une d\u00e9finition \"globale\", et tant que j'y suis j'ai fait de m\u00eame pour l'efficacit\u00e9 \u00e9nerg\u00e9tique et la pauvret\u00e9 \u00e9nerg\u00e9tique (qui est en fait de la pauvret\u00e9 tout court).\n\nCes trois d\u00e9finitions m'\u00e9taient n\u00e9cessaires lorsque j'ai d\u00e9marr\u00e9 mon cours \u00e0 l'Ecole des Mines de Paris (https://lnkd.in/dM7u2j7 ), parce que je cherchais \u00e0 expliquer \u00e0 mes \u00e9tudiant(e)s comment diff\u00e9rencier les diverses mani\u00e8res d'\u00e9conomiser de l'\u00e9nergie et les implications que l'on peut en tirer sur l'\u00e9conomie et les \"modes de vie\" (sujet qui occupe l'int\u00e9gralit\u00e9 du 5\u00e8 module du cours).\n\nUne des conclusions que j'en tire est que la sobri\u00e9t\u00e9 est indissociable de la planification, c'est \u00e0 dire d'une vision de long terme conduisant \u00e0 mettre progressivement en place, de mani\u00e8re d\u00e9sir\u00e9e, des modes de vie moins consommateurs d'\u00e9nergie, ce qui a des implications profondes sur tout, dont l'emploi (voir le chapitre correspondant du Plan de transformation de l'\u00e9conomie fran\u00e7aise : https://lnkd.in/esiqHkbf ).\n\nCorr\u00e9lativement, la sobri\u00e9t\u00e9 \"d'urgence\" n'existe pas, puisque la r\u00e9action dans l'urgence face \u00e0 un \u00e9v\u00e9nement non anticip\u00e9 - ce qui est exactement ce qui nous arrive aujourd'hui - ne s'appelle pas vraiment une r\u00e9action planifi\u00e9e...\n\nEt, \u00e0 cause des limites g\u00e9ologiques sur l'approvisionnement en \u00e9nergie fossile, limites qui existent quand bien m\u00eame nous ne voudrions pas baisser notre consommation pour des raisons climatiques, les \u00e9conomies sont certaines \u00e0 l'avenir, sous une forme ou sous une autre. \n\nComme l'efficacit\u00e9 ne va pas assez vite - et n'ira pas assez vite \u00e0 l'avenir, pour des raisons physiques (rappelons que l'\u00e9nergie est avant tout une grandeur physique !) - pour permettre de la croissance verte (m\u00eame si la loi vot\u00e9e au parlement fran\u00e7ais \u00e0 l'\u00e9poque d'une certaine S\u00e9gol\u00e8ne affirme le contraire), le seul d\u00e9bat est de savoir si nous pr\u00e9f\u00e9rons la sobri\u00e9t\u00e9 ou la pauvret\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6974655135725559808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6974655136400842752,urn:li:activity:6974655136400842752,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 62, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6974655136400842752,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6974655136400842752,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6974655136400842752", + "threadId": "activity:6974655136400842752", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6974655136400842752", + "urn": "urn:li:activity:6974655136400842752", + "numComments": 109, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6974655136400842752", + "reactionTypeCounts": [ + { + "count": 1377, + "reactionType": "LIKE" + }, + { + "count": 108, + "reactionType": "INTEREST" + }, + { + "count": 93, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6974655136400842752", + "numLikes": 1640, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6974655136400842752", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1640, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6974288534752919552,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6974288534752919552", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6974288534752919552)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6974288534752919552)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_r%C3%A9silience-et-adaptation-aux-impacts-du-changement-activity-6974288534752919552-KnrF?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6974288533825953792", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6974288534752919552", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6974288534752919552,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6974288534752919552,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6974288533825953792", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "iVfyMymrN9eR/XSyZpW7zA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6974288534752919552,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8586349430460733642", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676247508499?e=1677240000&v=beta&t=2eLQBcmUCAxwaFbBgvMA229dCe7txVgZduK6ZCFRFtQ", + "expiresAt": 1677240000000, + "height": 526 + }, + { + "width": 1215, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676247508499?e=1677240000&v=beta&t=R7ezG8G0sr5sNYUNMjztAvYE096zYxCi_UJ6bxphwCM", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676247508500?e=1677240000&v=beta&t=zbUQ-t8VlP1JkndVsF1aNJYkvnfWn93ydYkblBgR0hY", + "expiresAt": 1677240000000, + "height": 105 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676247508500?e=1677240000&v=beta&t=N-E4tSJg-KcA2uh99xgxo1Dy8YzdGsVOnWYppoUMdU4", + "expiresAt": 1677240000000, + "height": 316 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHgZEtzvB8BPA/articleshare-shrink_" + }, + "displayAspectRatio": 0.6575 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8586349430460733642)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8586349430460733642)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: R\u00e9silience et adaptation aux impacts du changement climatique : une nouvelle priorit\u00e9 pour les entreprises ? | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/webinaire-resilience-nouvelle-priorite-entreprises" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "R\u00e9silience et adaptation aux impacts du changement climatique : une nouvelle priorit\u00e9 pour les entreprises ? | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6974288533825953792,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'\u00e9t\u00e9 dernier comme le covid ont rappel\u00e9 \u00e0 notre m\u00e9moire, s'il en \u00e9tait besoin, d'une part que notre \u00e9conomie d\u00e9pend d\u00e9sormais de chaines de valeur dont le d\u00e9but est \u00e0 peu pr\u00e8s syst\u00e9matiquement situ\u00e9 en dehors de nos fronti\u00e8res, et d'autre part que le syst\u00e8me climatique a commenc\u00e9 \u00e0 nous sortir significativement de la stabilit\u00e9 qui pr\u00e9valait depuis des milliers d'ann\u00e9es et qui a permis le d\u00e9veloppement de notre civilisation s\u00e9dentaire.\n\nLa combinaison de ces deux facteurs fait qu'il n'est pas ais\u00e9, pour une entreprise, de savoir vers quoi s'orienter pour son activit\u00e9 future (et si c'est possible et \u00e0 quelles conditions), ni de savoir o\u00f9 pourraient prendre place des \"craquements\" dus \u00e0 la d\u00e9rive climatique et qui auront une r\u00e9percussion plus ou moins importante sur son activit\u00e9.\n\nCar une partie des encha\u00eenements ne rel\u00e8vera pas du lien direct. Exemple : s\u00e9cheresse en Chine -> d\u00e9faut de production \u00e9lectrique sur place -> baisse de la production d'une usine -> moins de composants export\u00e9s en Europe -> d\u00e9faut de production sur notre continent.\n\nAutre exemple : vagues de chaleur simultan\u00e9es dans plusieurs pays du monde -> prise de conscience -> volont\u00e9 d'acc\u00e9l\u00e9rer sur les nouvelles renouvelables partout au m\u00eame moment -> d\u00e9faut de disponibilit\u00e9 de certains composants -> forte hausse des prix et impossibilit\u00e9 de \"tenir le rythme\" qui avait \u00e9t\u00e9 souhait\u00e9.\n\nEt il ne faut pas oublier que, dans le m\u00eame temps, il va y avoir des probl\u00e8mes croissants de disponibilit\u00e9 locale ou r\u00e9gionale en p\u00e9trole et en gaz, pour des raisons g\u00e9ologiques (pour le p\u00e9trole c'est d\u00e8s maintenant : https://lnkd.in/dqWtnMPi ) ou logistiques.\n\nPour y voir clair dans les encha\u00eenements possibles, il faut une m\u00e9thode. \"Taper au hasard\" pour regarder ce qui pourrait dysfonctionner, et dans quelle mesure, ne garantit pas de voir tout ce qui est potentiellement majeur, et ne garantit pas une priorisation optimale des mesures \u00e0 entreprendre ensuite. \n\nLe 11 octobre prochain, Carbone 4 organise un webinaire pour pr\u00e9senter aux entreprises les m\u00e9thodes que nous avons d\u00e9velopp\u00e9es (notamment OCARA : https://lnkd.in/en6TuiVQ ) pour cartographier et qualifier les risques li\u00e9s aux impacts du changement climatique et \u00e0 leurs trajectoire d\u2019adaptation. Il y aura la pr\u00e9sentation de cas pratiques. Nous esp\u00e9rons que ca int\u00e9ressera quelques personnes \"dans la cible\" ! (en termes de fonctions, plut\u00f4t gestionnaires de risques/assureurs/responsables de sites/patron(ne)s d'unit\u00e9s/DG)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6974288533825953792,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6974288534752919552,urn:li:activity:6974288534752919552,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 30, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6974288534752919552,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6974288534752919552,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6974288534752919552", + "threadId": "activity:6974288534752919552", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6974288534752919552", + "urn": "urn:li:activity:6974288534752919552", + "numComments": 59, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6974288534752919552", + "reactionTypeCounts": [ + { + "count": 730, + "reactionType": "LIKE" + }, + { + "count": 57, + "reactionType": "MAYBE" + }, + { + "count": 46, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6974288534752919552", + "numLikes": 846, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6974288534752919552", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 846, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6973894688458039296,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6973894688458039296", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6973894688458039296)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6973894688458039296)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_dans-les-informations-qui-ont-%C3%A9t%C3%A9-publi%C3%A9es-activity-6973894688458039296-MFE4?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6973894687598256129", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6973894688458039296", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6973894688458039296,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6973894688458039296,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6973894687598256129", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "12VMsDUtzltDMHi53ycIEA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6973894688458039296,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHIDvUHaQHzZw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHIDvUHaQHzZw", + "artifacts": [ + { + "width": 1242, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1662706060700?e=1679529600&v=beta&t=s-LA1smbFrzIDHRkp1ekl_Fr2fQeAh6Xz4hQtvYt3c4", + "expiresAt": 1679529600000, + "height": 1166 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1662706061279?e=1679529600&v=beta&t=yVO8xUa_khUjm1T-lrzgFQOQiFM2VQeo0fDEuryx6uA", + "expiresAt": 1679529600000, + "height": 19 + }, + { + "width": 1242, + "fileIdentifyingUrlPathSegment": "1280/0/1662706061279?e=1679529600&v=beta&t=n8EqKPVIwMlpD6tyjJyZba9R1sE1z1hpR8bOtzVMlHo", + "expiresAt": 1679529600000, + "height": 1166 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1662706061279?e=1679529600&v=beta&t=MCWCutpQxVFbcZrhjKdsvWHc4us5T5NctL3oPdTjZzY", + "expiresAt": 1679529600000, + "height": 451 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1662706061279?e=1679529600&v=beta&t=ZMAbDuH55WWIJfELbiJ4uIJCwgWetve0n6OVsY9uD-c", + "expiresAt": 1679529600000, + "height": 150 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1662706061279?e=1679529600&v=beta&t=A0xqMXPVdoIWCQHjtWdRS-JBINEPR0cTfwKlDayb5J0", + "expiresAt": 1679529600000, + "height": 751 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHIDvUHaQHzZw/feedshare-shrink_" + }, + "displayAspectRatio": 0.9388083735909822 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, bar chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6973894687598256129,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans les informations qui ont \u00e9t\u00e9 publi\u00e9es par la presse britannique hier, il y a malheureusement pire que le d\u00e9c\u00e8s d'Elizabeth II : The Guardian rapporte un article tout juste paru dans Science, et qui inventorie les seuils de temp\u00e9rature au-del\u00e0 desquels pourraient se d\u00e9clencher des cons\u00e9quences irr\u00e9versibles (du moins \u00e0 l'\u00e9chelle de mill\u00e9naires) de la d\u00e9rive climatique actuelle : https://bit.ly/3erengE\n\nToutes les cons\u00e9quences en question ont d\u00e9j\u00e0 fait l'objet de parutions scientifiques bien s\u00fbr, mais l'int\u00e9r\u00eat (si l'on peut dire) de cet article est de tout rassembler en un m\u00eame lieu.\n\nUn autre int\u00e9r\u00eat est de donner des fourchettes hautes et basses pour le d\u00e9clenchement des cons\u00e9quences, puisqu'il y a bien sur une incertitude sur les valeurs. Mais... il faut se garder de penser qu'une incertitude est une invitation \u00e0 l'inaction \"en attendant d'y voir plus clair\". C'est au contraire un signal d'alarme majeur. \n\nS'il y a une incertitude sur la pr\u00e9sence d'un cambrioleur meurtrier dans votre quartier, il est peu probable que votre r\u00e9flexe soit de laisser la porte grande ouverte \"en attendant d'y voir plus clair\". De m\u00eame, s'il y a une incertitude sur la pr\u00e9sence d'un camion en travers de la chauss\u00e9e apr\u00e8s un virage un jour de brouillard, il est peu probable que votre r\u00e9flexe soit d'appuyer encore plus fort sur l'acc\u00e9l\u00e9rateur. \n\nPourtant, avec l'incertitude sur les cons\u00e9quences, c'est l'inverse que nous choisissons de faire : de d\u00e9lib\u00e9r\u00e9ment acc\u00e9l\u00e9rer en pariant sur le fait qu'il n'y aura pas de p\u00e9pin. Heu...\n\nDans les cons\u00e9quences \u00e9voqu\u00e9es dans cet article, les processus suivants pourraient prendre place avec le respect de l'Accord de Paris (\u00e9l\u00e9vation < 2\u00b0C) :\n- la fonte/d\u00e9sint\u00e9gration du Groenland, qui a probablement d\u00e9j\u00e0 d\u00e9marr\u00e9 (valeur centrale des estimations du seuil de d\u00e9clenchement = 1 \u00b0C de r\u00e9chauffement) \n- la fonte/d\u00e9sint\u00e9gration de l'Antarctique de l'Ouest (cette partie de la calotte qui regarde le Chili et l'Argentine ; avec le Groenland on parle potentiellement de 6 \u00e0 9 m d'\u00e9l\u00e9vation du niveau de l'oc\u00e9an mondial en quelques si\u00e8cles\n- la mort de tous les coraux tropicaux (le dernier rapport du GIEC les voyait tous disparus \u00e0 2\u00b0C)\n- la fonte du permafrost\n- l'arr\u00eat du courant du Labrador.\n\nA un peu plus que 2\u00b0C (qui est ce que nous aurons en nous contentant d'attendre les pics de production du p\u00e9trole, du gaz et du charbon) nous entrons aussi dans la zone o\u00f9 une disparition de la for\u00eat \u00e9quatoriale amazonienne est possible (les mod\u00e8les climatiques voient un ass\u00e8chement de la zone \u00e0 2\u00b0C), un ralentissement ou arr\u00eat de la d\u00e9rive Nord Atlantique (improprement appel\u00e9e Gulf Stream mais c'est le courant qui r\u00e9chauffe l'Europe), et autres joyeuset\u00e9s.\n\nR\u00e9p\u00e9tons le : comme le changement climatique est une exp\u00e9rience grandeur nature, toutes les cons\u00e9quences ne sont pas pr\u00e9visibles \u00e0 l'avance. Mais elles sont toutes irr\u00e9versibles. Agir massivement pour en diminuer la probabilit\u00e9 d'occurrence n'est pas gaspiller nos moyens de mani\u00e8re irr\u00e9fl\u00e9chie." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6973894687598256129,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6973894688458039296,urn:li:activity:6973894688458039296,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 158, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6973894688458039296,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6973894688458039296,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6973894688458039296", + "threadId": "activity:6973894688458039296", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6973894688458039296", + "urn": "urn:li:activity:6973894688458039296", + "numComments": 321, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6973894688458039296", + "reactionTypeCounts": [ + { + "count": 4635, + "reactionType": "LIKE" + }, + { + "count": 1133, + "reactionType": "INTEREST" + }, + { + "count": 690, + "reactionType": "MAYBE" + }, + { + "count": 97, + "reactionType": "APPRECIATION" + }, + { + "count": 55, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6973894688458039296", + "numLikes": 6627, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6973894688458039296", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6630, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6973594080366710784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6973594080366710784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6973594080366710784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6973594080366710784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_emmanuel-macron-le-pr%C3%A9sident-fixe-des-priorit%C3%A9s-activity-6973594080366710784-rOb0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6973594079511093248", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6973594080366710784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6973594080366710784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6973594080366710784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6973594079511093248", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "QoXBBxCIrhWLKo9EdKFarQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6973594080366710784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7728411415926596554", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676285184553?e=1677240000&v=beta&t=sxqVUk31-ZUSzH7ndoAWs4DqXtGqUDBMS91KSYPXeng", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676285184553?e=1677240000&v=beta&t=M6zlbiqvTXv1WZaA2i9ICXMmtvjtndqmCuWvRUtkK8w", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676285184553?e=1677240000&v=beta&t=DiO77jkSsjq-fKblLvCQ0_oDB10tvD30g-_4_ZNUxTk", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676285184553?e=1677240000&v=beta&t=JhIz_BrCOnY7PuVaqb70OlPRaj8WPqu40pcC22JPG8k", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGnv7c-zVkHBw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7728411415926596554)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7728411415926596554)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Emmanuel Macron : le pr\u00e9sident fixe des priorit\u00e9s \u00e0 l'agriculture pour 2030 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/conso-distribution/emmanuel-macron-veut-verdir-et-rajeunir-lagriculture-francaise-1786499" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Emmanuel Macron : le pr\u00e9sident fixe des priorit\u00e9s \u00e0 l'agriculture pour 2030" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6973594079511093248,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Elle ne fait que 2% du PIB, mais elle nourrit 100% de la population, occupe 2/3 du territoire (p\u00e2turages inclus), entretient une biomasse animale (celle des bovins) du m\u00eame ordre que celle des fran\u00e7ais(es) - avec 15 millions de b\u00eates \u00e0 corne pesant en moyenne quelques centaines de kg - et engendre 20% de nos \u00e9missions de gaz \u00e0 effet de serre.\n\nSi l'on regarde sa part dans l'\u00e9conomie, l'agriculture est un non sujet. Pire : pour rapidement \"cr\u00e9er de la valeur\" (expression plus que discutable !) qui attirera l'attention de la presse \u00e9conomique et des pouvoirs publics, mieux vaut faire des licornes pour d\u00e9velopper des jeux en r\u00e9alit\u00e9 virtuelle ou am\u00e9liorer un logiciel de trading (aucun des deux ne remplissant nos estomacs) que de d\u00e9marrer une exploitation agricole vertueuse. \n\nL'agriculture partage une caract\u00e9ristique avec le climat : pour qu'elle (re)devienne un sujet s\u00e9rieux, il faudra arr\u00eater de tout r\u00e9duire \u00e0 des indicateurs \u00e9conomiques, et revenir \u00e0 des indicateurs physiques - ceux qui comptaient le plus avant que nous ne devenions une civilisation d'urbains d\u00e9connect\u00e9s de ce qui se passe \"en dehors\".\n\nParce que ce secteur a beau repr\u00e9senter beaucoup moins que les t\u00e9l\u00e9coms ou la voiture dans le PIB, il se trouve \u00e0 la base de la pyramide de Maslow, et sans base une pyramide a du mal \u00e0 rester debout. Sans nourriture, adieu la start-up nation !\n\nOr, ce sujet de la production de nourriture est par ailleurs li\u00e9 \u00e0 l'actualit\u00e9 \"par tous les bouts\" : \u00e0 l'amont du champ, les combustibles fossiles servent \u00e0 fabriquer des engrais et \u00e0 alimenter des engins agricoles, et \u00e0 l'aval ils servent \u00e0 transporter les r\u00e9coltes jusqu'aux \u00e9levages ou usines de l'agroalimentaire, puis des usines aux magasins ; ils servent \u00e0 transformer et emballer... de telle sorte que la d\u00e9pendance de la chaine alimentaire aux hydrocarbures est massive.\n\nIl faut y rajouter les \"aleas climatiques\", qui sont de moins en moins des aleas et de plus en plus une nouvelle normalit\u00e9 : s\u00e9cheresses, gels alors que l'hiver doux a lanc\u00e9 la v\u00e9g\u00e9tation trop t\u00f4t, gr\u00eale, inondations parfois...\n\nIl est \u00e9videmment urgent de s'occuper du sujet, car les temps de transformation sont longs en agriculture. Pour voir des cultures ou animaux diff\u00e9rents, cultiv\u00e9s ou \u00e9lev\u00e9s diff\u00e9remment, transform\u00e9s et distribu\u00e9s diff\u00e9remment, \u00e0 des consommateurs qui vont devoir moins habiter en ville (car la ville ne peut \"vivre\" qu'avec des flux importants qui demandent une \u00e9nergie abondante) et qui auront des habitudes alimentaires diff\u00e9rentes, il va falloir des d\u00e9cennies. \n\nLa premi\u00e8re action qui attestera de la volont\u00e9 pr\u00e9sidentielle rapport\u00e9e par les Echos sera le nombre de personnes, leur qualit\u00e9 et leur temps disponible, qui vont plancher sur le sujet (et devoir discuter avec une administration europ\u00e9enne qui tient une partie importante des manettes). On ne devrait pas tarder \u00e0 avoir la r\u00e9ponse !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6973594079511093248,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6973594080366710784,urn:li:activity:6973594080366710784,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 191, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6973594080366710784,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6973594080366710784,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6973594080366710784", + "threadId": "activity:6973594080366710784", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6973594080366710784", + "urn": "urn:li:activity:6973594080366710784", + "numComments": 337, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6973594080366710784", + "reactionTypeCounts": [ + { + "count": 4976, + "reactionType": "LIKE" + }, + { + "count": 370, + "reactionType": "MAYBE" + }, + { + "count": 356, + "reactionType": "INTEREST" + }, + { + "count": 166, + "reactionType": "PRAISE" + }, + { + "count": 76, + "reactionType": "APPRECIATION" + }, + { + "count": 59, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6973594080366710784", + "numLikes": 6003, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6973594080366710784", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6007, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6973345125192069120,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6973345125192069120", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6973345125192069120)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6973345125192069120)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cost-of-living-and-climate-are-higher-global-activity-6973345125192069120-x1Zn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6973345124302905344", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6973345125192069120", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6973345125192069120,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6973345125192069120,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6973345124302905344", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "Qn+DraoilFsjtFwvtCG8gQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6973345125192069120,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8338236121401341498", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676582733799?e=1677240000&v=beta&t=Lhy6kytajUg-hYM970BtUi-aS4p9b-9tG5Hkf5yCbxY", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676582733800?e=1677240000&v=beta&t=8hpbRQZM2s9t0Brt6NcPgKlOWVwykMPWZorLA4TWF80", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676582733800?e=1677240000&v=beta&t=QUHdBTADPSrerbqghKRniHvZpWXk-8-FwO8rbJVUozk", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676582733800?e=1677240000&v=beta&t=FhBEHbUKyAUc9betudLbL9LmkDLYSVffvKKuYBVnR5w", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEfx5BrH3PIEQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8338236121401341498)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8338236121401341498)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Cost of living and climate are higher global priorities than Ukraine, poll finds by theguardian.com", + "actionTarget": "https://www.theguardian.com/world/2022/sep/06/cost-of-living-and-climate-crisis-more-of-a-global-priority-than-ukraine-invasion-poll" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Cost of living and climate are higher global priorities than Ukraine, poll finds" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6973345124302905344,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il a fait chaud et sec en Europe, mais pas que. Pour ne citer que deux autres exemples qui font l'actualit\u00e9, la Californie fait actuellement face \u00e0 une vague de chaleur intense avec incendies et coupures de courant \u00e0 la cl\u00e9 (https://bit.ly/3KU01la ), et la Chine a enregistr\u00e9 en ao\u00fbt la vague de chaleur la plus intense depuis le d\u00e9but des relev\u00e9s, et un de ses \u00e9t\u00e9s les plus secs (https://bit.ly/3eotcR3 ).\n\nIl n'est donc pas totalement \u00e9tonnant de voir le sujet climat arriver d\u00e9sormais de fa\u00e7on assez r\u00e9currente dans les priorit\u00e9s de t\u00eate des habitants de tr\u00e8s nombreux pays dans le monde (pas que des pays occidentaux).\n\nCertes l'inflation fait encore mieux actuellement (le sujet est consid\u00e9r\u00e9 comme l'un des trois plus importants du moment par la moiti\u00e9 des personnes interrog\u00e9es dans 20 pays diff\u00e9rents), mais le climat arrive derri\u00e8re, avec 36% des sond\u00e9s qui le mettent dans les 3 sujets les plus importants du moment (esp\u00e9rons que ca comprenne quelques supporters du PSG :) ).\n\nUne fois que l'on a dit cela, on a dit beaucoup et rien en m\u00eame temps. On a dit beaucoup, parce que dans les d\u00e9mocraties, qui constituent l'essentiel du panel analys\u00e9, il faut qu'un sujet devienne une pr\u00e9occupation d'une large fraction de la population pour qu'il remonte sur l'agenda politique. Donc que la population soit pr\u00e9occup\u00e9e par la chose est malheureusement un point de passage oblig\u00e9 pour que \"ca bouge\" \u00e0 l'\u00e9tage au-dessus.\n\nMais on a rien dit, puisque l'action n'a pas encore pris place. Du reste quand, face \u00e0 un probl\u00e8me, la bonne action pr\u00e9ventive ou corrective est en place, le niveau de pr\u00e9occupation sur le probl\u00e8me retombe en g\u00e9n\u00e9ral un peu.\n\nCe que dit donc ce sondage est donc que, \u00e0 tort ou \u00e0 raison (et en g\u00e9n\u00e9ral plus souvent \u00e0 raison qu'\u00e0 tort malheureusement), l'action n'est pas encore per\u00e7ue comme \u00e9tant \"au niveau de la menace\". \n\nLe paradoxe, mais qui est connu depuis longtemps, est que \u00e0 cause de l'inertie du syst\u00e8me industriel qui cause les \u00e9missions, et de certains param\u00e8tres du climat ou de la r\u00e9ponse des \u00e9cosyst\u00e8mes qui \u00e9voluent m\u00eame apr\u00e8s arr\u00eat des \u00e9missions, le passage \u00e0 l'action (donc la baisse des \u00e9missions) n'emp\u00eachera pas la situation de continuer \u00e0 se d\u00e9grader pendant \"un certain temps\" (il faut attendre l'arr\u00eat complet des \u00e9missions pour que la temp\u00e9rature s'arr\u00eate de monter, et pour certains param\u00e8tres - la mont\u00e9e de l'oc\u00e9an par exemple - il faudra attendre des mill\u00e9naires apr\u00e8s arr\u00eat des \u00e9missions pour que la d\u00e9rive s'arr\u00eate).\n\nIl faut donc pr\u00e9parer les opinions publiques \u00e0 agir sur les deux fronts de la baisse des \u00e9missions et de la pr\u00e9paration \u00e0 des cons\u00e9quences plus adverses, et il faut aussi la pr\u00e9parer \u00e0 ne pas se d\u00e9courager alors m\u00eame que le d\u00e9but de l'action n'att\u00e9nuera pas l'ampleur des cons\u00e9quences \u00e0 court terme.\n\nCa va demander une tr\u00e8s bonne compr\u00e9hension de ce que l'on peut promettre et ne pas promettre de la part des dirigeant(e)s. Le maintien d'une forme de stabilit\u00e9 politique sera aussi \u00e0 ce prix." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6973345124302905344,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6973345125192069120,urn:li:activity:6973345125192069120,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 31, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6973345125192069120,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6973345125192069120,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6973345125192069120", + "threadId": "activity:6973345125192069120", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6973345125192069120", + "urn": "urn:li:activity:6973345125192069120", + "numComments": 52, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6973345125192069120", + "reactionTypeCounts": [ + { + "count": 767, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 53, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6973345125192069120", + "numLikes": 910, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6973345125192069120", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 910, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6972803161589747712,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6972803161589747712", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6972803161589747712)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6972803161589747712)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-piste-dun-cr%C3%A9dit-dimp%C3%B4t-recherche-activity-6972803161589747712-PQsa?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6972803160851505152", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6972803161589747712", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6972803161589747712,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6972803161589747712,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6972803160851505152", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "tC2wslfwDXOpIYLzgq2osg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6972803161589747712,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8203724965978163625", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676297137973?e=1677240000&v=beta&t=-PKG0eepsN7WnjADEPAz_m5Sk-DEKKghZDqBEmCjc0o", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676297137973?e=1677240000&v=beta&t=kYfL6UPQRI7Ecfofj77exzZu3DKQ6Bn2SF6P5uL79Z0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676297137973?e=1677240000&v=beta&t=nFeUb_rUmWcI48xQOE-7NmFvVy5AEHrewuyXuvabMag", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676297137973?e=1677240000&v=beta&t=3m-l-19LaowolBb2iBsrXqHqoFX40YMxa0Y8XkKzb5o", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGSpKIlhPh5bQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8203724965978163625)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8203724965978163625)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La piste d'un cr\u00e9dit d'imp\u00f4t recherche \u00ab vert \u00bb \u00e0 l'\u00e9tude by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/economie-france/budget-fiscalite/la-piste-dun-credit-dimpot-recherche-vert-a-letude-1785684" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La piste d'un cr\u00e9dit d'imp\u00f4t recherche \u00ab\u00a0vert\u00a0\u00bb \u00e0 l'\u00e9tude" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6972803160851505152,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "6 milliards d'euros de d\u00e9pense publique servent chaque ann\u00e9e \u00e0 soutenir la recherche et d\u00e9veloppement dans les entreprises. Cela s'appelle le cr\u00e9dit imp\u00f4t recherche (CIR) et le cr\u00e9dit imp\u00f4t innovation. Le principe est le suivant : si une entreprise peut justifier qu'elle a financ\u00e9 des d\u00e9penses de R&D ou d'innovation avec un r\u00e9sultat qui n'\u00e9tait pas \"garanti \u00e0 l'avance\" (donc avec une prise de risque), l'Etat paye 20% (innovation) \u00e0 30% (recherche) des couts (https://bit.ly/3AThsOf ).\n\nUn certain nombre de personnes - dont votre serviteur - soutiennent que, si le projet de la soci\u00e9t\u00e9 est de d\u00e9carboner l'\u00e9conomie, alors il faut rendre ce cr\u00e9dit imp\u00f4t recherche conditionnel sur la question du carbone.\n\nUne premi\u00e8re mani\u00e8re est de cr\u00e9er une taxonomie et de n'accorder ce cr\u00e9dit imp\u00f4t que pour des recherches qui visent \u00e0 am\u00e9liorer des objets qui sont r\u00e9put\u00e9s concourir \u00e0 la d\u00e9carbonation. Si l'on choisit cette r\u00e8gle, cela signifie que les recherches sur les pompes \u00e0 chaleur, les v\u00e9los \u00e9lectriques, le nucl\u00e9aire ou les mat\u00e9riaux d'isolation sont \u00e9ligibles, mais pas la recherche pour proposer une nouvelle gamme de boissons sucr\u00e9es ou de mobilier de salon.\n\nUne variante est de faire non point une liste verte mais une liste noire. A ce moment on exclut le CIR si l'entreprise qui le demande op\u00e8re dans certains champs d'activit\u00e9 (typiquement l'extraction ou l'utilisation de combustibles fossiles).\n\nCette r\u00e8gle a l'avantage d'une relative simplicit\u00e9 (l'administration fiscale dispose d'une liste \u00e9ligible ou d'une liste \u00e0 exclure, et v\u00e9rifie que l'entreprise s'occupe des bons produits ou services pour accorder le CIR). Elle a l'inconv\u00e9nient de ne pas garantir que les activit\u00e9s de l'entreprise substituent des usages carbon\u00e9s et non s'y rajoutent. \n\nPar exemple si on consid\u00e8re que les v\u00e9los sont d\u00e9carbonants, on ne s'occupe pas de savoir si les clients en ach\u00e8tent pour aller en faire le week-end (\u00e9ventuellement en utilisant d'abord une voiture !), sans effet sur la baisse des \u00e9missions, ou s'ils remplacent un engin motoris\u00e9 pour une partie des d\u00e9placements du quotidien.\n \nUne deuxi\u00e8me mani\u00e8re serait de demander \u00e0 l'entreprise qui r\u00e9clame le CIR de faire la preuve que ses produits substituent des usages plus carbon\u00e9s, quels que soient les produits ou services vendus. A ce compte l\u00e0, une entreprise qui vend des v\u00e9los \u00e0 des personnes qui s'en serviront pour ne pas prendre une voiture est \u00e9ligible, mais pas celle qui vend des v\u00e9los \u00e0 des personnes qui commenceront par le mettre dans la soute d'un avion pour aller se promener ailleurs. \n\nCette r\u00e8gle est bien plus complexe \u00e0 mettre en oeuvre, mais a pour but d'avoir une garantie sur le r\u00e9sultat. \n\nLes d\u00e9penses de R&D des entreprises conditionnent tr\u00e8s fortement ce qu'elles feront ou pas \u00e0 l'avenir. Leur dire que la collectivit\u00e9 ne les aide pas \u00e0 prendre de risques si leurs plans pour l'avenir ne sont pas compatibles avec la baisse des \u00e9missions serait juste une forme de bon sens." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6972803160851505152,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6972803161589747712,urn:li:activity:6972803161589747712,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 126, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6972803161589747712,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6972803161589747712,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6972803161589747712", + "threadId": "activity:6972803161589747712", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6972803161589747712", + "urn": "urn:li:activity:6972803161589747712", + "numComments": 170, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6972803161589747712", + "reactionTypeCounts": [ + { + "count": 1901, + "reactionType": "LIKE" + }, + { + "count": 197, + "reactionType": "MAYBE" + }, + { + "count": 149, + "reactionType": "INTEREST" + }, + { + "count": 52, + "reactionType": "PRAISE" + }, + { + "count": 44, + "reactionType": "APPRECIATION" + }, + { + "count": 19, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6972803161589747712", + "numLikes": 2362, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6972803161589747712", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2362, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6972449875397341184,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6972449875397341184", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6972449875397341184)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6972449875397341184)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-d%C3%A9sarrois-des-politiques-devant-le-monde-activity-6972449875397341184-6DC2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6972449874449432576", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6972449875397341184", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6972449875397341184,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6972449875397341184,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6972449874449432576", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "XSUppl2VmMl8JLP67f5HIw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6972449875397341184,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8204941295343428766", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675958763531?e=1677240000&v=beta&t=Vu7d0qVO5UkdzMaKVpanDmuZkhLeho2imxvEXB1hdp0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675958763531?e=1677240000&v=beta&t=rqr1SAJn8ihkfGjHWNOEpZAoa7g0N7rvZ4l8gKPA2Jw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675958763532?e=1677240000&v=beta&t=NxDG5_BzH0uVAMHy4QA_QjW8fWE_XJLi09-XAxguXXs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675958763532?e=1677240000&v=beta&t=Wee7Dtx-0WlRHWeWcubBVddnEhPbdVOMakayX9VPLJ0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE3khdg456nBg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8204941295343428766)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8204941295343428766)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les d\u00e9sarrois des politiques devant le monde d'apr\u00e8s by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/les-desarrois-des-politiques-devant-le-monde-dapres-1785316" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les d\u00e9sarrois des politiques devant le monde d'apr\u00e8s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6972449874449432576,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Et de deux : Eric Le Boucher, \u00e9ditorialiste aux Echos, rejoint les \"post-lib\u00e9raux\". Lui qui fut un grand d\u00e9fenseur du \"march\u00e9\" signe une tribune dans le quotidien de l'\u00e9conomie dans laquelle il prend acte du fait que, dans un certain nombre de domaines, cette mani\u00e8re de voir n'a pas amen\u00e9 le monde merveilleux. \n\nPrix qui font n'importe quoi (pour l'\u00e9lectricit\u00e9 et le gaz c'\u00e9tait par ailleurs le sujet de ma chronique de Samedi dernier sur RTL : https://bit.ly/3THuUNA ), s\u00e9curit\u00e9 d'approvisionnement non garantie, bulles sur les actifs, et pas plus de prise en compte du changement climatique qu'avant : la concurrence partout et tout le temps n'est donc pas le syst\u00e8me parfait qui permettrait de faire \u00e0 la fois une plan\u00e8te pr\u00e9serv\u00e9e, un cadre pr\u00e9visible et un consommateur combl\u00e9.\n\nMais alors, par quoi remplacer cette \"\u00e9conomie lib\u00e9rale\" qui a \u00e9t\u00e9 largement au centre de la production du monde acad\u00e9mique - et donc des politiques publiques - ces derni\u00e8res d\u00e9cennies ? Le Boucher fait le constat - que je partage - que pour le moment il n'y a pas de rel\u00e8ve th\u00e9orique. Il y a bien des promesses simplistes dans certains courants politiques, mais pas de syst\u00e8me \u00e9conomique conceptualis\u00e9 de A \u00e0 Z qui partirait d'hypoth\u00e8ses diff\u00e9rentes de celles qui alimentent aujourd'hui la pens\u00e9e dominante.\n\nEtonnamment, la pens\u00e9e lib\u00e9rale s'invite m\u00eame quand il s'agit de r\u00e9gler le probl\u00e8me caus\u00e9 par la pens\u00e9e en question ! Par exemple nombre d'\u00e9conomistes du changement climatique postulent que le bas prix des ENR aujourd'hui garantit leur disponibilit\u00e9 physique demain, ce qui est tr\u00e8s exactement la mani\u00e8re de voir pour tout bien qui pr\u00e9vaut en \u00e9conomie lib\u00e9rale (si les prix ont baiss\u00e9 hier alors la disponibilit\u00e9 physique croissante est garantie demain, mais on voit bien avec le pass\u00e9 r\u00e9cent que ce n'est pas aussi simple).\n\nLe Boucher ose aussi \u00e9crire \"Comme une \u00e9conomie d\u00e9carbon\u00e9e sera moins efficace et plus ch\u00e8re (sauf rupture technologique), la lutte pour le climat se r\u00e9sume en fait \u00e0 un probl\u00e8me social. Il va falloir enfin le dire clairement et ajouter que pour aider les plus fragiles, il faudra bien prendre l'argent ailleurs et o\u00f9.\"\n\nIl a tout \u00e0 fait raison, puisque le carbone c'est notre costume d'Ironman qui rend l'\u00e9conomie efficace (c'est-\u00e0-dire productive). C'est l'impens\u00e9 des Nations Unies qui, avec les 17 objectifs du d\u00e9veloppement durable, affirment explicitement que nous aurons de la croissance verte (l'objectif 8 c'est la croissance \u00e9conomique). \n\nPenser l'\u00e9conomie autrement demande donc de repartir des axiomes de d\u00e9part et d'en prendre d'autres (en particulier d'int\u00e9grer explicitement les ressources physiques dans la fonction de production). Il s'agit donc de rien moins que de mettre bas l'essentiel de la litt\u00e9rature acad\u00e9mique pass\u00e9e pour repartir sur de nouvelles bases. La question est : aurons nous le temps de th\u00e9oriser ce qu'il faut faire avant de nous lancer dans l'action ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6972449874449432576,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6972449875397341184,urn:li:activity:6972449875397341184,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 177, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6972449875397341184,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6972449875397341184,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6972449875397341184", + "threadId": "activity:6972449875397341184", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6972449875397341184", + "urn": "urn:li:activity:6972449875397341184", + "numComments": 304, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6972449875397341184", + "reactionTypeCounts": [ + { + "count": 2809, + "reactionType": "LIKE" + }, + { + "count": 300, + "reactionType": "MAYBE" + }, + { + "count": 299, + "reactionType": "INTEREST" + }, + { + "count": 73, + "reactionType": "PRAISE" + }, + { + "count": 38, + "reactionType": "APPRECIATION" + }, + { + "count": 31, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6972449875397341184", + "numLikes": 3550, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6972449875397341184", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3553, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6972131755885527040,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6972131755885527040", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6972131755885527040)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6972131755885527040)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_why-are-we-feeding-crops-to-our-cars-when-activity-6972131755885527040-BMBn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6972131755164110848", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6972131755885527040", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6972131755885527040,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6972131755885527040,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6972131755164110848", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "9W8KI0o5obAASGgn0IAyFw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6972131755885527040,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7810250240110896438", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676049702485?e=1677240000&v=beta&t=HPQcDMJaG911aCxNsdiXttrbZExH0Qb0i-IxfUZnUqI", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676049702485?e=1677240000&v=beta&t=Madwbr_7YgdOmfXxtHTSAAZ17UQiF2byomEXvc3MhPc", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676049702485?e=1677240000&v=beta&t=Z8zac-PNKO0XxX52i3A4yR_zFQZ8JGZQUjpECqBgKSM", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676049702486?e=1677240000&v=beta&t=ziBzmojylOXpsJjNhFTWVMWqrwn6n1a4gUAZz2T0IBc", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH-JzRuqyanUA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7810250240110896438)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7810250240110896438)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Why are we feeding crops to our cars when people are starving? | George Monbiot by theguardian.com", + "actionTarget": "https://www.theguardian.com/commentisfree/2022/jun/30/crops-cars-starving-biofuels-climate-sustainable" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Why are we feeding crops to our cars when people are starving? | George Monbiot" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6972131755164110848,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'article date d'il y a 2 mois, mais apr\u00e8s l'\u00e9t\u00e9 que nous venons de vivre il n'est peut-\u00eatre pas inutile de le recycler. Dans cette tribune de George Monbiot, un \u00e9ditorialiste du Guardian qui m\u00eale r\u00e9f\u00e9rences pr\u00e9cises et style incisif, il est question de la pertinence de d\u00e9velopper les \"biocarburants\" dans nos strat\u00e9gies de lutte contre le changement climatique.\n\nSur les terres \u00e9merg\u00e9es de la plan\u00e8te, nous pouvons y avoir les usages suivants, qui en pratique s'excluent mutuellement :\n- produire des v\u00e9g\u00e9taux que nous mangerons, ou que nous donnerons \u00e0 manger \u00e0 des animaux que nous mangerons (ou pas : la viande pour nourrir des animaux de compagnie - et ce ne sont pas que des \"rebuts de l'alimentation humaine\" qui y passent - n'est pas n\u00e9gligeable en occident)\n- produire des mat\u00e9riaux ou mati\u00e8res premi\u00e8res non alimentaires (bois, lin, coton, chanvre, pois ou pommes de terre pour la chimie de l'amidon, etc)\n- avoir de l'\u00e9nergie : bois \u00e9nergie, m\u00e9thanisation - les allemands ont massivement d\u00e9velopp\u00e9 cela - et agrocarburants\n- enfin \"fiche la paix \u00e0 ce qui s'y trouve\", qui s'appelle pr\u00e9server la biodiversit\u00e9.\n\nLocalement certains usages peuvent \u00e9videmment \u00eatre mixtes (agriculture ou foresterie et biodiversit\u00e9 par exemple).\n\nDe ce fait, tout ce qui est utilis\u00e9 pour l'\u00e9nergie est autant en moins pour les autres usages. Cela pose d'inextricables probl\u00e8mes de m\u00e9thode pour calculer le contenu en gaz \u00e0 effet de serre de ces agrocarburants, incidemment. Sur une plan\u00e8te qui continue \u00e0 d\u00e9forester, faut-il imputer \u00e0 tout ajout marginal de cultures \u00e9nerg\u00e9tiques les \u00e9missions de la d\u00e9forestation marginale par exemple ?\n\nCe qui est sur, c'est que 40% du ma\u00efs US (13% du ma\u00efs mondial) finit sa vie dans un r\u00e9servoir de voiture, et que cela est aussi valable pour une fraction du bl\u00e9, du tournesol, du colza, du palme, ou de la canne \u00e0 sucre et des betteraves \u00e0 sucre. Si, au lieu de mettre 10% d'agrocarburants dans ce que nous achetons \u00e0 la pompe, on for\u00e7ait les voitures \u00e0 consommer 10% de moins, ca ne changerait pas la face de nos d\u00e9placements, et cela \u00e9viterait de mobiliser des surfaces majeures pour nos machines \u00e0 roulettes ou \u00e0 ailettes (le secteur a\u00e9rien compte massivement sur les agrocarburants pour faire de la \"croissance verte\", mais les ordres de grandeur n'y seront pas).\n\nComme le rappelle tr\u00e8s bien cet article, les politiques de promotion des agrocarburants n'ont pas \u00e9t\u00e9 mises en place pour des raisons environnementales. Elles datent de l'\u00e9poque des surplus agricoles qui d\u00e9primaient les prix. \n\nAlors que le changement climatique va diminuer les rendements des cultures, la meilleure mani\u00e8re de baisser la consommation d'\u00e9nergie fossile des transports est de baisser leur consommation d'\u00e9nergie tout court. V\u00e9lo sous toutes ses formes, petites voitures \u00e9lectriques et moins nombreuses, camions \u00e9lectriques et bus et train doivent faire l'essentiel le plus vite possible. Dans https://lnkd.in/esiqHkbf, il n'y a pas d'agrocarburants \u00e0 large \u00e9chelle. Pas la place." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6972131755164110848,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6972131755885527040,urn:li:activity:6972131755885527040,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 68, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6972131755885527040,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6972131755885527040,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6972131755885527040", + "threadId": "activity:6972131755885527040", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6972131755885527040", + "urn": "urn:li:activity:6972131755885527040", + "numComments": 108, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6972131755885527040", + "reactionTypeCounts": [ + { + "count": 1399, + "reactionType": "LIKE" + }, + { + "count": 142, + "reactionType": "INTEREST" + }, + { + "count": 130, + "reactionType": "MAYBE" + }, + { + "count": 26, + "reactionType": "APPRECIATION" + }, + { + "count": 24, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6972131755885527040", + "numLikes": 1730, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6972131755885527040", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1731, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 Edited \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6971795082949623808,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6971795082949623808", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6971795082949623808)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6971795082949623808)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_ventes-ptef-activity-6971795082949623808--lXT?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:ugcPost:6971795082022633472", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6971795082949623808", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6971795082949623808,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6971795082949623808,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:ugcPost:6971795082022633472", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "+FApllCT/S8mZiZyRcqoBw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6971795082949623808,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.DocumentComponent": { + "showDownloadCTA": false, + "document": { + "transcribedDocumentUrl": "https://media.licdn.com/dms/document/C4E1FAQEXkxqmBdaOTg/feedshare-document-url-metadata-scrapper-pdf/0/1662199522458?e=1677240000&v=beta&t=ylNMRDh-DeddIMPhdfNhM9da9g_57focmDXexKj-09M", + "urn": "urn:li:digitalmediaAsset:C4E1FAQEXkxqmBdaOTg", + "manifestUrl": "https://media.licdn.com/dms/document/C4E1FAQEXkxqmBdaOTg/feedshare-document-master-manifest/0/1662199523138?e=1677240000&v=beta&t=1xYySdpXZAYvkQl6GrJUDoCnSTxnt0hjx2eONFsVOFg", + "scanRequiredForDownload": true, + "totalPageCount": 1, + "manifestUrlExpiresAt": 1677240000000, + "title": "Ventes PTEF", + "coverPages": { + "transcripts": [], + "pagesPerResolution": [ + { + "width": 347, + "height": 491, + "imageUrls": [ + "https://media.licdn.com/dms/image/C4E1FAQEXkxqmBdaOTg/feedshare-document-cover-images_480/0/1662199523061?e=1677240000&v=beta&t=3mzO9GqwaA_WIeyhRnDut0XopICjlkorguR8Nz3E4JQ" + ] + }, + { + "width": 570, + "height": 806, + "imageUrls": [ + "https://media.licdn.com/dms/image/C4E1FAQEXkxqmBdaOTg/feedshare-document-cover-images_800/0/1662199523160?e=1677240000&v=beta&t=5SLFLp6T4R6PtOawSwHo5gOjlZOTQnJSTYRrrUmkadA" + ] + }, + { + "width": 909, + "height": 1286, + "imageUrls": [ + "https://media.licdn.com/dms/image/C4E1FAQEXkxqmBdaOTg/feedshare-document-cover-images_1280/0/1662199523080?e=1677240000&v=beta&t=G5O3jt8MItJjDEvyZ2Op5uN640FD4FcfIWLwgckILlY" + ] + }, + { + "width": 1363, + "height": 1929, + "imageUrls": [ + "https://media.licdn.com/dms/image/C4E1FAQEXkxqmBdaOTg/feedshare-document-cover-images_1920/0/1662199523120?e=1677240000&v=beta&t=aCnf46JeW2sqyO4zEiJnj9LvysUcBva0bSXrQ3trzMg" + ] + } + ] + }, + "transcribedDocumentUrlExpiresAt": 1677240000000 + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:ugcPost:6971795082022633472,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Cela fait 31 semaines que Le Plan de Transformation de l'Economie Fran\u00e7aise (PTEF) est en vente dans notre pays. Et fin ao\u00fbt ce livre occupait la 6\u00e8 place au sein des ouvrages les plus achet\u00e9s dans le pays, avec plus de 80.000 exemplaires \u00e9coul\u00e9s depuis la parution.\n\nIl faut savoir que dans notre pays un essai qui est un \"carton\" totalise 100.000 exemplaires payants ou plus. Avec les niveaux actuels de ventes hebdomadaires (qui ne vont pas plus tomber \u00e0 z\u00e9ro demain matin que les \u00e9missions de CO2 plan\u00e9taires), c'est tr\u00e8s probablement un seuil que nous allons d\u00e9passer. \n\nLorsque ce livre a \u00e9t\u00e9 r\u00e9alis\u00e9, nous avions avant tout pour objectif de pouvoir offrir un \"souvenir\" \u00e0 toutes les personnes qui ont contribu\u00e9 au financement participatif qui a permis d'avoir les moyens de r\u00e9aliser le PTEF, soit quelques milliers d'individus. Je pensais que la vente \"grand public\" \u00e0 des \"non donateurs\" se monterait \u00e0 quelques milliers d'exemplaires suppl\u00e9mentaires, c'est-\u00e0-dire l'ordre de grandeur de la diffusion du \"Manifeste pour D\u00e9carboner l'Europe\" que nous avions publi\u00e9 quelques ann\u00e9es auparavant.\n\nQuelques milliers d'exemplaires vendus, c'est ce que j'ai eu pour mon premier essai (https://lnkd.in/eGXHDmU3 ), et c'est aussi la diffusion moyenne d'un livre dans notre pays tous genres confondus. Pour un ouvrage collectif (l'auteur du livre est \"The Shift Project\"), je n'escomptais pas beaucoup plus.\n\nPour une fois, je suis ravi d'avoir fait une grosse erreur d'appr\u00e9ciation. Car cela signifie que le sujet est fortement mont\u00e9 en puissance depuis la publication du \"Manifeste pour D\u00e9carboner l'Europe\". En effet, si l'on prend les m\u00eames auteurs (le Shift Project avec une pr\u00e9face de votre serviteur), le m\u00eame th\u00e8me (la d\u00e9carbonation), et le m\u00eame mode de diffusion (le livre), et qu'en 5 ans de temps les ventes sont multipli\u00e9es par 20, c'est que le fait g\u00e9n\u00e9rateur est externe aux auteurs. \n\nDe quoi est-il question dans ce livre, pour celles et ceux qui ne l'ont pas lu ? De sobri\u00e9t\u00e9. C'est-\u00e0-dire d'une diminution planifi\u00e9e (et donc souhait\u00e9e en d\u00e9mocratie) des flux physiques qui sont \u00e0 l'origine d'une pression excessive sur notre maison commune, une certaine plan\u00e8te Terre. \n\nAvec ce livre, nous proposons une approche (parler d'\u00e9conomie sous l'angle des flux physiques et des emplois avant de parler d'euros) dont nous esp\u00e9rons qu'elle sera vue comme pertinente pour r\u00e9fl\u00e9chir \u00e0 la mani\u00e8re de \"sortir par le haut\" de la situation - pas simple - dans laquelle nous sommes.\n\nCe livre va avec un site internet baptis\u00e9 \"il nous faut un plan\" : https://lnkd.in/esiqHkbf. 6 mois apr\u00e8s sa sortie, il reste \u00e9videmment d'une actualit\u00e9 br\u00fblante." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:ugcPost:6971795082022633472,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:ugcPost:6971795082022633472,urn:li:ugcPost:6971795082022633472,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 88, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:ugcPost:6971795082022633472,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:ugcPost:6971795082022633472,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:ugcPost:6971795082022633472", + "threadId": "ugcPost:6971795082022633472", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:ugcPost:6971795082022633472", + "urn": "urn:li:ugcPost:6971795082022633472", + "numComments": 123, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:ugcPost:6971795082022633472", + "reactionTypeCounts": [ + { + "count": 1915, + "reactionType": "LIKE" + }, + { + "count": 313, + "reactionType": "PRAISE" + }, + { + "count": 48, + "reactionType": "INTEREST" + }, + { + "count": 29, + "reactionType": "APPRECIATION" + }, + { + "count": 27, + "reactionType": "EMPATHY" + }, + { + "count": 22, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:ugcPost:6971795082022633472", + "numLikes": 2354, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:ugcPost:6971795082022633472", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2354, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "5mo \u2022 ", + "accessibilityText": "5 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6971460258774818817,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6971460258774818817", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6971460258774818817)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6971460258774818817)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-gouvernement-peine-%C3%A0-trouver-un-patron-activity-6971460258774818817-qZK4?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6971460258154082304", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6971460258774818817", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6971460258774818817,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6971460258774818817,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6971460258154082304", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "tBSQ8cnK4ezpgDJJ4dYgXA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6971460258774818817,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7500441394420814375", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 768, + "fileIdentifyingUrlPathSegment": "800/0/1676293685364?e=1677240000&v=beta&t=B-LXEPEbE0nMyEPPBVxLdvewkOEFSu_rDYHdNBJleEA", + "expiresAt": 1677240000000, + "height": 432 + }, + { + "width": 768, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676293685364?e=1677240000&v=beta&t=orb4Cgi7Xrir8e_u8011u2eQVk2YFuSoFNAS_13qUSo", + "expiresAt": 1677240000000, + "height": 432 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676293685365?e=1677240000&v=beta&t=sE-NIiMJNmayyMc4BCTnm7u_8vk7Zt165aSdd7EPzYk", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676293685365?e=1677240000&v=beta&t=kYhjT1ADuDz9gpLapc6JNQQwMBnJvXFaX-o_IiIUP-c", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHO5oFAwZhALw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7500441394420814375)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7500441394420814375)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "bfmtv.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le gouvernement peine \u00e0 trouver un patron pour EDF by bfmtv.com", + "actionTarget": "https://www.bfmtv.com/economie/le-gouvernement-peine-a-trouver-un-patron-pour-edf_AV-202209020054.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le gouvernement peine \u00e0 trouver un patron pour EDF" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6971460258154082304,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Entreprise dont les orientations strat\u00e9giques sont ballot\u00e9es au gr\u00e9 des campagnes \u00e9lectorales et des promesses du moment, qui doit produire un tiers \u00e0 perte pour fournir des concurrents subventionn\u00e9s, dont les caisses sont \u00e0 tout instant \u00e0 la merci du gouvernement pour financer les missions de protection sociale de l'Etat alors m\u00eame qu'on lui demande de trouver des dizaines - voire des centaines - de milliards pour ses investissements, \u00e0 qui on a demand\u00e9 d'imiter les allemands alors que cela n'avait pas d'int\u00e9r\u00eat pour nous, et qui doit subir la volont\u00e9 constante de la Commission de la d\u00e9couper encore plus en tous petits morceaux, cherche patron(ne). \n\nOn ne se bouscule pas au portillon ? Quelle surprise !\n\nLes deux probl\u00e8mes les plus ennuyeux dans cette affaire sont d'une part la valse-h\u00e9sitation de la tutelle (le pouvoir politique), qui n'en peut plus de ne pas choisir (et d'\u00eatre incapable de faire la p\u00e9dagogie de ses choix sur la base de faits observables), et qui en plus n'assume pas ses erreurs pass\u00e9es (https://lnkd.in/e4SyEcTb), et la structure de march\u00e9 en Europe. Tant que ces deux probl\u00e8mes ne seront pas r\u00e9gl\u00e9s, m\u00eame un g\u00e9nie au poste de patron(ne) d'une EDF renationalis\u00e9e ne fera pas de miracles." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6971460258154082304,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6971460258774818817,urn:li:activity:6971460258774818817,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 140, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6971460258774818817,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6971460258774818817,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6971460258774818817", + "threadId": "activity:6971460258774818817", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6971460258774818817", + "urn": "urn:li:activity:6971460258774818817", + "numComments": 222, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6971460258774818817", + "reactionTypeCounts": [ + { + "count": 2140, + "reactionType": "LIKE" + }, + { + "count": 160, + "reactionType": "PRAISE" + }, + { + "count": 147, + "reactionType": "INTEREST" + }, + { + "count": 100, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "EMPATHY" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6971460258774818817", + "numLikes": 2581, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6971460258774818817", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2602, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6971378047006478336,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6971378047006478336", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6971378047006478336)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6971378047006478336)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sondage-exclusif-pouvoir-dachat-le-gouvernement-activity-6971378047006478336-GHaw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6971378046054367233", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6971378047006478336", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6971378047006478336,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6971378047006478336,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6971378046054367233", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "ZzID/9T9LRAXYNopybJiYg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6971378047006478336,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8497580652736577355", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675665409966?e=1677240000&v=beta&t=HsmSMbnNjWg-OrDfx8G5eLIL3YhWTBhBNSR-me60UGk", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675665409966?e=1677240000&v=beta&t=yavbE7BNGgzP_hFEprY4yqmPK1_51mN_7N9err4azKY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675665409966?e=1677240000&v=beta&t=-X4IMwD0LlR0AjBg9xtEeLBfUKyX-5VZlEpJ6Zya39I", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675665409966?e=1677240000&v=beta&t=krLzAw5koWHsNaV6yTiVbMYxcPG3Wj9RZ_XRA1PYmkY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG8iqpGVSg81w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8497580652736577355)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8497580652736577355)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: SONDAGE EXCLUSIF - Pouvoir d'achat : le gouvernement jug\u00e9 s\u00e9v\u00e8rement par des Fran\u00e7ais pessimistes by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/economie-france/budget-fiscalite/sondage-exclusif-pouvoir-dachat-le-gouvernement-juge-severement-par-des-francais-pessimistes-1785182" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "SONDAGE EXCLUSIF - Pouvoir d'achat\u00a0: le gouvernement jug\u00e9 s\u00e9v\u00e8rement par des Fran\u00e7ais pessimistes" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6971378046054367233,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"la question du pouvoir d'achat (...) tr\u00f4ne au centre de toutes les pr\u00e9occupations\", \u00e9crivent Les Echos dans un article r\u00e9alis\u00e9 \u00e0 partir d'un sondage men\u00e9 aupr\u00e8s de nos concitoyen(ne)s. \n\nReprenons depuis le d\u00e9but : en \u00e9conomie, le pouvoir d'achat correspond \u00e0 \"la quantit\u00e9 de biens et de services qu\u2019un revenu permet d\u2019acheter\" (https://bit.ly/33SRrMZ ).\n\nMais... pour \"pouvoir acheter\", il faut que des biens et services aient \u00e9t\u00e9 produits. Il faut alors des ressources naturelles pour fabriquer fourchettes et cartables, jouets pour Noel et chemises, voitures et immeubles, rouges \u00e0 l\u00e8vres et papier toilette, et il faut des machines pour transformer ces ressources bien plus puissamment que nos muscles (voir https://bit.ly/3KGa7pC ou relire Le Monde sans Fin !). \n\nM\u00eame les services sont d\u00e9pendants de substrats mat\u00e9riels (typiquement l'ordinateur sur lequel je tape ce post) et ont un \"contenu mati\u00e8re et \u00e9nergie\".\n\nRegardons maintenant devant nous. La machinerie mondiales utilise avant tout du p\u00e9trole, du gaz et du charbon. Que ce soit pour des raisons climatiques, ou par \u00e9puisement des ressources, ces \"croquettes pour machines\" vont devoir baisser. Idem pour les m\u00e9taux (les mines sont \u00e9puisables), les esp\u00e8ces vivantes, sans lesquelles l'appareil productif s'arr\u00eate, et avec les produits et services disponibles. Le \"pouvoir d'achat\" va donc fatalement baisser (par inflation ou par p\u00e9nurie) en tendance \u00e0 l'avenir.\n\nLorsqu'un indicateur que nous aimerions voir monter doit baisser, il est sage d'arr\u00eater de se focaliser dessus. Par quoi, alors, remplacer ce fichu pouvoir d'achat, qui va nous donner quelques sueurs froides \u00e0 un horizon proche ?\n\nUn certain nombre d'organisations - syndicales, associatives, mutualistes - ont propos\u00e9 le concept de \"pouvoir de vivre\", qui tient compte de 66 crit\u00e8res, certains \u00e9conomiques, mais beaucoup sociaux et environnementaux (https://bit.ly/3ehl8ll ). \n\nDans le contexte actuel, cette d\u00e9marche para\u00eet tout \u00e0 fait sens\u00e9e. Si l'on inclut dans nos objectifs le \"pouvoir voir un arbre\" (ce qui est bon pour le moral, les \u00e9tudes le montrent), \"pouvoir respirer un air correct\", \"pouvoir compter sur ses voisins\", \"pouvoir avoir le sentiment d'\u00eatre reconnu\", \"pouvoir disposer d'un climat pas trop d\u00e9r\u00e9gl\u00e9\", etc, et pas juste \"pouvoir acheter un smartphone plus gros\" ou \"pouvoir acheter une bouteille de coca\", il doit \u00eatre possible de faire un indicateur qui lui montera alors m\u00eame que nous allons devoir devenir sobres.\n\nMais il ne suffit pas d'un concept pour aller de l'avant : il faut aussi des outils pratiques. Comment pond\u00e9rer la vue sur un arbre vs. l'achat d'un kinder bueno (not\u00e9 E au nutriscore) ? Comment \u00e9tablir des comptes individuels (ce que l'argent permet) avec ce concept et en faire un indicateur d'arbitrage au quotidien ? Voici qui devrait urgemment inspirer un millier de th\u00e8ses en \"\u00e9conomie\" dans notre pays. Car, sans proposition pratique, il sera h\u00e9las impossible d'avancer avant de subir." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6971378046054367233,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6971378047006478336,urn:li:activity:6971378047006478336,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 137, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6971378047006478336,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6971378047006478336,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6971378047006478336", + "threadId": "activity:6971378047006478336", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6971378047006478336", + "urn": "urn:li:activity:6971378047006478336", + "numComments": 226, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6971378047006478336", + "reactionTypeCounts": [ + { + "count": 2376, + "reactionType": "LIKE" + }, + { + "count": 231, + "reactionType": "MAYBE" + }, + { + "count": 210, + "reactionType": "PRAISE" + }, + { + "count": 116, + "reactionType": "INTEREST" + }, + { + "count": 46, + "reactionType": "APPRECIATION" + }, + { + "count": 37, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6971378047006478336", + "numLikes": 3016, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6971378047006478336", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3016, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6970997238260973570,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6970997238260973570", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6970997238260973570)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6970997238260973570)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-l%C3%A9t%C3%A9-de-la-prise-de-conscience-activity-6970997238260973570-mtJy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6970997237443092480", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6970997238260973570", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6970997238260973570,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6970997238260973570,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6970997237443092480", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "lBiexT6wPoqT6Fb104Wc+Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6970997238260973570,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:6927056305297921070", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675448743436?e=1677240000&v=beta&t=E1cGJPBNj5_CH3JW1WQj5-BGg_rSfQSNkOMeANcV2hE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675448743436?e=1677240000&v=beta&t=dySV07VwqBQxreUPOR-4_Q8NdCKUJV-v4srxPkE-7l8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675448743436?e=1677240000&v=beta&t=FrRzCciJcghpFMLssifyWjCsWYE0snAorCl_JdNvfYw", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675448743436?e=1677240000&v=beta&t=W-Kwbaoo2BrYG8ClAteiVmrDd3ac2PMg50PrKhNCTYQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHXPZ1y2Ljg_g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6927056305297921070)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6927056305297921070)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici : L'\u00e9t\u00e9 de la prise de conscience, enfin ? - France 5 - C \u00e0 vous - 30/08/2022 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=b0-Pwiik6xk" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici \u00e9tait invit\u00e9 dans l'\u00e9mission \"C a vous\" sur France 5 le 30 aout 2022 sur le th\u00e8me : Face au risque de coupures d\u2019\u00e9nergie cet hiver, comment se pr\u00e9parer \u00e0 la sobri\u00e9t\u00e9 ? \u00c9mission en entier :..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici : L'\u00e9t\u00e9 de la prise de conscience, enfin ? - France 5 - C \u00e0 vous - 30/08/2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6970997237443092480,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1650, + "length": 15, + "miniProfile": { + "firstName": "Elisabeth", + "lastName": "BORNE", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAb0YewBAqka1YPf0s5nR5V2WqKbzK0zS4M", + "occupation": "Premi\u00e8re ministre", + "objectUrn": "urn:li:member:116679148", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAb0YewBAqka1YPf0s5nR5V2WqKbzK0zS4M", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1655129346943?e=1681948800&v=beta&t=SM9DOd-ICAdYaqw-Lqh7R-pSmoQWnfpwA3ZaHL-UOgM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1655129346943?e=1681948800&v=beta&t=TA5tfq8dh6WIv3lSYEC5zvZp35sPO4uNgOcwx68sSiQ", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG1qSej3Fy15A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "elisabeth-borne-7a40aa33", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1609849416708?e=1681948800&v=beta&t=8-YS5vyv2r3kjzbhdpreP5rr0iDcQY-a8_p9qGVFX8A", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1609849416708?e=1681948800&v=beta&t=c4kHwvc0So7wzOnoK-4P7o2ywmSiUAKRz8JEQjNxbhY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1609849416708?e=1681948800&v=beta&t=ImHFnBOjmYdqZye05q7s-L4Qy51tKsNR1mqpd-uzRns", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1609849416708?e=1681948800&v=beta&t=MdZPY6infpSh5gV0YWqQ5DWvoYJ9QAtuhL2TfQaMJKg", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHYkExuPDHEBA/profile-displayphoto-shrink_" + } + }, + "trackingId": "i9V10RASQv2lV5y/k7n5QA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "L'\u00e9t\u00e9 fut chaud, la rentr\u00e9e l'est aussi, mais pas exactement pour les m\u00eames raisons. L'urgence du jour est moins de se mettre \u00e0 d\u00e9carboner pour raisons climatiques que pour raisons poutinesques, avec un prix du gaz qui a \u00e9t\u00e9 multipli\u00e9 par 10 en un an sur le march\u00e9 de gros.\n\nMais les mesures \u00e0 prendre \u00e9tant sur le fond les m\u00eames que la cause soit la p\u00e9nurie \u00e0 venir ou le besoin de limiter nos \u00e9missions, le gouvernement s'est empar\u00e9 du sujet au point d'en faire un des \u00e9l\u00e9ments forts de son s\u00e9minaire de rentr\u00e9e. Val\u00e9rie Masson-Delmotte a eu droit \u00e0 une demi-heure lors de cette r\u00e9union minist\u00e9rielle, ce qui est beaucoup pour ce genre d'\u00e9v\u00e9nement, mais seulement un quaranti\u00e8me du temps minimum qu'il faudrait que le gouvernement consacre \u00e0 comprendre le probl\u00e8me \u00e0 traiter, comme je le rappelle dans cette intervention de 15 minutes (ce qui est beaucoup pour la t\u00e9l\u00e9 et tr\u00e8s insuffisant sur le fond !) dans l'\u00e9mission C \u00e0 Vous, juste avant que l'on parle des d\u00e9boires d'un footballeur en vue :)\n\nCar dans ce s\u00e9minaire il manquera un point central : l'expos\u00e9 du lien entre flux physiques et \u00e9conomie, dit autrement entre \u00e9nergie et \u00e9conomie (il y a aussi le facteur limitant de toutes les ressources physiques - comme par exemple les m\u00e9taux, les esp\u00e8ces vivantes ou les sols - dans l'affaire).\n\nFaute d'avoir compris ce lien, qui oblige \u00e0 ce que nous r\u00e9glions le probl\u00e8me climatique (\u00e0 la fois pour limiter les \u00e9missions et pour nous \"adapter\") dans une \u00e9conomie qui va se contracter, la r\u00e9ponse du gouvernement va \u00eatre qu'il a bien compris le probl\u00e8me mais que nous allons faire de la croissance verte (ce qui est du reste exactement ce qu'a dit Elisabeth BORNE lors de son discours \u00e0 l'universit\u00e9 d'\u00e9t\u00e9 du MEDEF).\n\nIl n'y a pas 36 moyens pour que le gouvernement poursuive dans la voie de la compr\u00e9hension des limites physiques : que cela soit un enjeu \u00e9lectoral. Car un gouvernement en d\u00e9mocratie arbitre des rapports de force. Il est essentiel de s'en souvenir." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6970997237443092480,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6970997238260973570,urn:li:activity:6970997238260973570,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 110, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6970997238260973570,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6970997238260973570,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6970997238260973570", + "threadId": "activity:6970997238260973570", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6970997238260973570", + "urn": "urn:li:activity:6970997238260973570", + "numComments": 175, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6970997238260973570", + "reactionTypeCounts": [ + { + "count": 2200, + "reactionType": "LIKE" + }, + { + "count": 138, + "reactionType": "PRAISE" + }, + { + "count": 64, + "reactionType": "EMPATHY" + }, + { + "count": 46, + "reactionType": "INTEREST" + }, + { + "count": 41, + "reactionType": "APPRECIATION" + }, + { + "count": 38, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6970997238260973570", + "numLikes": 2527, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6970997238260973570", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2528, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6970687245448003584,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6970687245448003584", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6970687245448003584)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6970687245448003584)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_linfo-march%C3%A9-du-jour-la-production-de-ma%C3%AFs-activity-6970687245448003584-GjCV?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6970687244588175360", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6970687245448003584", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6970687245448003584,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6970687245448003584,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6970687244588175360", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "kJBOoczAR6ZQha9LCAdOgQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6970687245448003584,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9100610183581337504", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 690, + "fileIdentifyingUrlPathSegment": "800/0/1676462905258?e=1677240000&v=beta&t=MUzjK7KnR3yuJnumrla0OfM1x_5mAdbuSvazUA8SX1o", + "expiresAt": 1677240000000, + "height": 388 + }, + { + "width": 690, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676462905258?e=1677240000&v=beta&t=QfODTNgHd-dbuYPmDaKZOU9kY1wn1wBDGUB-6bueAMo", + "expiresAt": 1677240000000, + "height": 388 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676462905259?e=1677240000&v=beta&t=ZI1EU2hO4MpUhmjqKbhWvwbpPsI2StYSpnD8-hq9iqc", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676462905259?e=1677240000&v=beta&t=QVb9fXSJjoixewfqrhSMxyoIDFZSQVqVpEx4fFg2o08", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHo0U-cbzA48A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5623188405797102 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9100610183581337504)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9100610183581337504)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "terre-net.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'info march\u00e9 du jour La production de ma\u00efs de l'UE devrait passer sous les 60 Mt by terre-net.fr", + "actionTarget": "https://www.terre-net.fr/marche-agricole/actualite-marche-agricole/article/la-production-de-mais-de-l-ue-est-rabaissee-a-59-6-mt-1395-210650.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'info march\u00e9 du jour La production de ma\u00efs de l'UE devrait passer sous les 60 Mt" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6970687244588175360,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si la s\u00e9cheresse n'a pas eu d'effet n\u00e9gatif majeur sur la r\u00e9colte de bl\u00e9 tendre en France ou dans l'Union europ\u00e9enne, qui se situe \u00e0 un niveau proche de la moyenne (https://bit.ly/3ebVtdL ), il n'en va pas de m\u00eame pour un certain nombre d'autres cultures :\n- le ma\u00efs fera 15% de moins que d'habitude\n- les pommes de terre feront 20% \u00e0 50% de moins (https://bit.ly/3pY4oSt ),\n- les pommes tout court feront aussi moins bien (https://bit.ly/3AC7KPY ),\n- et bien sur le foin et le fourrage pour les animaux, sur lesquels il y a aussi un d\u00e9ficit.\n\nA court terme, on peut dire que le probl\u00e8me n'est \"que\" \u00e9conomique. La plan\u00e8te produit encore assez pour nourrir tout le monde - \u00e9ventuellement avec moins de viande - et, surtout, l'abondance des transports permet la r\u00e9partition mondiale de ce qui pousse.\n\nMais \u00e0 plus long terme, d'une part la pression va augmenter sur les cultures parce que la d\u00e9rive climatique va s'intensifier, et d'autre part et surtout la d\u00e9crue p\u00e9troli\u00e8re signifiera une d\u00e9crue de la mondialisation (car cette derni\u00e8re c'est des cargos et des camions), et donc des transferts potentiellement importants de nourriture entre zones \u00e9loign\u00e9es. \n\nComprendre que les deux sujets vont nous contraindre \"en m\u00eame temps\" est un enjeu pour le pouvoir politique (et m\u00eame pour tout d\u00e9cideur \u00e9conomique). C'est une excellente nouvelle que Val\u00e9rie Masson Delmotte aille faire un \"cours de climat\" ce matin au gouvernement (https://bit.ly/3wErO2X ), mais il aurait \u00e9t\u00e9 pertinent d'avoir au m\u00eame moment un expos\u00e9 sur les contraintes \"amont\" (d'\u00e9nergie et de mat\u00e9riaux) pour comprendre deux choses :\n\n- la contrainte amont interdit \u00e0 elle seule de r\u00eaver \u00e0 une \"sortie par la croissance verte\" de la contrainte aval (le changement climatique et la pollution en g\u00e9n\u00e9ral).\n\n- le prix d'hier ne garantit en rien la disponibilit\u00e9 de demain (ni pour les denr\u00e9es agricoles - qui en France nous coutent 2% du PIB - ni pour l'\u00e9nergie- le prix d'hier ne garantit en rien la disponibilit\u00e9 de demain (ni pour les denr\u00e9es agricoles - qui en France nous coutent 2% du PIB - ni pour l'\u00e9nergie, ni pour rien qui se mesure en tonnes ou en litres en fait).\n\nRappelons que le GIEC consid\u00e8re qu'\u00e0 partir de 2\u00b0C de r\u00e9chauffement global il y a un risque s\u00e9rieux d'ins\u00e9curit\u00e9 alimentaire g\u00e9n\u00e9ralis\u00e9e. Une division par deux des productions ne ferait pas juste baisser le PIB mondial de 1% au motif que l'agriculture n'en repr\u00e9sente que 2%. Ca va \u00eatre un peu diff\u00e9rent de ca..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6970687244588175360,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6970687245448003584,urn:li:activity:6970687245448003584,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 64, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6970687245448003584,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6970687245448003584,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6970687245448003584", + "threadId": "activity:6970687245448003584", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6970687245448003584", + "urn": "urn:li:activity:6970687245448003584", + "numComments": 134, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6970687245448003584", + "reactionTypeCounts": [ + { + "count": 1228, + "reactionType": "LIKE" + }, + { + "count": 215, + "reactionType": "INTEREST" + }, + { + "count": 142, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6970687245448003584", + "numLikes": 1620, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6970687245448003584", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1620, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6970323330826444800,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6970323330826444800", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6970323330826444800)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6970323330826444800)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-tournant-radio-france-activity-6970323330826444800-VJY9?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6970323329744314368", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6970323330826444800", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6970323330826444800,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6970323330826444800,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6970323329744314368", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "PHeIk3ngvaa7xxs5wdQuWg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6970323330826444800,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8326513065850657672", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675942418901?e=1677240000&v=beta&t=5LoEagnRFGcx1FXlW_BpLmrWmT_KoNLQ7_tM222l5PM", + "expiresAt": 1677240000000, + "height": 200 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675942418901?e=1677240000&v=beta&t=J4JwDWQohfaw5Apxml29H3Sp0CyZIF_-LhdccmWmy_o", + "expiresAt": 1677240000000, + "height": 320 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675942418901?e=1677240000&v=beta&t=Uid9bGPOH-cg7r0Z3VOKXs4viErJq09_GCAWIGQwcbQ", + "expiresAt": 1677240000000, + "height": 40 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675942418901?e=1677240000&v=beta&t=0G7G-rMJ4srBsJTmXqhAe0UtDIVMpXSRwdz69m5NAOs", + "expiresAt": 1677240000000, + "height": 120 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHOnfxt8ZOamQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8326513065850657672)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8326513065850657672)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "radiofrance.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Tournant | Radio France by radiofrance.com", + "actionTarget": "https://www.radiofrance.com/le-tournant" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Tournant | Radio France" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6970323329744314368,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1072, + "length": 10, + "miniProfile": { + "firstName": "Caffier Jean", + "lastName": "Louis", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAgBKukBnL9QTuMVuKerJF2LzI6-lHE8YvE", + "occupation": "Chef d'entreprise, Kafcom", + "objectUrn": "urn:li:member:134294249", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAgBKukBnL9QTuMVuKerJF2LzI6-lHE8YvE", + "publicIdentifier": "caffier-jean-louis-6b5b8438", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516806265765?e=1681948800&v=beta&t=eKHVVl13JAlBJoKyMRZPMF4BGvcx4qMP4IMFYgzumy0", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516806265765?e=1681948800&v=beta&t=bnjRqC4Umz4ZaDsnTNk-26Ij53Lc25JdZ43YKHKpMA8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516806265765?e=1681948800&v=beta&t=T1IDY8vRZdoj-yk0p51nVatTY4oECfHQL-Nq7stXMg0", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516806265765?e=1681948800&v=beta&t=y9t33dTqWZkr5DXY5xJGiKc0nvNwaNhDfWEOdNgk2EU", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHH7lRUR_x8eQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "x0zllu38QJuOG7vC70kDvg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Radio France a publi\u00e9 hier une esp\u00e8ce de manifeste pour s'engager \u00e0 un \"tournant environnemental\". Dans les engagements pris par l'entreprise - qui comporte 2 des 3 radios les plus \u00e9cout\u00e9es de France : France Inter et France Info - figure celui-ci : \"Radio France lance le plus grand plan de formation de son histoire \u00e0 destination de ses journalistes, ses producteurs et \u00e9quipes de production, et ses animateurs, sur les questions climatiques et scientifiques. Nous changeons de philosophie : l\u2019environnement et la science ne seront pas l\u2019affaire des seuls journalistes sp\u00e9cialis\u00e9s, ils constitueront le socle de connaissances indispensables mobilisables par toutes nos \u00e9quipes \u00e9ditoriales.\"\n\nCette id\u00e9e que la compr\u00e9hension physique du monde est aussi n\u00e9cessaire au journaliste que de parler correctement fran\u00e7ais, parce que les media sont des facteurs majeurs d'orientation des d\u00e9bats soci\u00e9taux (voir les 5 premiers articles de https://bit.ly/3Tl9Dt7 ), est un vieux combat.\n\nIl y a 17 ans d\u00e9sormais, je m'\u00e9tais lanc\u00e9 avec Herv\u00e9 le Treut (un physicien \"climatologue\"), Jean Louis Caffier (alors r\u00e9dacteur en chef sur LCI), et Laurent Ancenay (alors directeur de l'office du tourisme de Combloux) dans la mise sur pied des \"Entretiens de Combloux\" (https://bit.ly/3RpuZnn ). \n\nIl s'agissait \u00e0 l'\u00e9poque d'une initiative un peu Don quichottesque : cr\u00e9er une \u00e9cole d'hiver pour responsables de r\u00e9daction pour leur donner les bases scientifiques et techniques du dossier \u00e9nergie climat, parce que ces sujets \u00e9tant syst\u00e9miques ils se retrouvent partout, au sport comme \u00e0 l'\u00e9conomie, aux faits divers comme \u00e0 la politique, \u00e0 l'actualit\u00e9 internationale comme \u00e0 l'am\u00e9nagement du territoire. \n\nEn bref, nous poursuivions exactement ce que Radio France a d\u00e9sormais comme objectif : faire comprendre \u00e0 tout journaliste de quoi il retourne afin qu'il puisse faire le lien avec son sujet propre, et correctement g\u00e9rer les interfaces (la fameuse \"coh\u00e9rence !\") avec les sujets de ses coll\u00e8gues.\n\nJe me rappelle qu'\u00e0 l'\u00e9poque (nous avons arr\u00eat\u00e9 en 2019) il fallait aller chercher les participant(e)s un par un \u00e0 la force du poignet, que c'\u00e9tait dur de les faire venir, en particulier les \"grands chefs\" (\"pas le temps\", \"pas mon sujet\", \"pas besoin\", \"nous n'acceptons pas de venir dans des manifestations gratuites parce que ca veut dire que vous \u00eates sous influence de vos financeurs\", etc...). \n\nIl fallait aussi aller chercher quelques milliers d'euros \u00e0 la force du poignet aupr\u00e8s des sponsors (et ca tenait beaucoup \u00e0 quelques individus souhaitant nous donner un coup de pouce \u00e0 hauteur de leurs possibilit\u00e9s budg\u00e9taires autonomes ; c'\u00e9tait aussi assez dur de convaincre sur l'enjeu de la formation des journalistes, m\u00eame \u00e0 l'Ademe...), lesquels sponsors ne pouvaient \u00e9videmment pas \u00eatre des \u00e9nerg\u00e9ticiens.\n\nIl aura donc fallu 17 ans pour que nous passions de cet artisanat des d\u00e9buts \u00e0 \"quelque chose\" qui commence \u00e0 \u00eatre \u00e0 la hauteur des enjeux. Bravo, mais il \u00e9tait temps." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6970323329744314368,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6970323330826444800,urn:li:activity:6970323330826444800,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 204, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6970323330826444800,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6970323330826444800,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6970323330826444800", + "threadId": "activity:6970323330826444800", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6970323330826444800", + "urn": "urn:li:activity:6970323330826444800", + "numComments": 270, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6970323330826444800", + "reactionTypeCounts": [ + { + "count": 5859, + "reactionType": "LIKE" + }, + { + "count": 772, + "reactionType": "PRAISE" + }, + { + "count": 178, + "reactionType": "EMPATHY" + }, + { + "count": 117, + "reactionType": "APPRECIATION" + }, + { + "count": 54, + "reactionType": "INTEREST" + }, + { + "count": 52, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6970323330826444800", + "numLikes": 7032, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6970323330826444800", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7033, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6970116846364598272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6970116846364598272", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6970116846364598272)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6970116846364598272)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sobri%C3%A9t%C3%A9-%C3%A9nerg%C3%A9tique-%C3%A9lisabeth-borne-appelle-activity-6970116846364598272-XiD-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6970116845529874433", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6970116846364598272", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6970116846364598272,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6970116846364598272,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6970116845529874433", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "T9Cm/u8BsaiDNVVhZN9D4A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6970116846364598272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7018636392892037263", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676623094890?e=1677240000&v=beta&t=vw6Th_qAQSsPfyYkDvmfqZMETeHxls3sF5u2rIoPV7A", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676623094890?e=1677240000&v=beta&t=U-8TYgn8AISq3DW_BotSYT3rEqOp-I5LpQwlnCLOhwA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676623094890?e=1677240000&v=beta&t=o5SR1RqyuFDoipLwCg8CxKoxvb7lJNGPQYk9YZJteQs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676623094891?e=1677240000&v=beta&t=TqEvDsnN4GrLdNRG6BKbbsq2SyH7-icCA15MZbsQZUg", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF8hcYuEzwYsw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Intervention de la Premi\u00e8re ministre \u00c9lisabeth Borne devant les entrepreneurs de France." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7018636392892037263)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7018636392892037263)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "gouvernement.fr \u2022 17 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique : \u00c9lisabeth Borne appelle \u00e0 la \u00ab responsabilit\u00e9 collective \u00bb by gouvernement.fr", + "actionTarget": "https://www.gouvernement.fr/actualite/sobriete-energetique-elisabeth-borne-appelle-a-la-responsabilite-collective" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique : \u00c9lisabeth Borne appelle \u00e0 la \u00ab responsabilit\u00e9 collective \u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6970116845529874433,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 98, + "length": 15, + "miniProfile": { + "firstName": "Elisabeth", + "lastName": "BORNE", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAb0YewBAqka1YPf0s5nR5V2WqKbzK0zS4M", + "occupation": "Premi\u00e8re ministre", + "objectUrn": "urn:li:member:116679148", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAb0YewBAqka1YPf0s5nR5V2WqKbzK0zS4M", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1655129346943?e=1681948800&v=beta&t=SM9DOd-ICAdYaqw-Lqh7R-pSmoQWnfpwA3ZaHL-UOgM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1655129346943?e=1681948800&v=beta&t=TA5tfq8dh6WIv3lSYEC5zvZp35sPO4uNgOcwx68sSiQ", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG1qSej3Fy15A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "elisabeth-borne-7a40aa33", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1609849416708?e=1681948800&v=beta&t=8-YS5vyv2r3kjzbhdpreP5rr0iDcQY-a8_p9qGVFX8A", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1609849416708?e=1681948800&v=beta&t=c4kHwvc0So7wzOnoK-4P7o2ywmSiUAKRz8JEQjNxbhY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1609849416708?e=1681948800&v=beta&t=ImHFnBOjmYdqZye05q7s-L4Qy51tKsNR1mqpd-uzRns", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1609849416708?e=1681948800&v=beta&t=MdZPY6infpSh5gV0YWqQ5DWvoYJ9QAtuhL2TfQaMJKg", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHYkExuPDHEBA/profile-displayphoto-shrink_" + } + }, + "trackingId": "i9V10RASQv2lV5y/k7n5QA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Apr\u00e8s avoir \u00e9voqu\u00e9 la possibilit\u00e9 que la Russie nous coupe totalement l'approvisionnement gazier, Elisabeth BORNE a appel\u00e9, dans le discours tenu \u00e0 l'universit\u00e9 d'\u00e9t\u00e9 du MEDEF, \u00e0 ce que le pays \u00e9conomise rapidement \"de l'\u00e9nergie\", rappelant que c'\u00e9tait aussi n\u00e9cessaire pour le climat. \n\nDans ses propos elle a \u00e9voqu\u00e9 les points suivants :\n\n- chaque minist\u00e8re doit finaliser en septembre un plan de sobri\u00e9t\u00e9 pour r\u00e9duire sa consommation de 10% au moins dans les deux prochaines ann\u00e9es (notons que pour les combustibles fossiles cela rapproche la baisse de ce qu'il faut faire au titre du climat)\n\n- \"chaque entreprise\" (toutes ou celles de plus d'une certaine taille ? Le discours est muet l\u00e0-dessus) \"est appel\u00e9e \u00e0 \u00e9tablir, en septembre, son propre plan de sobri\u00e9t\u00e9\" (\"est appel\u00e9e\" = doit sous peine de sanctions ou bien ca serait juste bien qu'elle le fasse ? ce n'est pas pr\u00e9cis\u00e9)\n\n- qu'il est possible qu'un rationnement soit organis\u00e9 si les efforts volontaires ne sont pas suffisants (comprendre \"si il n'y a de toute fa\u00e7on pas assez il faudra bien que l'on fasse avec\")\n\n- qu'en pareil cas \"les entreprises seraient les premi\u00e8res touch\u00e9es\" (ce qui signifie que le choix du gouvernement est de commencer par affaiblir la production plut\u00f4t que la consommation des m\u00e9nages)\n\n- que la d\u00e9croissance n'est pas la solution (pourtant c'est bien la d\u00e9croissance de la consommation d'\u00e9nergie, donc des machines au travail, que Borne demande !)\n\n- dans la foul\u00e9e, que la planification \u00e9cologique est une nouvelle croissance (ah les charmes secrets de la croissance verte...)\n\n- que le gouvernement va proposer un \"plan global et complet\" pour avancer sur la d\u00e9carbonation (au passage il y a quelques centaines de personnes qui y ont d\u00e9j\u00e0 r\u00e9fl\u00e9chi... : https://lnkd.in/esiqHkbf )\n\n- que les 3 premiers volets concerneront la for\u00eat, l'agriculture et les \u00e9nergies d\u00e9carbon\u00e9es (normalement dans un livre complet on ne publie pas les 3 premiers chapitres avant les autres...).\n\nL'essentiel du discours rel\u00e8ve cependant des d\u00e9clarations d'intention. Il n'a pas \u00e9t\u00e9 \u00e9voqu\u00e9 l'acc\u00e9l\u00e9ration de mesures de sobri\u00e9t\u00e9 pure :\n- limitation de la temp\u00e9rature de consigne \n- limitation de vitesse \u00e0 110 sur les autoroutes, covoiturage, mobilit\u00e9s actives\n- baisse du trafic a\u00e9rien...\n\nDans son discours Borne parle \"d\u2019arr\u00eater d\u00e8s maintenant toutes les consommations d\u2019\u00e9nergie qui ne sont pas indispensables\". Il se trouve que cela recouvre malheureusement l'essentiel de ce que nous avons. En effet, il n'est \"pas indispensable\" d'avoir 40 m2 habitables par personne (on peut vivre dans moins), un peu plus d'une voiture d'une tonne et quelques par m\u00e9nage (il fut un temps o\u00f9 l'on faisait sans), un placard plein de v\u00eatements, un abonnement Netflix, un grille pain, un aspirateur, des vacances en location ou des jouets \u00e0 No\u00ebl. L'essentiel de ce qui fait tourner l'\u00e9conomie rel\u00e8ve aujourd'hui du d\u00e9sir solvable. Une des grandes difficult\u00e9s de l'\u00e9poque \u00e0 venir sera de nous accorder sur ce qui est \"indispensable\" ou pas." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6970116845529874433,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6970116846364598272,urn:li:activity:6970116846364598272,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 329, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6970116846364598272,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6970116846364598272,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6970116846364598272", + "threadId": "activity:6970116846364598272", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6970116846364598272", + "urn": "urn:li:activity:6970116846364598272", + "numComments": 608, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6970116846364598272", + "reactionTypeCounts": [ + { + "count": 4463, + "reactionType": "LIKE" + }, + { + "count": 400, + "reactionType": "MAYBE" + }, + { + "count": 365, + "reactionType": "INTEREST" + }, + { + "count": 107, + "reactionType": "PRAISE" + }, + { + "count": 45, + "reactionType": "APPRECIATION" + }, + { + "count": 39, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6970116846364598272", + "numLikes": 5419, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6970116846364598272", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5439, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6969759230367035392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6969759230367035392", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6969759230367035392)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6969759230367035392)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_letat-du-texas-boycotte-bnp-paribas-et-dautres-activity-6969759230367035392-ponE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6969759229691711488", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6969759230367035392", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6969759230367035392,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6969759230367035392,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6969759229691711488", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "2H+JylDaByGzqQPUzkipSQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6969759230367035392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8661777549179331323", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675426568850?e=1677240000&v=beta&t=-9ukZYJIy-e6pP0hAQ5YsyBceX00fxsfO90uEjkV4Tk", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675426568850?e=1677240000&v=beta&t=ZJRWpqwAj2GA-ObY-EeLnpDM-Xng5qu9w3B6-4YvOrc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675426568850?e=1677240000&v=beta&t=a2Mq69JI0R15PGrAXvWRnybNTCBHMhlwqHyXgqYSgzE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675426568850?e=1677240000&v=beta&t=2wM0hksU-uKvw81tW-yTRhGI-p8hrjwQuSwBcYzGlA8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEmRvpo_VUC1w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8661777549179331323)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8661777549179331323)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'Etat du Texas boycotte BNP Paribas et d'autres banques jug\u00e9es trop \u00ab vertes \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/etats-unis/letat-du-texas-boycotte-bnp-paribas-et-dautres-banques-jugees-trop-vertes-1783860#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'Etat du Texas boycotte BNP Paribas et d'autres banques jug\u00e9es trop \u00ab\u00a0vertes\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6969759229691711488,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9cid\u00e9ment, vouloir \u00eatre une banque \"verte\" n'est pas un m\u00e9tier de tout repos. En Europe, les banques se font malmener par les ONG qui les accusent de ne pas prendre leurs distances assez vite avec l'industrie des combustibles fossiles.\n\nMais voil\u00e0-t-y pas que le Texas vient de d\u00e9cider de rendre la vie dure aux m\u00eames banques... pour la raison exactement inverse. Dans cet \u00e9tat qui h\u00e9berge la premi\u00e8re production de p\u00e9trole des USA, le grief est au contraire de ne pas aimer assez les p\u00e9troliers !\n\nLe Texas (par la voix de son contr\u00f4leur financier) a donc demand\u00e9 aux fonds de pension g\u00e9r\u00e9s par l'Etat de ne plus souscrire \u00e0 des produits propos\u00e9s par les banques ou les gestionnaires d'actifs mis \u00e0 l'index. \n\nL\u00e0 o\u00f9 cela commence \u00e0 devenir franchement cocasse, c'est que le patron de BlackRock, plus gros gestionnaire d'actif au monde, et qui il y a un peu plus d'un an se r\u00e9pandait partout en expliquant qu'il voulait devenir \"compatible accord de Paris\", explique d\u00e9sormais combien il aime le p\u00e9trole en donnant les montants des investissements r\u00e9alis\u00e9s par sa soci\u00e9t\u00e9 dans les op\u00e9rateurs texans.\n\nCela confirme une chose : ce sont bien les \u00e9tats qui in fine d\u00e9cident des r\u00e8gles dans cette histoire, pas les entreprises ni les financiers. Les bonnes r\u00e8gles comme les mauvaises." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6969759229691711488,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6969759230367035392,urn:li:activity:6969759230367035392,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 113, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6969759230367035392,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6969759230367035392,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6969759230367035392", + "threadId": "activity:6969759230367035392", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6969759230367035392", + "urn": "urn:li:activity:6969759230367035392", + "numComments": 166, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6969759230367035392", + "reactionTypeCounts": [ + { + "count": 2449, + "reactionType": "LIKE" + }, + { + "count": 706, + "reactionType": "MAYBE" + }, + { + "count": 496, + "reactionType": "INTEREST" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6969759230367035392", + "numLikes": 3685, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6969759230367035392", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3792, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6969343489759186944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6969343489759186944", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6969343489759186944)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6969343489759186944)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-prix-alimentaires-enregistrent-des-hausses-activity-6969343489759186944-VMvZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6969343488895115264", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6969343489759186944", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6969343489759186944,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6969343489759186944,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6969343488895115264", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "3HgWezDRV1reghQ+a6j80A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6969343489759186944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7571690948573030578", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676142153630?e=1677240000&v=beta&t=ida0nL8kv5j2x9IKW9aXRhfxh2naeqZG-LHRsmCA_fs", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676142153630?e=1677240000&v=beta&t=i_L6pij9DX2P9lOnQjVd19MKSHo5Tilko1-32btuB10", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676142153630?e=1677240000&v=beta&t=ssYAaFvW6GNBmmzviwkDzZJ42qNV9efELDFVu5uLFP0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676142153630?e=1677240000&v=beta&t=k5HNzYe3vsVsrcJKlIAFbq_BUVM3PqgHZmsvKe-fBNU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFPsCzMO5Q71A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7571690948573030578)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7571690948573030578)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les prix alimentaires enregistrent des hausses spectaculaires by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/conso-distribution/les-prix-alimentaires-enregistrent-des-hausses-spectaculaires-1783518" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les prix alimentaires enregistrent des hausses spectaculaires" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6969343488895115264,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'inflation est dans tous les esprits. Elle concerne l'\u00e9nergie, certes, mais aussi la nourriture (pour des causes qui ne sont pas uniquement \u00e9nerg\u00e9tiques : s\u00e9cheresse et grippe aviaire jouent aussi leur r\u00f4le).\n\nToutefois, en s\u00e9rie longue, les prix actuels de la nourriture sont, dans les pays occidentaux, ridiculement bas compar\u00e9s \u00e0 ce qu'ils \u00e9taient il y a un si\u00e8cle. Le graphique en commentaire - effectu\u00e9 avec des donn\u00e9es du d\u00e9partement US de l'agriculture, mais l'\u00e9volution en France a \u00e9t\u00e9 \u00e0 peu pr\u00e8s identique, parce que les d\u00e9terminants sont les m\u00eames - donne la part du revenu disponible que les m\u00e9nages am\u00e9ricains consacrent \u00e0 l'achat de nourriture, au domicile (en vert clair) et en dehors du domicile (restaurants, fast-food, etc ; en bleu).\n\nOn voit que la nourriture au domicile, qui repr\u00e9sentait un cinqui\u00e8me du revenu disponible des m\u00e9nages am\u00e9ricains en 1929, ne repr\u00e9sentait en 2021 plus que 5%. Alors que la quantit\u00e9 de viande mang\u00e9e par an a doubl\u00e9 environ, le budget alimentaire (hors restaurants) a \u00e9t\u00e9 divis\u00e9 par 4. Merci le p\u00e9trole, le charbon et le gaz :)\n\nCe qui va faire mal, dans cette histoire, n'est pas de payer la nourriture un peu plus cher. En faisant un peu le m\u00e9nage dans nos achats (Les Echos rappellent que les produits les plus achet\u00e9s sont des boissons et du Nutella) on y arrivera. C'est la fin de l'illusion collective que nous avons d\u00e9velopp\u00e9e (merci les \u00e9conomistes) que les prix alimentaires (et les autres) seraient \u00e9ternellement de plus en plus bas, lib\u00e9rant ainsi une fraction de plus en plus importante de notre revenu pour \"autre chose\" (des t\u00e9l\u00e9phones, des loisirs, de la mobilit\u00e9, des v\u00eatements, etc).\n\nMalheureusement il faut se rappeler que la baisse des couts, ce sont essentiellement les machines - donc l'\u00e9nergie - qui l'ont permise. L'avenir sera donc pour partie le pass\u00e9. Dans un monde sobre en \u00e9nergie, la productivit\u00e9 va baisser, ce qui sera une bonne nouvelle pour l'emploi et une mauvaise pour le pouvoir d'achat. \n\nAvec moins de machines, la nourriture, comme le reste des produits de consommation, va valoir en tendance plus cher (en particulier dans les villes, parce que le transport \u00e0 l'\u00e8re de la sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique sera plus rare donc plus cher), surtout si l'on rajoute la pression climatique. Les banquiers centraux qui veulent contenir l'inflation (https://bit.ly/3AvumBI ) n'ont pas fini de se gratter la t\u00eate !\n\nLa r\u00e9ponse \u00e0 cette inflation va donc s'appeler r\u00e9organiser nos achats vers plus de produits bruts et refaire la cuisine. Mais par ricochet cela va modifier beaucoup d'autres morceaux de l'\u00e9conomie : l'emploi dans l'agroalimentaire, la distribution, les transports, la fabrication d'emballage, mais aussi... dans les media. Car un secteur agroalimentaire plus petit aura moins de budgets pour la pub, ce qui fera moins de recette pour la presse audiovisuelle." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6969343488895115264,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6969343489759186944,urn:li:activity:6969343489759186944,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 93, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6969343489759186944,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6969343489759186944,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6969343489759186944", + "threadId": "activity:6969343489759186944", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6969343489759186944", + "urn": "urn:li:activity:6969343489759186944", + "numComments": 191, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6969343489759186944", + "reactionTypeCounts": [ + { + "count": 1999, + "reactionType": "LIKE" + }, + { + "count": 311, + "reactionType": "INTEREST" + }, + { + "count": 293, + "reactionType": "MAYBE" + }, + { + "count": 30, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6969343489759186944", + "numLikes": 2654, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6969343489759186944", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2656, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6969226278830809089,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6969226278830809089", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6969226278830809089)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6969226278830809089)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-1-fran%C3%A7ais-sur-5-affirme-avoir-pris-activity-6969226278830809089-aDxB?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6969226278092611584", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6969226278830809089", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6969226278830809089,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6969226278830809089,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6969226278092611584", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "EAqS9D/9rqsg7DTNsqZpAg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6969226278830809089,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7406497433528750479", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676409260397?e=1677240000&v=beta&t=7WjTY6zjaOevVs3JTT-3R36NiVneqVNShYLXzSR2o0A", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676409260398?e=1677240000&v=beta&t=qxM0zix14VW0jmOdNyX1ad6DmQAMpNZ-No1K2GfQr_k", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676409260398?e=1677240000&v=beta&t=3hU3IPl41S7q0kfR-8jAcpqphZ9GJggti9T7IOmWnRg", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676409260398?e=1677240000&v=beta&t=WJ-HatstMR_mrf7MIBfv3vAp1ctVRamU0S8fRVLRrx4", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG1Ohn2TF0N2w/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7406497433528750479)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7406497433528750479)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : 1 Fran\u00e7ais sur 5 affirme avoir pris conscience cet \u00e9t\u00e9 des enjeux dans notre pays by rtl.fr", + "actionTarget": "https://www.rtl.fr/actu/debats-societe/climat-1-francais-sur-5-affirme-avoir-pris-conscience-cet-ete-des-enjeux-dans-notre-pays-7900178966" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat : 1 Fran\u00e7ais sur 5 affirme avoir pris conscience cet \u00e9t\u00e9 des enjeux dans notre pays" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6969226278092611584,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le probl\u00e8me du r\u00e9chauffement climatique, depuis le d\u00e9but, est de croire \u00e0 quelque chose qui n'est pas encore visible, et, pire encore, de tout faire pour que cette chose n'advienne jamais.\n\nMais voil\u00e0 : nous avons tous un petit c\u00f4t\u00e9 Saint Thomas. Pour croire, il faut voir. Il semblerait, selon ce sondage rapport\u00e9 par RTL, que l'\u00e9t\u00e9 qui va s'achever dans 3 semaines ait \"converti\" quelques anciens non croyants \u00e0 la r\u00e9alit\u00e9 de la question climatique.\n\nLa bonne nouvelle, selon ce sondage, est que pour un certain nombre de mesures la fraction de la population pr\u00eate \u00e0 l'action serait d\u00e9sormais plus \u00e9lev\u00e9e que celle qui est r\u00e9tive. \n\nAinsi ne plus utiliser sa voiture (20% de notre empreinte carbone en moyenne : https://lnkd.in/esz53Kbx) pour les trajets du quotidien (qui font environ 2/3 des kilom\u00e8tres ; les loisirs repr\u00e9sentant le dernier tiers) serait accept\u00e9 par 49% de nos concitoyen(ne)s contre 32% qui ne le veulent pas. \n\nArr\u00eater les vid\u00e9os en streaming (le digital \u2248 4% de l'empreinte carbone mondiale, et la vid\u00e9o c'est plus de la moiti\u00e9) serait acceptable pour 48% de la population, contre 30% qui le refuserait. M\u00eame ne plus consommer de viande (environ 10% de l'empreinte carbone) recueille une courte majorit\u00e9 relative (36% d\u2019acceptation contre 32% de refus). \n\nOn est un peu plus r\u00e9tif quand on gagne peu ou que l'on est class\u00e9 \"\u00e0 droite\" sur l'\u00e9chiquier politique, mais 41% des r\u00e9pondant(e)s d\u00e9clarent vouloir augmenter leurs efforts apr\u00e8s cet \u00e9t\u00e9. \n\nPour celles et ceux que cela int\u00e9resse, il existe un outil (gratuit pour le grand public) pour d\u00e9couvrir \"en groupe\" (un peu en mode carboniques anonymes !) son empreinte carbone et voir comment agir pour la faire baisser : https://www.myco2.fr/\n\nDans les \u00e9l\u00e9ments qui sont consid\u00e9r\u00e9s comme importants pour passer \u00e0 l'action par beaucoup de peuples, il y a le fait que les gens autour de soi s'engagent en m\u00eame temps (item \"one's community also changing behavior\" dans l'image du post https://bit.ly/3CBtIW8 ). Cet \u00e9l\u00e9ment est un peu moins fort dans les pays individualistes (les USA, l'Australie, et.... la France :) ), mais globalement il est important, tout comme l'\u00e9quit\u00e9 quand on demande des efforts.\n\nTout le principe de MyCO2 est justement de d\u00e9couvrir son empreinte carbone en groupe, donc en faisant d\u00e9j\u00e0 partie d'une petite communaut\u00e9 (certes de circonstance mais quand m\u00eame), et de pouvoir ensuite discuter ouvertement de la facilit\u00e9 ou difficult\u00e9 \u00e0 passer \u00e0 l'action.\n\nCela n'exon\u00e8re \u00e9videmment pas les pouvoirs publics de \"faire leur part\". Ces derniers ont le r\u00f4le indispensable de cadrer un plan d'ensemble, et de conduire l'action collective dans des domaines o\u00f9 les individus ne sont pas en contr\u00f4le (infrastructures, organisations juridiques et sociales, enseignement, etc). Esp\u00e9rons que, pour nos \u00e9diles aussi, le coup de gong de cet \u00e9t\u00e9 ait \u00e9t\u00e9 suffisamment fort pour les inciter \u00e0 s'y mettre s\u00e9rieusement." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6969226278092611584,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6969226278830809089,urn:li:activity:6969226278830809089,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 148, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6969226278830809089,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6969226278830809089,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6969226278830809089", + "threadId": "activity:6969226278830809089", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6969226278830809089", + "urn": "urn:li:activity:6969226278830809089", + "numComments": 279, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6969226278830809089", + "reactionTypeCounts": [ + { + "count": 2298, + "reactionType": "LIKE" + }, + { + "count": 191, + "reactionType": "INTEREST" + }, + { + "count": 170, + "reactionType": "MAYBE" + }, + { + "count": 53, + "reactionType": "APPRECIATION" + }, + { + "count": 44, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6969226278830809089", + "numLikes": 2771, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6969226278830809089", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2776, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6968853066267668480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6968853066267668480", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6968853066267668480)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6968853066267668480)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_locde-publie-une-%C3%A9tude-intitul%C3%A9e-fighting-activity-6968853066267668480-OrqP?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6968853064946466816", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6968853066267668480", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6968853066267668480,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6968853066267668480,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6968853064946466816", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "d9eZQcNuyvB05QKt0/eBEw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6968853066267668480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQGY8s0mg9azcQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQGY8s0mg9azcQ", + "artifacts": [ + { + "width": 1694, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1661504042742?e=1679529600&v=beta&t=sf0zZF0uWhMzkE7jF_Y5dYN9yD7eSXYGbTSlADplrcQ", + "expiresAt": 1679529600000, + "height": 1088 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1661504044613?e=1679529600&v=beta&t=jR5p1heZbewWgEu0QNOpYbtPPvMO4Fb_CQOKS9p84nA", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1661504044613?e=1679529600&v=beta&t=IItuR4OMe48RFgQCUkayJYTaviT73nh_ShrxoD_YOVo", + "expiresAt": 1679529600000, + "height": 822 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1661504044613?e=1679529600&v=beta&t=D6KHIvrd5YfRNAtbZrbarWlwp32CPED-c8F0SadLEik", + "expiresAt": 1679529600000, + "height": 308 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1661504044613?e=1679529600&v=beta&t=1tX1M35me7-P0iv0n89dPSv1sA94lNZMylzB2Jf6bS0", + "expiresAt": 1679529600000, + "height": 103 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1661504044613?e=1679529600&v=beta&t=NSla_pyfiGYlvhbmLHjwtsLjPuayxYI-v6qiZuldgmM", + "expiresAt": 1679529600000, + "height": 514 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQGY8s0mg9azcQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.6422668240850059 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "table" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6968853064946466816,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'OCDE publie une \u00e9tude intitul\u00e9e \"Fighting climate change: International attitudes toward climate policies\" : https://bit.ly/3TgnOzB\n\nIl s'agit d'une analyse men\u00e9e \u00e0 partir d'une enqu\u00eate d'opinion conduite aupr\u00e8s de 40.000 personnes de 20 pays repr\u00e9sentant 72% des \u00e9missions mondiales, pour \u00e9valuer le soutien - ou pas - de la population \u00e0 des politiques publiques \"favorables au climat\". \n\nComme souvent avec les sondages et enqu\u00eates, la r\u00e9ponse est dans la question, mais cette investigation fournit quand m\u00eame nombre d'informations int\u00e9ressantes. Pour commencer, la lecture du tableau ci-dessous (page 21 du document) fait regretter que la pr\u00e9sidence de la Commission Europ\u00e9enne ne soit pas assur\u00e9e par un(e) italien(ne) plut\u00f4t que par une allemande ! \n\nOn notera en effet le contraste saisissant entre le pourcentage d'adh\u00e9sion des habitant(e)s de la p\u00e9ninsule \u00e0 des mesures \"d\u00e9carbonantes\", et la fraction de la population germanique qui adh\u00e8re aux m\u00eames mesures (jusqu'\u00e0 30 points de diff\u00e9rence).\n\nLe soutien \u00e0 la taxe carbone, test\u00e9 en fonction de l'utilisation du produit de la taxe (figure 7 page 21), fait aussi appara\u00eetre une opinion allemande dans le bas de l'\u00e9chelle (parfois sous celle des USA, et les danois(es) sont encore plus hostiles que les allemand(e)s !).\n\nCela prouve, incidemment, que la vigueur de l'\u00e9conomie n'est pas un pr\u00e9alable indispensable \u00e0 l'adh\u00e9sion aux politiques appropri\u00e9es, au motif que ces derni\u00e8res demanderaient plein d'argent. L'\u00e9conomie italienne est en r\u00e9cession quasi-permanente depuis le pic de production du p\u00e9trole conventionnel (maximum en 2007 ; voir graphique en commentaire) et nos voisins doivent donc faire avec de moins en moins depuis cette \u00e9poque.\n\nSur le degr\u00e9 de connaissance sur les faits, cette enqu\u00eate nous apprend que seulement 33% des chinois(es) savent (ou acceptent !) que les \u00e9missions de la Chine sont les plus importantes dans l'ensemble des pays, et que seulement 15% des habitant(e)s de ce m\u00eame pays (m\u00eame pourcentage pour l'Inde) ont compris qu'il faudra diviser les \u00e9missions par plus de 2 (en fait les rendre nulles) pour que le r\u00e9chauffement climatique s'arr\u00eate d'augmenter.\n\nEt notre pays ? Il n'est pas sp\u00e9cialement bien plac\u00e9. Peut-\u00eatre que le plus utile que nous pourrions faire serait de modifier la constitution pour pouvoir \u00e9lire \u00e0 l'Elys\u00e9e un(e) italien(ne) :).\n\nA lire ce document on comprend que \"nous n'avons pas le cul sorti des ronces\". Mention sp\u00e9ciale, du coup, pour les media de tous les pays, qui ont encore du boulot pour que la population se mette les yeux en face des trous. Il ne serait pas inutile que les journalistes suivent eux aussi un module de 20 heures pour comprendre de quoi il retourne. Incidemment ca aiderait \u00e0 conserver un monde stable dans lequel il y a des media libres..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6968853064946466816,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6968853066267668480,urn:li:activity:6968853066267668480,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 73, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6968853066267668480,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6968853066267668480,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6968853066267668480", + "threadId": "activity:6968853066267668480", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6968853066267668480", + "urn": "urn:li:activity:6968853066267668480", + "numComments": 140, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6968853066267668480", + "reactionTypeCounts": [ + { + "count": 1544, + "reactionType": "LIKE" + }, + { + "count": 242, + "reactionType": "INTEREST" + }, + { + "count": 175, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6968853066267668480", + "numLikes": 2011, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6968853066267668480", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2014, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6968479679234072576,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6968479679234072576", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6968479679234072576)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6968479679234072576)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_emmanuel-macron-appelle-le-gouvernement-%C3%A0-activity-6968479679234072576-FHeZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6968479678214893568", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6968479679234072576", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6968479679234072576,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6968479679234072576,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6968479678214893568", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "IhW+7ytpv7uZecvW2chaCQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6968479679234072576,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7048554611860631041", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676039781435?e=1677240000&v=beta&t=P9k1uCYqGrlbYmV4V7nMbsmjkIaAEGAzag1hrcerhAI", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676039781435?e=1677240000&v=beta&t=oEynxU__2Nt12bJhiUE_Jt8B1qLIpNQM2ud9W11yF38", + "expiresAt": 1677240000000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676039781436?e=1677240000&v=beta&t=DnWzj6aVB5lErrnrpPp9cr1leSAJvA9w6q82zv885A4", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676039781436?e=1677240000&v=beta&t=4qLzY-3dHhVMsFr4m2HCCTPPYmNDy7IfpqnPrm1RABs", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFFroMeUrjKxQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Emmanuel Macron au B\u00e9nin, le 27 juillet 2022." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7048554611860631041)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7048554611860631041)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "francetvinfo.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Emmanuel Macron appelle le gouvernement \u00e0 \"l'unit\u00e9\" face \u00e0 \"la fin de l'abondance\" et \"de l'insouciance\" by francetvinfo.fr", + "actionTarget": "https://www.francetvinfo.fr/monde/europe/manifestations-en-ukraine/emmanuel-macron-appelle-le-gouvernement-a-l-unite-face-a-la-fin-de-l-abondance-et-de-l-insouciance_5323795.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Emmanuel Macron appelle le gouvernement \u00e0 \"l'unit\u00e9\" face \u00e0 \"la fin de l'abondance\" et \"de l'insouciance\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6968479678214893568,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 51, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "CJ/2u5P8QFStoOoaU6UEXg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "J'ai attentivement \u00e9cout\u00e9 le discours de rentr\u00e9e d'Emmanuel Macron (12 minutes) qui a \u00e9t\u00e9 pr\u00e9sent\u00e9 hier dans certains commentaires comme une \"r\u00e9volution copernicienne\", qui montrerait que notre pr\u00e9sident a bien pris la mesure des limites plan\u00e9taires et que son action politique va d\u00e9sormais changer de nature.\n\nJe n'en serais pas si s\u00fbr :) (tout en n'\u00e9tant pas plus sur de l'inverse). Ce discours aborde \u00e9norm\u00e9ment de sujets : sociaux, diplomatiques, militaires, financiers, commerciaux, sanitaire, enseignement, justice.... Certes il mentionne le changement climatique et rapidement les ressources (eau, m\u00e9taux), mais pas du tout les limites g\u00e9ologiques sur l'\u00e9nergie ou l'\u00e9rosion \u00e0 venir des ressources agricoles.\n\nEt surtout notre pr\u00e9sident ne met pas tous ces ingr\u00e9dients dans un r\u00e9cit global coh\u00e9rent sur la marche du monde (alors que la lecture physique de l'\u00e9conomie lui permettrait de le faire ; on peut donc l\u00e9gitimement se demander s'il a identifi\u00e9 ce point l\u00e0). Il n'y a nulle approche \"syst\u00e8me\" dans le discours du pr\u00e9sident, juste une \u00e9num\u00e9ration de choses qui \u00e9voluent de mani\u00e8re adverse, mais sans explication propos\u00e9e sur \"pourquoi ce n'est pas si \u00e9tonnant\" (alors que cela serait logique pour justifier que l'on change d'\u00e9poque). \n\nComme souvent avec notre premier magistrat, chacun(e) pourra donc voir dans les propos tenus essentiellement ce qui l'arrange (c'est probablement fait pour !), les amoureux de la sobri\u00e9t\u00e9 comme les autres. Par exemple le passage sur la d\u00e9magogie (ou la coll\u00e9gialit\u00e9) est-il une exhortation \u00e0 ses propres troupes, en leur demandant d'\u00eatre s\u00e9rieux et de piocher leurs dossiers, ou un reproche \u00e0 peine voil\u00e9 aux d\u00e9put\u00e9s LR pour qu'ils arr\u00eatent de faire de la surench\u00e8re sur la d\u00e9pense publique (prix de l'\u00e9nergie par exemple) en \u00e9change de leur soutien ?\n\nEn mati\u00e8re de sobri\u00e9t\u00e9, il y avait bien plus int\u00e9ressant hier que le discours de Macron : l'entr\u00e9e en vigueur d'une disposition sur les passoires thermiques, qui, dans un premier temps, interdit d'augmenter les loyers quand ces biens sont propos\u00e9s \u00e0 la location, et, en 2025, il deviendra m\u00eame interdit de proposer un logement class\u00e9 G \u00e0 la location : https://bit.ly/3KhJHui\n\nLe simple fait que cette mesure n'ait pas \u00e9t\u00e9 \u00e9voqu\u00e9e hier montre bien que le fil conducteur de ce discours de rentr\u00e9e n'\u00e9tait pas le sujet \u00e9nergie-climat. Et, alors que le gouvernement pr\u00e9voit des dizaines de milliards pour subventionner l'\u00e9lectricit\u00e9, le p\u00e9trole et le gaz (https://bit.ly/3wpmH6T ), il n'\u00e9tait probablement pas tr\u00e8s facile (ni cr\u00e9dible) de lourdement insister sur le fait que nous entrons dans une \u00e8re nouvelle qui demande courage et lucidit\u00e9. \n\nL'avenir dira si ce discours \u00e9tait beaucoup de bruit pour rien ou pas. Macron a parl\u00e9 \u00e0 la fin de son discours d'un s\u00e9minaire gouvernemental pour pr\u00e9parer les d\u00e9cisions \u00e0 venir : il n'a pas dit que ce s\u00e9minaire inclurait une formation du gouvernement sur la lecture physique du monde. La premi\u00e8re \u00e9tape d'une vraie r\u00e9volution aurait \u00e9t\u00e9 l\u00e0 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6968479678214893568,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6968479679234072576,urn:li:activity:6968479679234072576,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 107, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6968479679234072576,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6968479679234072576,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6968479679234072576", + "threadId": "activity:6968479679234072576", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6968479679234072576", + "urn": "urn:li:activity:6968479679234072576", + "numComments": 232, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6968479679234072576", + "reactionTypeCounts": [ + { + "count": 1739, + "reactionType": "LIKE" + }, + { + "count": 133, + "reactionType": "MAYBE" + }, + { + "count": 122, + "reactionType": "INTEREST" + }, + { + "count": 48, + "reactionType": "PRAISE" + }, + { + "count": 19, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6968479679234072576", + "numLikes": 2074, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6968479679234072576", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2079, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 Edited \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6968105124430807040,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6968105124430807040", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6968105124430807040)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6968105124430807040)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cl%C3%A9ment-beaune-souhaite-r%C3%A9guler-les-vols-activity-6968105124430807040-JAte?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6968105122690146305", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6968105124430807040", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6968105124430807040,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6968105124430807040,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6968105122690146305", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "1FrzHt4i37CcoY+wR4gxIA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6968105124430807040,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8073688267667113903", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675589686190?e=1677240000&v=beta&t=fxI7oBKCsCVpj4E6vUGWMAGBzh5WSOByTf-uvPM-Zts", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675589686190?e=1677240000&v=beta&t=qj6RRZiG24NaGsxOSxVKFER-KVcbw9ofmCK0OWy-KLI", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675589686190?e=1677240000&v=beta&t=YIs_YjbJZUlI0Cj7mlsZnX4PNd5DoyO8NcS0xedvxxg", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675589686190?e=1677240000&v=beta&t=NqNfjapM4nvlGlP53y_Md8_aWtHNbulag5a7QhgSK6s", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFR-BzrlZDAIQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Selon Cl\u00e9ment Beaune, les jets priv\u00e9s deviennent \u00able symbole d'un effort \u00e0 deux vitesses\u00bb en mati\u00e8re de lutte contre les \u00e9missions de carbone." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8073688267667113903)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8073688267667113903)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lefigaro.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Cl\u00e9ment Beaune souhaite r\u00e9guler les vols en jets priv\u00e9s by lefigaro.fr", + "actionTarget": "https://www.lefigaro.fr/politique/clement-beaune-envisage-de-reguler-les-vols-en-jet-prive-20220820" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Cl\u00e9ment Beaune souhaite r\u00e9guler les vols en jets priv\u00e9s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6968105122690146305,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le ministre des transports envisage de mettre quelques contraintes \u00e0 l'utilisation des jets priv\u00e9s. Faut-il effectivement \"faire des mis\u00e8res\" \u00e0 ce segment de l'aviation, qui, selon le Figaro (citant Eurocontrol), repr\u00e9sente d\u00e9sormais \"12% du transport a\u00e9rien\" ?\n\nNB : Le Figaro ne pr\u00e9cise pas \"12% de quoi\". Il peut s'agir en effet de 12% des mouvements d'avion, de 12% des kilom\u00e8tres en avion, ou, en th\u00e9orie (mais l\u00e0 c'est sur que ce n'est pas le cas !), de 12% des passagers.km. Et les vols consid\u00e9r\u00e9s peuvent \u00eatre ceux qui sont intra-europ\u00e9ens ou ceux qui atterrissent ou d\u00e9collent d'un a\u00e9roport europ\u00e9en (donc incluant par exemple les transatlantiques)... \n\nM\u00eame en admettant qu'il s'agisse de 12% des mouvements d'avion, les \u00e9missions correspondantes vont repr\u00e9senter quelques % de celles du trafic a\u00e9rien. Pas un sujet prioritaire pour le climat, pourrait-on penser, surtout que les mesures envisag\u00e9es par notre ministre des transports ne vont pas changer grand-chose : les vols qui peuvent \u00eatre remplac\u00e9s par du train en moins de 2h30 sont probablement anecdotiques dans l'ensemble du kilom\u00e9trage effectu\u00e9 en avion, et taxer le CO2 \u00e0 hauteur de 60 euros la tonne changera marginalement le cout de d\u00e9tention d'un tel engin (qui \u00e0 l'achat vaut des millions ou des dizaines de millions de dollars et \u00e0 l'usage des milliers de dollars par vol voire plus).\n\nMais il y a un argument fort dans ce cas de figure : l'exemplarit\u00e9. Renoncer \u00e0 un jet priv\u00e9 pour un d\u00e9placement qui rel\u00e8ve l'essentiel du temps des loisirs peut l\u00e9gitimement \u00eatre consid\u00e9r\u00e9 comme un effort moins important que de renoncer \u00e0 sa voiture pour la mobilit\u00e9 contrainte. Dit autrement si la puissance publique demande aux \"modestes\" de moins utiliser leur voiture, il n'est pas ill\u00e9gitime qu'elle demande en m\u00eame temps aux \"riches\" de ne plus utiliser de jets priv\u00e9s.\n\nC'est ce que l'on appelle une mesure \u00e0 effet de levier : elle porte sur des usages qui sont tr\u00e8s \u00e9missifs \u00e0 l'unit\u00e9, peu au total (parce qu'il y a quand m\u00eame peu de gens qui se d\u00e9placent en jet !), mais qui conditionnent l'acceptabilit\u00e9 de mesures qui vont elles porter sur des \u00e9missions beaucoup plus importantes en volume, mais beaucoup moins par usage.\n\nL'article du Figaro n'en parle pas, mais il se trouve que la France, avec Dassault et Airbus, h\u00e9berge une fraction importante de la construction de jets priv\u00e9s (https://lnkd.in/ebiH5dNe ). Entre les utilisateurs, qui sont par construction des personnes haut plac\u00e9es dans le monde \u00e9conomique, et les constructeurs, qui contribuent \u00e0 l'export dans un pays \u00e0 la balance commerciale peu en forme, il y a fort \u00e0 parier que ce n'est pas demain matin que cette forme de d\u00e9placement va se voir purement et simplement interdite. \n\nMais le d\u00e9bat est lanc\u00e9, et c'est une bonne chose. Pour assurer la p\u00e9rennit\u00e9 d'un mouvement d'ensemble, l'exemplarit\u00e9 est une composante indispensable, et il est l\u00e9gitime que la puissance publique l\u00e9gif\u00e8re en ce sens." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6968105122690146305,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6968105124430807040,urn:li:activity:6968105124430807040,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 227, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6968105124430807040,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6968105124430807040,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6968105124430807040", + "threadId": "activity:6968105124430807040", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6968105124430807040", + "urn": "urn:li:activity:6968105124430807040", + "numComments": 349, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6968105124430807040", + "reactionTypeCounts": [ + { + "count": 3899, + "reactionType": "LIKE" + }, + { + "count": 264, + "reactionType": "MAYBE" + }, + { + "count": 111, + "reactionType": "INTEREST" + }, + { + "count": 97, + "reactionType": "APPRECIATION" + }, + { + "count": 86, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6968105124430807040", + "numLikes": 4483, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6968105124430807040", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4491, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6967536484207751168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6967536484207751168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6967536484207751168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6967536484207751168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-la-reconstruction-n%C3%A9cessaire-activity-6967536484207751168-TBHC?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6967536483222093824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6967536484207751168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6967536484207751168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6967536484207751168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6967536483222093824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "UJvZ+EGLS40MfBeJM9xFTQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6967536484207751168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9008769341215304882", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675501510370?e=1677240000&v=beta&t=67grYfKl2GPU39lIbu5xqT80F5IQaXOY6NLnQ69U8Vk", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675501510370?e=1677240000&v=beta&t=S6GrYm_vbwsCbjTHLik8olKV2U4zcfi00gTSMEnWMno", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675501510370?e=1677240000&v=beta&t=WISCVTT0RjCpOAKWU81IxXSvBa4d37y8bXPEGAN_vwE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675501510370?e=1677240000&v=beta&t=hX0jJ7bjKxi1lbHiAQo2WH6i7ilkUmDeLwWrONjocCI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG8UoGMzLUDQA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9008769341215304882)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9008769341215304882)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : \u00ab La \u00ab reconstruction \u00bb n\u00e9cessaire aujourd'hui est tout \u00e0 fait comparable \u00e0 celle de l'apr\u00e8s-guerre \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/politique-societe/societe/climat-la-reconstruction-necessaire-aujourdhui-est-tout-a-fait-comparable-a-celle-de-lapres-guerre-1782999" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat\u00a0: \u00ab\u00a0La \u00ab reconstruction \u00bb n\u00e9cessaire aujourd'hui est tout \u00e0 fait comparable \u00e0 celle de l'apr\u00e8s-guerre\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6967536483222093824,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 125, + "length": 18, + "miniProfile": { + "firstName": "Matthieu", + "lastName": "Auzanneau", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAA2LO4UB7ks-me882mrEhMLuJ2ZBEpiaEbY", + "occupation": "Directeur du Shift Project", + "objectUrn": "urn:li:member:227228549", + "entityUrn": "urn:li:fs_miniProfile:ACoAAA2LO4UB7ks-me882mrEhMLuJ2ZBEpiaEbY", + "publicIdentifier": "matthieu-auzanneau-00512264", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1676289970483?e=1677240000&v=beta&t=myga6sAPvVyeGpm5LCDRWoTkGvnv6JopDw00RoS8VLg", + "expiresAt": 1677240000000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1676289970483?e=1677240000&v=beta&t=I2UeR-BHRgFXLNlkjKerVCtXsT4xJhqPL2-IBDilx0M", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1676289970483?e=1677240000&v=beta&t=NGjxeEOMQT2OBVSe2Iq8A5NgnQU_KwcGe2VmH_t1-3A", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1676289970483?e=1677240000&v=beta&t=c-bzWYW8YWjyis4tmdkXYzlqvfGIA24nSV_baGgrQoQ", + "expiresAt": 1677240000000, + "height": 100 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E35AQFMUHwrYWXYGw/profile-framedphoto-shrink_" + } + }, + "trackingId": "6ILM3khBQPiZjfV4pxhwdQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "The Shift Project est \u00e0 l'honneur dans Les Echos. Dans son \u00e9dition dat\u00e9e d'aujourd'hui, le quotidien publie une interview de Matthieu Auzanneau, qui fait \u00e9cho (l'interview, pas Matthieu !) \u00e0 un article publi\u00e9 par le m\u00eame quotidien sur les d\u00e9fis du gouvernement en mati\u00e8re de d\u00e9carbonation (https://lnkd.in/eD2AM3vG ).\n\nIl faut esp\u00e9rer qu'\u00e0 quelque chose malheur soit bon : apr\u00e8s un \u00e9t\u00e9 record en termes d'incendies, des sols au plus sec et des cours d'eau au plus bas, et, de l'autre c\u00f4t\u00e9, un contexte \u00e9nerg\u00e9tique de plus en plus tendu, avec des prix hauts ou tr\u00e8s hauts pour le gaz (https://lnkd.in/eXNrG5wT ), le charbon, le p\u00e9trole, et par voie de cons\u00e9quence l'\u00e9lectricit\u00e9, on peut imaginer que le signal d'alarme commence \u00e0 \u00eatre audible.\n\nDans cette interview, Matthieu rappelle une chose importante : d\u00e9carboner, c'est reconstruire. C'est accepter que le fruit de notre travail serve moins \u00e0 consommer et plus \u00e0 investir. Investir dans des infrastructures qu'il faut modifier (certaines avant le terme normal de leur vie), investir dans la modification du syst\u00e8me agricole, investir dans la modification des logements et des b\u00e2timents, investir dans des syst\u00e8mes - dont des villes - capables de r\u00e9sister \u00e0 moins d'\u00e9nergie, moins d'eau, et des extr\u00eames de temp\u00e9rature plus prononc\u00e9s, investir dans l'adaptation foresti\u00e8re, investir dans des formations pour fonctionner diff\u00e9remment....\n\nAlors oui, fatalement, cela fera moins de moyens - humains et mat\u00e9riels - pour fabriquer des chemises, des jouets, des casseroles, et de l'eau en bouteille. Et le discours actuel du gouvernement sur le \"pouvoir d'achat\" est pour partie le signe inqui\u00e9tant d'une absence de projet de long terme. \n\nAider ceux qui ont peu de moyens \u00e0 passer un coup dur est une excellente id\u00e9e. Promettre un avenir sans efforts face au d\u00e9fi \u00e9nergie climat est juste un mensonge." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6967536483222093824,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6967536484207751168,urn:li:activity:6967536484207751168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 49, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6967536484207751168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6967536484207751168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6967536484207751168", + "threadId": "activity:6967536484207751168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6967536484207751168", + "urn": "urn:li:activity:6967536484207751168", + "numComments": 89, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6967536484207751168", + "reactionTypeCounts": [ + { + "count": 1858, + "reactionType": "LIKE" + }, + { + "count": 100, + "reactionType": "PRAISE" + }, + { + "count": 96, + "reactionType": "MAYBE" + }, + { + "count": 37, + "reactionType": "INTEREST" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6967536484207751168", + "numLikes": 2137, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6967536484207751168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2137, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6967222414313152512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6967222414313152512", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6967222414313152512)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6967222414313152512)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-norv%C3%A8ge-envisage-de-suspendre-ses-exportations-activity-6967222414313152512-SdJy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6967222413344268288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6967222414313152512", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6967222414313152512,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6967222414313152512,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6967222413344268288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "qLnEt0RAQxFrbW6AoLCuDg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6967222414313152512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7342779329713087275", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675875563122?e=1677240000&v=beta&t=WzXbXn0Zrg_puPb0_4R8xS_dFTDotHTi5lyUZHVJ4O4", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675875563122?e=1677240000&v=beta&t=Ytsw04VBrppHu767GQWkxYyV5Qw6KX4PZIwMEwNBDqg", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675875563123?e=1677240000&v=beta&t=BGfsH4h5PdicQhKb6egEt5T9RnP7Wu364PY4GxDwDZA", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675875563123?e=1677240000&v=beta&t=WN6bKOSOrEOi_X_iDHVe7JBgfoortmVUihA4jtOCMyY", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF8Wr9nG04YQQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7342779329713087275)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7342779329713087275)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La Norv\u00e8ge envisage de suspendre ses exportations d\u2019\u00e9lectricit\u00e9 pour \u00e9viter une crise \u00e9nerg\u00e9tique by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/energies/article/2022/08/20/la-norvege-envisage-de-suspendre-ses-exportations-d-electricite_6138553_1653054.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La Norv\u00e8ge envisage de suspendre ses exportations d\u2019\u00e9lectricit\u00e9 pour \u00e9viter une crise \u00e9nerg\u00e9tique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6967222413344268288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Norv\u00e8ge est connue pour ses exportations de p\u00e9trole et de gaz : elle fournit environ un quart du gaz europ\u00e9en et 20% de son p\u00e9trole. Mais elle exporte aussi de l'\u00e9lectricit\u00e9, essentiellement hydraulique, car c'est un pays vaste au regard de sa population (5,4 millions d'habitants pour 385.000 km2), disposant de reliefs, et d'eau... en temps ordinaire (une large partie du pays re\u00e7oit plus d'un m\u00e8tre de pluie/neige par an, et pr\u00e8s des c\u00f4tes cela peut monter \u00e0 plusieurs m\u00e8tres).\n\nSelon Le Monde, en 2021 ce pays a export\u00e9 environ 26 TWh, soit un peu moins de 17% d'une production totale s'\u00e9levant \u00e0 157 TWh (source BP Statistical Review). 26 TWh, ca ne change pas la face d'une Europe qui globalement produit pr\u00e8s de 3000 TWh (dont 19% au gaz). Mais localement ca peut ne pas \u00eatre n\u00e9gligeable, par exemple pour un Danemark qui produit 33 TWh seulement, et a besoin des barrages norv\u00e9giens pour \"balancer\" son \u00e9olien par nature non pilotable.\n\nMais voil\u00e0 : m\u00eame au nord de l'Europe la baisse des pr\u00e9cipitations se fait sentir. Du coup la Norv\u00e8ge pourrait ne plus avoir autant d'\u00e9lectricit\u00e9 \u00e0 offrir \u00e0 ses voisins (surtout au sud) \u00e0 l'avenir. \n\nOn pourrait aussi imaginer que les norv\u00e9giens fassent quelques \u00e9conomies : avec pr\u00e8s de 30.000 kWh \u00e9lectriques par personne et par an, ce sont les seconds plus gros consommateurs d'\u00e9lectricit\u00e9 au monde (apr\u00e8s l'Islande, qui est \u00e0 plus de 50.000 kWh \u00e9lectriques par personne et par an ; la France est \u00e0 8.100). Mais il est peu probable que la solidarit\u00e9 europ\u00e9enne ira jusque l\u00e0 !\n\nQuand on regarde la production hydro\u00e9lectrique europ\u00e9enne sur s\u00e9rie longue, pour le moment on ne voit pas (encore ?) de baisse marqu\u00e9e de la production (qui est globalement stable, voir graphique en commentaire). Cependant, avec des pr\u00e9cipitations plut\u00f4t orient\u00e9es \u00e0 la baisse dans le cadre du r\u00e9chauffement climatique, il n'est pas sur que ca dure. Pendant un temps la fonte des glaciers peut alimenter les r\u00e9servoirs, ce qui peut compenser un peu, mais un temps seulement (et pas dans les massifs o\u00f9 il y a d\u00e9j\u00e0 peu de glaciers)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6967222413344268288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6967222414313152512,urn:li:activity:6967222414313152512,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 38, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6967222414313152512,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6967222414313152512,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6967222414313152512", + "threadId": "activity:6967222414313152512", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6967222414313152512", + "urn": "urn:li:activity:6967222414313152512", + "numComments": 93, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6967222414313152512", + "reactionTypeCounts": [ + { + "count": 500, + "reactionType": "LIKE" + }, + { + "count": 128, + "reactionType": "INTEREST" + }, + { + "count": 115, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6967222414313152512", + "numLikes": 751, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6967222414313152512", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 755, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6966861611466682368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6966861611466682368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6966861611466682368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6966861611466682368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-long-chemin-de-lhydrog%C3%A8ne-pour-d%C3%A9carboner-activity-6966861611466682368-0l90?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6966861610720104448", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6966861611466682368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6966861611466682368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6966861611466682368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6966861610720104448", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "XtyB3Qn14WUXEIfD/anmVQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6966861611466682368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8164504231759373195", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675627026729?e=1677240000&v=beta&t=Hw0NJXZ1rksJMGn3y-VM4hqDkDl6xG3cbk-NaNm2Ix0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675627026729?e=1677240000&v=beta&t=eza_9W5LmkBWU5-uQgnonHrZ6Oo8ifZVOrHnBNy3SF8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675627026729?e=1677240000&v=beta&t=avV5Wv5DJNpYzSMCQdTXVq3yidcZpSEKs7wkuiGyZBo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675627026730?e=1677240000&v=beta&t=dQdt459oPHRvhiiKpKiNRj3LzHYqXIIeVZ8Cm57sG5c", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFOLUU2hjtFjg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8164504231759373195)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8164504231759373195)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le long chemin de l'hydrog\u00e8ne pour d\u00e9carboner le trafic de Roissy-CDG by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/pme-regions/ile-de-france/le-long-chemin-de-lhydrogene-pour-decarboner-le-trafic-de-roissy-cdg-1782466" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le long chemin de l'hydrog\u00e8ne pour d\u00e9carboner le trafic de Roissy-CDG" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6966861610720104448,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le plan Repower EU (https://bit.ly/3KcXodN ), le plan de la Commission europ\u00e9enne en r\u00e9ponse \u00e0 l'invasion de l'Ukraine, \"pr\u00e9voit\" notamment que l'Union produise 10 millions de tonnes d'hydrog\u00e8ne renouvelable par an en 2027. \n\nUn rapide calcul d'ordre de grandeur montre que cela demanderait 200 GW de puissance \u00e9olienne rien que pour cet usage, soit...en gros un doublement de la puissance install\u00e9e fin 2021. \n\nCa ne va donc pas \u00eatre si facile que cela d'avoir des grandes quantit\u00e9s d'hydrog\u00e8ne d\u00e9carbon\u00e9. Question : \u00e0 quels usages le r\u00e9server en premier pour celui qu'il y aura ? Pour le moment, c'est le secteur a\u00e9rien qui remporte la bataille de la communication, qui pr\u00e9sente comme acquis que des avions voleront \u00e0 l'hydrog\u00e8ne \"vert\".\n\nMais ce m\u00eame hydrog\u00e8ne \"vert\" peut servir :\n- \u00e0 fabriquer de l'acier (que l'on trouve partout) sans \u00e9mettre de CO2 (l'hydrog\u00e8ne remplace le coke - autrement dit le charbon - pour s\u00e9parer le fer et l'oxyg\u00e8ne dans le minera de fer)\n- \u00e0 fabriquer des engrais sans \u00e9mettre de CO2 (et sans engrais les rendements des cultures diminuent tr\u00e8s fortement).\n\nQuestion : est-ce vraiment le tourisme a\u00e9roport\u00e9 qui est l'application prioritaire du premier hydrog\u00e8ne d\u00e9carbon\u00e9 qui sera disponible ? Est-ce \"le march\u00e9\" (c'est \u00e0 dire le secteur qui paiera le plus cher) qui doit d\u00e9cider du destin de cet hydrog\u00e8ne ?\n\nOu est-ce la puissance publique qui doit d\u00e9signer les secteurs prioritaires, et d\u00e9cider, par exemple, que les aliments et les objets m\u00e9talliques du quotidien sont prioritaires par rapport aux loisirs ?\n\nIl n'y aura pas que des sujets de technologie dans la d\u00e9carbonation de nos soci\u00e9t\u00e9s. Il y aura, plus encore peut-\u00eatre, des sujets de \"gouvernance\"." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6966861610720104448,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6966861611466682368,urn:li:activity:6966861611466682368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 126, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6966861611466682368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6966861611466682368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6966861611466682368", + "threadId": "activity:6966861611466682368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6966861611466682368", + "urn": "urn:li:activity:6966861611466682368", + "numComments": 266, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6966861611466682368", + "reactionTypeCounts": [ + { + "count": 3893, + "reactionType": "LIKE" + }, + { + "count": 378, + "reactionType": "INTEREST" + }, + { + "count": 374, + "reactionType": "MAYBE" + }, + { + "count": 76, + "reactionType": "PRAISE" + }, + { + "count": 44, + "reactionType": "APPRECIATION" + }, + { + "count": 19, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6966861611466682368", + "numLikes": 4784, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6966861611466682368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4786, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6966438461918564352,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6966438461918564352", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6966438461918564352)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6966438461918564352)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_comment-paris-se-pr%C3%A9pare-%C3%A0-vivre-sous-50-activity-6966438461918564352-Rlof?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6966438461121691648", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6966438461918564352", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6966438461918564352,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6966438461918564352,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6966438461121691648", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "D4bzcUyAmjLDgi3jj7lw1w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6966438461918564352,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8144071291409900624", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675842344364?e=1677240000&v=beta&t=tDK7xq0djba-f1gJeGjd2tdrJeeJinS4wfR9f3yzVgg", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675842344365?e=1677240000&v=beta&t=avuXENlC99tcDeS10YXrPVp3ZB9Ke6pHkI7KK2exZ0Q", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675842344365?e=1677240000&v=beta&t=5rbwe3SvaZhem6HiKM0wENTWt916POQ0FSGbu1OwYXI", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675842344365?e=1677240000&v=beta&t=tVns4FbZmLO1iv1WqgXa-QRWT2HpqMv63p_E1TJaDD8", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG4spksl3deIA/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8144071291409900624)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8144071291409900624)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Comment Paris se pr\u00e9pare \u00e0 vivre sous 50 \u00b0C by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/planete/article/2022/07/16/comment-paris-se-prepare-a-vivre-sous-50-c_6135001_3244.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Comment Paris se pr\u00e9pare \u00e0 vivre sous 50\u00a0\u00b0C" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6966438461121691648,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 636, + "length": 19, + "miniProfile": { + "firstName": "Alexandre", + "lastName": "Florentin", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAANb1HkB0hFLO78fsWl4XTnq8ngUFfM51ng", + "occupation": "Directeur Carbone4 Acad\u00e9mie | Conseiller de Paris | Pr\u00e9sident mission Paris \u00e0 50\u00b0C", + "objectUrn": "urn:li:member:56349817", + "entityUrn": "urn:li:fs_miniProfile:ACoAAANb1HkB0hFLO78fsWl4XTnq8ngUFfM51ng", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1603437138763?e=1681948800&v=beta&t=1tfKtPjP_y4994IgKlJ9F8Fi2WYAfiaPuVta5Q9yAa0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1603437138763?e=1681948800&v=beta&t=T-OyfChMGMSQARQM1Blqj6F9MQtalIv95gzGRJH3Xh0", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQEO8e--6C8R_A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "alexandreflorentin", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1603437083613?e=1681948800&v=beta&t=cgxUktPT-aa9XgCv4CPh_Qk4LDXoQInKWgO71YDw7po", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1603437083613?e=1681948800&v=beta&t=y_9gSgUhEXNo9cXKGceh0xFOGvZJnRZvWLfgcyVl8EM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1603437083613?e=1681948800&v=beta&t=xIpQ1Lv4emTmcx_6pSMjo-XzfLcR8ZIVtmzn3z5w-H4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1603437083613?e=1681948800&v=beta&t=zp-2pnmCLgjRo5EOnbjfOD9K24JZJ4tJTeVELlPyyJ8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQFfnvC2d_fBWA/profile-displayphoto-shrink_" + } + }, + "trackingId": "Upj4TQZIRBODNPk3w9nbGw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Malheureusement pour nous, les canicules de cet \u00e9t\u00e9 ne sont qu'une \u00e9tape vers \"encore moins sympathique\" \u00e0 l'avenir : tant que l'humanit\u00e9 continuera d'\u00e9mettre une seule tonne de CO2 sur terre, la temp\u00e9rature moyenne continuera d'augmenter. \n\nIl est donc plus que pertinent de se projeter dans un monde o\u00f9 les extr\u00eames de chaleur seront encore plus prononc\u00e9s qu'aujourd'hui, pour savoir comment s'en pr\u00e9munir au mieux (sachant que l'on ne pourra pas se pr\u00e9munir contre tout, et qu'il y aura malheureusement des deuils \u00e0 faire). \n\nC'est donc une excellente initiative que celle de Paris, qui lance une mission d'information (pr\u00e9sid\u00e9e par Alexandre Florentin) pour savoir ce que signifie devoir affronter de tels extr\u00eames, \u00e0 peu pr\u00e8s certains dans un futur pas si lointain. En effet, en mati\u00e8re d'extr\u00eames, la situation \u00e9volue n\u00e9gativement plus vite que ce que les mod\u00e8les indiquaient il y a peu (https://bit.ly/3dL29is ).\n\nCette initiative rejoint les pr\u00e9conisations des travaux du Shift Project sur la \"r\u00e9silience des territoires\" (https://bit.ly/3QDXjSR ), qui portent sur la mani\u00e8re de s'adapter au mieux \u00e0 des perturbations environnementales qui vont aller croissant alors m\u00eame que nous aurons moins de moyens. En effet, nos moyens ce sont des ressources, et les ressources s'\u00e9puisent....\n\nEsp\u00e9rons que cet exemple sera suivi de nombreux autres. Et surtout que derri\u00e8re les conclusions de ce travail, m\u00eame d\u00e9rangeantes, ne resteront pas lettre morte." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6966438461121691648,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6966438461918564352,urn:li:activity:6966438461918564352,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 74, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6966438461918564352,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6966438461918564352,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6966438461918564352", + "threadId": "activity:6966438461918564352", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6966438461918564352", + "urn": "urn:li:activity:6966438461918564352", + "numComments": 234, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6966438461918564352", + "reactionTypeCounts": [ + { + "count": 1400, + "reactionType": "LIKE" + }, + { + "count": 139, + "reactionType": "INTEREST" + }, + { + "count": 121, + "reactionType": "MAYBE" + }, + { + "count": 33, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6966438461918564352", + "numLikes": 1713, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6966438461918564352", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1716, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6966074016587472896,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6966074016587472896", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6966074016587472896)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6966074016587472896)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-capitalisme-n%C3%A9olib%C3%A9ral-nest-plus-compatible-activity-6966074016587472896-dE5r?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6966074015639560192", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6966074016587472896", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6966074016587472896,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6966074016587472896,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6966074015639560192", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "z73WCMIStj9dJ8/8bKfyfQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6966074016587472896,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8876122953206076087", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676534038384?e=1677240000&v=beta&t=L31L8QaMtfyMfyJXlEbmXudOs-e-LjTupE6u8W4QdG4", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676534038384?e=1677240000&v=beta&t=s0hbtYgMS1bzmdYz4599L-ZvMS27k1jRs8WlxcmwPVs", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676534038384?e=1677240000&v=beta&t=5BBxCrUlpa3yv01ZMT1njOoM96kRj8hEjhJrkYM6e_0", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676534038384?e=1677240000&v=beta&t=hdvOq53pdd4ah8qKBR9Uhl0skoAFS9l3e4YT59rVIek", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFHkFzV3hdZSA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8876122953206076087)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8876122953206076087)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lalibre.be \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le capitalisme n\u00e9olib\u00e9ral n\u2019est plus compatible avec le d\u00e9fi climatique by lalibre.be", + "actionTarget": "https://www.lalibre.be/debats/opinions/2022/08/07/le-capitalisme-neoliberal-nest-plus-compatible-avec-le-defi-climatique-INNZVTOFBRHUHMHJD2ZQKDA3WA/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le capitalisme n\u00e9olib\u00e9ral n\u2019est plus compatible avec le d\u00e9fi climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6966074015639560192,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 204, + "length": 13, + "miniProfile": { + "firstName": "Prof. Dr. Bruno ", + "lastName": "Colmant ", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAY0OwQBNZUFXdT902dMVDMSitRPasWX9Oc", + "occupation": "Member of the Belgian Royal Academy, Ph.D. in Economy. University Professor (UCLouvain, ULB, Vlerick, ICHEC and St-Louis). President of the Belgian Finance Center. My posts are strictly own.", + "objectUrn": "urn:li:member:104086276", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAY0OwQBNZUFXdT902dMVDMSitRPasWX9Oc", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658335906908?e=1681948800&v=beta&t=RDRgsqAUcjxsmSTeTsFBSGccR_MURjTgaREfuu1Qkyw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658335906908?e=1681948800&v=beta&t=ANH2xzbGzFXwniRtnUTvVpAyukdmy1VaKhU1So6646w", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQEexz40u15vjQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "brunocolmant", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1654431601631?e=1681948800&v=beta&t=ELjjarwc-osNxGZTfHgPs6fOgPuQ6t_KiTl1FG-x3DM", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1654431601631?e=1681948800&v=beta&t=wyrTUncEjkZk7A3AULirgizosJd4Qq7VYdAKK5K0pWs", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1654431601631?e=1681948800&v=beta&t=LlbnrSRV4nTl9v6JR5471I94Q9E4rlMFK0ng2zV2fpI", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1654431601631?e=1681948800&v=beta&t=IYTUMCRjbnA4dKYR91lCzEnh388jjrhfK6_PkSSWRZ8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQF3CthzFsVYCQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "PEGLY3PRQvOWEuKgDLRkmA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1764, + "length": 16, + "miniProfile": { + "firstName": "Stephane", + "lastName": "Foucart", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAABv2IoBn0BOirWMxsoYYR5uscV_zSBgOsQ", + "occupation": "Science correspondent at Le Monde", + "objectUrn": "urn:li:member:7329930", + "entityUrn": "urn:li:fs_miniProfile:ACoAAABv2IoBn0BOirWMxsoYYR5uscV_zSBgOsQ", + "publicIdentifier": "stephane-foucart-a365552", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1671650011916?e=1681948800&v=beta&t=sfTLd37tuMTn6GnoUXgIh3p8Kd1Q8nGH6Jb0NOsYVik", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1671650011916?e=1681948800&v=beta&t=294ugk_qvRG2tyRBFSIp_x6b10jnkKoB_E77n3IvYjU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1671650011916?e=1681948800&v=beta&t=6mVeDPnhS5EiphvG29TceeHVP10ornsRqKhxz_rOQNI", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1671650011916?e=1681948800&v=beta&t=dwsqw7IVhyIFy4qgvPS_VaLwq93SG6umZhm1YhiVNBc", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQGHs1C_06t5hA/profile-displayphoto-shrink_" + } + }, + "trackingId": "U9YO5JEhTSqE+cqmA7OSjw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Il a occup\u00e9 des fonctions de dirigeant dans le conseil en strat\u00e9gie, la finance, la bourse, et pr\u00e9side le \"Belgian Finance Center\", qui a pour objet de promouvoir la place financi\u00e8re belge. \n\n\"Il\", c'est Bruno Colmant, dont on peut donc dire, sans que cela ne comporte le moindre jugement de valeur, qu'il a baign\u00e9 pendant l'essentiel de sa vie professionnelle dans la mondialisation et le \"capitalisme n\u00e9olib\u00e9ral\". \n\nEn effet, les clients des \"grands cabinets de conseil en strat\u00e9gie\" sont essentiellement des multinationales, en g\u00e9n\u00e9ral ravies de l'existence du capitalisme lib\u00e9ral mondialis\u00e9, puisque qu'elles tiennent le haut du pav\u00e9 dans ce syst\u00e8me.\n\nDe m\u00eame, sans \"capitalisme n\u00e9olib\u00e9ral\", les institutions financi\u00e8res feraient de moins bonnes affaires, car il n'y aurait pas de march\u00e9s financiers aussi d\u00e9velopp\u00e9s !\n\nIl est donc pour le moins inattendu que ce soit ce genre de profil qui signe une tribune dans \"La Libre Belgique\", o\u00f9 elle condamne on ne peut plus clairement la logique de ce syst\u00e8me, allant m\u00eame jusqu'\u00e0 comparer notre situation (face aux p\u00e9rils environnementaux) \u00e0 celle de 1937, o\u00f9 les signaux d'alarme se multipliaient sans que personne n'agisse \u00e0 la mesure de la menace qui devait mettre l'Europe \u00e0 feu et \u00e0 sang peu apr\u00e8s.\n\nInvoquant - positivement - Meadows (c'est rare pour un acteur des march\u00e9s financiers, je peux en t\u00e9moigner !), Ren\u00e9 Dumont et Pie XI, et soulignant - tr\u00e8s n\u00e9gativement cette fois - les risques \"d'hyst\u00e9rie mondiale\" et de perte de contr\u00f4le qui nous menacent \u00e0 un horizon pas si lointain si nous ne savons pas relever le d\u00e9fi environnemental, l'auteur appelle \u00e0 oublier d'urgence Adam Smith et la religion des march\u00e9s. Pour en rajouter une couche sur ce sujet, on peut lire ou relire le pamphlet croustillant de Stephane Foucart \"Des March\u00e9s et des Dieux\" : https://bit.ly/3Cg3OHl \n\nBien \u00e9videmment, d'aucun(e)s pourront dire que c'est facile de dissuader les autres de s'attabler une fois que l'on a bien profit\u00e9 du repas. Il n'en reste pas moins que c'est souvent de l'int\u00e9rieur que les charges les plus efficaces sont men\u00e9es : si cette tribune parvient jusqu'aux yeux de quelques dirigeants europ\u00e9ens, comme elle vient de \"l'un des leurs\", elle sera peut-\u00eatre beaucoup plus utile pour les \u00e9branler que si elle venait d'Attac ou de la CGT. \n\nCar l'essentiel est bien de changer le logiciel europ\u00e9en d'urgence. Notre projet, historiquement fond\u00e9 sur le libre \u00e9change et \"les march\u00e9s\", va droit dans le mur \u00e0 l'heure de la contraction physique des ressources. Que cette conclusion soit port\u00e9e par un nombre croissant de personnes \"de l'int\u00e9rieur\" augmente la probabilit\u00e9 d'une n\u00e9cessaire modification des r\u00e8gles. Esp\u00e9rons \u00e0 temps." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6966074015639560192,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6966074016587472896,urn:li:activity:6966074016587472896,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 202, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6966074016587472896,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6966074016587472896,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6966074016587472896", + "threadId": "activity:6966074016587472896", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6966074016587472896", + "urn": "urn:li:activity:6966074016587472896", + "numComments": 376, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6966074016587472896", + "reactionTypeCounts": [ + { + "count": 6005, + "reactionType": "LIKE" + }, + { + "count": 557, + "reactionType": "MAYBE" + }, + { + "count": 431, + "reactionType": "PRAISE" + }, + { + "count": 238, + "reactionType": "INTEREST" + }, + { + "count": 106, + "reactionType": "APPRECIATION" + }, + { + "count": 60, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6966074016587472896", + "numLikes": 7397, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6966074016587472896", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7404, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6965719340985819136,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6965719340985819136", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6965719340985819136)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6965719340985819136)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_extreme-heatwaves-surprising-lessons-from-activity-6965719340985819136-xPPe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6965719339924602880", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6965719340985819136", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6965719340985819136,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6965719340985819136,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6965719339924602880", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "QLZ+pzhTPP40tnW1xOIOAg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6965719340985819136,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7646663811301364296", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675549181030?e=1677240000&v=beta&t=Ha5ZYY2yHLCG2xFPya1ZJqgsfa4EU1wHKFHHJ0lqjT4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675549181030?e=1677240000&v=beta&t=rj0fFIc21_TXhWovuduDh1w0v5c02jyh58Yo7fiEpmU", + "expiresAt": 1677240000000, + "height": 576 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675549181031?e=1677240000&v=beta&t=LT4qAeDL8h6L1hQNA4yno4lrSvBAZJtx8j-oL-ipx2U", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675549181031?e=1677240000&v=beta&t=fB1wcyBrdAp_P9bTTl1QAN06rFRZIsxoiMYifdAtypg", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFyxmkGfZvRSA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7646663811301364296)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7646663811301364296)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "nature.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Extreme heatwaves: surprising lessons from the record warmth by nature.com", + "actionTarget": "https://www.nature.com/articles/d41586-022-02114-y" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Extreme heatwaves: surprising lessons from the record warmth" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6965719339924602880,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un grand nombre de pays de l'h\u00e9misph\u00e8re Nord sont actuellement en train de souffrir d'une s\u00e9cheresse aig\u00fce. C'est le cas de la France, avec des sols exceptionnellement secs (https://bit.ly/3w77gju ), et des animaux et v\u00e9g\u00e9taux qui meurent (https://bit.ly/3JZo4P2 ), mais le ph\u00e9nom\u00e8ne touche aussi d'autres pays d'Europe, avec des fleuves quasiment \u00e0 sec du nord au sud (https://bit.ly/3pmLZP8 ), dont un Rhin au plus bas qui entrave les \u00e9changes commerciaux (https://bloom.bg/3QRUVHO), ou encore les digues des Pays-Bas qui n'aiment pas cette situation parce qu'elles ont besoin d'\u00eatre humidifi\u00e9es pour rester solides (https://bit.ly/3AvDckl ).\n\nAu-del\u00e0 de l'Europe, la Chine doit limiter la consommation d'\u00e9lectricit\u00e9 dans le Sichuan \u00e0 cause du d\u00e9ficit hydrique (https://bit.ly/3c2d3QA ), des \u00e9tats am\u00e9ricains vont \u00eatre rationn\u00e9s en eau \u00e0 cause de la faiblesse du Colorado (https://bit.ly/3pqn1yj ), le Maroc se bat avec des r\u00e9serves d'eau tr\u00e8s basses (https://bit.ly/3AqIHAK ) - et des r\u00e9coltes c\u00e9r\u00e9ali\u00e8res qui seront faibles, etc etc...\n\nDans ce contexte, Nature publie un article sur l'\u00e9cart constat\u00e9 - pas dans le bon sens - entre projections et r\u00e9alit\u00e9s pour les vagues de chaleur. Il y a quelques ann\u00e9es, les mod\u00e8les disaient bien qu'il y aurait une augmentation des vagues de chaleur. Mais ces outils num\u00e9riques ne les voyaient pas arriver aussi rapidement. \n\nJusqu'\u00e0 r\u00e9cemment, battre un record de temp\u00e9rature c'\u00e9tait le d\u00e9passer d'un degr\u00e9 ou d'une fraction de degr\u00e9. Au Canada l'ann\u00e9e derni\u00e8re, comme \u00e0 Morlaix cette ann\u00e9e, c'est plut\u00f4t de 5\u00b0C que les pr\u00e9c\u00e9dents records ont \u00e9t\u00e9 d\u00e9pass\u00e9s...\n\nLes chercheurs n'ont pour le moment pas d'explication \"physique\" \u00e0 proposer pour expliquer pourquoi ces ph\u00e9nom\u00e8nes extr\u00eames sont aussi rapidement \"plus extr\u00eames\". Les mod\u00e8les sont avant tout destin\u00e9s \u00e0 fournir l'\u00e9volution des valeurs moyennes. Les ph\u00e9nom\u00e8nes extr\u00eames rel\u00e8vent de la variabilit\u00e9, et faire des pr\u00e9visions en la mati\u00e8re est beaucoup plus difficile.\n\nPar exemple, d\u00e9passer de 5\u00b0C une valeur \"attendue\" sur 2 jours augmente la moyenne de 0,027 \u00b0C \u00e0 la fin de l'ann\u00e9e. C'est dans la barre d'incertitude.\n\nCe que confirme h\u00e9las l'\u00e9pisode en cours, c'est que la hausse de la moyenne de 2\u00b0C ne nous \"prot\u00e8ge\" pas contre une limitation \u00e0 3 ou 4\u00b0C d'\u00e9l\u00e9vation lors des \u00e9pisodes les plus intenses : la preuve vient de nous \u00eatre administr\u00e9e que le haut de la fourchette est difficile \u00e0 donner. La moyenne des pr\u00e9cipitations nous prot\u00e8ge encore moins contre un d\u00e9ficit hydrique majeur sur quelques mois, ce qui peut \u00eatre largement suffisant pour infliger des dommages irr\u00e9versibles aux \u00e9cosyst\u00e8mes. \n\nComme il sera impossible de remettre le climat en l'\u00e9tat le jour o\u00f9 nous estimerons que la plaisanterie a assez dur\u00e9, il n'y a qu'une seule chose \u00e0 faire pour \u00e9viter les d\u00e9g\u00e2ts : baisser les \u00e9missions aussi vite que possible. Cela n'est pas dit par Nature, mais cela pose la question des activit\u00e9s que nous devons contracter, car elles ont moins d'importance que assez d'eau ou d'agriculture." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6965719339924602880,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6965719340985819136,urn:li:activity:6965719340985819136,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 52, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6965719340985819136,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6965719340985819136,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6965719340985819136", + "threadId": "activity:6965719340985819136", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6965719340985819136", + "urn": "urn:li:activity:6965719340985819136", + "numComments": 138, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6965719340985819136", + "reactionTypeCounts": [ + { + "count": 1192, + "reactionType": "LIKE" + }, + { + "count": 146, + "reactionType": "INTEREST" + }, + { + "count": 94, + "reactionType": "MAYBE" + }, + { + "count": 28, + "reactionType": "APPRECIATION" + }, + { + "count": 24, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6965719340985819136", + "numLikes": 1486, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6965719340985819136", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1486, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6965414902316322816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6965414902316322816", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6965414902316322816)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6965414902316322816)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-espagne-des-milliers-de-puits-ill%C3%A9gaux-activity-6965414902316322816-Xq3F?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6965414901410332672", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6965414902316322816", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6965414902316322816,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6965414902316322816,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6965414901410332672", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "De9J+Q7+Y9l8kiS5h1kSUA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6965414902316322816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7271283694836051995", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675785594355?e=1677240000&v=beta&t=y9MoE2f_WAWbUXFAyYBWNCA5MSXIEIbLAdIqYpBKveA", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675785594355?e=1677240000&v=beta&t=ULgU4hiqZqr5o58wO77MwSQEMT8V36pfzxWLG7qrawE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675785594356?e=1677240000&v=beta&t=luGaDWrSDY0H0Clw87IxLbsasO2vaFiIFOudDpG1s_s", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675785594356?e=1677240000&v=beta&t=LOpbpDcvbOFKRZ2y_RwhkK0lwv2CCnHREzI2qnnAX_8", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHHeQZQ39gpgQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7271283694836051995)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7271283694836051995)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: En Espagne, des milliers de puits ill\u00e9gaux aggravent la p\u00e9nurie d\u2019eau by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/international/article/2022/08/13/en-espagne-des-milliers-de-puits-illegaux-aggravent-la-penurie-d-eau_6137953_3210.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "En Espagne, des milliers de puits ill\u00e9gaux aggravent la p\u00e9nurie d\u2019eau" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6965414901410332672,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y avait de l'eau. Et puis il en a de moins en moins. L'Espagne s'ass\u00e8che au fil des ann\u00e9es, 2022 constituant un \u00e9pisode un peu intense sur une tendance qui est malheureusement \u00e0 l'augmentation de l'aridit\u00e9 \u00e0 cause du changement climatique (comme pour le sud de notre pays). \n\nEn pareil cas, \"on\" voudrait que \"on\" se restreigne sur l'eau disponible, en particulier lors des \u00e9pisodes intenses. Seulement voil\u00e0 : en Espagne comme en France, quand \"on\" a b\u00e2ti son activit\u00e9 sur l'existence de l'eau, se restreindre c'est parfois accepter une baisse de ses revenus, voire pas de revenus tout court.\n\nTout comme en France des agriculteurs continuent d'irriguer dans des d\u00e9partement en crise (et il y en a un gros paquet, de d\u00e9partements en crise : https://bit.ly/3SVvk2r ), les agriculteurs espagnols continuent \u00e0 utiliser de l'eau - souvent pr\u00e9lev\u00e9e dans les nappes l'\u00e9t\u00e9 - alors m\u00eame qu'il faudrait limiter les pr\u00e9l\u00e8vements.\n\nL\u00e0 comme ailleurs, l'interdiction est \u00e9videmment plus facile \u00e0 faire appliquer quand il y a une porte de sortie. Faute d'un plan (tiens tiens) pour diminuer les activit\u00e9s qui ont besoin d'eau de mani\u00e8re organis\u00e9e, en cas de p\u00e9nurie les utilisateurs de l'eau essaieront de pr\u00e9server leur consommation, et cette r\u00e9ponse au probl\u00e8me... contribuera \u00e0 aggraver le probl\u00e8me.\n\nDe fait, \u00e0 tr\u00e8s court terme la limitation des pr\u00e9l\u00e8vements signifie une baisse d'activit\u00e9, voire une perte de r\u00e9colte. On peut certes envisager une indemnisation, mais l'argent ne se mange pas, et en outre cela fait une charge de plus pour un Etat qui a du mal \u00e0 boucher les trous. Face \u00e0 un probl\u00e8me r\u00e9current, la seule solution p\u00e9renne est malheureusement de diminuer les activit\u00e9s qui d\u00e9pendent de l'eau. \n\nAdapter les cultures \u00e0 moins d'eau ne va pas \u00eatre qu'un slogan : cela va demander une modification des emplois, des formations, des habitudes alimentaires, de l'agroalimentaire \u00e0 l'aval, des infrastructures de stockage ou de r\u00e9emploi de l'eau... et faute de le planifier (\u00e9ventuellement en mettant un peu moins de \"march\u00e9\", c'est-\u00e0-dire de concurrente qui rend court termiste) une partie des interdictions quand il y a \"crise\" restera lettre morte. \n\nEn gros, il s'agit de rien moins que de revisiter les priorit\u00e9s et les modalit\u00e9s de la politique agricole commune \u00e0 l'aune du dess\u00e8chement climatique." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6965414901410332672,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6965414902316322816,urn:li:activity:6965414902316322816,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 71, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6965414902316322816,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6965414902316322816,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6965414902316322816", + "threadId": "activity:6965414902316322816", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6965414902316322816", + "urn": "urn:li:activity:6965414902316322816", + "numComments": 127, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6965414902316322816", + "reactionTypeCounts": [ + { + "count": 1545, + "reactionType": "LIKE" + }, + { + "count": 192, + "reactionType": "INTEREST" + }, + { + "count": 191, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6965414902316322816", + "numLikes": 1972, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6965414902316322816", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1972, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6965056388033060864,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6965056388033060864", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6965056388033060864)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6965056388033060864)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_its-a-human-rights-issue-young-adults-activity-6965056388033060864-NEbN?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6965056387139674112", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6965056388033060864", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6965056388033060864,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6965056388033060864,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6965056387139674112", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "B2pQakH6r3Y70Pmwk9YkXw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6965056388033060864,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8257580410491108165", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676514408968?e=1677240000&v=beta&t=Uo-EY6w_2rFGQdkTjuStCtUQbfSNqCYkCKsKC1QCR_U", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676514408968?e=1677240000&v=beta&t=xaQA_QwtPCIVbqnQSS_cyJeHOhbltOqcw_5cEYtxME8", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676514408968?e=1677240000&v=beta&t=gGz6cMogsQ8CwJR6ZH-BQ9u5yq6Z1lAB3ace6b8LpG8", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676514408969?e=1677240000&v=beta&t=GDmZ86A7ap_wwN7K2xS5FQR3H63ZEyYlxL4sCcJ-V-s", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFGi8rM8aAhxA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8257580410491108165)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8257580410491108165)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u2018It\u2019s a human rights issue\u2019: young adults take Portugal climate crisis to court by theguardian.com", + "actionTarget": "https://www.theguardian.com/environment/2022/aug/11/its-a-human-rights-issue-young-adults-take-portugal-climate-crisis-to-court" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u2018It\u2019s a human rights issue\u2019: young adults take Portugal climate crisis to court" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6965056387139674112,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Que faire quand on est jeune et que l'\u00e9volution climatique en cours vous prend particuli\u00e8rement aux tripes, avec \"l'envie de faire quelque chose\" \u00e0 bref d\u00e9lai ?\n\nOn peut bien sur avoir un comportement personnel sobre. Ca permet de se \"regarder dans une glace\" et de se dire que l'on contribue le moins possible \u00e0 aggraver un probl\u00e8me qui vous stresse.\n\nOn peut d\u00e9marrer un projet. Mais ce dernier, au d\u00e9but, est n\u00e9cessairement local et/ou \u00e0 port\u00e9e limit\u00e9e. Donc il ne permettra pas d'avoir une influence d\u00e9terminante sur la marche du monde.\n\nOn peut oublier \"entrer dans une grande entreprise pour la faire se transformer de l'int\u00e9rieur\" : quand on est d\u00e9butant, on n'a pas de pouvoir de faire changer une entreprise de mani\u00e8re fondamentale (et m\u00eame apr\u00e8s ce n'est facile !). \n\nAlors certains jeunes se tournent vers l'activisme associatif ou judiciaire. L\u00e0 il y a l'espoir qu'une action ait un effet de levier non n\u00e9gligeable sur la marche des choses.\n\nC'est ainsi que quelques jeunes portugais se sont retrouv\u00e9s \u00e0 assigner en justice les ex\u00e9cutifs de 32 pays europ\u00e9ens pour \"action insuffisante\" devant la Cour europ\u00e9enne des droits de l'homme. Laquelle Cour vient de d\u00e9cider qu'il y aura une audition devant la formation dite de la \"grande chambre\", ce qui signifie que les magistrats consid\u00e8rent qu'il y a mati\u00e8re \u00e0 d\u00e9bats.\n\nCes derni\u00e8res ann\u00e9es, ces proc\u00e8s se sont multipli\u00e9s. Il y a fort \u00e0 parier que cela sera de plus en plus le cas \u00e0 mesure que l'\u00e9cart entre les cons\u00e9quences d\u00e9j\u00e0 observables et la \"mollesse\" des r\u00e9actions ira croissant. \n\nSi m\u00eame les proc\u00e8s ne donnent pas de r\u00e9sultats satisfaisants aux yeux des jeunes, les paris sont ouverts pour l'\u00e9tape d'apr\u00e8s, mais le d\u00e9sespoir conduit rarement \u00e0 des comportements tr\u00e8s conciliants avec les personnes \"qui ont les manettes\".\n\nAlors que les cons\u00e9quences semblent survenir bien plus vite que l'id\u00e9e que l'on s'en faisait il y a quelques ann\u00e9es (cet \u00e9t\u00e9 allant dans ce sens), pensons y !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6965056387139674112,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6965056388033060864,urn:li:activity:6965056388033060864,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 88, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6965056388033060864,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6965056388033060864,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6965056388033060864", + "threadId": "activity:6965056388033060864", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6965056388033060864", + "urn": "urn:li:activity:6965056388033060864", + "numComments": 265, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6965056388033060864", + "reactionTypeCounts": [ + { + "count": 2319, + "reactionType": "LIKE" + }, + { + "count": 182, + "reactionType": "MAYBE" + }, + { + "count": 166, + "reactionType": "INTEREST" + }, + { + "count": 95, + "reactionType": "PRAISE" + }, + { + "count": 53, + "reactionType": "APPRECIATION" + }, + { + "count": 33, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6965056388033060864", + "numLikes": 2848, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6965056388033060864", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2849, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6964633645596696576,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6964633645596696576", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6964633645596696576)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6964633645596696576)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cryptoactifs-lint%C3%A9r%C3%AAt-prudent-des-banques-activity-6964633645596696576-oJW2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6964633644837523456", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6964633645596696576", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6964633645596696576,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6964633645596696576,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6964633644837523456", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "NgmvzmEJ1RE3ebqiPaJ0sg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6964633645596696576,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8392972966244422816", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675508778461?e=1677240000&v=beta&t=PdO4PeN_yLKDtcalcqM4ss44HliUESL82vBqTtYQgjQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675508778462?e=1677240000&v=beta&t=ceWqrY6FUXVsSywcCoKolh9gqn7liLuqIcwF7Eujc4g", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675508778462?e=1677240000&v=beta&t=msjUeNHyZrhlGAj33XgdlpcQU0KBo88uIjAl7GG3lvk", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675508778462?e=1677240000&v=beta&t=MR7b2bdxjm9-o_75o8yAhQ0LHETSrHZYMdlrHzCO8aI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH0J8VF_w8PeQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8392972966244422816)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8392972966244422816)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Cryptoactifs : l'int\u00e9r\u00eat prudent des banques fran\u00e7aises by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/banque-assurances/cryptoactifs-linteret-prudent-des-banques-francaises-1781650" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Cryptoactifs\u00a0: l'int\u00e9r\u00eat prudent des banques fran\u00e7aises" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6964633644837523456,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il est bien connu qu'il est toujours plus facile de ne pas commencer \u00e0 fumer que d'arr\u00eater ensuite. La vid\u00e9o en ligne est responsable des 2/3 du trafic sur internet et un facteur majeur d'inflation de l'empreinte carbone des r\u00e9seaux. Est-ce que nous serions beaucoup plus malheureux si cette novation n'avait pas diffus\u00e9, et que nous allions toujours au cin\u00e9ma, achetions des dvd, et regardions la t\u00e9l\u00e9 analogique ?\n\nMaintenant que c'est devenu trendy d'aller passer ses vacances \u00e0 l'autre bout de la plan\u00e8te quand on a les moyens, ceux qui s'y sont mis ont souvent du mal \u00e0 arr\u00eater. Mais ceux qui sont toujours all\u00e9s en Bretagne ou dans les Vosges ont-ils au fond l'impression d'avoir pass\u00e9 de beaucoup plus mauvaises vacances ?\n\nD\u00e8s lors qu'une novation va augmenter les \u00e9missions de gaz \u00e0 effet de serre pour un b\u00e9n\u00e9fice pas du tout majeur, la prudence voudrait donc que l'on fasse l'effort de commencer par ne pas y aller, avant de se demander ensuite comment on va faire pour faire baisser les usages une fois que ces derniers sont \"entr\u00e9s dans les moeurs\". \n\nSelon cet article des Echos, les banques se t\u00e2tent pour savoir si elles doivent fricoter avec les cryptomonnaies. Quand on voit l'empreinte carbone du minage de bitcoins (et de leurs petits copains), lesquels bitcoins et autres ethereum ne sont par contre pas en mesure de reconstituer les stocks de poissons, de supprimer les vagues de chaleur et de faire venir la pluie, d'acc\u00e9l\u00e9rer l'isolation des b\u00e2timents, la construction de pistes cyclables, la \"relocalisation\" de l'agriculture, et plus g\u00e9n\u00e9ralement aucune des mesures \u00e9voqu\u00e9es dans https://lnkd.in/esiqHkbf, la r\u00e9ponse est assez simple : il ne faut pas y aller.\n\nLa modernit\u00e9 n'est pas un argument d'autorit\u00e9. La seule bonne question est de savoir si c'est pertinent au regard de la balance avantages-inconv\u00e9nients. Si la r\u00e9ponse est non, rien ne nous force \u00e0 y aller quand m\u00eame." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6964633644837523456,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6964633645596696576,urn:li:activity:6964633645596696576,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 209, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6964633645596696576,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6964633645596696576,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6964633645596696576", + "threadId": "activity:6964633645596696576", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6964633645596696576", + "urn": "urn:li:activity:6964633645596696576", + "numComments": 635, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6964633645596696576", + "reactionTypeCounts": [ + { + "count": 4083, + "reactionType": "LIKE" + }, + { + "count": 288, + "reactionType": "MAYBE" + }, + { + "count": 285, + "reactionType": "PRAISE" + }, + { + "count": 128, + "reactionType": "INTEREST" + }, + { + "count": 57, + "reactionType": "APPRECIATION" + }, + { + "count": 47, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6964633645596696576", + "numLikes": 4888, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6964633645596696576", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4907, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6964302087371243520,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6964302087371243520", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6964302087371243520)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6964302087371243520)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_un-%C3%A9t%C3%A9-record-pour-la-consommation-deau-activity-6964302087371243520-r9eE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6964302086482104320", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6964302087371243520", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6964302087371243520,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6964302087371243520,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6964302086482104320", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "rFaY7gVS0W7L2/9z+twv+A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6964302087371243520,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8760546573020262999", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675960237536?e=1677240000&v=beta&t=MJSOX5UzrmEAemwouwBIzM79aYT8AHMn3RLPaB7tdM8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675960237536?e=1677240000&v=beta&t=r-u9bMi_upTbrYhvOUEY5gWRu7n43AdhaRUn92l5GFA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675960237536?e=1677240000&v=beta&t=-s06EHxciIcJt-JFuSyNf0cPcV1EzqlIOjTMMs5AcCI", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675960237536?e=1677240000&v=beta&t=Lhc47EFVyJgQV7li9h63bNqeFJtItATSyskBIsIK6pU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEOadEtIu1xLw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8760546573020262999)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8760546573020262999)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Un \u00e9t\u00e9 record pour la consommation d'eau en bouteille by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/conso-distribution/un-ete-record-pour-la-consommation-deau-en-bouteille-1781588#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Un \u00e9t\u00e9 record pour la consommation d'eau en bouteille" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6964302086482104320,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "De l'eau en bouteille, c'est du plastique (pour faire la bouteille), du camion (parfois du train mais c'est plus rare) pour transporter la bouteille depuis le lieu d'embouteillage jusqu'au magasin, souvent de la voiture pour transporter l'eau en bouteilles du magasin jusque chez le consommateur (parce que c'est lourd), et accessoirement de l'eau dans la bouteille, eau que le consommateur va payer des centaines de fois plus cher au litre que l'eau du robinet : une fraction de centime dans le cas de l'eau courante (https://lnkd.in/embCrZwg ) contre quelques dizaines de centimes (parfois plus) pour de l'eau en bouteille.\n\nLes produits agricoles et alimentaires sont \u00e0 l'origine d'un tiers du fret routier dans notre pays (https://bit.ly/3PnLm2r ). Au vu de l'espace que les boissons occupent dans une grande surface, il n'est pas tr\u00e8s dur de deviner que leur part dans le fret routier de produits agroalimentaires ne doit pas \u00eatre compl\u00e8tement n\u00e9gligeable (difficile de trouver des statistiques). \n\nApr\u00e8s la ru\u00e9e sur les climatiseurs (qui conduisent \u00e0 une hausse de la consommation \u00e9lectrique et donc des \u00e9missions de CO2 associ\u00e9es s'il faut rajouter du gaz ou du charbon pour satisfaire la demande), voici un autre cas de figure o\u00f9 la r\u00e9ponse au r\u00e9chauffement climatique contribue \u00e0 augmenter les \u00e9missions, m\u00eame si ce n'est pas dans les m\u00eames ordres de grandeur. \n\nIl n'emp\u00eache : alors que le pays est pr\u00e9occup\u00e9 par l'inflation, pourquoi payer son m\u00e8tre cube d'eau potable 500 \u00e0 2000 euros tout en \u00e9mettant plus de CO2 alors que l'eau courante est \u00e0 quelques euros ?\n\nSi ce qui est pratique est d'avoir la bouteille comme gourde, il suffit d'en acheter une une fois pour toute, puis de la remplir ensuite au robinet !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6964302086482104320,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6964302087371243520,urn:li:activity:6964302087371243520,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 474, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6964302087371243520,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6964302087371243520,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6964302087371243520", + "threadId": "activity:6964302087371243520", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6964302087371243520", + "urn": "urn:li:activity:6964302087371243520", + "numComments": 941, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6964302087371243520", + "reactionTypeCounts": [ + { + "count": 10304, + "reactionType": "LIKE" + }, + { + "count": 628, + "reactionType": "PRAISE" + }, + { + "count": 449, + "reactionType": "INTEREST" + }, + { + "count": 245, + "reactionType": "MAYBE" + }, + { + "count": 160, + "reactionType": "APPRECIATION" + }, + { + "count": 108, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6964302087371243520", + "numLikes": 11894, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6964302087371243520", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 11901, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6963893665953943554,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6963893665953943554", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6963893665953943554)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6963893665953943554)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-discours-historique-de-jacques-chirac-activity-6963893665953943554-MN8P?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6963893664624345088", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6963893665953943554", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6963893665953943554,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6963893665953943554,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6963893664624345088", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "yINybq6BI/ZgYEy5Oqg+Ag==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6963893665953943554,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8793599237617550922", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676226942905?e=1677240000&v=beta&t=sc9m7BzLMBLszGsI2OScu15NNS4wZg-KyVus5mwQvKQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676226942905?e=1677240000&v=beta&t=ChrWrPue6hNDP3etj4XsiSLimpWO7Cv3tskoAEoAXms", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676226942905?e=1677240000&v=beta&t=gtEUqTTosmfeO2LzZxedZc1zGOeSng0cnOveZ9MXsA4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676226942906?e=1677240000&v=beta&t=zfxZQ7f_g63_t1vF3I8u9TRQmdNH62ZElN6m1UY764U", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGeSwtgzZmuFQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8793599237617550922)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8793599237617550922)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Le discours historique de Jacques Chirac au Sommet de la Terre de l'ONU on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=wmBeHMmMeBQ" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\"Notre maison br\u00fble et nous regardons ailleurs.\" C'est en ces termes, le 2 septembre 2002, que Jacques Chirac interpellait les dirigeants du monde r\u00e9unis \u00e0 Johannesburg, pour le Sommet de la Terre de l'ONU. Le chef de l'Etat entendait, par son..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Le discours historique de Jacques Chirac au Sommet de la Terre de l'ONU" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6963893664624345088,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'\u00e9tait il n'y a pas tout \u00e0 fait 20 ans, puisqu'il s'agit de septembre 2002. C'\u00e9tait \u00e0 la tribune des Nations Unies, un endroit o\u00f9 l'on fait parfois preuve de grandes envol\u00e9es lyriques, en esp\u00e9rant qu'une formule fera ensuite le tour de la plan\u00e8te (ce qui a bien fonctionn\u00e9 avec le discours en question).\n\nQuand on lit le texte complet du discours prononc\u00e9 \u00e0 Johannesbourg par Chirac - disponible sur https://bit.ly/3C2xffV - on se dit que tout chef d'\u00e9tat pourrait l'avoir prononc\u00e9 \u00e0 toute COP depuis qu'il y a des COP. \n\nEt si nous regardons dans le r\u00e9troviseur, qu'avons nous fait ?\n\nDepuis 2002, la consommation mondiale de charbon a augment\u00e9 (\u00e0 fin 2021) de plus de 50%, celle de p\u00e9trole de 17% et celle de gaz de 61%. Certes les ENR ont aussi augment\u00e9, mais macroscopiquement elles n'ont pas remplac\u00e9 du fossile : elles sont venues en plus.\n\nLes \u00e9missions de gaz \u00e0 effet de serre ont augment\u00e9 d'environ 30%. La biodiversit\u00e9 a continu\u00e9 \u00e0 s'\u00e9roder. Les prises de poisson ont continu\u00e9 \u00e0 diminuer (le maximum mondial \u00e9tait 1995 et depuis ca baisse). Etc etc.\n\nQuelle le\u00e7on en retenir ? Que les discours dans ce genre d'enceinte n'ont malheureusement aucune esp\u00e8ce d'importance. Ce qui compte ce sont les actes, et il n'y a pas de lien entre les deux (dans le m\u00eame esprit \"make the planet great again n'a d\u00e9bouch\u00e9 sur \u00e0 peu pr\u00e8s rien de concret). \n\nMais c'est bien plus difficile \u00e0 analyser : il faut quelques minutes pour lire le discours de Chirac \u00e0 Johannesbourg. C'est l'oeuvre d'une vie de d\u00e9cortiquer l'ad\u00e9quation avec les limites plan\u00e9taires de toutes les d\u00e9cisions prises ou qui pourraient l'\u00eatre en mati\u00e8re d'agriculture, de gestion de l'urbanisme ou de performance des logements et des b\u00e2timents tertiaires, de v\u00e9hicules, d'infrastructures, d'\u00e9nergie, de fiscalit\u00e9, d'encadrement de la publicit\u00e9 ou du trafic a\u00e9rien, et j'en passe.\n\nEt \u00e0 chaque fois il faut d\u00e9cortiquer des chiffres. L'environnement, c'est comme l'\u00e9conomie, en beaucoup plus compliqu\u00e9 : il faut toujours compter pour parvenir \u00e0 une conclusion, mais il ne faut pas compter qu'avec une seule unit\u00e9. Les m\u00e8tres cubes d'eau (qui font d\u00e9faut actuellement) ne s'ajoutent pas aux tonnes de coccinelles ou aux \u00e9missions de CO2.\n\nIl n'y a pas 36 mani\u00e8res de devenir s\u00e9rieux : il faut y passer du temps (beaucoup de temps) et acqu\u00e9rir des comp\u00e9tences (beaucoup de comp\u00e9tences). Et il faut le faire en plus des sujets que l'on doit d\u00e9j\u00e0 g\u00e9rer. C'est vrai pour les politiques ; c'est vrai pour les d\u00e9cideurs \u00e9conomiques ; c'est vrai pour chaque citoyen.\n\nAujourd'hui, nous regardons h\u00e9las toujours ailleurs. Nous regardons surtout des euros et nous regardons \u00e0 des horizons de temps bien trop courts. \"Nous ne pourrons pas dire que nous ne savions pas\" disait Chirac. Nous ne le disons peut-\u00eatre pas, mais nous agissons tout comme...\n\nSi les le\u00e7ons de cet \u00e9t\u00e9 sont retenues ou pas se verra notamment dans l'acc\u00e9l\u00e9ration - ou pas - de l'acquisition de connaissances par \"tout le monde\" \u00e0 partir de la rentr\u00e9e." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6963893664624345088,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6963893665953943554,urn:li:activity:6963893665953943554,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 269, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6963893665953943554,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6963893665953943554,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6963893665953943554", + "threadId": "activity:6963893665953943554", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6963893665953943554", + "urn": "urn:li:activity:6963893665953943554", + "numComments": 438, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6963893665953943554", + "reactionTypeCounts": [ + { + "count": 8494, + "reactionType": "LIKE" + }, + { + "count": 487, + "reactionType": "PRAISE" + }, + { + "count": 474, + "reactionType": "APPRECIATION" + }, + { + "count": 221, + "reactionType": "MAYBE" + }, + { + "count": 216, + "reactionType": "INTEREST" + }, + { + "count": 82, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6963893665953943554", + "numLikes": 9974, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6963893665953943554", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 9982, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6963373037400301568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6963373037400301568", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6963373037400301568)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6963373037400301568)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_plus-de-la-moiti%C3%A9-des-maladies-infectieuses-activity-6963373037400301568-8yKo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6963373035818999808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6963373037400301568", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6963373037400301568,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6963373037400301568,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6963373035818999808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "ZJrtrnh9mqi8UIzSKqU5KA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6963373037400301568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7309273767275687363", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676070879959?e=1677240000&v=beta&t=VciPpz85yv0p1iO6nMsLj57ZwzwKOOfXdf6V5DDy-sw", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676070879959?e=1677240000&v=beta&t=NmYCZNDQ7Lc2_Q6upn4ThyR1YWggoa846w4-LDBZOI0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676070879959?e=1677240000&v=beta&t=l9tTMKmGlDHgCmXU7OYKG7-vAc-kUxGeO9g0dlXtKIw", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676070879959?e=1677240000&v=beta&t=M2rUo6rlqlzcagxXGKUD8VzXQOgERorsfcl2QgBDubI", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGUfaIxGQCc-Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7309273767275687363)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7309273767275687363)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Plus de la moiti\u00e9 des maladies infectieuses humaines seraient aggrav\u00e9es par le changement climatique by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/planete/article/2022/08/08/plus-de-la-moitie-des-maladies-infectieuses-humaines-seraient-aggravees-par-le-changement-climatique_6137526_3244.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Plus de la moiti\u00e9 des maladies infectieuses humaines seraient aggrav\u00e9es par le changement climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6963373035818999808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le propre des exp\u00e9riences que l'on fait pour la premi\u00e8re fois, c'est que le r\u00e9sultat n'est pas toujours pr\u00e9dictible de mani\u00e8re exacte. C'est le cas pour la d\u00e9rive climatique que nous avons mise en route : les grandes tendances peuvent \u00eatre comprises, certaines quantifi\u00e9es assez pr\u00e9cis\u00e9ment (par exemple la hausse du contenu \u00e9nerg\u00e9tique de l'ensemble atmosph\u00e8re-oc\u00e9an en r\u00e9ponse \u00e0 nos \u00e9missions), d'autres plus difficilement (par exemple le nombre pr\u00e9cis de s\u00e9cheresses ou d'\u00e9pisodes pluvieux intenses que nous aurons une ann\u00e9e donn\u00e9 sur terre ; ironiquement pendant que nous vivons une s\u00e9cheresse historique d'autres r\u00e9gions du monde vivent des inondations historiques : https://bit.ly/3JT2bkv )\n\nPour d'autres encore, la quantification \u00e0 l'avance est quasi-impossible, parce qu'il s'agit d'un ph\u00e9nom\u00e8ne multifactoriel et/ou qui porte sur un trop grand nombre de processus. Il en va ainsi de la propagation des maladies. La tendance est connue depuis longtemps : le r\u00e9chauffement climatique devrait plut\u00f4t favoriser leurs occurrences. Le r\u00e9chauffement augmente les zones de pr\u00e9sence de \"vecteurs\" (moustiques, tiques, mouches, etc) par exemple.\n\nMais quoi quand comment, voil\u00e0 qui est plus difficile. Ce qui ne veut pas dire qu'il ne se passera rien. Un article r\u00e9cemment paru dans Nature (https://lnkd.in/eWQy_SCX ) et relay\u00e9 par Le Monde conclut, sur la base d'une large analyse bibliographique, que le changement climatique a d\u00e9j\u00e0 contribu\u00e9 \u00e0 aggraver les cons\u00e9quences de mani\u00e8re d\u00e9celable pour la moiti\u00e9 des 375 maladies infectieuses concernant les \u00eatres humains.\n\nEvidemment cette tendance est aussi favoris\u00e9e par l'urbanisation (qui nous concentre dans des endroits o\u00f9 la propagation est plus facile) et les \u00e9changes rapides entre zones (\u00e0 commencer par l'avion). Lorsque l'on consulte les tables de mortalit\u00e9 publi\u00e9es par Malthus pour le 18\u00e8 si\u00e8cle, on r\u00e9alise que l'esp\u00e9rance de vie \u00e0 la naissance \u00e9tait alors sup\u00e9rieure \u00e0 la campagne qu'en ville pour les pays europ\u00e9ens ! Les villes n'offraient pas d'infrastructures de soins particuli\u00e8res, mais offraient tout \u00e0 fait une meilleure propagation des miasmes...\n\nEt comme une bonne nouvelle n'arrive jamais seule, The Lancet publie au m\u00eame moment une \u00e9tude montrant que la hausse des temp\u00e9ratures nocturnes, en d\u00e9gradant possiblement de mani\u00e8re importante la qualit\u00e9 du sommeil, pourrait aussi conduire \u00e0 une hausse d'un certain nombre de pathologies par affaiblissement du syst\u00e8me immunitaire, ainsi qu'\u00e0 plus de maladies cardiovasculaires (https://lnkd.in/e5Se2NT3 ).\n\nFace \u00e0 un risque diffus, multifacettes, engendrant des cons\u00e9quences non ou peu r\u00e9versibles, la pr\u00e9vention est \u00e9videmment la meilleure des politiques. Esp\u00e9rons que cet \u00e9t\u00e9 sera au moins utile \u00e0 ca..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6963373035818999808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6963373037400301568,urn:li:activity:6963373037400301568,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 38, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6963373037400301568,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6963373037400301568,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6963373037400301568", + "threadId": "activity:6963373037400301568", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6963373037400301568", + "urn": "urn:li:activity:6963373037400301568", + "numComments": 57, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6963373037400301568", + "reactionTypeCounts": [ + { + "count": 608, + "reactionType": "LIKE" + }, + { + "count": 128, + "reactionType": "INTEREST" + }, + { + "count": 116, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6963373037400301568", + "numLikes": 869, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6963373037400301568", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 869, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 Edited \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6963023970182811648,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6963023970182811648", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6963023970182811648)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6963023970182811648)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_crise-climatique-et-%C3%A9nerg%C3%A9tique-regarder-activity-6963023970182811648-jjsz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6963023969050374144", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6963023970182811648", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6963023970182811648,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6963023970182811648,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6963023969050374144", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "WJxtO1V6AkqwJ4acT6pbLQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6963023970182811648,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7701530165686508868", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675552776914?e=1677240000&v=beta&t=PE5eR3pjAYV-mlZXHcsf1HOiRrnM8Jhqq45YMFoZOdY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675552776914?e=1677240000&v=beta&t=XOpy1PgTVoVlUHOv4TzGykT62hzxPTY_-2rxVUj79no", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675552776914?e=1677240000&v=beta&t=-O-P9JTFtTfXH-3_pDtcIH5SrAdFepT7RjncvxyjmX4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675552776914?e=1677240000&v=beta&t=SkI3Pmqswk3Q7vXNEFz9J4Vq877iJTPnPIOoJeR9vpw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGXG-h2F5GsdQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7701530165686508868)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7701530165686508868)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: CRISE CLIMATIQUE ET \u00c9NERG\u00c9TIQUE : REGARDER LA V\u00c9RIT\u00c9 EN FACE - Jean-Baptiste Fressoz on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=mMQwdUxF_bQ" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\u25b7 Cette cha\u00eene vit gr\u00e2ce aux abonn\u00e9s d'\u00c9lucid, rejoignez-nous : https://elucid.media/ \u25b6 Jean-Baptiste FRESSOZ est historien des sciences, des techniques et de l'environnement, ainsi que chercheur au CNRS. Il s'int\u00e9resse particuli\u00e8rement \u00e0 la question..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "CRISE CLIMATIQUE ET \u00c9NERG\u00c9TIQUE : REGARDER LA V\u00c9RIT\u00c9 EN FACE - Jean-Baptiste Fressoz" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6963023969050374144,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quand il y a d\u00e9bat sur la \"transition \u00e9nerg\u00e9tique\", les protagonistes qui sont le plus fr\u00e9quemment de la partie partent soit de la \"technique\" (quand il est question des performances des v\u00e9hicules, logements ou usines, et sont alors souvent des ing\u00e9nieurs ou techniciens), soit du comportement, pour disserter sur nos d\u00e9sirs ou nos organisations sociales. \n\nIl est plus rare de prendre l'histoire comme angle d'approche. Pourtant, il est \u00e9vident que mieux on conna\u00eet le pass\u00e9, et moins on a de chances de se tromper en prenant des paris. Cette interview de Jean-Baptiste Fressoz, un historien des sciences et de l'environnement, propose une tr\u00e8s int\u00e9ressante analyse de notre rapport historique \u00e0 l'\u00e9nergie et \u00e0 l'extraction de ressources.\n\nAnalyse int\u00e9ressante, donc, mais pas tr\u00e8s rassurante, puisque Fressoz explique que :\n- il n'y a jamais eu de \"transition\" \u00e9nerg\u00e9tique dans le pass\u00e9, au sens o\u00f9 une \u00e9nergie aurait \u00e9t\u00e9 remplac\u00e9e par une autre. Toutes les \u00e9nergies actuellement utilis\u00e9es se sont empil\u00e9es les unes sur les autres sans substitution \u00e0 large \u00e9chelle, parce que notre comportement a toujours \u00e9t\u00e9 d'accumuler et non de remplacer. \n- dans le m\u00eame esprit, il n'y a pas eu de \"transition\" sur les mat\u00e9riaux ou les m\u00e9taux. Les 60 mat\u00e9riaux les plus utilis\u00e9s dans le monde l'ont \u00e9t\u00e9 chacun en quantit\u00e9 croissante depuis le d\u00e9but de leur utilisation : l\u00e0 aussi il y a empilement et non remplacement. \n- les \"sc\u00e9narios de d\u00e9carbonation\" qui figurent dans le rapport du groupe 3 du GIEC (rappelons que c'est le groupe o\u00f9 se trouvent les \u00e9conomistes) rel\u00e8vent du conte de f\u00e9es (ce n'est pas dit comme cela, mais c'est bien le sens des propos). Les sc\u00e9narios qui permettent de respecter la limitation du r\u00e9chauffement \u00e0 1,5 ou 2\u00b0C reposent sur des diffusions de technologies \u00e0 des vitesses qui sont totalement improbables, \n- les \u00e9nergies sont imbriqu\u00e9es les unes aux autres. Par exemple le p\u00e9trole a besoin de charbon (parce qu'il a besoin d'acier) et le charbon a besoin de p\u00e9trole (parce qu'il a besoin d'engins de mine). Fressoz ne croit pas \u00e0 un syst\u00e8me \"d\u00e9simbriqu\u00e9\" comportant uniquement des renouvelables pour maintenir un monde ressemblant \u00e0 l'actuel.\n- le savoir ne suffit pas. Depuis que \"nous savons\" pour le climat par exemple, aucune modification soci\u00e9tale \u00e0 large \u00e9chelle n'est intervenue pour ce motif. Il est parfois arriv\u00e9 que l'on rhabille de \"motivation climatique\" une \u00e9volution qui a pris place pour d'autres raisons.\n\nJean-Baptiste Fressoz ne le dit pas explicitement, mais on sent qu'il le pense tr\u00e8s fort : \u00e0 cause de cette inertie qui caract\u00e9rise les organisations et techniques humaines, et de notre addiction \u00e0 l'accumulation, il ne croit pas \u00e0 une \"sortie par le haut\" dans la situation actuelle. Nous allons continuer \u00e0 accumuler \"tant que ca passe\" et c'est le fait qu'\u00e0 un moment \"ca ne passera plus\" qui va changer la donne. \n\nA ce moment l\u00e0, nous aurons bien une transition. Mais peut-\u00eatre pas celle \u00e9voqu\u00e9e \u00e0 longueur de discours politiques et techniques." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6963023969050374144,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6963023970182811648,urn:li:activity:6963023970182811648,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 282, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6963023970182811648,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6963023970182811648,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6963023970182811648", + "threadId": "activity:6963023970182811648", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6963023970182811648", + "urn": "urn:li:activity:6963023970182811648", + "numComments": 538, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6963023970182811648", + "reactionTypeCounts": [ + { + "count": 4016, + "reactionType": "LIKE" + }, + { + "count": 962, + "reactionType": "INTEREST" + }, + { + "count": 961, + "reactionType": "MAYBE" + }, + { + "count": 78, + "reactionType": "PRAISE" + }, + { + "count": 35, + "reactionType": "APPRECIATION" + }, + { + "count": 33, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6963023970182811648", + "numLikes": 6085, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6963023970182811648", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6087, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6962676177282990080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6962676177282990080", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6962676177282990080)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6962676177282990080)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_leurope-du-nord-au-d%C3%A9fi-de-sadapter-rapidement-activity-6962676177282990080-UBia?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6962676176481878016", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6962676177282990080", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6962676177282990080,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6962676177282990080,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6962676176481878016", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "0Z8jmGCB2VhWmcRmo0H4Ig==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6962676177282990080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8465586085063538293", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676284434381?e=1677240000&v=beta&t=0ZatZ_YiHdbF4R9aXRQTYxbwamsHzkKd0J2mxlhZnU0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676284434382?e=1677240000&v=beta&t=TqXKmK9FaSuieqIzJca1gTCgNf92hHy_C-jyxB7I3-U", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676284434382?e=1677240000&v=beta&t=UqAlmRDkCiC4cpmjt3ZoxLYP1aaIWYv-Gz61lfs5mXo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676284434382?e=1677240000&v=beta&t=WEPpKCdbb6w_TbKSCWnt_VCVKmYhJ81P7zyympXmvlM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGh7LuglnBbdw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8465586085063538293)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8465586085063538293)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'Europe du Nord au d\u00e9fi de s'adapter rapidement \u00e0 des \u00e9t\u00e9s extr\u00eames by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/leurope-du-nord-au-defi-de-sadapter-rapidement-a-des-etes-extremes-1780864#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'Europe du Nord au d\u00e9fi de s'adapter rapidement \u00e0 des \u00e9t\u00e9s extr\u00eames" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6962676176481878016,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Alors qu'une 3\u00e8 vague de chaleur s'appr\u00eate \u00e0 frapper l'Europe en un peu plus d'un mois, Les Echos publient un article r\u00e9capitulant un certain nombre de \"mauvaises surprises\" qui frappent en particulier les pays du Nord de l'Europe, qui n'avaient pas anticip\u00e9 que les temp\u00e9ratures pourraient grimper aussi haut aussi vite.\n\nDe fait, apr\u00e8s le Canada qui avait vu des records de temp\u00e9rature battus de plusieurs degr\u00e9s en une seule fois l'\u00e9t\u00e9 dernier, c'est au tour de notre continent de conna\u00eetre le m\u00eame ph\u00e9nom\u00e8ne (heureusement sur une dur\u00e9e un peu moins longue). Les 40\u00b0C enregistr\u00e9s il y a 15 jours en Bretagne Nord ont par exemple d\u00e9pass\u00e9 d'environ 5\u00b0C le pr\u00e9c\u00e9dent record.\n\nAu menu des cons\u00e9quences des temp\u00e9ratures tr\u00e8s \u00e9lev\u00e9es et de la s\u00e9cheresse tr\u00e8s prononc\u00e9e, on va ainsi trouver :\n- des incendies dans des pays jusqu'alors \u00e9pargn\u00e9s,\n- des syst\u00e8mes informatiques non dimensionn\u00e9s pour de telles chaleurs qui d\u00e9faillent\n- des pistes d'a\u00e9roport impraticables (ca c'est plut\u00f4t bon pour le climat !)\n- un pont basculant dont le m\u00e9tal se dilate trop pour qu'il puisse fonctionner sans arrosage\n- un Rhin trop bas pour pouvoir permettre la navigation des barges avec un chargement normal (ce m\u00eame ph\u00e9nom\u00e8ne avait eu lieu en 2018 et avait p\u00e9nalis\u00e9 la logistique des sites industriels allemands situ\u00e9s le long du fleuve, qui avaient du diminuer leur production de mani\u00e8re significative)\n- une baisse de la production de centrales nucl\u00e9aires et de la production \u00e9olienne\n- et \u00e9videmment des cons\u00e9quences agricoles en cascade (non d\u00e9taill\u00e9es cette fois ci mais abord\u00e9es dans un autre article des Echos : https://lnkd.in/egZY6JFK ). A ce propos il serait souhaitable qu'en pareil cas on mette l'accent sur les volumes concern\u00e9s avant de parler argent : ce dernier ne se mange pas !\n\nRappelons le une fois de plus : tout cela n'est que le d\u00e9but. Comme pour les tensions sur l'approvisionnement \u00e9nerg\u00e9tique..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6962676176481878016,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6962676177282990080,urn:li:activity:6962676177282990080,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 73, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6962676177282990080,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6962676177282990080,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6962676177282990080", + "threadId": "activity:6962676177282990080", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6962676177282990080", + "urn": "urn:li:activity:6962676177282990080", + "numComments": 139, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6962676177282990080", + "reactionTypeCounts": [ + { + "count": 2140, + "reactionType": "LIKE" + }, + { + "count": 275, + "reactionType": "INTEREST" + }, + { + "count": 244, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "APPRECIATION" + }, + { + "count": 26, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6962676177282990080", + "numLikes": 2718, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6962676177282990080", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2718, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6962451685436706816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6962451685436706816", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6962451685436706816)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6962451685436706816)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_chaos-after-heat-crashes-computers-at-leading-activity-6962451685436706816-gUY4?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6962451684639809536", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6962451685436706816", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6962451685436706816,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6962451685436706816,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6962451684639809536", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "RonByOm44n54LlMD7Ozl/Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6962451685436706816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8738358688194794793", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676570114433?e=1677240000&v=beta&t=vvYVf6-8_wpo7dZ4BrYRqbFO1FAUVjgLSBf3wXQE-74", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676570114433?e=1677240000&v=beta&t=6ktmHxShV1n2SvZiO6fu3gjznrXsWK2AAT_WyjMnVhk", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676570114433?e=1677240000&v=beta&t=DMUHHa6sxvXDvG42-Cq9oJ-ppOA5RmGc2CjzvOVRS-k", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676570114433?e=1677240000&v=beta&t=a-sOxXKIy8fYjLoKe_gZOi_t49oxNAhwPldJ0PKHOyE", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEruvhDKm8Q4Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8738358688194794793)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8738358688194794793)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Chaos after heat crashes computers at leading London hospitals by theguardian.com", + "actionTarget": "https://www.theguardian.com/environment/2022/aug/07/chaos-after-heat-crashes-computers-at-leading-london-hospitals" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Chaos after heat crashes computers at leading London hospitals" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6962451684639809536,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le syst\u00e8me informatique d'un des plus grands \u00e9tablissements hospitaliers de Grande-Bretagne n'a pas r\u00e9sist\u00e9 \u00e0 la vague de chaleur qui s'est abattue sur ce pays il y a quinze jours. \n\nLe num\u00e9rique devrait faire l'objet d'une attention sp\u00e9ciale dans le contexte \u00e9nerg\u00e9tico-climatique \u00e0 venir :\n- il est gourmand en ressources (40 m\u00e9taux diff\u00e9rents dans un ordinateur)\n- il correspond \u00e0 4% de l'empreinte carbone plan\u00e9taire environ, et des choses aussi indispensables que la vid\u00e9o netflix sur le portable ou le m\u00e9tavers pour vendre du Mr Propre (sans parler de la r\u00e9alit\u00e9 virtuelle ou des jeux en ligne) poussent fortement dans la mauvaise direction\n- et il ne tol\u00e8re pas n\u00e9cessairement les tr\u00e8s fortes chaleurs.\n\nIl se trouve que, dans les ann\u00e9es et d\u00e9cennies qui viennent :\n\n- la fabrication des composants (dalles d'\u00e9crans, microprocesseurs, m\u00e9moires flash, microcontr\u00f4leurs, etc) est tr\u00e8s concentr\u00e9e (pour certains composants il n'y a que un ou deux fournisseurs majeurs ou zones de production majeures), et il y a donc besoin d'une mondialisation importante derri\u00e8re pour que tout le monde en profite. Or, les chaines mondialis\u00e9es vont \u00eatre soumises \u00e0 des pressions croissantes avec la d\u00e9crue p\u00e9troli\u00e8re et les soubresauts \u00e9conomiques et politiques qui vont en r\u00e9sulter. La cons\u00e9quence, pour les pays qui n'ont ni mines ni usines, est potentiellement un syst\u00e8me digital (dont nous nous rendons d\u00e9pendant, pour payer nos imp\u00f4ts, communiquer, g\u00e9rer des usines, g\u00e9rer la production \u00e9lectrique, ou... nous soigner) qui sera plus difficile \u00e0 maintenir et donc soumis \u00e0 des d\u00e9faillances accrues.\n\n- enfin la pression climatique va aussi occasionner des d\u00e9faillances en quantit\u00e9 croissante. Soit des centres n\u00e9vralgiques seront inond\u00e9s (la r\u00e9\u00e9dition de la crue de 1910 \u00e0 Paris, par exemple, noierait des infrastructures de r\u00e9seau importantes), soit des composants pas assez r\u00e9sistants \u00e0 la chaleur (pas pr\u00e9vus pour) seront d\u00e9faillants.\n\nPour la s\u00e9cheresse, il nous a fallu attendre d'avoir le nez dessus pour comprendre que nous aurions du nous pr\u00e9parer depuis un moment d\u00e9j\u00e0 (ce que nous n'avons pas - ou pas assez - fait, alors que c'\u00e9tait parfaitement pr\u00e9visible). \n\nPour le digital, faudra-t-il attendre des pannes majeures (par d\u00e9faut de fourniture de composants de remplacement, ou par d\u00e9faillance due au climat) pour r\u00e9aliser l\u00e0 aussi qu'il aurait fallu agir avant ?\n\n\"Agir\" c'est assez simple : ca sera revenir \u00e0 l'analogique pour des syst\u00e8mes qui ne doivent vraiment pas d\u00e9faillir (par exemple je suis tr\u00e8s r\u00e9serv\u00e9 sur la num\u00e9risation du contr\u00f4le commande des centrales nucl\u00e9aires), aller sur la sobri\u00e9t\u00e9 num\u00e9rique pour les autres usages (limitation des d\u00e9bits et du renouvellement des terminaux pour faire simple), et \"durcir\" les composants pour r\u00e9sister \u00e0 des fortes chaleurs.\n\nNe pas agir signifie que nous aurons, \"un jour\", de grosses paralysies subites, dont l'\u00e9pisode sanitaire londonien donne une petite id\u00e9e. Autant ne pas attendre !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6962451684639809536,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6962451685436706816,urn:li:activity:6962451685436706816,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 93, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6962451685436706816,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6962451685436706816,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6962451685436706816", + "threadId": "activity:6962451685436706816", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6962451685436706816", + "urn": "urn:li:activity:6962451685436706816", + "numComments": 136, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6962451685436706816", + "reactionTypeCounts": [ + { + "count": 1684, + "reactionType": "LIKE" + }, + { + "count": 315, + "reactionType": "INTEREST" + }, + { + "count": 290, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "APPRECIATION" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6962451685436706816", + "numLikes": 2348, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6962451685436706816", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2349, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "6mo \u2022 Edited \u2022 ", + "accessibilityText": "6 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6961978724581793792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6961978724581793792", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6961978724581793792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6961978724581793792)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_face-%C3%A0-la-s%C3%A9cheresse-historique-une-activity-6961978724581793792-OMP5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6961978723478687744", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6961978724581793792", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6961978724581793792,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6961978724581793792,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6961978723478687744", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "mAQvpylVwn0k0T9X1dgDEw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6961978724581793792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7901528337062643729", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676148162263?e=1677240000&v=beta&t=zdVbqRNWGfa93aTGY2yU04z7BPNpq1tyGGzTVA_4JIk", + "expiresAt": 1677240000000, + "height": 504 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676148162263?e=1677240000&v=beta&t=flfJMmvosqpW0Z8MMLgSLPMvLWJJoJgMEr1j-RCPdcM", + "expiresAt": 1677240000000, + "height": 646 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676148162263?e=1677240000&v=beta&t=AsnDFOCjo4LrP-clXqwfi-zLwo9tukHi7nOUpaxFw20", + "expiresAt": 1677240000000, + "height": 100 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676148162263?e=1677240000&v=beta&t=r8rSOfwMJcV7KqAlu6vMQ_B4936QQ37CLFK7LOURfGU", + "expiresAt": 1677240000000, + "height": 302 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEH0fzrEI5nMQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.63 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7901528337062643729)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7901528337062643729)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "huffingtonpost.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Face \u00e0 la s\u00e9cheresse \u00ab historique \u00bb, une cellule de crise ouverte par \u00c9lisabeth Borne by huffingtonpost.fr", + "actionTarget": "https://www.huffingtonpost.fr/france/article/face-a-la-secheresse-historique-une-cellule-de-crise-ouverte-par-elisabeth-borne_206264.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Face \u00e0 la s\u00e9cheresse \u00ab\u00a0historique\u00a0\u00bb, une cellule de crise ouverte par \u00c9lisabeth Borne" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6961978723478687744,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans le premier rapport d'\u00e9valuation du GIEC (https://lnkd.in/eDKR_VPF ), publi\u00e9 il y a 32 ans, en 1990, il figurait dans le r\u00e9sum\u00e9 aux d\u00e9cideurs la phrase suivante : \"Soil moisture (...) decreases over northern mid-latitude continents in summer\". Le risque de s\u00e9cheresses estivales en Europe et aux USA (et accessoirement en Chine) en r\u00e9ponse \u00e0 un climat qui se r\u00e9chauffe \u00e9tait donc d\u00e9j\u00e0 identifi\u00e9 il y a quelques d\u00e9cennies (images en commentaires).\n\nDepuis, ce risque n'a cess\u00e9 de se pr\u00e9ciser. Dans le 5\u00e8 rapport d'\u00e9valuation du GIEC (2013), les simulations montrent que les sols s'ass\u00e8chent sur une large partie des terres \u00e9merg\u00e9es d\u00e8s l'existence d'un r\u00e9chauffement m\u00eame \"modeste\" (image en commentaire). Ce rapport confirme \u00e9galement que c'est d\u00e9j\u00e0 la tendance observ\u00e9e.\n\nEt dans le dernier rapport du GIEC (https://lnkd.in/eHfjjKEz ) tout cela est \u00e0 nouveau r\u00e9affirm\u00e9 (voir image en commentaire).\n\nCe qui est en crise, dans cette affaire, avant m\u00eame la gestion de la p\u00e9nurie de cet \u00e9t\u00e9, c'est notre aptitude \u00e0 correctement anticiper une situation qui n'\u00e9tait pas du ressort du \"peut-\u00eatre\", mais que l'on (enfin ca d\u00e9pend qui est \"on\"...) savait in\u00e9luctable. \n\nAu lieu de nous pr\u00e9occuper de garantir que nous aurions encore des \u00e9cosyst\u00e8mes et de quoi manger (et nos voisins pareil, sans quoi l'histoire nous apprend que ca risque de chauffer un peu chez nous aussi), nous nous sommes occup\u00e9s ces derniers temps de faire plus de (grosses) voitures, de routes, de r\u00e9seaux de t\u00e9l\u00e9com pour regarder Netflix, de cosm\u00e9tiques, d'avions, d'immeubles, de centres commerciaux, de sacs \u00e0 main et de march\u00e9s financiers, sans oublier le p\u00e9trole et le gaz pour alimenter tout ca (c'est essentiellement avec ces \"march\u00e9s finaux\" que les profits - tr\u00e8s \u00e9lev\u00e9s - des soci\u00e9t\u00e9s du CAC 40 ont \u00e9t\u00e9 r\u00e9alis\u00e9s : https://lnkd.in/eWuc9B_9 ).\n\nLa vieille fable de la cigale et de la fourmi reste donc d'une actualit\u00e9 d\u00e9concertante. Et chanter - ou danser - fait malheureusement rarement venir la pluie, contrairement \u00e0 la l\u00e9gende...\n\nComme pour l'\u00e9volution actuelle sur l'\u00e9nergie qui semble nous \"prendre au d\u00e9pourvu\" alors qu'il \u00e9tait possible de la voir arriver de loin, il n'y a pas juste besoin d'une \"cellule de crise\" dans cette histoire. Il y a besoin d'un plan massif pour r\u00e9orienter l'\u00e9conomie, en gardant en t\u00eate que, malheureusement, \u00e0 cause de l'inertie du syst\u00e8me climatique et des soci\u00e9t\u00e9s humaines qui \u00e9mettent, l'avenir risque de nous r\u00e9server bien pire que la situation actuelle. Lorsque ce \"pire\" sera l\u00e0 (sur l'\u00e9nergie ou l'environnement) alors que nous avons eu les yeux tourn\u00e9s ailleurs, nous ne pourrons pas y faire grand chose, cellule de crise ou pas." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6961978723478687744,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6961978724581793792,urn:li:activity:6961978724581793792,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 243, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6961978724581793792,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6961978724581793792,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6961978724581793792", + "threadId": "activity:6961978724581793792", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6961978724581793792", + "urn": "urn:li:activity:6961978724581793792", + "numComments": 442, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6961978724581793792", + "reactionTypeCounts": [ + { + "count": 5659, + "reactionType": "LIKE" + }, + { + "count": 455, + "reactionType": "PRAISE" + }, + { + "count": 430, + "reactionType": "INTEREST" + }, + { + "count": 179, + "reactionType": "MAYBE" + }, + { + "count": 119, + "reactionType": "APPRECIATION" + }, + { + "count": 22, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6961978724581793792", + "numLikes": 6864, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6961978724581793792", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6871, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 Edited \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6961252297595084800,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6961252297595084800", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6961252297595084800)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6961252297595084800)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_wildfires-destroy-almost-all-forest-carbon-activity-6961252297595084800-H15Y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6961252296752050176", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6961252297595084800", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6961252297595084800,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6961252297595084800,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6961252296752050176", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "rIiGeT/Y3rfwDCEwx0bvcg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6961252297595084800,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7158635427516992591", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676006856397?e=1677240000&v=beta&t=vJ725ZphlV4DAx98RVMCT0qX0cvdn-SVcJLUdxlT6HE", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 900, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676006856398?e=1677240000&v=beta&t=9RcZNd307oHYYB66ZqmB5pIf-lKD0M03aFbKR2Og-Vg", + "expiresAt": 1677240000000, + "height": 506 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676006856398?e=1677240000&v=beta&t=OgaCjRN3pSxuIkUcnOvKLGuqLzGvro4-QCD12LEsPZE", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676006856398?e=1677240000&v=beta&t=uqS918w4JqXXlJd7JiwiYQjp7MsA97_MS88Kwl2ivcI", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEWyglOfpD8tw/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7158635427516992591)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7158635427516992591)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ft.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Wildfires destroy almost all forest carbon offsets in 100-year reserve, study says by ft.com", + "actionTarget": "https://www.ft.com/content/d54d5526-6f56-4c01-8207-7fa7e532fa09?accessToken=zwAAAYJtSJMakdPVTVUmb1ZMAdOCB3-n5TL6CQ.MEQCIB1Mg0SE8LIxFm_nFY2C1cPBYyclq7j0_1fUBjNYLTRGAiAJZIZoE8AFyfIvmBcIjiXCDWyyaRoWUyPouGnQ-1caJA&sharetype=gift&token=693570e7-cc1e-4f90-af62-329a63f5d5c1" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Wildfires destroy almost all forest carbon offsets in 100-year reserve, study says" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6961252296752050176,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Bien que cela ne soit pas valide scientifiquement, nombre d'entreprises revendiquent une \"neutralit\u00e9 carbone\" en recourant \u00e0 ce qui s'appelle la \"compensation\". L'id\u00e9e est la suivante : l'entreprise pr\u00e9tend \"annuler\" ses \u00e9missions en achetant des cr\u00e9dits \u00e9mis par des projets qui sont cens\u00e9s s\u00e9questrer du CO2 \u00e0 l'avenir. \n\nEn fait l'argument - apparemment simple et de bon gout - ne tient pas \u00e0 la base (https://lnkd.in/db7JzB2q ), mais le propos ne sera pas l\u00e0 pour ce post. Il concerne la r\u00e9alit\u00e9 du carbone s\u00e9questr\u00e9 par les projets forestiers, qui constituent l'essentiel des cr\u00e9dits \u00e9mis.\n\nEn effet, d\u00e8s lors que l'absorption est future, il peut y avoir plein d'\u00e9v\u00e9nements qui viennent contrarier la croissance des arbres : retour de la d\u00e9forestation, maladies, s\u00e9cheresse, ou... incendies. Bref tous les processus qui font que les arbres ne poussent pas normalement, ou pas du tout.\n\nPour parer \u00e0 cette \u00e9ventualit\u00e9, dans la comptabilit\u00e9 des projets de reforestation, on met un petit \"matelas de s\u00e9curit\u00e9\", consistant \u00e0 ne pas compter une petite partie de la croissance future. Mais c'est une petite partie.\n\nOr, les incendies actuels en Californie (o\u00f9 ca br\u00fble s\u00e9v\u00e8rement aussi) conduisent \u00e0 des \u00e9missions qui suppriment le matelas de s\u00e9curit\u00e9 pr\u00e9vu pour un si\u00e8cle pour les projets dans la r\u00e9gion, explique cet article du FT. \n\nQuestion : en pareil cas, est-ce que la \"non validit\u00e9 des cr\u00e9dits\" remonte jusqu'\u00e0 l'entreprise qui les a achet\u00e9s et l'oblige \u00e0 communiquer comme quoi \"elle n'est plus neutre\" ? La r\u00e9ponse est non : aucune entreprise ayant clam\u00e9 urbi et orbi qu'elle \u00e9tait neutre ne corrige le tir en expliquant que ce n'est plus le cas. \n\nMais ce n'est pas tr\u00e8s grave au fond, puisque de toute fa\u00e7on la revendication initiale n'\u00e9tait pas valide (et heureusement ce point de vue se g\u00e9n\u00e9ralise). Plus que jamais il est essentiel de bien s\u00e9parer les deux natures d'obligations qu'il faut mettre \u00e0 la charge des entreprises : d'une part les obliger \u00e0 r\u00e9duire leurs \u00e9missions, et \u00e0 adapter leurs produits \u00e0 un monde o\u00f9 les \u00e9missions d\u00e9croissent, ET en parall\u00e8le les obliger \u00e0 contribuer \u00e0 la restauration et au d\u00e9veloppement des puits, mais sans fongibilit\u00e9 entre les deux." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6961252296752050176,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6961252297595084800,urn:li:activity:6961252297595084800,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 124, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6961252297595084800,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6961252297595084800,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6961252297595084800", + "threadId": "activity:6961252297595084800", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6961252297595084800", + "urn": "urn:li:activity:6961252297595084800", + "numComments": 186, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6961252297595084800", + "reactionTypeCounts": [ + { + "count": 2911, + "reactionType": "LIKE" + }, + { + "count": 345, + "reactionType": "INTEREST" + }, + { + "count": 252, + "reactionType": "MAYBE" + }, + { + "count": 62, + "reactionType": "PRAISE" + }, + { + "count": 37, + "reactionType": "APPRECIATION" + }, + { + "count": 21, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6961252297595084800", + "numLikes": 3628, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6961252297595084800", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3628, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6960900505757704193,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6960900505757704193", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6960900505757704193)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6960900505757704193)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climate-endgame-exploring-catastrophic-climate-activity-6960900505757704193-i8J3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6960900504839188480", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6960900505757704193", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6960900505757704193,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6960900505757704193,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6960900504839188480", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "ON/AEJrqHDpwPW7Q0hSCxg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6960900505757704193,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9127111920955180107", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676406136068?e=1677240000&v=beta&t=aDV7dodfL5rwmf0TIqmh-20Fq_VceA8RSJQu9JEZu-E", + "expiresAt": 1677240000000, + "height": 330 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676406136068?e=1677240000&v=beta&t=XOqJC6r-s72Hq283bISXoioniz9brSlwoP_mDS6r9ZE", + "expiresAt": 1677240000000, + "height": 529 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676406136068?e=1677240000&v=beta&t=8byccVZmT2We2wjlA-vSK4NpClZbkv9cqupLIV6NQ08", + "expiresAt": 1677240000000, + "height": 66 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676406136068?e=1677240000&v=beta&t=WiJHHm1C8tAcbgcHX2SfSOHd3GtP7_3LjvhXCk8gyog", + "expiresAt": 1677240000000, + "height": 198 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEU0qNghNrcRA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9127111920955180107)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9127111920955180107)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "pnas.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climate Endgame: Exploring catastrophic climate change scenarios | Proceedings of the National Academy of Sciences by pnas.org", + "actionTarget": "https://www.pnas.org/doi/full/10.1073/pnas.2108146119" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climate Endgame: Exploring catastrophic climate change scenarios | Proceedings of the National Academy of Sciences" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6960900504839188480,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y est question de mortalit\u00e9 de masse, d'effondrement \u00e9conomique, de conflits, et de \"catastrophes en s\u00e9rie\".\n\nEst-ce dans un roman de science fiction, comme par exemple \"Symphonie Atomique\" (https://bit.ly/3BBDR4B ), une dystopie d\u00e9crivant un \"monde d'apr\u00e8s\" qui ne semble pas sp\u00e9cialement app\u00e9tissant ?\n\nEst-ce dans la bouche d'un militant \u00e9cologiste, comme par exemple celui qui d\u00e9gonfle des pneus de SUV la nuit dans Paris ? (https://bit.ly/3Qksrq4 )\n\nEst-ce dans la bouche des m\u00e9t\u00e9orologues quand ils \u00e9voquent les canicules, ce qui expliquerait qu'ils soient ensuite l'objet de messages violents et injurieux de la part d'une partie des gens qui les \u00e9coutent ? (https://bit.ly/3BCy0fr )\n\nPas du tout, pas du tout, comme le chantait Dutronc : c'est dans la tr\u00e8s s\u00e9rieuse revue scientifique am\u00e9ricaine \"Proceedings of the National Academy of Sciences\", qui publie un article expliquant que nous faisons une erreur en basant de fait notre gestion des risques uniquement sur ce qui est certain \u00e0 court terme dans les cons\u00e9quences \u00e0 venir du changement climatique.\n\nLes auteurs rel\u00e8vent \u00e0 bon droit deux points essentiels.\n\nLe premier est que, \u00e0 force de nous r\u00e9p\u00e9ter en boucle que le changement climatique va \u00eatre limit\u00e9 sous la barre dangereuse par le fruit de nos politiques publiques de croissance verte, nous ne pr\u00e9parons rien pour l'\u00e9ventualit\u00e9 - h\u00e9las plus que probable - o\u00f9 ce ne sera pas le cas. De fait, voir l'Europe \"relancer le charbon\" en pleine canicule (https://bit.ly/3JvHZFd ) ou le parlement fran\u00e7ais d\u00e9taxer les carburants et le fioul dans le m\u00eame contexte montre bien que pour le moment nous nous payons trop souvent de mots.\n\nLe second est que le climat ne va pas changer \"toutes choses \u00e9gales par ailleurs\". Dans le m\u00eame temps, il y aura aussi des troubles locaux croissants par p\u00e9nurie de ressources (alimentaires, environnementales, \u00e9nerg\u00e9tiques, m\u00e9talliques, etc), et les sc\u00e9narios avec des contraintes multiples sont absentes de la litt\u00e9rature scientifique. Ce n'est pas dans l'article, mais l'exemple typique est d'imaginer faire face \u00e0 la d\u00e9rive climatique avec une \u00e9conomie qui continue \u00e0 \"bien se porter\" alors m\u00eame que les ressources environnementales et \u00e9nerg\u00e9tiques, et la stabilit\u00e9 politique baissent. C'est exactement ce qui se trouve dans tous les \"plans\" 1,5 ou 2\u00b0C...\n\nEn cons\u00e9quence les auteurs appellent \u00e0 ce que nous apprenions \u00e0 imaginer des futurs avec des \"catastrophes en s\u00e9rie\". Cela rejoint un propos que j'ai souvent tenu sur la \"transition\" : il faut que celle-ci soit compatible avec une \u00e9conomie en contraction, sans exiger d'\u00e9conomie en croissance, et qu'elle soit \"r\u00e9siliente aux aleas\" qui malheureusement ne rel\u00e8vent m\u00eame pas de l'improbable (baisse des chaines d'approvisionnement mondiales, d\u00e9p\u00e9rissement partiel de la biomasse, crises financi\u00e8res, etc). \n\nMais pour le moment l'essentiel du monde acad\u00e9mique continue \u00e0 garder des oeill\u00e8res rassurantes sur les \u00e9volutions \"hors climat\". Cet appel \u00e0 les enlever doit \u00eatre entendu." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6960900504839188480,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6960900505757704193,urn:li:activity:6960900505757704193,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 99, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6960900505757704193,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6960900505757704193,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6960900505757704193", + "threadId": "activity:6960900505757704193", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6960900505757704193", + "urn": "urn:li:activity:6960900505757704193", + "numComments": 191, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6960900505757704193", + "reactionTypeCounts": [ + { + "count": 2699, + "reactionType": "LIKE" + }, + { + "count": 408, + "reactionType": "INTEREST" + }, + { + "count": 310, + "reactionType": "MAYBE" + }, + { + "count": 69, + "reactionType": "APPRECIATION" + }, + { + "count": 51, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6960900505757704193", + "numLikes": 3554, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6960900505757704193", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3555, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6960525681399054336,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6960525681399054336", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6960525681399054336)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6960525681399054336)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-for%C3%AAt-br%C3%BBle-pas-quen-france-mais-un-activity-6960525681399054336-pYzF?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6960525680430215168", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6960525681399054336", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6960525681399054336,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6960525681399054336,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6960525680430215168", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "ce0/q7BRSqrSrfw9FEF6Ag==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6960525681399054336,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEUcv25NdD6hA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEUcv25NdD6hA", + "artifacts": [ + { + "width": 1056, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1659518642090?e=1679529600&v=beta&t=fHaIWfiArUCxxjue_fpsih9BM8SnPXTFl2JA6uieCW0", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1659518642097?e=1679529600&v=beta&t=EvUruV56tTMDxrBLQlNTe78F6v8NxrD81hPyCKOr2m4", + "expiresAt": 1679529600000, + "height": 20 + }, + { + "width": 1056, + "fileIdentifyingUrlPathSegment": "1280/0/1659518642097?e=1679529600&v=beta&t=CmFdVvTjPAjqiv4fcrH4oScriEowIaRQGrrwiC3eD6s", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1659518642097?e=1679529600&v=beta&t=Cgxe5St8i9kd6F5UF6icGi6HfMCcihWeDHpcGETOBrI", + "expiresAt": 1679529600000, + "height": 490 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1659518642097?e=1679529600&v=beta&t=zgjkmRq26MLL96IssM9_NaUhWINLKHgX0dd1nLwrxiU", + "expiresAt": 1679529600000, + "height": 163 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1659518642097?e=1679529600&v=beta&t=uv0j2aTLTjOztbTN7kKvZlfayhOX7lIZVmvfj29cwQU", + "expiresAt": 1679529600000, + "height": 818 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEUcv25NdD6hA/feedshare-shrink_" + }, + "displayAspectRatio": 1.0227272727272727 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, line chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6960525680430215168,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La for\u00eat br\u00fble. Pas qu'en France, mais un peu partout en Europe. Combien plus grave que d'habitude est la situation ? Le Joint Research Centre de la Commission Europ\u00e9enne maintient un site o\u00f9 il est possible de consulter des statistiques, agr\u00e9g\u00e9es sur l'Europe ou d\u00e9taill\u00e9es par pays, qui donnent les surfaces d\u00e9j\u00e0 br\u00fbl\u00e9es : https://lnkd.in/eDws4Uye\n\nLe graphique r\u00e9capitulatif nous apprend que 600.000 hectares ont d\u00e9j\u00e0 br\u00fbl\u00e9 au sein de l'Union, soit quasiment 5 fois plus que la moyenne des 15 derni\u00e8res ann\u00e9es \u00e0 la m\u00eame \u00e9poque, et surtout quasiment le double du record pr\u00e9c\u00e9dent sur la m\u00eame p\u00e9riode (NB : 2003 n'est pas incluse dans la s\u00e9rie de r\u00e9f\u00e9rence, or cela avait \u00e9t\u00e9 une ann\u00e9e avec beaucoup de feux aussi).\n\nSans surprise, ce sont plut\u00f4t des pays du Sud ou de l'Est du continent (Espagne, Portugal, Roumanie, Italie, et les pays des Balkans) qui sont les plus touch\u00e9s. La France bat aussi son record sur la m\u00eame p\u00e9riode (2006 - 2015, mais \u00e0 nouveau sans 2003).\n\nLes pays europ\u00e9ens hors EU y ajoutent plus de 500.000 hectares br\u00fbl\u00e9s, dont 380.000 en Ukraine, o\u00f9 il est probable que le conflit d\u00e9sorganise les secours quand un foyer se d\u00e9clare (et les charges explosives doivent d\u00e9clencher des incendies au moins aussi facilement qu'un promeneur n\u00e9gligent...).\n\nIl n'y a \u00e9videmment pas que la s\u00e9cheresse qui est n\u00e9cessaire pour d\u00e9clencher un incendie. Il faut un \u00e9v\u00e9nement externe : coup de foudre, n\u00e9gligence, ou... intention de nuire. Et le facteur humain est largement pr\u00e9pond\u00e9rant dans le d\u00e9clenchement de feux.\n\nCertains comportements appel\u00e9s \"n\u00e9gligence\" sont du reste assez proches de l'intention de nuire, comme par exemple jeter un m\u00e9got de sa voiture en ce moment. Or, un fumeur sur quatre d\u00e9clare le faire de temps \u00e0 autres : https://lnkd.in/eebJ3VWD\n\nLe Code Civil, dans son article 1240, stipule que \u201cTout fait quelconque de l\u2019homme, qui cause \u00e0 autrui un dommage, oblige celui par la faute duquel il est arriv\u00e9 \u00e0 le r\u00e9parer\u201d. Question : quand on a mis le feu \u00e0 une for\u00eat qui, au mieux, met 50 ans \u00e0 se reconstituer, et au pire ne reviendra jamais \u00e0 cause du changement climatique ou d'autres pressions (on en profite pour \"am\u00e9nager\"), que signifie la r\u00e9paration ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6960525680430215168,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6960525681399054336,urn:li:activity:6960525681399054336,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 76, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6960525681399054336,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6960525681399054336,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6960525681399054336", + "threadId": "activity:6960525681399054336", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6960525681399054336", + "urn": "urn:li:activity:6960525681399054336", + "numComments": 113, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6960525681399054336", + "reactionTypeCounts": [ + { + "count": 1774, + "reactionType": "LIKE" + }, + { + "count": 391, + "reactionType": "INTEREST" + }, + { + "count": 294, + "reactionType": "MAYBE" + }, + { + "count": 48, + "reactionType": "APPRECIATION" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6960525681399054336", + "numLikes": 2529, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6960525681399054336", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2529, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6960172040767029248,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6960172040767029248", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6960172040767029248)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6960172040767029248)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sylvestre-huet-vient-de-publier-une-analyse-activity-6960172040767029248-cQai?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6960172039819124736", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6960172040767029248", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6960172040767029248,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6960172040767029248,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6960172039819124736", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "QWBCXfUQp+Fmz36rxEbbuw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6960172040767029248,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHKaCCh4NqgtA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHKaCCh4NqgtA", + "artifacts": [ + { + "width": 883, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1659434327128?e=1679529600&v=beta&t=t_0WsaZymUTFllXdNB9Rcppfq9gabwIdxIi6frU_ZDU", + "expiresAt": 1679529600000, + "height": 485 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1659434327115?e=1679529600&v=beta&t=dIREjsCExgCSFnTeTnAlbHlEy0PNLRUjDz0B728qIS4", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 883, + "fileIdentifyingUrlPathSegment": "1280/0/1659434327115?e=1679529600&v=beta&t=Pt5uoauz5yfMf_JzOSpawi51-6tPM6LqlwRmx8sSjC8", + "expiresAt": 1679529600000, + "height": 485 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1659434327115?e=1679529600&v=beta&t=wiqaNo38rRk3DXvdHBcahK9S2pNdemEJs-MGXpHY9Pw", + "expiresAt": 1679529600000, + "height": 263 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1659434327115?e=1679529600&v=beta&t=JJoKCygdooMjP2s-1IRnS3O2AbFWvAkjJs7NDT6SKCs", + "expiresAt": 1679529600000, + "height": 87 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1659434327115?e=1679529600&v=beta&t=CI0tggTsWP4TERV-SFm-TDymNCmSBL3NCTWm8bb7iEk", + "expiresAt": 1679529600000, + "height": 439 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHKaCCh4NqgtA/feedshare-shrink_" + }, + "displayAspectRatio": 0.549263873159683 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6960172039819124736,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 14, + "miniProfile": { + "firstName": "Sylvestre", + "lastName": "Huet", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAO9iBUBrJPOAiOLpOa49uUAlKWtP2fcD94", + "occupation": "journaliste scientifique ind\u00e9pendant", + "objectUrn": "urn:li:member:62752789", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAO9iBUBrJPOAiOLpOa49uUAlKWtP2fcD94", + "publicIdentifier": "sylvestre-huet-33102319", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516799797874?e=1681948800&v=beta&t=EbEU2mNNzL8mKmONMhbMHNFmXxw4meytDPaHz_MATgo", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516799797874?e=1681948800&v=beta&t=GDoTL8oxbkf3tJEVDqabrbXUmJR2LKj_RooRjFciB8M", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516799797874?e=1681948800&v=beta&t=FgHh1elDkGpv6AwfMHleG8pA04ZVPo8pq1D_XGsjzRA", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516799797874?e=1681948800&v=beta&t=T8ijLFU3JAQPQkggh0ncWe1Zl8EPa1PW9KAmiEDNgYI", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGLl4HX_4m5Yw/profile-displayphoto-shrink_" + } + }, + "trackingId": "TzfcHUjkTu6kP5rCXW5HhA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Sylvestre Huet vient de publier une analyse d'un r\u00e9cent rapport de l'Agence Internationale de l'Energie sur l'avenir du nucl\u00e9aire : https://bit.ly/3zMUj0y\n\nOn y trouve quelques graphiques tr\u00e8s int\u00e9ressants. \n\nTout d'abord un premier, reproduit en commentaire, situe la vision de l'AIE (sur le nucl\u00e9aire) dans l'ensemble des sc\u00e9narios recens\u00e9s par le GIEC (rappelons que ce dernier ne produit aucun sc\u00e9nario, mais recense ceux qui ont \u00e9t\u00e9 publi\u00e9s). On voit que l'AIE, par ailleurs tr\u00e8s optimiste sur les modes de production diffus et non pilotables (vent et soleil), beaucoup plus demandeurs de m\u00e9taux que les modes concentr\u00e9s (cette \"intensit\u00e9 en m\u00e9taux\" est en train de faire remonter leurs couts un peu partout), est plut\u00f4t conservatrice sur l'atome, postulant en quelque sorte qu'il sera plus difficile de s'affranchir des limites pour ce qui concerne notre volont\u00e9 et nos comp\u00e9tences que pour ce qui concerne des ressources physiques. On verra ce qu'il en sera !\n\nLe second est celui en illustration et donne, pour tous les pays qui ont construit des r\u00e9acteurs, et sur la p\u00e9riode 1967-2021, les temps de construction moyen (je suppose pour l'ensemble des r\u00e9acteurs construits, qu'ils soient encore en service ou pas), ainsi que les dur\u00e9es maximales et minimales.\n\nOn y constate :\n- qu'il y a quasiment un facteur 10 entre le temps de construction le plus long (plus de 20 ans en Argentine et aux USA) et le plus court (environ 3 ans aux USA et en Russie)\n- que la Chine, qui dispose actuellement du programme le plus important, est \u00e0 5 ans en moyenne, avec un max \u00e0 11\n- que, sur une grande s\u00e9rie (cas par exemple de la France, de la Russie, de la Chine) il est raisonnable de compter sur une dur\u00e9e moyenne inf\u00e9rieure \u00e0 10 ans, et m\u00eame proche de 6 ou 7 si on ne cherche pas \u00e0 se surprot\u00e9ger contre des risques faibles.\n\nLe rapport lui-m\u00eame (https://bit.ly/3oNlPVj ) donne d'autres indications int\u00e9ressantes :\n- sur les 5 derni\u00e8res ann\u00e9es les nouveaux chantiers ont \u00e9t\u00e9 quasi-exclusivement le fait de la Chine et de la Russie\n- en fonction du \"cout de l'argent\" (le taux d'int\u00e9r\u00eat qu'il faut verser chaque ann\u00e9e aux pourvoyeurs de fonds - actionnaires et banquiers - qui am\u00e8nent l'argent n\u00e9cessaire \u00e0 la construction) le nucl\u00e9aire peut \u00eatre la moins ch\u00e8re ou la plus ch\u00e8re des technologies d\u00e9carbon\u00e9es pilotables (la conclusion logique est donc qu'il faut que ce cout de l'argent soit bas, et donc que le nucl\u00e9aire soit mis en oeuvre par des soci\u00e9t\u00e9s d'\u00e9tat)\n- au sein des nouveaux chantiers, Flamanville bat des records de d\u00e9passement de dur\u00e9e et de budget par rapport \u00e0 l'estimation initiale : le probl\u00e8me est donc fran\u00e7ais avant tout\n\nIncidemment on apprend aussi (page 46 du rapport ; graphique en commentaire) que dans le sc\u00e9nario Net Zero de l'AIE il y aurait 5000 GW de puissance \u00e9lectrique de stockage dans le monde en 2050. Cette derni\u00e8re est d'environ 150 GW actuellement et est constitu\u00e9 \u00e0 99% de barrages r\u00e9versibles. C'est pas gagn\u00e9..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6960172039819124736,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6960172040767029248,urn:li:activity:6960172040767029248,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6960172040767029248,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6960172040767029248,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6960172040767029248", + "threadId": "activity:6960172040767029248", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6960172040767029248", + "urn": "urn:li:activity:6960172040767029248", + "numComments": 86, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6960172040767029248", + "reactionTypeCounts": [ + { + "count": 369, + "reactionType": "LIKE" + }, + { + "count": 70, + "reactionType": "INTEREST" + }, + { + "count": 63, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6960172040767029248", + "numLikes": 504, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6960172040767029248", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 505, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 Edited \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6959911889002762240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6959911889002762240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6959911889002762240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6959911889002762240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_trouver-un-patron-pour-edf-le-d%C3%A9fi-de-l-activity-6959911889002762240-Dwt6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6959911888151318531", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6959911889002762240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6959911889002762240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6959911889002762240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6959911888151318531", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "JoqN9ZNqBvQFc7erM0mwPw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6959911889002762240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8745842895841552422", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676627704405?e=1677240000&v=beta&t=J-fdUxLwKj8PBZ1ZT1mT6EQLAT5WX-9qvOojl-xhukE", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676627704405?e=1677240000&v=beta&t=mSJtUrEmhMzuyAawGOtqMKbnDzy-ZBeBUb7IB4MJq5o", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676627704405?e=1677240000&v=beta&t=oQMxnX0jmlzf0HfjBuOsCux5yEnMFdlXXsZZ5FEFtxE", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676627704406?e=1677240000&v=beta&t=Aw3LAOiYKtGQLHn_4jsJhdwL186tM7UVka0NyqQt778", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHhiW8zp9Ltpw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8745842895841552422)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8745842895841552422)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Trouver un patron pour EDF, le d\u00e9fi de l\u2019Etat by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/economie/article/2022/07/30/trouver-un-patron-pour-edf-le-defi-de-l-etat_6136657_3234.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Trouver un patron pour EDF, le d\u00e9fi de l\u2019Etat" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6959911888151318531,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s que l'Etat fran\u00e7ais a fait du stop and go pendant 20 ans sur le nucl\u00e9aire, apr\u00e8s qu'il ait confirm\u00e9 avant les \u00e9lections que les poches d'EDF \u00e9taient \u00e0 disposition pour distribuer du revenu aux m\u00e9nages (de telle sorte que l'entreprise n'est jamais assur\u00e9e de garder pour elle l'argent qui provient de ses ventes ; autant pour sa cr\u00e9dibilit\u00e9 financi\u00e8re !), apr\u00e8s que l'Europe ait impos\u00e9 \u00e0 l'\u00e9lectricien national de vendre \u00e0 perte un quart puis un tiers de sa production, soit disant pour am\u00e9liorer la situation du consommateur (ce qui ne va pas emp\u00eacher ce dernier de payer partout en Europe son \u00e9lectricit\u00e9 les yeux de la t\u00eate, parce que les \u00e9conomistes lib\u00e9raux ne savent pas ce qu'est un r\u00e9seau \u00e9lectrique : https://lnkd.in/dfDBiw6J ), l'actionnaire d\u00e9couvre qu'il n'y a pas pl\u00e9thore de candidat(e)s pour aller d\u00e9lib\u00e9r\u00e9ment se mettre la rate au court-bouillon dans le bazar qui a \u00e9t\u00e9 cr\u00e9\u00e9 par la puissance publique. Mais c'est le contraire qui eut \u00e9t\u00e9 \u00e9tonnant...\n\nLes probl\u00e8mes industriels d'EDF trouveront une solution avec le temps si le cadre est stable et pertinent (adjectifs que l'on peut mettre dans l'autre ordre). Mais cela suppose de ne plus prendre le nucl\u00e9aire en otage de d\u00e9cisions qui changent tous les 5 ans, et de ne pas consid\u00e9rer l'\u00e9lectricit\u00e9 comme un bien marchand ordinaire, contrairement aux vues actuelles de la Commission. \n\nSi l'actionnaire veut un(e) candidat(e) de valeur, il doit d'abord balayer devant sa porte (et celle de la Commission, dont les d\u00e9cisions ne sont pas totalement d\u00e9connect\u00e9es des lignes rouges fix\u00e9es par notre pays). Et, du reste, sans changement de cadre, la personnalit\u00e9 retenue ne sera qu'un \u00e9l\u00e9ment de deuxi\u00e8me ordre dans l'avenir de l'entreprise." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6959911888151318531,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6959911889002762240,urn:li:activity:6959911889002762240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 96, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6959911889002762240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6959911889002762240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6959911889002762240", + "threadId": "activity:6959911889002762240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6959911889002762240", + "urn": "urn:li:activity:6959911889002762240", + "numComments": 170, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6959911889002762240", + "reactionTypeCounts": [ + { + "count": 1989, + "reactionType": "LIKE" + }, + { + "count": 129, + "reactionType": "MAYBE" + }, + { + "count": 127, + "reactionType": "PRAISE" + }, + { + "count": 54, + "reactionType": "INTEREST" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6959911889002762240", + "numLikes": 2322, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6959911889002762240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2323, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 Edited \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6959776351377616896,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6959776351377616896", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6959776351377616896)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6959776351377616896)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_tout-le-monde-a-en-t%C3%AAte-que-avec-le-temps-activity-6959776351377616896-ViLo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6959776350601650176", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6959776351377616896", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6959776351377616896,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6959776351377616896,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6959776350601650176", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "ws6p6TvBIoUr2e5zJ4t4jA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6959776351377616896,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGWeGTyEnfQ6w", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGWeGTyEnfQ6w", + "artifacts": [ + { + "width": 1607, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1659339985515?e=1679529600&v=beta&t=tQ93D8_ABjj7r8s_U42_xhpTJGpR596Z6jOqM2SDm9g", + "expiresAt": 1679529600000, + "height": 1086 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1659339987561?e=1679529600&v=beta&t=jNzTOEEQZkbfiNexzZZv5xsxqUQ7QSmzZTdJEadfKps", + "expiresAt": 1679529600000, + "height": 14 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1659339987561?e=1679529600&v=beta&t=GOwXqi0XXWWTWrOG31h7xy0IbDrvYo0wvnR_4o9NHoQ", + "expiresAt": 1679529600000, + "height": 865 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1659339987561?e=1679529600&v=beta&t=FwOSFJDw_iwWAjhK2PuX4vaJO8ETvVnSaIDdrlDVvTo", + "expiresAt": 1679529600000, + "height": 324 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1659339987561?e=1679529600&v=beta&t=pm2lQHBlM6iRhnLTDH9hyaRj-z3g0I1vn9kEuiMtHUc", + "expiresAt": 1679529600000, + "height": 108 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1659339987561?e=1679529600&v=beta&t=7RSdSIz1gwDD_D7xKpGec5xGkbghuU-OmLGReqHLt3k", + "expiresAt": 1679529600000, + "height": 541 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGWeGTyEnfQ6w/feedshare-shrink_" + }, + "displayAspectRatio": 0.6757934038581207 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6959776350601650176,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tout le monde a en t\u00eate que, avec le temps, l'\u00e9conomie devient \"plus efficace\". Cela signifie que, pour cr\u00e9er un dollar (en g\u00e9n\u00e9ral la monnaie utilis\u00e9e quand on parle de l'\u00e9conomie mondiale) de production finale, on utilise de moins en moins de \"tout\", et notamment d'\u00e9nergie ou de ressources.\n\nEn pareil cas, avec le temps, pour produire un dollar de fourchettes, d'enveloppes, de plantes en pot, de logement, de volets ou de sandales, l'appareil productif a demand\u00e9 moins d'\u00e9nergie, et/ou moins de fer, de cuivre, de plastique, ou d'azote.\n\nMais il y a un domaine dans lequel cette croyance s'av\u00e8re inexacte : l'\u00e9lectricit\u00e9. La courbe suivante (de votre serviteur, sur donn\u00e9es BP Statistical Review et Banque Mondiale) indique quelle quantit\u00e9 d'\u00e9lectricit\u00e9 est n\u00e9cessaire pour produire un dollar (constant, donc d\u00e9flat\u00e9) de biens et services en moyenne mondiale. \n\nLa r\u00e9ponse saute aux yeux : c'\u00e9tait 0,3 kWh en 1985... et 0,3 kWh en 2021. Aucune diff\u00e9rence entre les deux dates ; aucun gain sur la p\u00e9riode. Dit autrement, il y a eu z\u00e9ro gain d'efficacit\u00e9 \u00e9lectrique de l'\u00e9conomie. \n\nIl serait int\u00e9ressant de creuser la raison de cette stabilit\u00e9 (ce que je n'ai pas fait). S'il s'av\u00e8re qu'il y a derri\u00e8re une limite \"dure\" (ce qui est probable), cela signifie alors que, plus encore pour l'\u00e9lectricit\u00e9 que pour les autres flux physiques, la \"croissance verte\" est impossible. \n\nUne baisse de la production \u00e9lectrique (inexorable avec la baisse massive des combustibles fossiles, et pour le coup surtout du charbon et du gaz) signifiera n\u00e9cessairement une baisse du PIB. On peut r\u00e9sumer par : moins d'\u00e9lectricit\u00e9 = moins de machines \u00e9lectriques = moins de transformation = moins d'\u00e9conomie.\n\nFace \u00e0 ce constat, 2 options : comprendre, avoir des outils prospectifs qui int\u00e8grent ce fait, et planifier en cons\u00e9quence. Ou continuer \u00e0 r\u00eaver avec des mod\u00e8les \u00e9conomiques d\u00e9connect\u00e9s de la r\u00e9alit\u00e9 physique. Tout personne \"de bon sens\" dira que c'est la premi\u00e8re option qu'il faut suivre. Malheureusement cela fait un certain temps que nous suivons la seconde..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6959776350601650176,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6959776351377616896,urn:li:activity:6959776351377616896,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 119, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6959776351377616896,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6959776351377616896,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6959776351377616896", + "threadId": "activity:6959776351377616896", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6959776351377616896", + "urn": "urn:li:activity:6959776351377616896", + "numComments": 272, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6959776351377616896", + "reactionTypeCounts": [ + { + "count": 1959, + "reactionType": "LIKE" + }, + { + "count": 438, + "reactionType": "INTEREST" + }, + { + "count": 382, + "reactionType": "MAYBE" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6959776351377616896", + "numLikes": 2827, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6959776351377616896", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2827, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6959537504257462273,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6959537504257462273", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6959537504257462273)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6959537504257462273)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-quasi-totalit%C3%A9-des-d%C3%A9partements-fran%C3%A7ais-activity-6959537504257462273-uc1P?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6959537502068056064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6959537504257462273", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6959537504257462273,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6959537504257462273,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6959537502068056064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "ZUM5hYacf08AhH7rpxRCiQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6959537504257462273,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEXkIQ7_IVF8w", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEXkIQ7_IVF8w", + "artifacts": [ + { + "width": 747, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1659283041956?e=1679529600&v=beta&t=ad9oAWK-yU0thS31oLsOhUTEYCq8N0iuYNNsyfoV97M", + "expiresAt": 1679529600000, + "height": 210 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1659283041961?e=1679529600&v=beta&t=4aAQZ3KD6arx3g1a9r2ksjR8AYJQDHbDnpz5QpZ7pZE", + "expiresAt": 1679529600000, + "height": 5 + }, + { + "width": 747, + "fileIdentifyingUrlPathSegment": "1280/0/1659283041961?e=1679529600&v=beta&t=FxtYX-t5KqykQ_BJTlCxq4AiU0Epe0TsMGwn9riB3Tg", + "expiresAt": 1679529600000, + "height": 210 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1659283041961?e=1679529600&v=beta&t=SQglOBrh9oTugJw78YVQjD6R31aLGoAcg7cu47aEPbg", + "expiresAt": 1679529600000, + "height": 134 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1659283041961?e=1679529600&v=beta&t=2LEhIJvGmC9nOIP4JDzq5sPneqj7CYl_xvPkG63ZtAk", + "expiresAt": 1679529600000, + "height": 44 + }, + { + "width": 747, + "fileIdentifyingUrlPathSegment": "800/0/1659283041961?e=1679529600&v=beta&t=qss2n3d5fsj0MG2edb-_rhxK7IfKPvKEYfgmTCkcJi4", + "expiresAt": 1679529600000, + "height": 210 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEXkIQ7_IVF8w/feedshare-shrink_" + }, + "displayAspectRatio": 0.28112449799196787 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6959537502068056064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1410, + "length": 14, + "miniProfile": { + "firstName": "Bruno", + "lastName": "Le Maire", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "occupation": "Ministre de l\u2019\u00c9conomie, des Finances et de la Souverainet\u00e9 industrielle et num\u00e9rique", + "objectUrn": "urn:li:member:489338904", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1615820384690?e=1681948800&v=beta&t=1lSONwEqNZ6YCfsSa_SSdMyy3lRIBlt7HnIa8FhbD_0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1615820384690?e=1681948800&v=beta&t=mXrkcvswYDvA5nxrWnHwv0uRHbVbSrbb-YTCHNh3hZs", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFtlzemSILDlQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "brunolemaire", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650470576103?e=1681948800&v=beta&t=grYiuKFOw0Vps9r0gskTHNlsABqKydJY1BD9PqrCOZE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650470576103?e=1681948800&v=beta&t=_dq5B-XcARKywCPZ39sHI46v2wiioUaRLXHB6EjQEZA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650470576103?e=1681948800&v=beta&t=hpGqyzWjIXtO01PmwOzhVATdVIHajDaeNdSiiN6I2KY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650470576103?e=1681948800&v=beta&t=sDT3g5ZnR6kL5Ks0S37qtLS2Z-UNhM119fiXH0t1h8I", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQH2hSTPjrAuKw/profile-displayphoto-shrink_" + } + }, + "trackingId": "oED9AIC6R8Ozv8FwFtDbeQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1819, + "length": 10, + "miniProfile": { + "firstName": "Pap", + "lastName": "Ndiaye", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAr2DfQB3vTS5-40_xkLdMAlde49DisLs20", + "occupation": "Ministre de l'Education nationale et de la jeunesse", + "objectUrn": "urn:li:member:183897588", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAr2DfQB3vTS5-40_xkLdMAlde49DisLs20", + "publicIdentifier": "pap-ndiaye-27070651", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1613042151764?e=1681948800&v=beta&t=lYRURX_k-8TZMC69JAyZK8Em-aYKly7spymYMl6VTVE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1613042151764?e=1681948800&v=beta&t=njdtvUaYH6KxhttQj4_U5ddlJeLyS95Twtlo92-8rng", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1613042151764?e=1681948800&v=beta&t=qkzx6tgPByvFNcTJxVj8oD2AQgq13PgdS1k9pUmPowc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1613042151764?e=1681948800&v=beta&t=UD3F01R6rEmh-l23aeKZ3-4vbTFsLAJA78V4s6FLhFs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQESUHAfnElUSg/profile-displayphoto-shrink_" + } + }, + "trackingId": "Z35Kv01vQP2X7jGpjTrmMQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1878, + "length": 14, + "miniProfile": { + "firstName": "Cl\u00e9ment", + "lastName": "Beaune", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAACqOA8BKYR6WBUWJKJHlgMxge302fHvsMY", + "occupation": "Ministre charg\u00e9 des Transports", + "objectUrn": "urn:li:member:11155471", + "entityUrn": "urn:li:fs_miniProfile:ACoAAACqOA8BKYR6WBUWJKJHlgMxge302fHvsMY", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1661420886079?e=1681948800&v=beta&t=2WLbWTXz7XidXoxdnrfiXFEpYM4Zp1nhStFP3Rbd1es", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1661420886079?e=1681948800&v=beta&t=wtQj7WGmq8uN_0xuDp9dS_QEUoW-ur6SrmXdQSmlpJQ", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQH8DYWih6gvRg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "cl\u00e9ment-beaune-86789b3", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1596064562769?e=1681948800&v=beta&t=suk7_6_iQ85WXmvVCIu711ZO4h3zMER9LEac9f9FxRA", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1596064562769?e=1681948800&v=beta&t=12Hj6GVaW5k_5WRnQFrHojuATC0a_p7AIi7WGMgG3dg", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1596064562769?e=1681948800&v=beta&t=2P4DAW38pOKiN1I2l693aIRrcKfUrl6BxIQz3HRNbkw", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1596064562769?e=1681948800&v=beta&t=JVG61LHgpR8rP2RfAS-p3ZN7ATZqeVFX8eKr8dj6W8g", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQETmTlZC3lJ4w/profile-displayphoto-shrink_" + } + }, + "trackingId": "Lr9IbLf+SNGPLjL33+5DdA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1992, + "length": 16, + "miniProfile": { + "firstName": "Carole", + "lastName": "Grandjean", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAC9pUYB3J75oAy4t07fO5_7C0B1RxjazBY", + "occupation": "Ministre d\u00e9l\u00e9gu\u00e9e charg\u00e9e de l'Enseignement et de la Formation professionnels", + "objectUrn": "urn:li:member:12428614", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAC9pUYB3J75oAy4t07fO5_7C0B1RxjazBY", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1655810799671?e=1681948800&v=beta&t=Eo94VseeW0-LGeLFm0AuYJDEAuKOUwGa-Dm-9M6xmhg", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1655810799671?e=1681948800&v=beta&t=Or7PAV85V7cuzMbtuLZWWfWkutIvoqKLcKvkT_-iv9o", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQGCawbHDSjG-A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "carole-grandjean", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1657319654758?e=1681948800&v=beta&t=5ln3ZCGkIMch0PpeDsRXLOXlQqrMdrLO2OjcKmmA_eE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1657319654758?e=1681948800&v=beta&t=hIPsDrXs7Y7uSM9kC7WPCi_YX6Z4PE4eQK_4eVRDfC0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1657319654758?e=1681948800&v=beta&t=EI-0GZECuN0w9EH4TasPy_24bbiYT0uyfzUH2raOsyw", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1657319654758?e=1681948800&v=beta&t=P-M9-vd67ylnvXjAXCCKyrOHBFWbKwIQwa7Yxbe0Iyo", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG55-V3NGAlQg/profile-displayphoto-shrink_" + } + }, + "trackingId": "RoaI4CYtRnKitnOezhA1jA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2135, + "length": 16, + "miniProfile": { + "firstName": "Christophe ", + "lastName": "B\u00e9chu", + "dashEntityUrn": "urn:li:fsd_profile:ACoAADo_Zt4B6IGbqR_Up7YIk3lI8tWf5vOG0pE", + "occupation": "Ministre de la Transition \u00e9cologique et de la Coh\u00e9sion des territoires \ud83c\uddeb\ud83c\uddf7 - Maire d'Angers - Secr\u00e9taire G\u00e9n\u00e9ral d'Horizons", + "objectUrn": "urn:li:member:977233630", + "entityUrn": "urn:li:fs_miniProfile:ACoAADo_Zt4B6IGbqR_Up7YIk3lI8tWf5vOG0pE", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1668013978097?e=1681948800&v=beta&t=sWE0nf7GRBGkoZE6wcSVAthe7uR1k15dM0gu_mNfp7I", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1668013978097?e=1681948800&v=beta&t=NKPntIyx67mOKel7S8KVwE9nTEadV_goFUPTLr-jJsg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQFAv-tPB23V4w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "christophe-b\u00e9chu-87a334233", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1646069769291?e=1681948800&v=beta&t=bo9-GqFw-hlDl-oYwrGMpzrU6yFzo5C8LubzfFk3PLA", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1646069769291?e=1681948800&v=beta&t=1h3nXuWJ7untHARCPUYdEDZFmIJSv7blCjb4vhyQA5A", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1646069769291?e=1681948800&v=beta&t=gfoR7mo65A-IhLvEHpcEk10gxrHdLGpT2jdM6u90Iqg", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1646069769291?e=1681948800&v=beta&t=ybMyG2RJEqPptehnmw-1xvkz0N8rUV6AKRa5zuXR6_0", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFTvGMtyn60RQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "sVCIsjKOQBegbo4Gxdfsmg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "La quasi-totalit\u00e9 des d\u00e9partements fran\u00e7ais sont en restriction d'eau apr\u00e8s une ann\u00e9e de d\u00e9ficit et un mois de juillet historiquement sec et chaud (https://bit.ly/3BrhuPj ). Nous avons eu une vague de chaleur puis une autre, sur terre (https://bit.ly/3vsUziG ) et dans la M\u00e9diterran\u00e9e (https://bit.ly/3zdDZEo ). La v\u00e9g\u00e9tation br\u00fble ou d\u00e9p\u00e9rit, les animaux meurent de chaud ou de soif, les b\u00e2timents se fissurent, le niveau des cours d'eau est bas \u00e0 tr\u00e8s bas (https://bit.ly/3JgUF2H), et les r\u00e9coltes diminuent (https://bit.ly/3QckfrT ).\n\nLes Saoudiens viennent d'annoncer que leur pic de production de p\u00e9trole \u00e9tait en vue (https://bloom.bg/3SpBCYa ), apr\u00e8s les russes qui l'ont pass\u00e9 (plus d'un quart du p\u00e9trole mondial \u00e0 eux deux). Le gaz va manquer, et il est fort possible que nous ayons \u00e0 relativement bref d\u00e9lai un probl\u00e8me sur le cuivre (https://bit.ly/3PSTmJF ).\n\nMais en fait tout va bien. Les d\u00e9crets d'attribution des nouveaux ministres - ou des ministres aux comp\u00e9tences remani\u00e9es - du gouvernement Borne 2 viennent de sortir. Ces textes donnent aux ministres leur \"feuille de route\", et, m\u00eame si nous ne sommes pas dans le \"juridiquement contraignant\", ils refl\u00e8tent les priorit\u00e9s. \n\nR\u00e9sultat des courses : ces d\u00e9crets continuent \u00e0 \u00eatre r\u00e9dig\u00e9s comme s'il n'y avait toujours pas de limites plan\u00e9taires. Ces derni\u00e8res n'existent donc pas pour notre gouvernement.\n\nPar exemple, le d\u00e9cret concernant Bruno Le Maire ne mentionne pas les mots climat, p\u00e9trole, ressources, m\u00e9taux, d\u00e9carbonation : https://bit.ly/3vwvLpZ . Ce d\u00e9cret ne mentionne pas plus la r\u00e9silience \u00e0 d\u00e9velopper face au changement climatique. Par contre notre ami doit \"promouvoir la croissance\", ce qui laisse entendre que ca ne d\u00e9pend que de nous (on verra...).\n\nCes mots - climat p\u00e9trole etc - ne figurent pas plus dans les attributions de Pap Ndiaye (Education Nationale ; https://bit.ly/3zo3va3), Cl\u00e9ment Beaune (transports ; https://bit.ly/3zhydlr), Olivier Klein (ville et logement ; https://bit.ly/3vq51Yo), Carole Grandjean (formation professionnelle ; https://bit.ly/3oFTQqz), et j'en passe.\n\nLa promotion de l'usage durable des ressources \u00e9choit \u00e0 Christophe B\u00e9chu (https://bit.ly/3vQJBnx) alors qu'il n'a quasiment pas autorit\u00e9 sur les utilisateurs desdites ressources (les entreprises). Et le mot d\u00e9carbonation n'appara\u00eet pas plus dans sa feuille de route.\n\nDans \"Collapse\", Jared Diamond tente une nomenclature des facteurs qui peuvent amener une soci\u00e9t\u00e9 \u00e0 s'effondrer. L'un d'entre eux est \"une r\u00e9ponse politique ou culturelle inadapt\u00e9e\" \u00e0 des probl\u00e8mes externes ou internes. Il me semble que nous sommes malheureusement en plein dans ce cas de figure." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6959537502068056064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6959537504257462273,urn:li:activity:6959537504257462273,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 313, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6959537504257462273,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6959537504257462273,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6959537504257462273", + "threadId": "activity:6959537504257462273", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6959537504257462273", + "urn": "urn:li:activity:6959537504257462273", + "numComments": 527, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6959537504257462273", + "reactionTypeCounts": [ + { + "count": 10583, + "reactionType": "LIKE" + }, + { + "count": 1239, + "reactionType": "MAYBE" + }, + { + "count": 1210, + "reactionType": "INTEREST" + }, + { + "count": 292, + "reactionType": "PRAISE" + }, + { + "count": 222, + "reactionType": "APPRECIATION" + }, + { + "count": 51, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6959537504257462273", + "numLikes": 13597, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6959537504257462273", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 13611, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6959170566658351104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6959170566658351104", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6959170566658351104)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6959170566658351104)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_il-a-toujours-fait-chaud-en-%C3%A9t%C3%A9-limit-activity-6959170566658351104-R8wG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6959170565861449728", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6959170566658351104", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6959170566658351104,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6959170566658351104,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6959170565861449728", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "QrotFG4YW6TFgejBDmi7yA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6959170566658351104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7757267333243824148", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676368701796?e=1677240000&v=beta&t=xxtOHKoWEM90-FdL_qJKAbMDyKiq6vpwfUVKXtWyvkc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676368701796?e=1677240000&v=beta&t=uoQjB_gFiyXNv-Irhkd953I69q5E2fxenUE5s_XcvgY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676368701796?e=1677240000&v=beta&t=WqyTCqnlUYIsr-mAC7NZhXTOIX36jntpQht9VwTMjIg", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676368701796?e=1677240000&v=beta&t=-LZ7-O0p7E68t_DuTDo6E_jF6T2sV8ccY0R1OUL1GTc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH3BBL0diLW8w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7757267333243824148)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7757267333243824148)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: \"IL A TOUJOURS FAIT CHAUD EN \u00c9T\u00c9 !\" | LIMIT #canicule on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=8OghDAHVUG8" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\u2799 Cette cha\u00eene vit gr\u00e2ce \u00e0 vos dons ! https://linktr.ee/limit.media L'incroyable perc\u00e9e des surfaces br\u00fbl\u00e9es en France atteint des records ! Avec plus de 40000ha de v\u00e9g\u00e9tation br\u00fbl\u00e9s, l'ann\u00e9e 2022 bat des records de pr\u00e9cocit\u00e9 et d'intensit\u00e9 depuis..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "\"IL A TOUJOURS FAIT CHAUD EN \u00c9T\u00c9 !\" | LIMIT #canicule" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6959170565861449728,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 253, + "length": 10, + "miniProfile": { + "firstName": "Vinz", + "lastName": "Kant\u00e9", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABnoaesBFyeDnfMQ7vVH_WdqzzSE1gZnFeI", + "occupation": "Cr\u00e9ateur, Animateur, Prod, conf\u00e9rencier chez #LIMIT #SchoolUp \ud83c\udf0d\ud83d\udc9a", + "objectUrn": "urn:li:member:434661867", + "entityUrn": "urn:li:fs_miniProfile:ACoAABnoaesBFyeDnfMQ7vVH_WdqzzSE1gZnFeI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1643988095695?e=1681948800&v=beta&t=7C2zsu2AnUIGYGJLxdwy6H0Pfz49i4bCG42UTyrDQiU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1643988095695?e=1681948800&v=beta&t=4mbItdC9wOaAB8PKJJb-Yb_-TvLU7cJhmTKvMc1TnoE", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQGwWxvh-yImnw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "vinzkante", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1652368741388?e=1681948800&v=beta&t=oBVj0OP183lIxUjW-ObsX93mvqUUhnlf8CUv9CYdkL8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1652368741388?e=1681948800&v=beta&t=QLthymcqCv14W4AiYsuUqj2QbfpGNDM6Pj43wuQjwBY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1652368741388?e=1681948800&v=beta&t=qpYGcnw-PgEP8UZgyFGsOXkDPZUoHvFO1KR2QFlKBb4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1652368741388?e=1681948800&v=beta&t=_jJyLbpMGXX6ocxEt866mRbwvojncDU-oE19Bdveik8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFVgbwuDHeE9Q/profile-displayphoto-shrink_" + } + }, + "trackingId": "iO8N/CWmQ1uBucXeQHd0nQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Les esprits chagrins lui reprocheront de ne pas faire de propositions et de se contenter de se moquer, mais il faut dire que la tentation est tr\u00e8s forte pour un certain nombre d'absurdit\u00e9s ou de paradoxes \u00e9voqu\u00e9s dans cette vid\u00e9o \"sp\u00e9ciale canicule\" de Vinz Kant\u00e9. \n\nVinz, c'est l'homme \u00e0 la casquette \u00e0 l'envers qui ne fait pas du \"rap climatique\" (ca c'est la sp\u00e9cialit\u00e9 de Baba Brinkman, un must si vous ne l'avez pas d\u00e9j\u00e0 vu : https://lnkd.in/epMe6y82 ), mais de la vulgarisation climatique et \u00e9nerg\u00e9tique comme s'il parlait \u00e0 une classe de coll\u00e9giens, et du coup c'est limpide (et tr\u00e8s bien imag\u00e9). \n\nEvidemment, l'id\u00e9al serait que Vinz soit au ch\u00f4mage (d\u00e9sol\u00e9 :) ) parce que les \"d\u00e9cideurs\" \u00e9viteraient de dire des choses incoh\u00e9rentes ou absurdes, et que le probl\u00e8me soit en bonne voie d'\u00eatre r\u00e9gl\u00e9. Malheureusement l'actualit\u00e9 est l\u00e0 pour nous rappeler que ce n'est pas pour demain matin... \n\nEsp\u00e9rons que cette pause estivale, pendant que nous en avons encore le luxe d'en avoir, soit utile pour prendre de tr\u00e8s tr\u00e8s tr\u00e8s bonnes r\u00e9solutions pour la rentr\u00e9e (et l'occasion de se documenter en profondeur pour toute personne qui jouera un r\u00f4le dans la destin\u00e9e de notre pays)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6959170565861449728,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6959170566658351104,urn:li:activity:6959170566658351104,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6959170566658351104,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6959170566658351104,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6959170566658351104", + "threadId": "activity:6959170566658351104", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6959170566658351104", + "urn": "urn:li:activity:6959170566658351104", + "numComments": 55, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6959170566658351104", + "reactionTypeCounts": [ + { + "count": 1298, + "reactionType": "LIKE" + }, + { + "count": 66, + "reactionType": "PRAISE" + }, + { + "count": 63, + "reactionType": "APPRECIATION" + }, + { + "count": 35, + "reactionType": "MAYBE" + }, + { + "count": 33, + "reactionType": "INTEREST" + }, + { + "count": 20, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6959170566658351104", + "numLikes": 1515, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6959170566658351104", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1524, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6959068765099548672,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6959068765099548672", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6959068765099548672)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6959068765099548672)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_de-eindeloze-wereld-blokker-activity-6959068765099548672-_re3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6959068764243951616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6959068765099548672", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6959068765099548672,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6959068765099548672,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6959068764243951616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "wUt7BSd7olrd5EvMmiXixA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6959068765099548672,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7066080138696678447", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 620, + "fileIdentifyingUrlPathSegment": "800/0/1676358210606?e=1677240000&v=beta&t=rEhqrDJlCfezZszE51iTM2lxPu57gwcxBIDnKHG5SSY", + "expiresAt": 1677240000000, + "height": 620 + }, + { + "width": 620, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676358210606?e=1677240000&v=beta&t=751ON9wUX3l9zfdUxJuC0Ku6kaMNqOhGBsbNWGMXJsE", + "expiresAt": 1677240000000, + "height": 620 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676358210606?e=1677240000&v=beta&t=8OLHxBCP7WktzsumSHaivc0JUxsYUP0PEL2ulAcc3Uo", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676358210606?e=1677240000&v=beta&t=ShIajZo_Z3t4MwGDgcAzdaCNuzcGvzeYRw5emjJrnz8", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFFVkN2AY0aCg/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7066080138696678447)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7066080138696678447)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "blokker.nl \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: De eindeloze wereld - Blokker by blokker.nl", + "actionTarget": "https://www.blokker.nl/de-eindeloze-wereld/3585901.html#cookie-notification-cookie-consent-picker" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "De eindeloze wereld - Blokker" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6959068764243951616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Entre une canicule, une s\u00e9cheresse historique en Europe, une p\u00e9nurie de gaz et un MWh \u00e9lectrique \u00e0 400 euros, si vous \u00eates hollandais(e) il y a au moins une bonne nouvelle : gr\u00e2ce \u00e0 la publication du Monde sans Fin en n\u00e9erlandais, vous comprendrez que tout cela est normal. Avouez que c'est quand m\u00eame un sacr\u00e9 soulagement !\n\nApr\u00e8s la version allemande (https://lnkd.in/eHa2NEnX ) et anglaise (https://lnkd.in/e4zr_Pgh ), en en attendant les 8 autres traductions en cours (italien, portugais, 2 espagnols - catalan et castillan, croate, polonais, vietnamien et cor\u00e9en), l'une des patries de naissance de la Royal Dutch Shell peut b\u00e9n\u00e9ficier \u00e0 son tour du trait de crayon de Christophe Blain.\n\nLa sortie est \u00e9videmment trop r\u00e9cente pour savoir comment vont r\u00e9agir les clients de ce pays, mais en Allemagne on a vu appara\u00eetre les m\u00eames comportements qu'en France, \u00e0 savoir des achats pour offrir. Du reste le premier tirage, certes beaucoup plus modeste qu'en France (5000 exemplaires quand m\u00eame, c'est \u00e0 dire autant que les ventes totales de mon premier essai, qui date d'il y a 20 ans... : https://lnkd.in/eGXHDmU3 ) a \u00e9t\u00e9 \u00e9puis\u00e9 en 2 mois seulement.\n\nJe ne sais pas si nous aurons la chance d'\u00eatre lus par des \"d\u00e9cideurs\", comme cela a \u00e9t\u00e9 le cas en France (ce que je sais par de nombreux t\u00e9moignages directs), et moins encore si cela changera quoi que ce soit \u00e0 leurs arbitrages ensuite (en France ca n'est pas - encore ? - tr\u00e8s probant sur ce plan l\u00e0...), mais en tous cas c'est le but.\n\nJ'allais oublier l'essentiel : la couverture est ton sur ton avec le sable de la plage. Avouez que c'est quand m\u00eame le meilleur argument de vente pour en faire la lecture de l'\u00e9t\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6959068764243951616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6959068765099548672,urn:li:activity:6959068765099548672,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 164, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6959068765099548672,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6959068765099548672,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6959068765099548672", + "threadId": "activity:6959068765099548672", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6959068765099548672", + "urn": "urn:li:activity:6959068765099548672", + "numComments": 201, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6959068765099548672", + "reactionTypeCounts": [ + { + "count": 2749, + "reactionType": "LIKE" + }, + { + "count": 193, + "reactionType": "PRAISE" + }, + { + "count": 91, + "reactionType": "APPRECIATION" + }, + { + "count": 53, + "reactionType": "EMPATHY" + }, + { + "count": 8, + "reactionType": "INTEREST" + }, + { + "count": 8, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6959068765099548672", + "numLikes": 3102, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6959068765099548672", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3114, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wazOSbAUSsOZ4LyXwrgSmQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6958482977953587200,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6958482977953587200", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6958482977953587200)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6958482977953587200)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_juillet-2022-le-mois-de-juillet-le-plus-sec-activity-6958482977953587200-XXCJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6958482977169227776", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6958482977953587200", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6958482977953587200,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6958482977953587200,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6958482977169227776", + "excludedFromSeen": false, + "trackingData": { + "requestId": "12b46595-7055-4c45-91e4-f444ea6ed1ed", + "trackingId": "2Zfq2YXIJ354DqIlS9NBWQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6958482977953587200,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8310397168542597030", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 600, + "fileIdentifyingUrlPathSegment": "800/0/1675518178721?e=1677240000&v=beta&t=XjgfAIDdSc8MOJNQf_dfaBNSIb9T6B74MrKOuOI3voA", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 600, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675518178721?e=1677240000&v=beta&t=m47kP7wxmz1aaj63aKoi2xM4rxDZxP4si_JFuUy8Ox8", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675518178722?e=1677240000&v=beta&t=irbFRgJdzKfBbkoNeLieNj2UV0eWbPsPTwxxpx-KYbU", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675518178722?e=1677240000&v=beta&t=LfDA5cvvlsjO67ZH8YV_f6KDWA-bndIcRO_Cksd9d7s", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE-i9-DeVPhLg/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Cumul de pr\u00e9cipitations en France en juillet 2022. \u00a9 M\u00e9t\u00e9o-France." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8310397168542597030)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8310397168542597030)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "meteofrance.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Juillet 2022 le mois de juillet le plus sec jamais enregistr\u00e9 by meteofrance.com", + "actionTarget": "https://meteofrance.com/actualites-et-dossiers/actualites/climat/juillet-2022-le-mois-de-juillet-le-plus-sec-jamais-enregistre" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Juillet 2022 le mois de juillet le plus sec jamais enregistr\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6958482977169227776,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En juillet il n'a pas seulement fait chaud en France m\u00e9tropolitaine : il a aussi fait tr\u00e8s sec. Exceptionnellement sec m\u00eame, puisque juillet 2022 s'appr\u00eate \u00e0 \u00eatre le mois de juillet le plus sec depuis le d\u00e9but des relev\u00e9s, et le 2\u00e8 mois le plus sec derri\u00e8re mars 1961. \n\nLa s\u00e9cheresse des sols est qualifi\u00e9e d'exceptionnelle par M\u00e9t\u00e9o France (en plus du niveau des nappes qui est bas). Ceci allant avec cela les restrictions aux usages de l'eau se multiplient (https://lnkd.in/gG9eZM8 )\n\nCela est malheureusement raccord avec l'\u00e9volution pr\u00e9vue pour notre pays \u00e0 l'avenir : un d\u00e9ficit de pr\u00e9cipitations estivales, et une s\u00e9cheresse des sols qui va augmenter. V\u00e9g\u00e9tation et cultures vont devenir plus vuln\u00e9rables, et il n'est pas sur que les particuliers puissent toujours r\u00e9pondre au manque d'eau et aux fortes chaleurs en s'\u00e9quipant de piscines individuelles...\n\nCette mauvaise nouvelle suppl\u00e9mentaire n'emp\u00eache cependant pas nos d\u00e9put\u00e9s de voter des subventions au fioul et \u00e0 l'essence sans conditions de revenus (https://lnkd.in/eSZXHR9E ), ou Nice de vouloir augmenter son trafic a\u00e9rien (https://lnkd.in/ek7s7cZ9 )...\n\nPeut-\u00eatre qu'avant de prendre du service comme am\u00e9nageur d'infrastructures ou d\u00e9put\u00e9, il faudrait que les int\u00e9ress\u00e9(e)s fassent obligatoirement un stage de quelques mois dans une caserne de pompiers, ou dans tout autre endroit souffrant fortement du manque d'eau ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6958482977169227776,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6958482977953587200,urn:li:activity:6958482977953587200,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 59, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6958482977953587200,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6958482977953587200,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6958482977953587200", + "threadId": "activity:6958482977953587200", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6958482977953587200", + "urn": "urn:li:activity:6958482977953587200", + "numComments": 120, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6958482977953587200", + "reactionTypeCounts": [ + { + "count": 1695, + "reactionType": "LIKE" + }, + { + "count": 175, + "reactionType": "INTEREST" + }, + { + "count": 135, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "PRAISE" + }, + { + "count": 38, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6958482977953587200", + "numLikes": 2094, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6958482977953587200", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2095, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6957961702734712832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6957961702734712832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6957961702734712832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6957961702734712832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_si-nous-%C3%A9mettons-trop-de-co2-au-titre-de-activity-6957961702734712832-pQtR?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6957961701912629248", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6957961702734712832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6957961702734712832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6957961702734712832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6957961701912629248", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "bqLjW5b2P5NFKYXV/++pKQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6957961702734712832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQG75hn4C6SU5w", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQG75hn4C6SU5w", + "artifacts": [ + { + "width": 1763, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1658907336014?e=1679529600&v=beta&t=eFC9Yyg5vOHRCQtUKf-3F85pp8xSB1ZLBUhXm4oJha0", + "expiresAt": 1679529600000, + "height": 1011 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1658907341208?e=1679529600&v=beta&t=4MoFp_qir2UyJvQVf3v_FX1KmXFUEELhbn450VlFMA8", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1658907341208?e=1679529600&v=beta&t=_YLrPq0vSTocD9TyWqY7nEcD-VCw2VItTjismrFwTsI", + "expiresAt": 1679529600000, + "height": 734 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1658907341208?e=1679529600&v=beta&t=wEjRfjRLmx3Wr9_2Hz5Ez6ZFemnG3UsKnmqMWKtJ67Y", + "expiresAt": 1679529600000, + "height": 275 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1658907341208?e=1679529600&v=beta&t=fJGYjy1BZhmH4TsLQ0iBYfNfvu2uubnahwQM_-9C-jY", + "expiresAt": 1679529600000, + "height": 92 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1658907341208?e=1679529600&v=beta&t=Yaxmr1gGj35FodVchHkMZe0FzWmgCSKTFhchxNiIDP8", + "expiresAt": 1679529600000, + "height": 459 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQG75hn4C6SU5w/feedshare-shrink_" + }, + "displayAspectRatio": 0.5734543391945547 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6957961701912629248,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si nous \u00e9mettons trop de CO2 au titre de notre utilisation de l'\u00e9nergie - c'est \u00e0 dire des machines - dans le monde, une des solutions qui vient de mani\u00e8re \u00e9vidente \u00e0 l'esprit est de d\u00e9carboner l'\u00e9nergie, c'est \u00e0 dire soit d'utiliser une \u00e9nergie fossile qui \u00e9met moins qu'une autre \u00e9nergie fossile (du gaz \u00e0 la place du charbon pour produire de l'\u00e9lectricit\u00e9 par exemple), soit d'utiliser une \u00e9nergie d\u00e9carbon\u00e9e (nucl\u00e9aire ou ENR) \u00e0 la place d'une \u00e9nergie fossile. \n\nNotons qu'utiliser une \u00e9nergie d\u00e9carbon\u00e9e EN PLUS d'une d'\u00e9nergie carbon\u00e9e qui subsiste ne r\u00e9sout pas le probl\u00e8me. C'est bien \"\u00e0 la place\" et pas \"en empilement\" que les \u00e9nergies d\u00e9carbon\u00e9es sont une solution.\n\nPour voir si nous progressons dans la bonne direction, un des indicateurs utiles est de regarder combien de CO2 est \u00e9mis en moyenne dans le monde quand nous utilisons un kWh d'\u00e9nergie dite primaire, c'est \u00e0 dire celle qui est pr\u00e9lev\u00e9e dans l'environnement (voir l'explication sur https://lnkd.in/gDu8smE ).\n\nC'est exactement ce qui est repr\u00e9sent\u00e9 sur le graphique ci-dessous, \u00e0 partir de donn\u00e9es BP STatistical Review (ne cherchez pas le r\u00e9sultat dans le tableur propos\u00e9 par BP ; la \"cuisine\" est de votre serviteur). Ce que l'on voit \u00e0 l'\u00e9vidence est :\n- que cette valeur descendait tr\u00e8s doucement entre 1965 - d\u00e9but de la s\u00e9rie disponible - et la fin du 20\u00e8 si\u00e8cle\n- que le d\u00e9but du 21\u00e8 si\u00e8cle, \u00e0 savoir l'essor de la Chine (50% du charbon mondial \u00e0 elle seule), correspond \u00e0 une d\u00e9gradation de cet indicateur\n- que de 2010 \u00e0 2020 il y a eu une petite am\u00e9lioration (pas tellement plus rapide que celle des ann\u00e9es 1965 \u00e0 1995)\n- et que de 2020 \u00e0 2021 il y a eu une petite d\u00e9gradation (reprise post covid = combustibles fossiles \u00e0 la hausse).\n\nSi on ne comptait que sur cet indicateur pour devenir \"neutres en carbone\" d'ici \u00e0 2050 (donc pas de diminution de l'\u00e9nergie consomm\u00e9e mais juste une d\u00e9carbonation totale de l'\u00e9nergie) il faudrait que cet indicateur passe \u00e0 0 en 28 ans. \n\nRappelons que, via les biens import\u00e9s, nous importons des \u00e9missions d'ailleurs. Du coup la v\u00e9ritable neutralit\u00e9 d'un pays s'obtient quand non seulement les \u00e9missions directes du pays ne sont pas sup\u00e9rieures \u00e0 ses puits, mais aussi quand ses importations viennent de pays qui ob\u00e9issent \u00e0 la m\u00eame r\u00e8gle (sinon il suffit de tout externaliser !).\n\nQuestion : qui pense que nous allons mondialement mettre cet indicateur \u00e0 z\u00e9ro en 28 ans ? Toute personne qui consid\u00e8re que la r\u00e9ponse est \"nous n'y arriverons pas\" doit alors accepter la contrepartie logique : pour arriver \u00e0 des \u00e9missions nulles, il va surtout falloir baisser l'\u00e9nergie, donc les machines en service, donc la production, donc.... le pouvoir d'achat.\n\nEt toute personne qui pense que nous allons y arriver doit en faire la d\u00e9monstration par autre chose qu'une profession de foi. Car l'\u00e9nergie c'est physique, pas juste un d\u00e9bat d'id\u00e9es !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6957961701912629248,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6957961702734712832,urn:li:activity:6957961702734712832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 104, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6957961702734712832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6957961702734712832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6957961702734712832", + "threadId": "activity:6957961702734712832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6957961702734712832", + "urn": "urn:li:activity:6957961702734712832", + "numComments": 197, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6957961702734712832", + "reactionTypeCounts": [ + { + "count": 2224, + "reactionType": "LIKE" + }, + { + "count": 261, + "reactionType": "INTEREST" + }, + { + "count": 145, + "reactionType": "MAYBE" + }, + { + "count": 74, + "reactionType": "PRAISE" + }, + { + "count": 16, + "reactionType": "EMPATHY" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6957961702734712832", + "numLikes": 2736, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6957961702734712832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2736, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6957445497661890560,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6957445497661890560", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6957445497661890560)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6957445497661890560)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_un-tiers-de-lempreinte-carbone-de-lunion-activity-6957445497661890560-A34w?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6957445496168714240", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6957445497661890560", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6957445497661890560,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6957445497661890560,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6957445496168714240", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "PjzxJebdd/gPn7SdOEkK0w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6957445497661890560,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7870289204283167543", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676452201164?e=1677240000&v=beta&t=Fk_lUOxqmacF6ilFXCLPgRkgVxWo1-66IIrCgxupAaI", + "expiresAt": 1677240000000, + "height": 172 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676452201164?e=1677240000&v=beta&t=VtkdxAbaJwCkcLmDCsTmhgZfKfRUa5_fHVnvhtVTKks", + "expiresAt": 1677240000000, + "height": 275 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676452201165?e=1677240000&v=beta&t=n7SeMK1q1kQGl7oH2Ji3d25WcxR6sgbllnCRZCjhsCI", + "expiresAt": 1677240000000, + "height": 34 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676452201165?e=1677240000&v=beta&t=1JkDFZMOsjvoqlY232Lg96xJoUqnjStF8XHtSnP84j0", + "expiresAt": 1677240000000, + "height": 103 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQECh4G-qxugQQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Insee Analyses" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7870289204283167543)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7870289204283167543)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "insee.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Un tiers de l\u2019empreinte carbone de l\u2019Union europ\u00e9enne est d\u00fb \u00e0 ses importations by insee.fr", + "actionTarget": "https://www.insee.fr/fr/statistiques/6474294" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Un tiers de l\u2019empreinte carbone de l\u2019Union europ\u00e9enne est d\u00fb \u00e0 ses importations" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6957445496168714240,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La d\u00e9sindustralisation du mode de vie des fran\u00e7ais(es) n'est qu'un effet de langage. Dans les faits, notre mode de vie est devenu de plus en plus mat\u00e9riel alors m\u00eame que la part des services dans l'emploi a augment\u00e9 : par habitant, nous consommons bien plus de m\u00e8tres carr\u00e9s, voitures, meubles, mat\u00e9riel de cuisine, v\u00eatements, jeux, mat\u00e9riel de bricolage, cosm\u00e9tiques ou plats cuisin\u00e9s qu'il y a quelques d\u00e9cennies. \n\nNous avons tout simplement fait de plus en plus appel \u00e0 des usines situ\u00e9es en dehors du pays. Du coup, les \u00e9missions (et les consommations de mati\u00e8res premi\u00e8res) d\u00e9coulant de notre mode de vie prennent de plus en plus place \u00e0 l'ext\u00e9rieur. \n\nAjouter les \u00e9missions que nous occasionnons directement chez nous (par exemple en utilisant une chaudi\u00e8re \u00e0 gaz) et celles qui ont eu lieu \u00e0 l'\u00e9tranger pour nous permettre d'acheter ou d'utiliser un objet import\u00e9 porte un nom : cela s'appelle l'empreinte carbone.\n\nEn Europe, nous indique l'INSEE, les importations sont \u00e0 l'origine d'un tiers de notre empreinte carbone. C'est bien plus que cela en France (plus de la moiti\u00e9), mais cela est notamment du \u00e0 nos \u00e9missions domestiques plus faibles gr\u00e2ce \u00e0 une production \u00e9lectrique tr\u00e8s faiblement \u00e9mettrice de gaz \u00e0 effet de serre. \n\nPour la m\u00eame raison, la France poss\u00e8de une empreinte carbone par habitant plus basse que la moyenne europ\u00e9enne. Les allemands sont par contre bien au-dessus : l'empreinte carbone personnelle y est de 50% sup\u00e9rieure \u00e0 ce qu'elle est pour la France. \n\nEt, par d\u00e9finition, cela ne peut pas \u00eatre li\u00e9 \u00e0 leurs exportations, puisque les \u00e9missions de production de ces derni\u00e8res ne figurent pas dans l'empreinte carbone, qui ne regarde que ce qui sert \u00e0 la consommation finale int\u00e9rieure. Au demeurant nos voisins du Nord importent plus d'\u00e9missions qu'ils n'en exportent, comme nous.\n\nLorsque la cible de 2 tonnes d'\u00e9missions par personne et par an est \u00e9voqu\u00e9e, comme il s'agit d'une moyenne mondiale, cela signifie que c'est bien pour l'empreinte carbone que cela doit \u00eatre notre objectif, et non pour les \u00e9missions domestiques uniquement. Il faut donc diviser les \u00e9missions li\u00e9es \u00e0 notre mode de vie par 5 d'ici \u00e0 2050. Cela fait 5,6% de baisse par an. Or, en 20 ans (de 1995 \u00e0 2015), cet indicateur n'avait pas boug\u00e9 : https://lnkd.in/e2JVxPkx\n\nDepuis l'entr\u00e9e en vigueur de la convention climat (en 1995) nous avons essentiellement dit qu'il fallait faire quelque chose. Mais \u00e0 peu pr\u00e8s rien fait dans la bonne direction." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6957445496168714240,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6957445497661890560,urn:li:activity:6957445497661890560,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 65, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6957445497661890560,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6957445497661890560,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6957445497661890560", + "threadId": "activity:6957445497661890560", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6957445497661890560", + "urn": "urn:li:activity:6957445497661890560", + "numComments": 100, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6957445497661890560", + "reactionTypeCounts": [ + { + "count": 1744, + "reactionType": "LIKE" + }, + { + "count": 243, + "reactionType": "INTEREST" + }, + { + "count": 226, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6957445497661890560", + "numLikes": 2251, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6957445497661890560", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2252, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6957028208764411905,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6957028208764411905", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6957028208764411905)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6957028208764411905)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carburant-bercy-trouve-un-compromis-avec-activity-6957028208764411905-XKMV?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6957028207736856576", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6957028208764411905", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6957028208764411905,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6957028208764411905,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6957028207736856576", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "tbr41HJ29ZN7xinoDdYyqA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6957028208764411905,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8272277579577056388", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676149992154?e=1677240000&v=beta&t=uG_XI_U-HVLXCyDvTTJL9eQPZc-woaHg6qAvixohGiI", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676149992154?e=1677240000&v=beta&t=8Tq6ncpqvSjLHB8rZ5wqMyBx7xDjfxsvv0RnqKBHldk", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676149992155?e=1677240000&v=beta&t=GDBfHYPwdU3_RWkm2XQQ0oeri_F4hcyIhtiVLZoxwrA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676149992155?e=1677240000&v=beta&t=2Sn2df6PGscy-jCyCp_6dBnq1XqUU6MVTY422Phkst0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGf_r0flmgoZg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8272277579577056388)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8272277579577056388)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carburant : Bercy trouve un compromis avec LR sur une ristourne de 30 centimes \u00e0 la rentr\u00e9e by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/economie-france/budget-fiscalite/carburant-bercy-trouve-un-compromis-avec-lr-sur-une-ristourne-de-30-centimes-a-la-rentree-1778295" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carburant\u00a0: Bercy trouve un compromis avec LR sur une ristourne de 30 centimes \u00e0 la rentr\u00e9e" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6957028207736856576,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pour faire face \u00e0 la hausse du prix des carburants, ce sera donc la mesure qui avantage le plus les plus ais\u00e9s (voir https://lnkd.in/ezw96qjH ) qui a \u00e9t\u00e9 retenue pour faire l'objet d'un compromis avec Les R\u00e9publicains (pourquoi avec eux du reste ?).\n\nC'est la derni\u00e8re \u00e9tape en date d'une tr\u00e8s longue s\u00e9rie de mesures que les pouvoirs publics ont prises en pratique pour favoriser la voiture individuelle, quand bien m\u00eame ils professaient l'inverse dans les discours :\n\n- la \"vignette\", qui \u00e9tait un imp\u00f4t bas\u00e9 sur la d\u00e9tention d'une voiture, et qui augmentait avec la puissance - donc la consommation - du v\u00e9hicule, a \u00e9t\u00e9 supprim\u00e9e en 2000. C'est le pr\u00e9sident de la COP 15 - Fabius, premier ministre \u00e0 l'\u00e9poque - qui s'en est charg\u00e9, alors que c'\u00e9tait l'imp\u00f4t le plus \u00e9colo qui soit : https://lnkd.in/eatmGwGP\n\n- le malus \u00e0 l'achat - tr\u00e8s modeste substitut de cette vignette - n'a jamais \u00e9t\u00e9 vraiment dissuasif pour l'essentiel des v\u00e9hicules, qui \u00e9taient pourtant d\u00e9j\u00e0 trop consommateurs de carburant au regard de ce que l'avenir nous r\u00e9servait\n\n- les consommations normalis\u00e9es des v\u00e9hicules ont toujours \u00e9t\u00e9 tr\u00e8s inf\u00e9rieures \u00e0 la consommation en conditions normales, leurrant ainsi le consommateur et le poussant indirectement \u00e0 acheter des v\u00e9hicules plus gourmands\n\n- le remboursement des indemnit\u00e9s kilom\u00e9triques par le fisc augmente avec la taille de la voiture, ce qui conduit en pratique \u00e0 ce que l'Etat subventionne plus les propri\u00e9taires de gros v\u00e9hicules \n\n- les v\u00e9hicules de fonction ont permis \u00e0 pas mal de cadres d'avoir une voiture (g\u00e9n\u00e9ralement cossue) pour moins cher que s'ils l'achetaient eux-m\u00eames \n\n- sans parler bien sur de la reculade sur la taxe carbone, alors m\u00eame que la hausse li\u00e9e \u00e0 cette derni\u00e8re \u00e9tait bien inf\u00e9rieure \u00e0 ce que nous payons d\u00e9sormais \u00e0 l'ami Poutine...\n\nUne fois de plus cette r\u00e9action dans l'urgence ne participe d'aucun plan r\u00e9fl\u00e9chi \u00e0 l'avance (alors que la baisse de la disponibilit\u00e9 des carburants est un sujet de mieux en mieux document\u00e9). On met une rustine en esp\u00e9rant que cela sera suffisant... mais sans inscrire la mesure prise dans un plan de long terme. \n\nR\u00e9p\u00e9tons le : d'ici \u00e0 2050 la production mondiale de p\u00e9trole devrait \u00eatre en gros divis\u00e9e par 2 (https://lnkd.in/dwPcgve ). L'Union europ\u00e9enne importe tout son or noir. Climat ou pas, la disponibilit\u00e9 en carburants en France devrait donc \u00eatre divis\u00e9e par 2 \u00e0 10 \u00e0 cet horizon de temps. Ca se g\u00e8rera essentiellement avec des ristournes \u00e0 la pompe ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6957028207736856576,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6957028208764411905,urn:li:activity:6957028208764411905,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 196, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6957028208764411905,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6957028208764411905,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6957028208764411905", + "threadId": "activity:6957028208764411905", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6957028208764411905", + "urn": "urn:li:activity:6957028208764411905", + "numComments": 481, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6957028208764411905", + "reactionTypeCounts": [ + { + "count": 3501, + "reactionType": "LIKE" + }, + { + "count": 375, + "reactionType": "INTEREST" + }, + { + "count": 347, + "reactionType": "MAYBE" + }, + { + "count": 133, + "reactionType": "PRAISE" + }, + { + "count": 55, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6957028208764411905", + "numLikes": 4427, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6957028208764411905", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4443, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 Edited \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6956708534881247232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6956708534881247232", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6956708534881247232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6956708534881247232)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nappes-deau-souterraine-au-1er-juillet-2022-activity-6956708534881247232-byCH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6956708534147239936", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6956708534881247232", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6956708534881247232,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6956708534881247232,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6956708534147239936", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "2qcabdmrD7SIEPkKWifrBQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6956708534881247232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9069481330186767399", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676038960868?e=1677240000&v=beta&t=6GxPvJBsp6Ko3JKkBS1cisrTaVdnU9bV_GncopUfVIk", + "expiresAt": 1677240000000, + "height": 565 + }, + { + "width": 1132, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676038960868?e=1677240000&v=beta&t=1Q4XJsrQsAzrkSLn2bagnKDoju-abkXJILghryZBJvw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676038960868?e=1677240000&v=beta&t=WRgImIZOaMt5obTT9o3GieNFhglHGebyOik2IZPBbeo", + "expiresAt": 1677240000000, + "height": 113 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676038960869?e=1677240000&v=beta&t=PtKtpmedmos5BeTV-ErrzXlhDGcwAe7WujYLswqHJLo", + "expiresAt": 1677240000000, + "height": 339 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH6VimBoQ_yxQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.70625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9069481330186767399)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9069481330186767399)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "brgm.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nappes d'eau souterraine au 1er juillet 2022 | BRGM by brgm.fr", + "actionTarget": "https://www.brgm.fr/fr/actualite/communique-presse/nappes-eau-souterraine-au-1er-juillet-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nappes d'eau souterraine au 1er juillet 2022 | BRGM" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6956708534147239936,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tous les mois, le bureau de recherches g\u00e9ologiques et mini\u00e8res (BRGM) publie un \u00e9tat des nappes phr\u00e9atiques. La carte ci-dessous indique si, par rapport \u00e0 la normale du mois concern\u00e9, la nappe est plus basse ou plus haute, et si elle se remplit ou se vide. \n\nOn voit imm\u00e9diatement que seuls quatre endroits en France avaient, au 1er juillet (donc avant la vague de chaleur actuelle, qui n'est toujours pas termin\u00e9e dans le sud) un niveau normal (vert). \n\nC'est \u00e9videmment pour une large part une cons\u00e9quence du d\u00e9ficit de pr\u00e9cipitations qui a eu lieu au printemps. Si on y rajoute des conditions plus chaudes que la normale ces derniers temps, une autre cons\u00e9quence est que la moiti\u00e9 du territoire europ\u00e9en est en d\u00e9ficit d'humidit\u00e9, et 11% en condition de stress pour la v\u00e9g\u00e9tation : https://lnkd.in/eewXUd-y \n\nLe sud de l'Allemagne, le sud de la France, l'Espagne et l'Italie sont particuli\u00e8rement touch\u00e9s. Cela a pouss\u00e9 le Joint Research Center de la Commission europ\u00e9enne a publier un rapport sur la s\u00e9cheresse qui frappe le continent : https://lnkd.in/eF9cuWFM \n\nLe JRC explique que :\n- le d\u00e9ficit va impacter la production \u00e9lectrique (hydro\u00e9lectricit\u00e9, refroidissement des centrales thermiques plus limit\u00e9 \u00e0 cause des normes sur les temp\u00e9ratures de rejet)\n- il va aussi impacter le rendement des cultures\n- enfin la fourniture d'eau pourrait \u00eatre compromise dans les mois \u00e0 venir (car l'\u00e9t\u00e9 n'est pas termin\u00e9...)\n\nLes cours d'eau \u00e0 un niveau tr\u00e8s bas sont aussi une mauvaise nouvelle pour les \u00e9cosyst\u00e8mes aquatiques, voire pour ceux des estuaires (car s'il n'y a pas assez d'eau douce qui arrive l'eau sal\u00e9e remonte et ca n'est pas toujours du gout des esp\u00e8ces concern\u00e9es).\n\nRappelons que l'eau c'est la vie. L'absence d'eau se pallie transitoirement avec du p\u00e9trole, qui permet d'importer de la nourriture (mais pas des promenades en for\u00eat), mais ce ne peut \u00eatre que transitoire. Et comme pour l'\u00e9nergie, ce n'est pas quand la crise est l\u00e0 que nous pouvons correctement g\u00e9rer la situation. Il est plus que temps d'anticiper, c'est \u00e0 dire de regarder quelques d\u00e9cennies devant, et de s'organiser au mieux en cons\u00e9quence." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6956708534147239936,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6956708534881247232,urn:li:activity:6956708534881247232,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 68, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6956708534881247232,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6956708534881247232,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6956708534881247232", + "threadId": "activity:6956708534881247232", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6956708534881247232", + "urn": "urn:li:activity:6956708534881247232", + "numComments": 105, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6956708534881247232", + "reactionTypeCounts": [ + { + "count": 1746, + "reactionType": "LIKE" + }, + { + "count": 329, + "reactionType": "INTEREST" + }, + { + "count": 251, + "reactionType": "MAYBE" + }, + { + "count": 28, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6956708534881247232", + "numLikes": 2374, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6956708534881247232", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2374, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6956279760729600000,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6956279760729600000", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6956279760729600000)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6956279760729600000)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_aurons-nous-un-jour-une-%C3%A9lectricit%C3%A9-100-activity-6956279760729600000-E0JS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6956279760020774913", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6956279760729600000", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6956279760729600000,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6956279760729600000,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6956279760020774913", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "0BkiRcki6GmIIMeLhHiEHQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6956279760729600000,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEz0B3UtuQFdQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEz0B3UtuQFdQ", + "artifacts": [ + { + "width": 1961, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1658506333600?e=1679529600&v=beta&t=MA-Hit4d20wIhCqwGqe9ZVHss6zMUbJCZSAEz9_UVtk", + "expiresAt": 1679529600000, + "height": 1090 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1658506335631?e=1679529600&v=beta&t=ncY8T-n1_96CwdOpkHmFUeR21pMSEMMXT3O8B27ALbY", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1658506335631?e=1679529600&v=beta&t=GCmir7f4ek2s84uFn0Wf3jlbPPFFPJqhrnX0l64ewDM", + "expiresAt": 1679529600000, + "height": 711 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1658506335631?e=1679529600&v=beta&t=jkhZjbckZHRxpO-8eAKnlJc0DMTznZGkjOB1jpjl188", + "expiresAt": 1679529600000, + "height": 267 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1658506335631?e=1679529600&v=beta&t=QRaRYNSKXNYKXmRrC1wutdpQnRLkEwIruvH60X9caTE", + "expiresAt": 1679529600000, + "height": 89 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1658506335631?e=1679529600&v=beta&t=4VAve4kVmFSKi6831FNlqoNnOykOm3CKKkRNz7odyUQ", + "expiresAt": 1679529600000, + "height": 445 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEz0B3UtuQFdQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.5558388577256502 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, bar chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6956279760020774913,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Aurons nous un jour une \u00e9lectricit\u00e9 100% d\u00e9carbon\u00e9e partout ? En 2021, 11 pays \u00e9taient parvenus \u00e0 obtenir 80% ou plus de leurs \u00e9lectrons avec des sources bas carbone, et seuls 2 sont \u00e0 100% : l'Islande, c'est-\u00e0-dire 350.000 habitants situ\u00e9s sur 100.000 km2 (un cinqui\u00e8me de la France) de montagnes et de sources g\u00e9othermales, et la Norv\u00e8ge, c'est \u00e0 dire 5,4 millions d'habitants, situ\u00e9s sur quasiment 400.000 km2 avec aussi \u00e9norm\u00e9ment de montagnes.\n\nJuste derri\u00e8re viennent des pays ayant certes beaucoup de montagnes, mais qui ont aussi eu recours au nucl\u00e9aire (Su\u00e8de, Suisse, France, Finlande, Canada). Notons que certains de ces pays arrivent aussi dans le peloton de t\u00eate de la consommation d'\u00e9lectricit\u00e9 par habitant : la consommation \u00e9lectrique par habitant d\u00e9passe par exemple 50.000 kWh par an en Islande (et 29.000 en Norv\u00e8ge, et 16.000 en Su\u00e8de), contre 8.000 en France. \n\nPlus largement, les pays \u00e0 forte contribution hydro\u00e9lectrique sont des pays disposant de beaucoup de montagnes (par habitant) et de grands fleuves. Si l'on est belge ou hollandais, ce sera difficile de compter dessus...\n\nCertains pays tr\u00e8s vent\u00e9s peuvent aussi compter sur une forte contribution de l'\u00e9olien (Danemark, Portugal, Irlande par exemple) mais il faut alors un compl\u00e9ment pilotable qui est soit chez soi, soit chez les voisins (cas notamment du Danemark).\n\nAlors que nucl\u00e9aire, hydro\u00e9lectricit\u00e9 ou, dans le cas du Danemark, l'\u00e9olien peuvent atteindre ou d\u00e9passer la moiti\u00e9 de la production nationale, on note que par contre il n'y a pas de pays o\u00f9 le solaire fournisse une contribution majeure. C'est au Chili et en Australie (non repr\u00e9sent\u00e9e sur le graphique car la part \"non fossile\" n'est que de 29%) qu'il \"culmine\" \u00e0 12% de la production \u00e9lectrique nationale (l'Allemagne est \u00e0 9%). \n\nOn voit donc un poids important du relief et de la d\u00e9mographie dans ce graphique. S'en abstraire suppose une grande disponibilit\u00e9 en m\u00e9taux dans les pays plats et dens\u00e9ment peupl\u00e9s, et c'est toute la question de savoir \u00e0 quoi on peut esp\u00e9rer arriver en pareil cas.\n\nGraphique r\u00e9alis\u00e9 avec les donn\u00e9es BP Statistical Review." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6956279760020774913,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6956279760729600000,urn:li:activity:6956279760729600000,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 65, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6956279760729600000,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6956279760729600000,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6956279760729600000", + "threadId": "activity:6956279760729600000", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6956279760729600000", + "urn": "urn:li:activity:6956279760729600000", + "numComments": 131, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6956279760729600000", + "reactionTypeCounts": [ + { + "count": 1598, + "reactionType": "LIKE" + }, + { + "count": 339, + "reactionType": "INTEREST" + }, + { + "count": 244, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6956279760729600000", + "numLikes": 2202, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6956279760729600000", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2202, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6955792655364587520,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6955792655364587520", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6955792655364587520)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6955792655364587520)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carburants-un-triple-renoncement-activity-6955792655364587520-C5pF?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6955792654248902656", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6955792655364587520", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6955792655364587520,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6955792655364587520,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6955792654248902656", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "7x0lieRhorOfF0YxUbwePA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6955792655364587520,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7759339189543601529", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676556442658?e=1677240000&v=beta&t=vxhd6_M9XMvxkTxzKtkNCtrUGoJP0hqerlT0bOnwdGc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676556442658?e=1677240000&v=beta&t=pEUKPDIidQMjwlyu2wtuL5OUAp49232F-f_EJRwURu4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676556442658?e=1677240000&v=beta&t=mwFQkMQ6TSLI7C3kAQPHfkRqIFwLwFBBG7aaBlsQGV8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676556442659?e=1677240000&v=beta&t=t5d_Ut1fz03ooTLIyZAGlxWoKYSLNWoyeJZSNGToXOs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHk_0nptDRh9A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7759339189543601529)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7759339189543601529)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carburants : un triple renoncement by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/carburants-un-triple-renoncement-1777760" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carburants\u00a0: un triple renoncement" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6955792654248902656,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 39, + "length": 15, + "miniProfile": { + "firstName": "Lucie", + "lastName": "Robequain", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABHLBQ4BYlsgJFeJL7kqmTzhUPo0g2Jn2EU", + "occupation": "Editor-in-chief Les Echos France / International / Investigation", + "objectUrn": "urn:li:member:298517774", + "entityUrn": "urn:li:fs_miniProfile:ACoAABHLBQ4BYlsgJFeJL7kqmTzhUPo0g2Jn2EU", + "publicIdentifier": "lucie-robequain-412b8183", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516921448775?e=1681948800&v=beta&t=MnxyszVwZKYiyb-lIKi3T-CwPKjkzdKGlQuIAuhIqPA", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516921448775?e=1681948800&v=beta&t=TPr77frN9R98JKCV7aVTfLpwlCyvx_Kb04gKjpCrvmU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516921448775?e=1681948800&v=beta&t=uZJjqcQzzBv9NQeZh_HrJbm4SpOej22iyVgWqXWtVVw", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516921448775?e=1681948800&v=beta&t=SWmEpk3ii50t65av9lMu3Y73XLhuJ0p1wuFpn8mSvoc", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQHmzMBUxtvdnA/profile-displayphoto-shrink_" + } + }, + "trackingId": "jNpQiXv2RqWMsw4Yfc8/Ag==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans un \u00e9ditorial paru dans Les Echos, Lucie Robequain critique \u00e0 bon droit le dispositif que le gouvernement entend prolonger sur le prix des carburants routiers.\n\nPremi\u00e8re faiblesse de la ristourne pour tous : elle profite \u00e0 des gens qui n'ont pas \u00e0 choisir entre payer l'essence pour les trajets obligatoires et manger en fin de mois.\n\nCela concerne typiquement les d\u00e9placements de loisirs (un tiers de la mobilit\u00e9 en voiture), et la mobilit\u00e9 motoris\u00e9e des classes moyennes et sup\u00e9rieures (car eux peuvent arbitrer d'autres d\u00e9penses qui ne rel\u00e8vent pas du n\u00e9cessaire), soit au moins une grosse moiti\u00e9 du kilom\u00e9trage en voiture dans notre pays.\n\nAu motif d'aider ceux qui vraiment devraient se priver de l'essentiel pour utiliser leur v\u00e9hicule pour aller travailler sans aucune option pour faire diff\u00e9remment \u00e0 court terme, on supprime pour tous les autres un signal qui dit clairement que demain nous aurons moins de p\u00e9trole.\n\nPlus largement, cette ristourne ne s'accompagne d'aucun discours sur la n\u00e9cessaire sobri\u00e9t\u00e9 \u00e0 venir sur les carburants routiers. Rien sur la baisse inexorable de la quantit\u00e9 de p\u00e9trole que nous allons avoir \u00e0 disposition, pour des raisons g\u00e9ologiques (https://bit.ly/3PK99tI ) ou pour des raisons de \"neutralit\u00e9 carbone\". S'il y a un moment o\u00f9 il faut en parler, c'est bien quand le carburant d\u00e9passe 2 euros le litre et que la temp\u00e9rature d\u00e9passe 40\u00b0C !\n\nTroisi\u00e8me faiblesse : le trou dans les finances publiques augmente alors que les taux d'int\u00e9r\u00eat remontent. A un moment o\u00f9 \u00e0 un autre la population paiera d'une autre mani\u00e8re le cadeau fait \u00e0 court terme. Mais bon, ce probl\u00e8me n'est que d'argent, \u00e0 la diff\u00e9rence du climat et des transports qui sont des probl\u00e8mes \"physiques\".\n\nIl eut \u00e9t\u00e9 bien plus pertinent de faire \u00e0 court terme une aide cibl\u00e9e sous condition de ressources, et de penser en m\u00eame temps (expression brevet\u00e9e) aux moyen d'inciter fortement - voire d'obliger - \u00e0 s'organiser autrement pour l'avenir (covoiturage du quotidien, multimodalit\u00e9 - par exemple covoiturage +autocar, \u00e9ventuellement v\u00e9hicule \u00e9lectrique, etc). C'est peut-\u00eatre plus compliqu\u00e9 \u00e0 mettre en place, mais j'esp\u00e8re que notre gouvernement ne s'imagine pas une seconde que l'avenir va \u00eatre simple.\n\nEnfin cet \u00e9ditorial ne mentionne pas un \u00e9l\u00e9ment suppl\u00e9mentaire : subventionner les carburants c'est subventionner nos importations, donc \u00e0 la fois financer l'effort de guerre de Poutine (dont on ne parle plus de boycotter le p\u00e9trole !) et accro\u00eetre le d\u00e9ficit de la balance commerciale. \n\nFace \u00e0 un d\u00e9ficit inexorable, une aide ne peut qu'\u00eatre transitoire, le temps de s'organiser autrement. O\u00f9, dans la communication gouvernementale, est l'annonce d'une organisation diff\u00e9rente qu'il va imp\u00e9rativement falloir mettre en place ? Incidemment les R\u00e9publicains ne semblent pas avoir les yeux plus en face des trous...\n\nLorsque le gaz viendra \u00e0 manquer cet hiver ou l'hiver d'apr\u00e8s, le gouvernement actuel sera encore en place. Il serait bon qu'il y pense un peu \u00e0 l'avance." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6955792654248902656,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6955792655364587520,urn:li:activity:6955792655364587520,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 76, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6955792655364587520,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6955792655364587520,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6955792655364587520", + "threadId": "activity:6955792655364587520", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6955792655364587520", + "urn": "urn:li:activity:6955792655364587520", + "numComments": 162, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6955792655364587520", + "reactionTypeCounts": [ + { + "count": 1506, + "reactionType": "LIKE" + }, + { + "count": 129, + "reactionType": "PRAISE" + }, + { + "count": 120, + "reactionType": "MAYBE" + }, + { + "count": 56, + "reactionType": "INTEREST" + }, + { + "count": 28, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6955792655364587520", + "numLikes": 1846, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6955792655364587520", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1846, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6955418532763287552,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6955418532763287552", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6955418532763287552)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6955418532763287552)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_o%C3%B9-se-jouent-les-prochaines-canicules-et-activity-6955418532763287552-1Ihh?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6955418531500826624", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6955418532763287552", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6955418532763287552,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6955418532763287552,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6955418531500826624", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "Lrj+597bniHfaxqIaaaUOQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6955418532763287552,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQFDmSaPMEcVEw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQFDmSaPMEcVEw", + "artifacts": [ + { + "width": 1416, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1658300999644?e=1679529600&v=beta&t=4wdcKImmfwuZ3ubrlvdAusGzVcDBqf3Uqr6hxhGsV7Q", + "expiresAt": 1679529600000, + "height": 962 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1658301002058?e=1679529600&v=beta&t=TeP8KS_0wztE8DmkU50rCISK-FWKa6PDP9l_7Ub-4J0", + "expiresAt": 1679529600000, + "height": 14 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1658301002058?e=1679529600&v=beta&t=JQsh6AX7sopRasdVK5leVw9h94NksPoMX7GwtNcvByc", + "expiresAt": 1679529600000, + "height": 870 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1658301002058?e=1679529600&v=beta&t=2sOfI1oEusNDfTm_N1wJxL31ad8Rljtlxg_RtzhyIGs", + "expiresAt": 1679529600000, + "height": 326 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1658301002058?e=1679529600&v=beta&t=-9o7B7n9uSvc9XZrNjbofIIhlFOyawr3sE3rD17LQ9k", + "expiresAt": 1679529600000, + "height": 109 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1658301002058?e=1679529600&v=beta&t=vAa6K87bZaz_AKU0D8L2xpPTyPS8yB0rswXrmobTahE", + "expiresAt": 1679529600000, + "height": 544 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQFDmSaPMEcVEw/feedshare-shrink_" + }, + "displayAspectRatio": 0.6793785310734464 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, pie chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6955418531500826624,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "O\u00f9 se jouent les prochaines canicules et les prochains feux de for\u00eat ? Un peu chez nous certes, puisque nous contribuons aux \u00e9missions plan\u00e9taires comme tout le monde, mais beaucoup \"ailleurs\". \n\nSur terre, les \u00e9missions de CO2 proviennent d\u00e9sormais avant tout du charbon (voir graphique en commentaire), lequel est \u00e0 l'origine d'un quart des \u00e9missions mondiales de gaz \u00e0 effet de serre. Et le charbon est un ph\u00e9nom\u00e8ne \u00e0 80% asiatique - et en particulier chinois, comme le montre ce camembert qui donne la r\u00e9partition de la consommation mondiale de charbon. \n\nEt malheureusement pour nous la consommation de charbon en Asie ne diminue pas : depuis la canicule historique de 2003 elle a doubl\u00e9 (voir autre graphique en commentaire), alors que dans le m\u00eame temps celle de l'Occident a fortement baiss\u00e9. \n\nCe charbon l\u00e0 est largement en dehors de la sph\u00e8re d'influence des occidentaux : les pays qui en utilisent sont essentiellement autosuffisants en ce qui concerne la technologie et le financement (c'est donc facile pour les banques occidentales de \"sortir du charbon\" : c'est une \u00e9nergie qui ne nous concerne que tr\u00e8s peu).\n\nLa seule chose que nous pourrions faire serait de refuser d'acheter tout ce qui vient des exportateurs utilisant du charbon, mais r\u00e9cemment nous avons tout l'inverse : \u00e0 la faveur du covid, les exportations chinoises vers l'Europe ont fait un grand bond en avant...\n\nComment se passer rapidement de charbon ? Ce dernier \u00e9tant utilis\u00e9 aux 2/3 dans la production \u00e9lectrique, la r\u00e9ponse s'appelle sobri\u00e9t\u00e9 (moins utiliser d'\u00e9lectricit\u00e9 et donc moins fabriquer de choses), nucl\u00e9aire et renouvelables. Les deux derni\u00e8res marges de manoeuvre n'y suffiront pas pour une baisse rapide des \u00e9missions : c'est d'abord moins acheter qui doit \u00eatre notre objectif. On verra combien de gens s'en souviendront quand viendra la discussion au parlement sur la loi sur le pouvoir d'achat..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6955418531500826624,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6955418532763287552,urn:li:activity:6955418532763287552,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 175, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6955418532763287552,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6955418532763287552,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6955418532763287552", + "threadId": "activity:6955418532763287552", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6955418532763287552", + "urn": "urn:li:activity:6955418532763287552", + "numComments": 293, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6955418532763287552", + "reactionTypeCounts": [ + { + "count": 3598, + "reactionType": "LIKE" + }, + { + "count": 561, + "reactionType": "INTEREST" + }, + { + "count": 342, + "reactionType": "MAYBE" + }, + { + "count": 50, + "reactionType": "PRAISE" + }, + { + "count": 39, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6955418532763287552", + "numLikes": 4598, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6955418532763287552", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4598, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6954820798712840192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6954820798712840192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6954820798712840192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6954820798712840192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-salon-a%C3%A9ronautique-de-farnborough-f%C3%AAte-activity-6954820798712840192-enSX?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6954820797899145216", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6954820798712840192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6954820798712840192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6954820798712840192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6954820797899145216", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "WNBxTU0kuOdqY2uBu7N1zA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6954820798712840192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7571213369503687902", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676106460971?e=1677240000&v=beta&t=NdmE5kdTyjrovT8AjjlJm5Z3TbtT5hWf2rbiNsGoeNY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676106460971?e=1677240000&v=beta&t=iEMRNXMgcUpKgAspDNL6UC6vWmuv2Z5T9atO28cvOAM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676106460971?e=1677240000&v=beta&t=TBstej7mFoyNYVW9gF1jqJzSbcSCX0NGMMbVij6wcM8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676106460971?e=1677240000&v=beta&t=o7UPYavjLou8vC6-JTwK570YAyT-34E56nSR2Ld0c_k", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEWbT3ijyfqdw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7571213369503687902)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7571213369503687902)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Salon a\u00e9ronautique de Farnborough f\u00eate le retour des passagers a\u00e9riens by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/air-defense/le-salon-aeronautique-de-farnborough-fete-le-retour-des-passagers-aeriens-1777050" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Salon a\u00e9ronautique de Farnborough f\u00eate le retour des passagers a\u00e9riens" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6954820797899145216,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:164716", + "entityUrn": "urn:li:fs_miniCompany:164716", + "name": "Les Echos", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1614596361150?e=1684972800&v=beta&t=1mOk7v0jlnCgcIswWyYHmIJewK7-gk_r177j-Dwp4tM", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1614596361150?e=1684972800&v=beta&t=rpDGHIGtA_4yGaFUdh9VuXSkC5Jf7cl29bRNg1rsCiA", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1614596361150?e=1684972800&v=beta&t=SZO0sBQXbxYynz8dd9fVa-Jtq8ZS209SRpqIEXlQ3Os", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGU2tYAtnGruQ/company-logo_" + } + }, + "universalName": "les-echos", + "dashCompanyUrn": "urn:li:fsd_company:164716", + "trackingId": "1J78dauNSHmWyU6wSW0Oyg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Les Echos choisissent un jour situ\u00e9 en plein milieu d'une canicule s\u00e9v\u00e8re touchant la France - il va faire 40\u00b0C en Bretagne nord aujourd'hui dit Meteo France - pour publier un article c\u00e9l\u00e9brant la forte reprise du trafic a\u00e9rien apr\u00e8s le covid.\n\nRappelons qu'avant covid l'aviation de ligne consommait un petit 10% du p\u00e9trole mondial, essentiellement pour se promener. 75% du trafic concerne les loisirs (donc pas vraiment des motifs imp\u00e9rieux), et incidemment m\u00eame dans le monde professionnel on observe que les d\u00e9placements a\u00e9riens baissent fortement dans les entreprises qui suppriment les miles individuels (ce que peu de patrons osent faire, alors que si le billet est pay\u00e9 par l'entreprise les miles appartiennent \u00e0 l'entreprise...), preuve que le motif d'un vol professionnel n'est pas toujours imp\u00e9rieux non plus !\n\nSi l'on parle CO2, toute personne prenant un long courrier dans l'ann\u00e9e augmente de plusieurs dizaines de % au moins son empreinte carbone individuelle.\n\nL'article ne parle cependant ni de CO2, ni de climat. Il mentionne n\u00e9anmoins des \u00e9l\u00e9ments qui pourraient venir \"assombrir l'horizon\". Il ne s'agit \u00e9videmment pas d'un mauvais jeu de mots avec l'incendie historique en Gironde qui envoie de la fum\u00e9e \u00e0 des dizaines de km des foyers (https://lnkd.in/eyWfME7R), mais de la hausse du prix de l'\u00e9nergie (suppos\u00e9e quand m\u00eame toujours disponible) ou de la fermeture possible des fronti\u00e8res \u00e0 cause du covid. \n\nLa provocation n'est probablement pas d\u00e9lib\u00e9r\u00e9e. Mais quand m\u00eame...." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6954820797899145216,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6954820798712840192,urn:li:activity:6954820798712840192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 151, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6954820798712840192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6954820798712840192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6954820798712840192", + "threadId": "activity:6954820798712840192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6954820798712840192", + "urn": "urn:li:activity:6954820798712840192", + "numComments": 382, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6954820798712840192", + "reactionTypeCounts": [ + { + "count": 2907, + "reactionType": "LIKE" + }, + { + "count": 289, + "reactionType": "MAYBE" + }, + { + "count": 232, + "reactionType": "INTEREST" + }, + { + "count": 74, + "reactionType": "APPRECIATION" + }, + { + "count": 67, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6954820798712840192", + "numLikes": 3579, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6954820798712840192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3594, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6954443696226361344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6954443696226361344", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6954443696226361344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6954443696226361344)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_leurope-sappr%C3%AAte-%C3%A0-conna%C3%AEtre-des-temp%C3%A9ratures-activity-6954443696226361344-gzPp?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6954443695463014400", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6954443696226361344", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6954443696226361344,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6954443696226361344,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6954443695463014400", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "GGWc8YLk0eMSJvcJG1rr6A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6954443696226361344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGyykqOLbB_wg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGyykqOLbB_wg", + "artifacts": [ + { + "width": 1456, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1658068581779?e=1679529600&v=beta&t=WIRcatU5x54YX8MZsG1kw20yUy292k5l7HqvTWsTo7M", + "expiresAt": 1679529600000, + "height": 1320 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1658068583837?e=1679529600&v=beta&t=Jqj1Ymjb1WmL-K6UyOnp8KTt2XBtqn-t2P6j_JbMOx4", + "expiresAt": 1679529600000, + "height": 18 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1658068583837?e=1679529600&v=beta&t=y3OKAx6uJ70hl6S9Oj9lmMuGhkCcU_A61etr95TO-Lk", + "expiresAt": 1679529600000, + "height": 1160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1658068583837?e=1679529600&v=beta&t=QQscR-n7p-MyfLHLYsghpQoBef6YlRAPUetKSRz8H00", + "expiresAt": 1679529600000, + "height": 435 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1658068583837?e=1679529600&v=beta&t=_WcM7GzXxNv6iFJw2kqLJHxyK1I-I6e4GjDrKR4WyR0", + "expiresAt": 1679529600000, + "height": 145 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1658068583837?e=1679529600&v=beta&t=7UTgdMrseLKbuq3I4XoL9qLhjoJYpOnd6fI6Z9Lm2rU", + "expiresAt": 1679529600000, + "height": 725 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGyykqOLbB_wg/feedshare-shrink_" + }, + "displayAspectRatio": 0.9065934065934066 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6954443695463014400,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Europe s'appr\u00eate \u00e0 conna\u00eetre des temp\u00e9ratures particuli\u00e8rement \u00e9lev\u00e9es demain et apr\u00e8s-demain. La r\u00e9partition des temp\u00e9ratures est inhabituelle : M\u00e9t\u00e9o France pr\u00e9voit 37\u00b0C \u00e0 Brest Lundi mais 31 \u00e0 Nice, et Mardi il fera peut-\u00eatre 40 \u00e0 Londres (le record depuis le d\u00e9but des mesures est actuellement un peu en dessous de 39). La Grande Bretagne vient d'\u00e9mettre sa premi\u00e8re alerte rouge canicule de son histoire, comme l'indique cet article de Time : https://bit.ly/3RHSpoM/ (qui comporte par ailleurs une vid\u00e9o illustrant la canicule avec les images classiques de personnes cherchant \u00e0 se mettre au frais, et qui sont bien trop \"gentillettes\" au regard de ce qui suit).\n\nCes canicules sont certes potentiellement un danger pour les humains. Mais en pareil cas ce sont les autres \u00eatres vivants qui souffrent le plus, et de loin. Eux n'ont pas la possibilit\u00e9 de se mettre au frais (surtout s'ils sont fix\u00e9s par le pied, comme les plantes ou les mollusques de l'estran), de boire plus que d'habitude (surtout s'il fait sec), etc.\n\nUne s\u00e9rie de chercheurs de 'Universit\u00e9 de British Columbia (au Canada) a publi\u00e9 il n'y a pas tr\u00e8s longtemps un bilan de l'impact sur les esp\u00e8ces vivantes du d\u00f4me de chaleur qui a frapp\u00e9 la Colombie Britannique il y a 1 an. Ce ph\u00e9nom\u00e8ne \"tr\u00e8s extr\u00eame\" - les records ont \u00e9t\u00e9 battus de 5\u00b0C environ - a tu\u00e9 des milliards d'\u00eatres vivants, c'est \u00e0 dire un million de fois plus que le nombre de personnes qui y ont laiss\u00e9 la vie : https://bit.ly/3clEaFT\n\nDans l'ensemble les organismes marins de l'estran - ceux qui vivent dans la zone qui couvre et d\u00e9couvre \u00e0 chaque mar\u00e9e - ont pay\u00e9 un tr\u00e8s lourd tribu : \u00e0 mar\u00e9e basse la temp\u00e9rature du rocher a d\u00e9pass\u00e9 les 40\u00b0C, et parfois les 50\u00b0C, tuant massivement les mollusques et crustac\u00e9s expos\u00e9s (\u00e0 plus de 70% pour mes moules par exemple). Les for\u00eats aussi ont souffert, avec pas loin de 100.000 hectares partis en fum\u00e9e. \n\nCela n'est certes pas aussi dramatique que les feux g\u00e9ants qui ont eu lieu en Australie en 2020, et qui ont d\u00e9truit plus de 10 millions d'hectares (et ont aussi supprim\u00e9 des milliards d'animaux), mais ca se voit quand m\u00eame. Les sols nus, soumis \u00e0 la pluie - ordinaire - qui a suivi \u00e0 l'automne ont provoqu\u00e9 des glissements de terrain et des dommages aux infrastructures.\n\nLa reconstitution \u00e0 l'identique des \u00e9cosyst\u00e8mes concern\u00e9s prendra des d\u00e9cennies... si le climat ne devient pas plus hostile, auquel cas la fr\u00e9quence de ce genre de ph\u00e9nom\u00e8ne deviendra trop \u00e9lev\u00e9e pour que les \u00e9cosyst\u00e8mes puissent se reconstituer. Les arbres seront remplac\u00e9s par des broussailles et les fonds marins qui couvrent et d\u00e9couvrent seront moins peupl\u00e9s... voire pas du tout. \n\nCette vague de chaleur a aussi eu des effets sur l'agriculture et l'\u00e9levage. Environ 600.000 animaux en sont morts, et les rendements ont baiss\u00e9 - parfois fortement - pour un certain nombre de cultures.\n\nLa mauvaise nouvelle est donc que de nombreuses cons\u00e9quences d'une vague de chaleur ne disparaissent pas quand la temp\u00e9rature retombe..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6954443695463014400,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6954443696226361344,urn:li:activity:6954443696226361344,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 115, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6954443696226361344,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6954443696226361344,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6954443696226361344", + "threadId": "activity:6954443696226361344", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6954443696226361344", + "urn": "urn:li:activity:6954443696226361344", + "numComments": 280, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6954443696226361344", + "reactionTypeCounts": [ + { + "count": 3829, + "reactionType": "LIKE" + }, + { + "count": 871, + "reactionType": "INTEREST" + }, + { + "count": 539, + "reactionType": "MAYBE" + }, + { + "count": 170, + "reactionType": "APPRECIATION" + }, + { + "count": 31, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6954443696226361344", + "numLikes": 5446, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6954443696226361344", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5448, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6953982935150546944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6953982935150546944", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6953982935150546944)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6953982935150546944)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_drill-baby-drill-pendant-que-leurope-activity-6953982935150546944-t-UN?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6953982934265565184", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6953982935150546944", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6953982935150546944,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6953982935150546944,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6953982934265565184", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "C6/Pe/LmRNBYPX4x/+Tg2g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6953982935150546944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEgHHeVi2BuSw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEgHHeVi2BuSw", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1657958729175?e=1679529600&v=beta&t=OTg0A5-Rial7Ny6vwfnMay9RhrIF-0b2jhHdGHFGhYg", + "expiresAt": 1679529600000, + "height": 1386 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1657958729028?e=1679529600&v=beta&t=HbqxxnVjP80cJKLQiXWLcRorWyjpppEL9rCzjoetHI8", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1657958729028?e=1679529600&v=beta&t=oJLmLi2pqnOZU2zPkT2JlvSHtrxAgv2yqQI9L26yMuM", + "expiresAt": 1679529600000, + "height": 866 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1657958729028?e=1679529600&v=beta&t=TgDpf1J2HVGD538FWxOhnGmIP_7gBLpYL1FRyXVwiI4", + "expiresAt": 1679529600000, + "height": 324 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1657958729028?e=1679529600&v=beta&t=ys9W-7VghqAlWlylkNGEXeHiv5oKiy1lIP80-xRmOdg", + "expiresAt": 1679529600000, + "height": 108 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1657958729028?e=1679529600&v=beta&t=UjGWUe-tFwBtdL_a-v-kHo6v8YqgQawzkA4DkPkM5ys", + "expiresAt": 1679529600000, + "height": 541 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEgHHeVi2BuSw/feedshare-shrink_" + }, + "displayAspectRatio": 0.6767578125 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, line chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6953982934265565184,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Drill baby drill : pendant que l'Europe - et d'autres r\u00e9gions du monde, y compris les USA : https://lnkd.in/e8BsPyvk - voit un peu partout les cons\u00e9quences d'un climat trop chaud et trop sec (et ca ne va malheureusement pas s'arranger \u00e0 l'avenir : https://lnkd.in/exrFJP86 ), l'industrie p\u00e9troli\u00e8re am\u00e9ricaine continue d'augmenter doucement le nombre de plates-formes de forage horizontal en activit\u00e9, et \u00e0 la suite la production de p\u00e9trole et de gaz de roche m\u00e8re... dont incidemment une partie est lorgn\u00e9e par les europ\u00e9ens \u00e0 cause de la baisse des livraisons russes.\n\nColuche disait \"Quand on pense qu'il suffirait de ne pas les acheter pour que \u00e7a ne se vende plus\" (https://lnkd.in/ewKyDg2g ). De fait, il suffirait de ne plus consommer de p\u00e9trole pour qu'il ne soit plus n\u00e9cessaire d'en extraire du sous-sol. Mais dans le m\u00eame temps o\u00f9 les arbres (et d'autres esp\u00e8ces) meurent, les rivi\u00e8res s'ass\u00e8chent, les cultures souffrent, et l'ozone envahit les villes (en attendant les b\u00e2timents fissur\u00e9s et l'instabilit\u00e9 politique), nous avons en place un \"boucler tarifaire\" pour nous permettre de continuer \u00e0 acheter des carburants pour un peu moins cher.\n\nEt nul discours faisant le lien entre tout cela dans la bouche de nos nouveaux ministres. Le covid avait justifi\u00e9 la multiplication des discours sur les \"gestes barri\u00e8re\". O\u00f9 est le discours sur les \"gestes barri\u00e8re\" pour ne pas souffrir de la tenaille \u00e9nerg\u00e9tico-climatique ? Si nous ne le faisons pas lors des crises, quand le ferons nous ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6953982934265565184,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6953982935150546944,urn:li:activity:6953982935150546944,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 58, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6953982935150546944,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6953982935150546944,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6953982935150546944", + "threadId": "activity:6953982935150546944", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6953982935150546944", + "urn": "urn:li:activity:6953982935150546944", + "numComments": 139, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6953982935150546944", + "reactionTypeCounts": [ + { + "count": 2344, + "reactionType": "LIKE" + }, + { + "count": 134, + "reactionType": "PRAISE" + }, + { + "count": 130, + "reactionType": "MAYBE" + }, + { + "count": 81, + "reactionType": "INTEREST" + }, + { + "count": 50, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6953982935150546944", + "numLikes": 2747, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6953982935150546944", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2747, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6953598120513425408,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6953598120513425408", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6953598120513425408)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6953598120513425408)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_face-%C3%A0-apolline-jean-marc-jancovici-15-activity-6953598120513425408-nd64?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6953598119561318400", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6953598120513425408", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6953598120513425408,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6953598120513425408,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6953598119561318400", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "VWKeCrGyeisoxGysAPrC1Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6953598120513425408,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8981922072420289087", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676037564852?e=1677240000&v=beta&t=vGikNHrlx_Hi8XbHFgQcKaA_JWzVTnGCJiZpluDF1DA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676037564852?e=1677240000&v=beta&t=0ekC-KCeerXm1XqDwXuDfaCuhIb2AsI20gycoD_agbM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676037564852?e=1677240000&v=beta&t=BoXfu-aTA1FpVo-qquDrm3Vy3LenqJ60TXGWNow5NR0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676037564852?e=1677240000&v=beta&t=MmxRoOVBs07jYrgGlUg9u0Y5V1pvrj96omR47VLgE14", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE1OCgHtXr2Qw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8981922072420289087)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8981922072420289087)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rmc.bfmtv.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Face \u00e0 Apolline : Jean-Marc Jancovici - 15/07 by rmc.bfmtv.com", + "actionTarget": "https://rmc.bfmtv.com/replay-emissions/apolline-matin/face-a-apolline-jean-marc-jancovici-15-07_VN-202207150105.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Face \u00e0 Apolline : Jean-Marc Jancovici - 15/07" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6953598119561318400,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 294, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "4LC4OSsrSA6djJh25SRnlg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Utiliser moins d'\u00e9nergie parce que nous le souhaitons (par exemple pour le climat), ou parce que nous n'allons pas avoir le choix (par exemple \u00e0 cause de Poutine) ? Telle \u00e9tait une des questions qui m'\u00e9tait pos\u00e9e ce matin sur RMC/BFM, apr\u00e8s l'allusion \u00e0 la sobri\u00e9t\u00e9 contenue dans l'interview d'Emmanuel Macron qui a eu lieu hier.\n\nCela m'a donn\u00e9 l'occasion de rappeler le travail effectu\u00e9 par le Shift Project sur le p\u00e9trole (https://lnkd.in/dMFCWQFw ), concluant que nous allons de toute fa\u00e7on devoir nous en passer progressivement \u00e0 l'avenir, et de dire que, pour les m\u00eames raisons d'\u00e9puisement des gisements, pour le gaz la tendance serait la m\u00eame. Un travail analogue \u00e0 celui effectu\u00e9 sur le p\u00e9trole est du reste en cours au Shift Project (il a notamment \u00e9t\u00e9 cofinanc\u00e9 par RTE) et sera publi\u00e9 \u00e0 la rentr\u00e9e.\n\nLe \"progressivement\" pour le gaz, qui avait commenc\u00e9 en 2005 en Europe \u00e0 cause du pic de production de la Mer du Nord (voir graphique en commentaire), va \u00e9videmment fortement s'acc\u00e9l\u00e9rer \u00e0 cause de nos d\u00e9m\u00eal\u00e9s avec les russes.\n\nEt comme les volumes de gaz qui nous sont livr\u00e9s par nos voisins de l'Est sont tr\u00e8s importants (environ 40% de notre consommation annuelle avant la guerre), il ne sera pas possible de les remplacer par du gaz liqu\u00e9fi\u00e9 venu des US ou du Qatar, car les possibilit\u00e9s physiques de fourniture et de transport ne sont pas du tout du m\u00eame ordre de grandeur.\n\nApr\u00e8s l'hiver prochain, il y aura donc les hivers suivants, qui devraient, si le commerce avec la Russie ne reprend pas, \u00eatre encore plus difficiles \u00e0 passer que le prochain, parce que les stocks vont \u00eatre de plus en plus difficiles \u00e0 reconstituer.\n\nC'est pour cela que j'ai qualifi\u00e9 ce matin la situation de \"saut dans l'inconnu\", m\u00eame si c'est un \"inconnu pr\u00e9visible\". Ce qui \u00e9tait pr\u00e9visible est le fait que, le gaz \u00e9tant \u00e9puisable, nous devrions \"un jour\" (et pas dans 2 si\u00e8cles) faire avec moins. Ce qui ne l'\u00e9tait pas \u00e9tait le d\u00e9clencheur conjoncturel et la hauteur de la marche d'escalier sur laquelle nous tr\u00e9buchons \u00e0 ce moment l\u00e0.\n\nIl en va de m\u00eame pour le p\u00e9trole, et de m\u00eame pour le climat : pour toutes ces \u00e9volutions, la tendance est pr\u00e9visible, mais pas la date pr\u00e9cise ni les conditions pr\u00e9cises de survenue des \"marches d'escalier descendantes\" qui vont inexorablement se produire.\n\nEsp\u00e9rons que la \"planification \u00e9cologique\" qui est apparue lors des derni\u00e8res \u00e9lections s'entende bien comme \"des plans pour l'avenir qui int\u00e8grent les inexorables soubresauts \u00e0 venir, et qui nous permettent de tirer le meilleur dans un monde avec des limites\". Il est certain que cela demande un effort de formation massif de l'appareil public (et priv\u00e9), car mon exp\u00e9rience r\u00e9cente est que (tr\u00e8s) peu de \"d\u00e9cideurs\" ont bien saisi ce qui pr\u00e9c\u00e8de." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6953598119561318400,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6953598120513425408,urn:li:activity:6953598120513425408,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 66, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6953598120513425408,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6953598120513425408,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6953598120513425408", + "threadId": "activity:6953598120513425408", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6953598120513425408", + "urn": "urn:li:activity:6953598120513425408", + "numComments": 103, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6953598120513425408", + "reactionTypeCounts": [ + { + "count": 2448, + "reactionType": "LIKE" + }, + { + "count": 149, + "reactionType": "MAYBE" + }, + { + "count": 126, + "reactionType": "PRAISE" + }, + { + "count": 75, + "reactionType": "INTEREST" + }, + { + "count": 34, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6953598120513425408", + "numLikes": 2840, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6953598120513425408", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2840, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6953281312371695617,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6953281312371695617", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6953281312371695617)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6953281312371695617)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_s%C3%A9cheresse-le-faible-niveau-du-rhin-fait-activity-6953281312371695617-XSOK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6953281311637692416", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6953281312371695617", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6953281312371695617,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6953281312371695617,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6953281311637692416", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "rRPgUEzc3bPJMqtQ6OnJxg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6953281312371695617,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8300958141949579638", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675933659179?e=1677240000&v=beta&t=23z8jbt0ZHv4b2Myu71m53X0GVKGxhVECJEK6x1fxLU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675933659179?e=1677240000&v=beta&t=D7dLUcLKPulkct4bl3aniWgqSIkCkRPSpXk00VNtCz8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675933659179?e=1677240000&v=beta&t=2-F02lBCKQP1vDNlXlApY7fN8aC5XnD-nRiqDjV6h14", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675933659179?e=1677240000&v=beta&t=Is2A2hXPuH7X-3yTCvpdrtHwRRr5PNUUR0EorYxJDrA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHHcgmryTDL4Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8300958141949579638)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8300958141949579638)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: S\u00e9cheresse : le faible niveau du Rhin fait craindre une aggravation de la crise \u00e9nerg\u00e9tique en Europe by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/secheresse-le-faible-niveau-du-rhin-fait-craindre-une-aggravation-de-la-crise-energetique-en-europe-1775676" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "S\u00e9cheresse\u00a0: le faible niveau du Rhin fait craindre une aggravation de la crise \u00e9nerg\u00e9tique en Europe" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6953281311637692416,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A cause de la s\u00e9cheresse, le niveau du Rhin est bas. A cause de Poutine, nous aurons moins de gaz. La solution \u00e0 ce deuxi\u00e8me probl\u00e8me ? Basculer sur le charbon, et au Diable le CO2, les particules fines et la pollution locale. Mais... une partie du charbon import\u00e9 en Allemagne transite par le Rhin : si ce dernier est trop bas, le charbon ne peut plus s'importer aussi bien ! \n\nCette \"anecdote\" est assez illustrative du fait que le monde ne va pas \u00e9voluer avec les conditions qui changent dans un domaine (par exemple l'\u00e9nergie) pendant que partout ailleurs (par exemple sur le niveau du Rhin) les conditions vont rester identiques. \n\nAu sein du monde \u00e9conomique (et notamment celui des entreprises), il est classique de penser que le changement climatique va survenir dans un monde qui conservera la m\u00eame capacit\u00e9 \u00e0 produire, \u00e0 innover, \u00e0 s'adapter donc. C'est une forme de \"toutes choses \u00e9gales par ailleurs\" tr\u00e8s r\u00e9pandue... et qui est malheureusement tr\u00e8s \"anesth\u00e9siante\". \n\nPar exemple le climat va changer, et l'\u00e9nergie diminuer, mais cela n'emp\u00eachera pas le PIB de cro\u00eetre (c'est exactement ce que vient de dire la Banque Centrale Europ\u00e9enne dans ses \"stress tests\" sur les banques, m\u00eame si la conclusion est pr\u00e9sent\u00e9e sous la forme \"attention il peut y avoir des d\u00e9g\u00e2ts\" : https://bit.ly/3ccY71A ).\n\nC'est oublier que la diffusion de l'innovation suppose une rapide rotation des parcs install\u00e9s... et donc plein d'\u00e9nergie pour produire les objets du nouveau parc. Si l'\u00e9nergie diminue, comment augmenter l'efficacit\u00e9 du parc de voitures (qui doivent \u00eatre renouvel\u00e9es), d'industries, de logements, etc ?\n\nC'est oublier que nombre d'objets permettant de \"transitionner\" ou de s'adapter doivent \u00eatre transport\u00e9s en masse depuis des lieux de fabrication externes et que cela demande plein d'\u00e9nergie. Si moins de p\u00e9trole d\u00e9mondialise l'\u00e9conomie, comment faire ?\n\nC'est oublier que, pour les raisons ci-dessus, les prix pass\u00e9s ne sont pas pr\u00e9dictifs des quantit\u00e9s de demain (on l'a bien vu avec le gaz !), alors que nous supposons implicitement l'inverse dans \u00e0 peu pr\u00e8s tous les domaines. \n\nC'est donc oublier que la contraction \u00e9nerg\u00e9tique va diminuer la productivit\u00e9 (cette derni\u00e8re \u00e9tant essentiellement l'adjonction des machines aux hommes en premi\u00e8re approximation), ralentir les \u00e9changes, et donc faire grimper tous les prix r\u00e9els, et que cela va arriver \"en m\u00eame temps\" (!) que l'augmentation des dommages climatiques, ou r\u00e9sultant des autres pressions humaines sur l'environnement.\n\nCette anecdote sur le Rhin est donc illustrative des conjonctions d'\u00e9v\u00e9nements \"impr\u00e9vus\" qui vont se produire simultan\u00e9ment, de plus en plus souvent. Cela pose \u00e9videmment un d\u00e9fi important \u00e0 la prospective, parce que nos boites \u00e0 outils classiques, reposant avant tout sur des prix, sont par nature incapables de faire autre chose que du \"toutes choses \u00e9gales par ailleurs\".\n\nAu chapitre des devoirs de vacances, mettez \"apprendre \u00e0 raisonner avec tout qui change en m\u00eame temps\". Ca sera utile." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6953281311637692416,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6953281312371695617,urn:li:activity:6953281312371695617,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 191, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6953281312371695617,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6953281312371695617,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6953281312371695617", + "threadId": "activity:6953281312371695617", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6953281312371695617", + "urn": "urn:li:activity:6953281312371695617", + "numComments": 388, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6953281312371695617", + "reactionTypeCounts": [ + { + "count": 3991, + "reactionType": "LIKE" + }, + { + "count": 659, + "reactionType": "INTEREST" + }, + { + "count": 538, + "reactionType": "MAYBE" + }, + { + "count": 82, + "reactionType": "PRAISE" + }, + { + "count": 33, + "reactionType": "APPRECIATION" + }, + { + "count": 26, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6953281312371695617", + "numLikes": 5329, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6953281312371695617", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5335, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6952547560049811456,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6952547560049811456", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6952547560049811456)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6952547560049811456)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_m%C3%A9ry-bissi%C3%A8res-en-auge-des-calculatrices-activity-6952547560049811456-dZl0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6952547559437426688", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6952547560049811456", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6952547560049811456,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6952547560049811456,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6952547559437426688", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "R5dYGPGZ5Q19Cl3LuwFN5Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6952547560049811456,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7763184462678066379", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676009879971?e=1677240000&v=beta&t=HyjnsDqE7mWxlRhepg6_Psa-x3xHABMDIZ_3aS6sWME", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 1066, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676009879971?e=1677240000&v=beta&t=ypgUVD-0jGTPUyPFaFp2ZWofbwjvkkmxTuX-ZIShHqg", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676009879971?e=1677240000&v=beta&t=2VAbq73Z90F_pxLiHEWeIHq1RlPiba26D3_ac7R0oCE", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676009879972?e=1677240000&v=beta&t=9eqIDibHifzZy35aqVOeNUunyUSeo0eyXS2ji_YGc4M", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFMYad13sYU3g/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7763184462678066379)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7763184462678066379)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "actu.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: M\u00e9ry-Bissi\u00e8res-en-Auge : des calculatrices et une bande dessin\u00e9e offertes aux futurs \u00e9l\u00e8ves de 6e by actu.fr", + "actionTarget": "https://actu.fr/normandie/mery-bissieres-en-auge_14410/mery-bissieres-en-auge-des-calculatrices-et-une-bande-dessinee-offertes-aux-futurs-eleves-de-6e_52323013.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "M\u00e9ry-Bissi\u00e8res-en-Auge : des calculatrices et une bande dessin\u00e9e offertes aux futurs \u00e9l\u00e8ves de 6e" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6952547559437426688,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ils auront tout juste 40 ans en 2050. Ils, ce sont les \u00e9l\u00e8ves d'une future classe de 6\u00e8me d'un village de Normandie, \u00e0 qui leur maire a d\u00e9cid\u00e9 d'offrir \"Le Monde sans Fin\" comme cadeau d'entr\u00e9e en 6\u00e8me. \n\nJe ne suis pas s\u00fbr qu'ils seront \u00e0 m\u00eame d'en comprendre tous les d\u00e9tails, mais par contre cela b\u00e9n\u00e9ficiera \u00e0 coup s\u00fbr \u00e0 leurs parents, du moins je l'esp\u00e8re !\n\nQuelle attitude adopter vis-\u00e0-vis des plus jeunes en ce qui concerne le d\u00e9fi \u00e9nergie climat ? Faut-il \"tout leur dire\", notamment dans le cadre de l'enseignement, au risque de les rendre neurasth\u00e9niques, puisqu'ils vont comprendre le probl\u00e8me tout en ayant une tr\u00e8s faible capacit\u00e9 d'action dessus ? (puisque les personnes qui sont aux commandes pour la collectivit\u00e9 sont leurs parents, voire grands parents)\n\nFaut-il ne rien leur dire de prime abord, mais mettre en oeuvre des actions pertinentes et leur expliquer \u00e0 la fois l'action et son fondement en une seule passe, pour \u00e9viter l'effet pr\u00e9c\u00e9dent ? \n\nDe fait, Le Monde sans Fin a \u00e9t\u00e9 utilis\u00e9 plus d'une fois par des enseignants, et quelques CDI sont d\u00e9sormais \u00e9quip\u00e9s de cet ouvrage. Cela faisait aussi partie du \"plan\" : offrir un support plus digeste qu'un essai traditionnel, et accessible sans wifi (!), dont la forme saurait rendre le fond \u00e0 a fois digeste et \"\u00e9motionnellement accessible\". \n\nCela n'a pas emp\u00each\u00e9 que je re\u00e7oive un certain nombre de fois un commentaire de lecture se r\u00e9sumant \u00e0 \"j'ai pris une claque\". Commentaire qui laisse enti\u00e8re la question de ce qu'il faut dire \u00e0 nos enfants. Ce qui est sur, c'est que tant que ma g\u00e9n\u00e9ration ne prendra pas le probl\u00e8me \u00e0 bras le corps, nous ne pourrons leur dire que des choses sur un ton tr\u00e8s embarrass\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6952547559437426688,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6952547560049811456,urn:li:activity:6952547560049811456,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 146, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6952547560049811456,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6952547560049811456,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6952547560049811456", + "threadId": "activity:6952547560049811456", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6952547560049811456", + "urn": "urn:li:activity:6952547560049811456", + "numComments": 222, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6952547560049811456", + "reactionTypeCounts": [ + { + "count": 3354, + "reactionType": "LIKE" + }, + { + "count": 337, + "reactionType": "PRAISE" + }, + { + "count": 178, + "reactionType": "APPRECIATION" + }, + { + "count": 100, + "reactionType": "EMPATHY" + }, + { + "count": 38, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6952547560049811456", + "numLikes": 4028, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6952547560049811456", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4028, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6952316895232471041,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6952316895232471041", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6952316895232471041)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6952316895232471041)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_edf-quatre-questions-sur-une-nationalisation-activity-6952316895232471041-BE8v?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6952316894418776064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6952316895232471041", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6952316895232471041,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6952316895232471041,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6952316894418776064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "5xMdehnTaEZr62NOWXH3vw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6952316895232471041,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7272083807892610158", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675914099566?e=1677240000&v=beta&t=Mr4HVF4YxwmJNt4jz4dPG2tc7QRsFZdMfIw3vFX88RE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675914099566?e=1677240000&v=beta&t=bWJ1TruUquvY7MVySRuzYKrhAELAXy0_QtZNHfuRDP8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675914099566?e=1677240000&v=beta&t=xSYs_7HKSm5DWRF6Lez-f1uGSFAAe0lqxHVJppCaGSo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675914099566?e=1677240000&v=beta&t=iaoMRgr8nAQCjnatlT1bO4V2AImGiUIGkFkQzzYN304", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEGTWTNXvUodg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7272083807892610158)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7272083807892610158)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EDF : quatre questions sur une nationalisation tr\u00e8s politique by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/edf-quatre-questions-sur-une-nationalisation-tres-politique-1775426" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EDF\u00a0: quatre questions sur une nationalisation tr\u00e8s politique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6952316894418776064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "EDF sera donc nationalis\u00e9. Du point de vue \u00e9conomique, c'est une bonne id\u00e9e. Une entreprise nationale b\u00e9n\u00e9ficie en pratique des m\u00eames conditions d'emprunt ou presque que l'Etat, et pour financer des installations de production tr\u00e8s capitalistiques comme le nucl\u00e9aire ou les renouvelables (tout l'argent ou presque est d\u00e9pens\u00e9 lors de la construction et tr\u00e8s peu lors de l'exploitation) le taux d'int\u00e9r\u00eat auquel l'argent est disponible fait une \u00e9norme diff\u00e9rence sur le r\u00e9sultat final.\n\nPrenons par exemple un r\u00e9acteur nucl\u00e9aire qui va vivre 60 ans, qui coute 10 milliards \u00e0 la construction, et qui met 10 ans \u00e0 \u00eatre construit (c'est des ordres de grandeur). Si l'argent pour le construire est trouv\u00e9 aupr\u00e8s d'actionnaires priv\u00e9s qui demandent 10% de rendement annuel sur les capitaux fournis, EDF devra d\u00e9bourser 90 milliards d'euros de frais financiers en plus par rapport \u00e0 une situation o\u00f9 ce m\u00eame argent serait disponible avec un taux \u00e0 2% seulement parce que ce sont des emprunts garantis par l'Etat. C'est pour cela que le nucl\u00e9aire n'est pas une activit\u00e9 \u00e0 l'aise dans le secteur priv\u00e9 : le cout du MWh y devient le double ou le triple (\u00e0 cause des frais financiers) de ce qu'il est dans le public : https://bit.ly/3yWmlGk\n\nA court terme cela va aussi permettre de refinancer \u00e0 des conditions plus favorables une dette qui a beaucoup augment\u00e9. Mais le v\u00e9ritable d\u00e9fi \u00e0 plus long terme d'EDF n'est pas juste de financer son nucl\u00e9aire du futur. Il est aussi de se d\u00e9barrasser d'un \u00e9norme \"sparadrap du capitaine Haddock\", qui s'appelle l'arenh (acc\u00e8s r\u00e9gul\u00e9 \u00e0 l'\u00e9lectricit\u00e9 nucl\u00e9aire historique). L'arenh est une obligation de vente \u00e0 \"prix coutant\" - et d\u00e9sormais \u00e0 perte - qui a \u00e9t\u00e9 impos\u00e9e \u00e0 EDF en 2011 dans le cadre de l'obligation de \"concurrence\" voulue par l'Europe. Elle porte actuellement sur un tiers de la production nucl\u00e9aire d'EDF.\n\nEn pratique les \"concurrents\" qui en b\u00e9n\u00e9ficient sont juste des courtiers (ils n'ont pas de centrales). Ils empochent une marge de distribution qui \u00e9tait auparavant conserv\u00e9e au sein de l'\u00e9lectricien national. Des industriels en b\u00e9n\u00e9ficient aussi mais ce probl\u00e8me peut se traiter s\u00e9par\u00e9ment.\n\nCe m\u00e9canisme a cout\u00e9 un bon paquet de milliards \u00e0 EDF (pas loin de 10 rien qu'en 2022, Macron en ayant rajout\u00e9 une grosse louche juste avant les \u00e9lections), a alourdi la charge de sa dette, a amoindri ses capacit\u00e9s d'investissement, et ce sans aucune contrepartie positive pour le pays (on ne peut pas dire que l'augmentation du nombre de courtiers soit un gain essentiel !).\n\nLa nationalisation n'est donc que le d\u00e9but de l'histoire si on veut vraiment s\u00e9curiser au mieux l'avenir \u00e9lectrique. La suite est la suppression de l'arenh, ainsi que la remise sur pieds d'une fili\u00e8re organis\u00e9e et efficace, ce qui demandera du temps et de la constance dans les objectifs (en sommes nous politiquement capables ?).\n\nNationalisation ou pas, un EDF avec l'arenh au niveau actuel finira par imploser...." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6952316894418776064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6952316895232471041,urn:li:activity:6952316895232471041,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 152, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6952316895232471041,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6952316895232471041,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6952316895232471041", + "threadId": "activity:6952316895232471041", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6952316895232471041", + "urn": "urn:li:activity:6952316895232471041", + "numComments": 296, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6952316895232471041", + "reactionTypeCounts": [ + { + "count": 4623, + "reactionType": "LIKE" + }, + { + "count": 469, + "reactionType": "INTEREST" + }, + { + "count": 420, + "reactionType": "MAYBE" + }, + { + "count": 120, + "reactionType": "PRAISE" + }, + { + "count": 38, + "reactionType": "EMPATHY" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6952316895232471041", + "numLikes": 5690, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6952316895232471041", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5691, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6951840131171430400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6951840131171430400", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6951840131171430400)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6951840131171430400)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-bce-fait-sa-r%C3%A9volution-climatique-activity-6951840131171430400-reZv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6951840130315788288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6951840131171430400", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6951840131171430400,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6951840131171430400,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6951840130315788288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "G9pfcqTzcmPr+cScqd0wlA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6951840131171430400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7329946290686194262", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675836594445?e=1677240000&v=beta&t=lZlsqp7-Ibt6zBSPFScf5somCfvaPW4wX47OMN7Ns6Y", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675836594445?e=1677240000&v=beta&t=ulsO18_BYMZQDftkvZ4sIW5aon5P9_YmML7RScOM2Bc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675836594445?e=1677240000&v=beta&t=83FDh9ZfONX2bQxOB85ECO-n-p22P1Mo10oWSj40wQo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675836594445?e=1677240000&v=beta&t=dyuyZVj3QiXySNanuIVqljbd8IXwW9PPjhUFoLTDV1Y", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFhJDFznBLyag/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7329946290686194262)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7329946290686194262)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La BCE fait sa r\u00e9volution climatique by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/la-bce-fait-sa-revolution-climatique-1772014" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La BCE fait sa r\u00e9volution climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6951840130315788288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Banque Centrale Europ\u00e9enne a, comme l'essentiel des banques centrales, pour mission essentielle de \"d\u00e9fendre la monnaie\" dont elle a la gestion : https://bit.ly/3RAmczZ \n\nCela signifie notamment :\n- limiter l'inflation (car l'inflation d\u00e9pr\u00e9cie la valeur de la monnaie)\n- agir sur les march\u00e9s des changes, pour \u00e9viter la d\u00e9pr\u00e9ciation excessive, ou au contraire l'appr\u00e9ciation excessive, de la monnaie concern\u00e9e face aux autres monnaies. \n- superviser les banques commerciales. Ces derni\u00e8res effectuant en pratique la cr\u00e9ation mon\u00e9taire (par les op\u00e9rations de cr\u00e9dit : https://bit.ly/3c5JnBS), la gestion de la masse mon\u00e9taire passe notamment par les r\u00e8gles impos\u00e9es aux banques commerciales par les banques centrales.\n- ou encore assurer la liquidit\u00e9 interbancaire. Au titre de cette derni\u00e8re activit\u00e9, la banque centrale fournit des liquidit\u00e9s (du \"cash\") aux banques commerciales en demandant en contrepartie que la banque commerciale \"d\u00e9pose\" \u00e0 la banque centrale des obligations ou des actions que cette derni\u00e8re d\u00e9tient en propre (c'est un peu une esp\u00e8ce de pr\u00eat hypoth\u00e9caire !). \n\nPar extension, depuis qu'il y a des march\u00e9s financiers, les banques centrales sont aussi charg\u00e9es de la \"stabilit\u00e9\" de ces derniers.\n\nToutes ces op\u00e9rations doivent \u00eatre \"neutres\" du point de vue de l'\u00e9conomie, c'est \u00e0 dire que le mandat de la banque centrale n'a jamais \u00e9t\u00e9 de se substituer au l\u00e9gislateur pour dire quelles activit\u00e9s pouvaient \u00e9ventuellement \u00eatre favoris\u00e9es par rapport \u00e0 telles autres, en favorisant ou pas l'acc\u00e8s aux ressources mon\u00e9taires ou financi\u00e8res, pour marquer le caract\u00e8re plus ou moins utile pour la collectivit\u00e9.\n\nAinsi, la banque centrale ne peut pas dire aux banques commerciales que le financement des activit\u00e9s carbon\u00e9es doit se faire avec des taux de cr\u00e9dit plus \u00e9lev\u00e9s que pour les activit\u00e9s non carbon\u00e9es, pour dissuader les premi\u00e8res, par exemple. \n\nCette diff\u00e9renciation ne pourrait \u00eatre justifi\u00e9e qu'\u00e0 une condition, qui elle serait strictement \"financi\u00e8re\" : que les risques de d\u00e9faut soient plus \u00e9lev\u00e9s pour les emprunteurs carbon\u00e9s que pour ceux qui ne le sont pas.\n\nOr, malgr\u00e9 cette obligation de neutralit\u00e9, la BCE vient de d\u00e9cider de faire un double petit pas de c\u00f4t\u00e9 : tout d'abord elle va orienter sa propre \u00e9pargne en privil\u00e9giant les titres d'entreprises \"vertes\". Carbon 4 Finance ayant \u00e9t\u00e9 s\u00e9lectionn\u00e9 il y a quelques mois par les banques centrales de l'Eurosyst\u00e8me pour fournir des donn\u00e9es climat, nous esp\u00e9rons \u00e9videmment que ce \"tri\" sera fait sur la base de nos analyses :).\n\nEnsuite et surtout, la BCE va privil\u00e9gier les titres \"verts\" (qui peuvent \u00eatre analys\u00e9s avec nos donn\u00e9es aussi !) apport\u00e9s en garantie lorsque les banques commerciales voudront b\u00e9n\u00e9ficier de liquidit\u00e9s de la banque centrale. Cela va pousser les banques commerciales \u00e0 \"verdir\" leur propre bilan. \n\nDans les deux cas de figure c'est une novation importante par rapport au mandat historique. Mais c'est clairement une bonne id\u00e9e dans le contexte actuel." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6951840130315788288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6951840131171430400,urn:li:activity:6951840131171430400,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6951840131171430400,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6951840131171430400,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6951840131171430400", + "threadId": "activity:6951840131171430400", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6951840131171430400", + "urn": "urn:li:activity:6951840131171430400", + "numComments": 78, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6951840131171430400", + "reactionTypeCounts": [ + { + "count": 1962, + "reactionType": "LIKE" + }, + { + "count": 164, + "reactionType": "PRAISE" + }, + { + "count": 129, + "reactionType": "INTEREST" + }, + { + "count": 72, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "EMPATHY" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6951840131171430400", + "numLikes": 2360, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6951840131171430400", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2360, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "7mo \u2022 ", + "accessibilityText": "7 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6951466948027154433,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6951466948027154433", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6951466948027154433)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6951466948027154433)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_transport-et-livraison-de-marchandises-activity-6951466948027154433-f2vy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6951466947070849024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6951466948027154433", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6951466948027154433,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6951466948027154433,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6951466947070849024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "0IUBw2lkdoGOhtqHcERuzA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6951466948027154433,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7664347709361419515", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676364319980?e=1677240000&v=beta&t=aic0nM08sv3DMFeIe27iDHOwi7QHr0cK5MtvvBMJaU4", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676364319980?e=1677240000&v=beta&t=YowJmco0UJAjOL0nlS0icLeMcHyioT9IztfkeaSYFAg", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676364319981?e=1677240000&v=beta&t=fmZ83MC98cU2U00bOJzvU_keQ-MnsYi_ltzs3xHYqq4", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676364319981?e=1677240000&v=beta&t=B93lef_BT2xfq6JEHSJ8DmBX3Inbh19VTDdwAOnVmuI", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGyE6Y0ckk4sw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7664347709361419515)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7664347709361419515)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Transport et livraison de marchandises : \u00ab Le renforcement de la mutualisation et le report de la route vers le rail ou le fluvial doivent devenir des r\u00e9flexes \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/idees/article/2022/07/08/le-renforcement-de-la-mutualisation-et-la-generalisation-de-la-capacite-de-report-modal-doivent-devenir-des-reflexes-naturels-pour-les-acteurs-du-secteur-du-transport-de-marchandises_6133974_3232.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Transport et livraison de marchandises\u00a0: \u00ab\u00a0Le renforcement de la mutualisation et le report de la route vers le rail ou le fluvial doivent devenir des r\u00e9flexes\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6951466947070849024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1345, + "length": 13, + "miniProfile": { + "firstName": "Reuben", + "lastName": "Fisher", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAA1hJIEBXx4lDDtTWnTWFjidJnATZRUgcOk", + "occupation": "Directeur RSE & D\u00e9veloppement Durable chez HOPPS GROUP, n\u00e9 en/born in 325 PPM, Micmac score 4669. Chef de Projet Fret pour The Shift Project", + "objectUrn": "urn:li:member:224470145", + "entityUrn": "urn:li:fs_miniProfile:ACoAAA1hJIEBXx4lDDtTWnTWFjidJnATZRUgcOk", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1673121762844?e=1681948800&v=beta&t=33OhjPaY_7KuOMdDS3tI1WH5hijaBEdEfp7qnmNxHTw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1673121762844?e=1681948800&v=beta&t=Y3xvjIVinRqEh3KVsmAVehaMDUdzfky3KZ2lLyUrYAc", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4D16AQFLWoQIh8xJhw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "reuben-fisher-85521163", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1597156886380?e=1681948800&v=beta&t=LacffM3jI3rNUQrstpzua7n1m2OT3O51gZ5DlbSic6w", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1597156886380?e=1681948800&v=beta&t=EWUq2qJCfO0GiHC9tqD6YbdZZDIG13OJmH13T9aqrkU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1597156886380?e=1681948800&v=beta&t=vsdnKgNDLbINBRt1XtB9DhRtXixo1Qc5RCxhqdYFRiQ", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1597156886380?e=1681948800&v=beta&t=bV5pi8ET7PHE4cfOyDoTcpHxktWhSNYTi1Wt8dK_AKI", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQFyqPPtFCQVGA/profile-displayphoto-shrink_" + } + }, + "trackingId": "Z/q86OXsTEuYHAGsR2ENeA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Comment moins utiliser de p\u00e9trole dans les transports ? Lorsque cette question est pos\u00e9e, les suggestions qui viennent g\u00e9n\u00e9ralement \u00e0 l'esprit concernent les d\u00e9placements de personnes : faisons du v\u00e9lo, prenons le train, arr\u00eatons l'avion !\n\nMais il ne faut pas oublier que, dans le monde, les flux de marchandises utilisent presque autant de combustibles liquides que les flux de personnes. Et, quand on regarde bien, c'est pour le fret que la question de la d\u00e9carbonation est la plus urgente.\n\nSi demain matin nous devions fortement rationner le carburant en France, nous arriverions quand m\u00eame, au prix de gros efforts, \u00e0 nous organiser pour conserver beaucoup de mobilit\u00e9 : conducteurs et passagers habitant \"pas trop loin\" s'organiseraient pour mieux remplir les voitures (moins nombreuses) pour les trajets du quotidien ; une large partie des d\u00e9placements courts basculeraient imm\u00e9diatement sur du v\u00e9lo et des modes collectifs (bus, modes ferr\u00e9s), au prix d'un allongement de la dur\u00e9e du trajet (mais n\u00e9cessit\u00e9 fait parfois loi...) ; etc.\n\nRien de tel n'est envisageable pour les marchandises, qui n'ont pas de jambes, et pour lesquelles les trajets sont beaucoup plus longs. Dans un monde priv\u00e9 de camions demain matin, l'ensemble des villes meurt assez vite de faim. Paris, par exemple, n'a que 3 jours de r\u00e9serves alimentaires, rappelle Reuben Fisher (chef de projet pour la partie Fret du Plan de Transformation de l'Economie Fran\u00e7aise) dans cette tribune publi\u00e9e dans Le Monde.\n\nLes villes n'auraient pas plus de v\u00eatements, d'ampoules \u00e9lectriques, de savon, de liti\u00e8re pour chats, de t\u00e9l\u00e9phones ou de papier toilette : en fait rien de ce que vous pouvez voir dans un magasin, ou vous faire livrer chez vous, n'est aujourd'hui accessible dans un monde sans camions et sans marine marchande.\n\nOr, climat ou pas climat, la production mondiale de p\u00e9trole devrait \u00eatre divis\u00e9e par 2 environ d'ici \u00e0 2050 (https://bit.ly/3NVAVlU ). L'Europe politique (donc hors UK et Norv\u00e8ge) importe 95% de son p\u00e9trole. Comme les pays producteurs vont garder une fraction croissante du p\u00e9trole pour eux, nos importations de p\u00e9trole (europ\u00e9ennes) vont donc baisser d'un facteur 2 \u00e0... 10.\n\nDe ce fait, il va falloir de toute fa\u00e7on organiser le fret avec de moins en moins de diesel. L'\u00e9lectrification au nucl\u00e9aire est possible pour les bateaux (sous-marins ou porte-avions), mais la marine marchande mondiale compte 100.000 unit\u00e9s de plus de 100 tonnes de capacit\u00e9, et seule une petite partie peut basculer en quelques d\u00e9cennies. \n\nPour les camions, c'est aussi l'\u00e9lectrification sous diverses formes qui est l'action \u00e0 privil\u00e9gier, mais l\u00e0 aussi les chiffres montrent que ca ne permettra pas de conserver les flux de marchandises actuels.\n\nComment faire alors ? La premi\u00e8re des mesures propos\u00e9es par le PTEF pour le fret est de doter le pays d'un minist\u00e8re d\u00e9di\u00e9, et d'autorit\u00e9s organisatrices en r\u00e9gion. Tout notre monde actuel en d\u00e9pend : le transport de marchandises doit \u00eatre vu comme un sujet r\u00e9galien." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6951466947070849024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6951466948027154433,urn:li:activity:6951466948027154433,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 104, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6951466948027154433,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6951466948027154433,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6951466948027154433", + "threadId": "activity:6951466948027154433", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6951466948027154433", + "urn": "urn:li:activity:6951466948027154433", + "numComments": 155, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6951466948027154433", + "reactionTypeCounts": [ + { + "count": 1750, + "reactionType": "LIKE" + }, + { + "count": 237, + "reactionType": "INTEREST" + }, + { + "count": 230, + "reactionType": "MAYBE" + }, + { + "count": 27, + "reactionType": "PRAISE" + }, + { + "count": 19, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6951466948027154433", + "numLikes": 2272, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6951466948027154433", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2272, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6951063788729069568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6951063788729069568", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6951063788729069568)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6951063788729069568)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-chercheurs-auraient-un-impact-plus-activity-6951063788729069568-JnUT?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6951063788120887296", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6951063788729069568", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6951063788729069568,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6951063788729069568,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6951063788120887296", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "yBpvFoRxhtfITwF9zK5VHA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6951063788729069568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6985991921165488121", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675858845250?e=1677240000&v=beta&t=ZMB7si-rm16QfM_51MdL6m_DKClP973qJCa-jwcavdg", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675858845250?e=1677240000&v=beta&t=eWl-ck2ifej9BbjYlxmQ3t4gWZ8T9fPx2MwT8By07IU", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675858845250?e=1677240000&v=beta&t=ejJkhyrmPvGLNZYI5-NfifBop6uAzC3a2aamztrQyBg", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675858845250?e=1677240000&v=beta&t=h_YarI_Bj9I5cMBy4tSaZF_ApYx9ZXiFe9X4D5hpKE0", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQG4CiyDFSIX5A/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6985991921165488121)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6985991921165488121)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab Les chercheurs auraient un impact plus significatif en amplifiant leur m\u00e9diation aupr\u00e8s de la soci\u00e9t\u00e9 \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/sciences/article/2022/06/28/les-chercheurs-auraient-un-impact-plus-significatif-en-amplifiant-leur-mediation-aupres-de-la-societe_6132402_1650684.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0Les chercheurs auraient un impact plus significatif en amplifiant leur m\u00e9diation aupr\u00e8s de la soci\u00e9t\u00e9\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6951063788120887296,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 58, + "length": 14, + "miniProfile": { + "firstName": "Jean", + "lastName": "Colcombet", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABD4DrAB8hEYutH-TEQLJPMcXIA5LojOXW0", + "occupation": "Inra Scientist (Plant Genomic Research Unit, Evry, France)", + "objectUrn": "urn:li:member:284692144", + "entityUrn": "urn:li:fs_miniProfile:ACoAABD4DrAB8hEYutH-TEQLJPMcXIA5LojOXW0", + "publicIdentifier": "jean-colcombet-4944147b", + "trackingId": "qokTNvglQqS1YQRn4CAKxw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans une tr\u00e8s int\u00e9ressante tribune publi\u00e9e dans Le Monde, Jean Colcombet, directeur de recherches \u00e0 l'Institut des sciences des plantes Paris-Saclay, s'interroge sur la bonne mani\u00e8re d'allouer l'effort de recherche dans un monde qui va devenir plus contraint.\n\nL'auteur int\u00e8gre deux \u00e9l\u00e9ments dans son raisonnement :\n\n- la baisse des budgets qu'il voit comme inexorable. L'abondance \u00e9conomique r\u00e9sultant des combustibles fossiles, la baisse de ces derniers va laisser moins de moyens pour s'occuper d'activit\u00e9s non imm\u00e9diatement essentielles \u00e0 court terme (manger, se loger...), dont la recherche fait partie. De fait, avant l'abondance \u00e9nerg\u00e9tique, il n'y avait pas beaucoup de labos de recherche...\n\n- et, du coup, la n\u00e9cessit\u00e9 de faire clairement des choix sur les sujets qui m\u00e9ritent d'\u00eatre soutenus au regard de leur utilit\u00e9 possible pour aider la collectivit\u00e9 \u00e0 faire face aux d\u00e9fis qui augmentent.\n\nL'auteur se demande alors si, dans ce contexte, il est justifi\u00e9 de maintenir une station spatiale, ou d'investir massivement dans de la recherche pour traiter des maladies du grand \u00e2ge alors que l'on ne sait pas si une partie des jeunes d'aujourd'hui pourront simplement se nourrir pour y parvenir.\n\nCes questions sont certes difficiles, mais lucides, et l'auteur est courageux de les poser publiquement. L'\u00e9valuation de l'opportunit\u00e9 de la recherche a parfois \u00e9t\u00e9 pos\u00e9e de mani\u00e8re tr\u00e8s directe par notre esp\u00e8ce, par exemple en temps de guerre.\n\nAlors que l'urgence est l\u00e0, pouvons-nous faire l'\u00e9conomie de laisser la recherche, qui pr\u00e9pare l'avenir, et alors que les moyens vont devenir de plus en plus compt\u00e9s, sans aucune exigence concernant la pertinence de ce qui est cherch\u00e9 au regard d'objectifs environnementaux ?\n\nDifficile mais n\u00e9cessaire d\u00e9bat." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6951063788120887296,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6951063788729069568,urn:li:activity:6951063788729069568,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 78, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6951063788729069568,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6951063788729069568,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6951063788729069568", + "threadId": "activity:6951063788729069568", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6951063788729069568", + "urn": "urn:li:activity:6951063788729069568", + "numComments": 136, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6951063788729069568", + "reactionTypeCounts": [ + { + "count": 1342, + "reactionType": "LIKE" + }, + { + "count": 254, + "reactionType": "MAYBE" + }, + { + "count": 165, + "reactionType": "INTEREST" + }, + { + "count": 22, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6951063788729069568", + "numLikes": 1806, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6951063788729069568", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1806, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6950843763405541376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6950843763405541376", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6950843763405541376)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6950843763405541376)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_s%C3%A9cheresse-leurope-durement-touch%C3%A9e-activity-6950843763405541376-QQnW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6950843762700894208", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6950843763405541376", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6950843763405541376,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6950843763405541376,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6950843762700894208", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "0KXpEJuj1GASOsMDQPTpJA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6950843763405541376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7910994084181249093", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675841060053?e=1677240000&v=beta&t=FRLNnSFsJodjzgWYq05rABYA961U3oceqCfo03UqIH4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675841060053?e=1677240000&v=beta&t=8WS6UweWoEJjM1zQPcKe5W2985H9EUEutpU2lMsoHqc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675841060053?e=1677240000&v=beta&t=Fq4aMn6VcHqXEg6mIhWogoeHg9-iiYZg3GiKCYekQUg", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675841060053?e=1677240000&v=beta&t=CA15a0yxRcL-ru8Z8ePzkGwnrLuGVwMLybqV1-JCaFM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQESMQVNNpDYPQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7910994084181249093)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7910994084181249093)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: S\u00e9cheresse : l'Europe durement touch\u00e9e by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/secheresse-leurope-durement-touchee-1774806" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "S\u00e9cheresse\u00a0: l'Europe durement touch\u00e9e" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6950843762700894208,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce ne sera pas la meilleure nouvelle de la journ\u00e9e, mais voici un titre de journal qu'il faut s'attendre \u00e0 voir de plus en plus souvent \u00e0 l'avenir. \n\nCela fait presque un an qu'une large partie de l'Europe (dont la France) est en d\u00e9ficit de pr\u00e9cipitations, et assez logiquement cela engendre des conditions plus s\u00e8ches. Malheureusement pour nous, ce d\u00e9ficit de pluie annonce un \"nouveau normal\", dans lequel le pourtour du bassin m\u00e9diterran\u00e9en va recevoir de moins en moins d'eau du ciel. C'est une cons\u00e9quence de modification de la circulation atmosph\u00e9rique \u00e0 large \u00e9chelle qui prend place aux tropiques et qui s'appelle la cellule de Hadley (https://lnkd.in/e3dTa_vw). \n\nDans un climat qui se r\u00e9chauffe, l'\u00e9vaporation \u00e0 l'\u00e9quateur va \u00eatre plus vigoureuse, et cela va engendrer un petit d\u00e9calage vers les p\u00f4les de la zone de subsidence (la \"redescente\" d'air sec) qui prend place aux tropiques. Question pr\u00e9cipitations, l'Afrique du Nord va ressembler un peu plus \u00e0 l'Afrique sah\u00e9lienne, et l'Europe du sud un peu plus \u00e0 l'Afrique du Nord.\n\nEn plus, avec l'augmentation des temp\u00e9ratures, le sol s'ass\u00e8cherait un peu quand bien m\u00eame il pleuvrait toujours autant. En effet, ces temp\u00e9ratures augment\u00e9es engendrent une \u00e9vapotranspiration (l'\u00e9vaporation des v\u00e9g\u00e9taux) qui augmente, et une \u00e9vaporation directe depuis le sol qui augmente aussi.\n\nL'eau, c'est la vie. Moins d'eau va donc rendre la vie plus compliqu\u00e9e \u00e0 plein d'endroits. La v\u00e9g\u00e9tation pousse moins vite et les cultures seront moins productives (voire impossibles et il faut cultiver autre chose, mais la limite du rendement reste), les for\u00eats vont mourir pour partie et les remplacer ne se fait pas en une semaine, les argiles des sols vont se r\u00e9tracter mettant en p\u00e9ril b\u00e2timents et infrastructures, les rivi\u00e8res vont voir leur d\u00e9bit baisser voire parfois se tarir et les activit\u00e9s industrielles qui en d\u00e9pendent seront diminu\u00e9es ou arr\u00eat\u00e9es, etc...\n\nIn fine beaucoup moins d'eau c'est une civilisation qui peut s'\u00e9crouler. Nous n'en sommes pas encore l\u00e0, mais par contre il est urgent de s'occuper un peu plus s\u00e9rieusement du sujet.\nLes personnes qui ont 20 ans aujourd'hui (mais qui ne votent pas) ont malheureusement de bonnes chances d'avoir des probl\u00e8mes s\u00e9rieux avec le changement climatique et les autres limites plan\u00e9taires bien plus t\u00f4t qu'avec les retraites... qui est pourtant la priorit\u00e9 du moment (parce que les vieux votent). Et dans cette affaire les regrets ne nous serviront \u00e0 rien." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6950843762700894208,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6950843763405541376,urn:li:activity:6950843763405541376,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 61, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6950843763405541376,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6950843763405541376,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6950843763405541376", + "threadId": "activity:6950843763405541376", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6950843763405541376", + "urn": "urn:li:activity:6950843763405541376", + "numComments": 156, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6950843763405541376", + "reactionTypeCounts": [ + { + "count": 2236, + "reactionType": "LIKE" + }, + { + "count": 278, + "reactionType": "INTEREST" + }, + { + "count": 253, + "reactionType": "MAYBE" + }, + { + "count": 63, + "reactionType": "APPRECIATION" + }, + { + "count": 41, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6950843763405541376", + "numLikes": 2878, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6950843763405541376", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2878, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6950720484699201537,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6950720484699201537", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6950720484699201537)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6950720484699201537)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sobri%C3%A9t%C3%A9-ou-pouvoir-dachat-il-faut-choisir-activity-6950720484699201537-RSd8?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6950720483973599233", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6950720484699201537", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6950720484699201537,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6950720484699201537,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6950720483973599233", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "gqmS7opcwRVp9blTR0su7w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6950720484699201537,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8881328626066816721", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675924898559?e=1677240000&v=beta&t=CwfqZzrgmKRuUGuBiZmY-90F_0md5RDKig7id1yAQ3I", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675924898559?e=1677240000&v=beta&t=oM7zxynj9jYZ06IgtVrbXBdFqeCv3bgRwrGm7WQF5fg", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675924898559?e=1677240000&v=beta&t=HYqOto88cYNnxuJrRlOv6T56S03iT2iPXpd4u5mDFeU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675924898559?e=1677240000&v=beta&t=sJ6dmUeXxCZ5mz2w-tflg7gcNqwyz__HTIdfuTA05o0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHkEPkT3vkWeQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8881328626066816721)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8881328626066816721)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Sobri\u00e9t\u00e9 ou pouvoir d'achat, il faut choisir by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/sobriete-ou-pouvoir-dachat-il-faut-choisir-1774827" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Sobri\u00e9t\u00e9 ou pouvoir d'achat, il faut choisir" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6950720483973599233,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il appuie l\u00e0 o\u00f9 ca fait mal, et fait au passage des suggestions de gouvernance qui se discutent, mais Gaspard Koenig pose une question essentielle dans cette tribune pour Les Echos. Peut-on concilier augmentation du pouvoir d'achat et baisse de la pression sur l'environnement, une martingale que la quasi-totalit\u00e9 de la classe politique propose actuellement ?\n\nLe pouvoir d'achat se d\u00e9finit, rappelle l'auteur, par \"le volume de biens et services qu'un revenu permet d'acheter\". Pour que ce pouvoir d'achat augmente, il faut donc que la production de biens et services par personne et par an augmente.\n\nOr, pour produire des biens et services, il faut physiquement transformer des ressources naturelles (https://bit.ly/3Raa74d ). De ce fait, pour pouvoir acheter chaque ann\u00e9e plus de m\u00e8tres carr\u00e9s de logement, de tonnes de voiture, de places de cin\u00e9ma, de billets de trains, de pantalons ou de tuyaux d'arrosage, il faut en produire plus et donc augmenter les pr\u00e9l\u00e8vements et la transformation.\n\nL'\u00e9quation de Kaya (https://bit.ly/3AzgbgQ ) permet alors de mettre \"l'\u00e9conomie\" et la physique dans un m\u00eame raisonnement, et, au regard des \u00e9volutions pass\u00e9es, de se demander si on pourra \"d\u00e9coupler\", c'est \u00e0 dire augmenter le pouvoir d'achat et pr\u00e9server l'environnement en m\u00eame temps. Toute personne un peu honn\u00eate h\u00e9sitera fortement avant d'affirmer que la r\u00e9ponse sera oui...\n\nDans mon cours \u00e0 Mines Paris (https://bit.ly/3Isn8lK ), je distingue 3 mani\u00e8res d'\u00e9conomiser de l'\u00e9nergie (et donc de limiter la pression sur l'environnement) :\n- l'efficacit\u00e9 est l'action qui permet de b\u00e9n\u00e9ficier du m\u00eame service tout en utilisant moins d'\u00e9nergie (je conduis la m\u00eame voiture sur la m\u00eame distance mais la voiture a un moteur plus efficace). En pratique c'est l'am\u00e9lioration du fonctionnement des machines mais pas la baisse du nombre de ces derni\u00e8res. Sa mise en oeuvre est compatible avec la croissance et l'effort ne repose que sur les producteurs.\n- la sobri\u00e9t\u00e9 consiste \u00e0 se passer d\u00e9lib\u00e9r\u00e9ment d'un produit ou service (j'abandonne volontairement la voiture pour des modes collectifs ou actifs). Puisque je n'ach\u00e8te plus il n'est plus n\u00e9cessaire de produire... et c'est donc r\u00e9cessif. L'effort repose sur le consommateur, mais ce dernier choisit. Puisqu'il ach\u00e8te moins il peut gagner moins.\n- la pauvret\u00e9 est le fait de se passer d'un produit ou service \"juste parce qu'on ne peut plus\" : je n'ai plus le moyen de faire le plein mais je n'avais aucune intention de conduire moins. L'effort repose aussi sur le consommateur, mais de mani\u00e8re subie. Tout comme la sobri\u00e9t\u00e9, elle est r\u00e9cessive puisque la production n'a plus lieu.\n\nAugmenter le pouvoir d'achat de 1% par an tout en respectant la baisse des \u00e9missions \u00e0 la bonne vitesse (5% par an) est parier sur une baisse de 6% par an du CO2 par unit\u00e9 de PIB (elle n'a jamais fait mieux que 1% environ sur p\u00e9riode longue). Koenig a raison de demander si c'est pertinent de promettre l'accord de Paris sans baisse choisie ou subie du pouvoir d'achat." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6950720483973599233,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6950720484699201537,urn:li:activity:6950720484699201537,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 244, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6950720484699201537,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6950720484699201537,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6950720484699201537", + "threadId": "activity:6950720484699201537", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6950720484699201537", + "urn": "urn:li:activity:6950720484699201537", + "numComments": 381, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6950720484699201537", + "reactionTypeCounts": [ + { + "count": 4533, + "reactionType": "LIKE" + }, + { + "count": 619, + "reactionType": "MAYBE" + }, + { + "count": 600, + "reactionType": "INTEREST" + }, + { + "count": 117, + "reactionType": "PRAISE" + }, + { + "count": 29, + "reactionType": "APPRECIATION" + }, + { + "count": 25, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6950720484699201537", + "numLikes": 5923, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6950720484699201537", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5923, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6950325399868342272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6950325399868342272", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6950325399868342272)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6950325399868342272)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_why-is-amsterdams-schiphol-airport-limiting-activity-6950325399868342272-lXSW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6950325399142727680", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6950325399868342272", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6950325399868342272,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6950325399868342272,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6950325399142727680", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "72V/7/g2vN+Ewig1bfLzxQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6950325399868342272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8364467777645285726", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675820019075?e=1677240000&v=beta&t=gFTIYYTT1TRfyzG94aToLyBWHeH16fypfPytsQ8RRNU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675820019075?e=1677240000&v=beta&t=LgoRj5zvD-i5DvVxqNLsx1DOHEU1FK3w7ZgBLCBZP2M", + "expiresAt": 1677240000000, + "height": 563 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675820019075?e=1677240000&v=beta&t=Oc9JE7PuYEW36DQRgxPmGQIebpZZgfBmrRIrFxiIOPc", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675820019075?e=1677240000&v=beta&t=sp4Jup-Dm47UnPe771k2OjWO1tcjjZq3bCaTFQx8oAw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFmqiUZ5VPSgg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8364467777645285726)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8364467777645285726)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "euronews.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Why is Amsterdam's Schiphol airport limiting flight numbers? by euronews.com", + "actionTarget": "http://www.euronews.com/green/2022/06/27/amsterdams-schiphol-airport-becomes-first-in-the-world-to-cap-flights-to-limit-emissions" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Why is Amsterdam's Schiphol airport limiting flight numbers?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6950325399142727680,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 418, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:65525487", + "entityUrn": "urn:li:fs_miniCompany:65525487", + "name": "A\u00c9RO D\u00c9CARBO", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1632124851859?e=1684972800&v=beta&t=mPqBCEHb8iWqELNJG9bQXVELZNC4XCApGrlaId7_ixQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1632124851859?e=1684972800&v=beta&t=ZehY4fC1JjRd8Rcq1YPXQ0PFm_KemKatzCP-zEdqn64", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1632124851859?e=1684972800&v=beta&t=7KzqdHv_8SjezUgJiOMjgi4PXApGI-2VqJjBzgOxGYo", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGeJYGC8wwvNw/company-logo_" + } + }, + "universalName": "aero-decarbo", + "dashCompanyUrn": "urn:li:fsd_company:65525487", + "trackingId": "JCcC0MoGSgiVSSmQlGfocQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Pour prendre sa part dans une d\u00e9crue des \u00e9missions plan\u00e9taires permettant de limiter le r\u00e9chauffement climatique \u00e0 2\u00b0C, le secteur a\u00e9rien doit accepter une diminution du trafic, m\u00eame en \u00e9tant tr\u00e8s optimiste sur les avanc\u00e9es techniques qui seront r\u00e9alis\u00e9es \u00e0 l'avenir. \n\nC'\u00e9tait une des conclusions du rapport \"voler en 2050\" que The Shift Project a publi\u00e9 il y a un peu plus d'un an en collaboration avec le collectif A\u00c9RO D\u00c9CARBO, un collectif d'ing\u00e9nieurs du secteur engag\u00e9s pour la cause climatique (https://lnkd.in/d3h_4QA). Parmi les conclusions il en figurait une int\u00e9ressante : plus la d\u00e9cision de baisser le trafic serait tardive, plus les cons\u00e9quences sur l'emploi du secteur seraient importantes.\n\nPour obtenir cette baisse, la mesure qui est la plus souvent imagin\u00e9e est de taxer le k\u00e9ros\u00e8ne. Mais The Shift Project a imagin\u00e9 une autre possibilit\u00e9 : \u00e9tablir des quotas d\u00e9croissants sur les mouvements d'avions dans les a\u00e9roports. Cette derni\u00e8re mesure est \u00e0 la main des \u00e9tats, qui peuvent le faire sans r\u00e9viser le moindre trait\u00e9 (alors que la taxation du carburant demande probablement de le faire). \n\nLa preuve que cela est possible ? L'a\u00e9roport d'Amsterdam-Schipol vient de le faire, en limitant les mouvements \u00e0 un niveau inf\u00e9rieur de 11% \u00e0 celui pr\u00e9-covid. Certes la d\u00e9cision gouvernementale ne mentionne pas les \u00e9missions de CO2 (https://lnkd.in/e2JBYV8Y ). Mais elle prouve qu'il est politiquement et techniquement possible de suivre cette voie d'un plafond sur les d\u00e9collages et atterrissages (en fait le quota sur les d\u00e9collages suffit !).\n\nPuisque la transition est officiellement notre grande affaire, et que les chiffres montrent que l'on ne pourra pas faire l'\u00e9conomie d'une baisse du trafic pour avoir une aviation \"compatible Accord de Paris\", il serait de bon ton de mettre cette mesure en vigueur en France aussi. De toute fa\u00e7on la d\u00e9crue amorc\u00e9e du p\u00e9trole en Europe va nous forcer \u00e0 arbitrer de mani\u00e8re croissante les combustibles liquides restants entre avions et voitures..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6950325399142727680,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6950325399868342272,urn:li:activity:6950325399868342272,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 101, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6950325399868342272,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6950325399868342272,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6950325399868342272", + "threadId": "activity:6950325399868342272", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6950325399868342272", + "urn": "urn:li:activity:6950325399868342272", + "numComments": 282, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6950325399868342272", + "reactionTypeCounts": [ + { + "count": 2465, + "reactionType": "LIKE" + }, + { + "count": 210, + "reactionType": "MAYBE" + }, + { + "count": 167, + "reactionType": "PRAISE" + }, + { + "count": 97, + "reactionType": "INTEREST" + }, + { + "count": 38, + "reactionType": "APPRECIATION" + }, + { + "count": 20, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6950325399868342272", + "numLikes": 2997, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6950325399868342272", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2997, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6949973471242145792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6949973471242145792", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6949973471242145792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6949973471242145792)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-nomination-du-gouvernement-d%C3%A9lisabeth-activity-6949973471242145792-7yY6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6949973470491373568", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6949973471242145792", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6949973471242145792,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6949973471242145792,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6949973470491373568", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "R2+4F7TKz3eHWzdmFP6TXA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6949973471242145792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7445147701596269476", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676621840358?e=1677240000&v=beta&t=HKlQRJClvpWTw7YSVpxA0luJRR-BR7DlTmImRUqMsHo", + "expiresAt": 1677240000000, + "height": 448 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676621840359?e=1677240000&v=beta&t=FgLp2wxK1wgDdWRUSmkmC_t2TpBRSsJo2fDyz9qgn0Y", + "expiresAt": 1677240000000, + "height": 718 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676621840359?e=1677240000&v=beta&t=XmZfRA2ci3gwsuohRkMIlohmYhkRSURHgJ1xLnSTrL8", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676621840359?e=1677240000&v=beta&t=xeuBW1VKLpKq_nhCN9igkSoAXmZTC8HxaQSYdCekWAs", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFayBFQLOE5EQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.56 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Les membres du Gouvernement d'\u00c9lisabeth Borne photographi\u00e9s le 4 juillet 2022." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7445147701596269476)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7445147701596269476)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "gouvernement.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La nomination du Gouvernement d'\u00c9lisabeth Borne by gouvernement.fr", + "actionTarget": "https://www.gouvernement.fr/actualite/nomination-du-gouvernement-delisabeth-borne" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La nomination du Gouvernement d'\u00c9lisabeth Borne" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6949973470491373568,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 656, + "length": 15, + "miniProfile": { + "firstName": "Elisabeth", + "lastName": "BORNE", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAb0YewBAqka1YPf0s5nR5V2WqKbzK0zS4M", + "occupation": "Premi\u00e8re ministre", + "objectUrn": "urn:li:member:116679148", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAb0YewBAqka1YPf0s5nR5V2WqKbzK0zS4M", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1655129346943?e=1681948800&v=beta&t=SM9DOd-ICAdYaqw-Lqh7R-pSmoQWnfpwA3ZaHL-UOgM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1655129346943?e=1681948800&v=beta&t=TA5tfq8dh6WIv3lSYEC5zvZp35sPO4uNgOcwx68sSiQ", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG1qSej3Fy15A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "elisabeth-borne-7a40aa33", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1609849416708?e=1681948800&v=beta&t=8-YS5vyv2r3kjzbhdpreP5rr0iDcQY-a8_p9qGVFX8A", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1609849416708?e=1681948800&v=beta&t=c4kHwvc0So7wzOnoK-4P7o2ywmSiUAKRz8JEQjNxbhY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1609849416708?e=1681948800&v=beta&t=ImHFnBOjmYdqZye05q7s-L4Qy51tKsNR1mqpd-uzRns", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1609849416708?e=1681948800&v=beta&t=MdZPY6infpSh5gV0YWqQ5DWvoYJ9QAtuhL2TfQaMJKg", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHYkExuPDHEBA/profile-displayphoto-shrink_" + } + }, + "trackingId": "aXZUZUvdSMShTPpC8+C22g==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Ils arrivent en 10\u00e8 et 11\u00e8 position. \"Ils\", ce ne sont pas les coureurs du tour de France lors de la premi\u00e8re \u00e9tape, mais les ministres charg\u00e9s de l'\u00e9cologie et de la transition \u00e9nerg\u00e9tique dans l'ordre protocolaire du nouveau gouvernement. \n\nLorsque Sarkozy avait voulu marquer le coup pour lancer le Grenelle de l'Environnement, le ministre en charge de l'\u00e9cologie avait re\u00e7u le titre de ministre d'Etat, et arrivait en 2\u00e8 position dans l'ordre protocolaire, juste derri\u00e8re le premier ministre. Fondamentalement, cet ordre ne change pas les choses : on est plus dans le registre du symbole que dans celui de la hi\u00e9rarchie stricte. \n\nPar ailleurs, puisqu'Elisabeth BORNE elle-m\u00eame porte le titre de \"Premi\u00e8re ministre, charg\u00e9e de la Planification \u00e9cologique et \u00e9nerg\u00e9tique\", on peut penser que cette affaire de transition occupe d\u00e9j\u00e0 la marche la plus haute du dispositif.\n\nEn fait, plus que l'ordre protocolaire, ce qui va d\u00e9j\u00e0 compter un peu plus sera la r\u00e9daction des d\u00e9crets d'attribution des ministres du nouveau gouvernement. Dans la version Borne I, ces d\u00e9crets ne faisaient pas r\u00e9f\u00e9rence \u00e0 un quelconque objectif de d\u00e9carbonation ou de respect des limites plan\u00e9taires. \n\nLe ministre de l'\u00e9conomie \u00e9tait charg\u00e9 de \"promouvoir la croissance et la comp\u00e9titivit\u00e9 de l'\u00e9conomie fran\u00e7aise\", par exemple, et pas du tout \"promouvoir un syst\u00e8me productif et une \u00e9conomie durables, d\u00e9carbon\u00e9s, r\u00e9silients et comp\u00e9titifs\". \n\nTout comme l'ordre protocolaire, l'\u00e9nonc\u00e9 des objectifs de ces d\u00e9crets d'attribution reste aussi dans le champ symbolique. Il n'est par exemple pas possible de faire un proc\u00e8s \u00e0 un ministre au motif qu'il ne respecte pas les objectifs de ce d\u00e9cret.\n\nMais la symbolique, en politique, c'est important. C'est autour de l'\u00e9nonc\u00e9 d'objectifs communs que les peuples peuvent se rassembler... ou pas. \n\nA l'heure o\u00f9 une fraction croissante de la population fran\u00e7aise se retrouve autour de l'importance qu'il faut accorder \u00e0 la question environnementale, j'esp\u00e8re donc que les nouveaux d\u00e9crets, qui ne devraient pas tarder, ne r\u00e9it\u00e8reront pas le manque qui \u00e9tait pr\u00e9sent dans la premi\u00e8re version. Le remaniement pourrait \u00e0 tout le moins servir \u00e0 \u00e7a !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6949973470491373568,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6949973471242145792,urn:li:activity:6949973471242145792,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6949973471242145792,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6949973471242145792,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6949973471242145792", + "threadId": "activity:6949973471242145792", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6949973471242145792", + "urn": "urn:li:activity:6949973471242145792", + "numComments": 50, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6949973471242145792", + "reactionTypeCounts": [ + { + "count": 1107, + "reactionType": "LIKE" + }, + { + "count": 81, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "PRAISE" + }, + { + "count": 32, + "reactionType": "INTEREST" + }, + { + "count": 27, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6949973471242145792", + "numLikes": 1296, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6949973471242145792", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1300, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6949619521150189568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6949619521150189568", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6949619521150189568)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6949619521150189568)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-d%C3%A9cision-r%C3%A9cente-de-la-cour-supr%C3%AAme-am%C3%A9ricaine-activity-6949619521150189568-17Yn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6949619520118390784", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6949619521150189568", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6949619521150189568,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6949619521150189568,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6949619520118390784", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "jFBLHprPVC8Ehzd1pZcKoQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6949619521150189568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGL7PaYLCN60A", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGL7PaYLCN60A", + "artifacts": [ + { + "width": 1604, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1656918408968?e=1679529600&v=beta&t=e6Z8UI8SX7MmMwIpTIMhqzk8Sk3OkM5SlkY9NUg4dbY", + "expiresAt": 1679529600000, + "height": 1017 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1656918410232?e=1679529600&v=beta&t=ySxLxxHX1xrXkkTEe8ZMOccE91cXDF6ml_RL6eV9Ez8", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1656918410232?e=1679529600&v=beta&t=kwK1SlfG_tEUQFe2H1adbi3FW50wDukB-1Z9_YTWu8k", + "expiresAt": 1679529600000, + "height": 812 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1656918410232?e=1679529600&v=beta&t=LMhFU6FfxVQ-qRKT-8WkutcZLD2FVp6NdrIeGNaM9rw", + "expiresAt": 1679529600000, + "height": 304 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1656918410232?e=1679529600&v=beta&t=5PHOAazmtkTniJ7zKQjnKbIvjad8YxSGBehxMgrJaKw", + "expiresAt": 1679529600000, + "height": 101 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1656918410232?e=1679529600&v=beta&t=PgKNoFEmaq88FTYQGkMQlqhde-NiN5Hw-C1aGjr-zbg", + "expiresAt": 1679529600000, + "height": 507 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGL7PaYLCN60A/feedshare-shrink_" + }, + "displayAspectRatio": 0.6340399002493765 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, line chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6949619520118390784,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Une d\u00e9cision r\u00e9cente de la Cour supr\u00eame am\u00e9ricaine a un peu chagrin\u00e9 les \"d\u00e9fenseurs du climat\", en limitant la capacit\u00e9 de l'ex\u00e9cutif \u00e0 r\u00e9glementer les \u00e9missions des centrales \u00e0 charbon via l'Environment Protection Agency. \n\nPar ailleurs, nombreux sont les europ\u00e9ens \u00e0 saluer l'arriv\u00e9e d'un pr\u00e9sident d\u00e9mocrate et \u00e0 regretter l'arriv\u00e9e d'un r\u00e9publicain, au motif (r\u00e9el) que le premier a un discours plus offensif sur le climat.\n\nMais si l'on regarde les \u00e9missions de CO2 des USA sur tendance longue, il devient bien difficile de relier ces derni\u00e8res \u00e0 des changements de locataire de la Maison Blanche. Les chiffres de 2021 de BP Statistical Review (https://lnkd.in/g8mECyV ) venant de sortir, je profite de la mise \u00e0 jour pour publier l'\u00e9volution des \u00e9missions de ce pays depuis 1965.\n\nDepuis 2006, on constate que 2009 (crise financi\u00e8re) et 2020 (covid) ne fournissent que des indentations sur une tendance de baisse r\u00e9guli\u00e8re d\u00e9marr\u00e9e en 2006, que ce soit Obama, Trump ou Biden qui si\u00e8gent au Capitole. \n\nEn Europe (voir graphique en commentaire), la baisse d\u00e9marre... exactement au m\u00eame moment, presque comme au Japon (idem). \n\nL'explication doit donc se trouver ailleurs que dans les discours, hostiles ou martiaux, tenus au sommet des ex\u00e9cutifs (lequel est par ailleurs particuli\u00e8rement faible aux USA). \n\nQuand on regarde d'un peu pr\u00e8s, le seul \u00e9v\u00e9nement qui semble avoir jou\u00e9 r\u00e9ellement un r\u00f4le est... le pic de production du p\u00e9trole conventionnel en 2008 selon l'agence internationale de l'\u00e9nergie (2006 disaient d'autres experts de moi connus). \n\nCela rappelle que la \"transition\" se fera, \u00e0 marche forc\u00e9e pour des causes g\u00e9ologiques, si ce n'est volontairement par le fruit de notre volont\u00e9. Dans le premier cas, cela se manifestera par exemple par des \"explosions\" p\u00e9riodiques du prix de l'\u00e9nergie (voir \u00e0 ce titre https://lnkd.in/errjjMa7 ), dans un contexte de PIB contraint \u00e0 la baisse, l'ensemble prenant au d\u00e9pourvu les pouvoirs d\u00e9mocratiques occidentaux qui n'ont jamais envisag\u00e9 cette hypoth\u00e8se contraire \u00e0 toute promesse \u00e9lectorale qui se respecte." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6949619520118390784,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6949619521150189568,urn:li:activity:6949619521150189568,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 44, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6949619521150189568,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6949619521150189568,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6949619521150189568", + "threadId": "activity:6949619521150189568", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6949619521150189568", + "urn": "urn:li:activity:6949619521150189568", + "numComments": 73, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6949619521150189568", + "reactionTypeCounts": [ + { + "count": 690, + "reactionType": "LIKE" + }, + { + "count": 117, + "reactionType": "INTEREST" + }, + { + "count": 83, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6949619521150189568", + "numLikes": 896, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6949619521150189568", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 896, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6949295332262330368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6949295332262330368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6949295332262330368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6949295332262330368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_assembl%C3%A9e-nationale-pourquoi-la-formation-activity-6949295332262330368-l5Sb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6949295331268284416", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6949295332262330368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6949295332262330368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6949295332262330368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6949295331268284416", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "PPlHf1zaXUafjSBM7JsLYg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6949295332262330368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9210570699702369102", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675884238983?e=1677240000&v=beta&t=npqRTqVzPvHtfU1nZEBs0awO-JBGESzGHDTwbfsf140", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675884238983?e=1677240000&v=beta&t=k7IVXcDN9TNWjwUvNQ2JQTPBC0fOATyHaJAlv4485To", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675884238983?e=1677240000&v=beta&t=39lQ_J0CJOoMBqxxiy4Q23tFpJM6PZdiSPD8SBSdAa4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675884238983?e=1677240000&v=beta&t=_4MAxVT49-xh066yjFYIqjU1sqfP-GaiAH0XG39IXRo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFKaJpzWa-UnA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9210570699702369102)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9210570699702369102)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Assembl\u00e9e nationale : pourquoi la formation des nouveaux d\u00e9put\u00e9s aux enjeux climatiques est essentielle by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900169325-assemblee-nationale-pourquoi-la-formation-des-nouveaux-deputes-aux-enjeux-climatiques-est-essentielle" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Assembl\u00e9e nationale : pourquoi la formation des nouveaux d\u00e9put\u00e9s aux enjeux climatiques est essentielle" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6949295331268284416,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 2409, + "length": 15, + "miniProfile": { + "firstName": "Elisabeth", + "lastName": "BORNE", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAb0YewBAqka1YPf0s5nR5V2WqKbzK0zS4M", + "occupation": "Premi\u00e8re ministre", + "objectUrn": "urn:li:member:116679148", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAb0YewBAqka1YPf0s5nR5V2WqKbzK0zS4M", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1655129346943?e=1681948800&v=beta&t=SM9DOd-ICAdYaqw-Lqh7R-pSmoQWnfpwA3ZaHL-UOgM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1655129346943?e=1681948800&v=beta&t=TA5tfq8dh6WIv3lSYEC5zvZp35sPO4uNgOcwx68sSiQ", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG1qSej3Fy15A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "elisabeth-borne-7a40aa33", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1609849416708?e=1681948800&v=beta&t=8-YS5vyv2r3kjzbhdpreP5rr0iDcQY-a8_p9qGVFX8A", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1609849416708?e=1681948800&v=beta&t=c4kHwvc0So7wzOnoK-4P7o2ywmSiUAKRz8JEQjNxbhY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1609849416708?e=1681948800&v=beta&t=ImHFnBOjmYdqZye05q7s-L4Qy51tKsNR1mqpd-uzRns", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1609849416708?e=1681948800&v=beta&t=MdZPY6infpSh5gV0YWqQ5DWvoYJ9QAtuhL2TfQaMJKg", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHYkExuPDHEBA/profile-displayphoto-shrink_" + } + }, + "trackingId": "aXZUZUvdSMShTPpC8+C22g==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Les vacances rappellent aussi, pour certain(e)s d'entre nous... les devoirs de vacances. Lors de ma derni\u00e8re chronique sur RTL avant d'aller faire les miens, j'ai sugg\u00e9r\u00e9 aux membres de la nouvelle Assembl\u00e9e nationale de profiter de l'\u00e9t\u00e9 pour piocher les enjeux \u00e9nergie-climat.\n\nCertes, une partie du parlement a pris un peu d'avance r\u00e9cemment, mais pas tant que cela. Une session de \"formation\" a en effet \u00e9t\u00e9 propos\u00e9e aux nouveaux d\u00e9put\u00e9(e)s, assur\u00e9e en pratique par des scientifiques travaillent dans le domaine du climat ou de la biodiversit\u00e9. 154 parlementaires sur 577 (soit un quart) sont venus suivre une petite demi-heure de formation sur le sujet. \n\nPour les absents, tout reste \u00e0 faire. Pour les autres, on ne peut pas consid\u00e9rer que l'acquisition des connaissances soit termin\u00e9e ! A 4 exceptions pr\u00e8s, celles et ceux qui sont venus appartenaient \u00e0 la majorit\u00e9 pr\u00e9sidentielle et \u00e0 la Nupes (https://yhoo.it/3yapZeh ). Il y a donc eu un \"refus d'obstacle\" quasi-total de la part des \u00e9lus RN et LR pour parler de faits, et cela est ennuyeux.\n\nAux USA, l'opposition entre d\u00e9mocrates et r\u00e9publicains sur la question du climat va jusqu'\u00e0 remettre les faits en cause quand on appartient au deuxi\u00e8me camp. C'est bien \u00e9videmment le jeu de l'opposition entre partis qui conduit les r\u00e9publicains \u00e0 contester non la mani\u00e8re de g\u00e9rer le probl\u00e8me, mais le probl\u00e8me lui-m\u00eame.\n\nEt, bien \u00e9videmment, d\u00e8s lors que les faits sont contest\u00e9s, les mesures propos\u00e9es ensuite ne peuvent permettre de se d\u00e9barrasser du probl\u00e8me. Dans \"Don't Look Up\", nier que la com\u00e8te a le pouvoir de d\u00e9truire la terre ne l'emp\u00eachera pas de le faire !\n\nIl serait d\u00e9l\u00e9t\u00e8re que le clivage politique fran\u00e7ais nous conduise \u00e0 la m\u00eame situation : la n\u00e9gation des faits par une partie importante des \u00e9lus. Que les bords politiques s'opposent sur la conduite \u00e0 tenir, c'est normal. Mais qu'un bord politique remette en cause la description des propri\u00e9t\u00e9s physiques du CO2, les \u00e9tudes sur l'\u00e9volution de l'humidit\u00e9 des sols en France, ou les travaux sur la disponibilit\u00e9 future des hydrocarbures sous contrainte g\u00e9ologique, ce serait une tr\u00e8s bonne mani\u00e8re d'en rajouter au malheur des citoyens qu'ils sont cens\u00e9s d\u00e9fendre, et non leur rendre service.\n\nJ'esp\u00e8re donc que les \"devoirs de vacances\" que je sugg\u00e8re dans cette chronique seront effectu\u00e9s. Il restera suffisamment de sujets sur lesquels s'affronter par ailleurs.\n\nPS : la d\u00e9cision d'Elisabeth BORNE d'accepter le principe d'une formation pour les ministres, les cabinets et un grand nombre de hautes fonctionnaires (https://bit.ly/3OU5skI ) est une excellente chose. A ma modeste \u00e9chelle, je peux proposer au public concern\u00e9 les 4 premiers modules de mon cours \u00e0 Mines Paris, accessibles \u00e0 l'ensemble du public vis\u00e9 (et pour pas un liard en plus). Ils sont disponibles l\u00e0 en version \"planches en bonne d\u00e9finition + son\" : https://bit.ly/3R8MkkS (sinon l\u00e0 : https://bit.ly/3NNaX44 ). Apr\u00e8s, pour la consid\u00e9rable somme de 27 \u20ac, il reste une certaine BD :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6949295331268284416,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6949295332262330368,urn:li:activity:6949295332262330368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6949295332262330368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6949295332262330368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6949295332262330368", + "threadId": "activity:6949295332262330368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6949295332262330368", + "urn": "urn:li:activity:6949295332262330368", + "numComments": 74, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6949295332262330368", + "reactionTypeCounts": [ + { + "count": 1049, + "reactionType": "LIKE" + }, + { + "count": 53, + "reactionType": "PRAISE" + }, + { + "count": 39, + "reactionType": "APPRECIATION" + }, + { + "count": 24, + "reactionType": "MAYBE" + }, + { + "count": 16, + "reactionType": "EMPATHY" + }, + { + "count": 16, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6949295332262330368", + "numLikes": 1197, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6949295332262330368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1197, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 Edited \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6948927921524781056,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6948927921524781056", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6948927921524781056)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6948927921524781056)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-discours-de-r%C3%A9volte-des-jeunes-dipl%C3%B4m%C3%A9s-activity-6948927921524781056-MYpY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6948927920753008640", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6948927921524781056", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6948927921524781056,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6948927921524781056,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6948927920753008640", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "79UAycv1qLZYBwmRmOBjWg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6948927921524781056,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7507946892082713699", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 600, + "fileIdentifyingUrlPathSegment": "800/0/1675812657962?e=1677240000&v=beta&t=fLQXLToteu6Mb_wR_g2k74gg6q5V7ossc72kNZPe7I4", + "expiresAt": 1677240000000, + "height": 1067 + }, + { + "width": 449, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675812657962?e=1677240000&v=beta&t=JV8rX6H_xX_XP73bQ5MJWnMYC3Ip6wx4IXbpevvRnpQ", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675812657962?e=1677240000&v=beta&t=sGv68bAwveP26rf47rzGIKJNyUc2L2pBXKK2m32jcEY", + "expiresAt": 1677240000000, + "height": 284 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675812657962?e=1677240000&v=beta&t=huBOXSQbfxpeUZk39bhmHCiTvF1fNhq8tWTgXDkoIF0", + "expiresAt": 1677240000000, + "height": 853 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGEBjskNX2bjQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.7777777777777777 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7507946892082713699)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7507946892082713699)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "brut.media \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le discours de r\u00e9volte des jeunes dipl\u00f4m\u00e9s de Polytechnique | Brut. by brut.media", + "actionTarget": "https://www.brut.media/fr/nature/le-discours-de-revolte-des-jeunes-diplomes-de-polytechnique-fc1e73b2-369f-4f75-8ab5-e28edc69dda5" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le discours de r\u00e9volte des jeunes dipl\u00f4m\u00e9s de Polytechnique | Brut." + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6948927920753008640,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s d'autres jeunes dipl\u00f4m\u00e9s, mais tr\u00e8s certainement avant encore d'autres, des polytechniciens tout juste \u00e9moulus de l'Ecole invitent aussi \u00e0 revenir \u00e0 l'int\u00e9r\u00eat g\u00e9n\u00e9ral dans les choix de carri\u00e8re.\n\nPour l'X, cette question n'est pas que de pure forme. Depuis longtemps sa devise est \"Pour la patrie, les sciences et la gloire\". \"Pour la patrie\", pour moi, n'est \u00e9videmment pas l\u00e0 pour rappeler le r\u00e9gime de P\u00e9tain (du reste la devise date de bien avant) : c'est une invitation \u00e0 servir le pays, donc l'ensemble de nos concitoyen(ne)s ; cela s'appelle encore l'int\u00e9r\u00eat g\u00e9n\u00e9ral. \n\n\"Pour la gloire\" ne signifie pas plus qu'il vaut viser la notori\u00e9t\u00e9, mais au contraire que les int\u00e9r\u00eats personnels de pouvoir, de r\u00e9mun\u00e9ration ou de notori\u00e9t\u00e9 doivent \u00eatre vus comme secondaires au regard de l'int\u00e9r\u00eat intrins\u00e8que de ce que l'on fait. Il faut entreprendre - m\u00eame au sein de l'administration - sans rien esp\u00e9rer en retour que d'avoir fait quelque chose d'utile.\n\nEnfin \"pour la science\" n'est pas, enfin \u00e0 tout le moins pas pour moi, une mani\u00e8re de dire qu'il faut \u00e0 toute force travailler \u00e0 la cr\u00e9ation d'objets techniques. Il faut plut\u00f4t y voir que, quelle que soit la mani\u00e8re d'orienter l'action propos\u00e9e, il faut le faire en accord avec les faits. C'est une invitation \u00e0 proc\u00e9der dans l'ordre observer - comprendre - agir. \n\nDans le discours de mes jeunes camarades il y a autre chose que je trouve int\u00e9ressant : leur invitation faite aux alumnis (les anciens, donc ceux qui sont aux manettes actuellement) de s'occuper un peu plus s\u00e9rieusement des limites plan\u00e9taires.\n\nCar refuser, quand on est jeune dipl\u00f4m\u00e9, d'aller travailler du c\u00f4t\u00e9 obscur de la force est une (bonne) chose, mais cela ne remplace pas l'action r\u00e9solue de ceux qui ont le pouvoir actuellement, et ceux-l\u00e0 ne sont pas tout juste sortis d'\u00e9cole. Il est donc l\u00e9gitime que la g\u00e9n\u00e9ration des 20-25 ans demandent \u00e0 ceux qui en ont 30 \u00e0 40 de plus de \"s'engager\". \n\nA la fin du mandat de Macron II, il faudrait que les \u00e9missions plan\u00e9taires aient baiss\u00e9 de presque 25% pour \u00e9viter de tuer tous les coraux, de diminuer la production agricole m\u00e9diterran\u00e9enne de plusieurs dizaines de %, de tuer plusieurs dizaines de % de la for\u00eat fran\u00e7aise, et de placer un milliard d'\u00eatre humains dans des zones o\u00f9 il ne sera pas possible de sortir en ext\u00e9rieur sans se retrouver dans un hammam g\u00e9ant, au risque d'en mourir en quelques heures. Car tout cela se produit d\u00e9j\u00e0 dans un monde \u00e0 2\u00b0C, et \u00e9viter ce monde suppose de baisser les \u00e9missions plan\u00e9taires de 5% par an d\u00e8s maintenant.\n\nCe programme l\u00e0, il n'y a que ceux qui sont actuellement au pouvoir - ce qui va de ma g\u00e9n\u00e9ration \u00e0 celle juste en dessous - qui peuvent l'appliquer. Les jeunes ont raison de le rappeler, m\u00eame si c'est d\u00e9sagr\u00e9able pour celles et ceux qui re\u00e7oivent le message." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6948927920753008640,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6948927921524781056,urn:li:activity:6948927921524781056,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 161, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6948927921524781056,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6948927921524781056,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6948927921524781056", + "threadId": "activity:6948927921524781056", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6948927921524781056", + "urn": "urn:li:activity:6948927921524781056", + "numComments": 328, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6948927921524781056", + "reactionTypeCounts": [ + { + "count": 4696, + "reactionType": "LIKE" + }, + { + "count": 503, + "reactionType": "PRAISE" + }, + { + "count": 237, + "reactionType": "APPRECIATION" + }, + { + "count": 83, + "reactionType": "EMPATHY" + }, + { + "count": 79, + "reactionType": "MAYBE" + }, + { + "count": 43, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6948927921524781056", + "numLikes": 5641, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6948927921524781056", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5642, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6948570503372529664,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6948570503372529664", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6948570503372529664)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6948570503372529664)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_supreme-court-curbs-epas-ability-to-fight-activity-6948570503372529664-qme2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6948570502500110336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6948570503372529664", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6948570503372529664,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6948570503372529664,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6948570502500110336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "X5wqtoon+LZ4OcOd7+k39g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6948570503372529664,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8681268489751462577", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675799236221?e=1677240000&v=beta&t=uQ6KkyKobZm1_oAqYCKnZS8MqEScZEHivzB8e33lOOQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1100, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675799236221?e=1677240000&v=beta&t=ZLLMmr7BdACuWDixZtfJ7caBTkjkR0g5mG9DbjwClFM", + "expiresAt": 1677240000000, + "height": 619 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675799236221?e=1677240000&v=beta&t=UXk-7GKt_w6pFemO59z_KqTqvV-5PnCWMhGFIRmLlpA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675799236222?e=1677240000&v=beta&t=sVngupeYnplNN7qpFDbpe35Mxq904m31g0kVl7rZlHo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQH0uCsynhkQUA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8681268489751462577)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8681268489751462577)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "cnn.com \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Supreme Court curbs EPA's ability to fight climate change by edition.cnn.com", + "actionTarget": "https://edition.cnn.com/2022/06/30/politics/supreme-court-climate-change-epa-regulations/index.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Supreme Court curbs EPA's ability to fight climate change" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6948570502500110336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pendant des d\u00e9cennies apr\u00e8s la Lib\u00e9ration, les USA sont apparus comme le pays du \"mieux\". Ils nous ont lib\u00e9r\u00e9s des nazis, puis nous ont \"guid\u00e9s\" vers le monde moderne, de la machine \u00e0 laver \u00e0 la voiture, en passant par la conqu\u00eate de la lune et internet. \n\nNous avons imit\u00e9, souvent fascin\u00e9s, ce pays qui \u00e9tait \u00e0 l'\u00e9vidence le mod\u00e8le \u00e0 suivre (sauf pour De Gaulle parfois !). Mais, depuis quelques d\u00e9cennies, ce pays devient aussi de plus en plus l'incarnation des exc\u00e8s en tous genres et des choses \u00e0 ne pas faire. \n\nCar les \"USA\" c'est aussi des records d'ob\u00e9sit\u00e9 ou d'addictions, d'emprisonnement (quasiment 1% de la population est derri\u00e8re les barreaux), de brutalit\u00e9 militaire, d'homicides par armes \u00e0 feu, d'in\u00e9galit\u00e9s en tous genres, sans oublier l'enseignement qui fait passer les affaires de multinationales avant l'int\u00e9r\u00eat des enfants, le contr\u00f4le des opinions par les algorithmes des r\u00e9seaux sociaux (dit autrement Big Brother est bien apparu mais pas l\u00e0 o\u00f9 Orwell l'attendait !), ou... les premi\u00e8res r\u00e9serves de charbon au monde.\n\nC'est aussi un pays o\u00f9 le pouvoir f\u00e9d\u00e9ral est largement impuissant. Apr\u00e8s deux d\u00e9cisions sur l'avortement et les armes \u00e0 feu qui ram\u00e8nent chacune des d\u00e9cennies en arri\u00e8re, la Cour supr\u00eame de ce pays vient de changer la jurisprudence en ce qui concerne les agences f\u00e9d\u00e9rales en g\u00e9n\u00e9ral, et l'EPA en particulier. Cette derni\u00e8re ne pourra plus r\u00e9glementer - en l'esp\u00e8ce les \u00e9missions des centrales \u00e0 charbon - sans que le Congr\u00e8s lui ait explicitement donn\u00e9 le mandat de le faire.\n\nComme la modification du cadre l\u00e9gislatif aux USA est un processus qui prend \"des plombes\" (en 8 ans Obama n'y est pas arriv\u00e9 sur le CO2), \u00e0 cause des particularit\u00e9s du syst\u00e8me am\u00e9ricain, cette r\u00e9cente d\u00e9cision signifie en pratique que l'ex\u00e9cutif f\u00e9d\u00e9ral ne peut pas faire grand chose de rapide sur la question des \u00e9missions.\n\nLa Cour supr\u00eame actuelle est une pilule empoisonn\u00e9e laiss\u00e9e par Trump : ce dernier y avait nomm\u00e9 3 juges ultraconservateurs (https://bit.ly/3bKjLdD ), \u00e2g\u00e9s de 50, 54 et 57 ans. Rappelons que les juges y si\u00e8gent \u00e0 vie et ne sont en pratique pas r\u00e9vocables.\n\nIl est urgent de ne plus regarder les USA avec les yeux de Chim\u00e8ne. Dans le monde terriblement fini qui nous attend, ce pays n\u00e9 dans le monde infini, disposant des r\u00e9flexes, traits culturels et m\u00e9canismes de gouvernance du monde infini, devient de plus en plus un contre-exemple et non un exemple.\n\nDans ce pays, trop repose sur l'individu (cens\u00e9 pouvoir se sortir seul de toutes les situations ; la figure du super-h\u00e9ros incarnant cela \u00e0 l'extr\u00eame) et pas assez sur le collectif, et trop repose sur la technique et pas assez sur la sobri\u00e9t\u00e9.\n\nNous - les europ\u00e9ens et en particulier les fran\u00e7ais - devons imaginer notre propre avenir, non nous mettre dans la roue des am\u00e9ricains. Il ne s'agit pas de nous f\u00e2cher avec eux, juste de ne rien en attendre. Avec un peu de chance, nous motiverons m\u00eame des \u00e9tats particuliers (Californie et c\u00f4te Est) \u00e0 nous imiter, au lieu que ce soit l'inverse." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6948570502500110336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6948570503372529664,urn:li:activity:6948570503372529664,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 176, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6948570503372529664,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6948570503372529664,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6948570503372529664", + "threadId": "activity:6948570503372529664", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6948570503372529664", + "urn": "urn:li:activity:6948570503372529664", + "numComments": 297, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6948570503372529664", + "reactionTypeCounts": [ + { + "count": 3781, + "reactionType": "LIKE" + }, + { + "count": 371, + "reactionType": "PRAISE" + }, + { + "count": 265, + "reactionType": "MAYBE" + }, + { + "count": 111, + "reactionType": "INTEREST" + }, + { + "count": 82, + "reactionType": "APPRECIATION" + }, + { + "count": 69, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6948570503372529664", + "numLikes": 4679, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6948570503372529664", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4680, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6948164396997079040,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6948164396997079040", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6948164396997079040)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6948164396997079040)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_se-soumettre-aux-anglo-saxons-pour-les-activity-6948164396997079040-gBOg?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6948164395948503040", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6948164396997079040", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6948164396997079040,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6948164396997079040,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6948164395948503040", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "f92ZoIKY9qRg2ZqfhCpuDA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6948164396997079040,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8097469642180254423", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676328803522?e=1677240000&v=beta&t=5SRCziRPwR8nQJ-8vat7Uw-HDdzUQV1lh3OLEtpPTw0", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676328803522?e=1677240000&v=beta&t=QmMThDcpmjJYVJ-GkhkWc87UlHhRGmdmEVPxMPfggMg", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676328803522?e=1677240000&v=beta&t=hcnnI7M1fKP-dba311g2fGMGwLEX6yari-KXcOoaO6o", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676328803523?e=1677240000&v=beta&t=cHcu9XuAuIZ_HmENlzGfqua5GETpiLB1JjtL-mHzXtM", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGY-O6qgb9t1A/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8097469642180254423)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8097469642180254423)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab Se soumettre aux Anglo-Saxons pour les donn\u00e9es environnementales des entreprises est une erreur \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/idees/article/2022/06/30/se-soumettre-aux-anglo-saxons-pour-les-donnees-environnementales-des-entreprises-est-une-erreur_6132653_3232.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0Se soumettre aux Anglo-Saxons pour les donn\u00e9es environnementales des entreprises est une erreur\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6948164395948503040,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 235, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "4LC4OSsrSA6djJh25SRnlg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "D\u00e9but juin, Michael Bloomberg est venu voir notre pr\u00e9sident avec sa casquette de \"envoy\u00e9 sp\u00e9cial du secr\u00e9taire g\u00e9n\u00e9ral des Nations Unies pour l\u2019ambition et les solutions en faveur du climat\".\n\nQue souhaitait l'ami Michael ? Convaincre Emmanuel Macron de sa rallier \u00e0 son initiative de cr\u00e9ation d'un \"Comit\u00e9 directeur sur les donn\u00e9es li\u00e9es au climat\", dont l'objectif est de \"(...) normaliser les donn\u00e9es relatives \u00e0 la transition vers l\u2019objectif de z\u00e9ro \u00e9mission nette correspondant aux engagements pris par le secteur priv\u00e9 en faveur du climat\".\n\nEn pratique, cette initiative se situe dans le droit fil de la TCFD (https://www.fsb-tcfd.org/ ) - pr\u00e9sid\u00e9e par Michael Bloomberg - qui \"pousse\" les entreprises \u00e0 publier des informations relatives au climat tout en proposant la mani\u00e8re de faire.\n\nMichael a \u00e9t\u00e9 convaincant : l'Elys\u00e9e a publi\u00e9 le 3 juin un communiqu\u00e9 de presse annon\u00e7ant son soutien \u00e0 l'initiative : https://bit.ly/3R9EoQG\n\nSur le papier, l'affaire semble plaidable. Si les entreprises sont pouss\u00e9es \u00e0 publier des informations sur le climat, et que ces derni\u00e8res sont pertinentes et accessibles, cela permettra assur\u00e9ment aux \"parties prenantes\" (dont le monde financier) de faire des choix plus \u00e9clair\u00e9s.\n\nMais ... il y a un mais. Le communiqu\u00e9 de presse indique notamment que ce \"comit\u00e9 directeur\", charg\u00e9 de \"dire la loi\" en quelque sorte, \"r\u00e9unira des organisations internationales, des organismes de r\u00e9gulation, des responsables politiques et des prestataires de services de donn\u00e9es\". Et pour cette derni\u00e8re cat\u00e9gorie 4 noms seulement sont cit\u00e9s : Bloomberg LP, London Stock Exchange Group, Moody\u2019s, Morningstar, MSCI et S&P Global\n\nEn clair, Michael Bloomberg envoy\u00e9 sp\u00e9cial de l'ONU est venu demander \u00e0 Macron que Michael Bloomberg fournisseur de donn\u00e9es se fasse confier les cl\u00e9s du camion, \u00e0 lui et \u00e0 3 autres fournisseurs dont aucun n'est europ\u00e9en (puisque London London Stock Exchange Group n'est plus europ\u00e9en depuis le Brexit ; les 3 autres sont am\u00e9ricains), pour dire aux entreprises europ\u00e9ennes ce qu'elles doivent publier. Le secteur priv\u00e9 am\u00e9ricain vient donc demander \u00e0 la France son adh\u00e9sion pour normaliser la fourniture de donn\u00e9es climat en Europe, et notre pr\u00e9sident dit oui sans m\u00eame consulter les acteurs fran\u00e7ais !\n\nCe serait encore discutable si techniquement les am\u00e9ricains \u00e9taient meilleurs. Mais ce n'est pas le cas. En mati\u00e8re de donn\u00e9es climat, c'est la terre de naissance du bilan carbone, \u00e0 savoir la France, qui a 5 ans d'avance au moins sur les USA, m\u00eame si nous n'en faisons pas assez. Notre pr\u00e9sident plante donc un petit couteau dans le dos de l'\u00e9cosyst\u00e8me fran\u00e7ais, dont il ignore probablement l'existence parce que personne n'est riche \u00e0 milliards - heu pardon a fait une licorne - actuellement.\n\nDu coup, avec mes comp\u00e8res Alain Grandjean et Laurent Morel, nous avons publi\u00e9 une tribune un peu \u00e9nerv\u00e9e dans Le Monde pour dire que nous ne comprenions pas, et demander \u00e0 ce que l'on fasse rapidement machine arri\u00e8re. Bonne lecture !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6948164395948503040,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6948164396997079040,urn:li:activity:6948164396997079040,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 242, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6948164396997079040,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6948164396997079040,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6948164396997079040", + "threadId": "activity:6948164396997079040", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6948164396997079040", + "urn": "urn:li:activity:6948164396997079040", + "numComments": 319, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6948164396997079040", + "reactionTypeCounts": [ + { + "count": 5731, + "reactionType": "LIKE" + }, + { + "count": 596, + "reactionType": "INTEREST" + }, + { + "count": 580, + "reactionType": "MAYBE" + }, + { + "count": 371, + "reactionType": "PRAISE" + }, + { + "count": 276, + "reactionType": "APPRECIATION" + }, + { + "count": 38, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6948164396997079040", + "numLikes": 7592, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6948164396997079040", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7598, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6947862323977969664,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6947862323977969664", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6947862323977969664)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6947862323977969664)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_corporate-net-zero-goals-dont-add-up-to-activity-6947862323977969664-2A9Z?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6947862323298508801", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6947862323977969664", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6947862323977969664,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6947862323977969664,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6947862323298508801", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "uJBU6DkJ86DNs06yhivnhQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6947862323977969664,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8410306245834454881", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675963736714?e=1677240000&v=beta&t=1IcjfJ2mAzA7umwLS6YPRFsi5FLcQIVQV80f2Yn0lWw", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675963736714?e=1677240000&v=beta&t=-lK5TfsG_mQov-YFDAvJzR8wdtKJVDxLntaOkcq5b7g", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675963736714?e=1677240000&v=beta&t=37E--eKEgR5sxs6YxzTAQq_rYcxiykdVKvZP7SZNDh4", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675963736714?e=1677240000&v=beta&t=0U75aCpaBl5XBwh1HOqhMb6JsnBT1YA188mUz8o3His", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEegTnf-KNAFQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8410306245834454881)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8410306245834454881)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "bloomberg.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Corporate Net-Zero Goals Don\u2019t Add Up to a Net-Zero Planet by bloomberg.com", + "actionTarget": "https://www.bloomberg.com/news/articles/2022-06-27/companies-net-zero-emissions-goals-don-t-add-up" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Corporate Net-Zero Goals Don\u2019t Add Up to a Net-Zero Planet" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6947862323298508801,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s l'Ademe, qui a pris position \"contre\" le fait qu'une entreprise puisse se revendiquer neutre en carbone, c'est une autre entit\u00e9, plus inattendue, qui vient de se ranger au m\u00eame point de vue : Bloomberg News. \n\nC'est en effet inattendu, parce que nombre de grosses entreprises am\u00e9ricaines mettent en avant des objectifs de neutralit\u00e9 (Google revendique m\u00eame l'\u00eatre depuis 2007, et Microsoft revendique de viser un \u00e9tat de \"carbone n\u00e9gatif\" !), et il y a une forme de solidarit\u00e9 des affaires au pays de l'Oncle Sam.\n\nMotif de satisfaction suppl\u00e9mentaire : Carbone 4 est abondamment cit\u00e9 dans cet article. C'est \u00e0 l'\u00e9vidence une retomb\u00e9e de la Net Zero Initiative, qui f\u00e9d\u00e8re d\u00e9sormais de plus en plus d'acteurs, souscrivant \u00e0 des principes dans lesquels figurent une orthodoxie m\u00e9thodologique ainsi que l'honn\u00eatet\u00e9 dans la communication (https://lnkd.in/eNETwzGV ) \n\nCes sujets peuvent sembler bien loin des urgences sur le prix de l'\u00e9nergie ou le pouvoir d'achat. Mais m\u00eame dans un contexte chahut\u00e9 la question du cadre de r\u00e9flexion pour l'avenir reste importante. Elle fera la diff\u00e9rence entre en rajouter aux probl\u00e8mes ou bien avancer en convergence avec des solutions de plus court terme.\n\nCes derni\u00e8res ann\u00e9es ont malheureusement prouv\u00e9 que l'empilement de mesures d'urgence ne fait pas n\u00e9cessairement une strat\u00e9gie de long terme qui nous d\u00e9gage de la contrainte. Pas plus qu'un empilement d'objectifs \"net zero\" au niveau des entreprises ne conduit par miracle \u00e0 un net z\u00e9ro plan\u00e9taire." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6947862323298508801,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6947862323977969664,urn:li:activity:6947862323977969664,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 24, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6947862323977969664,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6947862323977969664,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6947862323977969664", + "threadId": "activity:6947862323977969664", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6947862323977969664", + "urn": "urn:li:activity:6947862323977969664", + "numComments": 29, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6947862323977969664", + "reactionTypeCounts": [ + { + "count": 796, + "reactionType": "LIKE" + }, + { + "count": 60, + "reactionType": "PRAISE" + }, + { + "count": 53, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "INTEREST" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6947862323977969664", + "numLikes": 957, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6947862323977969664", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 957, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6947429932641742848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6947429932641742848", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6947429932641742848)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6947429932641742848)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_world-without-end-activity-6947429932641742848-7qm3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6947429931660275712", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6947429932641742848", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6947429932641742848,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6947429932641742848,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6947429931660275712", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "LPCtPpLDWdpXMnT7FnaOcw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6947429932641742848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8181394863335355104", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 450, + "fileIdentifyingUrlPathSegment": "800/0/1675681064776?e=1677240000&v=beta&t=8hQYoOSJZ5LXqHmhCo9n05b2AY0L3x1_pee_VCAn_sQ", + "expiresAt": 1677240000000, + "height": 547 + }, + { + "width": 450, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675681064776?e=1677240000&v=beta&t=3JpzL0W3JOl6haXOGVU7Fa8q6QjD0po71iM_gN4LXOw", + "expiresAt": 1677240000000, + "height": 547 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675681064776?e=1677240000&v=beta&t=yjX9yYSpRXLhj7L5L5J3KEDUm0_VDzwsQQRlJgHDnyU", + "expiresAt": 1677240000000, + "height": 194 + }, + { + "width": 450, + "fileIdentifyingUrlPathSegment": "480/0/1675681064776?e=1677240000&v=beta&t=rJ4HbPay-4mZLcKD8frqd1iwIA_IksigEGRmBsJHHzQ", + "expiresAt": 1677240000000, + "height": 547 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGBt1SRhdnRrA/articleshare-shrink_" + }, + "displayAspectRatio": 1.2155555555555555 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8181394863335355104)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8181394863335355104)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "europecomics.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: World Without End by europecomics.com", + "actionTarget": "https://www.europecomics.com/album/world-without-end" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "World Without End" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6947429931660275712,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s la version allemande qui \u00e9tait d\u00e9j\u00e0 disponible depuis quelques semaines (avec m\u00eame une reproduction de quelques bonnes feuilles dans l'\u00e9dition allemande de Rolling Stone :) - https://lnkd.in/eY5dduxB ), c'est la version anglaise des aventures de Christophe Blain en terra energetica qui vient d'\u00eatre publi\u00e9e. \n\nCette derni\u00e8re n'est pour le moment disponible que sous forme \u00e9lectronique, pour une raison qui fera sourire ou pas, c'est selon ! Comme le constateront celles et ceux qui ont parcouru cette BD, nous avons abondamment utilis\u00e9 le personnage d'Ironman pour illustrer nos propos. \n\nIl se trouve que ce dernier est la propri\u00e9t\u00e9 juridique de Marvel Comics. En France, son \"d\u00e9tournement\" est sans risque car il rel\u00e8ve du droit de caricaturer. Mais aux USA il n'en irait pas de m\u00eame, et il y aurait un risque non n\u00e9gligeable de se prendre un proc\u00e8s pour contrefa\u00e7on si l'album sortait sous forme papier dans ce pays. Et deux d\u00e9cisions r\u00e9cemment rendues par la Cour supr\u00eame de ce pays (sur l'avortement et sur le droit de porter des armes dans l'espace public) confirment que la fa\u00e7on de penser des tribunaux am\u00e9ricains est parfois incompr\u00e9hensible pour des europ\u00e9ens...\n\nUn autre \u00e9l\u00e9ment joue en notre d\u00e9faveur : pour int\u00e9resser des am\u00e9ricains il faut centrer le propos sur les USA. Le reste du monde les int\u00e9resse nettement moins :). Cela demanderait donc de revoir certaines planches et d'adapter certains dialogues. Pas impossible, mais c'est du boulot.\n\nSans sortie papier aux USA, il n'y a pas de sortie papier tout court (le march\u00e9 anglais est trop petit). Du coup l'\u00e9diteur de la version anglaise a limit\u00e9 ses couts en ne sortant qu'une version num\u00e9rique (pas de frais d'impression, pas de mise en place chez les libraires, etc). \n\nMais cela n'emp\u00eachera pas tou(te)s les fran\u00e7ais(es) qui m'ont demand\u00e9 si une version anglaise serait publi\u00e9e (probablement pour emp\u00eacher de dormir quelques anglophones \u00e0 qui ils et elles veulent du bien :) ) \"un jour\" d'avoir quelque chose \u00e0 leur mettre sous la dent (ou sous l'oeil plut\u00f4t).\n\nSeul probl\u00e8me : on ne peut pas se servir d'une version \u00e9lectronique pour caler des meubles une fois la lecture termin\u00e9e... mais j'esp\u00e8re que ce petit inconv\u00e9nient ne dissuadera pas les plus motiv\u00e9(e)s !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6947429931660275712,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6947429932641742848,urn:li:activity:6947429932641742848,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 206, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6947429932641742848,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6947429932641742848,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6947429932641742848", + "threadId": "activity:6947429932641742848", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6947429932641742848", + "urn": "urn:li:activity:6947429932641742848", + "numComments": 230, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6947429932641742848", + "reactionTypeCounts": [ + { + "count": 5078, + "reactionType": "LIKE" + }, + { + "count": 443, + "reactionType": "PRAISE" + }, + { + "count": 215, + "reactionType": "EMPATHY" + }, + { + "count": 77, + "reactionType": "APPRECIATION" + }, + { + "count": 19, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6947429932641742848", + "numLikes": 5850, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6947429932641742848", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5892, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6947201854397165569,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6947201854397165569", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6947201854397165569)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6947201854397165569)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_stanford-university-announces-new-climate-activity-6947201854397165569-qwrR?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6947201853734449152", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6947201854397165569", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6947201854397165569,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6947201854397165569,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6947201853734449152", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "iWYDik/bDE3eY42ER9JmOQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6947201854397165569,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8991767948481667315", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675905294648?e=1677240000&v=beta&t=Xcwi32XQxzIo-EFXKMNBjrHhmgK11zoTbQ_OVUGIrww", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675905294648?e=1677240000&v=beta&t=8_9h4BVRaHi7F9TXHnpQAziGETngMgaEcxNvhBgvBgc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675905294648?e=1677240000&v=beta&t=Bty9Z7ZmmCZxWzNBGZ15BsrPU0fwEke2nfGdqjxJjH0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675905294648?e=1677240000&v=beta&t=eyGIr6oO2dkqFSk_cAAL3nxHvlCTD0MUVico5prQ-Jo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEISC5889yZxA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8991767948481667315)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8991767948481667315)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "cnn.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Stanford University announces new climate change school with $1.1 billion from renowned venture capitalist | CNN by edition.cnn.com", + "actionTarget": "https://edition.cnn.com/2022/05/04/us/stanford-university-climate-school/index.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Stanford University announces new climate change school with $1.1 billion from renowned venture capitalist | CNN" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6947201853734449152,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "J'en r\u00eave pour la France, et c'est aux USA, le pays du monde infini, que cela a lieu : Stanford a re\u00e7u il y a un peu plus d'un mois la promesse d'un don de 1,1 milliard de dollars (vous avez bien lu) pour cr\u00e9er \"The Stanford Doerr School of Sustainability\", qui va particuli\u00e8rement se concentrer sur le d\u00e9fi climatique. \n\nIl s'agit du deuxi\u00e8me plus gros don jamais effectu\u00e9 aux USA pour une universit\u00e9, et le plus gros jamais fait pour instaurer une nouvelle \u00e9cole. Entendons nous bien : je ne r\u00eave pas de dons priv\u00e9s. Je r\u00eave de voir des initiatives d'une ampleur similaire sur le m\u00eame sujet !\n\nCette nouvelle \u00e9cole de Stanford d\u00e9veloppera comp\u00e9tences et enseignements en sciences de la terre, technologies de l'\u00e9nergie, s\u00e9curit\u00e9 alimentaire, eau, et sant\u00e9 humaine. Il y sera aussi question de justice environnementale.\n\nJe ne suis pas sur que la premi\u00e8re demande de John Doerr, le milliardaire \u00e0 l'origine de ce don, ait \u00e9t\u00e9 la mont\u00e9e dans le classement de Shanghai :). Il a juste l'intuition que ces domaines justifient de mettre le paquet pour former utilement les g\u00e9n\u00e9rations montantes, et d\u00e9velopper de la recherche qui va avec. Si le concept est bon, le succ\u00e8s suivra.\n\nCertes l'argent ne fait pas tout. L'argent ne cr\u00e9e pas instantan\u00e9ment les comp\u00e9tences. Il ne cr\u00e9e pas n\u00e9cessairement les bonnes valeurs. Mais cette annonce va n\u00e9cessairement attirer des chercheurs et des \u00e9tudiants qui r\u00eavent de \"sauver le monde\". Si cela touche des jeunes fran\u00e7ais, nous n'aurons pas n\u00e9cessairement gagn\u00e9 : nos jeunes \"talents\" iront - comme pour le digital - cr\u00e9er de la comp\u00e9tence outre-Atlantique pour qu'ensuite le pays de l'oncle Sam d\u00e9pose (aux USA) des brevets qui nous seront opposables.... (il y a des fran\u00e7ais \u00e0 l'origine des gafa qui d\u00e9sormais nous imposent leur volont\u00e9 !).\n\nAlors que les besoins sont immenses et que l'urgence est l\u00e0, cette cr\u00e9ation californienne nous invite nous aussi \u00e0 changer d'\u00e9chelle. Il est plus que temps !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6947201853734449152,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6947201854397165569,urn:li:activity:6947201854397165569,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 223, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6947201854397165569,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6947201854397165569,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6947201854397165569", + "threadId": "activity:6947201854397165569", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6947201854397165569", + "urn": "urn:li:activity:6947201854397165569", + "numComments": 319, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6947201854397165569", + "reactionTypeCounts": [ + { + "count": 8204, + "reactionType": "LIKE" + }, + { + "count": 564, + "reactionType": "PRAISE" + }, + { + "count": 442, + "reactionType": "MAYBE" + }, + { + "count": 222, + "reactionType": "INTEREST" + }, + { + "count": 141, + "reactionType": "EMPATHY" + }, + { + "count": 114, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6947201854397165569", + "numLikes": 9687, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6947201854397165569", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 9691, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6947081355595812864,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6947081355595812864", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6947081355595812864)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6947081355595812864)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_certaines-zones-nen-font-pas-et-nenvisagent-activity-6947081355595812864-HFZe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6947081354790498304", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6947081355595812864", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6947081355595812864,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6947081355595812864,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6947081354790498304", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "b6c4l+xTNM9/iyRpF1wYOQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6947081355595812864,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQFoKElCXIqztQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQFoKElCXIqztQ", + "artifacts": [ + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1656313263821?e=1679529600&v=beta&t=DgyitbEYfQPBS1tAjCykqcSK0DaT0CFSMyoYHK8mCrw", + "expiresAt": 1679529600000, + "height": 720 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1656313263824?e=1679529600&v=beta&t=AY1gb23n4yl8nzqjKWQPvhCHYTiu3OL5f2XTVbhZilo", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1656313263824?e=1679529600&v=beta&t=pld122BbzYpsTpkcNsyh4nUJtRtLrteTkL6FY--H6kk", + "expiresAt": 1679529600000, + "height": 720 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1656313263824?e=1679529600&v=beta&t=lxk5KG9LP-e3EnDrfIAz6f7h7kKIDXCFeuwwM0QL3Dw", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1656313263824?e=1679529600&v=beta&t=yeUcJ6_BM0XKHIYHm88Q2g3tlM5eYHRSjqQGI8qVLLI", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1656313263824?e=1679529600&v=beta&t=Jy-AbW6ijr3gMzsDgLZzzYJqWPVfzaCxiX5hCqHmqi0", + "expiresAt": 1679529600000, + "height": 450 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQFoKElCXIqztQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6947081354790498304,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Certaines zones n'en font pas et n'envisagent pas d'en faire. D'autres sont tr\u00e8s favorables mais leur parc en activit\u00e9 et leurs chantiers sont en baisse. D'autres encore sont tr\u00e8s favorables avec \u00e0 la fois parc et chantiers en hausse. De quoi s'agit-il ? Des r\u00e9acteurs nucl\u00e9aires. The Shifters a r\u00e9alis\u00e9 un panorama de la situation du nucl\u00e9aire dans le monde, dont est extraite l'image ci-dessous, qui synth\u00e9tise en une planche ce qu'il faut retenir sur cette \u00e9nergie : https://bit.ly/3bjJ9qc\n\nOn voit imm\u00e9diatement que le nucl\u00e9aire d'aujourd'hui est majoritairement occidental (USA+Europe de l'Ouest), mais que les chantiers sont majoritairement asiatiques (ce qui tombe bien puisque c'est aussi en Asie qu'il y a le plus de charbon).\n\nEn Europe, l'opinion sur le nucl\u00e9aire y est globalement plus favorable qu'avant. Cela peut sembler paradoxal dans notre pays : alors que \"tout allait bien\" (parc disponible et sans p\u00e9pin), l'opinion \u00e9tait partag\u00e9e, et maintenant que ca va moins bien (chantier de Flamanville prenant du retard, parc en service partiellement indisponible pour raisons techniques), l'opinion est nettement plus favorable. \n\nEn fait cela s'explique si l'on se rappelle que les consid\u00e9rations techniques - et le d\u00e9bat sur les risques - passionnent seulement une petite fraction de la population. L'essentiel de la population fran\u00e7aise est sensible \u00e0 des arguments qui sont le prix, l'ind\u00e9pendance \u00e9nerg\u00e9tique, et la disponibilit\u00e9 \u00e0 venir (notamment \u00e0 cause de la voiture \u00e9lectrique). A ce compte l\u00e0 la cote d'amour du nucl\u00e9aire a tendance a suivre... le prix du p\u00e9trole !\n\nEnvie ou pas, le nucl\u00e9aire est une machine peu r\u00e9active. Entre le moment o\u00f9 l'on d\u00e9cide d'y aller et les premiers effets visibles sur la production, il faut compter environ 15 ans, sans valse h\u00e9sitation qui a \u00e9t\u00e9 le premier facteur d'affaiblissement de la fili\u00e8re fran\u00e7aise sur les 20 derni\u00e8res ann\u00e9es. A l'inverse, c'est la constance qui est le premier facteur de succ\u00e8s pour les chinois et les russes, qui dominent aujourd'hui la sc\u00e8ne mondiale. Cette constance am\u00e8ne fili\u00e8re organis\u00e9e et financements d'Etat, indispensables au d\u00e9veloppement de cette \u00e9nergie.\n\nEn France, nous allons devoir passer la p\u00e9riode qui nous s\u00e9pare de 2030 sans r\u00e9acteur suppl\u00e9mentaire \u00e0 part Flamanville. Beaucoup de voix disent que cela l\u00e9gitime de construire des capacit\u00e9s solaires et \u00e9oliennes aussi vite que possible. Mais il faut rappeler que ces derni\u00e8res ne sont pas pilotables, et que l'on ne remplace pas un pour un du nucl\u00e9aire par de l'intermittent. \n\nL'Allemagne a montr\u00e9 que, en termes de capacit\u00e9s install\u00e9es, ce que l'on fait est de remplacer du nucl\u00e9aire par ENR+gaz (ou + charbon !). Mais cela suppose... que l'on ait du gaz (cette condition aux limites faisait rigoler tout le monde quand j'en parlais il y a 10 ans...).\n\nDit autrement, en Europe de l'Ouest les atermoiements des 20 derni\u00e8res ann\u00e9es vont se payer de toute fa\u00e7on. C'est probablement aussi le rationnement qui va servir de variable d'ajustement." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6947081354790498304,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6947081355595812864,urn:li:activity:6947081355595812864,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 39, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6947081355595812864,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6947081355595812864,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6947081355595812864", + "threadId": "activity:6947081355595812864", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6947081355595812864", + "urn": "urn:li:activity:6947081355595812864", + "numComments": 67, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6947081355595812864", + "reactionTypeCounts": [ + { + "count": 719, + "reactionType": "LIKE" + }, + { + "count": 105, + "reactionType": "INTEREST" + }, + { + "count": 82, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6947081355595812864", + "numLikes": 927, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6947081355595812864", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 927, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 Edited \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6946885842023944192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6946885842023944192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6946885842023944192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6946885842023944192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_totalenergies-edf-et-engie-appellent-les-activity-6946885842023944192-_ZWj?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6946885840992137216", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6946885842023944192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6946885842023944192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6946885842023944192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6946885840992137216", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "hyR6SD8auxbOAAKg9jtGdA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6946885842023944192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7088680671883993466", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675581216453?e=1677240000&v=beta&t=IpUTwmKy5VQ1-TecwfQRZd_e6tj4kkvBdwOvoGyGmCk", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675581216454?e=1677240000&v=beta&t=xr84rxt5wQBOF_38rgFiWvAjpGxG0VAp9D_IlIS7lGE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675581216454?e=1677240000&v=beta&t=4u9At7itKKGrUN9XRI8imlf4O91K-qfiKo7mS8aTxOA", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675581216454?e=1677240000&v=beta&t=8OwjRrcX7N3wfz9Eisqu9YI5fzlz8Rq0MaGhd-IHnWI", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFg2hTlpDCN5g/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7088680671883993466)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7088680671883993466)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: TotalEnergies, EDF et Engie appellent les Fran\u00e7ais \u00e0 consommer moins d\u2019\u00e9nergie by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/planete/article/2022/06/26/totalenergies-edf-et-engie-appellent-les-francais-a-consommer-moins-d-energie_6132060_3244.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "TotalEnergies, EDF et Engie appellent les Fran\u00e7ais \u00e0\u00a0consommer moins d\u2019\u00e9nergie" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6946885840992137216,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est une premi\u00e8re : une tribune sign\u00e9e conjointement d'EDF, Engie et Total qui appelle les fran\u00e7ais \u00e0 faire des \u00e9conomies. C'est doublement une premi\u00e8re en fait.\n\nLa premi\u00e8re premi\u00e8re est que ces trois entreprises soient unies dans cet appel alors que ce sont habituellement des concurrentes (et des adversaires en justice \u00e0 l'occasion). Il faut y voir le signe que la situation devrait se tendre \u00e0 tr\u00e8s court terme. De fait, l'Europe ne peut pas se tourner facilement vers d'autres producteurs pour substituer les approvisionnements russes, qui repr\u00e9sentaient 30% du p\u00e9trole et 40% du gaz avant l'Ukraine.\n\nPasser l'hiver avec chauffage \"normal\" et sans d\u00e9lestages devient donc une question. Garantir la mobilit\u00e9 pour tou(te)s avec un carburant disponible et n'atteignant pas des niveaux de prix encore augment\u00e9s est aussi un sujet. Rien de tout cela n'est une surprise pour qui avait un peu regard\u00e9 le sujet. Mais peu de gens avaient regard\u00e9... \n\nLa deuxi\u00e8me premi\u00e8re est que ce soient des entreprises priv\u00e9es qui fassent le boulot de l'Etat. Car s'il existe un risque majeur de ne pas passer l'hiver sans coupures, c'est \u00e0 l'Etat qu'il revient de mettre en mouvement la population ! Cet appel aurait du \u00eatre sign\u00e9 Macron, Borne et Pannier Runacher..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6946885840992137216,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6946885842023944192,urn:li:activity:6946885842023944192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 323, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6946885842023944192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6946885842023944192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6946885842023944192", + "threadId": "activity:6946885842023944192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6946885842023944192", + "urn": "urn:li:activity:6946885842023944192", + "numComments": 536, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6946885842023944192", + "reactionTypeCounts": [ + { + "count": 7208, + "reactionType": "LIKE" + }, + { + "count": 653, + "reactionType": "MAYBE" + }, + { + "count": 399, + "reactionType": "PRAISE" + }, + { + "count": 222, + "reactionType": "INTEREST" + }, + { + "count": 78, + "reactionType": "APPRECIATION" + }, + { + "count": 26, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6946885842023944192", + "numLikes": 8586, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6946885842023944192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 8609, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6946748489385041920,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6946748489385041920", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6946748489385041920)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6946748489385041920)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_vacances-d%C3%A9t%C3%A9-quel-est-limpact-des-diff%C3%A9rents-activity-6946748489385041920-6O7w?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6946748488219029504", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6946748489385041920", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6946748489385041920,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6946748489385041920,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6946748488219029504", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "Nka66lmmNnTd6BIAFk/XNQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6946748489385041920,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7846644304448280326", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675864121328?e=1677240000&v=beta&t=eCllLjkiivQAPKsoMy_cUZxDS_lLsr3GNmsRIkmE01Q", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675864121328?e=1677240000&v=beta&t=eFlYtFH_lu3ct_otFYTGxua5Bg3hByDMy5Y3TZhTii8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675864121328?e=1677240000&v=beta&t=A2y_tCNRrwJVFkqxw8vfz1-TeoX0BgdHGXYOAuWq4UM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675864121328?e=1677240000&v=beta&t=2a1uokWov5ro0DhVcKgXjncUB1mEn3aMFOLtCBQVRIg", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQErjjANWCS8aA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7846644304448280326)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7846644304448280326)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Vacances d'\u00e9t\u00e9 : quel est l'impact des diff\u00e9rents modes de transport sur le climat ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900167473-vacances-d-ete-quel-est-l-impact-des-differents-modes-de-transport-sur-le-climat" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Vacances d'\u00e9t\u00e9 : quel est l'impact des diff\u00e9rents modes de transport sur le climat ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6946748488219029504,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1061, + "length": 13, + "miniProfile": { + "firstName": "Aur\u00e9lien", + "lastName": "Bigo", + "dashEntityUrn": "urn:li:fsd_profile:ACoAADPyQA0BrxkTHyC6-wjTX8G-9IMV013F330", + "occupation": "Chercheur sur la transition \u00e9nerg\u00e9tique des transports", + "objectUrn": "urn:li:member:871514125", + "entityUrn": "urn:li:fs_miniProfile:ACoAADPyQA0BrxkTHyC6-wjTX8G-9IMV013F330", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1653900470139?e=1681948800&v=beta&t=0JWitFviYmtCXSpiBNd23Ql53xXVoIUOvP1FeuRTLjw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1653900470139?e=1681948800&v=beta&t=aniO_Yd4PMwGdhueX2bclYq8dZ3HbkuDj4XKK2cngPc", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQGy5s01rQT5uA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "aur\u00e9lien-bigo-551a50203", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1611167133219?e=1681948800&v=beta&t=JM8cxl4saiuooT1OlR7bv_3Rxpl_6H_SSFuSv3yUkI4", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1611167133219?e=1681948800&v=beta&t=5616RiEAbSqfIWD8kOj9nCYdfOrX1lEVBkc21zwUUV8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1611167133219?e=1681948800&v=beta&t=NC99tu_PZsMd3OxmaOmhMx8ElfNq4oHLQOpHmbGs21g", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1611167133219?e=1681948800&v=beta&t=LelDnCHXLEF9nYVssleLjItzc7pE92DBJfeh0iARBo4", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFkZh-PtYsSMA/profile-displayphoto-shrink_" + } + }, + "trackingId": "D5hO8W62Sz6koyXbV2+a2w==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Juillet, c'est le d\u00e9but de la transhumance estivale, et qui dit transhumance dit d\u00e9placement. Cette avant-derni\u00e8re chronique de l'ann\u00e9e (scolaire) sur RTL compare les divers modes de transport que vont utiliser les personnes qui partiront en vacances, pour celles qui ont cette chance. Il faut en effet rappeler que 40% des fran\u00e7ais ne partent pas en vacances (https://lnkd.in/erKdgch8 ), proportion qui n'est que de 20% pour les gens qui gagnent plus de 2600 euros par mois, et qui sont probablement majoritaires sur ce r\u00e9seau.\n\nPour comparer l'efficacit\u00e9 des divers modes de transport, la mani\u00e8re la plus courante est de mesurer les \u00e9missions de gaz \u00e0 effet de serre ramen\u00e9es au passager et au kilom\u00e8tre. Avec cette mani\u00e8re de faire, la voiture n'est pas beaucoup moins \u00e9mettrice que l'avion : si l'on utilise une voiture \u00e0 6 litres aux 100 remplie \"comme pour un d\u00e9part en vacances\", les \u00e9missions par personne et par km sont inf\u00e9rieures de 15% \u00e0 celles qui auraient eu lieu lors d'un voyage en avion (toujours par personne et par km).\n\nMais, fait remarquer Aur\u00e9lien Bigo, ce n'est pas le km parcouru qu'il faut utiliser comme base de comparaison, mais plut\u00f4t l'heure de transport. Car nous avons une constante biologique qui intervient lorsque nous nous d\u00e9pla\u00e7ons pour les vacances : nous faisons toujours des trajets de quelques heures. De fait, l'avion ne permet pas d'aller plus vite l\u00e0 o\u00f9 va la voiture : il permet d'aller plus loin avec le m\u00eame budget temps pour le d\u00e9placement.\n\nEt c'est donc par heure de trajet qu'il faut compter et non par jour. Avec cette unit\u00e9, le r\u00e9sultat n'est plus du tout le m\u00eame. Prendre l'avion \u00e9met 10 fois plus (par heure) que la voiture, et la voiture \u00e9met 10 fois plus (toujours par heure) que le train : https://lnkd.in/eWVkg8gG\n\nSi ce n'est pas d\u00e9j\u00e0 fait, pour celles et ceux qui auront la chance de partir en vacances (bis), pensez y !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6946748488219029504,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6946748489385041920,urn:li:activity:6946748489385041920,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6946748489385041920,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6946748489385041920,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6946748489385041920", + "threadId": "activity:6946748489385041920", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6946748489385041920", + "urn": "urn:li:activity:6946748489385041920", + "numComments": 113, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6946748489385041920", + "reactionTypeCounts": [ + { + "count": 567, + "reactionType": "LIKE" + }, + { + "count": 65, + "reactionType": "INTEREST" + }, + { + "count": 63, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6946748489385041920", + "numLikes": 705, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6946748489385041920", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 705, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6946113049564991488,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6946113049564991488", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6946113049564991488)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6946113049564991488)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_apr%C3%A8s-the-shift-project-et-son-approche-activity-6946113049564991488-Jgz8?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6946113048650629122", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6946113049564991488", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6946113049564991488,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6946113049564991488,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6946113048650629122", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "r5NpDiU0jb0d8er3j5yj4w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6946113049564991488,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQH1vcR5tWbY-g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQH1vcR5tWbY-g", + "artifacts": [ + { + "width": 944, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1656082400449?e=1679529600&v=beta&t=0cDfdbsGBhuCbigtFQmP_DDPQcg8_K9NHGkKRWRTg3A", + "expiresAt": 1679529600000, + "height": 1404 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1656082402122?e=1679529600&v=beta&t=dW_iBhFIxXaCkEbWtgjKkr2jfJvWDTLGSCisUvsnBD4", + "expiresAt": 1679529600000, + "height": 30 + }, + { + "width": 944, + "fileIdentifyingUrlPathSegment": "1280/0/1656082402122?e=1679529600&v=beta&t=cvF6u3L33vEvmwJM9J3xvNnTQAkDY6ahZ7n9xxHgQc0", + "expiresAt": 1679529600000, + "height": 1404 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1656082402122?e=1679529600&v=beta&t=qlzmz9i6Fdk_FVBPdw2cH4ZmaJ8qL_NGpV0gUgosLRM", + "expiresAt": 1679529600000, + "height": 714 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1656082402122?e=1679529600&v=beta&t=pHp2OE4WHTyJryC7GKzXlSQNJ0mmsPGDB2MQg6mxlFE", + "expiresAt": 1679529600000, + "height": 238 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1656082402122?e=1679529600&v=beta&t=Xc4Ym-pG-wuqoLhjngZiV3e2Ynx88Buwm1g7HdulGGA", + "expiresAt": 1679529600000, + "height": 1190 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQH1vcR5tWbY-g/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "timeline" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6946113048650629122,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s The Shift Project et son approche \"strat\u00e9gie de r\u00e9silience des territoires\" (https://lnkd.in/diZSF5w ) qui portait sur les mesures \u00e0 mettre en oeuvre pour g\u00e9rer un avenir plus contrari\u00e9 (notamment par le changement climatique) avec moins de moyens, c'est au tour d'I4CE de prendre position sur le sujet, en citant 18 mesures \"sans regrets\" qui devraient \u00eatre prises pour mieux pr\u00e9parer notre pays \u00e0 ce qui va nous tomber dessus : https://lnkd.in/ep6YB5R4\n\nA la diff\u00e9rence du Shift Project qui reste toujours tr\u00e8s prudent d\u00e8s qu'il s'agit de chiffrer les mesures en euros, I4CE donne des montants. Si l'on sait garder du recul sur le fait que l'on ne sait pas pr\u00e9voir les prix sur des d\u00e9cennies (l'actualit\u00e9 r\u00e9cente le montre !), qui est le laps de temps qui serait n\u00e9cessaire pour mener certaines actions \u00e0 leur terme, ces chiffres donnent quand m\u00eame des ordres de grandeur utiles.\n\nLes mesures propos\u00e9es sont tr\u00e8s convergentes avec ce qui est propos\u00e9 par The Shift Project : gagner en comp\u00e9tence pour comprendre ce qui va se passer, mettre des personnes en charge et si possible haut plac\u00e9es, enfin commencer \u00e0 s'attaquer \u00e0 certains \u00e9l\u00e9ments essentiels de notre syst\u00e8me actuel (r\u00e9seaux ou constructions).\n\nIl est donc bien pr\u00e9cis\u00e9 que les 2 milliards par an ne sont pas le chiffrage de \"tout ce qu'il faut faire\", mais juste des premi\u00e8res mesures identifi\u00e9es. Mais il faut rappeler que la d\u00e9pense pour l'un est du chiffre d'affaires pour l'autre : inutile donc d'avoir trop peur des montants en euros !\n\nEt de fait il faudra aller encore plus loin : pourrons nous garder des grosses villes - ou plus exactement leur approvisionnement en nourriture et en biens de toute nature - dans un monde sobre en \u00e9nergie ? Comment anticiper l'\u00e9conomie qui fait vivre un territoire dans un monde sobre et au climat en d\u00e9rive ? \n\nPlus g\u00e9n\u00e9ralement comment aborder une contrainte multiple (\u00e9nergie, climat, biodiversit\u00e9, ressources, comp\u00e9tences... ) \u00e0 l'\u00e9chelle d'un territoire ?\n\nLe sujet est embryonnaire mais urgent. Car sans en avoir l'air les r\u00e9sultats \u00e9lectoraux en d\u00e9pendent au premier ordre, puisque ces \u00e9l\u00e9ments physiques conditionnent notre capacit\u00e9 \u00e0 avoir des plans qui se r\u00e9alisent, et le d\u00e9sarroi suivant l'objectif contrari\u00e9 est un motif \u00e9vident d'instabilit\u00e9 politique. En \"ligne de pente\" - c'est \u00e0 dire sans prendre rapidement \u00e0 bras le corps le probl\u00e8me des limites physiques de ce monde, et en continuant \u00e0 r\u00eaver \u00e0 des miracles technologiques qui n'arriveront pas, ce qui s'est pass\u00e9 il y a quelques jours n'est qu'un avertissement..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6946113048650629122,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6946113049564991488,urn:li:activity:6946113049564991488,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 13, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6946113049564991488,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6946113049564991488,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6946113049564991488", + "threadId": "activity:6946113049564991488", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6946113049564991488", + "urn": "urn:li:activity:6946113049564991488", + "numComments": 16, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6946113049564991488", + "reactionTypeCounts": [ + { + "count": 370, + "reactionType": "LIKE" + }, + { + "count": 27, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6946113049564991488", + "numLikes": 428, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6946113049564991488", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 428, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6945984937686671360,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6945984937686671360", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6945984937686671360)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6945984937686671360)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_apr%C3%A8s-un-printemps-de-temp%C3%AAtes-de-sable-activity-6945984937686671360-HGQu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6945984936889745408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6945984937686671360", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6945984937686671360,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6945984937686671360,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6945984936889745408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "kL7LGgX04wET5eORLl0NnQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6945984937686671360,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8292352568791201289", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675668131858?e=1677240000&v=beta&t=0FSNJs1vDXIRoPrAtwH43M8x7ItNoQ9rG1O2kS8JMaY", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675668131858?e=1677240000&v=beta&t=OCjGE0UyEzSRCMFTe_I_5TAj-vFBufztnB_0mnFU7jU", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675668131858?e=1677240000&v=beta&t=jokubmepcuUQ8KlSq8ouIDGikEr5FNOysG2jZub1oYI", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675668131858?e=1677240000&v=beta&t=Ejk3mhhmGZ4Hvthyw3SzbUVy2hpEnrISBZP5Qjm_XC0", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQGIAUgs9uZXew/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "A Bassora, un jeune Irakien tente de se rafra\u00eechir sur les bords de l'Euphrate." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8292352568791201289)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8292352568791201289)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "liberation.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Apr\u00e8s un printemps de temp\u00eates de sable, l\u2019Irak plonge dans l\u2019enfer de la canicule by liberation.fr", + "actionTarget": "https://www.liberation.fr/international/moyen-orient/apres-un-printemps-de-tempetes-de-sable-lirak-plonge-dans-lenfer-de-la-canicule-20220621_4CZ6WOX2CNGD3AB3XVR564KSMM/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s un printemps de temp\u00eates de sable, l\u2019Irak plonge dans l\u2019enfer de la canicule" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6945984936889745408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est comme chez nous, mais en pire : l'Irak fait actuellement face \u00e0 la fois \u00e0 une canicule - mais on parle de 50\u00b0C - et \u00e0 des probl\u00e8mes d'approvisionnement \u00e9lectrique - alors que c'est gros producteur d'hydrocarbures - dans un pays qui n'a pas de majorit\u00e9 politique et donc un gouvernement qui exp\u00e9die juste les affaires courantes.\n\nEt dans ce pays p\u00e9trolier, justement, il semblerait que le pr\u00e9sident ait aussi appel\u00e9 \u00e0 faire de la lutte contre le changement climatique une priorit\u00e9 sans que cela ne change grand chose \u00e0 court terme.\n\nIl faut dire que la situation du pays est de plus en plus d\u00e9sagr\u00e9able, notamment en ce qui concerne la disponibilit\u00e9 de la ressource en eau, qui baisse structurellement sur la r\u00e9gion, et ensuite qui peut baisser \u00e0 cause d'une r\u00e9partition qui change entre pays quand un m\u00eame fleuve en traverse plusieurs.\n\nA la diff\u00e9rence de la Syrie voisine, l'Irak dispose de fortes recettes \u00e0 l'exportation - li\u00e9es au p\u00e9trole - qui varient comme le prix de la nourriture (car le prix du bl\u00e9 et le prix du p\u00e9trole sont assez fortement asservis sur les march\u00e9s mondiaux). \n\nComme pour l'Alg\u00e9rie, une baisse de la disponibilit\u00e9 domestique en nourriture n'est pas dramatique tant que l'or noir peut fournir des recettes \u00e0 l'exportation pour se payer les importations n\u00e9cessaires. Mais ca ne durera qu'un temps... car la fin du p\u00e9trole, \u00e0 cause de la transition ou par \u00e9puisement des gisements, conduira ce pays, comme beaucoup d'autres, \u00e0 faire face \u00e0 un d\u00e9fi \u00e9conomique pour lequel il n'a aujourd'hui pas de solution \u00e9vidente, en plus du changement climatique bien sur..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6945984936889745408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6945984937686671360,urn:li:activity:6945984937686671360,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 24, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6945984937686671360,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6945984937686671360,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6945984937686671360", + "threadId": "activity:6945984937686671360", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6945984937686671360", + "urn": "urn:li:activity:6945984937686671360", + "numComments": 61, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6945984937686671360", + "reactionTypeCounts": [ + { + "count": 867, + "reactionType": "LIKE" + }, + { + "count": 196, + "reactionType": "INTEREST" + }, + { + "count": 181, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6945984937686671360", + "numLikes": 1291, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6945984937686671360", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1291, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6945771075704111104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6945771075704111104", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6945771075704111104)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6945771075704111104)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_extrait-jancovici-sur-limportance-des-activity-6945771075704111104-pUm8?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6945771075133714434", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6945771075704111104", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6945771075704111104,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6945771075704111104,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6945771075133714434", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "RydtSdhK32eaZOaaS1I5ZA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6945771075704111104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8777185903247441469", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676090641813?e=1677240000&v=beta&t=ubC3zBJF4ckQC23QtrkORHAqRyDgk0_PVktl0AtJL3s", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676090641813?e=1677240000&v=beta&t=IsrzUBSoYzqswj8TMbf3t4PF63B7JqSy5M6MREe3zjQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676090641814?e=1677240000&v=beta&t=pxfTq16wM0WU-lA81Aq_MqSdq4mXHOqqHKEgY43b4ys", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676090641814?e=1677240000&v=beta&t=t-crv7TXVFm0-LUHVexJcacAUvTWtS_0tJY4QcQdPKc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D5627AQFY9kTQZ-fiEQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8777185903247441469)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8777185903247441469)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: [EXTRAIT] Jancovici sur l\u2019importance des ordres de grandeur face au changement climatique on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=4wR9hWduhuQ" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "G\u00e9n\u00e9ration Do It Yourself - Un podcast de Matthieu Stefani Extrait de l'\u00e9pisode : \"263 - Jean-Marc Jancovici - Carbone 4 - D\u00e9croissance, nucl\u00e9aire, innovation : agir sous la contrainte ou par cas de conscience ?\" \u25b6\ufe0f Retrouvez l'audio en int\u00e9gralit\u00e9 :..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "[EXTRAIT] Jancovici sur l\u2019importance des ordres de grandeur face au changement climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6945771075133714434,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a quelques semaines j'ai enregistr\u00e9 un podcast de 2 heures (rien que ca :) ) pour la chaine \"Generation Do it Yourself\" : https://lnkd.in/e2NHbF82\n\nIl en a \u00e9t\u00e9 tir\u00e9 un extrait (de 6 minutes) qui concerne plus particuli\u00e8rement la contrainte purement g\u00e9ologique portant sur l'approvisionnement europ\u00e9en en p\u00e9trole, et quelques implications qu'il est possible d'en tirer pour notre syst\u00e8me de transport.\n\nUne raison de plus de d\u00e9carboner \u00e0 toute vitesse, c'est de circonstance !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6945771075133714434,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6945771075704111104,urn:li:activity:6945771075704111104,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 31, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6945771075704111104,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6945771075704111104,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6945771075704111104", + "threadId": "activity:6945771075704111104", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6945771075704111104", + "urn": "urn:li:activity:6945771075704111104", + "numComments": 69, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6945771075704111104", + "reactionTypeCounts": [ + { + "count": 1173, + "reactionType": "LIKE" + }, + { + "count": 80, + "reactionType": "INTEREST" + }, + { + "count": 48, + "reactionType": "PRAISE" + }, + { + "count": 28, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6945771075704111104", + "numLikes": 1362, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6945771075704111104", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1362, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6945626743768559616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6945626743768559616", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6945626743768559616)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6945626743768559616)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_crise-du-gaz-lallemagne-va-recourir-davantage-activity-6945626743768559616-8DvE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6945626742678020096", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6945626743768559616", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6945626743768559616,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6945626743768559616,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6945626742678020096", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "9r9q9SsLjYL8WVnyzkYi/Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6945626743768559616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7189972334288495690", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675653445062?e=1677240000&v=beta&t=pM4-Mfq00S7vqIKtQQdmYbdmI8dVaelKHVpq1cR_Muc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675653445062?e=1677240000&v=beta&t=fqTZ-ohTkNVOJvGFpeM9aahJn7y8q6wjQhh4yxToSxs", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675653445062?e=1677240000&v=beta&t=YXWLo3p9IBa6hjFsUfLrFCZgZ2i91LGFG-ShyavPGYQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675653445062?e=1677240000&v=beta&t=Wl2eznQFCvX59HhBj71rHKQZQX6ze_I8MiFNWlB5nhs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQGG6Dv0_XPcEw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7189972334288495690)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7189972334288495690)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Crise du gaz : l'Allemagne va recourir davantage au charbon by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/les-industriels-allemands-veulent-relancer-les-centrales-a-charbons-1414300" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Crise du gaz\u00a0: l'Allemagne va recourir davantage\u00a0au charbon" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6945626742678020096,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Lorsque les allemands ont pris la d\u00e9cision de fermer pr\u00e9matur\u00e9ment leurs centrales nucl\u00e9aires, en le rempla\u00e7ant \"transitoirement\" par du gaz, \"il n'\u00e9tait pas pr\u00e9vu\" que le tuyau de gaz en provenance de Russie soit indisponible.\n\nR\u00e9sultat des courses : la d\u00e9pendance au charbon va remonter, ce qui est antagoniste avec l'objectif climatique de l'Europe (ce qui n'emp\u00eachera pas la classe politique de dire que cela ne pose aucun probl\u00e8me puisque c'est temporaire !). \n\nL'enseignement \u00e0 en tirer est assez clair : pour le moment, les plans de \"transition\" n'int\u00e8grent pas le risque d'indisponibilit\u00e9 d'un \u00e9l\u00e9ment de la solution envisag\u00e9e pour un avenir radieux. Cette indisponibilit\u00e9 peut relever :\n\n- d'un d\u00e9faut physique d'une ressource import\u00e9e (exemples : pas assez de gaz import\u00e9, ou pas assez de panneaux solaires import\u00e9s) \n\n- d'un d\u00e9faut physique parce que le dispositif qui n'existe pas encore et sur lequel on fait un pari n'est en fait pas disponible \u00e0 temps (voire pas du tout) (exemples : pas de moyen de stockage \u00e0 large \u00e9chelle via le gaz, ou pas d'hydrog\u00e8ne d\u00e9carbon\u00e9 \u00e0 large \u00e9chelle).\n\n- d'un dysfonctionnement sur une ressource existante (exemples : arr\u00eat de tranches nucl\u00e9aires pour maintenance \"quand ca n'est pas le moment\" - cas post covid - ou pour probl\u00e8mes techniques, d\u00e9faut d'eau dans les barrages - cas du Br\u00e9sil : https://reut.rs/3HJdo6f, etc)\n\nL'\u00e9nergie est le sang du monde moderne. Tout en d\u00e9pend, et notamment le sacro-saint PIB. De ce fait, faire un pari sur la com\u00e8te en ce qui concerne la disponibilit\u00e9 de l'\u00e9nergie (pas juste \u00e9lectrique) est faire un pari sur la com\u00e8te pour le pouvoir d'achat, les retraites (tout petit lien avec l'actualit\u00e9 politique \u00e0 l'attention de tous les nouveaux d\u00e9put\u00e9s :) ), le tourisme, les ephad, la disponibilit\u00e9 de la nourriture, et j'en passeIl est temps que le d\u00e9bat sur le futur \u00e9nerg\u00e9tique retrouve la place qu'il n'aurait jamais du perdre : celle d'un d\u00e9bat central, fait par des gens inform\u00e9s, et conscients que tout le reste en d\u00e9pend. \n\nLe/la premier(e) ministre devrait \u00eatre avant tout un(e) ministre comprenant les ressources physiques ou \"r\u00e9elles\" (dont le vivant fait partie). Une anecdote parmi d'autres : pas plus tard que la semaine derni\u00e8re j'ai pu constater que le nouvel ex\u00e9cutif ne sait jours pas ce qui va se passer sur le p\u00e9trole dans le monde (https://bit.ly/3uj3Vx5)...\n\nSi nous voulons \u00e9viter que les l\u00e9gislatives de la semaine derni\u00e8re ne soient qu'un avant-gout d'un d\u00e9sordre bien plus prononc\u00e9 \u00e0 venir, il est temps que cela cesse et que nous soyons collectivement capables de comprendre la r\u00e9alit\u00e9 physique, puis de la regarder en face.\n\nL'initiative de formation des nouveaux d\u00e9put\u00e9s est bien sur louable. Mais il faut bien plus de 20 minutes pour comprendre que l'indicateur \u00e9conomique conventionnel ne contient pas les informations qui permettent de deviner son \u00e9volution future. J'avais \u00e9voqu\u00e9 20 heures : c'est vraiment le minimum pour \u00e9viter de foncer t\u00eate baiss\u00e9e vers des impasses." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6945626742678020096,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6945626743768559616,urn:li:activity:6945626743768559616,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 160, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6945626743768559616,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6945626743768559616,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6945626743768559616", + "threadId": "activity:6945626743768559616", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6945626743768559616", + "urn": "urn:li:activity:6945626743768559616", + "numComments": 321, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6945626743768559616", + "reactionTypeCounts": [ + { + "count": 3634, + "reactionType": "LIKE" + }, + { + "count": 292, + "reactionType": "INTEREST" + }, + { + "count": 291, + "reactionType": "MAYBE" + }, + { + "count": 112, + "reactionType": "PRAISE" + }, + { + "count": 55, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6945626743768559616", + "numLikes": 4400, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6945626743768559616", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4405, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6945072409238499328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6945072409238499328", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6945072409238499328)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6945072409238499328)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carbone-4-nous-rejoindre-activity-6945072409238499328-v-Fa?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6945072408458362880", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6945072409238499328", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6945072409238499328,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6945072409238499328,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6945072408458362880", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "Yxuxj94yCdqbgdcLyvN2lQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6945072409238499328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8087299201223607359", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675850530569?e=1677240000&v=beta&t=QTM1-fIyGMOTP5x9wczkHD8pruHr6ZtBlsEV3erJdS4", + "expiresAt": 1677240000000, + "height": 1005 + }, + { + "width": 637, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675850530569?e=1677240000&v=beta&t=iddzTGn4h5oN7QHBqefwJ-1w2J4folQKEQxZyrtZW4w", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675850530569?e=1677240000&v=beta&t=iz9wsnLuSHozBvS3DI18xcubTjN6YUuUpHPuQoAaffk", + "expiresAt": 1677240000000, + "height": 201 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675850530569?e=1677240000&v=beta&t=kbrSwmwLBO0HQ1fsjnPxEPoP_sLd8Q9jxbbO1OWmO6w", + "expiresAt": 1677240000000, + "height": 603 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGmC1tNHfUKJw/articleshare-shrink_" + }, + "displayAspectRatio": 1.25625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8087299201223607359)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8087299201223607359)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carbone 4 - Nous rejoindre by carbone4.com", + "actionTarget": "https://www.carbone4.com/jobs" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carbone 4 - Nous rejoindre" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6945072408458362880,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "On peut imaginer que c'est une bonne nouvelle... ou pas (puisque ce qui suit signifie que le probl\u00e8me climatique n'est toujours pas r\u00e9solu) : Carbone 4 re\u00e7oit de plus en plus de demandes d'entreprises pour avancer sur les sujets qui nous sont chers (climat et d\u00e9sormais biodiversit\u00e9). De plus en plus d'entreprises cherchent donc \u00e0 appr\u00e9hender le sujet pour, id\u00e9alement, finir par l'int\u00e9grer dans un ou plusieurs processus.\n\nEn version tr\u00e8s peu ambitieuse les entreprises s'int\u00e9ressent au climat ou \u00e0 la biodiversit\u00e9 pour faire un rapport d\u00e9veloppement durable qui met en avant les quelques initiatives qui vont dans le bon sens, sans que quoi que ce soit de significatif ait chang\u00e9 dans le fonctionnement par ailleurs.\n\nEn version tr\u00e8s ambitieuse elles font appel \u00e0 nous pour questionner les march\u00e9s, politiques produits, investissements, organisations, etc (inutile de dire que ce sont celles que l'on pr\u00e9f\u00e8re !). Entre les deux on observe toutes les nuances de gris.\n\nDans tous les cas de figure, comme les journ\u00e9es ne sont pas extensibles, cet afflux de demandes signifie que nous avons besoin de monde. Il y a actuellement 14 postes \u00e0 pourvoir c\u00f4t\u00e9 conseil et 2 c\u00f4t\u00e9 data (https://lnkd.in/enMNQpQA ).\n\nAu sein de la branche conseil il y a notamment 4 offres o\u00f9 nous cherchons un peu plus des moutons \u00e0 5 pattes qui sont :\n- chef de projet biodiversit\u00e9 (https://lnkd.in/eEUKcFKZ )\n- chef de projet strat\u00e9gie att\u00e9nuation (https://lnkd.in/e3NhxQmr )\n- consultant senior secteur luxe et retail (https://lnkd.in/e8Nnesiw ). NB : pourquoi des partisans de la d\u00e9carbonation s'int\u00e9ressent au luxe, trop souvent symbole des exc\u00e8s ? Parce que c'est en pratique un inducteur de tendances : ce qui se passe dans le luxe est souvent \"copi\u00e9\" ensuite par la consommation de masse, au niveau des produits comme au niveau des proc\u00e9d\u00e9s de fabrication. \n- consultant senior finance (https://lnkd.in/e_Bnq-vK ).\n\nQue ce soit pour ces offres ou pour les autres qui sont mentionn\u00e9es, si l'aventure vous tente, normalement ce sera facile de deviner le mode d'emploi pour la suite !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6945072408458362880,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6945072409238499328,urn:li:activity:6945072409238499328,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 113, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6945072409238499328,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6945072409238499328,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6945072409238499328", + "threadId": "activity:6945072409238499328", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6945072409238499328", + "urn": "urn:li:activity:6945072409238499328", + "numComments": 154, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6945072409238499328", + "reactionTypeCounts": [ + { + "count": 2048, + "reactionType": "LIKE" + }, + { + "count": 92, + "reactionType": "APPRECIATION" + }, + { + "count": 75, + "reactionType": "EMPATHY" + }, + { + "count": 37, + "reactionType": "PRAISE" + }, + { + "count": 31, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6945072409238499328", + "numLikes": 2289, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6945072409238499328", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2289, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6944909401384218625,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6944909401384218625", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6944909401384218625)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6944909401384218625)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pourquoi-les-banques-ont-tant-de-mal-%C3%A0-convaincre-activity-6944909401384218625-N_b0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6944909400398548993", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6944909401384218625", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6944909401384218625,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6944909401384218625,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6944909400398548993", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "XwT4oMTjyHdDb8vhKEqDZA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6944909401384218625,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8038401392697254016", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675682069503?e=1677240000&v=beta&t=tAxuk-S6lMD3y-KMsyds0nCRmkWibNZXjjqyGZRvYuU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675682069503?e=1677240000&v=beta&t=ze7vVmrb7XeCw1UT3BP1UJJomLwyZs5p6qZHa3-yYn8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675682069503?e=1677240000&v=beta&t=qetJNG8eEBpcD-Pu7WGw7Ex6L34Q2-tKk9jhEpc53eQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675682069503?e=1677240000&v=beta&t=xEZXyJwKWxjBEG-oJVFAXPiiTDrQ7WhVYU8FvAfjkFs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQH-U1q5YhEO9g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8038401392697254016)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8038401392697254016)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pourquoi les banques ont tant de mal \u00e0 convaincre sur le climat by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/pourquoi-les-banques-ont-tant-de-mal-a-convaincre-sur-le-climat-1414393" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pourquoi les banques ont tant de mal \u00e0 convaincre sur le climat" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6944909400398548993,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 185, + "length": 15, + "miniProfile": { + "firstName": "Gabriel", + "lastName": "Nedelec", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABdVAfcBF6INBNy_yvfnrW6ICCPvU2jedGw", + "occupation": "Journaliste Les Echos", + "objectUrn": "urn:li:member:391447031", + "entityUrn": "urn:li:fs_miniProfile:ACoAABdVAfcBF6INBNy_yvfnrW6ICCPvU2jedGw", + "publicIdentifier": "gabriel-nedelec-a1b117ab", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517634921639?e=1681948800&v=beta&t=-KiIBFoEempBHk6QmcbVoNMlmPV_SicIkoa4vKdTVCc", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517634921639?e=1681948800&v=beta&t=C064LZz_R1dmIvT3g1_5I05qFyLRojTk-e2ql7wlLwk", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517634921639?e=1681948800&v=beta&t=sqeHSg9lRMTIzj-ZnUMiylfD6GnR69TkAkbJGz2XBe8", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517634921639?e=1681948800&v=beta&t=ZZqzXLBgQ8M2fvSkhow9h4y0wNCaCkR0yDLkxfEfkkw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQELJN85LNMMoA/profile-displayphoto-shrink_" + } + }, + "trackingId": "99lKiW4sTZeycgFrcqF7eg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 295, + "length": 17, + "miniProfile": { + "firstName": "Julien", + "lastName": "Lefournier", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABPxSAsBCJQHrvVPPW4JAbNt61IrloOSy7U", + "occupation": "Consultant Ind\u00e9pendant, co-auteur de \"L'illusion de la finance verte\" (Les Editions de l'Atelier).", + "objectUrn": "urn:li:member:334579723", + "entityUrn": "urn:li:fs_miniProfile:ACoAABPxSAsBCJQHrvVPPW4JAbNt61IrloOSy7U", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1621411471515?e=1681948800&v=beta&t=EF2oli8u8f8Nqgu_9IvTrL1_6WPaYlMeloYNc_BzUWc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1621411471515?e=1681948800&v=beta&t=FNfbPgliaWmJfMHdXtEfgHQZq6pt50V_mYdI9oiML6A", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQHXIYAA4VTOdw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "julien-lefournier-63707294", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1643034363314?e=1681948800&v=beta&t=ZTcDtCdGxmXDuvmVdZhAeLf9x7XZz_NAexYTahg2L9Q", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1643034363314?e=1681948800&v=beta&t=wBWhXFvEec1lymDLcw6ad3IxncMLoCv-uLZa13WVLZI", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1643034363314?e=1681948800&v=beta&t=cyfLF3LgIqX1gzD-J2UUWN4L8fPBN0O6T51c6qTyGjM", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1643034363314?e=1681948800&v=beta&t=-KmxEKiiM6O-eCq0P-zO1vFsLvjIEKY25E2gEHkEveo", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQFMIu0PVPgKoA/profile-displayphoto-shrink_" + } + }, + "trackingId": "H9IIKH5bQsu4BPqT6eQZzA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "\"Les banques sont le reflet de l'\u00e9conomie d'aujourd'hui. Si cette \u00e9conomie est brune, alors le bilan des banques sera brun.\". Ainsi se termine cette analyse d'un journaliste des Echos, Gabriel Nedelec, dans l'\u00e9dition du journal dat\u00e9e d'hier. \n\nDe fait, c'est aussi la th\u00e8se d'Alain Grandjean et Julien Lefournier dans \"L'illusion de la finance verte\" (https://lnkd.in/dRS9vNZ ), o\u00f9 les auteurs expliquent pourquoi les grandes banques (le raisonnement est moins vrai pour de petits \u00e9tablissements), qui pr\u00eatent \u00e0 tout le monde et ach\u00e8tent les actions \u00e9mises par tout le monde, ne peuvent se diff\u00e9rencier de l'\u00e9conomie dans son ensemble. \n\nSi cette derni\u00e8re nous emm\u00e8ne vers un monde \u00e0 3 ou 4 degr\u00e9s de r\u00e9chauffement, alors les grandes banques ne peuvent \u00eatre 2\u00b0C ou 1,5 \u00b0C (ou \"neutres en carbone\"). Il n'y a en effet pas assez de morceaux \"propres\" de l'\u00e9conomie qui pourraient accueillir la totalit\u00e9 des pr\u00eats et investissements figurant au bilan de ces banques. Lorsque l'on fait 1000 \u00e0 2000 milliards d'euros de total de bilan (cas de BNPP, BPCE, Cr\u00e9dit Agricole, ou Soci\u00e9t\u00e9 G\u00e9n\u00e9rale) il n'est pas possible de limiter son activit\u00e9 \u00e0 des entreprises qui sont \"align\u00e9es 2\u00b0C\", c'est \u00e0 dire en pratique capables de rester en \"bonne sant\u00e9 \u00e9conomique\" dans un monde o\u00f9 les \u00e9missions baissent de 5% par an. Il faut n\u00e9cessairement pr\u00eater \u00e0 des entreprises ou \u00e9tats \"pas align\u00e9s\" quand on manie de telles sommes d'argent.\n\nIl n'est donc pas \u00e9tonnant que de plus en plus d'\u00e9tablissements se fassent reprocher de raconter des carabistouilles par des r\u00e9gulateurs, au motif que les affirmations de compatibilit\u00e9 de leurs produits financiers avec une \u00e9conomie bas carbone ne sont pas fond\u00e9es.\n\nLe noeud de l'affaire est la m\u00e9thode employ\u00e9e. Si on oublie de payer la TVA dans une entreprise, il est plus facile de dire qu'elle est b\u00e9n\u00e9ficiaire. De m\u00eame, il est plus facile de dire que l'on est compatible avec une \u00e9conomie bas carbone si le p\u00e9rim\u00e8tre de ce qui est examin\u00e9 est trop restreint, ou si les seuils utilis\u00e9s sont trop bas.\n\nCe n'est pas qu'une question de \"cesser de financer le p\u00e9trole\". Financer la marine marchande, une cha\u00eene de valeur mondialis\u00e9e, ou un hypermarch\u00e9, c'est aussi indirectement \"financer le p\u00e9trole\" aujourd'hui. La premi\u00e8re \u00e9tape pour les banques est d\u00e9j\u00e0 de bien comprendre \"\u00e0 quelles distance elles sont du probl\u00e8me\". Cela demande un gros effort de formation sur la compr\u00e9hension de la nature du probl\u00e8me \u00e9nergie climat pour l'ensemble des effectifs, et le d\u00e9ploiement d'une m\u00e9trique carbone appropri\u00e9e applicable \u00e0 chaque op\u00e9ration unitaire (ce qui coute 5% \u00e0 10% de la d\u00e9pense informatique). C'est avant tout de ne pas faire cela que l'on peut l\u00e9gitimement reprocher aux banques." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6944909400398548993,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6944909401384218625,urn:li:activity:6944909401384218625,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 44, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6944909401384218625,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6944909401384218625,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6944909401384218625", + "threadId": "activity:6944909401384218625", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6944909401384218625", + "urn": "urn:li:activity:6944909401384218625", + "numComments": 57, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6944909401384218625", + "reactionTypeCounts": [ + { + "count": 588, + "reactionType": "LIKE" + }, + { + "count": 77, + "reactionType": "INTEREST" + }, + { + "count": 76, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6944909401384218625", + "numLikes": 750, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6944909401384218625", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 750, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6944566241600655362,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6944566241600655362", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6944566241600655362)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6944566241600655362)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-influenceurs-alimentent-un-imaginaire-activity-6944566241600655362-bskM?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6944566240690487296", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6944566241600655362", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6944566241600655362,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6944566241600655362,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6944566240690487296", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "bQJZz36NekWKQHqi9UzmZA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6944566241600655362,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7326828784378792917", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676351495767?e=1677240000&v=beta&t=Ex77Klhm-Jvt3gqqZXPgPVciENe_wHDZt1SeXKT0rrU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676351495767?e=1677240000&v=beta&t=lbnAHTA0eWSjlr0Slk2_rBPw78DD7_0aK3HAXCT2k4U", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676351495767?e=1677240000&v=beta&t=QDQjleqJyJMtZ530lktU8-Z5E7wEUWnjkMtoJVa5Cto", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676351495767?e=1677240000&v=beta&t=rqrjdV7-jTIJPziFTvzceMnuEKdPYNc8FPgY1tz5sWg", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQHJ3cK4z5yj6g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7326828784378792917)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7326828784378792917)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "start.lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab Les influenceurs alimentent un imaginaire de la surconsommation compl\u00e8tement d\u00e9pass\u00e9 \u00bb by start.lesechos.fr", + "actionTarget": "https://start.lesechos.fr/societe/environnement/les-influenceurs-alimentent-un-imaginaire-de-la-surconsommation-completement-depasse-1412537" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0Les influenceurs alimentent un imaginaire de la surconsommation compl\u00e8tement d\u00e9pass\u00e9\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6944566240690487296,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 816, + "length": 10, + "miniProfile": { + "firstName": "Vinz", + "lastName": "Kant\u00e9", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABnoaesBFyeDnfMQ7vVH_WdqzzSE1gZnFeI", + "occupation": "Cr\u00e9ateur, Animateur, Prod, conf\u00e9rencier chez #LIMIT #SchoolUp \ud83c\udf0d\ud83d\udc9a", + "objectUrn": "urn:li:member:434661867", + "entityUrn": "urn:li:fs_miniProfile:ACoAABnoaesBFyeDnfMQ7vVH_WdqzzSE1gZnFeI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1643988095695?e=1681948800&v=beta&t=7C2zsu2AnUIGYGJLxdwy6H0Pfz49i4bCG42UTyrDQiU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1643988095695?e=1681948800&v=beta&t=4mbItdC9wOaAB8PKJJb-Yb_-TvLU7cJhmTKvMc1TnoE", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQGwWxvh-yImnw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "vinzkante", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1652368741388?e=1681948800&v=beta&t=oBVj0OP183lIxUjW-ObsX93mvqUUhnlf8CUv9CYdkL8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1652368741388?e=1681948800&v=beta&t=QLthymcqCv14W4AiYsuUqj2QbfpGNDM6Pj43wuQjwBY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1652368741388?e=1681948800&v=beta&t=qpYGcnw-PgEP8UZgyFGsOXkDPZUoHvFO1KR2QFlKBb4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1652368741388?e=1681948800&v=beta&t=_jJyLbpMGXX6ocxEt866mRbwvojncDU-oE19Bdveik8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFVgbwuDHeE9Q/profile-displayphoto-shrink_" + } + }, + "trackingId": "UyCoxj/wSnCgY1dhV74w9w==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Ils s'adressent \u00e0 un public qui, parfois, \"les conna\u00eet mieux que le pr\u00e9sident de la r\u00e9publique\", et qui n'a probablement pas vot\u00e9 en masse hier. \"Ils\", ce sont les influenceurs, terme \u00e9l\u00e9gant pour d\u00e9signer des versions high tech de l'homme sandwich, c'est \u00e0 dire des gens dont le m\u00e9tier est de vanter des produits ou services. \n\nEn pratique, ces \"influenceurs\" sont des esp\u00e8ces de r\u00e9gies publicitaires, \u00e0 ceci pr\u00e8s qu'ils sont moins r\u00e9gul\u00e9s que ces derni\u00e8res (ils peuvent par exemple vanter de l'alcool).\n\nUn collectif - \"Paye ton influence\" - s'est mis en t\u00eate d'interpeller ces \"hommes sandwich\" et \"femmes sandwich\" des temps modernes, en leur demandant de faire un peu plus attention \u00e0 l'aspect environnemental de ce dont ils font la promotion https://lnkd.in/eWGYzcGb \n\nLa \"reconversion\" existe parfois : ainsi Vinz Kant\u00e9 est carr\u00e9ment pass\u00e9 de la publicit\u00e9 pour des objets ou services au... militantisme climatique pur et dur (voir un article de Reporterre dans lequel il explique un peu son parcours : https://lnkd.in/eqeYkxgY ).\n\nSi les influenceurs sont conformes \u00e0 leur public, et que les m\u00e9decins disent vrai quand ils d\u00e9clarent que 60% des jeunes de 16 \u00e0 25 ans sont angoiss\u00e9s par la crise climatique (https://lnkd.in/eT_7Nd_a ), il faut esp\u00e9rer que l'exemple de Vinz Kant\u00e9 sera suivi par de nombreux autres. \n\nA quand une masse d'influenceurs et d'influenceuses qui ne parlent que d'objets dont le bilan carbone est bas et qui occasionnent des \u00e9missions \u00e9vit\u00e9es ? Ca tombe bien : Carbone 4 vient de publier un \"cadre m\u00e9thodologique g\u00e9n\u00e9ral de calcul et de reporting des \u00e9missions \u00e9vit\u00e9es par les solutions des entreprises\" dans le cadre du projet NZI : https://lnkd.in/eKauv6Pr\n\nSi des influenceurs (et -ceuses) veulent s'en emparer, on sera ravis de leur faire une formation :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6944566240690487296,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6944566241600655362,urn:li:activity:6944566241600655362,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 220, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6944566241600655362,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6944566241600655362,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6944566241600655362", + "threadId": "activity:6944566241600655362", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6944566241600655362", + "urn": "urn:li:activity:6944566241600655362", + "numComments": 285, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6944566241600655362", + "reactionTypeCounts": [ + { + "count": 9159, + "reactionType": "LIKE" + }, + { + "count": 491, + "reactionType": "PRAISE" + }, + { + "count": 338, + "reactionType": "INTEREST" + }, + { + "count": 252, + "reactionType": "MAYBE" + }, + { + "count": 131, + "reactionType": "EMPATHY" + }, + { + "count": 126, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6944566241600655362", + "numLikes": 10497, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6944566241600655362", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 10502, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6944226360127062016,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6944226360127062016", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6944226360127062016)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6944226360127062016)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-france-ne-re%C3%A7oit-plus-du-tout-de-gaz-russe-activity-6944226360127062016-Mjwt?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6944226359338524672", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6944226360127062016", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6944226360127062016,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6944226360127062016,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6944226359338524672", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "CG4Ey8wgk1Wq5vTqHsSXhQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6944226360127062016,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7463502640725027924", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675688093095?e=1677240000&v=beta&t=v2ucYC0uQckk0rfB3E4ROcxFtRkjmTIfthNw2LPbRq0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675688093095?e=1677240000&v=beta&t=65BCjmEQwcAvRcC4-J6MklJXj5wRwEBl9gQi2AAYxbg", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675688093095?e=1677240000&v=beta&t=XIxGXzISl4D60JLU4efnRTB1_mJLIqL68YshpyfVl0g", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675688093095?e=1677240000&v=beta&t=F3DM_-xBRRAsXAT5QTJWZ5Dz5TJszyaP5pSyxVZYE5g", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFTKFBeMRgfIg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7463502640725027924)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7463502640725027924)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La France ne re\u00e7oit plus du tout de gaz russe by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/chute-des-exportations-de-gaz-russe-la-france-directement-touchee-1414029" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La France ne re\u00e7oit plus du tout de gaz russe" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6944226359338524672,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est en pleine canicule que l'on apprend que nous allons peut-\u00eatre... avoir froid cet hiver. La Russie fournissait 40% du gaz europ\u00e9en avant le d\u00e9but des hostilit\u00e9s en Ukraine, soit environ 160 milliards de m3 par an sur une consommation d'environ 400. Depuis le d\u00e9but de ce conflit, les europ\u00e9ens cherchent \u00e0 diversifier leur approvisionnement, notamment aupr\u00e8s des USA. \n\nEn fait, on ne parle pas des m\u00eames ordres de grandeur : Les USA ont fournit environ 25 milliards de m3 de gaz (liqu\u00e9fi\u00e9) \u00e0 l'Europe en 2021, soit un petit sixi\u00e8me de ce que nous exportent les russes.\n\nMais r\u00e9cemment l'adversit\u00e9 vient de se manifester des deux cot\u00e9s \u00e0 la fois. Tout d'abord un des trains de liqu\u00e9faction am\u00e9ricains qui approvisionnent l'Europe vient de conna\u00eetre un incendie qui va le rendre totalement ou partiellement indisponible jusqu'\u00e0 la fin de l'ann\u00e9e (https://lnkd.in/eNBUzt5q ).\n\nA l'est, le principal gazoduc alimentant l'Europe, Nordstream 1, voit son d\u00e9bit baisser, \"officiellement\" parce qu'une partie des turbines de compression ne peut pas revenir de maintenance \u00e0 l'\u00e9tranger (elle \u00e9tait chez Siemens). Apr\u00e8s les importations en provenance de Yamal et celles transitant par l'Ukraine, c'est donc au tour de ce qui arrive par la Baltique de commencer \u00e0 faiblir (voir graphique en commentaire).\n\nDans le grand plan de verdissement de l'\u00e9lectricit\u00e9 europ\u00e9enne sans nucl\u00e9aire initi\u00e9 par les allemands il y a 20 ans, \"on\" comptait beaucoup sur le gaz comme \"\u00e9nergie de transition\" (laquelle \"transition\" est en fait un \u00e9tat permanent tant que l'on ne sait pas stocker l'\u00e9lectricit\u00e9 \u00e0 tr\u00e8s large \u00e9chelle, et qu'il faut garder des capacit\u00e9s install\u00e9es fossiles pour assurer le pilotage du r\u00e9seau : https://lnkd.in/eVP7ZeH6 ). \n\nSauf que pour cela il faut du gaz...\n\nLa bonne nouvelle est qu'avec moins de gaz on va moins contribuer aux \u00e9missions dans le chauffage, puisque 60% du gaz sert au confort thermique des b\u00e2timents. Mais la mauvaise est que le charbon - donc le CO2 \u00e9lectrique - repart \u00e0 la hausse puisque les r\u00e9seaux \u00e9lectriques ne peuvent pas se passer de sources pilotables. \n\nL'actualit\u00e9 est malheureusement une r\u00e9p\u00e9tition \u00e0 petite \u00e9chelle du cadre dans lequel il faut penser nos plans pour l'avenir : plus de cons\u00e9quences d\u00e9sagr\u00e9ables du changement climatique avec moins d'\u00e9nergie pour organiser nos activit\u00e9s. C'est dans ce cadre qu'il faut penser \"adaptation\". Et la conclusion est que nous ne nous \"adapterons\" pas \u00e0 tout (https://lnkd.in/e_MHKBeM ). Loin s'en faut....\n\nSur ce bon vote !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6944226359338524672,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6944226360127062016,urn:li:activity:6944226360127062016,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 101, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6944226360127062016,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6944226360127062016,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6944226360127062016", + "threadId": "activity:6944226360127062016", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6944226360127062016", + "urn": "urn:li:activity:6944226360127062016", + "numComments": 221, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6944226360127062016", + "reactionTypeCounts": [ + { + "count": 2020, + "reactionType": "LIKE" + }, + { + "count": 291, + "reactionType": "INTEREST" + }, + { + "count": 235, + "reactionType": "MAYBE" + }, + { + "count": 36, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6944226360127062016", + "numLikes": 2610, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6944226360127062016", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2611, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 Edited \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6943949148538744832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6943949148538744832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6943949148538744832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6943949148538744832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cest-dune-originalit%C3%A9-folle-ma-chronique-activity-6943949148538744832-N8cE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6943949147578224640", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6943949148538744832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6943949148538744832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6943949148538744832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6943949147578224640", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "mXV7bdbjISsftyXxG2ggyQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6943949148538744832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHI5rlctdQvcA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHI5rlctdQvcA", + "artifacts": [ + { + "width": 1328, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1655566487537?e=1679529600&v=beta&t=4Brx-ORvSBWJSb5y2d1ccURS0DFpwUZCKji6kHMlpjo", + "expiresAt": 1679529600000, + "height": 1086 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1655566488636?e=1679529600&v=beta&t=OY0OQko6tRlsbO94yvP9L370UZGoBEfQBxiE9wcxqsE", + "expiresAt": 1679529600000, + "height": 16 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1655566488636?e=1679529600&v=beta&t=hnHlZI9lvobs9M5jDqD4lEJrtfIX4sffKJkfgY0d9PI", + "expiresAt": 1679529600000, + "height": 1047 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1655566488636?e=1679529600&v=beta&t=qWYXr6HafrhEuJAyorlPhOx82kRcxumxuXBgzY6tU8c", + "expiresAt": 1679529600000, + "height": 393 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1655566488636?e=1679529600&v=beta&t=drBrJA3hfbZvDWxkqkJSVSmIScU0UNA01l9W4L2b3rs", + "expiresAt": 1679529600000, + "height": 131 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1655566488636?e=1679529600&v=beta&t=2ekY-VHAaCVneXN7nysRcCENFvtSoBPEYZJwAMMX9yc", + "expiresAt": 1679529600000, + "height": 654 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHI5rlctdQvcA/feedshare-shrink_" + }, + "displayAspectRatio": 0.8177710843373494 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6943949147578224640,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est d'une originalit\u00e9 folle : ma chronique de ce matin sur RTL parlait de... canicule : https://lnkd.in/ePTfJyUN Malgr\u00e9 l'absence de mes planches powerpoint favorites, j'y ai d\u00e9crit le graphique qui figure ci-dessous, et qui vient directement du dernier rapport du GIEC. Il dit une chose pas sympathique : les vagues de chaleur vont augmenter beaucoup plus rapidement que la moyenne de la temp\u00e9rature, et leur intensit\u00e9 maximale va aussi augmenter plus vite que la moyenne des temp\u00e9ratures.\n\nPrenons l'\u00e9pisode le plus chaud du climat de la deuxi\u00e8me moiti\u00e9 du 19\u00e8 si\u00e8cle. Avec un degr\u00e9 de r\u00e9chauffement global, c'est \u00e0 dire \u00e0 peu pr\u00e8s maintenant, la pire vague de chaleur de 1850-1900 est d\u00e9pass\u00e9e une fois tous les 10 ans, et la temp\u00e9rature atteinte \u00e0 ce moment l\u00e0 est 1,2 \u00b0C plus \u00e9lev\u00e9e que la maximale du 19\u00e8 si\u00e8cle.\n\nA 1,5\u00b0C (objectif politique en version ambitieuse, qui ne sera pas tenu sauf pand\u00e9mie ou autre effondrement rapide) la pire vague de chaleur de 1850-1900 est d\u00e9pass\u00e9e quasiment une fois tous les 5 ans, et \u00e0 ce moment l\u00e0 le maximum d\u00e9passe de 2\u00b0C le maximum de la p\u00e9riode pr\u00e9industrielle.\n\nA 2\u00b0C (version haute de l'objectif politique) c'est tous les 3 ans que le max de 1850-1900 est d\u00e9pass\u00e9, et il l'est de quasiment 3\u00b0C. \n\nA 4\u00b0C - version \"charbon \u00e0 fond\" - le max de 1850-1900 est d\u00e9pass\u00e9 quasiment tous les ans de plus de 5\u00b0C. C'est aussi dans ce monde l\u00e0 que 2 milliards d'\u00eatres humains - m\u00eame bien portants - ne peuvent quasiment plus mettre le nez dehors sans risquer de mourir plus de 300 jours par an (il n'est alors plus possible de travailler dehors sauf peut-\u00eatre la nuit, donc plus d'agriculture, et donc en pratique ca devient invivable au sens premier).\n\nCa, ce sont les pr\u00e9visions. Mais quand on compare les pr\u00e9visions d'il y a 10 ans avec l'\u00e9volution actuelle, on se rend compte que \"la r\u00e9alit\u00e9 d\u00e9passe la fiction\", c'est \u00e0 dire que les records de chaud ont augment\u00e9 plus rapidement que ce qui \u00e9tait envisag\u00e9 il y a une d\u00e9cennie. De l\u00e0 \u00e0 se dire que les pr\u00e9visions actuelles sont conservatrices...\n\nComme l'\u00e9volution du climat plan\u00e9taire d\u00e9pend avant tout de ce que feront l'ensemble des pays de la plan\u00e8te, il faut se pr\u00e9parer \u00e0 vivre dans un climat qui va de toute fa\u00e7on devenir de plus en plus hostile. \n\nD\u00e9j\u00e0 que la question de la d\u00e9carbonation (indispensable et de toute fa\u00e7on subie si elle n'est pas volontaire) de nos activit\u00e9s peine \u00e0 se faire un chemin dans les d\u00e9bats politiques : en ce qui concerne \"l'adaptation\" - que je pr\u00e9f\u00e8re qualifier de \"r\u00e9silience\", parce que l'on ne parviendra pas \u00e0 tout pr\u00e9server en \"s'adaptant\", et il y a des choses que l'on sait d\u00e9j\u00e0 que l'on va perdre - l\u00e0 c'est le silence int\u00e9gral dans les d\u00e9bats. Z\u00e9ro (pour la) question. Ce Samedi nous rappelle une fois de plus qu'il y a urgence..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6943949147578224640,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6943949148538744832,urn:li:activity:6943949148538744832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 56, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6943949148538744832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6943949148538744832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6943949148538744832", + "threadId": "activity:6943949148538744832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6943949148538744832", + "urn": "urn:li:activity:6943949148538744832", + "numComments": 165, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6943949148538744832", + "reactionTypeCounts": [ + { + "count": 2164, + "reactionType": "LIKE" + }, + { + "count": 418, + "reactionType": "INTEREST" + }, + { + "count": 214, + "reactionType": "MAYBE" + }, + { + "count": 42, + "reactionType": "APPRECIATION" + }, + { + "count": 25, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6943949148538744832", + "numLikes": 2872, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6943949148538744832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2872, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6943491388860723200,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6943491388860723200", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6943491388860723200)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6943491388860723200)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_disney-parks-around-the-world-a-private-activity-6943491388860723200-4sFh?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6943491388135096320", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6943491388860723200", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6943491388860723200,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6943491388860723200,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6943491388135096320", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "9jM8lD3tGGk4HE06kcugJQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6943491388860723200,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7911589805815432248", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675568063802?e=1677240000&v=beta&t=Q3K43l_AHzJocrdiz11CgFDtEq3bYVuvZ6GdTno2cpo", + "expiresAt": 1677240000000, + "height": 342 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675568063802?e=1677240000&v=beta&t=H2iJv8angysoquj3QRqwXd6ZRVUxSJPGAtxzoQa0tsQ", + "expiresAt": 1677240000000, + "height": 548 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675568063802?e=1677240000&v=beta&t=nFTj5pv4_wY3aWSesGvnzd9VPDJY6hfFXXY4M8EpIVA", + "expiresAt": 1677240000000, + "height": 68 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675568063802?e=1677240000&v=beta&t=uKThMQmas1qfnID4dqvCPiZcMDC5nAEtZamnS5dMyj0", + "expiresAt": 1677240000000, + "height": 205 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D5627AQEikE2HAITfww/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7911589805815432248)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7911589805815432248)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "adventuresbydisney.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Disney Parks Around The World \u2013 A Private Jet Adventure | Adventures By Disney by adventuresbydisney.com", + "actionTarget": "https://www.adventuresbydisney.com/around-the-world/global-jet-adventures/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Disney Parks Around The World \u2013 A Private Jet Adventure | Adventures By Disney" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6943491388135096320,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Chez Disney on vend du r\u00eave. Et comme 42\u00b0C \u00e0 l'ombre en juin ne fait pas r\u00eaver, Disney vous propose, si vous avez 100.000 $ de c\u00f4t\u00e9, de contribuer \u00e0 faire passer cela \u00e0 43\u00b0C le plus vite possible, en embarquant \u00e0 bord d'un jet priv\u00e9 pour faire le tour des parcs Disney \u00e0 travers le monde.\n\nRep\u00e9r\u00e9e en pleine canicule battant un nouveau record de pr\u00e9cocit\u00e9 (avant le prochain record, malheureusement, puisque dans un climat en d\u00e9rive permanente la notion m\u00eame de \"normale\" n'existe plus), cette pub est, au choix, d\u00e9sesp\u00e9rante, provocante, irresponsable, ou... normale. En effet, une fois que vous faites le m\u00e9tier que vous faites, canicule ou pas, on continue !\n\nLorsque l'Etat fran\u00e7ais a permis \u00e0 Disney d'artificialiser des milliers d'hectares (de terres agricoles de bonne qualit\u00e9 pour l'essentiel) \u00e0 l'Est de Paris pour cr\u00e9er un aspirateur \u00e0 touristes a\u00e9roport\u00e9s et un temple de la soci\u00e9t\u00e9 de consommation am\u00e9ricaine (avec un plus un partage des recettes qui laissait les charges d'am\u00e9nagement \u00e0 la France pendant que b\u00e9n\u00e9fices allaient aux USA), la suite \u00e9tait \u00e9crite. Une fois que des dizaines de milliers d'emplois en d\u00e9pendent, tout arr\u00eater rapidement devient tr\u00e8s difficile. \n\nMais.... le transport a\u00e9rien est n\u00e9 avec le p\u00e9trole, et le trafic actuel est impossible \u00e0 maintenir sans p\u00e9trole. Or ce dernier est \u00e9puisable. La \"d\u00e9crue\" de l'acheminement d'une partie des touristes est donc inexorable \u00e0 terme, et partant celle de l'activit\u00e9 aussi. Ne pas le faire volontairement signifie juste que ce sont des \"impr\u00e9vus\" qui s'en chargeront \u00e0 notre place.\n\nEt pour le moment rien dans la formation des politiques ne les pr\u00e9pare \u00e0 g\u00e9rer de mani\u00e8re planifi\u00e9e la contraction d'activit\u00e9s qui sont en totale opposition avec l'enjeu climatique, avec \u00e0 la cl\u00e9 la reconversion des salari\u00e9s vers d'autres activit\u00e9s qui sont plus \"align\u00e9es\" avec un monde bas carbone. Cette remarque ne vaut pas que pour Disney, \u00e9videmment.\n\nTant que ce verrou l\u00e0 n'a pas \u00e9t\u00e9 trait\u00e9, la chaine amont continuera d'exister, et on verra en pleine canicule des pubs qui paraissent totalement d\u00e9plac\u00e9es. Pour des jets priv\u00e9s permettant de visiter les parcs Disney comme pour le reste." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6943491388135096320,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6943491388860723200,urn:li:activity:6943491388860723200,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 244, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6943491388860723200,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6943491388860723200,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6943491388860723200", + "threadId": "activity:6943491388860723200", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6943491388860723200", + "urn": "urn:li:activity:6943491388860723200", + "numComments": 394, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6943491388860723200", + "reactionTypeCounts": [ + { + "count": 4740, + "reactionType": "LIKE" + }, + { + "count": 550, + "reactionType": "MAYBE" + }, + { + "count": 332, + "reactionType": "PRAISE" + }, + { + "count": 215, + "reactionType": "INTEREST" + }, + { + "count": 109, + "reactionType": "APPRECIATION" + }, + { + "count": 27, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6943491388860723200", + "numLikes": 5973, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6943491388860723200", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5974, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6943132418383998976,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6943132418383998976", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6943132418383998976)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6943132418383998976)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_hier-et-aujourdhui-a-lieu-%C3%A0-paris-le-salon-activity-6943132418383998976-iwM1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6943132417616453632", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6943132418383998976", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6943132418383998976,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6943132418383998976,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6943132417616453632", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "6Hf6IA9letKazshqliM6IA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6943132418383998976,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEqJX5JiAY8dA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEqJX5JiAY8dA", + "artifacts": [ + { + "width": 1074, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1655371764554?e=1679529600&v=beta&t=5Y2z-oP_BM6W5sKwyuYaBrDc8DQ6xUW7AMAdx0L6CT0", + "expiresAt": 1679529600000, + "height": 1486 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1655371764912?e=1679529600&v=beta&t=j9nJF-3fw1YwwqYVS6x5mfpWAFjA0PsCu3kITzFx0ZY", + "expiresAt": 1679529600000, + "height": 28 + }, + { + "width": 1074, + "fileIdentifyingUrlPathSegment": "1280/0/1655371764912?e=1679529600&v=beta&t=VtnMYuPA3HPlGn6UIgGyWK3U_HRAc3lHVjtG4TbQvfI", + "expiresAt": 1679529600000, + "height": 1486 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1655371764912?e=1679529600&v=beta&t=XXB-s780cTHG4QcjqoKFAGqwd_O2LtC_EGd-1GnZ2I8", + "expiresAt": 1679529600000, + "height": 664 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1655371764912?e=1679529600&v=beta&t=Jt3m2q9UYLV7oT2tpHDFNC_qNGaKfNqKJiAt1oJOs6w", + "expiresAt": 1679529600000, + "height": 221 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1655371764912?e=1679529600&v=beta&t=4CeLSkKImqEiNwCDkbVrjNraQ2plEx_yspi4CIIKKNo", + "expiresAt": 1679529600000, + "height": 1107 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEqJX5JiAY8dA/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, website, timeline" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6943132417616453632,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Hier et aujourd'hui a lieu \u00e0 Paris le salon Vivatech (https://lnkd.in/enitaAmQ ). Comme son nom l'indique facilement, il s'agit d'un endroit o\u00f9 \"que vive la technologie\". En pleine canicule, pas que chez nous du reste (https://bit.ly/3mTL1IY ), il est int\u00e9ressant de voir quelles sont les innovations mises en avant. \n\nOn trouve des taxis volants, Notre Dame en r\u00e9alit\u00e9 virtuelle, des robots dans les champs, une application qui permet \"d'interagir en 3D avec des personnes comme si elles \u00e9taient dans le m\u00eame espace physique\", ou encore des NFT et autres d\u00e9veloppements qui sont autant de promesses de licornes (qui ne se d\u00e9finissent, rappelons le, qu'\u00e0 partir du niveau de valorisation de capital, et pas du tout \u00e0 partir de leur utilit\u00e9 sociale). \n\nLa question est pos\u00e9e de savoir si cela vaut le coup d'accro\u00eetre les \u00e9missions pour disposer de ces innovations, dont le d\u00e9ploiement \u00e0 large \u00e9chelle demandera mat\u00e9riaux et \u00e9nergie. Les Echos - qui consacrent un suppl\u00e9ment \u00e0 la chose - n'abordent le probl\u00e8me qu'au travers des d\u00e9clarations de patrons de soci\u00e9t\u00e9s de la \"tech\", qui sont autant de brevets de vertu autoproclam\u00e9s pour expliquer que leur activit\u00e9 est bien \u00e9videmment compatible avec la sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique (voir l'exemple de celui de Huawei en commentaire).\n\nCarbone 4 s'est pench\u00e9 sur un cas particulier : les op\u00e9rateurs de \"Cloud\". Eux aussi multiplient les affirmations de neutralit\u00e9, voire m\u00eame, et ce n'est pas un poisson d'avril, d'empreinte carbone \"n\u00e9gative\", comme l'annonce cr\u00e2nement Microsoft (qui se revendique donc \u00eatre un \"aspirateur \u00e0 carbone\" ! Rien que ca...).\n\nLa publication que nous avons faite \u00e0 la suite ne fait que confirmer ce qui se pressent assez facilement : la r\u00e9alit\u00e9 (des \u00e9missions) d\u00e9passe la fiction (du r\u00e9cit \"conte de f\u00e9es\") : https://lnkd.in/euN4xHHq \n\nMais comment peut-il en \u00eatre autrement, quand les affirmations sont faites sur la seule base de l'envie que l'on en a, ou de m\u00e9thodes simplistes qui ne sont pas du tout adapt\u00e9es \u00e0 ce qui se passe physiquement ?\n\nSi \"la tech\" veut vraiment devenir s\u00e9rieuse sur la question elle doit :\n- faire des calculs avec des m\u00e9thodes adapt\u00e9es (et audit\u00e9es) sur l'empreinte carbone des d\u00e9veloppements propos\u00e9s (les m\u00e9thodes existent)\n- joindre ce calcul \u00e0 tout dossier de lev\u00e9e de fonds\n- s'interdire de d\u00e9velopper toute nouveaut\u00e9 qui n'est pas compatible avec une baisse de 5% par an des \u00e9missions plan\u00e9taires (la m\u00e9thode pour faire cela existe)\n\nEt sym\u00e9triquement les fonds d'investissement (private equity en anglais) devraient s'interdire de mettre le moindre dollar dans des \"techs\" qui ne sont pas compatibles avec la m\u00eame baisse des \u00e9missions de 5% par an. Ca interdirait juste les trois quarts (voire plus) des investissements dans la \"tech\", mais est-ce vraiment un probl\u00e8me ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6943132417616453632,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6943132418383998976,urn:li:activity:6943132418383998976,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 188, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6943132418383998976,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6943132418383998976,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6943132418383998976", + "threadId": "activity:6943132418383998976", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6943132418383998976", + "urn": "urn:li:activity:6943132418383998976", + "numComments": 358, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6943132418383998976", + "reactionTypeCounts": [ + { + "count": 3169, + "reactionType": "LIKE" + }, + { + "count": 279, + "reactionType": "MAYBE" + }, + { + "count": 263, + "reactionType": "PRAISE" + }, + { + "count": 149, + "reactionType": "INTEREST" + }, + { + "count": 54, + "reactionType": "APPRECIATION" + }, + { + "count": 44, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6943132418383998976", + "numLikes": 3958, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6943132418383998976", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3958, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6942834646363598848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6942834646363598848", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6942834646363598848)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6942834646363598848)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-images-denfants-sous-des-jets-deau-activity-6942834646363598848-X8Wp?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6942834645541527552", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6942834646363598848", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6942834646363598848,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6942834646363598848,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6942834645541527552", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "0wJPWI4ZKCRzFkNR0csRew==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6942834646363598848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7831353924846091183", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675604262470?e=1677240000&v=beta&t=7TykHfaHiEHhYgyQ8ZGtGKSNf9MqEmFFyNwdlEBQMu8", + "expiresAt": 1677240000000, + "height": 453 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675604262470?e=1677240000&v=beta&t=aBMrDnUjjLTLfVvtF0PL_d61miib_2Dv9A339i8_81Q", + "expiresAt": 1677240000000, + "height": 680 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675604262471?e=1677240000&v=beta&t=fu0JYOf7IoRJt7-tTDpeS_eOSWFJYT_lQ2YEP_bIEWc", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675604262471?e=1677240000&v=beta&t=V2JC5WTZwoQhXzmeOJpF4TGs27tmQXbiV-Nfd7G4Kxc", + "expiresAt": 1677240000000, + "height": 272 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4D27AQGp5ljGndmU2Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.56625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7831353924846091183)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7831353924846091183)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "slate.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les images d'enfants sous des jets d'eau n'ont rien \u00e0 faire dans les sujets canicule des JT by slate.fr", + "actionTarget": "http://www.slate.fr/story/229185/canicule-pas-enfants-jouent-eau-jt-illustration-television-rechauffement-climatique" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les images d'enfants sous des jets d'eau n'ont rien \u00e0 faire dans les sujets canicule des JT" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6942834645541527552,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il n'y a donc pas que moi pour me plaindre du traitement m\u00e9diatique \"pas assez \u00e0 la hauteur\" sur la question climatique. Cet article de Slate pointe un traitement de la canicule que toute personne ayant regard\u00e9 un journal t\u00e9l\u00e9vis\u00e9 a vu au moins une fois : des gens en train de se rafra\u00eechir dans une fontaine ou une piscine. \n\nC'est sur que quand on a une \u00e9quipe de reportage dans une ville, se d\u00e9placer jusqu'\u00e0 la fontaine du coin est ce qui prend le moins de temps - ca va vite et nul besoin de faire autre chose que du micro-trottoir avec des gens disant que \"ben oui il faut chaud\" - et demande le moins de jus de cerveau au journaliste et au t\u00e9l\u00e9spectateur. De mani\u00e8re analogue, j'ai d\u00e9j\u00e0 vu des sujets s\u00e9cheresse o\u00f9 le sujet du reportage \u00e9tait la difficult\u00e9 \u00e0 laver sa voiture !\n\nPour bien faire les choses en pareil cas - canicule ou s\u00e9cheresse - il faudrait surtout :\n- aller en for\u00eat voir les arbres qui meurent - par morceaux ou enti\u00e8rement - sous le coup de ces vagues de chaud et sec \n- aller dans les champs voir les r\u00e9coltes qui souffrent \u00e0 cause de la temp\u00e9rature et de la s\u00e9cheresse excessives\n- rappeler que les disettes sont capables de jeter bas des r\u00e9gimes politiques,\n- aller voir les infrastructures qui se fissurent \u00e0 cause de la r\u00e9tractation des argiles\n- aller voir les esp\u00e8ces qui meurent de chaud et rappeler que sans esp\u00e8ces du tout nous ne serons plus l\u00e0 pour nous plaindre de la disparition de la biodiversit\u00e9\n- et en plus rappeler que la d\u00e9rive climatique \u00e9tant inarr\u00eatable \u00e0 l'\u00e9chelle du si\u00e8cle, les images qui sont montr\u00e9es seront suivies par pire et que ce n'est qu'une question de temps.\n\nPourquoi faire tout cela ? Par sadisme ? Non : parce que informer, ce n'est pas anesth\u00e9sier. Chacun son m\u00e9tier." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6942834645541527552,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6942834646363598848,urn:li:activity:6942834646363598848,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 306, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6942834646363598848,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6942834646363598848,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6942834646363598848", + "threadId": "activity:6942834646363598848", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6942834646363598848", + "urn": "urn:li:activity:6942834646363598848", + "numComments": 462, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6942834646363598848", + "reactionTypeCounts": [ + { + "count": 15275, + "reactionType": "LIKE" + }, + { + "count": 1547, + "reactionType": "PRAISE" + }, + { + "count": 614, + "reactionType": "APPRECIATION" + }, + { + "count": 157, + "reactionType": "MAYBE" + }, + { + "count": 132, + "reactionType": "INTEREST" + }, + { + "count": 118, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6942834646363598848", + "numLikes": 17843, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6942834646363598848", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 17843, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6942723820772298752,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6942723820772298752", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6942723820772298752)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6942723820772298752)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_programme-activity-6942723820772298752-4FSh?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6942723819966971904", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6942723820772298752", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6942723820772298752,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6942723820772298752,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6942723819966971904", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "NI3thS+GXcZbH5K3z9+qTA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6942723820772298752,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7508018678750428887", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 512, + "fileIdentifyingUrlPathSegment": "800/0/1675680870270?e=1677240000&v=beta&t=aaL2ZBToGV06p-F2Q5RWnpKYSllVU7oYye2wOY1dL1M", + "expiresAt": 1677240000000, + "height": 512 + }, + { + "width": 512, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675680870270?e=1677240000&v=beta&t=eoHVeQIC3CQywPH513DtmSImUQcHkUiqtgkeRKnltl8", + "expiresAt": 1677240000000, + "height": 512 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675680870270?e=1677240000&v=beta&t=LNsbmp8iTKA-uR_7tuIPE-nbL-dh2KfaHv4_uJuDmtE", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675680870270?e=1677240000&v=beta&t=ItDT9ShUj1yU6hqxFX630GhyKveHgp0GPhM8wuayAWE", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQHNSURPxEOviw/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7508018678750428887)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7508018678750428887)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "univershifte.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Programme by univershifte.fr", + "actionTarget": "https://univershifte.fr/programme/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Programme" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6942723819966971904,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Univershift\u00e9, c'est le grand rassemblement annuel des shifters, mais pas que. Survenant moins d'une semaine apr\u00e8s le 2\u00e8 tour des l\u00e9gislatives, c'est l'occasion pour de \"simples curieux\" comme pour des passionn\u00e9(e)s d'assister \u00e0 des conf\u00e9rences sur le d\u00e9fi ou sur des propositions pour s'y attaquer, de faire des ateliers, et plus largement de venir discuter climat et \u00e9nergie avec plein d'autres personnes au sein d'une communaut\u00e9 qui grandit chaque jour, et tout cela dans la joie et la bonne humeur.\n\nA un peu plus d'une semaine de l'\u00e9v\u00e9nement, il n'\u00e9tait que temps, diront les mauvaises langues : le programme complet de l'Univershift\u00e9 est en ligne (https://lnkd.in/dQCtzZWm ). Normalement il y en a pour (presque) tous les gouts et toutes les couleurs !\n\nOn pourra y parler de la vague de chaleur la plus pr\u00e9coce que nous nous appr\u00eatons \u00e0 avoir dans un pays touch\u00e9 par une s\u00e9cheresse qui dure depuis presque un an, du \"choc p\u00e9trolier\" en cours - https://lnkd.in/eRyvuUFt - ou de l'inconnue majeure sur l'approvisionnement gazier et \u00e9lectrique pour l'hiver prochain, y \u00e9couter Aur\u00e9lien Barrau ou les sc\u00e9narisations de RTE, et bien sur et surtout y d\u00e9battre des propositions du Shift Project. \n\nEn tout d\u00e9but de quinquennat, ca sera le bon moment !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6942723819966971904,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6942723820772298752,urn:li:activity:6942723820772298752,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 33, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6942723820772298752,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6942723820772298752,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6942723820772298752", + "threadId": "activity:6942723820772298752", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6942723820772298752", + "urn": "urn:li:activity:6942723820772298752", + "numComments": 51, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6942723820772298752", + "reactionTypeCounts": [ + { + "count": 671, + "reactionType": "LIKE" + }, + { + "count": 38, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "EMPATHY" + }, + { + "count": 8, + "reactionType": "INTEREST" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6942723820772298752", + "numLikes": 757, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6942723820772298752", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 757, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6942382583695470592,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6942382583695470592", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6942382583695470592)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6942382583695470592)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_larry-fink-le-pdg-de-blackrock-le-plus-activity-6942382583695470592-Qxwu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6942382581942251521", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6942382583695470592", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6942382583695470592,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6942382583695470592,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6942382581942251521", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "sfRlNkBh6x9S+E6dgZkOOQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6942382583695470592,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGY_8ohVhfaAA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGY_8ohVhfaAA", + "artifacts": [ + { + "width": 1134, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1655192989898?e=1679529600&v=beta&t=VWm-wo51SzANXqDiGNiZMurMNFFOJC8RzeI1Pm8SaH0", + "expiresAt": 1679529600000, + "height": 642 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1655192990244?e=1679529600&v=beta&t=QKKauQYeuJ3tU9-4IDSwOuGWJ_CpuIjl_ZypPSBpmvE", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1134, + "fileIdentifyingUrlPathSegment": "1280/0/1655192990244?e=1679529600&v=beta&t=ZucZHoHpjKzyQEHrD2qCocBA6Id4tq8nttr6qsRbenI", + "expiresAt": 1679529600000, + "height": 642 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1655192990244?e=1679529600&v=beta&t=VlTl_wJeUzAyRz7w4b9Ppg5tGohCkqbXQl3EFYANJzQ", + "expiresAt": 1679529600000, + "height": 272 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1655192990244?e=1679529600&v=beta&t=Oo-5Ozl3JxW44ve__MgTuHSVijRwsz20IVuJJ8KWXPw", + "expiresAt": 1679529600000, + "height": 91 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1655192990244?e=1679529600&v=beta&t=N6hXDTzR0h9tSCSbWpgmU4HZprSt8atjH_8LxezzumE", + "expiresAt": 1679529600000, + "height": 453 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGY_8ohVhfaAA/feedshare-shrink_" + }, + "displayAspectRatio": 0.5661375661375662 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6942382581942251521,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Larry Fink, le PDG de Blackrock, le plus gros gestionnaire d'actifs au monde (la soci\u00e9t\u00e9 g\u00e8re - pour le compte d'\u00e9pargnants am\u00e9ricains pour l'essentiel - 10.000 milliards de dollars, soit plus de 4 fois le total de bilan de la plus grosse banque fran\u00e7aise), vient de faire une \"sortie\" pour expliquer qu'il n'avait pas \u00e0 \u00eatre \"la police de l'environnement\" et qu'il \u00e9tait oppos\u00e9 \u00e0 ce que les entreprises reportent leurs \u00e9missions de gaz \u00e0 effet de serre en incluant ce que l'on appelle le \"scope 3\", c'est \u00e0 dire les \u00e9missions li\u00e9es \u00e0 la fabrication et l'acheminement des mati\u00e8res premi\u00e8res, celles li\u00e9es aux d\u00e9placements des salari\u00e9s et clients, et les \u00e9missions li\u00e9es \u00e0 l'exp\u00e9dition et l'utilisation des produits vendus : https://lnkd.in/eBQmzvBJ\n\nCette d\u00e9claration est importante, parce qu'elle prend le contre pied complet de toutes les initiatives qui fleurissent actuellement partout dans le monde financier, soutenant implicitement que cette activit\u00e9 (la finance) va contraindre les entreprises \u00e0 se verdir en allouant l'argent \u00e0 ce qui est compatible avec un monde d\u00e9carbon\u00e9 (et le raisonnement peut s'\u00e9tendre \u00e0 d'autres nuisances). \n\nOn peut citer par exemple la Net Zero Banking Alliance (https://lnkd.in/e_rv-p28 ), initi\u00e9e par les Nations Unies, qui regroupe des banques \"qui se sont engag\u00e9es \u00e0 aligner leurs portefeuilles de pr\u00eats et d'investissements avec des \u00e9missions plan\u00e9taires nulles d'ici 2050.\". Les signataires repr\u00e9sentent 40% des pr\u00eats et investissements des banques dans le monde.\n\nOn peut aussi citer la Net Zero Asset Managers initiative (https://lnkd.in/eyWv_aR2 ) et dont les signataires (dont Blackrock :) ) repr\u00e9sentent plus de la moiti\u00e9 des actifs sous gestion. Ces signataires s'engagent \u00e0 \"soutenir l'objectif d'\u00e9missions nettes nulles d'ici \u00e0 2050, et \u00e0 soutenir des investissements align\u00e9s avec des \u00e9missions plan\u00e9taires nulles d'ici \u00e0 2050 ou avant\".\n\nBlackrock est donc d'accord avec l'objectif, mais ne veut pas du thermom\u00e8tre qui permet de dire si les investissements de Blackrock sont compatibles avec l'objectif. Il n'est pas un cas isol\u00e9 : c'est probablement dans le monde financier que l'\u00e9cart entre les discours publics et la r\u00e9alit\u00e9 des moyens mobilis\u00e9s et des efforts engag\u00e9s est le plus \u00e9lev\u00e9.\n\nIl ne s'agit pas juste de telle ou telle banque continuant \u00e0 pr\u00eater de l'argent \u00e0 tel ou tel op\u00e9rateur des combustibles fossiles. Il s'agit plus g\u00e9n\u00e9ralement du fait que les \u00e9tablissements financiers n'incluent pas, \u00e0 quelques exceptions pr\u00e8s, la mesure des \u00e9missions de gaz \u00e0 effet de serre et \"l'alignement\" dans leurs processus de d\u00e9cision op\u00e9rationnelle au quotidien, en allant jusqu'\u00e0 en faire un processus d'orientation de l'activit\u00e9 aussi \"puissant\" que le rendement. Et les Nations Unies sont malheureusement complices de cette situation, en permettant des d\u00e9clarations fracassantes non suivies d'effets." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6942382581942251521,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6942382583695470592,urn:li:activity:6942382583695470592,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 189, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6942382583695470592,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6942382583695470592,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6942382583695470592", + "threadId": "activity:6942382583695470592", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6942382583695470592", + "urn": "urn:li:activity:6942382583695470592", + "numComments": 242, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6942382583695470592", + "reactionTypeCounts": [ + { + "count": 2089, + "reactionType": "LIKE" + }, + { + "count": 473, + "reactionType": "MAYBE" + }, + { + "count": 471, + "reactionType": "INTEREST" + }, + { + "count": 26, + "reactionType": "PRAISE" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6942382583695470592", + "numLikes": 3089, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6942382583695470592", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3089, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6942150217966211073,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6942150217966211073", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6942150217966211073)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6942150217966211073)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_greenwashing-goldman-sachs-vis%C3%A9-par-une-activity-6942150217966211073-TGQR?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6942150217106374657", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6942150217966211073", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6942150217966211073,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6942150217966211073,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6942150217106374657", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "3u6TQ37UqcUubN3Cg01YJQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6942150217966211073,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8060277218410969370", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675590640646?e=1677240000&v=beta&t=9tV1GG7GV1hR5WVrhbHCgDd1FS01f30odRzkQhdeyds", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675590640646?e=1677240000&v=beta&t=IirjCE_i3L3xAQ_QrbCKikXoiyy_HG0qcLCrAdltk8c", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675590640647?e=1677240000&v=beta&t=AR4-Q8plLvKVico9fPkjiJ2rFy74cOmG94mQWa5-fD8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675590640647?e=1677240000&v=beta&t=9UL-ld5AKlkSj_plRBK0qpL93VcQw-5x27FB_mLT9dg", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQHwgDjoWzEhbw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8060277218410969370)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8060277218410969370)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Greenwashing : Goldman Sachs vis\u00e9 par une enqu\u00eate du r\u00e9gulateur am\u00e9ricain by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/gestion-actifs/greenwashing-goldman-sachs-vise-par-une-enquete-du-regulateur-americain-1412681" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Greenwashing\u00a0: Goldman Sachs vis\u00e9 par une enqu\u00eate du r\u00e9gulateur am\u00e9ricain" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6942150217106374657,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a quelques temps, le gendarme boursier am\u00e9ricain avait ouvert une enqu\u00eate sur DWS, une filiale de Deutsche Bank (et un gros gestionnaire d'actifs europ\u00e9en), pour des all\u00e9gations de greenwashing (https://lnkd.in/ew5M3-ys ).\n\nA l'\u00e9poque je m'\u00e9tais dit que c'\u00e9tait une manoeuvre subtile des USA pour p\u00e9naliser un concurrent, et que la ficelle pouvait \u00eatre grosse. Mais, cette fois-ci, c'est un des noms connus du syst\u00e8me financier am\u00e9ricain qui est dans le collimateur de la Securities and Exchange Commission : Goldman Sachs. L'accusation est en l'esp\u00e8ce que l'\u00e9tablissement se verdit \u00e0 bon compte sur des produits qui ne sont pas aussi verts que ce que la \"r\u00e9clame\" en dit.\n\nIl y a deux mani\u00e8res de se comporter en pareil cas pour le r\u00e9gulateur : juger du fond ou juger de la forme. La derni\u00e8re \u00e9ventualit\u00e9 consiste \u00e0 demander - et contr\u00f4ler - uniquement de la transparence et \u00e0 laisser le client juger de la pertinence. La premi\u00e8re consiste \u00e0 normaliser la m\u00e9thode qui est cens\u00e9e comporter le bon niveau de pertinence, et \u00e0 v\u00e9rifier ensuite l'application de la norme.\n\nLorsque le sujet est \u00e9mergent, c'est la premi\u00e8re mani\u00e8re de faire qui est la bonne : le r\u00e9gulateur a par construction toujours un train de retard sur la production de connaissances dans le secteur, et s'il normalise le fond trop vite il a toutes les chances de se tromper de bonne norme (sur laquelle il sera difficile de revenir rapidement) en confondant vitesse et pr\u00e9cipitation. \n\nMais une fois que le sujet est mature il ne faut pas se limiter \u00e0 une obligation de transparence. Il est alors l\u00e9gitime de construire une norme et de demander aux acteurs de s'y conformer. Mais le secteur priv\u00e9 garde toujours un avantage : comme c'est lui qui produit les connaissances (bonnes ou mauvaises), c'est lui qui sait le premier comment sugg\u00e9rer une obligation le concernant qui n'en sera pas vraiment une (j'ai v\u00e9cu cela dans les \u00e9changes entre secteur priv\u00e9 et puissance publique sur l'obligation de publication des \u00e9missions de gaz \u00e0 effet de serre d'une entreprise).\n\nIl ne suffit donc pas d'\u00eatre conforme pour \u00eatre pertinent. C'est \u00e9videmment utile quand le gendarme attrape un menteur. Mais la vraie bataille reste celle de la norme. Elle se passe g\u00e9n\u00e9ralement loin de la sc\u00e8ne m\u00e9diatique alors que c'est l\u00e0 que ca se joue..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6942150217106374657,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6942150217966211073,urn:li:activity:6942150217966211073,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 12, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6942150217966211073,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6942150217966211073,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6942150217966211073", + "threadId": "activity:6942150217966211073", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6942150217966211073", + "urn": "urn:li:activity:6942150217966211073", + "numComments": 15, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6942150217966211073", + "reactionTypeCounts": [ + { + "count": 317, + "reactionType": "LIKE" + }, + { + "count": 39, + "reactionType": "INTEREST" + }, + { + "count": 28, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6942150217966211073", + "numLikes": 391, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6942150217966211073", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 391, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6941688962155466752,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6941688962155466752", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6941688962155466752)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6941688962155466752)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_printemps-2022-catastrophes-en-s%C3%A9ries-et-activity-6941688962155466752-ATka?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6941688961023016960", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6941688962155466752", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6941688962155466752,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6941688962155466752,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6941688961023016960", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "PAx9VYLQh2nemXbxQwcrlA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6941688962155466752,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8919893346748920572", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675701255127?e=1677240000&v=beta&t=O4gWhSqgvO-AJDyHXjc8P8SjEsLAXBj0sDiIJy0JuJI", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675701255127?e=1677240000&v=beta&t=UBsOS3PIVo40jv-CkFNUiw6brh7cnyHUy9LGfnCw-C8", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675701255127?e=1677240000&v=beta&t=BzRMVJNWuEvsLOVc_gJYfdOR87XlIshC4nOzRF0E2uU", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675701255127?e=1677240000&v=beta&t=xBxnvpckhWbcUoiRbXStSfj8TnnC9px-N_eRStzRhbY", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D5627AQEn3Phi4IBjEg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8919893346748920572)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8919893346748920572)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Printemps 2022 : catastrophes en s\u00e9ries et menaces sur la production agricole | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/article-catastrophes-printemps22" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Printemps 2022 : catastrophes en s\u00e9ries et menaces sur la production agricole | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6941688961023016960,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ca n'est pas tr\u00e8s r\u00e9jouissant, mais il vaut quand m\u00eame mieux en \u00eatre conscient : le changement climatique a d\u00e9j\u00e0 commenc\u00e9 \u00e0 nous jouer quelques sales tours en ce qui concerne l'agriculture. Dans cet article, Carbone 4 vous propose un \u00e9clairage sur quelques \u00e9pisodes qui ont marqu\u00e9 le printemps 2022 dans le monde : vague de chaleur en Inde et au Pakistan, inondations au Canada, et bien sur s\u00e9cheresse en Europe. La liste aurait pu \u00eatre plus longue, et inclure des s\u00e9cheresses \"exceptionnelles\" ailleurs dans le monde : au Maroc (https://bit.ly/3xgr2ss ), au Br\u00e9sil (https://reut.rs/3xfZK5G ), au Proche Orient...\n\nEn France, le manque d'eau a d\u00e9j\u00e0 conduit \u00e0 des restrictions significatives d'usage pour un d\u00e9but juin dans notre pays : https://bit.ly/3mD4ddI Nous avons aussi eu un gel suivant un hiver et d\u00e9but de printemps trop doux (donc la v\u00e9g\u00e9tation a d\u00e9j\u00e0 bien d\u00e9bourr\u00e9 et les d\u00e9g\u00e2ts sont importants), des \u00e9pisodes de gr\u00eale \"exceptionnels\" r\u00e9cemment, etc... \n\nIl va malheureusement falloir faire avec... pire. Plus le climat va d\u00e9river, et plus ces \"mauvaises surprises\" vont devenir la norme... voire mieux que la norme.\n\nIl faut rappeler que le r\u00e9chauffement actuel a \u00e9t\u00e9 pr\u00e9c\u00e9d\u00e9 par 10.000 ans de tr\u00e8s grande stabilit\u00e9 climatique de la plan\u00e8te, ce qui a pr\u00e9cis\u00e9ment permis la s\u00e9dentarisation et la multiplication de notre esp\u00e8ce. \n\nEn effet, cela, il aurait \u00e9t\u00e9 impossible, \u00e0 l'\u00e9poque de l'\u00e9nergie rare, de vivre tout le temps au m\u00eame endroit, de se nourrir des m\u00eames cultures (pas tr\u00e8s productives \u00e0 l'\u00e9poque) qui ne pouvaient pas \u00eatre transport\u00e9es en masse d'ailleurs, et d'avoir un habitat adapt\u00e9 en permanence aux ressources et conditions locales. Sans cette tr\u00e8s longue p\u00e9riode de stabilit\u00e9 climatique nous ne serions pas l\u00e0.\n\nLa d\u00e9rive actuelle poss\u00e8de une inertie consid\u00e9rable. Certaines de ses composantes vont se poursuivre des milliers d'ann\u00e9es apr\u00e8s arr\u00eat des \u00e9missions. C'est pour cela que, outre notre contribution \u00e0 une baisse des \u00e9missions (en Europe la baisse de l'usage des combustibles fossiles est de toute fa\u00e7on impos\u00e9e pour des raisons \"hors climat\" : https://bit.ly/3b0pdZz ), il est plus qu'urgent de commencer \u00e0 mettre des moyens massifs dans la reconfiguration de notre agriculture et de nos infrastructures (villes, b\u00e2timents, voies de communication, etc), pour leur permettre d'encaisser le moins mal possible l'adversit\u00e9 \u00e0 venir. \n\nComte tenu de l'ampleur de cette derni\u00e8re, il y a du boulot, et c'est autrement prioritaire que de faire joujou avec le bitcoin, la 5G, la voiture autonome, ou m\u00eame le retour des touristes a\u00e9roport\u00e9s chez nous. Si nous ne mangeons pas \u00e0 notre faim ou que nos infrastructures essentielles sont par terre, les plans radieux sur le reste ont peu de chances de se r\u00e9aliser.\n\nPr\u00e9ciser ce qui nous attend inexorablement - et les conclusions que l'on peut en tirer - ferait \u00e9videmment partie des 20h de formation sugg\u00e9r\u00e9es pour notre nouveau gouvernement. Mais pour le moment cette proposition est lettre morte !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6941688961023016960,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6941688962155466752,urn:li:activity:6941688962155466752,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 93, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6941688962155466752,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6941688962155466752,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6941688962155466752", + "threadId": "activity:6941688962155466752", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6941688962155466752", + "urn": "urn:li:activity:6941688962155466752", + "numComments": 155, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6941688962155466752", + "reactionTypeCounts": [ + { + "count": 2507, + "reactionType": "LIKE" + }, + { + "count": 270, + "reactionType": "INTEREST" + }, + { + "count": 237, + "reactionType": "MAYBE" + }, + { + "count": 82, + "reactionType": "APPRECIATION" + }, + { + "count": 66, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6941688962155466752", + "numLikes": 3171, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6941688962155466752", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3171, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "8mo \u2022 ", + "accessibilityText": "8 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6941321143370850304,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6941321143370850304", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6941321143370850304)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6941321143370850304)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_face-%C3%A0-la-bifurcation-des-jeunes-dipl%C3%B4m%C3%A9s-activity-6941321143370850304-RrYS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6941321141974142976", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6941321143370850304", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6941321143370850304,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6941321143370850304,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6941321141974142976", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "PJfc1/lM3AY9PzEQFQ7cqA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6941321143370850304,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7490323593935904903", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 707, + "fileIdentifyingUrlPathSegment": "800/0/1676113284891?e=1677240000&v=beta&t=7Q5YtjDDmO0x64IAH26UnAz_5HaZwr3E8PUx38c-1Vg", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 707, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676113284891?e=1677240000&v=beta&t=lHz96PHq4mwFB4iGM_c6asv48rpQ1rZdpdhWKqAZysc", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676113284891?e=1677240000&v=beta&t=BZnaUSJVVVrGsOLUOkjVLFikKOmT36I61FyW3LjgzZo", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676113284891?e=1677240000&v=beta&t=XfW67OvCNLjpMBcNhjGd-KRpM1U2HTrfS9i9jswd3Vo", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQHBUbfbDoaZ6A/articleshare-shrink_" + }, + "displayAspectRatio": 0.6661951909476662 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7490323593935904903)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7490323593935904903)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "www.novethic.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Face \u00e0 la bifurcation des jeunes dipl\u00f4m\u00e9s, l\u2019\u00e9cole des Mines revoit son programme sous l\u2019angle climatique by novethic.fr", + "actionTarget": "https://www.novethic.fr/actualite/economie/isr-rse/le-changement-climatique-est-un-sujet-majeur-d-enseignement-vincent-lafleche-directeur-des-mines-paris-psl-150822.html#.Yp2dRXbjvCE.twitter" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Face \u00e0 la bifurcation des jeunes dipl\u00f4m\u00e9s, l\u2019\u00e9cole des Mines revoit son programme sous l\u2019angle climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6941321141974142976,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 541, + "length": 7, + "miniProfile": { + "firstName": "Vincent", + "lastName": "Lafleche", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAJeVlcB-l99cQS5dumr0-fI4ZYe3usR0rk", + "occupation": "Directeur Mines ParisTech", + "objectUrn": "urn:li:member:39736919", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAJeVlcB-l99cQS5dumr0-fI4ZYe3usR0rk", + "publicIdentifier": "vincent-lafleche-a9b38311", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517753533896?e=1681948800&v=beta&t=NjWmU83ouDrEphlN3sVk3DWR-7Aaf3YAzqr3gqK-9Jw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517753533896?e=1681948800&v=beta&t=4j-EPq_S3DzM0YH1DYPxO-XfhdX9RsjUnwo2tzct__8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517753533896?e=1681948800&v=beta&t=P8azWpK8fuvDi_J0UhoWIEAdzdZibOWGn2LSmaOT0g0", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517753533896?e=1681948800&v=beta&t=W3QkU_4RvX1yj7zHrbqqR4iWSuOfA0PwaLVC4vdv-aU", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHa8GrQhk68DQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "L7Rz1yg2Rd2KwtZUVRXDSw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Fond\u00e9e en 1783, l'Ecole des mines de Paris est une des plus vieilles \u00e9coles d'ing\u00e9nieurs de France. Apr\u00e8s avoir contribu\u00e9 pendant 2 si\u00e8cles au d\u00e9veloppement de l'industrie fran\u00e7aise dans le monde infini, elle est maintenant en train de s'illustrer en devenant l'\u00e9cole la plus en pointe dans l'adaptation des formations d'ing\u00e9nieur au monde fini. Les \u00e9l\u00e8ves y d\u00e9marrent d\u00e9sormais leur scolarit\u00e9 par pr\u00e8s de 100 heures de cours qui d\u00e9crivent les limites plan\u00e9taires. Aucune autre \u00e9cole ne fait cela \u00e0 ma connaissance, ni m\u00eame la moiti\u00e9 (bravo Vincent donc !). \n\nLes Mines favorisent aussi - \u00e0 raison - les approches pluridisciplinaires. A mon modeste niveau j'ai d\u00e9j\u00e0 encadr\u00e9 des \u00e9l\u00e8ves ing\u00e9nieurs du Corps qui avaient des projets en commun avec des \u00e9narques, chose dont je n'ai entendu parler nulle par ailleurs.\n\nEn modifiant aux Mines l'enseignement comme cela a \u00e9t\u00e9 fait, il ne s'agit pas seulement de \"r\u00e9pondre \u00e0 l'aspiration des \u00e9l\u00e8ves\", ou plut\u00f4t cette derni\u00e8re proc\u00e8de d'un \u00e9l\u00e9ment \u00e9vident : il est plus que pertinent d'adapter l'enseignement au monde tel qu'il sera, et non au monde tel que nous aimerions qu'il soit.\n\nLe monde tel qu'il sera est fini et tr\u00e8s tr\u00e8s peupl\u00e9. Il sera de plus en plus difficile d'y avoir ce que l'on veut comme ressources min\u00e9rales, m\u00e9talliques, fossiles, vivantes, agricoles, sans parler du reste.\n\nFace \u00e0 ce constat, quelle a \u00e9t\u00e9 l'orientation choisie par nombre d'\u00e9tablissements de premier plan, il est vrai fortement incit\u00e9s par l'Etat ? Se regrouper sur le plateau de Saclay pour monter dans le classement de Shangha\u00ef. La belle affaire ! Ce n'est pas ce classement qui nous permettra de nous nourrir avec moins de pluie ou de nous d\u00e9placer avec moins de p\u00e9trole. Ce n'est pas ce classement qui permettra d'\u00e9viter les migrations et de pr\u00e9server la paix. \n\nFace au probl\u00e8me que nous avons devant nous, la voie \u00e0 choisir est simple : il faut attirer les meilleures cervelles pour leur demander de s'attaquer au plus monstrueux probl\u00e8me d'optimisation sous contrainte que nous ayons sur les bras, \u00e0 savoir forger un avenir d\u00e9sirable avec des ressources physiques et vivantes en d\u00e9clin. Ca sera autrement plus difficile que de mettre au point la 6G ou l'hyperloop...\n\nLa France a une longue tradition d'excellence de ses ing\u00e9nieurs. Profitons en pour devenir les meilleurs dans l'organisation de la d\u00e9carbonation. Ce sera utile pour nous puisque de toute fa\u00e7on les combustibles fossiles import\u00e9s en Europe seront de plus en plus contraints. Ce sera utile pour nous parce que de toute fa\u00e7on le climat d\u00e9rivera de plus en plus. Ce sera utile pour nous parce que la mondialisation et la facilit\u00e9 d'acc\u00e8s aux ressources m\u00e9talliques vont baisser de toute fa\u00e7on. Et ca sera exportable parce que tout le monde va finir par avoir le m\u00eame probl\u00e8me. Agir en ce sens n'est pas se contraindre ou se tirer une balle dans le pied, c'est faire la course en t\u00eate. Avis \u00e0 toutes les autres \u00e9coles ! (dont \"la mienne\", l'X, bien trop timide sur ce plan l\u00e0...)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6941321141974142976,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6941321143370850304,urn:li:activity:6941321143370850304,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 445, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6941321143370850304,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6941321143370850304,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6941321143370850304", + "threadId": "activity:6941321143370850304", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6941321143370850304", + "urn": "urn:li:activity:6941321143370850304", + "numComments": 537, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6941321143370850304", + "reactionTypeCounts": [ + { + "count": 13415, + "reactionType": "LIKE" + }, + { + "count": 1744, + "reactionType": "PRAISE" + }, + { + "count": 607, + "reactionType": "EMPATHY" + }, + { + "count": 217, + "reactionType": "MAYBE" + }, + { + "count": 204, + "reactionType": "APPRECIATION" + }, + { + "count": 142, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6941321143370850304", + "numLikes": 16329, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6941321143370850304", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 16330, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 Edited \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6940921471133216769,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6940921471133216769", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6940921471133216769)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6940921471133216769)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_elan-mondial-pour-le-nucl%C3%A9aire-sfen-activity-6940921471133216769-dS8u?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6940921470436966400", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6940921471133216769", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6940921471133216769,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6940921471133216769,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6940921470436966400", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "f3WVUNRuE8dntA8Yzq4ovg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6940921471133216769,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8381145828126997497", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676540325949?e=1677240000&v=beta&t=wnIPdPmYGl-eviiJP3OUCuXOwmUQbwBZHDgEiy8PgHQ", + "expiresAt": 1677240000000, + "height": 521 + }, + { + "width": 1229, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676540325949?e=1677240000&v=beta&t=bQjMipt7OYGl7bk-ZVIfNJ1H7rQQIZiXbl4IRbebG4Y", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676540325949?e=1677240000&v=beta&t=YqOMWxWUgY3Y-EodEwEMoFFdSfHgbxMooOhocrLJK6o", + "expiresAt": 1677240000000, + "height": 104 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676540325949?e=1677240000&v=beta&t=RyMF2hPTTwgurX5Oxt6tYe7eyhy9lDg_-ikFlDwfypw", + "expiresAt": 1677240000000, + "height": 312 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQG6JTYrZIQEcQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.65125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8381145828126997497)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8381145828126997497)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "sfen.org" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Elan mondial pour le nucl\u00e9aire - Sfen by sfen.org", + "actionTarget": "https://www.sfen.org/rgn/elan-mondial-pour-le-nucleaire" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Elan mondial pour le nucl\u00e9aire - Sfen" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6940921470436966400,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le nucl\u00e9aire est-il une \u00e9nergie sur le d\u00e9clin dans le monde ? La SFEN vous propose une infographie pas mal faite pour visualiser, pays par pays, le parc en service, les r\u00e9acteurs en construction et ceux en projet. Une r\u00e9alit\u00e9 saute aux yeux : la partie se joue en ce moment \u00e0 l'est de l'Europe.\n\nEn effet, les pays qui ont - et de loin - le plus de r\u00e9acteurs en construction sont la Chine, l'Inde, la Russie et la Cor\u00e9e du Sud. \n\nPour les r\u00e9acteurs en projet, c'est l'Inde qui arrive en t\u00eate, mais \"un projet\" peut durer longtemps avant de devenir une construction ! Les deux pays ayant le plus d'ambitions affich\u00e9es sont \u00e0 nouveau deux pays d'Asie (outre l'Inde il y a la Chine). Au niveau des projets on voit arriver des pays europ\u00e9ens (Royaume-Uni, Pologne, France, Pays-Bas). \n\nDans notre pays, m\u00eame si je pense le plus grand bien de ce mode de production, il ne faut rien attendre du nouveau nucl\u00e9aire avant au moins 10 ans. La dur\u00e9e moyenne de construction pour les r\u00e9acteurs en service dans le monde en 2016 avait \u00e9t\u00e9 d'un peu plus de 7 ans, les plus rapides \u00e0 construire n'ayant pris que 3 ans (https://bit.ly/3xCZH5d ).\n\nMais nous avons \u00e0 la fois perdu la main, perdu une partie des comp\u00e9tences et fournisseurs, ajout\u00e9 des proc\u00e9dures pr\u00e9alables et des r\u00e8gles de s\u00fbret\u00e9 qui ralentissent de toute fa\u00e7on la mise \u00e0 disposition de nouvelles unit\u00e9s.\n\nDans le monde, le nucl\u00e9aire faisait 10% de la production \u00e9lectrique en 2020, avec l'hydro \u00e0 16%, l'\u00e9olien \u00e0 6% et le solaire \u00e0 3% (incidemment les personnes qui expliquent que le nucl\u00e9aire part de trop bas pour jouer un r\u00f4le significatif doivent appliquer le m\u00eame raisonnement \u00e0 l'\u00e9olien et au solaire !).\n\nLe rythme actuel de son d\u00e9veloppement n'est clairement pas au niveau si l'on veut que cette \u00e9nergie, qui est la seule d\u00e9carbon\u00e9e, compacte et pilotable que nous ayons (\u00e9olien et solaire ne sont ni compacts - ils demandent beaucoup de mat\u00e9riaux et beaucoup d'espace - ni pilotables ; l'hydro est pilotable mais pas compacte - il faut de grands lacs de barrage pour avoir de grandes productions) joue un r\u00f4le significatif dans le monde pour chasser une large partie des 2200 GW de centrales \u00e0 charbon actuellement en service sur la plan\u00e8te, et qu'il faudrait ferrailler en totalit\u00e9 d'ici \u00e0 2050.\n\nBeaucoup de gens sont r\u00e9ticents \u00e0 l'id\u00e9e d'acc\u00e9l\u00e9rer sur cette \u00e9nergie en supprimant des contraintes \u00e0 son d\u00e9veloppement. Ca serait trop risqu\u00e9 ! Il faut malheureusement se rappeler qu'un avenir sans risques est d\u00e9sormais une illusion. La seule chose que nous puissions encore faire est d'arbitrer entre risques. Mais se d\u00e9barrasser de tous \u00e0 la fois n'est pas - plus - possible. \n\n\"Pas assez de plus de nucl\u00e9aire\" ca sera soit plus de fossiles soit moins d'\u00e9lectricit\u00e9. Faire un syst\u00e8me \u00e9lectrique complet, produisant autant ou plus qu'aujourd'hui, avec essentiellement du solaire et de l'\u00e9olien, demande trop de mat\u00e9riaux et est trop complexe pour advenir dans un monde d\u00e9mondialis\u00e9. Que ce soit un objectif politique n'y change rien..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6940921470436966400,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6940921471133216769,urn:li:activity:6940921471133216769,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6940921471133216769,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6940921471133216769,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6940921471133216769", + "threadId": "activity:6940921471133216769", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6940921471133216769", + "urn": "urn:li:activity:6940921471133216769", + "numComments": 150, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6940921471133216769", + "reactionTypeCounts": [ + { + "count": 842, + "reactionType": "LIKE" + }, + { + "count": 139, + "reactionType": "INTEREST" + }, + { + "count": 97, + "reactionType": "MAYBE" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6940921471133216769", + "numLikes": 1106, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6940921471133216769", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1106, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6940554985877204993,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6940554985877204993", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6940554985877204993)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6940554985877204993)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_leurope-remplacera-progressivement-le-k%C3%A9ros%C3%A8ne-activity-6940554985877204993-w_Zo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6940554984753135616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6940554985877204993", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6940554985877204993,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6940554985877204993,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6940554984753135616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "cwlFTpbrxepTdd7HsV23VA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6940554985877204993,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8272716667323114946", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676409794032?e=1677240000&v=beta&t=npoNwYk_SywUYsz1y4BGDkM-9Tw8PGstcrmtOt8Euyw", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676409794032?e=1677240000&v=beta&t=LqjpHT55piz5WEsxzluYAh3ZX_4v0QdDXFDl-6Q5cSo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676409794032?e=1677240000&v=beta&t=MA2TPutnkUiS-8aoSHSmU6IasIUHDs-rha1r2oWzj7U", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676409794032?e=1677240000&v=beta&t=IJFNkDSNW2wZ-NyRVSm8Oum9ITD13-gjGUA_cR8Kpzg", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQHa2w-FdUeq-Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8272716667323114946)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8272716667323114946)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'Europe remplacera progressivement le k\u00e9ros\u00e8ne des avions par des carburants verts by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/tourisme-transport/leurope-remplacera-progressivement-le-kerosene-des-avions-par-des-carburants-verts-1411005" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'Europe remplacera progressivement le k\u00e9ros\u00e8ne des avions par des carburants verts" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6940554984753135616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La biomasse, c'est \u00e0 dire tout ce qui pousse, tout le monde en veut. Les constructeurs veulent du bois pour remplacer le b\u00e9ton. Les humains - plus nombreux - veulent de quoi manger. Les chimistes veulent de la mati\u00e8re premi\u00e8re pour remplacer le p\u00e9trole et le gaz fossiles (toutes les fibres synth\u00e9tiques, tous les lubrifiants, tous les plastiques, et plus largement toute la chimie organique vient du p\u00e9trole et du gaz). Les producteurs de v\u00eatements veulent du coton, ou du lin. \n\nCe n'est pas fini : les producteurs de mat\u00e9riaux de construction veulent de la paille ou du chanvre pour \u00e9viter de fabriquer de la laine de verre. Les d\u00e9fenseurs de la biodiversit\u00e9 veulent que l'on laisse la nature tranquille au lieu de convertir les surfaces \"sauvages\" en surfaces cultiv\u00e9es (en cultures annuelles ou p\u00e9rennes, peu importe). Et... les constructeurs d'engins de transport (voitures ou avions) veulent des agrocarburants qui sont tous issus de v\u00e9g\u00e9taux qui ont bien du pousser quelque part.\n\nMais... la terre n'a pas augment\u00e9 de diam\u00e8tre alors que ces envies de recourir \u00e0 des usages du sol concurrents les uns des autres se sont multipli\u00e9es. Question : y aura-t-il de la place pour tout le monde ? Un rapide calcul d'ordre de grandeur montre que la r\u00e9ponse est non. Les agrocarburants fournissent aujourd'hui 4 millions de barils par jour sur une plan\u00e8te qui en consomme un peu moins de 100 de produits p\u00e9troliers (rien que le secteur a\u00e9rien consomme pr\u00e8s de 10% de cet ensemble).\n\nLa plan\u00e8te produit 4 milliards de tonnes de ciment (100% construction et infrastructures) et 2 milliards de tonnes d'acier (environ 50% construction et infras) par an. La r\u00e9colte de bois est actuellement de 2 milliards de m3 (https://lnkd.in/e8Qshkj4 ) soit un peu moins de 2 milliards de tonnes. \n\nSans m\u00eame parler des autres usages (alimentaire, biodiversit\u00e9, mat\u00e9riaux hors bois), y a-t-il assez de surface disponible pour mettre des \"carburants verts\" partout et de la construction bois partout ?\n\nLa r\u00e9ponse est non. Mais la Commission ne fait pas ce genre de calcul avant de d\u00e9cider de ses politiques pour l'avenir, qui continuent \u00e0 pr\u00e9supposer que le monde est infini. R\u00e9sultat : nous allons perdre notre temps - puisque nous n'irons pas au bout du \"plan\", qui est du type \"croissance verte\" - et ne pas r\u00e9gler le probl\u00e8me (qui se r\u00e8glera donc tout seul \u00e0 nos d\u00e9pends puisque le monde est fini).\n\nDans le domaine a\u00e9rien la bonne r\u00e9ponse est d\u00e9bord de faire baisser le trafic (https://lnkd.in/d3h_4QA ). Comme 75% de ce dernier est li\u00e9 au fait de changer d'air (tourisme et loisirs) on devrait y arriver moins difficilement que dans d'autres secteurs. Inutile de r\u00eaver \u00e0 un transport a\u00e9rien de masse \"propre\". Nous y arriverions \u00e0 la rigueur en diminuant l'offre alimentaire ou en augmentant la d\u00e9forestation ailleurs dans le monde. Je ne sais pas si c'est tr\u00e8s \"propre\"...." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6940554984753135616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6940554985877204993,urn:li:activity:6940554985877204993,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 269, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6940554985877204993,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6940554985877204993,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6940554985877204993", + "threadId": "activity:6940554985877204993", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6940554985877204993", + "urn": "urn:li:activity:6940554985877204993", + "numComments": 399, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6940554985877204993", + "reactionTypeCounts": [ + { + "count": 5561, + "reactionType": "LIKE" + }, + { + "count": 687, + "reactionType": "INTEREST" + }, + { + "count": 536, + "reactionType": "MAYBE" + }, + { + "count": 160, + "reactionType": "PRAISE" + }, + { + "count": 60, + "reactionType": "APPRECIATION" + }, + { + "count": 42, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6940554985877204993", + "numLikes": 7046, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6940554985877204993", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7046, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6940351124180750336,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6940351124180750336", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6940351124180750336)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6940351124180750336)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_voyage-mon-tour-de-france-en-ter-en-10-activity-6940351124180750336-NgTV?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6940351123341893634", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6940351124180750336", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6940351124180750336,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6940351124180750336,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6940351123341893634", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "RINMjBfUpK40XZyeu/5mbg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6940351124180750336,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7451005657666174190", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676429525080?e=1677240000&v=beta&t=OVtHTxLd2qlhU1wFlkEdNEDuGYXdX-CB1F687b-iPZY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676429525081?e=1677240000&v=beta&t=vctWNkl03NMHAFzOBy8JnydxIfAJmMa4R2OlyGt94Ek", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676429525081?e=1677240000&v=beta&t=ceBqAOo7BGnwq--s88eqCbTcBGvgEqwP7FtXy296ecU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676429525081?e=1677240000&v=beta&t=Py1JgzOl3fN1Yt4lKyLId5_ueQ1EVc2xmeO3orxJvMc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFJRSh2tVUkzQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7451005657666174190)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7451005657666174190)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 13 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Voyage : mon tour de France en TER en 10 jours by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/weekend/voyages/mon-tour-de-france-en-ter-en-10-jours-1410855" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Voyage : mon tour de France en TER en 10 jours" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6940351123341893634,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Eloge de la lenteur : dans le dernier num\u00e9ro des Echos week-end, un article relate un tour de France en \"train pas \u00e0 grande vitesse\", le but du jeu n'\u00e9tant plus de rallier un point A \u00e0 un point B le plus vite possible. Le train cesse d'\u00eatre un endroit o\u00f9 l'on doit rester le moins longtemps possible : y \u00eatre est un but en soi.\n\nCela fait longtemps que nos amis helv\u00e8tes ont des \"trains touristiques\", qui permettent aux occupants de passer par des paysages grandioses, ou de manger dans un wagon restaurant qui m\u00eale le cadre \u00e0 l'alimentation.\n\nUne des id\u00e9es importantes sous-jacente \u00e0 cet article est qu'il sugg\u00e8re que, en train, le temps de d\u00e9placement n'est pas n\u00e9cessairement du temps de perdu. Dans les trains actuels,on peut presque tout faire comme dans un bureau ou chez soi : dormir, lire, regarder un film, travailler sur un ordinateur, manger, discuter... \n\nCela est tellement vrai qu'il y a m\u00eame une entreprise (de type emploi de bureau) o\u00f9 il a \u00e9t\u00e9 d\u00e9cid\u00e9 que, pour les gens qui venaient au travail en TGV (avec une place assise garantie donc), la journ\u00e9e de travail d\u00e9marrait non pas \u00e0 l'arriv\u00e9e au bureau mais au d\u00e9part de la gare. \n\nMalgr\u00e9 l'exemple ci-dessus, le fait que le temps en train ne soit pas n\u00e9cessairement du \"temps perdu\" n'existe toujours pas dans l'essentiel de nos conventions. Dans la comparaison entre route et train, le cout socio-\u00e9conomique de chaque mode continue \u00e0 \u00eatre calcul\u00e9 en consid\u00e9rant que le temps pass\u00e9 \u00e0 se d\u00e9placer est \"perdu\" \u00e0 l'identique quel que soit le mode. Or c'est \u00e0 l'\u00e9vidence devenu inexact d\u00e8s lors que l'on a une place assise et le moyen de s'occuper en train (dans une certaine mesure c'est aussi vrai pour l'autocar s'il est suffisamment confortable).\n\nUne infrastructure routi\u00e8re qui permet de gagner un peu de temps en voiture sera alors consid\u00e9r\u00e9e comme plus \"utile\" qu'une infrastructure qui permet de se rabattre sur du train dans un temps de transport plus long... mais qui n'est plus du temps de perdu. \n\nModifier cette r\u00e8gle n'est probablement pas compl\u00e8tement anecdotique : les d\u00e9cisions ne sont pas seulement \"politiques\" : \u00e0 un moment elles sont aussi prises au nom d'une rationalit\u00e9 implicite contenue dans les outils et m\u00e9thodes manipul\u00e9s." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6940351123341893634,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6940351124180750336,urn:li:activity:6940351124180750336,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 211, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6940351124180750336,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6940351124180750336,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6940351124180750336", + "threadId": "activity:6940351124180750336", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6940351124180750336", + "urn": "urn:li:activity:6940351124180750336", + "numComments": 278, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6940351124180750336", + "reactionTypeCounts": [ + { + "count": 4105, + "reactionType": "LIKE" + }, + { + "count": 244, + "reactionType": "EMPATHY" + }, + { + "count": 214, + "reactionType": "MAYBE" + }, + { + "count": 85, + "reactionType": "INTEREST" + }, + { + "count": 83, + "reactionType": "PRAISE" + }, + { + "count": 44, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6940351124180750336", + "numLikes": 4775, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6940351124180750336", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4775, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6940195651959848960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6940195651959848960", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6940195651959848960)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6940195651959848960)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-shifters-ne-sont-pas-un-parti-politique-activity-6940195651959848960-5CQF?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6940195650894499840", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6940195651959848960", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6940195651959848960,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6940195651959848960,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6940195650894499840", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "84VrEGsK1TwX0Bnfurbnmg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6940195651959848960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQH_uDVForGqNQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQH_uDVForGqNQ", + "artifacts": [ + { + "width": 1536, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1654671584969?e=1679529600&v=beta&t=ZMVinzAvwDxvplY6ly_WCHM4BMyvvxJ-7N2MQQXfxWs", + "expiresAt": 1679529600000, + "height": 1536 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1654671584883?e=1679529600&v=beta&t=tNyN6CkCTprgAIKvmzXhJsf3PpiREHdzRuxf--z1NxU", + "expiresAt": 1679529600000, + "height": 20 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1654671584883?e=1679529600&v=beta&t=fP9uUhT1Ra-OU9kC07Czp0NgNfkfKWuXM5ulyCTtqZI", + "expiresAt": 1679529600000, + "height": 1280 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1654671584883?e=1679529600&v=beta&t=WAKb5i88qxEzYeq-m9L3oTGVPs-goZ3BvGtnzvU2fh0", + "expiresAt": 1679529600000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1654671584883?e=1679529600&v=beta&t=dbV7hlC-_5tjBLHSV2at3Uy-dfSeEIjK9WU8PND6NwU", + "expiresAt": 1679529600000, + "height": 160 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1654671584883?e=1679529600&v=beta&t=ybzhu_ft9DEyJRZxttVZXDEBGer1LEJ65VSLIKd-WgE", + "expiresAt": 1679529600000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQH_uDVForGqNQ/feedshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6940195650894499840,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "1yMvfEjmTqaQuBXzW8a/zg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Les Shifters ne sont pas un parti politique. Mais comme ils sont d\u00e9sormais plus de 15.000, ils se sont dit qu'ils m\u00e9ritaient bien une petite universit\u00e9 d'\u00e9t\u00e9 eux aussi. En l'esp\u00e8ce celle-ci aura lieu juste apr\u00e8s que nous connaissions la composition de la nouvelle assembl\u00e9e, les 25 et 26 juin prochains, dans la capitale des Gaules (\u00e0 Lyon donc, et plus pr\u00e9cis\u00e9ment sur le campus de la Doua, ce qui rappellera peut-\u00eatre des souvenirs \u00e0 certain(e)s !). \n\nComme l'ann\u00e9e derni\u00e8re, le programme comportera des pl\u00e9ni\u00e8res, des sessions parall\u00e8les, un village des initiatives, des fresques et ateliers, des films, et m\u00eame... une s\u00e9ance de d\u00e9dicaces de votre serviteur (qui n'est pas sur le programme mais qui aura bien lieu :) ) : https://lnkd.in/ehnwuzmW\n\nIl y aura surtout plein d'occasions pour discuter, dans la joie et la bonne humeur (dont une f\u00eate le Samedi soir), malgr\u00e9 le sujet (ou \u00e0 cause de lui !). Et peut-\u00eatre quelques informations int\u00e9ressantes \u00e0 glaner ici et l\u00e0 : l'ann\u00e9e derni\u00e8re, c'est \u00e0 l'Univershift\u00e9 que, opur la premi\u00e8re fois, patronat et syndicats nous avaient dit ensemble qu'ils \u00e9taient favorables \u00e0 une planification pour d\u00e9carboner le pays. \n\nLes inscriptions c'est par l\u00e0 : https://lnkd.in/e4y44-9h\n\nVenez nombreuses et nombreux !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6940195650894499840,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6940195651959848960,urn:li:activity:6940195651959848960,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 35, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6940195651959848960,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6940195651959848960,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6940195651959848960", + "threadId": "activity:6940195651959848960", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6940195651959848960", + "urn": "urn:li:activity:6940195651959848960", + "numComments": 49, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6940195651959848960", + "reactionTypeCounts": [ + { + "count": 1063, + "reactionType": "LIKE" + }, + { + "count": 53, + "reactionType": "PRAISE" + }, + { + "count": 47, + "reactionType": "EMPATHY" + }, + { + "count": 21, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6940195651959848960", + "numLikes": 1205, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6940195651959848960", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1205, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6939817701607407616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6939817701607407616", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6939817701607407616)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6939817701607407616)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cr%C3%A9%C3%A9e-il-y-a-6-ans-d%C3%A9sormais-carbon-4-finance-activity-6939817701607407616-KHJR?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6939817700655308800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6939817701607407616", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6939817701607407616,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6939817701607407616,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6939817700655308800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "kZoBcSjuxDM0c95H5WGWBA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6939817701607407616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQG-MQ0WnzaUKQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQG-MQ0WnzaUKQ", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1654581473237?e=1679529600&v=beta&t=UaJ6IsQQxfuwAPPAfm0nUAowbDlNWpT5pFyJ0OPLQq8", + "expiresAt": 1679529600000, + "height": 1315 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1654581474730?e=1679529600&v=beta&t=HbugA2nWLLHJFBJCJ7FNu8Z378CXZI3cCcqSYF5II80", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1654581474730?e=1679529600&v=beta&t=sEDBKERal4QYyt4LEtc3GA7KHmPyYASbNScRy5AIKW4", + "expiresAt": 1679529600000, + "height": 822 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1654581474730?e=1679529600&v=beta&t=GvZF23v2r93H5BhtEzzYfwc0eN2eokfAVS5U_z4cnTg", + "expiresAt": 1679529600000, + "height": 308 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1654581474730?e=1679529600&v=beta&t=zttStwnE7KmlTwfHjf-QKWHhvXjfv40UiMhkKuhxCcE", + "expiresAt": 1679529600000, + "height": 103 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1654581474730?e=1679529600&v=beta&t=A2IyMJxywva1bBsQtC6Xf_MOOPcS95fCfRhObqM7N-0", + "expiresAt": 1679529600000, + "height": 514 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQG-MQ0WnzaUKQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.64208984375 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6939817700655308800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Cr\u00e9\u00e9e il y a 6 ans d\u00e9sormais, Carbon 4 Finance est n\u00e9e avec une ambition folle : celle de mettre de l'intelligence dans la donn\u00e9e climat, pour permettre aux acteurs financiers de comprendre \"\u00e0 quelle distance ils sont du probl\u00e8me\", sans pour autant leur faire la promesse qu'en venant chez nous ils deviendraient facilement \"verts\".\n\nPlus r\u00e9cemment nous avons pris pied sur le sujet de la biodiversit\u00e9, avec l\u00e0 aussi pour objectif de permettre \u00e0 nos clients de disposer d'une premi\u00e8re approche quantifi\u00e9e - par construction bien plus difficile \u00e0 objectiver quand il s'agit de vivant - sur cet enjeu crucial.\n\nIl se trouve que notre pari fonctionne. Pas au point de faire de nous un concurrent de Bloomberg :), mais suffisamment pour que nous suscitions de plus en plus d'int\u00e9r\u00eat de la part d'acteurs du monde financier (dont, r\u00e9cemment, l'ensemble des banques centrales de l'Eurosyst\u00e8me), sans pour autant perdre notre rigueur intellectuelle ni notre \u00e9thique (enfin nous l'esp\u00e9rons :) ).\n\nNotre petite \u00e9quipe s'agrandit donc, et il nous arrive de recruter de temps en temps. Et comme il para\u00eet que Linkedin c'est avant tout fait pour ca, c'est donc sans vergogne que j'annonce que nous cherchons :\n- 2 personnes pour renforcer l'\u00e9quipe commerciale : https://lnkd.in/eSm_KBUG (nous cherchons avant tout des gens motiv\u00e9s par le sujet climat, partageant nos valeurs, qui ont une formation leur permettant de comprendre de quoi il retourne dans le monde financier, et qui vont apprendre vite)\n- 2 analystes stagiaires pour un d\u00e9marrage d\u00e8s juillet si possible : https://lnkd.in/en6EnXyG \n\nLes modalit\u00e9s pour postuler sont indiqu\u00e9es sur chaque annonce. La langue de travail \u00e0 Carbon 4 Finance est le fran\u00e7ais (m\u00eame si l'offre pour les stages est en anglais et si parler cette langue est raisonnablement indispensable !).\n\nNB : l'image ci-dessous n'est pas li\u00e9e au descriptif des postes. Elle liste des publications que nous avons faites pour expliquer ce que nous faisons, et qui sont disponibles \u00e0 partir de https://lnkd.in/ewBrJxyu" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6939817700655308800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6939817701607407616,urn:li:activity:6939817701607407616,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 20, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6939817701607407616,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6939817701607407616,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6939817701607407616", + "threadId": "activity:6939817701607407616", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6939817701607407616", + "urn": "urn:li:activity:6939817701607407616", + "numComments": 25, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6939817701607407616", + "reactionTypeCounts": [ + { + "count": 847, + "reactionType": "LIKE" + }, + { + "count": 32, + "reactionType": "APPRECIATION" + }, + { + "count": 29, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6939817701607407616", + "numLikes": 929, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6939817701607407616", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 929, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6939519727396397056,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6939519727396397056", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6939519727396397056)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6939519727396397056)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_que-doit-faire-une-ministre-cest-simple-activity-6939519727396397056-Bwy9?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6939519726477844480", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6939519727396397056", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6939519727396397056,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6939519727396397056,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6939519726477844480", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "TFDEKb76WNjjKI1f6pNZAg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6939519727396397056,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHfHBc2-DOgMQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHfHBc2-DOgMQ", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1654510431672?e=1679529600&v=beta&t=nCWQFSgP107chu_Shvi2qgwwuk4cRd4HRuL60gXp0O8", + "expiresAt": 1679529600000, + "height": 1365 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1654510431602?e=1679529600&v=beta&t=JAQvd31zyFQIx4RcYkVAka0raLUmP6iHUYMHSiv5JeA", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1654510431602?e=1679529600&v=beta&t=8HspOz4w2SEs85Wsn_hiFK-Z0gXRkGFXgEb4p2hvPtE", + "expiresAt": 1679529600000, + "height": 853 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1654510431602?e=1679529600&v=beta&t=gx7B9LAbSnJPvmVm3PNfxjwD2m5b3pfbQ1jHoSsbn70", + "expiresAt": 1679529600000, + "height": 320 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1654510431602?e=1679529600&v=beta&t=J0fcJuzFDt3H2uVp7PilAlBFDHCmoZ2zXNum6Y9N3qU", + "expiresAt": 1679529600000, + "height": 106 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1654510431602?e=1679529600&v=beta&t=MnPA-sxUccWH2p7JG9xyRstKxGyqjI4T6NcICXV7U2A", + "expiresAt": 1679529600000, + "height": 533 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHfHBc2-DOgMQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.66650390625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6939519726477844480,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 638, + "length": 14, + "miniProfile": { + "firstName": "Bruno", + "lastName": "Le Maire", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "occupation": "Ministre de l\u2019\u00c9conomie, des Finances et de la Souverainet\u00e9 industrielle et num\u00e9rique", + "objectUrn": "urn:li:member:489338904", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1615820384690?e=1681948800&v=beta&t=1lSONwEqNZ6YCfsSa_SSdMyy3lRIBlt7HnIa8FhbD_0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1615820384690?e=1681948800&v=beta&t=mXrkcvswYDvA5nxrWnHwv0uRHbVbSrbb-YTCHNh3hZs", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFtlzemSILDlQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "brunolemaire", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650470576103?e=1681948800&v=beta&t=grYiuKFOw0Vps9r0gskTHNlsABqKydJY1BD9PqrCOZE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650470576103?e=1681948800&v=beta&t=_dq5B-XcARKywCPZ39sHI46v2wiioUaRLXHB6EjQEZA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650470576103?e=1681948800&v=beta&t=hpGqyzWjIXtO01PmwOzhVATdVIHajDaeNdSiiN6I2KY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650470576103?e=1681948800&v=beta&t=sDT3g5ZnR6kL5Ks0S37qtLS2Z-UNhM119fiXH0t1h8I", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQH2hSTPjrAuKw/profile-displayphoto-shrink_" + } + }, + "trackingId": "9K9fUQP3S4im6IR3VTZSLA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1285, + "length": 22, + "miniProfile": { + "firstName": "Agn\u00e8s", + "lastName": "Pannier-Runacher", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAEK6BEBsG_i-hh5mSn5hIurr_OycRfuKkg", + "occupation": "Ministre de la Transition \u00c9nerg\u00e9tique", + "objectUrn": "urn:li:member:17491985", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAEK6BEBsG_i-hh5mSn5hIurr_OycRfuKkg", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1674899369693?e=1681948800&v=beta&t=3LKXkGY90MOr38xrRJrtLgywf-CAob9vNvkP8JflqqI", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1674899369693?e=1681948800&v=beta&t=6VFYH_PJYvuv19P322RrvyYfkZGT-i63snKrxWjsEfQ", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQFhA3JuxVMqHA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "agnes-pannier-runacher", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1651053018299?e=1681948800&v=beta&t=BR2u9KR89fk_mCv1Yxo0nE-tWFZb8FNFZnPg2n76HYk", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1651053018299?e=1681948800&v=beta&t=5L_yy71f7eKD8O0B5k28YL0f1-BTrBOApJpSkj7g-TI", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1651053018299?e=1681948800&v=beta&t=ztHyczbGWbD1-QqE21OfwpvSPk5D36cvf5iHpOtkBC4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1651053018299?e=1681948800&v=beta&t=S_OfvzDG0EP3voc0ZUb7PFaC9IyDoqjZyoZKlPuH-es", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQEq84-Nk6p0FA/profile-displayphoto-shrink_" + } + }, + "trackingId": "EYYwlyUATbKg7z3Kpo8pyQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1518, + "length": 20, + "miniProfile": { + "firstName": "Am\u00e9lie ", + "lastName": "de Montchalin", + "dashEntityUrn": "urn:li:fsd_profile:ACoAADLHAz0B7Fn9csiCdL2xxtvr4_fAY6_bejI", + "occupation": "Repr\u00e9sentante permanente de la France aupr\u00e8s de l\u2019OCDE.", + "objectUrn": "urn:li:member:851903293", + "entityUrn": "urn:li:fs_miniProfile:ACoAADLHAz0B7Fn9csiCdL2xxtvr4_fAY6_bejI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1669215113634?e=1681948800&v=beta&t=WfBu2ngbHQJ5C6Z79frdC_rUuxQsiaOFhhgqIkZPQ_A", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1669215113634?e=1681948800&v=beta&t=yUHDG0BmKf074p7tFvZscH5KEkJ-HP-cZAcb3jfbDhA", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQHMx4BA4NitjQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "am\u00e9lie-de-montchalin-7113731b9", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1656944270280?e=1681948800&v=beta&t=rCIEIC_H3VLQnqM3-geFMIddYVH_GRGFQ9I9iBjCLlM", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1656944270280?e=1681948800&v=beta&t=n0lgGZ4_8XEGETnAn0Dl063CF2Vy3VY61bS0ayw8kEA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1656944270280?e=1681948800&v=beta&t=zmwKt1KLkf_baV5S9wPK3orYh-SOR2MsSZIVWlW3Zlk", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1656944270280?e=1681948800&v=beta&t=_MaCi81LctNAmxmtmepfPUIGu23zfkMxD2I2hV0C8BA", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFhlGNf9O_5kQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "cAm3Bq/2QC+EJ60lAPdEBA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2040, + "length": 12, + "miniProfile": { + "firstName": "Marc", + "lastName": "Fesneau", + "dashEntityUrn": "urn:li:fsd_profile:ACoAADTaClUBot8csRmkuBhpDc1aP0m5erBWlvM", + "occupation": "Ministre charg\u00e9 des relations avec le Parlement et de la Participation citoyenne | Candidat aux \u00e9lections r\u00e9gionales en Centre-Val de Loire", + "objectUrn": "urn:li:member:886704725", + "entityUrn": "urn:li:fs_miniProfile:ACoAADTaClUBot8csRmkuBhpDc1aP0m5erBWlvM", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1619194911557?e=1681948800&v=beta&t=VkppwkN8xmaRWQQru0SFQ5-h7W8GY3pwb3T0VSkgvf0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1619194911557?e=1681948800&v=beta&t=T_gszv-UXTguPzo9N2v5JfgTEU0uPqBvEuN7YtmCV0c", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQHMGtFANly3HA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "marc-fesneau-385b57208", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1619171069204?e=1681948800&v=beta&t=fB6bWiMs3AL6nZKQtUSOvmjqqscprPJ1tA8mHF7MHdU", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1619171069204?e=1681948800&v=beta&t=6pod2ZG5IrJuUC99sFiC9uBmXUVvvMwbcrd6VS9gtcM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1619171069204?e=1681948800&v=beta&t=qq3e7o9jEtUjK1kcpu-m9nV3lfDxMSGEuw3VLODEatg", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1619171069204?e=1681948800&v=beta&t=rnp5XVPdTYjy4mI-QyPZI2eRG5Ka4_kivaoA-cpCCX8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGgkM-JWVidRw/profile-displayphoto-shrink_" + } + }, + "trackingId": "YBRWSClFSTKKgB0Zl7Aj8Q==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2381, + "length": 15, + "miniProfile": { + "firstName": "Olivier", + "lastName": "Dussopt", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAC-oaqYBmWj1_Bq8PjnLKmbQHLhUwJGrD4s", + "occupation": "Ministre du Travail, du Plein Emploi et de l'Insertion", + "objectUrn": "urn:li:member:799566502", + "entityUrn": "urn:li:fs_miniProfile:ACoAAC-oaqYBmWj1_Bq8PjnLKmbQHLhUwJGrD4s", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1666551858405?e=1681948800&v=beta&t=QOBWvbCK-Uixz7_q_oqM3MY0hvqUPZzB64dHmAN8-4c", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1666551858405?e=1681948800&v=beta&t=h6ULzCKpWlpKrzBnvTt1kz9Rep1CN6fgiWUJeYsMCXo", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQEOeTQ0RHbNDA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "olivier-dussopt-11a9341a3", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629827124208?e=1681948800&v=beta&t=VH0qkyR3zf0AYw2ZvKWg4XU9UUqNf6GHz_w4b1ickZw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629827124208?e=1681948800&v=beta&t=0kv6YmM_KazB0w3gaDJNfmk1CB-JEAIzmHzlrikku10", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629827124208?e=1681948800&v=beta&t=noVaweUX3EsbKeABCez7v5ZSX4cDLpLtAqvGsAJQosE", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1629827124208?e=1681948800&v=beta&t=H_tCWHnjKyRT_MxStDfZQn8VGtGvK3_zxtO0ma_n87I", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEo1DMWfO1Mig/profile-displayphoto-shrink_" + } + }, + "trackingId": "qs5iY37cRHClarH6YHP6cw==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2613, + "length": 10, + "miniProfile": { + "firstName": "Pap", + "lastName": "Ndiaye", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAr2DfQB3vTS5-40_xkLdMAlde49DisLs20", + "occupation": "Ministre de l'Education nationale et de la jeunesse", + "objectUrn": "urn:li:member:183897588", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAr2DfQB3vTS5-40_xkLdMAlde49DisLs20", + "publicIdentifier": "pap-ndiaye-27070651", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1613042151764?e=1681948800&v=beta&t=lYRURX_k-8TZMC69JAyZK8Em-aYKly7spymYMl6VTVE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1613042151764?e=1681948800&v=beta&t=njdtvUaYH6KxhttQj4_U5ddlJeLyS95Twtlo92-8rng", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1613042151764?e=1681948800&v=beta&t=qkzx6tgPByvFNcTJxVj8oD2AQgq13PgdS1k9pUmPowc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1613042151764?e=1681948800&v=beta&t=UD3F01R6rEmh-l23aeKZ3-4vbTFsLAJA78V4s6FLhFs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQESUHAfnElUSg/profile-displayphoto-shrink_" + } + }, + "trackingId": "zK/gb/rbRLOk3Rc9Vi/5rw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Que doit faire un(e) ministre ? C'est simple : son titre l'indique, non ? Le ministre de l'\u00e9conomie s'occupe d'\u00e9conomie et la ministre de la sant\u00e9 de sant\u00e9. En fait, en plus de son titre chaque ministre re\u00e7oit aussi - et surtout - un d\u00e9cret pr\u00e9sidentiel qui pr\u00e9cise ses objectifs et moyens - et donc en creux ceux qu'il ou elle n'a pas.\n\nUn cabinet d'avocats a eu la bonne id\u00e9e de rassembler tous ces d\u00e9crets dits d'attribution au m\u00eame endroit : https://bit.ly/3H06hG3 Question : les ministres ont-ils des feuilles de route en accord avec l'objectif global de planification \u00e9cologique ? Comme d'habitude, le Diable est dans les d\u00e9tails.\n\nBruno Le Maire (\u00e9conomie) doit d'abord favoriser la croissance (mentionn\u00e9e \u00e0 plusieurs reprises), ce qui suppose qu'elle ne d\u00e9pend que de lui (ca se discute), et que cet objectif n'est pas antagoniste avec la d\u00e9carbonation (ca se discute aussi : https://bit.ly/3tiok4z ).\n\nIl ne lui est pas demand\u00e9 d'avoir un plan pour une \u00e9conomie sans croissance (cette \u00e9ventualit\u00e9 est tout sauf impossible comme l'actualit\u00e9 r\u00e9cente l'a montr\u00e9). Il ne lui est pas plus demand\u00e9 de concevoir une \u00e9conomie en accord avec les limites plan\u00e9taires, les mots \"climat\" ou \"ressources\" n'apparaissant pas dans sa feuille de route. Il ne doit pas \"verdir\" la fiscalit\u00e9.\n\nAgn\u00e8s Pannier-Runacher (\u00e9nergie), doit s'occuper de plein de sujets techniques (ENR, nucl\u00e9aire, hydrog\u00e8ne, bornes de recharge, r\u00e9novation des b\u00e2timents), et de s\u00e9curit\u00e9 d'approvisionnement (bonjour Poutine !), mais pas de sobri\u00e9t\u00e9.\n\nAm\u00e9lie de Montchalin (environnement et territoires), n'a pas pour objectif premier d'augmenter la r\u00e9silience ou la sobri\u00e9t\u00e9 au niveau local. Elle s'occupe certes d'adaptation, mais c'est pour \"mettre en oeuvre la politique du gouvernement\" (qui de par le pass\u00e9 \u00e9tait indigente).\n\nElle doit par contre \"anticiper et accompagner les mutations \u00e9conomiques et sociales propres \u00e0 chaque territoire dans l'espace europ\u00e9en\". Bref les conventions humaines (l'espace europ\u00e9en) passent avant la physique (les limites plan\u00e9taires).\n\nMarc Fesneau (agriculture), poss\u00e8de pour le coup une feuille de route qui parle de climat, d'adaptation, ou de stockage de carbone dans les sols. Mais les mots \"phytosanitaires\" ou \"pesticides\" n'y figurent pas, pas plus que \"r\u00e9silience\" (ce qui est diff\u00e9rent de \"adaptation\" et inclut notamment la baisse subie des combustibles fossiles).\n\nOlivier Dussopt (emploi), s'occupe des retraites (avec une \u00e9conomie en croissance bien s\u00fbr !) mais pas des mutations \u00e0 venir dans le cadre de la d\u00e9carbonation, volontaire ou subie, alors que les effets sur l'emploi seront massifs.\n\nPap Ndiaye (Education Nationale), doit oeuvrer \"en faveur du d\u00e9veloppement et de la diffusion des usages du num\u00e9rique (...)\", mais n'a pas pour mandat d'aligner les contenus enseign\u00e9s avec le monde fini. Les \u00e9crans \u00e0 l'\u00e9cole c'est plus important que le climat !\n\nBref ces d\u00e9crets sont largement \"\u00e0 c\u00f4t\u00e9 de la plaque\" si l'objectif est la planification \u00e9cologique. A refaire !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6939519726477844480,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6939519727396397056,urn:li:activity:6939519727396397056,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 303, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6939519727396397056,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6939519727396397056,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6939519727396397056", + "threadId": "activity:6939519727396397056", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6939519727396397056", + "urn": "urn:li:activity:6939519727396397056", + "numComments": 535, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6939519727396397056", + "reactionTypeCounts": [ + { + "count": 7524, + "reactionType": "LIKE" + }, + { + "count": 1138, + "reactionType": "INTEREST" + }, + { + "count": 1043, + "reactionType": "MAYBE" + }, + { + "count": 303, + "reactionType": "PRAISE" + }, + { + "count": 90, + "reactionType": "APPRECIATION" + }, + { + "count": 59, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6939519727396397056", + "numLikes": 10157, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6939519727396397056", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 10157, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6939270930443452416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6939270930443452416", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6939270930443452416)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6939270930443452416)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_l%C3%A9gislatives-en-essonne-j%C3%A9r%C3%B4me-guedj-am%C3%A9lie-activity-6939270930443452416-WO8L?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6939270929596207104", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6939270930443452416", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6939270930443452416,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6939270930443452416,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6939270929596207104", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "zybI7YhRuuQlaSLlZeF/ZA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6939270930443452416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8247757887919856202", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 600, + "fileIdentifyingUrlPathSegment": "800/0/1676446251369?e=1677240000&v=beta&t=4H1J-UoX0albFfIskriOzRMaeYH8iBNuQ4HYpF5_etM", + "expiresAt": 1677240000000, + "height": 315 + }, + { + "width": 600, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676446251370?e=1677240000&v=beta&t=nPZqhn7O5gcegWfta3Z8a-viGC8LEMaJ5yKF9zpL-7Q", + "expiresAt": 1677240000000, + "height": 315 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676446251370?e=1677240000&v=beta&t=g-nLPP-QTRoBVTS1iKAjNpVH4_FyVM9dOwd2h1ao9AI", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676446251370?e=1677240000&v=beta&t=-uMMzNRX-XjfrMYEc9edkXwKzaAB65LL9tTEk_sDDGM", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQHeM5yHb2feCg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8247757887919856202)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8247757887919856202)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "msn.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L\u00e9gislatives en Essonne : J\u00e9r\u00f4me Guedj-Am\u00e9lie de Montchalin, match retour by msn.com", + "actionTarget": "https://www.msn.com/fr-fr/actualite/elections/l-c3-a9gislatives-en-essonne-j-c3-a9r-c3-b4me-guedj-am-c3-a9lie-de-montchalin-match-retour/ar-AAY6e3D" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L\u00e9gislatives en Essonne : J\u00e9r\u00f4me Guedj-Am\u00e9lie de Montchalin, match retour" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6939270929596207104,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quand j'\u00e9tais jeune (si si cela a exist\u00e9 un jour) il y avait une claire s\u00e9paration des r\u00f4les dans le monde politique : les d\u00e9put\u00e9s se faisaient \u00e9lire comme d\u00e9put\u00e9s, et ne devenaient pas ministres, et les ministres \u00e9taient nomm\u00e9s comme ministres, et ne cherchaient pas \u00e0 se faire \u00e9lire comme d\u00e9put\u00e9s. \n\nC'est - de m\u00e9moire - Sarkozy qui a instaur\u00e9 le premier cette r\u00e8gle, dont je ne comprends pas le sens, qui veut qu'un ministre commence par se faire \u00e9lire comme d\u00e9put\u00e9... pour ne pas l'\u00eatre. Les ministres candidat(e)s demandent donc aux \u00e9lecteurs de voter pour eux pour qu'ils et elles ne soient pas d\u00e9put\u00e9(e) ! \n\nC'est du reste au nom de cette logique incompr\u00e9hensible que Jupp\u00e9, pourtant tr\u00e8s populaire \u00e0 Bordeaux, n'a pas \u00e9t\u00e9 \u00e9lu comme \"non d\u00e9put\u00e9\" de sa ville lors des l\u00e9gislatives de 2007, et a fait un mandat d'un mois comme ministre d'Etat de l'environnement, alors que tout le monde voyait sa prise de fonction plut\u00f4t d'un bon oeil. Ses \u00e9lecteurs, qui pourtant l'aimaient bien, ont du penser qu'il se fichait gentiment d'eux quand il a demand\u00e9 leurs suffrages... pour ne pas aller au Palais Bourbon.\n\nSi nous allons plus loin, il n'est dit nulle part dans la constitution fran\u00e7aise que chaque ministre devra \u00eatre \"valid\u00e9(e)\" par une circonscription particuli\u00e8re. Dans notre constitution l'ensemble de l'Assembl\u00e9e d\u00e9finit une majorit\u00e9 et derri\u00e8re le premier ministre qui en \u00e9mane d\u00e9cide qui mettra ce programme en oeuvre, en choisissant pour cela des personnes non \u00e9lues.\n\nCes personnes doit surtout avoir deux qualit\u00e9s : la loyaut\u00e9 (toujours pr\u00e9sente au moins au d\u00e9but) et la comp\u00e9tence (pas toujours pr\u00e9sente h\u00e9las...). Un ministre n'est que l'ex\u00e9cutant d'un programme de gouvernement qui lui d\u00e9pend... de l'assembl\u00e9e dans son ensemble.\n\nSi on fait comme les anglais, qui nomment comme ministre des politiques d\u00e9j\u00e0 \u00e9lus au parlement, alors il serait sage de ne pas avoir de gouvernement du tout en attendant le r\u00e9sultat des l\u00e9gislatives. Le pays peut tr\u00e8s bien se passer de gouvernement pendant 2 mois :), ou conserver l'ancien gouvernement dans l'attente des l\u00e9gislatives.\n\nPour la ministre de la transition \u00e9cologique, qui va donc devoir aller se faire \"\u00e9lire pour ne pas \u00eatre \u00e9lue\" comme tous les autres, je pr\u00e9f\u00e8rerais de tr\u00e8s loin que son maintien ou pas au gouvernement d\u00e9pende d'un test de connaissances sur le sujet qu'elle a \u00e0 traiter, plut\u00f4t que du vote des \u00e9lecteurs dans une circonscription particuli\u00e8re." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6939270929596207104,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6939270930443452416,urn:li:activity:6939270930443452416,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 190, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6939270930443452416,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6939270930443452416,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6939270930443452416", + "threadId": "activity:6939270930443452416", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6939270930443452416", + "urn": "urn:li:activity:6939270930443452416", + "numComments": 260, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6939270930443452416", + "reactionTypeCounts": [ + { + "count": 3483, + "reactionType": "LIKE" + }, + { + "count": 330, + "reactionType": "PRAISE" + }, + { + "count": 192, + "reactionType": "MAYBE" + }, + { + "count": 59, + "reactionType": "INTEREST" + }, + { + "count": 49, + "reactionType": "EMPATHY" + }, + { + "count": 37, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6939270930443452416", + "numLikes": 4150, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6939270930443452416", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4150, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 Edited \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6939150039390822400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6939150039390822400", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6939150039390822400)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6939150039390822400)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lenvol-contrari%C3%A9-de-la-voiture-%C3%A9lectrique-activity-6939150039390822400-Oay2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6939150038560346113", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6939150039390822400", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6939150039390822400,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6939150039390822400,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6939150038560346113", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "+b0b0OjmiUvoumVRlz9NpQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6939150039390822400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7283658166504591254", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676451018604?e=1677240000&v=beta&t=AMPmTgRbH5s8l-QncjoabTrH6dvxkRJWXN_cKxxn3oY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676451018604?e=1677240000&v=beta&t=EjcQdV7zqI4cy9YPlWnLmemi5rD0fVce0aCPlqpyt7I", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676451018605?e=1677240000&v=beta&t=P-cK7OfKDR7qcD6fP1To9s30X_vYYS43EQ4V_O6W7gk", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676451018605?e=1677240000&v=beta&t=Km4Gj6n1ltoj3tFBLNECa72RFeX7BFR9AF7zFhYffgo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFL2F43JD62ew/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7283658166504591254)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7283658166504591254)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'envol contrari\u00e9 de la voiture \u00e9lectrique by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/automobile/lenvol-contrarie-de-la-voiture-electrique-1410786" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'envol contrari\u00e9 de la voiture \u00e9lectrique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6939150038560346113,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est l'un des paradoxes de la transition telle que nous l'imaginons le plus souvent : elle a besoin que le probl\u00e8me \u00e0 r\u00e9soudre... soit toujours l\u00e0 !\n\nExplication de cette petite \u00e9nigme : ce qui a permis la mondialisation, c'est l'abondance \u00e9nerg\u00e9tique. Il faut du p\u00e9trole pour alimenter les camions et bateaux permettant de trimballer des milliards de tonnes de mati\u00e8res ou marchandises d'un bout \u00e0 l'autre de la plan\u00e8te. Il faut du charbon pour alimenter les hauts fourneaux et les centrales \u00e9lectriques qui ont permis de fabriquer en masse ici ce qui sera consomm\u00e9 loin de l\u00e0. Il faut du gaz pour faire une partie de l'\u00e9lectricit\u00e9 et de la chaleur industrielle qui participent de ce syst\u00e8me. \n\nDu coup, une cons\u00e9quence logique de la d\u00e9carbonation sera la... d\u00e9mondialisation. La flotte mondiale comporte 100.000 bateaux de plus de 100 tonnes de port (https://bit.ly/3ziS99g ), et ce n'est pas avec juste des bateaux \u00e0 voile ou \u00e0 rames que nous allons conserver la m\u00eame capacit\u00e9 de transport (2,1 milliard de tonnes de port).\n\nDans une \u00e9conomie d\u00e9mondialis\u00e9e, les pays qui n'ont pas de mines ne fabriquent ni batteries, ni panneaux solaires, ni voitures \u00e9lectriques. Et on le voit \u00e0 l'exp\u00e9rience grandeur nature de l\u00e9g\u00e8re d\u00e9mondialisation que le covid puis l'Ukraine nous offre en ce moment.\n\nComme l'explique cet article des Echos, alors m\u00eame que la flotte mondiale de voitures \u00e9lectriques atteint p\u00e9niblement un peu moins de 2% du total des voitures en circulation, les fabricants font d\u00e9j\u00e0 face \u00e0 des probl\u00e8mes de production \u00e0 cause de composants \u00e9lectroniques qui ne sont produits que dans certaines parties du monde. Ils se demandent d\u00e9j\u00e0 si il n'y aura pas des probl\u00e8mes de fourniture de m\u00e9taux critiques \u00e0 cause de mines situ\u00e9es \"loin de l'usine\".\n\nLes fabricants de panneaux solaires et d'\u00e9oliennes sont eux aussi mondialis\u00e9s. 95% des panneaux viennent d\u00e9sormais de Chine (donc ils ont notamment besoin de porte-conteneurs), et pour l'\u00e9olien ce pays commence aussi \u00e0 tailler de plus en plus de croupi\u00e8res aux fabricants europ\u00e9ens. Et, comme pour les voitures, la petite d\u00e9mondialisation r\u00e9cente a invers\u00e9 la baisse de cout des ENR modernes, qui augmentent depuis 2 ans : https://bit.ly/3MlQcLX\n\nAvec une \u00e9conomie redevenant physiquement \"locale\", comment installer en France des centaines de milliers d'\u00e9oliennes et de panneaux alors que nous n'avons plus de mine de fer, ni de cuivre, ni de nickel, ni de charbon m\u00e9tallurgique ?\n\nIl s'av\u00e8re donc que pour g\u00e9rer la d\u00e9carbonation par des voies essentiellement \"technologiques\" nous avons besoin de la mondialisation... qui est carbon\u00e9e. Le fait de prendre les probl\u00e8mes avant tout sous l'angle \u00e9conomique ne permet pas de voir cette incoh\u00e9rence. Une autre mani\u00e8re de dire la m\u00eame chose est que les baisses de cout et les hausses de volume obtenues dans une \u00e9conomie mondialis\u00e9e ne sont pas du tout garanties dans une \u00e9conomie d\u00e9mondialis\u00e9e, loin s'en faut." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6939150038560346113,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6939150039390822400,urn:li:activity:6939150039390822400,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 114, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6939150039390822400,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6939150039390822400,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6939150039390822400", + "threadId": "activity:6939150039390822400", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6939150039390822400", + "urn": "urn:li:activity:6939150039390822400", + "numComments": 274, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6939150039390822400", + "reactionTypeCounts": [ + { + "count": 3039, + "reactionType": "LIKE" + }, + { + "count": 490, + "reactionType": "MAYBE" + }, + { + "count": 482, + "reactionType": "INTEREST" + }, + { + "count": 51, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "EMPATHY" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6939150039390822400", + "numLikes": 4091, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6939150039390822400", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4091, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 Edited \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6938874443586785280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6938874443586785280", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6938874443586785280)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6938874443586785280)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_crise-alimentaire-le-prix-des-c%C3%A9r%C3%A9ales-activity-6938874443586785280-pLZS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6938874442659864576", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6938874443586785280", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6938874443586785280,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6938874443586785280,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6938874442659864576", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "EyDVVp8WQ+74rETbdzk1Ig==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6938874443586785280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7418387627650210802", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676469144937?e=1677240000&v=beta&t=RfWiLhnag1o48IFk-vDBHjyNonG_Y3D42dSAC_lT_78", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676469144937?e=1677240000&v=beta&t=761Fqp45sBVp5C_3JIyBqOI8yQyRl44XmmUJTrfIksk", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676469144938?e=1677240000&v=beta&t=BGPNWA11fV43fIaWjj4i6n_GkJ3IzP5nvrX0ZC-WnsA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676469144938?e=1677240000&v=beta&t=uLZwC53FFWl4Z-weFl59peqCcNiGlKJwvyJkoWlFCQw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQGS1xWCWFiP-w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7418387627650210802)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7418387627650210802)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Crise alimentaire : le prix des c\u00e9r\u00e9ales \u00e9lev\u00e9, une hausse amplifi\u00e9e par le climat et l'\u00e9nergie by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900160738-crise-alimentaire-le-prix-des-cereales-eleve-une-hausse-amplifiee-par-le-climat-et-l-energie" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Crise alimentaire : le prix des c\u00e9r\u00e9ales \u00e9lev\u00e9, une hausse amplifi\u00e9e par le climat et l'\u00e9nergie" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6938874442659864576,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Elle a fait un peu moins de couverture m\u00e9diatique r\u00e9cemment que le divorce de Johnny Depp, mais l'inflation alimentaire continue son petit bonhomme de chemin. L'index des prix publi\u00e9 par la FAO montre que ces derniers sont au plus haut depuis... 1961 en monnaie constante : https://lnkd.in/eVYxYPQy\n\nCertes les revenus ont augment\u00e9 entre-temps, mais il n'emp\u00eache que sur les ann\u00e9es qui viennent de s'\u00e9couler les prix de l'alimentation ont augment\u00e9 bien plus vite : ils ont pris 80% depuis le d\u00e9but 2019. \n\nUne partie de cette hausse est due \u00e0 la hausse des prix de l'\u00e9nergie. Le gaz sert en effet \u00e0 fabriquer les engrais azot\u00e9s, et le p\u00e9trole \u00e0 transporter les denr\u00e9es. La hausse de ce dernier (https://lnkd.in/eRyvuUFt ) a \u00e9t\u00e9 un peu amplifi\u00e9e par la guerre en Ukraine, mais le mouvement date d'avant (fin 2020), en lien direct avec le covid qui a conduit \u00e0 de moindres investissements dans le secteur p\u00e9trolier.\n\nLe gaz a aussi commenc\u00e9 \u00e0 augmenter - dans le sillage du p\u00e9trole - en 2020, et la guerre en Ukraine a \"simplement\" acc\u00e9l\u00e9r\u00e9 le mouvement. \n\nUne autre partie de la hausse du prix de la nourriture est bien sur due \u00e0 l'absence d'une partie du bl\u00e9 ukrainien (5\u00e8 exportateur mondial en temps normal) et \u00e0 la logistique compliqu\u00e9e pour le bl\u00e9 russe (1er exportateur mondial) \u00e0 l'export. L'absence du bl\u00e9 ukrainien va se prolonger puisque ce pays ne peut pas mener une activit\u00e9 agricole normale actuellement \u00e0 cause du conflit. \n\nEnfin la s\u00e9cheresse qui augmente de mani\u00e8re chronique un peu partout dans le monde impacte n\u00e9gativement les r\u00e9coltes. C'est par exemple le cas au Maroc (7\u00e8 importateur mondial) qui fait face \u00e0 une s\u00e9cheresse historique qui pourrait diviser sa production par plus de 2 (https://lnkd.in/eUqAcaBf), ou en Somalie, elle aussi affect\u00e9e par la s\u00e9cheresse : https://lnkd.in/echyUNFH\n\nEn Europe, nous avons un moyen de contribuer \u00e0 all\u00e9ger le fardeau sans torpiller nos ambitions environnementales : diminuer aussi vite que possible la consommation des v\u00e9hicules qui circulent (ce qui passe par moins de km en voiture, et des voitures qui consomment moins, soit par construction, soit par limitation de vitesse) pour ne plus avoir besoin de consacrer aux agrocaburants une partie de nos surfaces cultivables. Estomacs ou r\u00e9servoirs : malheureusement nous avons d\u00e9j\u00e0 partiellement choisi les seconds." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6938874442659864576,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6938874443586785280,urn:li:activity:6938874443586785280,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 33, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6938874443586785280,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6938874443586785280,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6938874443586785280", + "threadId": "activity:6938874443586785280", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6938874443586785280", + "urn": "urn:li:activity:6938874443586785280", + "numComments": 64, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6938874443586785280", + "reactionTypeCounts": [ + { + "count": 681, + "reactionType": "LIKE" + }, + { + "count": 73, + "reactionType": "MAYBE" + }, + { + "count": 70, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6938874443586785280", + "numLikes": 841, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6938874443586785280", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 841, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 Edited \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6938181970648571905,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6938181970648571905", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6938181970648571905)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6938181970648571905)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-r%C3%A9gulateur-de-l%C3%A9nergie-plaide-pour-qu-activity-6938181970648571905-wyAT?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6938181969780330496", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6938181970648571905", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6938181970648571905,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6938181970648571905,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6938181969780330496", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "DvyHZsTohG9pdkoVNfHclw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6938181970648571905,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7643341601393525281", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676396361068?e=1677240000&v=beta&t=5yCp1wTvzNrEespzfI_12T3Uq6q3Skajj-_Pu9Xr8aQ", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676396361068?e=1677240000&v=beta&t=DtzHPD2HOc6CJnjpGyDqBqJcXShN7LLS997dMKHsnwM", + "expiresAt": 1677240000000, + "height": 526 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676396361068?e=1677240000&v=beta&t=o7GlW7EhBJzweN7oqVBxoewiSjdWV-Jx3jaQiPdToXc", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676396361068?e=1677240000&v=beta&t=qCOkpmdhOM5Z2v-bCzlxyawECdgCPc6Ti3S06gAUPrE", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D5627AQG88aDgSM9oJw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7643341601393525281)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7643341601393525281)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "letelegramme.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le r\u00e9gulateur de l\u2019\u00e9nergie plaide pour qu\u2019EDF vende plus d\u2019\u00e9lectricit\u00e9 bon march\u00e9 \u00e0 ses concurrents by letelegramme.fr", + "actionTarget": "https://www.letelegramme.fr/economie/le-regulateur-de-l-energie-plaide-pour-qu-edf-vende-plus-d-electricite-bon-marche-a-ses-concurrents-01-06-2022-13051244.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le r\u00e9gulateur de l\u2019\u00e9nergie plaide pour qu\u2019EDF vende plus d\u2019\u00e9lectricit\u00e9 bon march\u00e9 \u00e0 ses concurrents" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6938181969780330496,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'arenh - acc\u00e8s r\u00e9gul\u00e9 \u00e0 l'\u00e9lectricit\u00e9 nucl\u00e9aire historique - est un enfant de la \"lib\u00e9ralisation\" de l'\u00e9lectricit\u00e9 d\u00e9cid\u00e9e par l'Union europ\u00e9enne qui oblige EDF \u00e0 vendre \u00e0 perte une partie de son \u00e9lectricit\u00e9 \"historique\" \u00e0 des \"concurrents\", qui en fait sont des courtiers qui lui prennent de la rente sans aucun apport \u00e0 la collectivit\u00e9.\n\nLa vente \u00e0 perte est interdite par la loi quand il s'agit de pommes. Mais quand il s'agit d'\u00e9lectricit\u00e9, elle est obligatoire pour EDF. Comprenne qui pourra.\n\nCette obligation porte d\u00e9sormais sur un tiers de la production d'EDF (elle ne diminue pas quand la production d'EDF diminue). Mieux : elle a \u00e9t\u00e9 rehauss\u00e9e de 20% juste avant l'\u00e9lection pr\u00e9sidentielle - comme par hasard - et va couter de l'ordre de 8 milliards \u00e0 EDF, \u00e0 qui on va par ailleurs demander d'investir des dizaines de milliards dans le grand car\u00e9nage et autant dans du nouveau nucl\u00e9aire. Comprenne qui pourra.\n\nEt comme ca n'est pas encore assez, et que surtout il est plus important de sauver les \"concurrents\" - des fois que le pays perde quelques courtiers - que l'exploitant des centrales qui permettent aux courtiers d'exister, le r\u00e9gulateur de l'\u00e9nergie propose d'augmenter encore le fardeau. Bref la concurrence c'est plus important que la physique !\n\nIl est \u00e9vident que la proposition de Carenco s'inscrit dans un monde o\u00f9 la situation va \"revenir \u00e0 la normale\". Car si le MWh \u00e9lectrique doit couter 250 euros pour les 20 ans qui viennent le plus urgent n'est peut-\u00eatre pas de \"sauver les concurrents d'EDF\". Et si l'on veut aider nos industriels il va peut-\u00eatre falloir se faire \u00e0 l'id\u00e9e que le syst\u00e8me de prix encadr\u00e9s cal\u00e9s sur les couts moyens de production n'\u00e9tait pas si idiot que cela... (ce qui suppose un bras de fer avec la Commission).\n\nCa sera un test int\u00e9ressant de voir si Macron 2 pr\u00e9sident r\u00e9it\u00e8rera la politique de Macron 1 candidat qui consiste \u00e0 faire les poches d'EDF (c'est cela l'augmentation de l'arenh) en r\u00e9action \"\u00e0 chaud\" \u00e0 la volatilit\u00e9 des prix de l'\u00e9nergie. Si oui, ca n'augure pas tr\u00e8s bien d'une politique \u00e9nerg\u00e9tique en phase avec l'\u00e9poque." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6938181969780330496,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6938181970648571905,urn:li:activity:6938181970648571905,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 188, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6938181970648571905,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6938181970648571905,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6938181970648571905", + "threadId": "activity:6938181970648571905", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6938181970648571905", + "urn": "urn:li:activity:6938181970648571905", + "numComments": 258, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6938181970648571905", + "reactionTypeCounts": [ + { + "count": 3748, + "reactionType": "LIKE" + }, + { + "count": 465, + "reactionType": "MAYBE" + }, + { + "count": 446, + "reactionType": "INTEREST" + }, + { + "count": 168, + "reactionType": "PRAISE" + }, + { + "count": 56, + "reactionType": "APPRECIATION" + }, + { + "count": 27, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6938181970648571905", + "numLikes": 4910, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6938181970648571905", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4910, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6938020011026341888,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6938020011026341888", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6938020011026341888)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6938020011026341888)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_executive-summary-global-ev-outlook-2022-activity-6938020011026341888-xVxD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6938020009830957056", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6938020011026341888", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6938020011026341888,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6938020011026341888,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6938020009830957056", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "QbNUp9a++vxP6+KevykZyA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6938020011026341888,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8411516564069494125", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675535408077?e=1677240000&v=beta&t=Jx8rY5HalW7tmp4Lc_JvGbrvQKsW5oQdJpe1rIk89KY", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675535408077?e=1677240000&v=beta&t=EdrP0_r-q5_1RZJc2H8nZmHBPHiVvGgYN0htG6JJLuw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675535408077?e=1677240000&v=beta&t=6zQztzBxvgOAYjptt7y8qN4h9xkSQjaWFkXaQ0ENk_w", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675535408077?e=1677240000&v=beta&t=VHQN4DX7h9hQtTtOFhrPax32gFtaTnBQ7miFZfc6FK8", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG4CYOTgII3wA/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8411516564069494125)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8411516564069494125)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "iea.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Executive summary \u2013 Global EV Outlook 2022 \u2013 Analysis - IEA by iea.org", + "actionTarget": "https://www.iea.org/reports/global-ev-outlook-2022/executive-summary" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Executive summary \u2013 Global EV Outlook 2022 \u2013 Analysis - IEA" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6938020009830957056,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La voiture \u00e9lectrique est... chinoise !\n\nLe \"Global EV Outlook\" de l'Agence Internationale de l'Energie propose une vue d'ensemble sur le v\u00e9hicule \u00e9lectrique dans le monde. On peut y apprend qu'il s'est vendu 6,6 millions de voitures \u00e0 \u00e9lectrons en 2021 (presque 10% des ventes), que le parc se monte \u00e0 16,5 millions (pour 1,2 milliard de v\u00e9hicules thermiques), et que pour les camions \u00e9lectriques c'est seulement 0,3% des ventes de poids lourds qu'il y a eu en 2021.\n\nEn 2030, 20% des ventes de voitures seraient \u00e9lectriques. C'est inf\u00e9rieur d'un facteur 3 \u00e0 ce qui serait n\u00e9cessaire pour un sc\u00e9nario \"accord de Paris\" (qui demanderait par ailleurs une fourniture en lithium multipli\u00e9e par un facteur 6).\n\nUn pays est au centre du jeu : la Chine. La moiti\u00e9 des ventes de 2021 ont eu lieu dans ce pays, qui par ailleurs commercialise des v\u00e9hicules en moyenne plus petits que pour le monde dans son ensemble. En effet, \u00e0 l'\u00e9chelle plan\u00e9taire, la moiti\u00e9 des v\u00e9hicules \u00e9lectriques disponibles sont des SUV, ce qui, note l'AIE, cr\u00e9e une pression suppl\u00e9mentaire sur la disponibilit\u00e9 des m\u00e9taux n\u00e9cessaires pour faire des batteries. \n\nDe fait, si on fabrique des batteries de 100 kWh plut\u00f4t que de 50 (ou m\u00eame de 0,5 pour les v\u00e9los !), \u00e0 capacit\u00e9 de production donn\u00e9e on peut \u00e9lectrifier moins de v\u00e9hicules neufs. Le fait que ces v\u00e9hicules soient chers, que la client\u00e8le solvable soit riche, que les constructeurs font de plus grosses marges sur les gros v\u00e9hicules, et que la voiture reste un objet de statut social pousse \u00e0 fabriquer des \"tanks \u00e9lectriques\", ce qui est contre-productif pour d\u00e9carboner rapidement la mobilit\u00e9.\n\nLa Chine va concentrer, d'ici \u00e0 2030, 70% de la capacit\u00e9 mondiale de production de batteries. Chez nous, passer du p\u00e9trole \u00e0 l'\u00e9lectricit\u00e9 ne permet donc pas \"l'autonomie \u00e9nerg\u00e9tique\". Alors que pour le p\u00e9trole nous sommes un peu plus \"multi-d\u00e9pendants\" (la Russie repr\u00e9sente 30% de nos importations), pour son \"substitut\" on deviendrait tr\u00e8s d\u00e9pendants d'un seul pays !\n\nQuand on sait que ce m\u00eame pays concentre aujourd'hui 95% de la fabrication des panneaux solaires (et que pour l'\u00e9olien nous n'avons pas non plus de capacit\u00e9s de production \u00e0 la hauteur de notre \u00e9quipement, loin s'en faut), on voit bien que le combo \"voiture \u00e9lectrique + ENR\" ne nous met pas vraiment sur la voie de l'ind\u00e9pendance \u00e9nerg\u00e9tique accrue...\n\nL'AIE note aussi que l'augmentation de production \u00e9lectrique bas carbone devra s'acc\u00e9l\u00e9rer pour que nous tout cela flotte. Ce n'est pas un hasard si dans le m\u00eame temps la Chine d\u00e9ploie massivement ces modes (entre autres choses elle a pr\u00e9vu de rajouter 8 GW de nucl\u00e9aire par an - soit 6 \u00e0 8 r\u00e9acteurs - entre 2025 et 2035 : https://bit.ly/3zdRbuS ). \n\nD'ici \u00e0 2030 il ne devrait pas y avoir de probl\u00e8me de fourniture \u00e9lectrique, dit l'AIE. Cette \"pr\u00e9vision\" \u00e0 l'\u00e9chelle globale sera peut-\u00eatre plus difficile \u00e0 tenir en Europe sans gaz russe, et avec moins de nucl\u00e9aire... et ca serait ballot que la voiture \u00e9lectrique contribue \u00e0 relancer le charbon." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6938020009830957056,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6938020011026341888,urn:li:activity:6938020011026341888,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 83, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6938020011026341888,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6938020011026341888,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6938020011026341888", + "threadId": "activity:6938020011026341888", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6938020011026341888", + "urn": "urn:li:activity:6938020011026341888", + "numComments": 181, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6938020011026341888", + "reactionTypeCounts": [ + { + "count": 1204, + "reactionType": "LIKE" + }, + { + "count": 259, + "reactionType": "INTEREST" + }, + { + "count": 225, + "reactionType": "MAYBE" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6938020011026341888", + "numLikes": 1718, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6938020011026341888", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1718, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6937799437368872960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6937799437368872960", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6937799437368872960)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6937799437368872960)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_noaa-forecasts-another-above-average-hurricane-activity-6937799437368872960-rRT6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6937799436832022528", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6937799437368872960", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6937799437368872960,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6937799437368872960,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6937799436832022528", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "kYMBnfZ9lXZx43CGazDWQg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6937799437368872960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8592250159028224190", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 610, + "fileIdentifyingUrlPathSegment": "800/0/1676557380593?e=1677240000&v=beta&t=uD66cwcLocgR9sDBh-3fVl_cIynLwoOFPKh-6TrUhAk", + "expiresAt": 1677240000000, + "height": 377 + }, + { + "width": 610, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676557380593?e=1677240000&v=beta&t=GMNoaAAd3yDCUaXOgww5p-xdAznerrECJY2Hr_F-8Vg", + "expiresAt": 1677240000000, + "height": 377 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676557380594?e=1677240000&v=beta&t=dF_G554RxR__mlIEQqmIlVfAqBc842Ej4CCW7TvUD64", + "expiresAt": 1677240000000, + "height": 98 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676557380594?e=1677240000&v=beta&t=OsD-DGBKsNjGOgAhg3ZwTf5g89Dv7PSEyYBfXEOGEVA", + "expiresAt": 1677240000000, + "height": 296 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQEs31hKQb6ryg/articleshare-shrink_" + }, + "displayAspectRatio": 0.6180327868852459 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "NOAA: Above average hurricane season in 2022" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8592250159028224190)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8592250159028224190)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "public.wmo.int \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: NOAA forecasts another above average hurricane season by public.wmo.int", + "actionTarget": "https://public.wmo.int/en/media/news/noaa-forecasts-another-above-average-hurricane-season" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "NOAA forecasts another above average hurricane season" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6937799436832022528,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ils s'appelleront Alex, Bonnie, Colin, et, si il y en a 21 ou plus, Walter puis on verra : il s'agit des temp\u00eates tropicales et ouragans qui prendront place dans l'Atlantique en 2022. La saison des ouragans d\u00e9marre officiellement le 1er juin, mais en pratique c'est surtout \u00e0 la fin de l'\u00e9t\u00e9 - aout et septembre,quand l'oc\u00e9an a bien chauff\u00e9 - que se concentre le plus grand nombre d'ouragans.\n\nLa NOAA (National Oceanic and Atmospheric Administration) pr\u00e9voit que cette ann\u00e9e il y aura probablement plus d'ouragans que \"la normale\". Mais, avec le r\u00e9chauffement climatique, n'est-ce pas normal qu'il y en ait de plus en plus ? En fait, ce que les mod\u00e8les nous disent, c'est que le nombre d'ouragans ne devrait pas significativement augmenter \u00e0 l'avenir. \n\nPar contre leur intensit\u00e9 devrait augmenter : plus de pr\u00e9cipitations et plus de vent. Il faut rappeler que la puissance du vent est proportionnelle au cube de sa vitesse, et donc que les d\u00e9g\u00e2ts ne font pas qu'augmenter de 10% quand la vitesse du vent augmente de 10%.\n\nMais cette annonce fait n\u00e9anmoins suite \u00e0 2 ann\u00e9es qui ont \u00e9t\u00e9 plus actives que la normale (2020 et 2021). Ce qui est sur, c'est qu'avec un oc\u00e9an de surface de plus en plus chaud, l'\u00e9nergie cumul\u00e9e qu'il faut en \u00e9vacuer augmente. Il est donc normal que \"quelque chose se passe\" sur les ouragans, qui peuvent alors soit augmenter en nombre, soit en intensit\u00e9, soit en dur\u00e9e de vie, soit en surface occup\u00e9e, soit survenir dans des endroits o\u00f9 l'on ne les voyait pas avant. Et le pr\u00e9voir de mani\u00e8re pr\u00e9cise est quasi-impossible." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6937799436832022528,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6937799437368872960,urn:li:activity:6937799437368872960,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 11, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6937799437368872960,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6937799437368872960,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6937799437368872960", + "threadId": "activity:6937799437368872960", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6937799437368872960", + "urn": "urn:li:activity:6937799437368872960", + "numComments": 15, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6937799437368872960", + "reactionTypeCounts": [ + { + "count": 150, + "reactionType": "LIKE" + }, + { + "count": 35, + "reactionType": "INTEREST" + }, + { + "count": 24, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6937799437368872960", + "numLikes": 212, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6937799437368872960", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 212, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6937468737587445760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6937468737587445760", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6937468737587445760)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6937468737587445760)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-interview-dans-ouest-france-en-mai-2022-activity-6937468737587445760-7QaN?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6937468736660496384", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6937468737587445760", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6937468737587445760,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6937468737587445760,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6937468736660496384", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "rinEtpuOYoYTPQCsrA1Rhw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6937468737587445760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7810255041820045849", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 546, + "fileIdentifyingUrlPathSegment": "800/0/1676132279067?e=1677240000&v=beta&t=iwzgOv77qBeua0jmkLl9J_GbiiScIJv-B-Hxk_SwwWw", + "expiresAt": 1677240000000, + "height": 466 + }, + { + "width": 546, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676132279067?e=1677240000&v=beta&t=KtS9lW4yxvY_9y6-8_ycL0P72YzmMNi1AkeEOCJrOSY", + "expiresAt": 1677240000000, + "height": 466 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676132279067?e=1677240000&v=beta&t=blk9m1flMMzc8DJMCgv-sOJ5ZCy11Sjy2uLbqvG16EU", + "expiresAt": 1677240000000, + "height": 136 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676132279068?e=1677240000&v=beta&t=irWhOkKWef0jHZHD8vC1MWM7vvcG0qaexx4HWjPKXCE", + "expiresAt": 1677240000000, + "height": 409 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFP3pLbLOmY0Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.8534798534798534 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7810255041820045849)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7810255041820045849)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 13 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Une interview dans Ouest France en mai 2022 by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/interviews/une-interview-dans-ouest-france-en-mai-2022/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Une interview dans Ouest France en mai 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6937468736660496384,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Monde sans Fin, le Plan de transformation de l'\u00e9conomie fran\u00e7aise, Greta Thunberg, la formation du nouveau gouvernement, Macron, M\u00e9lenchon, l'Ukraine, l'urbanisme, l'emploi et la voiture (sans parler du reste) \u00e9taient au programme de cette interview de votre serviteur parue dans le quotidien lu dans le village d'Ast\u00e9rix (\u00e0 moins que ce ne soit le T\u00e9l\u00e9gramme de Brest peut-\u00eatre :) ).\n\nA en juger par le nombre de sollicitations re\u00e7ues r\u00e9cemment de la presse quotidienne r\u00e9gionale, il me semble que nous sommes en train de vivre une p\u00e9riode o\u00f9 beaucoup de certitudes sont en train de s'estomper, et o\u00f9 il faut trouver de nouveaux rep\u00e8res.\n\nLe covid et la guerre en Ukraine ont fait comprendre que l'avenir pouvait \u00eatre surprenant, et pas en bien, et les soubresauts du climat sont de plus en plus pr\u00e9sents dans les esprits. Ce genre de p\u00e9riode est \u00e0 la fois propice aux changements qui \u00e9taient souhaitables depuis longtemps... et aux actions qui vont en fait en rajouter \u00e0 nos peines en esp\u00e9rant pourtant r\u00e9gler des probl\u00e8mes urgents (n'oublions pas que l'Enfer est parfois pav\u00e9 de bonnes intentions !). \n\nPour se pr\u00e9munir au mieux contre la seconde \u00e9ventualit\u00e9, un des \"rem\u00e8des\" est de bien comprendre la situation de d\u00e9part. Je n'ai pas mentionn\u00e9 dans cette interview le besoin de formation qui me semble indispensable pour le nouveau gouvernement (qui, d'ici aux l\u00e9gislatives, est parfaitement disponible puisqu'il n'a rien de vital \u00e0 faire). Mais si j'ai un regret c'est que j'aurais du !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6937468736660496384,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6937468737587445760,urn:li:activity:6937468737587445760,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 52, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6937468737587445760,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6937468737587445760,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6937468737587445760", + "threadId": "activity:6937468737587445760", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6937468737587445760", + "urn": "urn:li:activity:6937468737587445760", + "numComments": 70, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6937468737587445760", + "reactionTypeCounts": [ + { + "count": 861, + "reactionType": "LIKE" + }, + { + "count": 31, + "reactionType": "PRAISE" + }, + { + "count": 29, + "reactionType": "MAYBE" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "INTEREST" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6937468737587445760", + "numLikes": 961, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6937468737587445760", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 961, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6936945676077383680,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6936945676077383680", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6936945676077383680)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6936945676077383680)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_r%C3%A9viser-le-capitalisme-activity-6936945676077383680-hZUL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6936945674995273729", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6936945676077383680", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6936945676077383680,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6936945676077383680,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6936945674995273729", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "2tUlIBOelmTYqhANdFeB9Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6936945676077383680,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8955183685341276913", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676021257681?e=1677240000&v=beta&t=767WJEu5yzXVOBijDXRsXarfBJKml91l0AB7hgHnB1U", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676021257681?e=1677240000&v=beta&t=OCRHCj31HlSQiw5OL-97wfoK2IAw6ZfcnKAj0a5Zkx4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676021257681?e=1677240000&v=beta&t=PuWlvyIgPaX1k9lh0Oe8PDxvTdN-zkUNLcOk1JKihFM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676021257681?e=1677240000&v=beta&t=juGYykj8EJp626Z1VSg_r88tLpoX9NbC4XU9LXOwme4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQG3ZUFfB9FN6A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8955183685341276913)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8955183685341276913)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: R\u00e9viser le capitalisme by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/livres/reviser-le-capitalisme-1409772" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "R\u00e9viser le capitalisme" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6936945674995273729,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 326, + "length": 13, + "miniProfile": { + "firstName": "Alessio", + "lastName": "Terzi", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAARmwecB8mTl2tzPabKrvY5t0-SDJLnOc84", + "occupation": "Author | Economist | Lecturer", + "objectUrn": "urn:li:member:73843175", + "entityUrn": "urn:li:fs_miniProfile:ACoAAARmwecB8mTl2tzPabKrvY5t0-SDJLnOc84", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1653325664146?e=1681948800&v=beta&t=AYFZ4px_TNeqwm4stAipqwKrhkQixzI0pVesJWDc2JE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1653325664146?e=1681948800&v=beta&t=7kdHOLYxhIzAivZQJnMgHmDaDUSsb3HEQyi_xS6SCUc", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQFU-p_NppWeAw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "alessio-terzi-39b89120", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516903982462?e=1681948800&v=beta&t=Y5ME7Yw1BNmZfv9gJq3OIWu6aQ5u5Dq39lvRIr3Q2bU", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516903982462?e=1681948800&v=beta&t=DR92UNg3p_6WqrQmGlgl7dJYCW4LNx5nrvKCGpWBMEw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516903982462?e=1681948800&v=beta&t=LW5s7ZvnhX9b7kut_bkRh4vSmwg0NW5_y55pOf54R8w", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516903982462?e=1681948800&v=beta&t=MnuJGu3w-ymHv_xsnAHWYqjteDN791gS9DEHJCj2L3s", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGOno6XJl2kqA/profile-displayphoto-shrink_" + } + }, + "trackingId": "SIliIEHAR+iF95bx4EaMag==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 349, + "length": 12, + "miniProfile": { + "firstName": "Julien", + "lastName": "Damon", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAWGNPQBewKq3g20aM-SSdO1KcMn1SSf4xw", + "occupation": "Enseignant essayiste chroniqueur", + "objectUrn": "urn:li:member:92681460", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAWGNPQBewKq3g20aM-SSdO1KcMn1SSf4xw", + "publicIdentifier": "julien-damon-13005727", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1606065335038?e=1681948800&v=beta&t=lFqX6vev519gDp3rVWUwohVYbAGpb14IvT-voiCvTl0", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1606065335038?e=1681948800&v=beta&t=hBiuu7ZlbExX3TWnbfDOOD6u2ln645rniW1vC4LrG5s", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1606065335038?e=1681948800&v=beta&t=1R8ckpsSmeAbWf7YRm7zsUbkqFWQH1Uk-qB5CtoZCQU", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1606065335038?e=1681948800&v=beta&t=sGs9VFrPwgfg3oS0sp2Pj-zhpwhO1y0wz5M5B5-dwkI", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGwPBHcT9S53Q/profile-displayphoto-shrink_" + } + }, + "trackingId": "miJNHPI5RPWtwNMhnLi5hA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 540, + "length": 13, + "miniProfile": { + "firstName": "Daniel", + "lastName": "FORTIN", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABbh9kIB_zIM9KQXEgd3O4b2jP4yy0OhjEs", + "occupation": "R\u00e9dacteur en Chef at Les Echos", + "objectUrn": "urn:li:member:383907394", + "entityUrn": "urn:li:fs_miniProfile:ACoAABbh9kIB_zIM9KQXEgd3O4b2jP4yy0OhjEs", + "publicIdentifier": "daniel-fortin-76a6a0a8", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517505720653?e=1681948800&v=beta&t=0mYW2lF7OfRBEL4PJ4dUxAKCuqjzDj5mqXQ45jMr5yA", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517505720653?e=1681948800&v=beta&t=pHlQBInICaSZHje_9bKc5QR4_UFylnb-Kew2YXVjsIA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517505720653?e=1681948800&v=beta&t=PdrBh6KgjPXOWtqP7A9cWNn387XMa3CNTiJqYW-Bl5I", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517505720653?e=1681948800&v=beta&t=uCI86MBdqeNhlPEbvNgFWRN1H_tXKdfNX4NBxUD0JCY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQEVUafo85PUDA/profile-displayphoto-shrink_" + } + }, + "trackingId": "YfKAetM/RyWLnKKLtE6dUw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Les Echos font une pouss\u00e9e de croissance verte. Dans l'\u00e9dition de Vendredi dernier, 2 recensions de livres revendiquent que croissance et environnement pourront \u00eatre concili\u00e9s \u00e0 l'avenir. Dans la critique du livre au titre explicite \"Growth for Good. Reshaping Capitalism to Save Humanity from Climate Catastrophe\", \u00e9crit par Alessio Terzi en 2022, Julien Damon \u00e9crit \"Le capitalisme devient (...) de plus en plus immat\u00e9riel et, potentiellement, de plus en plus favorable \u00e0 l'environnement\".\n\nJuste \u00e0 c\u00f4t\u00e9 (https://cutt.ly/SJozG1q ), c\u2019est Daniel FORTIN qui, \u00e9voquant un ouvrage de Guillaume Poitrinal intitul\u00e9 \"Pour en finir avec l'Apocalypse, Une \u00e9cologie de l\u2019action\", \u00e9crit \"Un livre choc qui d\u00e9construit les fausses solutions militantes et propose un vrai chemin pour affronter les d\u00e9fis environnementaux\" puis \"H\u00e9riss\u00e9 par la d\u00e9croissance (...)\" avant de reprendre clairement \u00e0 son compte la phrase \"En abandonnant la consommation, on appauvrit tout le monde. Mais surtout, on renonce au pouvoir de mieux consommer, et donc \u00e0 l'influence que l'on peut avoir sur l'\u00e9conomie mondialis\u00e9e qui nous entoure\".\n\nOn pourrait se dire qu'il est normal que les milieux d'affaires souhaitent la croissance, en m\u00eame temps que les individus qui les composent peuvent avoir envie (pas toujours ! Parfois ils pensent aussi que ca ne va pas vraiment les concerner) que l'on r\u00e9solve nos probl\u00e8mes d'environnement. Mais cette position est en fait plus la r\u00e8gle que l'exception. Les Nations Unies, par exemple, sont parfaitement raccord avec les deux articles des Echos. \n\nEn effet, dans les 17 Objectifs du D\u00e9veloppement Durable, le N\u00b0 8 vise la croissance, le N\u00b09 le d\u00e9veloppement de l'Industrie, et le N\u00b0 12 la consommation et la production (certes \"responsables\" !), pendant que le N\u00b0 13 demande une r\u00e9solution du probl\u00e8me climatique et le 6 de l'eau pure. Et quand on regarde de pr\u00e8s, on se rend malheureusement compte tout cela forme un ensemble sans aucune coh\u00e9rence (https://cutt.ly/KJozOSV ).\n\nUn groupe d'universitaires (avec quelques pi\u00e8ces rapport\u00e9es comme Yves Cochet !) vient m\u00eame de proposer que l'on abandonne ces ODD ! https://cutt.ly/CJozEgh.\n\nDe dangereux anticapitalistes, diront certains. Voire. Les chercheurs au MIT qui ont \u00e9crit The Limits to Growth n'ont pas, \u00e0 ma connaissance, pris position contre le grand capital. Ils ont juste correctement d\u00e9crit un syst\u00e8me productif sur le plan physique (https://cutt.ly/sJocCt1 ), et compris que les prix pass\u00e9s ne donnaient pas toute l'information sur les limites futures. \n\nCela n'a pas emp\u00each\u00e9 l'article 3 du trait\u00e9 de Lisbonne (la \"consitution europ\u00e9enne\") de mentionner noir sur blanc que l'Union vise la croissance (https://cutt.ly/jJoxypF ), et le terme \"green growth\" figure partout dans les textes europ\u00e9ens. \n\nH\u00e9las, nos r\u00eaves devront toujours c\u00e9der le pas devant les limites physiques de ce monde. Comme dans nos vies personnelles, il vaut mieux accepter les r\u00e9alit\u00e9s et s'organiser en cons\u00e9quence plut\u00f4t que de buter durement dessus..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6936945674995273729,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6936945676077383680,urn:li:activity:6936945676077383680,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6936945676077383680,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6936945676077383680,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6936945676077383680", + "threadId": "activity:6936945676077383680", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6936945676077383680", + "urn": "urn:li:activity:6936945676077383680", + "numComments": 58, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6936945676077383680", + "reactionTypeCounts": [ + { + "count": 775, + "reactionType": "LIKE" + }, + { + "count": 45, + "reactionType": "MAYBE" + }, + { + "count": 37, + "reactionType": "PRAISE" + }, + { + "count": 29, + "reactionType": "INTEREST" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6936945676077383680", + "numLikes": 903, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6936945676077383680", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 903, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6936717917715636225,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6936717917715636225", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6936717917715636225)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6936717917715636225)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_the-banks-collapsed-in-2008-and-our-food-activity-6936717917715636225-wuOi?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6936717917036134400", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6936717917715636225", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6936717917715636225,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6936717917715636225,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6936717917036134400", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "g6SDOjd2nrXLj8v1Zz1vEg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6936717917715636225,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9060454030905120721", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676147024792?e=1677240000&v=beta&t=RZKDOyyryDuObSRhXKZ7jHWCBib9UKSMKa7ImJnTg9c", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676147024792?e=1677240000&v=beta&t=BUjTwrTmhwd0LBYaBKGmdjZ8PZe2DgKR3OD98v8wkEE", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676147024792?e=1677240000&v=beta&t=CQwos0zAM-vjsOWkZ3i1SfOq68G67JQGXIlz5bIaGo8", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676147024793?e=1677240000&v=beta&t=Ro5lL3-32_SJEUGkPBHQYcdxk7TJxAeB_onAGFzqsn0", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFTQYClY-y04Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9060454030905120721)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9060454030905120721)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: The banks collapsed in 2008 \u2013 and our food system is about to do the same | George Monbiot by amp-theguardian-com.cdn.ampproject.org", + "actionTarget": "https://amp-theguardian-com.cdn.ampproject.org/c/s/amp.theguardian.com/commentisfree/2022/may/19/banks-collapsed-in-2008-food-system-same-producers-regulators" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "The banks collapsed in 2008 \u2013 and our food system is about to do the same | George Monbiot" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6936717917036134400,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "George Monbiot n'est pas connu pour dire souvent des choses gaies ou rassurantes. Mais il dit souvent des choses qui nous secouent de mani\u00e8re pertinente.\n\nDans cette chronique r\u00e9cemment publi\u00e9e dans le Guardian, l'auteur pointe du doigt un point important concernant notre alimentation : comme beaucoup d'autres productions, cette derni\u00e8re a \u00e9t\u00e9 mondialis\u00e9e, et ce qui \u00e9tait un avantage dans le pass\u00e9 va se retourner contre nous \u00e0 l'avenir. Les pays se sont sp\u00e9cialis\u00e9s (fruits et l\u00e9gumes ici, c\u00e9r\u00e9ales l\u00e0, \u00e9levage ailleurs) et les r\u00e9gions se sont sp\u00e9cialis\u00e9es au sein des pays (en France on le voit bien). \n\nC'est l'organisation qui est optimale dans le monde infini, o\u00f9 il y a pl\u00e9thore de p\u00e9trole pour assurer le transport entre les divers maillons du syst\u00e8me agricole et agroalimentaire (cultures, transformation, \u00e9levage, pr\u00e9paration, distribution, consommation). C'est aussi l'organisation optimale avec un climat stable, qui permet de rester longtemps sur les m\u00eames cultures et donc d'en perfectionner \u00e0 l'infini les modalit\u00e9s.\n\nL'ensemble est alors r\u00e9gul\u00e9 par le libre \u00e9change et des prix de march\u00e9 internationaux, qui forcent les pays adh\u00e9rant au syst\u00e8me \u00e0 se sp\u00e9cialiser dans les seules production pour lesquelles ils sont comp\u00e9titifs en d\u00e9laissant le reste.\n\nMais George Monbiot, en s'appuyant sur de la litt\u00e9rature scientifique traitant du sujet, pointe la fragilit\u00e9 du syst\u00e8me en univers contraint. Comme pour les m\u00e9dicaments au moment du covid, l'\u00e9clatement des syst\u00e8mes productifs de nourriture entre \u00e9tapes tr\u00e8s sp\u00e9cialis\u00e9es distantes les unes des autres cr\u00e9e une vuln\u00e9rabilit\u00e9 accrue lorsqu'un maillon de la chaine fait d\u00e9faut.\n\nMonbiot souligne que le syst\u00e8me mondialis\u00e9 est devenu impossible \u00e0 comprendre dans sa globalit\u00e9 parce qu'il y a d\u00e9sormais trop d'interactions, exactement comme personne n'avait une vue globale du syst\u00e8me financier en 2008 et des enchainement en cascade pouvant y prendre place (je ne sais pas si c'est beaucoup mieux aujourd'hui !). De ce fait il en r\u00e9sulte une grande difficult\u00e9 \u00e0 \"consolider le syst\u00e8me\" dans son \u00e9tat actuel. \n\nMonbiot plaide en conclusion pour une action qui figure aussi dans le volet agriculture du plan de transformation de l'\u00e9conomie fran\u00e7aise : il faut \"d\u00e9-sp\u00e9cialiser\" les pays et r\u00e9gions agricoles. Cela fera un syst\u00e8me peut-\u00eatre moins productif quand tout va bien, mais beaucoup plus r\u00e9silient quand ca commence \u00e0 aller mal. Et comme la probabilit\u00e9 que \"tout aille bien\" pour un syst\u00e8me mondialis\u00e9 bas\u00e9 sur des grandes distances et un climat stable va diminuer avec le temps, on sait ce qui reste \u00e0 faire !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6936717917036134400,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6936717917715636225,urn:li:activity:6936717917715636225,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 108, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6936717917715636225,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6936717917715636225,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6936717917715636225", + "threadId": "activity:6936717917715636225", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6936717917715636225", + "urn": "urn:li:activity:6936717917715636225", + "numComments": 149, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6936717917715636225", + "reactionTypeCounts": [ + { + "count": 3206, + "reactionType": "LIKE" + }, + { + "count": 473, + "reactionType": "INTEREST" + }, + { + "count": 390, + "reactionType": "MAYBE" + }, + { + "count": 66, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 21, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6936717917715636225", + "numLikes": 4179, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6936717917715636225", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4179, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6936259044647051264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6936259044647051264", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6936259044647051264)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6936259044647051264)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_environnement-pourquoi-le-d%C3%A9fi-que-doit-activity-6936259044647051264-Vw3y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6936259043678162945", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6936259044647051264", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6936259044647051264,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6936259044647051264,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6936259043678162945", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "ijIXJ4duD39WZo1kYdvpeg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6936259044647051264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8364321368102501112", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676049058020?e=1677240000&v=beta&t=aDg3c3oPK3n8sRvQ4ElnDx_fAI5nFXDlVA5qTMefdPY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676049058020?e=1677240000&v=beta&t=i3qepH4J3B1iwzh56Ny3GVY1U8lO5Wfh-g2r_ih7mdY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676049058020?e=1677240000&v=beta&t=IgrjGM9M-8UqJanrcEWmg6msOgYySpMf3v4oiraUQao", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676049058020?e=1677240000&v=beta&t=GMUw62jNnkJlkjI5KbK-0di0vIcDptXGOwAzQQNVOQk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQGtxRWwPI_Y6A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8364321368102501112)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8364321368102501112)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Environnement : pourquoi le d\u00e9fi que doit relever le gouvernement est titanesque by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900158512-environnement-pourquoi-le-defi-que-doit-relever-le-gouvernement-est-titanesque" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Environnement : pourquoi le d\u00e9fi que doit relever le gouvernement est titanesque" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6936259043678162945,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 951, + "length": 20, + "miniProfile": { + "firstName": "Am\u00e9lie ", + "lastName": "de Montchalin", + "dashEntityUrn": "urn:li:fsd_profile:ACoAADLHAz0B7Fn9csiCdL2xxtvr4_fAY6_bejI", + "occupation": "Repr\u00e9sentante permanente de la France aupr\u00e8s de l\u2019OCDE.", + "objectUrn": "urn:li:member:851903293", + "entityUrn": "urn:li:fs_miniProfile:ACoAADLHAz0B7Fn9csiCdL2xxtvr4_fAY6_bejI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1669215113634?e=1681948800&v=beta&t=WfBu2ngbHQJ5C6Z79frdC_rUuxQsiaOFhhgqIkZPQ_A", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1669215113634?e=1681948800&v=beta&t=yUHDG0BmKf074p7tFvZscH5KEkJ-HP-cZAcb3jfbDhA", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQHMx4BA4NitjQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "am\u00e9lie-de-montchalin-7113731b9", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1656944270280?e=1681948800&v=beta&t=rCIEIC_H3VLQnqM3-geFMIddYVH_GRGFQ9I9iBjCLlM", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1656944270280?e=1681948800&v=beta&t=n0lgGZ4_8XEGETnAn0Dl063CF2Vy3VY61bS0ayw8kEA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1656944270280?e=1681948800&v=beta&t=zmwKt1KLkf_baV5S9wPK3orYh-SOR2MsSZIVWlW3Zlk", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1656944270280?e=1681948800&v=beta&t=_MaCi81LctNAmxmtmepfPUIGu23zfkMxD2I2hV0C8BA", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFhlGNf9O_5kQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "cAm3Bq/2QC+EJ60lAPdEBA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2138, + "length": 15, + "miniProfile": { + "firstName": "Olivier", + "lastName": "Dussopt", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAC-oaqYBmWj1_Bq8PjnLKmbQHLhUwJGrD4s", + "occupation": "Ministre du Travail, du Plein Emploi et de l'Insertion", + "objectUrn": "urn:li:member:799566502", + "entityUrn": "urn:li:fs_miniProfile:ACoAAC-oaqYBmWj1_Bq8PjnLKmbQHLhUwJGrD4s", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1666551858405?e=1681948800&v=beta&t=QOBWvbCK-Uixz7_q_oqM3MY0hvqUPZzB64dHmAN8-4c", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1666551858405?e=1681948800&v=beta&t=h6ULzCKpWlpKrzBnvTt1kz9Rep1CN6fgiWUJeYsMCXo", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQEOeTQ0RHbNDA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "olivier-dussopt-11a9341a3", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629827124208?e=1681948800&v=beta&t=VH0qkyR3zf0AYw2ZvKWg4XU9UUqNf6GHz_w4b1ickZw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629827124208?e=1681948800&v=beta&t=0kv6YmM_KazB0w3gaDJNfmk1CB-JEAIzmHzlrikku10", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629827124208?e=1681948800&v=beta&t=noVaweUX3EsbKeABCez7v5ZSX4cDLpLtAqvGsAJQosE", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1629827124208?e=1681948800&v=beta&t=H_tCWHnjKyRT_MxStDfZQn8VGtGvK3_zxtO0ma_n87I", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEo1DMWfO1Mig/profile-displayphoto-shrink_" + } + }, + "trackingId": "qs5iY37cRHClarH6YHP6cw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans le nouveau gouvernement, il y a un ministre qui aura une feuille de route particuli\u00e8rement ambitieuse si Macron est s\u00e9rieux sur sa volont\u00e9 de faire baisser les \u00e9missions fran\u00e7aises (en empreinte carbone \u00e9videmment) de 5% par an (ce qui est en ligne avec l'effort mondial correspondant \u00e0 une limitation de la hausse \u00e0 2\u00b0C) : celui en charge de l'emploi.\n\nLe travail, c'est un sujet majeur pour nous tou(te)s. Une des r\u00e9ticences \u00e0 engager la \"transition\" dans la population vient certes des habitudes de consommation, mais une autre vient de l'incertitude sur l'emploi si on enclenche les grandes manoeuvres (d'o\u00f9 l'imp\u00e9rieure n\u00e9cessit\u00e9 de planifier, ce qui am\u00e8ne de la visibilit\u00e9 donc de la s\u00e9curit\u00e9 sur cet aspect des choses).\n\nC'est pour cela que l'emploi a fait l'objet d'un d\u00e9but d'analyse approfondie - sur quelques secteurs - dans le plan de transformation de l'\u00e9conomie fran\u00e7aise (le PTEF) : https://lnkd.in/eZ9STp7Z\n\nContrairement \u00e0 ce qu'Am\u00e9lie de Montchalin affirmait r\u00e9cemment (\u00e0 3'45 sur cette compilation : https://lnkd.in/epPRuRdy ), d\u00e9carboner \u00e0 la bonne vitesse est une r\u00e9volution. C'est aller partout et tout le temps \u00e0 rebours de ce qui s'est pass\u00e9 quand la r\u00e9volution industrielle (qui en \u00e9tait bien une, de r\u00e9volution !) a carbon\u00e9 partout l'\u00e9conomie, et d\u00e9tricoter le syst\u00e8me plus rapidement (en 30 ans) qu'il n'a \u00e9t\u00e9 tricot\u00e9 (en un si\u00e8cle en gros).\n\nCela ne se fera donc pas sans toucher, partout et tout le temps, \u00e0 l'emploi et aux comp\u00e9tences. Certains emplois n'auront plus de pertinence, d'autres doivent se renforcer ou appara\u00eetre, et tous les emplois existants devront s'exercer diff\u00e9remment, ce qui demande un effort massif de formation continue et de reconversion.\n\nSi Macron est d\u00e9sormais un peu plus s\u00e9rieux sur sa volont\u00e9 de faire de la \"planification \u00e9cologique\" qu'il ne l'a \u00e9t\u00e9 lors de \"make the planet great again\" (qui aurait d\u00e9j\u00e0 du enclencher une planification), l'Etat va donc devoir engager la transformation de l'emploi avec un accompagnement sans pr\u00e9c\u00e9dent - un peu comme lorsque l'\u00e9conomie am\u00e9ricaine s'est reconvertie pour la guerre en quelques ann\u00e9es en 1942 - et le ministre en charge - Olivier Dussopt donc - doit en avoir conscience. \n\nSigne int\u00e9ressant : les responsables syndicaux avec lesquels nous (The Shift Project) en avons discut\u00e9 dans le cadre de l'\u00e9laboration du PTEF avaient parfaitement conscience de cet aspect des choses (on nous a m\u00eame dit que nous \u00e9tions trop timor\u00e9s !). Dans les secteurs que nous avons regard\u00e9s, 25% de l'emploi devrait appara\u00eetre ou dispara\u00eetre - et tous le reste se transformer - en un peu plus de 25 ans. \n\nEt dans les autres secteurs il est probable que les mouvements seraient de m\u00eame ampleur. Je ne sais pas si mes 3 minutes r\u00e9glementaires sur RTL seront utiles pour attirer un peu plus l'attention du nouvel ex\u00e9cutif sur cette question, mais il serait temps de regarder cela de tr\u00e8s pr\u00e8s !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6936259043678162945,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6936259044647051264,urn:li:activity:6936259044647051264,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 46, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6936259044647051264,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6936259044647051264,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6936259044647051264", + "threadId": "activity:6936259044647051264", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6936259044647051264", + "urn": "urn:li:activity:6936259044647051264", + "numComments": 118, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6936259044647051264", + "reactionTypeCounts": [ + { + "count": 1109, + "reactionType": "LIKE" + }, + { + "count": 61, + "reactionType": "INTEREST" + }, + { + "count": 56, + "reactionType": "MAYBE" + }, + { + "count": 24, + "reactionType": "APPRECIATION" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6936259044647051264", + "numLikes": 1277, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6936259044647051264", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1277, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6935878966234759168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6935878966234759168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6935878966234759168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6935878966234759168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_vestager-avec-l%C3%A9nergie-russe-leurope-activity-6935878966234759168-Ytkh?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6935878965106515968", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6935878966234759168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6935878966234759168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6935878966234759168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6935878965106515968", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "0cGsVDxSod1YPuEIhF0CTQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6935878966234759168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8452830752619708327", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675769267623?e=1677240000&v=beta&t=mjXnsQMk45z-57ttSPutAyUPhEqasdVNZn8h_f4GlhI", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675769267623?e=1677240000&v=beta&t=wbd2bKnEELR_ydK42qMjXRGp93ODQsu7azU5U6g3LhY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675769267623?e=1677240000&v=beta&t=1N8tjFnRi_13MqQsw0WchZRhnOjr2WGv4l8G443txJ8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675769267623?e=1677240000&v=beta&t=ypRPmbQMqiQhI5OI3zBhf4RqMm1NqpHnQTUdYcwmNaM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFyxcK5tPgysA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8452830752619708327)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8452830752619708327)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Vestager : \u00ab Avec l'\u00e9nergie russe, l'Europe n'a pas \u00e9t\u00e9 na\u00efve, elle a \u00e9t\u00e9 cupide \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/avec-lenergie-russe-leurope-na-pas-ete-naive-elle-a-ete-cupide-1409154" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Vestager : \u00ab\u00a0Avec l'\u00e9nergie russe, l'Europe n'a pas \u00e9t\u00e9 na\u00efve, elle a \u00e9t\u00e9 cupide\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6935878965106515968,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Margrethe Vestager, commissaire europ\u00e9enne \u00e0 la concurrence, a donn\u00e9 une interview \u00e0 plusieurs journaux europ\u00e9ens dont les Echos.\n\nCa d\u00e9marre bien : elle explique que la course aux plus bas prix - ce que la concurrence doit amener, je rappelle - augmente l'ins\u00e9curit\u00e9 pour l'avenir. C'est au nom de l'approvisionnement au moindre cout que nous avons d\u00e9localis\u00e9 et allong\u00e9 les chaines de valeur, cr\u00e9\u00e9 des d\u00e9pendances parfois majeures \u00e0 des pays ou des entreprises \"lointains\" qui peuvent faire d\u00e9faut sans trop pr\u00e9venir.\n\nDans la foul\u00e9e, Vestager consid\u00e8re que nous avons \u00e9t\u00e9 \"cupides\" en achetant du gaz russe. Cela se discute : nous avons import\u00e9 ce gaz faute de production europ\u00e9enne suffisante, et la \"physique du gaz\" fait que c'est plus facile d'acheminer ce gaz par gazoduc de pays voisins que par m\u00e9thanier sous forme liquide.\n\nEnsuite, il n'y a pas que la cupidit\u00e9 qui a jou\u00e9. Il y a quelques d\u00e9cennies, l'Europe a fait le choix du gaz contre le nucl\u00e9aire (ce qui ne rel\u00e8ve pas de la cupidit\u00e9) dans l'\u00e9lectricit\u00e9, et le choix des chaudi\u00e8res \u00e0 gaz contre les pompes \u00e0 chaleur (ce qui rel\u00e8ve un peu de la cupidit\u00e9 mais pas que) dans le chauffage. \n\nVestager constate ensuite que pour les m\u00e9taux de la transition nous sommes quasi-totalement d\u00e9pendants de l'\u00e9tranger. Il faut accepter de payer pour la s\u00e9curit\u00e9 dit-elle. Mais payer cher ne cr\u00e9e pas de minerai de cuivre ou de fer sur le continent europ\u00e9en... et donc il faudra quand m\u00eame choisir de qui on d\u00e9pend. Plus on aura besoin de m\u00e9tal en volume, plus nous serons \u00e0 risque.\n\nEst-ce que \"Madame concurrence\" commencerait \u00e0 envisager moins de concurrence et plus de planification ? Pas si vite ! Car elle d\u00e9clare \"Nous ne devons surtout pas renationaliser le march\u00e9 europ\u00e9en de l'\u00e9lectricit\u00e9, cela m\u00e8nerait tout simplement \u00e0 des black-out\u00a0!\".\n\nOn ne va quand m\u00eame pas adapter notre syst\u00e8me de pens\u00e9e aux faits :) Car c'est plut\u00f4t la \"lib\u00e9ralisation\" qui cr\u00e9e des risques de black-out... La \"lib\u00e9ralisation\" a d\u00e9courag\u00e9 le nucl\u00e9aire - compact, bas carbone et pilotable - \u00e0 cause de l'impr\u00e9visibilit\u00e9 des prix de march\u00e9 et de la tr\u00e8s forte hausse du cout du capital (voir la sensibilit\u00e9 du cout du MWh au cout du capital sur https://lnkd.in/eGwQXF_A ), a retir\u00e9 des marges aux d\u00e9tenteurs des centrales - qui investissent - pour la donner \u00e0 des distributeurs qui n'investissent pas, a demand\u00e9 partout des subventions en plus des prix de march\u00e9 justement pour permettre l'investissement, a cr\u00e9\u00e9 des offres \"d'\u00e9lectricit\u00e9 verte\" qui n'ont aucune existence physique... et Vestager explique sans rire que le syst\u00e8me est devenu meilleur qu'avant ? \n\nAvant \"march\u00e9 partout\" et antinucl\u00e9arisme infond\u00e9, le pays qui avait le syst\u00e8me \u00e9lectrique le plus performant d'Europe sans \"don de la nature\" (les barrages permis par les montagnes) \u00e9tait la France et son op\u00e9rateur public. Qu'avons nous gagn\u00e9 \u00e0 tout casser ? Juste du temps perdu alors que nous sommes dans une course contre la montre. Nous n'avons h\u00e9las pas fini de payer cette illusion." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6935878965106515968,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6935878966234759168,urn:li:activity:6935878966234759168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 72, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6935878966234759168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6935878966234759168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6935878966234759168", + "threadId": "activity:6935878966234759168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6935878966234759168", + "urn": "urn:li:activity:6935878966234759168", + "numComments": 137, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6935878966234759168", + "reactionTypeCounts": [ + { + "count": 1236, + "reactionType": "LIKE" + }, + { + "count": 137, + "reactionType": "MAYBE" + }, + { + "count": 130, + "reactionType": "INTEREST" + }, + { + "count": 65, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6935878966234759168", + "numLikes": 1594, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6935878966234759168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1594, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6935526042031800320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6935526042031800320", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6935526042031800320)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6935526042031800320)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_blackrock-est-le-plus-gros-gestionnaire-dactif-activity-6935526042031800320-O8n7?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6935526040865808386", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6935526042031800320", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6935526042031800320,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6935526042031800320,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6935526040865808386", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "UiwkpVr8V+7o75DaYhqvqA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6935526042031800320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQFYRQXqjk1kHQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQFYRQXqjk1kHQ", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1653558261113?e=1679529600&v=beta&t=dkNo3zWnEj89GRY-vXk7dPnIVcihjBWHG1q5Pev41sE", + "expiresAt": 1679529600000, + "height": 932 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1653558262761?e=1679529600&v=beta&t=SBRMJr-XmLQwAVK4BWcgs8VKKJdEVrOD7ZZOaP2RUBc", + "expiresAt": 1679529600000, + "height": 9 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1653558262761?e=1679529600&v=beta&t=ORNt_wxGorMDltlrop5CxFn2W6ycn_zdZ6y2Z6JoqSo", + "expiresAt": 1679529600000, + "height": 583 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1653558262761?e=1679529600&v=beta&t=P-4rimzxBPBLdZca0LOoEeop44J9KDrYxmDfIZwC4KQ", + "expiresAt": 1679529600000, + "height": 218 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1653558262761?e=1679529600&v=beta&t=U_7xJQIb_13a_YXcNHZfC23qzpnGhTBN6A7YqAA78aE", + "expiresAt": 1679529600000, + "height": 73 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1653558262761?e=1679529600&v=beta&t=xxyDtXmXk8dQZDgYpTifP8fZ7C7P3KcUkRR7TNDcj6w", + "expiresAt": 1679529600000, + "height": 364 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQFYRQXqjk1kHQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.455078125 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6935526040865808386,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Blackrock est le plus gros gestionnaire d'actif au monde. Cet acteur am\u00e9ricain collecte de l'\u00e9pargne (particuliers, entreprises, gouvernements...), et la \"place\" - en achetant des actions ou obligations d'entreprises ou d'\u00e9tats, ou des produits qui en sont d\u00e9riv\u00e9s - \"dans l'int\u00e9r\u00eat financier\" des \u00e9pargnants.\n\nBlackrock \u00e9tant tr\u00e8s gros, il est partout. D\u00e8s que vous allez regarder qui d\u00e9tient le capital d'une \"grosse\" entreprise cot\u00e9e (par exemple celles du CAC 40 en France) vous allez souvent y voir Blackrock avec 1% \u00b1 0,5% du capital.\n\nSur la page d'accueil du site de Blackrock France (image ci-dessous) il figure une affirmation qui laisse penser que Blackrock va \u00e0 la fois bien choisir les entreprises au regard de leurs performances climatiques, et \"bien\" voter aux assembl\u00e9es (puisque Blackrock y vote pour le compte de ses mandants).\n\nPour ce qui est du premier point, la r\u00e9alit\u00e9 est que quand vous \u00eates investis dans toute entreprise cot\u00e9e de grande taille, ce qui est in\u00e9vitable quand vous avez 10.000 milliards de dollars \u00e0 placer, vous n'\u00eates ni plus ni moins vert que l'\u00e9conomie mondiale dans son ensemble. Pour pouvoir se diff\u00e9rencier de \"la moyenne\", il faut rester petit par rapport \u00e0 la taille de l'\u00e9conomie (c'est vrai quelle que soit l'activit\u00e9).\n\nSur le second point, il faut lire le document que Blackrock vient de publier sur sa politique de vote aux r\u00e9solutions \"climat\" qui sont propos\u00e9es lors des assembl\u00e9es g\u00e9n\u00e9rales : https://lnkd.in/eteMCWJq\n\nIl y est en effet \u00e9crit noir sur blanc :\n- Sans exception, nos d\u00e9cisions sont guid\u00e9es par notre devoir fiduciaire d'agir pour l'int\u00e9r\u00eat \u00e9conomique de long terme de nos clients\n- [Blackrock]\u00a0note que de nombreuses propositions d'actionnaires li\u00e9es au climat qui seront soumises au vote en 2022 (...) peuvent ne pas promouvoir la valeur actionnariale \u00e0 long terme (sous-entendu \u00e0 ce moment on vote contre parce que notre premier crit\u00e8re est la valeur \u00e9conomique)\n- [Blackrock n'est pas susceptible] de soutenir les propositions d'actionnaires qui (...) demandent des changements dans la strat\u00e9gie ou le mod\u00e8le d'affaires d'une entreprise.\n\nOn ne saurait \u00eatre plus clair : on veut bien sauver la plan\u00e8te si ca ne signifie pas changer les entreprises ou gagner moins d'argent. Ne rien changer pour que tout change !\n\nCette \"franchise\" n'est pas isol\u00e9e dans le monde financier. R\u00e9cemment le responsable de l'investissement ISR d'HSBC a affirm\u00e9 que le risque financier du changement climatique \u00e9tait faible (donc inutile de se pr\u00e9occuper de climat) : https://lnkd.in/eFez3-Wa\n\nPourrait-il en \u00eatre autrement ? Pas simple : un acteur de la taille de Blackrock (ou HSBC) sera d\u00e9carbon\u00e9 le jour o\u00f9 l'\u00e9conomie mondiale le sera. Mais, compte tenu du fait que l'activit\u00e9 \u00e9conomique est aussi d\u00e9velopp\u00e9e que nos \u00e9missions de CO2, il n'est pas sur que Blackrock - ou HSBC - sera toujours aussi gros \u00e0 ce moment l\u00e0 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6935526040865808386,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6935526042031800320,urn:li:activity:6935526042031800320,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 83, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6935526042031800320,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6935526042031800320,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6935526042031800320", + "threadId": "activity:6935526042031800320", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6935526042031800320", + "urn": "urn:li:activity:6935526042031800320", + "numComments": 126, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6935526042031800320", + "reactionTypeCounts": [ + { + "count": 1594, + "reactionType": "LIKE" + }, + { + "count": 275, + "reactionType": "INTEREST" + }, + { + "count": 182, + "reactionType": "MAYBE" + }, + { + "count": 28, + "reactionType": "PRAISE" + }, + { + "count": 19, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6935526042031800320", + "numLikes": 2109, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6935526042031800320", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2109, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6934761413999525888,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6934761413999525888", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6934761413999525888)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6934761413999525888)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_printemps-du-shift-et-pourquoi-pas-une-activity-6934761413999525888-ep71?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6934761412770598912", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6934761413999525888", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6934761413999525888,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6934761413999525888,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6934761412770598912", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "sE8qRZY88O3yH4DoV2JWBA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6934761413999525888,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7673312447663837554", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675830379880?e=1677240000&v=beta&t=ZozNi0cdPYnyi6nJCLfBTxlX9UmjiOYrIStdjH-B240", + "expiresAt": 1677240000000, + "height": 271 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675830379880?e=1677240000&v=beta&t=5Sr6KSD6Z82k6tTxZgnMwvSbHf8UswywEdUC-o0e0yU", + "expiresAt": 1677240000000, + "height": 277 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675830379881?e=1677240000&v=beta&t=4K3PRGIrBQHZzciPa2iT0vkdaJCv1-Buju3TbPoD-GY", + "expiresAt": 1677240000000, + "height": 54 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675830379881?e=1677240000&v=beta&t=4FmWjHUZVuykv96LURJ2gxLZL4JSKQ1N-Dzo8idn8zE", + "expiresAt": 1677240000000, + "height": 163 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE24vCcAMU26A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7673312447663837554)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7673312447663837554)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Printemps du Shift : et pourquoi pas une intervention chez vous ? by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/printemps-du-shift-catalogue-interventions/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Printemps du Shift : et pourquoi pas une intervention chez vous ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6934761412770598912,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Demandez le programme ! En 2021 et d\u00e9but 2022, The Shift Project aura connu sa p\u00e9riode la plus prolifique si l'on en juge par le nombre de rapports et propositions qui ont \u00e9t\u00e9 publi\u00e9s. Mais quand l'ambition est de proposer du changement dans la soci\u00e9t\u00e9, produire des rapports ne suffit pas : il faut surtout faire en sorte que cette mati\u00e8re soit port\u00e9e \u00e0 la connaissance du plus grand nombre de personnes possibles.\n\nC'est pour cela que notre Think tank a cr\u00e9\u00e9 un \"catalogue\" regroupant toutes les interventions que nous pouvons proposer pour venir \u00e0 la rencontre \"du public\". Cette d\u00e9marche d'ouverture acc\u00e9l\u00e9r\u00e9e sur l'ext\u00e9rieur s'appelle le \"printemps du Shift\", et englobe l'Univershift\u00e9 qui prendra place fin juin (https://lnkd.in/ehnwuzmW ).\n\nVoici une liste non exhaustive de ce qui est propos\u00e9 sous forme de conf\u00e9rence :\n\n- Teach The Shift : expos\u00e9s p\u00e9dagogiques pour comprendre l'enjeu \u00e9nergie climat\n\n- Pr\u00e9sentation des derniers rapports du GIEC\n\n- Pr\u00e9sentation g\u00e9n\u00e9rale du PTEF : le Plan de transformation de l\u2019\u00e9conomie fran\u00e7aise\n\n- Propositions (et constats) concernant l'enseignement sup\u00e9rieur\n\n- Histoire et perspectives de production pour le p\u00e9trole et le gaz sous seule contrainte g\u00e9ologique\n\n- Comment approcher la question de la r\u00e9silience des territoires\n\n- Impact environnemental du num\u00e9rique, sobri\u00e9t\u00e9 num\u00e9rique\n\n- Empreinte carbone des pays\u00a0; mati\u00e8res premi\u00e8res ; \u00e9nergie-PIB\n\n- Place de l\u2019\u00e9lectricit\u00e9 nucl\u00e9aire dans le monde\n\nPr\u00e9sentation d'un chapitre du PTEF :\nEmploi\nA\u00e9rien\nIndustrie\u00a0(ciment, acier, chimie, manufacturi\u00e8re\u2026) et recyclage\nMobilit\u00e9 quotidienne\nMobilit\u00e9 longue distance\nIndustrie automobile\nFret\nLogement et r\u00e9novation \u00e9nerg\u00e9tique\nFinance\nCulture\u00a0: spectacle vivant, cin\u00e9ma, livre, arts visuels\nSant\u00e9\nAdministration publique\n\nTout cela est gratuit (par contre le pop corn n'est pas fourni). Pour chaque intervention propos\u00e9e il y a un mail de contact. Nous esp\u00e9rons que l'affirmation de \"planification \u00e9cologique\" de notre chef de l'Etat renouvel\u00e9 vous donnera envie d'en discuter plus en d\u00e9tail autour de propositions concr\u00e8tes. Vu de notre fen\u00eatre, c'est le but !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6934761412770598912,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6934761413999525888,urn:li:activity:6934761413999525888,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 53, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6934761413999525888,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6934761413999525888,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6934761413999525888", + "threadId": "activity:6934761413999525888", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6934761413999525888", + "urn": "urn:li:activity:6934761413999525888", + "numComments": 71, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6934761413999525888", + "reactionTypeCounts": [ + { + "count": 639, + "reactionType": "LIKE" + }, + { + "count": 82, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "INTEREST" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6934761413999525888", + "numLikes": 785, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6934761413999525888", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 785, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6934592235527110656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6934592235527110656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6934592235527110656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6934592235527110656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_davos-exp%C3%A9rimente-la-d%C3%A9croissance-activity-6934592235527110656-Adu3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6934592235019612160", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6934592235527110656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6934592235527110656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6934592235527110656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6934592235019612160", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "5hsi7nQOs07wOVevnSio/g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6934592235527110656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8663124217129536201", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675913605359?e=1677240000&v=beta&t=FkucYgiktw3tBikip1iraRolT_is1mZ2uqBUggwXhoM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675913605359?e=1677240000&v=beta&t=hSv49CKvB-Kscgq0fYV7AuweNFB_fNzUlbGg3FUA2iE", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675913605359?e=1677240000&v=beta&t=j_TO0DAnv1sPmX4ONnANbvzmAg7Ezj4oF-MJc5CZ4Hg", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675913605359?e=1677240000&v=beta&t=KUpnAay3TYAGf-aMSa5w088NYLra-Yx-j54Nv0nyay4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQF6WC-uqVTRAg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8663124217129536201)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8663124217129536201)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Davos exp\u00e9rimente la d\u00e9croissance by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/enjeux-internationaux/davos-experimente-la-decroissance-1408678" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Davos exp\u00e9rimente la d\u00e9croissance" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6934592235019612160,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est un clin d'oeil mais c'est rigolo. Le titre pourrait faire penser que l'on va parler sobri\u00e9t\u00e9 et contraction \u00e9nerg\u00e9tique \u00e0 Davos. Mais pas du tout : c'est juste le Forum lui-m\u00eame qui se contracte ! Moins de participant(e)s, voire beaucoup moins pour certains pays. Moins de repas, moins de stars....\n\nCe n'est au fond pas si \u00e9tonnant que cela. Davos est n\u00e9 avec la mondialisation. Et il est probable que ce Forum - ou l'essentiel de ce qu'il est - mourra avec la mondialisation. Entre covid et guerre en Ukraine, la mondialisation a connu un premier petit accroc. Mais ce ne sera pas le dernier : cette profusion de flux physiques sillonnant le globe est un enfant du p\u00e9trole.\n\nAvec moins de ce dernier, de gr\u00e9 ou de force, la mondialisation - du moins pour une tr\u00e8s large partie de ce qui la compose aujourd'hui - est donc appel\u00e9e aussi \u00e0 perdre de son \u00e9clat au fil du si\u00e8cle en cours. Cela aura des cons\u00e9quences jusque dans l'\u00e9v\u00e9nementiel !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6934592235019612160,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6934592235527110656,urn:li:activity:6934592235527110656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 17, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6934592235527110656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6934592235527110656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6934592235527110656", + "threadId": "activity:6934592235527110656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6934592235527110656", + "urn": "urn:li:activity:6934592235527110656", + "numComments": 17, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6934592235527110656", + "reactionTypeCounts": [ + { + "count": 265, + "reactionType": "LIKE" + }, + { + "count": 19, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6934592235527110656", + "numLikes": 304, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6934592235527110656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 304, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6934074703661678592,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6934074703661678592", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6934074703661678592)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6934074703661678592)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nouveau-gouvernement-quelle-place-pour-activity-6934074703661678592-OhK7?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6934074702927695872", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6934074703661678592", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6934074703661678592,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6934074703661678592,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6934074702927695872", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "6c2pNS5JW9dnR0JkMt9zWw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6934074703661678592,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8858436506230351219", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675740530213?e=1677240000&v=beta&t=vi3961dPQG8aw5yc3c5DWmJQvQrWKkZ-lRM7cu1GSIQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675740530213?e=1677240000&v=beta&t=LvjTIIA53B9eIcOOTrXWDA7hCBvWK1_zIiGmCoT6GEA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675740530214?e=1677240000&v=beta&t=RBDX7D5KLCgNWnLQblhc6hGmLQvHpLPvMyLmpBNKsyE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675740530214?e=1677240000&v=beta&t=qpYIn3z1Hc2giDYDEOzH4EDiNiJeV_8ZBZePe3lnf-A", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHZS5EG2BBjIQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8858436506230351219)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8858436506230351219)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nouveau gouvernement : quelle place pour l'\u00e9cologie ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900156540-nouveau-gouvernement-quelle-place-pour-l-ecologie" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nouveau gouvernement : quelle place pour l'\u00e9cologie ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6934074702927695872,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quand on a une id\u00e9e en t\u00eate, on ne l'a pas ailleurs, comme disait je ne sais plus qui. Puisqu'il vient d'\u00eatre form\u00e9, j'ai r\u00e9it\u00e9r\u00e9 - via ma chronique du Samedi matin sur RTL - \u00e0 l'adresse du nouveau gouvernement le souhait qui figurait dans la tribune r\u00e9cemment parue dans le JDD et appelant le nouveau gouvernement \u00e0 d\u00e9marrer son nouveau mandat par 20h de formation sur les enjeux \u00e9cologiques et \u00e9nerg\u00e9tiques, c'est \u00e0 dire passer 20 h de cours (ou d'ateliers comme la Fresque du Climat) \u00e0 apprendre un peu de physique, chimie et biologie \u00e9l\u00e9mentaires, parce que \"l'environnement\" c'est d'abord cela.\n\nEn ce qui me concerne, la satisfaction ou pas de cette demande sera un test, pour les raisons suivantes :\n\n- Il n'y a pas un poste minist\u00e9riel qui \u00e9chappe au sujet : la transition demande de g\u00e9rer diff\u00e9remment l'emploi, la formation, la fonction publique, la diplomatie, l'arm\u00e9e, les sports ou l'outre-mer, outre \u00e9videmment les transports, l'agriculture, le logement, l'am\u00e9nagement du territoire, et bien sur l'\u00e9conomie qui est la mani\u00e8re conventionnelle - mais erron\u00e9e - de repr\u00e9senter ce que nous faisons physiquement. \n\n- \u00e0 de rares exceptions pr\u00e8s peut-\u00eatre, le niveau de d\u00e9part des membres de ce gouvernement n'est pas suffisant pour leur permettre de bien comprendre le probl\u00e8me \u00e0 traiter. Tous les \u00e9changes que j'ai pu avoir avec des ministres au cours des ann\u00e9es \u00e9coul\u00e9es ont eu comme point commun le constat qu'ils n'avaient pas en t\u00eate le bon cahier des charges sur la question.\n\n- 20h, ce n'est rien sur la dur\u00e9e d'un mandat gouvernemental. Nous avons attendu bien plus de 20h pour avoir la composition du nouveau gouvernement. Que ce dernier ne \"travaille\" pas pendant 20h de plus ne va rien changer au destin du pays. Qu'ils fassent l'\u00e9conomie d'une formation essentielle pour comprendre dans quel cadre nous sommes va par contre changer (en mal) le destin du pays.\n\n- le contenu n'est pas tr\u00e8s compliqu\u00e9 \u00e0 \u00e9tablir. De mon c\u00f4t\u00e9 je peux en proposer 10, \u00e0 savoir les 4 premiers modules de mon cours \u00e0 Mines ParisTech : https://lnkd.in/dM7u2j7 Il faut y rajouter des bases sur la biodiversit\u00e9, les ressources m\u00e9talliques, une fresque du climat pour v\u00e9rifier qu'ils ont compris, un calcul d'empreinte carbone personnelle (au hasard https://www.myco2.fr/ ) pour leur faire toucher du doigt un cas concret de comptabilit\u00e9 carbone, et on doit y \u00eatre \u00e0 peu pr\u00e8s.\n\n- suivre un cours pour un(e) ministre n'est pas se d\u00e9shonorer. Si les 150 membres de la Convention Citoyenne pour le Climat ont commenc\u00e9 par l\u00e0, les \u00e9lecteurs ne vont pas critiquer le fait que les ministres proc\u00e8dent de m\u00eame, si ?\n\nEt donc, au risque de me r\u00e9p\u00e9ter, organiser cette formation - ou son absence - sera un bon test de v\u00e9rit\u00e9. Ne pas la faire - ou la faire au rabais, avec une dur\u00e9e trop courte et/ou un contenu inappropri\u00e9 juste destin\u00e9 \u00e0 donner le change \u00e0 la presse - donnera un tr\u00e8s mauvais signal : celui de l'amateurisme." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6934074702927695872,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6934074703661678592,urn:li:activity:6934074703661678592,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 203, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6934074703661678592,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6934074703661678592,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6934074703661678592", + "threadId": "activity:6934074703661678592", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6934074703661678592", + "urn": "urn:li:activity:6934074703661678592", + "numComments": 409, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6934074703661678592", + "reactionTypeCounts": [ + { + "count": 6323, + "reactionType": "LIKE" + }, + { + "count": 586, + "reactionType": "PRAISE" + }, + { + "count": 329, + "reactionType": "APPRECIATION" + }, + { + "count": 101, + "reactionType": "EMPATHY" + }, + { + "count": 56, + "reactionType": "MAYBE" + }, + { + "count": 38, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6934074703661678592", + "numLikes": 7433, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6934074703661678592", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7433, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6933697737582383105,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6933697737582383105", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6933697737582383105)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6933697737582383105)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-comment-repousser-la-fin-du-monde-activity-6933697737582383105-rGxg?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6933697736630263808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6933697737582383105", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6933697737582383105,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6933697737582383105,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6933697736630263808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "8PIYjqwTiXu18uDZh7767Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6933697737582383105,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7447620019422540694", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675680399979?e=1677240000&v=beta&t=N1BIH_ghjcJnJt5E577z7FMBW4GFbG5lMtstdn3OYb8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675680399980?e=1677240000&v=beta&t=ob1TsvAPSU-uOjcF5KUcOkBl2val_G61hALSIfno7cg", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675680399980?e=1677240000&v=beta&t=_pAv3YEqURvipLs99fbcMvZKVaj6bYABBhxn-7dm7Rg", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675680399980?e=1677240000&v=beta&t=fRx_FJX1kTu8HPE16ZJqDxY-g0rN4oWBJfKVvhg0xoU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE_c3NTaSmojg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7447620019422540694)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7447620019422540694)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: \u00ab Climat : comment repousser la fin du monde \u00bb \u2013 Quartier Libre avec Jean-Marc Jancovici [EXTRAIT] on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=HuXPmsKMeWk" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\ud83d\udc49 Pour voir l'\u00e9mission en entier, c'est ici ! https://qg.media/emission/climat-comment-repousser-la-fin-du-monde-quartier-libre-avec-jean-marc-jancovici/ Ce soir sur QG, Aude Lancelin re\u00e7oit\u00a0Jean-Marc Jancovici, inventeur du bilan carbone et membre..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "\u00ab Climat : comment repousser la fin du monde \u00bb \u2013 Quartier Libre avec Jean-Marc Jancovici [EXTRAIT]" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6933697736630263808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 176, + "length": 13, + "miniProfile": { + "firstName": "Aude", + "lastName": "Lancelin", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABudQlkBMbqIS0DESxMhqBUeUY7TWC-KmFg", + "occupation": "Journaliste et auteur, fondatrice QG le m\u00e9dia libre", + "objectUrn": "urn:li:member:463290969", + "entityUrn": "urn:li:fs_miniProfile:ACoAABudQlkBMbqIS0DESxMhqBUeUY7TWC-KmFg", + "publicIdentifier": "aude-lancelin-2491a410b", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1609324795832?e=1681948800&v=beta&t=n20A5Ye9-yxZxr214bJsL1A4M5lg335L4r_LNyhN9A8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1609324795832?e=1681948800&v=beta&t=84hzcC2nWTCmfnMcoDGn_XQTb8YKrcxZFNGOldcgWFc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1609324795832?e=1681948800&v=beta&t=rBbc1Mf5bOATmXaFHqkxwzklAXk9lvW9_AIJjHQYd4c", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1609324795832?e=1681948800&v=beta&t=KRnOdTQPSJbtra6AfxIJ_QQer0Y3sx-M95Y-6r1LhY8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGoPI3w68YTDw/profile-displayphoto-shrink_" + } + }, + "trackingId": "87Bz6VIlR7y049PJZNG2/w==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "J'ai \u00e9t\u00e9 re\u00e7u avant-hier soir (en fait l'enregistrement a eu lieu il y a quelques jours, mais \"dans les conditions du direct\" donc c'est comme si cela avait \u00e9t\u00e9 hier soir) par Aude Lancelin, sur sa chaine internet QG TV.\n\nNous sommes repartis du d\u00e9roul\u00e9 du Monde sans Fin (qui n'est plus en rupture de stock !) pour balayer les divers sujets qui y sont abord\u00e9s. Je m'attendais \u00e9videmment, vue mon interlocutrice, \u00e0 \u00eatre \"challeng\u00e9\" sur la possibilit\u00e9 de marier fin du mois et fin du monde - question \u00f4 combien l\u00e9gitime. \n\nLa premi\u00e8re partie de notre BD faisant - h\u00e9las - comprendre que notre plan\u00e8te ne pourra pas physiquement supporter longtemps - et en fait ne supporte d\u00e9j\u00e0 plus - le niveau de consommation mat\u00e9rielle d'un(e) fran\u00e7ais(e) modeste d'aujourd'hui, comment porter un discours d'espoir qui permette d'agir tout en acceptant cette r\u00e9alit\u00e9 ?\n\nJe ne suis pas sur d'avoir la martingale pour r\u00e9pondre \u00e0 cette question. Mais ce qui est sur c'est que c'est en ces termes qu'il faut que le nouveau gouvernement r\u00e9fl\u00e9chisse, tout comme chacun(e) d'entre nous." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6933697736630263808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6933697737582383105,urn:li:activity:6933697737582383105,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 29, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6933697737582383105,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6933697737582383105,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6933697737582383105", + "threadId": "activity:6933697737582383105", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6933697737582383105", + "urn": "urn:li:activity:6933697737582383105", + "numComments": 66, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6933697737582383105", + "reactionTypeCounts": [ + { + "count": 747, + "reactionType": "LIKE" + }, + { + "count": 41, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "INTEREST" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6933697737582383105", + "numLikes": 870, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6933697737582383105", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 870, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6933432334281015296,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6933432334281015296", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6933432334281015296)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6933432334281015296)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_chien-robot-livraison-autonome-impression-activity-6933432334281015296-Qzn8?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6933432333572177920", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6933432334281015296", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6933432334281015296,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6933432334281015296,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6933432333572177920", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "z5GHdujQnjJsyhO4lByAYQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6933432334281015296,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8612321471475995090", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675625811739?e=1677240000&v=beta&t=HwU0tuK5OyhhTO4EJgtaQQAyGOjoSfyFezgo3B9JLAY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675625811739?e=1677240000&v=beta&t=phtR3AMhHoc9fWTXesIoyANwLCNH968CPMnSqSnVUeU", + "expiresAt": 1677240000000, + "height": 675 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675625811739?e=1677240000&v=beta&t=49O20lCo0uTQ09yuBL8xHnvcQgaEf_9_ltu9UKMR7ig", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675625811739?e=1677240000&v=beta&t=uwJNvrn18JguQTepdAvp5auE5pCmhytpA1Vmf5_ajD4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH6I1UNP56PGw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8612321471475995090)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8612321471475995090)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "leparisien.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Chien robot, livraison autonome, impression de b\u00e2timent en 3D... votez pour votre innovation pr\u00e9f\u00e9r\u00e9e by leparisien.fr", + "actionTarget": "https://www.leparisien.fr/high-tech/chien-robot-livraison-autonome-impression-de-batiment-en-3d-votez-pour-votre-innovation-preferee-19-05-2022-LEBONVFLH5EB3CRFEU4UVT757I.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Chien robot, livraison autonome, impression de b\u00e2timent en 3D... votez pour votre innovation pr\u00e9f\u00e9r\u00e9e" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6933432333572177920,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 11, + "miniCompany": { + "objectUrn": "urn:li:company:623589", + "entityUrn": "urn:li:fs_miniCompany:623589", + "name": "Le Parisien", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1625869709060?e=1684972800&v=beta&t=9UMB0AWH70suQvVS57GtQIZ0zF1U9YmEv0PF4vjHdgs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1625869709060?e=1684972800&v=beta&t=E6a-mz1HFOQxQbaKbLUYqT6SzM83tOuGoT2NjUTbt14", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1625869709060?e=1684972800&v=beta&t=CB7nTfpGva-qPyEsaiXfpsqsm9NBjNJp_-4q3i2Ypnc", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQFpVJld1P2Jzw/company-logo_" + } + }, + "universalName": "le-parisien", + "dashCompanyUrn": "urn:li:fsd_company:623589", + "trackingId": "712EW3bWQ7e8wapSFmTmnQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Le Parisien propose \u00e0 ses lectrices et lecteurs de \"voter pour l\u2019innovation qui va r\u00e9volutionner notre vie\". Afin de ne laisser aucune ambigu\u00eft\u00e9, l'autrice ou l'auteur de l'article (qui n'est pas sign\u00e9, peut-\u00eatre par peur de ce qui suit) pr\u00e9cise ensuite que \"Il s\u2019agit de choisir une innovation parmi cinq qui, selon vous, pourraient changer nos vies.\"\n\nAvec une telle accroche, je suis plein d'espoir. A-t-on invent\u00e9 une mani\u00e8re de faire revenir la pluie l\u00e0 o\u00f9 il fait trop sec ? Une fa\u00e7on de recr\u00e9er les stocks de poissons ou d'arr\u00eater la fonte du Groenland ? Une machine \u00e0 amener la paix l\u00e0 o\u00f9 il y a des conflits ? Une mani\u00e8re infaillible de lutter contre la s\u00e9dentarit\u00e9 et de donner envie \u00e0 chaque fran\u00e7ais(e) d'enfourcher un v\u00e9lo ? Un argument convaincant pour que la planification \u00e9cologique de Macron ne soit pas qu'un slogan ?\n\nMeuh non, ce qui pourrait changer votre vie est, au choix, un robot \u00e0 faire le caf\u00e9, un robot qui monte les escaliers, ou un chien robot qui fait tout comme un vrai (l'article ne dit pas si il pisse ou pas contre les lampadaires ou \"renifle le cul\" comme dans Didier).\n\nNous ne sommes pas le 1er avril et Le Parisien n'a pas rachet\u00e9 le Gorafi. Par contre... Le Parisien est poss\u00e9d\u00e9 par le m\u00eame groupe que celui qui op\u00e8re Vivatech (Les Echos - Le Parisien : https://lnkd.in/eYApB2XU). Cela peut-il expliquer une telle fascination pour le gadget de la part de certain(e)s journalistes jusqu'\u00e0 en perdre le sens des mots ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6933432333572177920,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6933432334281015296,urn:li:activity:6933432334281015296,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 163, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6933432334281015296,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6933432334281015296,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6933432334281015296", + "threadId": "activity:6933432334281015296", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6933432334281015296", + "urn": "urn:li:activity:6933432334281015296", + "numComments": 221, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6933432334281015296", + "reactionTypeCounts": [ + { + "count": 3366, + "reactionType": "LIKE" + }, + { + "count": 274, + "reactionType": "MAYBE" + }, + { + "count": 147, + "reactionType": "PRAISE" + }, + { + "count": 141, + "reactionType": "EMPATHY" + }, + { + "count": 80, + "reactionType": "INTEREST" + }, + { + "count": 66, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6933432334281015296", + "numLikes": 4074, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6933432334281015296", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4074, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6933355394694041600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1024481", + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "FUxMuyzMTB+zVVqBzgmBdg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "FUxMuyzMTB+zVVqBzgmBdg==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Carbone 4", + "actionTarget": "https://www.linkedin.com/company/carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1024481" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "118,673 followers" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6932991023883169792,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6932991023883169792", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6932991023883169792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6932991023883169792)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/carbone-4_changement-climatique-lonu-salarme-des-activity-6932991023883169792-UOk0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6932991022880718848", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1024481", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6932991023883169792,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6932991023883169792,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6932991022880718848", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "y2STusCvM3epBwdIzpy/8w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6932991023883169792,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6995109418081216007", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675648598390?e=1677240000&v=beta&t=Pm51EvxQQnp_I4_NetKm-jZ6fKBa8ovAXWAAudzGwxk", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675648598390?e=1677240000&v=beta&t=UEa3ghVJWRhYyiBL89-txyxgGhiHrhrvJkgBGi3uxfo", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675648598390?e=1677240000&v=beta&t=F4Kq_L-9HruYgOoCTm5B3J3CCCwe-mNoE3gukufNci8", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675648598390?e=1677240000&v=beta&t=6HSeXaeADumKDVD6TMJtXAEoDNrIIqth-fPXsKeJoKc", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHQulWNhPF7lA/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6995109418081216007)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6995109418081216007)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Changement climatique : l\u2019ONU s\u2019alarme des nouveaux records battus en 2021 par quatre marqueurs-cl\u00e9s by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/planete/article/2022/05/18/l-onu-s-alarme-des-nouveaux-records-battus-en-2021-par-quatre-marqueurs-cles-du-changement-climatique_6126635_3244.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Changement climatique\u00a0: l\u2019ONU s\u2019alarme des nouveaux records battus en\u00a02021 par quatre marqueurs-cl\u00e9s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6932991022880718848,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\u26d4\ufe0fNouveaux records pour quatre indicateurs majeurs du changement climatique en 2021.\n\nL\u2019Organisation m\u00e9t\u00e9orologique mondiale (OMM) \u00e0 annonc\u00e9 hier, dans un nouveau rapport sur l\u2019\u00e9tat du climat mondial en 2021 (https://lnkd.in/eGDGTr2q), que la concentration des gaz \u00e0 effet de serre, l\u2019\u00e9l\u00e9vation du niveau de la mer, le r\u00e9chauffement et l\u2019acidification des oc\u00e9ans ont \u00e9tabli de nouveaux records en 2021.\u00a0 \n\nLe rapport confirme que les sept derni\u00e8res ann\u00e9es ont \u00e9t\u00e9 les plus chaudes jamais enregistr\u00e9es, et que nous \u00e9chouons aujourd\u2019hui \u00e0 lutter face au changement climatique. \n\nAnt\u00f3nio Guterres, Secr\u00e9taire g\u00e9n\u00e9ral de l\u2019ONU d\u00e9clare \u00ab\u00a0Le syst\u00e8me \u00e9nerg\u00e9tique mondial est bris\u00e9 et nous rapproche de plus en plus de la catastrophe climatique\u00a0\u00bb et appelle \u00e0 la mise en \u0153uvre de toute urgence d\u2019une transformation des syst\u00e8mes \u00e9nerg\u00e9tiques pour de sortir de l\u2019impasse des combustibles fossiles. \n\nEn parall\u00e8le, les \u00e9v\u00e9nements climatiques extr\u00eames s\u2019intensifient et tuent (canicules en Inde et au Pakistan, inondations en Afrique du Sud, s\u00e9cheresses dans la Corne de l\u2019Afrique, etc.), l\u2019ins\u00e9curit\u00e9 alimentaire est en hausse alarmante dans de nombreuses r\u00e9gions du monde, la biodiversit\u00e9 d\u00e9cline \u00e0 un rythme sans pr\u00e9c\u00e9dent\u2026 combien de temps nous faudra-t-il encore pour prendre la mesure des enjeux ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6932991022880718848,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6932991023883169792,urn:li:activity:6932991023883169792,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 6, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6932991023883169792,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6932991023883169792,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6932991023883169792", + "threadId": "activity:6932991023883169792", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6932991023883169792", + "urn": "urn:li:activity:6932991023883169792", + "numComments": 7, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6932991023883169792", + "reactionTypeCounts": [ + { + "count": 226, + "reactionType": "LIKE" + }, + { + "count": 47, + "reactionType": "INTEREST" + }, + { + "count": 35, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6932991023883169792", + "numLikes": 316, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6932991023883169792", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 316, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6933355394694041600", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6933355394694041600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6933355394694041600)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_changement-climatique-lonu-salarme-des-activity-6933355394694041600-Ir6c?utm_source=share&utm_medium=member_desktop" + }, + { + "subActionsMenu": { + "title": "Who would you like to unfollow?", + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + } + ] + }, + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_ACTIONS", + "text": "Unfollow" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6933355393939083264", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6933355394694041600", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6933355394694041600,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6933355394694041600,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6933355393939083264", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "y2STusCvM3epBwdIzpy/8w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6933355394694041600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6933355393939083264,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "4LC4OSsrSA6djJh25SRnlg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 17, + "length": 15, + "miniProfile": { + "firstName": "Elisabeth", + "lastName": "BORNE", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAb0YewBAqka1YPf0s5nR5V2WqKbzK0zS4M", + "occupation": "Premi\u00e8re ministre", + "objectUrn": "urn:li:member:116679148", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAb0YewBAqka1YPf0s5nR5V2WqKbzK0zS4M", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1655129346943?e=1681948800&v=beta&t=SM9DOd-ICAdYaqw-Lqh7R-pSmoQWnfpwA3ZaHL-UOgM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1655129346943?e=1681948800&v=beta&t=TA5tfq8dh6WIv3lSYEC5zvZp35sPO4uNgOcwx68sSiQ", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG1qSej3Fy15A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "elisabeth-borne-7a40aa33", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1609849416708?e=1681948800&v=beta&t=8-YS5vyv2r3kjzbhdpreP5rr0iDcQY-a8_p9qGVFX8A", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1609849416708?e=1681948800&v=beta&t=c4kHwvc0So7wzOnoK-4P7o2ywmSiUAKRz8JEQjNxbhY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1609849416708?e=1681948800&v=beta&t=ImHFnBOjmYdqZye05q7s-L4Qy51tKsNR1mqpd-uzRns", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1609849416708?e=1681948800&v=beta&t=MdZPY6infpSh5gV0YWqQ5DWvoYJ9QAtuhL2TfQaMJKg", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHYkExuPDHEBA/profile-displayphoto-shrink_" + } + }, + "trackingId": "aXZUZUvdSMShTPpC8+C22g==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 34, + "length": 14, + "miniProfile": { + "firstName": "Bruno", + "lastName": "Le Maire", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "occupation": "Ministre de l\u2019\u00c9conomie, des Finances et de la Souverainet\u00e9 industrielle et num\u00e9rique", + "objectUrn": "urn:li:member:489338904", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1615820384690?e=1681948800&v=beta&t=1lSONwEqNZ6YCfsSa_SSdMyy3lRIBlt7HnIa8FhbD_0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1615820384690?e=1681948800&v=beta&t=mXrkcvswYDvA5nxrWnHwv0uRHbVbSrbb-YTCHNh3hZs", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFtlzemSILDlQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "brunolemaire", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650470576103?e=1681948800&v=beta&t=grYiuKFOw0Vps9r0gskTHNlsABqKydJY1BD9PqrCOZE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650470576103?e=1681948800&v=beta&t=_dq5B-XcARKywCPZ39sHI46v2wiioUaRLXHB6EjQEZA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650470576103?e=1681948800&v=beta&t=hpGqyzWjIXtO01PmwOzhVATdVIHajDaeNdSiiN6I2KY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650470576103?e=1681948800&v=beta&t=sDT3g5ZnR6kL5Ks0S37qtLS2Z-UNhM119fiXH0t1h8I", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQH2hSTPjrAuKw/profile-displayphoto-shrink_" + } + }, + "trackingId": "9K9fUQP3S4im6IR3VTZSLA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Emmanuel Macron, Elisabeth BORNE, Bruno Le Maire, garder en \u00e9tat de marche une plan\u00e8te sans laquelle il n'y a pas de plans pour les retraites, l'\u00e9conomie ou la diplomatie de la paix qui tienne, ca justifie bien 20 heures de formation, non ? https://lnkd.in/eK6_PtVD\n\nNB : si vous ne savez pas quoi mettre dans le programme nous on sait :) : https://lnkd.in/e66VwQeJ" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6933355393939083264,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6933355394694041600,urn:li:activity:6933355394694041600,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 35, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6933355394694041600,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6933355394694041600,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6933355394694041600", + "threadId": "activity:6933355394694041600", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6933355394694041600", + "urn": "urn:li:activity:6933355394694041600", + "numComments": 59, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6933355394694041600", + "reactionTypeCounts": [ + { + "count": 1049, + "reactionType": "LIKE" + }, + { + "count": 78, + "reactionType": "APPRECIATION" + }, + { + "count": 64, + "reactionType": "PRAISE" + }, + { + "count": 36, + "reactionType": "MAYBE" + }, + { + "count": 29, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6933355394694041600", + "numLikes": 1273, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6933355394694041600", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1273, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6933303992315752449,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6933303992315752449", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6933303992315752449)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6933303992315752449)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_eu-climate-emissions-higher-than-before-pandemic-activity-6933303992315752449-wCHn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6933303991611097088", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6933303992315752449", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6933303992315752449,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6933303992315752449,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6933303991611097088", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "ni887UdfoADxBEjAYhFFtQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6933303992315752449,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8040001436883324292", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675709490640?e=1677240000&v=beta&t=TUR1LVZj6vd9RVOoneZi6hwJtL1vwN-FSub-4MligB0", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675709490640?e=1677240000&v=beta&t=Wk57CJ_Kfqih6VW5eAoDJ5ScAQDbTA-0IlwqgANg4eI", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675709490640?e=1677240000&v=beta&t=uvFpW4s1K2oCjxZ9FtBoi27zmYpSSegiPu-U9-lDunw", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675709490640?e=1677240000&v=beta&t=IcHg7l5UqxtDIb8_Yf9Ety4E6oyVc4l1uVAAraqXanI", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGG9gnEejIlBQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8040001436883324292)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8040001436883324292)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "politico.eu \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EU climate emissions higher than before pandemic by politico.eu", + "actionTarget": "https://www.politico.eu/article/eu-climate-emissions-higher-than-before-pandemic/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EU climate emissions higher than before pandemic" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6933303991611097088,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La croissance verte, cela risque malheureusement d'\u00eatre plus vite dit que fait. Le PIB europ\u00e9en est reparti \u00e0 la hausse en 2021... et les \u00e9missions aussi.\n\nL'annonce de Macron de vouloir doubler le rythme de baisse des \u00e9missions en France est une bonne chose. Mais l'histoire nous a montr\u00e9 que ca c'\u00e9tait la partie la plus facile. Pour passer \u00e0 l'action il nous faut un plan ! \n\nPour le moment le plan est de marier croissance \u00e9conomique et baisse des \u00e9missions. Malheureusement ne pas choisir c'est choisir quand m\u00eame. Car nous finirons par avoir la d\u00e9croissance subie (probablement \"en marches d'escalier\", avec des \"accidents\" dont l'Ukraine et le covid sont des exemples ; le climat et le d\u00e9faut de ressources nous en am\u00e8neront d'autres) ET les emm... climatiques augment\u00e9s nourris par des \u00e9missions qui n'ont pas baiss\u00e9 de mani\u00e8re volontaire dans le monde.\n\nLorsque j'ai \u00e9t\u00e9 re\u00e7u par le pr\u00e9sident renouvel\u00e9 il y a 10 jours je lui ai dit que son cadre d'exercice allait \u00eatre, en tendance, de g\u00e9rer plus de probl\u00e8mes avec moins de moyens. Je ne l'ai pas senti compl\u00e8tement convaincu. Il va pourtant bien falloir que cette lecture physique de notre avenir soit comprise si on veut m\u00e9nager ce dernier au mieux..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6933303991611097088,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6933303992315752449,urn:li:activity:6933303992315752449,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 64, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6933303992315752449,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6933303992315752449,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6933303992315752449", + "threadId": "activity:6933303992315752449", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6933303992315752449", + "urn": "urn:li:activity:6933303992315752449", + "numComments": 99, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6933303992315752449", + "reactionTypeCounts": [ + { + "count": 1438, + "reactionType": "LIKE" + }, + { + "count": 115, + "reactionType": "MAYBE" + }, + { + "count": 114, + "reactionType": "INTEREST" + }, + { + "count": 27, + "reactionType": "APPRECIATION" + }, + { + "count": 24, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6933303992315752449", + "numLikes": 1723, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6933303992315752449", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1723, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6932959701089320960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6932959701089320960", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6932959701089320960)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6932959701089320960)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_s%C3%A9cheresse-les-barrages-hydro%C3%A9lectriques-activity-6932959701089320960-PUQ8?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6932959700023963649", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6932959701089320960", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6932959701089320960,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6932959701089320960,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6932959700023963649", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "1rzL0MfY3z6dy+o+iJK9BA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6932959701089320960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8891217229682027073", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675684098785?e=1677240000&v=beta&t=dWoLjPTeh7PH2M56vLW7WvSN0xLG5F0o_xz5AiX825E", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675684098785?e=1677240000&v=beta&t=5TeL1YPwC0MoexgC_Ykin2GpcMuM9e8KFHOyIP59ZyE", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675684098786?e=1677240000&v=beta&t=xFfj1MbZVa2PaSGnNTaUn5b043k5Iio81VIOLzPNycs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675684098786?e=1677240000&v=beta&t=f3Cv3isQ-k3fmY8iuxOWK9RcEos4GZlA__OPF-Oce7Y", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHzWab5FYHE3w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8891217229682027073)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8891217229682027073)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: S\u00e9cheresse : les barrages hydro\u00e9lectriques sous haute surveillance by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/secheresse-les-barrages-hydroelectriques-sous-haute-surveillance-1407749" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "S\u00e9cheresse\u00a0: les barrages hydro\u00e9lectriques sous haute surveillance" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6932959700023963649,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Lorsque nous discutons sc\u00e9narisation \u00e9lectrique, il est fr\u00e9quent d'entendre que l'avenir ne va d\u00e9pendre que de nos envies, quelle que soit l'option politique retenue.\n\nVous aimez le nucl\u00e9aire ? Alors il suffit de tenir un discours un peu martial comme \u00e0 Belfort et la machine repartira. \n\nVous aimez les renouvelables ? Alors il suffit de dire que \"c'est possible\" et nous n'aurons que cela. \n\nIl y a besoin de gaz dans l'intervalle ? Pas grave : le gaz est disponible et donc on peut s'en servir \"en attendant\".\n\nMais voil\u00e0, la vraie vie est en train de nous proposer surtout une collection de points d'interrogation :\n- CO2 ou pas CO2, il ne va peut-\u00eatre pas avoir autant de gaz que l'on voudrait,\n- il ne va peut-\u00eatre pas avoir autant d'eau dans les barrages que l'on voudrait, \u00e9lectricit\u00e9 \"verte\" (qui correspond essentiellement \u00e0 des certificats de garantie d'origine \u00e9mis par des barrages) ou pas\n- apr\u00e8s des d\u00e9cennies de \"stop and go\" politique pour cause de d\u00e9magogie \u00e9lectorale, et de confusion des genres entre une entreprise productive qui doit s'autofinancer et une poche dans laquelle l'Etat se sert \u00e0 discr\u00e9tion (et Macron a contribu\u00e9 aux deux), le nucl\u00e9aire est affaibli\n- et les \"nouvelles ENR\" ne seront peut-\u00eatre pas si simples \u00e0 d\u00e9ployer \u00e0 l'\u00e9chelle, parce que ce sont des dispositifs pas chers... dans une \u00e9conomie mondialis\u00e9e dop\u00e9e aux combustibles fossiles.\n\nEn effet, ce dont les 20 derni\u00e8res ann\u00e9es ont fait la preuve, c'est d'une baisse de couts des \u00e9oliennes et panneaux solaires dans un monde consommant de plus en plus de p\u00e9trole, gaz et charbon. Cela ne d\u00e9montre en rien que cette baisse reste acquise dans un monde o\u00f9 il n'y a plus de p\u00e9trole pour les engins de mine, les camions et la marine marchande, plus de charbon pour la m\u00e9tallurgie et l'\u00e9lectricit\u00e9, et plus de gaz pour l'industrie manufacturi\u00e8re, l'\u00e9lectricit\u00e9, les cimenteries ou la chimie amont.\n\nLe vent et le soleil \u00e9tant des \u00e9nergies diffuses, il leur faut (beaucoup) plus de m\u00e9tal par kWh que pour les \u00e9nergies concentr\u00e9es (charbon, gaz ou nucl\u00e9aire) et beaucoup plus d'espace et de dispositifs annexes (stockage, r\u00e9seau, voire dispositifs de pilotage en fr\u00e9quence).\n\nSi l'\u00e9conomie se \"d\u00e9mondialise\", parce que la mondialisation c'est l'abondance de transports donc de p\u00e9trole, alors plus il y a de mat\u00e9riaux \"lointains\" (les m\u00e9taux en font partie) n\u00e9cessaires dans une production, et plus cette derni\u00e8re coutera cher.\n\nC'est du reste quelque chose de coh\u00e9rent avec ce qui pr\u00e9c\u00e8de qui s'observe depuis le covid, qui a engendr\u00e9 une petite exp\u00e9rience de d\u00e9mondialisation involontaire : \u00e9oliennes et paneaux solaires voient leur prix augmenter (https://lnkd.in/eqJqBtfC ). \n\nIl est donc urgent de r\u00e9fl\u00e9chir \u00e0 des sc\u00e9narios \u00e9lectriques - et un cadre \u00e9conomique - coh\u00e9rents avec une \u00e9conomie qui fonctionne en mode d\u00e9grad\u00e9. Nous allons de toute fa\u00e7on devoir assumer un risque. Le monde des bisounours n'existera pas." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6932959700023963649,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6932959701089320960,urn:li:activity:6932959701089320960,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 50, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6932959701089320960,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6932959701089320960,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6932959701089320960", + "threadId": "activity:6932959701089320960", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6932959701089320960", + "urn": "urn:li:activity:6932959701089320960", + "numComments": 73, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6932959701089320960", + "reactionTypeCounts": [ + { + "count": 1351, + "reactionType": "LIKE" + }, + { + "count": 152, + "reactionType": "INTEREST" + }, + { + "count": 119, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6932959701089320960", + "numLikes": 1655, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6932959701089320960", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1655, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6932674622882504704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6932674622882504704", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6932674622882504704)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6932674622882504704)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_environnement-les-biocarburants-peuvent-ils-activity-6932674622882504704-TPX4?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6932674622219821056", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6932674622882504704", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6932674622882504704,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6932674622882504704,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6932674622219821056", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "RGpPG+urFBmmrluEb/I6kA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6932674622882504704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8266224100411949340", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675642606917?e=1677240000&v=beta&t=LYC1qNCDO3SW8_f5QkdTEssQJg11cb-BHNg5dzA_BFw", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675642606917?e=1677240000&v=beta&t=DQr_-h3LIBiM-BnFosCRJcfxqPlXTMG8sGxuHRq_36Q", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675642606918?e=1677240000&v=beta&t=EsHIcIA4nNlS-g16v4xZmoa1MiZCb2ThzNW6SR7xCg4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675642606918?e=1677240000&v=beta&t=kh2IWpLaekQswx6muWB7NvmhJXTcVC4YdnBTCrOjvfk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE54Mk2qVpwtQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8266224100411949340)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8266224100411949340)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Environnement : les biocarburants peuvent-ils remplacer le p\u00e9trole ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900154378-environnement-les-biocarburants-peuvent-ils-remplacer-le-petrole" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Environnement : les biocarburants peuvent-ils remplacer le p\u00e9trole ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6932674622219821056,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le p\u00e9trole devient hors de prix ? Rempla\u00e7ons le ! Depuis des ann\u00e9es d\u00e9j\u00e0, le carburant disponible \u00e0 la pompe incorpore des produits qui ne sont pas issus d'un gisement de p\u00e9trole, mais de cultures :\n- l'essence contient de l'\u00e9thanol issu de bl\u00e9 (oui oui de bl\u00e9 !), de betteraves, ou de ma\u00efs (aux USA 40% du ma\u00efs est utilis\u00e9 pour faire des agrocarburants)\n- le diesel contient des huiles est\u00e9rifi\u00e9es issues du colza, du palme, du soja, voire du tournesol. \n\nCette id\u00e9e de se passer de p\u00e9trole en utilisant des cultures illustre \u00e0 merveille la difficult\u00e9 de revenir \u00e0 la situation \u00e9nerg\u00e9tique \"d'avant le p\u00e9trole\" (donc avec juste des \u00e9nergies renouvelables, au premier chef desquelles la biomasse) tout en conservant les acquis de la civilisation du p\u00e9trole, \u00e0 savoir 1,2 milliard de voitures de plus d'une tonne sur terre, plus de 20.000 avions de ligne, sans compter les bateaux, tracteurs, engins de mine, poids lourds, et j'en passe.\n\nCar des combustibles issus de la v\u00e9g\u00e9tation, tout le monde en veut pour se passer d'or noir. Le secteur a\u00e9rien compte tr\u00e8s fort sur les \"sustainable aviation fuels\", largement d\u00e9riv\u00e9s de la biomasse, pendant que les gaziers comptent sur le \"gaz vert\", lui aussi issu de la biomasse (par fermentation), et que les constructeurs et utilisateurs de voitures comptent sur les \"bio\" (en fait agro) carburants.\n\nDans cette courte chronique diffus\u00e9e Samedi dernier sur RTL, je propose un petit calcul d'ordre de grandeur pour expliquer pourquoi ces carburants resteront marginaux dans un monde consommant 4 milliards de tonnes de p\u00e9trole par an. \n\nPar contre, plus nous voudrons mettre de d\u00e9riv\u00e9s de la biomasse dans nos moteurs, centrales \u00e9lectriques et chaudi\u00e8res, et moins il restera de surfaces disponibles pour nous nourrir, faire pousser des mat\u00e9riaux (bois, fibres, mati\u00e8res premi\u00e8res pour la chimie organique), et h\u00e9berger la biodiversit\u00e9.\n\nEt, en cette p\u00e9riode de prix tr\u00e8s \u00e9lev\u00e9s pour les c\u00e9r\u00e9ales, il faut rappeler que si nous avions accept\u00e9 de diminuer la consommation des voitures de 20% (en les faisant plus petites et moins puissantes), nous n'aurions pas besoin donner une partie de nos cultures \u00e0 manger \u00e0 ces animaux \u00e0 4 roues, et la situation serait moins tendue pour ceux qui ont juste faim. Et plus le temps passera, et plus ce dilemme augmentera." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6932674622219821056,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6932674622882504704,urn:li:activity:6932674622882504704,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 101, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6932674622882504704,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6932674622882504704,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6932674622882504704", + "threadId": "activity:6932674622882504704", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6932674622882504704", + "urn": "urn:li:activity:6932674622882504704", + "numComments": 188, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6932674622882504704", + "reactionTypeCounts": [ + { + "count": 1776, + "reactionType": "LIKE" + }, + { + "count": 182, + "reactionType": "INTEREST" + }, + { + "count": 94, + "reactionType": "PRAISE" + }, + { + "count": 87, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6932674622882504704", + "numLikes": 2163, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6932674622882504704", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2163, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6932302009039519744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6932302009039519744", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6932302009039519744)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6932302009039519744)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_linde-suspend-ses-exportations-de-bl%C3%A9-le-activity-6932302009039519744-7Yiw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6932302008079032320", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6932302009039519744", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6932302009039519744,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6932302009039519744,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6932302008079032320", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "1i0pKYByUQ2kxJXm68hzOw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6932302009039519744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8301324662866464929", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675580251861?e=1677240000&v=beta&t=rfBmjnTVRUeC0hPrpZVVA_EIBVunT3hUHqnAPp4SURs", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1199, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675580251861?e=1677240000&v=beta&t=2pkYOv1WinCK0iPx2Yvibt7TE_zwAuLi3aNOYgOjsvk", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675580251861?e=1677240000&v=beta&t=x99iZAGMyJ4acUTpPO7px725WPeLmQKEqxVGLhf-gqg", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675580251861?e=1677240000&v=beta&t=l73hl0SroqWwlAT5WPpz14fhunaZ203YXyZkK8yH1mA", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH6Rdtqg1V65A/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8301324662866464929)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8301324662866464929)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "huffingtonpost.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'Inde suspend ses exportations de bl\u00e9, le G7 s'inqui\u00e8te d'une crise alimentaire aggrav\u00e9e by huffingtonpost.fr", + "actionTarget": "https://www.huffingtonpost.fr/entry/inde-suspend-ses-exportations-de-ble-le-g7-sinquiete-dune-crise-alimentaire-aggravee_fr_627fd65ce4b050d95192745a" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'Inde suspend ses exportations de bl\u00e9, le G7 s'inqui\u00e8te d'une crise alimentaire aggrav\u00e9e" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6932302008079032320,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Je dois dire que j'ai \u00e9t\u00e9 surpris de d\u00e9couvrir, \u00e0 l'occasion de cette nouvelle largement diffus\u00e9e (que l'Inde n'exporterait pas de bl\u00e9 cette ann\u00e9e), que le pays le plus peupl\u00e9 de la plan\u00e8te (\u00e0 parit\u00e9 avec la Chine), et disposant de 4 fois moins de surface cultivable par personne (0,14 hectare) que la moyenne mondiale (un peu au-dessus de 0,6 hectare) \u00e9tait... exportateur de c\u00e9r\u00e9ales. \n\nDe m\u00eame, alors que la production de c\u00e9r\u00e9ales par personne et par an est proche de 400 kgs en moyenne mondiale (donn\u00e9es Banque Mondiale et graphique en commentaire), cette valeur n'est que de 220 kgs en Inde, soit 40% de moins. A titre de comparaison, cette valeur est de une tonne (de c\u00e9r\u00e9ales par personne et par an) en France, de 1,4 tonne aux USA et de 800 kgs en Russie.\n\nComment un pays qui produit aussi peu (enfin relativement aux autres grands exportateurs) peut-il d\u00e9gager un surplus ?\n\nUne des explications possibles vient peut-\u00eatre de l'utilisation de ces c\u00e9r\u00e9ales : l'Inde produit 40% de viande de boeuf en moins que la France (alors que sa population est 20 fois plus nombreuse), 7 fois moins de viande de porc, et \"seulement\" 3 fois plus de volaille (donc en fait 6 fois moins par habitant). L'esp\u00e9rance de vie \u00e0 la naissance y est de 70 ans.\n\nIl n'en reste pas moins que cette d\u00e9cision indienne a contribu\u00e9 \u00e0 faire grimper les prix des c\u00e9r\u00e9ales au plafond pour les \u00e9changes internationaux. Cela va contribuer \u00e0 rendre encore plus difficile l'acc\u00e8s (\u00e9conomique) \u00e0 la nourriture dans les pays fortement importateurs (dont plusieurs pays d'Afrique du Nord).\n\nCette nouvelle n'est h\u00e9las qu'une demi-surprise : avec une population plan\u00e9taire en hausse, des approvisionnements agricoles qui vont \u00eatre n\u00e9gativement impact\u00e9s par le changement climatique et/ou l'acc\u00e8s plus difficile \u00e0 l'\u00e9nergie (gaz pour les engrais, p\u00e9trole pour la m\u00e9canisation et le transport aval, gaz et p\u00e9trole pour les phytosanitaires) la seule question est de savoir \u00e0 quel rythme et \u00e0 quel horizon de temps on verra appara\u00eetre des tensions croissantes.\n\nNotre nouvelle premi\u00e8re ministre arrive pile dans une petite r\u00e9p\u00e9tition g\u00e9n\u00e9rale de ce qui sera de plus en plus notre quotidien : des conditions de temp\u00e9rature et de pr\u00e9cipitations pas sympathiques, un acc\u00e8s \u00e0 l'\u00e9nergie plus difficile, des chaines mondialis\u00e9es perturb\u00e9es, et une inflation qui va en cons\u00e9quence devenir plus ou moins structurelle, du moins exprim\u00e9e en nombre d'heures de travail n\u00e9cessaires pour se payer quelque chose.\n\nNous ne pouvons pas faire grand chose \u00e0 court terme en ce qui concerne la production c\u00e9r\u00e9ali\u00e8re en dehors de nos fronti\u00e8res. Par contre nous devrions nous doter aussi vite que possible d'une boite \u00e0 outils appropri\u00e9e pour anticiper et planifier avec le monde tel qu'il va \u00eatre, et non tel que l'on aimerait qu'il soit." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6932302008079032320,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6932302009039519744,urn:li:activity:6932302009039519744,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 146, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6932302009039519744,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6932302009039519744,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6932302009039519744", + "threadId": "activity:6932302009039519744", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6932302009039519744", + "urn": "urn:li:activity:6932302009039519744", + "numComments": 247, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6932302009039519744", + "reactionTypeCounts": [ + { + "count": 4385, + "reactionType": "LIKE" + }, + { + "count": 666, + "reactionType": "MAYBE" + }, + { + "count": 666, + "reactionType": "INTEREST" + }, + { + "count": 61, + "reactionType": "PRAISE" + }, + { + "count": 33, + "reactionType": "APPRECIATION" + }, + { + "count": 18, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6932302009039519744", + "numLikes": 5829, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6932302009039519744", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5829, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6931967568656150529,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6931967568656150529", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6931967568656150529)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6931967568656150529)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_co2-anglo-american-teste-dans-ses-mines-activity-6931967568656150529-31_x?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6931967568014393344", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6931967568656150529", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6931967568656150529,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6931967568656150529,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6931967568014393344", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "1ZPizJD9RUkf72FHAayslQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6931967568656150529,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8994056467559974524", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675615915220?e=1677240000&v=beta&t=IDT4-1Pk_GPfSMCr4w9M1bmCXmvq-mc5JB_Ded0v5g0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675615915220?e=1677240000&v=beta&t=AXkuxyUjFACI6NP9LZzDzSRjvHDJJ4fgvtQF3p-FYKE", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675615915220?e=1677240000&v=beta&t=gpKSL3TXsbGWjimQzp9aSYL0WUQuyEqeQffeNqlgWMo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675615915220?e=1677240000&v=beta&t=R4WI60JgsURhlH5kTgnW9t87s4f_HnPSxYIxOP73Fv0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHmCznDMgcozQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8994056467559974524)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8994056467559974524)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: CO2 : Anglo American teste dans ses mines le premier camion z\u00e9ro \u00e9mission by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/co2-anglo-american-teste-dans-ses-mines-le-premier-camion-zero-emission-1407034" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "CO2\u00a0: Anglo American teste dans ses mines le premier camion z\u00e9ro \u00e9mission" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6931967568014393344,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1270, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:164716", + "entityUrn": "urn:li:fs_miniCompany:164716", + "name": "Les Echos", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1614596361150?e=1684972800&v=beta&t=1mOk7v0jlnCgcIswWyYHmIJewK7-gk_r177j-Dwp4tM", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1614596361150?e=1684972800&v=beta&t=rpDGHIGtA_4yGaFUdh9VuXSkC5Jf7cl29bRNg1rsCiA", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1614596361150?e=1684972800&v=beta&t=SZO0sBQXbxYynz8dd9fVa-Jtq8ZS209SRpqIEXlQ3Os", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGU2tYAtnGruQ/company-logo_" + } + }, + "universalName": "les-echos", + "dashCompanyUrn": "urn:li:fsd_company:164716", + "trackingId": "sm+90UlOTgW23LLYffoyHw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Anglo American est un g\u00e9ant minier op\u00e9rant dans de nombreux pays pour extraire de la croute terrestre des babioles diverses qui se retrouvent ensuite partout autour de nous : \n- nickel, mangan\u00e8se, minerai de fer et charbon m\u00e9tallurgique (tout cela sert pour l'acier)\n- cuivre\n- platino\u00efdes (catalyseurs, piles \u00e0 combustible...)\n- et... diamants, qui restent souvent consid\u00e9r\u00e9 comme le \"nec plus ultra\" de la preuve d'amour.\n\nMais... ces m\u00e9taux et min\u00e9raux ne sortent pas de la croute terrestre tous seuls. Il faut les y aider un peu en allant faire des trous, puis en charriant jusqu'au lieu o\u00f9 il sera \"travaill\u00e9\" (purifi\u00e9, raffin\u00e9, transform\u00e9...) le mat\u00e9riau extrait de la mine (et qui contient en quantit\u00e9s variable du minerai ou des pierres pr\u00e9cieuses et de la terre ou de la roche).\n\nPour ce transport on utilise souvent des dumpers, \u00e9normes camions qui peuvent mesurer jusqu'\u00e0 8 m\u00e8tres de haut et dont la benne transporte jusqu'\u00e0 des centaines de tonnes de mat\u00e9riau. Bien \u00e9videmment chacun de ces engins utilise des quantit\u00e9s respectables de diesel pour fonctionner. \n\nPour \"d\u00e9carboner\" cette op\u00e9ration Anglo-American va tester des dumpers \u00e0 l'hydrog\u00e8ne. L'op\u00e9rateur affiche cr\u00e2nement sur les v\u00e9hicules \"z\u00e9ro \u00e9mission\", et, emport\u00e9 par cet \u00e9lan, le journaliste de Les Echos utilise aussi cette expression. A-t-il raison ?\n\nPoser la question c'est y r\u00e9pondre : z\u00e9ro, surement pas. Il faut toujours fabriquer le dumper, sa pile \u00e0 combustible (qui contient du platine... peut-\u00eatre extrait par Anglo-American, tr\u00e8s bien plac\u00e9 du coup pour avoir le bilan carbone de ce m\u00e9tal !), ainsi que le dispositif de production d'hydrog\u00e8ne, et tenir compte du rendement des op\u00e9rations en chaine dans tout cela.\n\nApplication pratique juste pour l'\u00e9nergie : avec un panneau solaire en Afrique du Sud le kWh solaire doit \u00eatre \u00e0 environ 30 g de CO2 (il est \u00e0 45 en France). L'\u00e9lectrolyse aura un rendement de 70% et la compression de l'hydrog\u00e8ne ensuite de 80%. La pile \u00e0 combustible a un rendement de 50%. Enfin le moteur \u00e9lectrique a un rendement de 80%. Rendement de chaine : 0,7*0,8*0,5*0,8 \u2248 22% de l'\u00e9lectricit\u00e9 \u00e0 l'arbre moteur en supposant z\u00e9ro fuite (car les fuites d'hydrog\u00e8ne sont particuli\u00e8rement impactantes sur le climat).\n\nCa fait donc le kWh m\u00e9canique \u00e0 \u2248 130 g de CO2 hors fabrication de la pile \u00e0 combustible. C'est assur\u00e9ment beaucoup moins que le diesel. Ce dernier \u00e9met 300 g de CO2 par kWh thermique, et en supposant que le rendement du moteur est de 40% cela fait 750g par kWh m\u00e9canique \u00e0 l'arbre moteur.\n\nCela n'aurait pas cout\u00e9 cher au journaliste de faire le calcul et d'\u00e9crire non point \"z\u00e9ro CO2\" mais tout simplement \"quasiment 6 fois moins de CO2\". La presse \u00e9conomique, normalement \u00e0 l'aise et pr\u00e9cise avec les chiffres en euros, devrait se donner pour objectif de l'\u00eatre autant avec les chiffres en carbone ! Ca serait pr\u00e9cieux pour nourrir les d\u00e9bats..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6931967568014393344,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6931967568656150529,urn:li:activity:6931967568656150529,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 157, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6931967568656150529,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6931967568656150529,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6931967568656150529", + "threadId": "activity:6931967568656150529", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6931967568656150529", + "urn": "urn:li:activity:6931967568656150529", + "numComments": 208, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6931967568656150529", + "reactionTypeCounts": [ + { + "count": 5328, + "reactionType": "LIKE" + }, + { + "count": 458, + "reactionType": "INTEREST" + }, + { + "count": 329, + "reactionType": "PRAISE" + }, + { + "count": 186, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "EMPATHY" + }, + { + "count": 33, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6931967568656150529", + "numLikes": 6381, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6931967568656150529", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6381, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6931908477317476353,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6931908477317476353", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6931908477317476353)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6931908477317476353)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_univershift%C3%A9-activity-6931908477317476353-xJkY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6931908476658978816", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6931908477317476353", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6931908477317476353,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6931908477317476353,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6931908476658978816", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "VDTv5BsPKV7Cxm9EEPjwaA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6931908477317476353,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7680304330127856707", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 480, + "fileIdentifyingUrlPathSegment": "800/0/1675759554842?e=1677240000&v=beta&t=VGcvOHCUb-Xi2VOqZuFMl44NRzTAIOg9Lai9tQGxMXU", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675759554842?e=1677240000&v=beta&t=CYsbaQKsrM4LmvYCJdZVxJmxqSRPnskAxwOWLyXP0gg", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675759554842?e=1677240000&v=beta&t=COC7OBttysqSBiYlP6dL2ZWYkMnjXha3fVI5Sn_5uGM", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675759554842?e=1677240000&v=beta&t=3y7_uHL091ySL-v_4yFz19pBTOWaZyplBfgRE-e1sPI", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFpQkRbOJmLIA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7680304330127856707)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7680304330127856707)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "univershifte.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: UniverShift\u00e9 by univershifte.fr", + "actionTarget": "https://univershifte.fr/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "UniverShift\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6931908476658978816,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les 25 et 26 juin prochains se tiendra dans la capitale des Gaules, c'est \u00e0 dire Lyon, la seconde \u00e9dition de l'Univershift\u00e9, \u00e0 savoir l'universit\u00e9 d'\u00e9t\u00e9 des Shifters, les b\u00e9n\u00e9voles inscrits - d\u00e9sormais plus de 16.000 - du Shift Project (l'\u00e9t\u00e9 commen\u00e7ant le 21 juin, on peut faire une universit\u00e9 d'\u00e9t\u00e9 fin juin, non mais). L'\u00e9v\u00e9nement est ouvert \u00e0 tou(te)s, comme l'ann\u00e9e derni\u00e8re.\n\nLe programme - en cours de finalisation - n'est pas encore en ligne, mais pour celles et ceux qui nous font confiance il est d\u00e9j\u00e0 possible de s'inscrire sur le site. L'ann\u00e9e derni\u00e8re, le temps fort avait \u00e9t\u00e9 la pr\u00e9sentation du plan de transformation de l'\u00e9conomie fran\u00e7aise, et c'est l\u00e0 que nous avions entendu en s\u00e9ance tous les repr\u00e9sentants des partenaires sociaux affirmer leur accord avec une planification de l'\u00e9conomie. \n\nIl n'est pas exclu que cela ait jou\u00e9 un petit r\u00f4le dans la reprise de ce concept pendant la campagne... et d\u00e9sormais dans les discours du chef de l'Etat (le suspense ne devrait plus durer tr\u00e8s longtemps pour voir si ca se traduit dans l'organisation gouvernementale et, surtout, de la haute administration.\n\nEn miroir aux annonces de Macron sur le r\u00f4le des collectivit\u00e9s locales et de la planification \u00e9nerg\u00e9tique, nous parlerons... de collectivit\u00e9s locales et d'\u00e9nergie :). Manquerons nous de gaz - et donc possiblement d'\u00e9lectricit\u00e9 - l'hiver prochain ? Comment bien r\u00e9partir les r\u00f4les entre \u00e9chelons locaux et \u00e9chelon national - et au-dessus - pour mener la \"transition\" ? Comment se mettre rapidement en ordre de bataille pour \"l'adaptation\" qui devient une n\u00e9cessit\u00e9 chaque jour plus urgente ?\n\nCe temps fort de la vie de la communaut\u00e9 shiftienne avait attir\u00e9 plus de mille personnes pour sa premi\u00e8re \u00e9dition. C'est peu compar\u00e9 \u00e0 67 millions de fran\u00e7ais(es), mais significatif dans l'\u00e9cosyst\u00e8me des associations contribuant au d\u00e9bat environnemental. Alors pour discuter de \"quoi faire\" rendez-vous \u00e0 Lyon dans un gros mois !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6931908476658978816,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6931908477317476353,urn:li:activity:6931908477317476353,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 36, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6931908477317476353,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6931908477317476353,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6931908477317476353", + "threadId": "activity:6931908477317476353", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6931908477317476353", + "urn": "urn:li:activity:6931908477317476353", + "numComments": 52, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6931908477317476353", + "reactionTypeCounts": [ + { + "count": 759, + "reactionType": "LIKE" + }, + { + "count": 38, + "reactionType": "PRAISE" + }, + { + "count": 35, + "reactionType": "MAYBE" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + }, + { + "count": 19, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6931908477317476353", + "numLikes": 876, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6931908477317476353", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 876, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6931537364439740416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6931537364439740416", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6931537364439740416)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6931537364439740416)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_meteo-france-fait-un-point-de-situation-sur-activity-6931537364439740416-Uycn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6931537363504390144", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6931537364439740416", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6931537364439740416,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6931537364439740416,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6931537363504390144", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "31298CQzMNTaDKYaApU7tQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6931537364439740416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEMoNw0fUYr1Q", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEMoNw0fUYr1Q", + "artifacts": [ + { + "width": 606, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1652607288054?e=1679529600&v=beta&t=YiQ4NoQOlcU1_E4Iil78pRT1BfV_yZcf9Vh2FdGvv7s", + "expiresAt": 1679529600000, + "height": 858 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1652607288030?e=1679529600&v=beta&t=t5uhEmWyJxjqmV4elFw224XjiugpDZieu3nTic1iDp0", + "expiresAt": 1679529600000, + "height": 28 + }, + { + "width": 606, + "fileIdentifyingUrlPathSegment": "1280/0/1652607288030?e=1679529600&v=beta&t=iguXBCFHC1BvB-EMIa7q93HsFR6K59lBVCfTncqtFBc", + "expiresAt": 1679529600000, + "height": 858 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1652607288030?e=1679529600&v=beta&t=73y8aZ3PBZu0z5MG2teAopmjOwwSDhTqRmaDc2CbDHA", + "expiresAt": 1679529600000, + "height": 679 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1652607288030?e=1679529600&v=beta&t=PS4jSA77cRVMQJgx5IbzBYDTc_nTT8CQrQTNNf0BvK8", + "expiresAt": 1679529600000, + "height": 226 + }, + { + "width": 606, + "fileIdentifyingUrlPathSegment": "800/0/1652607288030?e=1679529600&v=beta&t=XLQorC9KcXTTpTfly1an8SshJW-l1VqIMHZh2JS1Qqs", + "expiresAt": 1679529600000, + "height": 858 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEMoNw0fUYr1Q/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "map" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6931537363504390144,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Meteo France fait un point de situation sur la s\u00e9cheresse en France, alors que la temp\u00e9rature devrait d\u00e9passer 30 \u00b0C la semaine prochaine sur la moiti\u00e9 nord de la France, ce qui va \u00e9videmment accro\u00eetre le stress hydrique en surface en augmentant l'\u00e9vaporation : https://lnkd.in/en33QqXA\n\nUne large partie de la France a des sols \"plus secs que la normale\", et si la tendance des \"pr\u00e9visions\" saisonni\u00e8res est exacte cela ne devrait malheureusement pas s'arranger cet \u00e9t\u00e9, avec une \u00e9volution qui devrait \u00eatre \u00e0 la fois plus chaude et plus s\u00e8che que \"la normale\" : https://lnkd.in/ecXf_CW9 \n\nMais qu'est-ce que la normale quand le climat est en train de d\u00e9river en permanence ? Qu'est-ce que la normale quand on sait que notre pays va s'ass\u00e9cher dans le cadre du changement en cours, et que ce que nous observons actuellement semblera doux et humide dans 20 ou 30 ans ?\n\nFaut-il encore parler de \"normale\" pour un pass\u00e9 \u00e0 jamais r\u00e9volu, du moins \u00e0 l'\u00e9chelle de plusieurs vies humaines, voire plus ? Ne faudrait-il pas remplacer \"la normale\" par \"le pass\u00e9\" ? Le mot de \"normal\" porte toujours en lui-m\u00eame l'id\u00e9e que la situation pourrait redevenir ce qu'elle \u00e9tait avant. Malheureusement cela ne sera pas le cas.\n\nEt l'\u00e9volution du climat \u00e0 venir d\u00e9pend avant tout de ce que feront les chinois, les am\u00e9ricains, les indiens, et tout le reste du monde. Nous devons tout faire pour les inciter \u00e0 baisser leurs \u00e9missions, et comme nous ne pouvons pas envoyer les chars et les avions chez tout le monde pour les obliger, la meilleure arme qu'il nous reste est de commencer \u00e0 agir chez nous (de toute fa\u00e7on on va devoir le faire pour cause d'approvisionnement p\u00e9trolier et gazier d\u00e9clinant) en donnant un exemple que d'autres voudront suivre. Le mim\u00e9tisme est une r\u00e9alit\u00e9 dans les soci\u00e9t\u00e9s humaines.\n\nMais il faut dans le m\u00eame temps commencer \u00e0 s\u00e9rieusement se secouer sur ce qui s'appelle \"l'adaptation\" (et qui porte mal son nom puisque dans une partie des cas cela consistera h\u00e9las uniquement \u00e0 encaisser la perte avec regrets), parce que m\u00eame en commen\u00e7ant \u00e0 agir demain matin la d\u00e9rive climatique va s'amplifier \u00e0 cause de l'inertie du syst\u00e8me. \n\nAu titre de \"l'adaptation\" aussi, il faut modifier les cultures et les pratiques agricoles, la for\u00eat, repenser une partie des infrastructures, g\u00e9rer l'eau diff\u00e9remment, d\u00e9placer pr\u00e9ventivement des installations et b\u00e2timents de bord de mer, modifier les b\u00e2timents... Il y en a pour 2 g\u00e9n\u00e9rations et nous n'avons d\u00e9j\u00e0 que trop tra\u00een\u00e9. Peut-\u00eatre que de supprimer partout le mot \"normal\" pour le remplacer par \"pass\u00e9 r\u00e9volu\" nous aiderait \u00e0 acc\u00e9l\u00e9rer." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6931537363504390144,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6931537364439740416,urn:li:activity:6931537364439740416,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 118, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6931537364439740416,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6931537364439740416,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6931537364439740416", + "threadId": "activity:6931537364439740416", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6931537364439740416", + "urn": "urn:li:activity:6931537364439740416", + "numComments": 220, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6931537364439740416", + "reactionTypeCounts": [ + { + "count": 3543, + "reactionType": "LIKE" + }, + { + "count": 387, + "reactionType": "INTEREST" + }, + { + "count": 292, + "reactionType": "MAYBE" + }, + { + "count": 89, + "reactionType": "PRAISE" + }, + { + "count": 75, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6931537364439740416", + "numLikes": 4401, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6931537364439740416", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4401, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "9mo \u2022 ", + "accessibilityText": "9 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6931169978029121536,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6931169978029121536", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6931169978029121536)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6931169978029121536)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_appel-%C3%A0-d%C3%A9serter-remise-des-dipl%C3%B4mes-agroparistech-activity-6931169978029121536-1Cpm?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6931169977207033856", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6931169978029121536", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6931169978029121536,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6931169978029121536,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6931169977207033856", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "XvsdHLB+C7kAbU1cBt2MvA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6931169978029121536,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8911235398777052997", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676229128336?e=1677240000&v=beta&t=ELt_HKzNN2FaWaLeN5dztl0b3oR52eeFkVlz_iVUNZw", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676229128336?e=1677240000&v=beta&t=kuHdldJRISr0Hs8GIstcB0RXoIpbY3O-YHjV3uVa8jg", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676229128336?e=1677240000&v=beta&t=xWGsI4TmhbrgTEP5N6cyIB92kF87vH6rQw4bIDxFzJ8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676229128336?e=1677240000&v=beta&t=o0mPvQCtL9Lw1p199SkZ2Z-RAQQLz0QP4hLYlH3H3XY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH0AKXjrh5Xsg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8911235398777052997)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8911235398777052997)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Appel \u00e0 d\u00e9serter - Remise des dipl\u00f4mes AgroParisTech 2022 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=SUOVOC2Kd50" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Discours d'un groupe d'agros qui bifurquent \u00e0 la remise des dipl\u00f4mes d'AgroParisTech 2022. EDITED : ENGLISH, SPANISH & GERMAN SUBTILES Contact : agros.bifurquent@protonmail.com Instagram : @bifurquons Parce que ce qui compte c'est ce qui se passera..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Appel \u00e0 d\u00e9serter - Remise des dipl\u00f4mes AgroParisTech 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6931169977207033856,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1883, + "length": 25, + "miniCompany": { + "objectUrn": "urn:li:company:14821160", + "entityUrn": "urn:li:fs_miniCompany:14821160", + "name": "Pour un r\u00e9veil \u00e9cologique", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1611686863763?e=1684972800&v=beta&t=qrHOF5RpuS_vrJL5PmyugmHNV56dITYGx3JmkIPTt4g", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1611686863763?e=1684972800&v=beta&t=9MqucCzrGpzwgtmRInipDsUpXsfk0yJpREzKw7MirWE", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1611686863763?e=1684972800&v=beta&t=_fVG3UT8ftdBL8aHh4f1xrtRdf7CKNtYKbKvCEfYLUE", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGPFTxlgBwqsg/company-logo_" + } + }, + "universalName": "pour-un-reveil-ecologique", + "dashCompanyUrn": "urn:li:fsd_company:14821160", + "trackingId": "mLxOjwwwRL+ApFWShdqb2Q==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Apr\u00e8s le discours d'un jeune dipl\u00f4m\u00e9 de Centrale Nantes qui avait d\u00e9j\u00e0 fait un peu de bruit (https://lnkd.in/eAyiq7At), c'est au tour d'un groupe de jeunes dipl\u00f4m\u00e9s d'AgroParisTech de dire son malaise \u00e0 l'id\u00e9e de se mettre au service d'un projet dans lequel ils ne se reconnaissent pas.\n\nUne fois ce constat pos\u00e9 arrive in\u00e9vitablement la question suivante : que faire ? Et si le syst\u00e8me doit \u00eatre chang\u00e9, faut-il entrer dans les organisations existantes pour les modifier de l'int\u00e9rieur, ou \"d\u00e9serter\", c'est \u00e0 dire s'y opposer de l'ext\u00e9rieur ?\n\nLa bonne r\u00e9ponse emprunte probablement aux deux. En esp\u00e9rant que cela sera utile, voici quelques constats issus de ma modeste exp\u00e9rience :\n\n- \"de l'int\u00e9rieur\", un jeune fra\u00eechement dipl\u00f4m\u00e9 a un pouvoir plus que r\u00e9duit pour \"tout changer\". Le pouvoir dans l'entreprise est exerc\u00e9 par des cadres qui ont d\u00e9j\u00e0 de l'exp\u00e9rience (au moins 10 ans et souvent 20 \u00e0 30). Et la cr\u00e9dibilit\u00e9 s'acquiert surtout par des exp\u00e9riences de gestion op\u00e9rationnelle (patron(ne) d'une unit\u00e9 de production, responsable d'une marque, d'une zone, d'un centre de R&D, etc), et rarement par des exp\u00e9riences fonctionnelles comme la RSE, la seule exception \u00e9tant celle de la personne en charge des finances... c'est \u00e0 dire de l'indicateur conventionnel qui pose justement probl\u00e8me. Dit autrement, en entreprise on ne peut \u00eatre cr\u00e9dible pour changer les choses de l'int\u00e9rieur qu'une fois que l'on a contribu\u00e9 \u00e0 perp\u00e9tuer la situation \u00e0 probl\u00e8me telle qu'elle est. Probl\u00e8me !\n\n- par contre, dire que l'on ne veut pas aller dans une entreprise qui ne fait pas d'efforts, ou la quitter rapidement apr\u00e8s y \u00eatre entr\u00e9 pour cette raison, a de l'impact si ce mouvement se g\u00e9n\u00e9ralise. J'ai observ\u00e9 plusieurs fois des dirigeants d'entreprise impulser des \"grandes manoeuvres\" en constatant que leur entreprise perdait rapidement en attractivit\u00e9 aupr\u00e8s des jeunes. Le manifeste Pour un r\u00e9veil \u00e9cologique oeuvre en ce sens.\n\n- la bonne combinaison de l'exp\u00e9rience et de l'action vient en g\u00e9n\u00e9ral de personnes plus \u00e2g\u00e9es - donc vues comme plus cr\u00e9dibles - qui ont compris de l'int\u00e9rieur le fonctionnement, connaissent les codes, puis se sont mises \"\u00e0 l'ext\u00e9rieur\" pour bousculer les acteurs. Cela donne des entit\u00e9s qui d'entr\u00e9e de jeu se positionnent pour \"changer les choses\" (une tentative de recension existe l\u00e0 : https://shiftyourjob.org/ ). A ce moment la bonne question est de savoir \u00e9valuer la le potentiel de contribution de l'entreprise en question. La cl\u00e9 de la r\u00e9ponse \u00e0 cette question s'appelle la connaissance fine du probl\u00e8me \u00e0 r\u00e9soudre.\n\n- les aventures individuelles \"dehors\" (devenir peintre ou apiculteur) aident le reste de la soci\u00e9t\u00e9 \u00e0 bouger dans le bon sens si elles sont reproductibles \u00e0 large \u00e9chelle ou essentielles dans l'ensemble. Pionniers et marginaux ne sont pas exactement la m\u00eame chose !\n\n\"D\u00e9serter\" au sens de \"ne plus entendre parler du probl\u00e8me\" n'est h\u00e9las pas possible. Qu'on le veuille ou pas, nous sommes tou(te)s dedans !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6931169977207033856,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6931169978029121536,urn:li:activity:6931169978029121536,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 84, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6931169978029121536,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6931169978029121536,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6931169978029121536", + "threadId": "activity:6931169978029121536", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6931169978029121536", + "urn": "urn:li:activity:6931169978029121536", + "numComments": 123, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6931169978029121536", + "reactionTypeCounts": [ + { + "count": 1512, + "reactionType": "LIKE" + }, + { + "count": 114, + "reactionType": "PRAISE" + }, + { + "count": 106, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "INTEREST" + }, + { + "count": 27, + "reactionType": "APPRECIATION" + }, + { + "count": 21, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6931169978029121536", + "numLikes": 1811, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6931169978029121536", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1811, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6930786919966502912,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6930786919966502912", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6930786919966502912)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6930786919966502912)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_dans-le-cadre-de-la-15%C3%A8-cop-de-la-convention-activity-6930786919966502912-5sFS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6930786919110868992", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6930786919966502912", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6930786919966502912,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6930786919966502912,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6930786919110868992", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "X/uEyeCwfOxnFirPbGl4qA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6930786919966502912,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGPiDCt9YWUpQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGPiDCt9YWUpQ", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1652428368640?e=1679529600&v=beta&t=m2g5TJV9LArFcxg0eyE6wOw8m3lriAbuyEj-QQ-CuGA", + "expiresAt": 1679529600000, + "height": 1068 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1652428368069?e=1679529600&v=beta&t=jGRPoTqsqrjeD17pdkvOMuCtTa4RF-5VhXd4d0Akd9s", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1652428368069?e=1679529600&v=beta&t=1meDHYXQaqQWr3q22flnb59oKbKaRFdQupRu7gCBJKE", + "expiresAt": 1679529600000, + "height": 668 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1652428368069?e=1679529600&v=beta&t=CHryBObYFrh9PAGqO3n2jG-ugqS4blm7LzLgQme1oh0", + "expiresAt": 1679529600000, + "height": 250 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1652428368069?e=1679529600&v=beta&t=RGDJEzLm1e0q3Y-k2ueVJEyGP-cJduimUZgHPOmgdCk", + "expiresAt": 1679529600000, + "height": 83 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1652428368069?e=1679529600&v=beta&t=KejVoQilv0giP92w6-vWwnNy7vbcLP4OBepBFggiNys", + "expiresAt": 1679529600000, + "height": 417 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGPiDCt9YWUpQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.521484375 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "map" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6930786919110868992,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans le cadre de la 15\u00e8 COP de la Convention des Nations Unies pour combattre la d\u00e9sertification, vient de para\u00eetre un \u00e9tat des lieux des s\u00e9cheresses dans le monde, intitul\u00e9 \"Drought in Numbers 2022\" (https://lnkd.in/eKYW-e-C ), \u00e9galement disponible en version fran\u00e7aise : https://lnkd.in/eUV9n_nF\n\nOn y apprend que d'ici \u00e0 2040 un enfant sur quatre dans le monde vivra (comment s'il ne pousse rien ?) dans une r\u00e9gion avec une p\u00e9nurie extr\u00eame d'eau.\n\nComme on peut le voir sur la carte ci-dessous, il n'y a pas que les pays \"\u00e9mergents\" - au premier chef l'Inde et son milliard d'habitants - qui sont d\u00e9j\u00e0 concern\u00e9s par le probl\u00e8me, qui, de 2020 \u00e0 2022 - sans m\u00eame parler d'avenir - a touch\u00e9 l'Europe, les USA, et la Chine. Et encore, cette carte n'incorpore pas, \u00e0 l'\u00e9vidence, les s\u00e9cheresses survenant \u00e0 l'occasion d'\u00e9pisodes caniculaires dans les for\u00eats des hautes latitudes nord (Sib\u00e9rie, Canada).\n\nLa s\u00e9cheresse et la d\u00e9sertification associ\u00e9e font perdre chaque ann\u00e9e 12 millions d'hectares de terres sur la plan\u00e8te, soit le m\u00eame ordre de grandeur que ce qui est du \u00e0 la d\u00e9forestation selon les m\u00eames Nations Unies (https://lnkd.in/eSHwxgW7 ). Certes la d\u00e9sertification touche des terres qui sont moins \"riches\" que les for\u00eats \u00e9quatoriales, mais ca fait quand m\u00eame un gros paquet de km2...\n\nEt, bien \u00e9videmment, le changement climatique en cours intensifie le probl\u00e8me dans de nombreuses r\u00e9gions du monde, ce qui n'est pas une bonne nouvelle. Une des r\u00e9gions qui sera le plus touch\u00e9e c'est... la n\u00f4tre, \u00e0 savoir le pourtour du bassin m\u00e9diterran\u00e9en. Sachant que, sans surprise, le rapport rappelle que la s\u00e9cheresse est un d\u00e9terminant direct - p\u00e9nurie alimentaire - ou indirect - violences politiques ou militaires qui d\u00e9coulent de la situation de stress - de migrations, il est probable que nous n'ayons pas fini de discuter de l'accueil ou pas, chez nous, de personnes venant de \"plus au sud\"...\n\nComme pour beaucoup de risques, s'en occuper am\u00e9liore l'avenir par rapport au fait de ne pas s'en occuper. La recette est la m\u00eame que partout ailleurs : il faut d'abord se former \u00e0 la compr\u00e9hension du probl\u00e8me (ce qui n'est pas fait aujourd'hui, et le rapport rappelle que les couts d'aujourd'hui ne sont pas pr\u00e9dictifs de la facilit\u00e9 \u00e0 faire demain), puis se creuser la cervelle pour voir ce qui est faisable et avec quels moyens pour att\u00e9nuer les cons\u00e9quences futures (changement de cultures ou d'arbres plant\u00e9s, modification des syst\u00e8mes d'irrigation, implantation de r\u00e9servoirs de captage d'eau de pluie, etc).\n\nL'autre solution est de d\u00e9m\u00e9nager tous les indiens et habitants du Maghreb chez Poutine. On peut \u00e9ventuellement lui poser la question puisque nous l'avons r\u00e9guli\u00e8rement au t\u00e9l\u00e9phone pour d'autres raisons ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6930786919110868992,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6930786919966502912,urn:li:activity:6930786919966502912,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6930786919966502912,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6930786919966502912,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6930786919966502912", + "threadId": "activity:6930786919966502912", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6930786919966502912", + "urn": "urn:li:activity:6930786919966502912", + "numComments": 108, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6930786919966502912", + "reactionTypeCounts": [ + { + "count": 775, + "reactionType": "LIKE" + }, + { + "count": 131, + "reactionType": "INTEREST" + }, + { + "count": 94, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6930786919966502912", + "numLikes": 1025, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6930786919966502912", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1025, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6930517090588110851,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6930517090588110851", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6930517090588110851)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6930517090588110851)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_on-meurt-d%C3%A9j%C3%A0-de-la-chaleur-en-inde-et-au-activity-6930517090588110851-pZm2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6930517090021879809", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6930517090588110851", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6930517090588110851,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6930517090588110851,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6930517090021879809", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "7zGMTcJtvBFJJ45gK33urw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6930517090588110851,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8062404258590006293", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675567208957?e=1677240000&v=beta&t=ps-12q5ZfN-aF4kgeKa6vlOchHHNgx8RVzmTXsgm3mg", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675567208958?e=1677240000&v=beta&t=CKIDOmtxK_PmGSWivLi9Zil3lz6jiPCi46-_zS-7B0M", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675567208958?e=1677240000&v=beta&t=YgiqZrNgaWUr5WUniMwiygFPvWY-9wk8-63J6x2xwFA", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675567208958?e=1677240000&v=beta&t=frdXMk-L3ro99_vvxL9sCIMJjtgFuSBGB4fEta-yEK0", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFavOOkqYwpCA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8062404258590006293)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8062404258590006293)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "huffingtonpost.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: On meurt d\u00e9j\u00e0 de la chaleur en Inde et au Pakistan by huffingtonpost.fr", + "actionTarget": "https://www.huffingtonpost.fr/entry/inde-pakistan-temperature-atteint-deja-le-seuil-fatal-a-lhomme_fr_627bc8ade4b03ca8364a11fc" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "On meurt d\u00e9j\u00e0 de la chaleur en Inde et au Pakistan" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6930517090021879809,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Sous nos latitudes, quand il fait chaud, il fait sec. C'est une mauvaise nouvelle pour la v\u00e9g\u00e9tation, mais une bonne nouvelle pour nos organismes. En effet, un air tr\u00e8s chaud mais sec emp\u00eache notre organisme de se refroidir par contact avec l'air, mais pas de se refroidir par \u00e9vaporation la sueur. \n\nIl en va tout autrement quand l'air est chaud et humide. A ce moment \u00e9vacuer de la chaleur par transpiration devient de plus en plus difficile. Avec un air satur\u00e9 d'humidit\u00e9 (donc rendant totalement impossible de transpirer), il y a un risque mortel au bout de quelques heures si la temp\u00e9rature de l'air d\u00e9passe 35 \u00b0C.\n\nCes conditions vont appara\u00eetre de plus en plus souvent dans le monde au fur et \u00e0 mesure que la d\u00e9rive climatique s'accentuera. 50 \u00b0C au Pakistan en avril, c'est avec une temp\u00e9rature plan\u00e9taire qui a \"juste\" augment\u00e9 de 1,1\u00b0C. \n\nL'\u00e2ge de la retraite nous pr\u00e9occupe beaucoup actuellement. Les retrait\u00e9s d'aujourd'hui - et plus encore les \u00e9lus qui leur parlent puisque les \u00e9lecteurs sont avant tout des gens \u00e2g\u00e9s - r\u00e9alisent-ils que, pour les trentenaires d'aujourd'hui, si nous continuons \u00e0 nous occuper avant tout de l'\u00e2ge de la retraite avant de nous occuper des limites plan\u00e9taires, 2060 correspond \u00e0 un monde qui sera profond\u00e9ment boulevers\u00e9 par rapport \u00e0 aujourd'hui, au point que cette retraite, si elle a lieu, ne se d\u00e9roulerait pas vraiment dans les conditions actuelles ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6930517090021879809,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6930517090588110851,urn:li:activity:6930517090588110851,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 64, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6930517090588110851,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6930517090588110851,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6930517090588110851", + "threadId": "activity:6930517090588110851", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6930517090588110851", + "urn": "urn:li:activity:6930517090588110851", + "numComments": 162, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6930517090588110851", + "reactionTypeCounts": [ + { + "count": 3431, + "reactionType": "LIKE" + }, + { + "count": 498, + "reactionType": "INTEREST" + }, + { + "count": 361, + "reactionType": "MAYBE" + }, + { + "count": 119, + "reactionType": "APPRECIATION" + }, + { + "count": 80, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6930517090588110851", + "numLikes": 4503, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6930517090588110851", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4503, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6930417249023369216,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6930417249023369216", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6930417249023369216)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6930417249023369216)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_crise-des-approvisionnements-et-du-climat-activity-6930417249023369216-CXqf?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6930417248197095425", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6930417249023369216", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6930417249023369216,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6930417249023369216,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6930417248197095425", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "RzE/BgDjlc8fAOD70kj4lQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6930417249023369216,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8852388654101131545", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676398672584?e=1677240000&v=beta&t=y8wnsZyilG9mBsmRJelD2b7fDC806IXC_aDbUov_DOM", + "expiresAt": 1677240000000, + "height": 1200 + }, + { + "width": 533, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676398672584?e=1677240000&v=beta&t=LIu9DzaEqo398ONpdPothdrtmGmBBhDEpHIZ8yPB0zU", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676398672585?e=1677240000&v=beta&t=rQ2Zd5LwZu0irvytGrRQveVoWCNQiukfc2pn1DQqzYk", + "expiresAt": 1677240000000, + "height": 240 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676398672585?e=1677240000&v=beta&t=__6vf2zFsu1vjv_yDUu3SzZrsH_7MK57A8qov-UwCkM", + "expiresAt": 1677240000000, + "height": 720 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHj7Ter45HLaQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.5 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8852388654101131545)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8852388654101131545)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Crise des approvisionnements et du climat : faut-il augmenter les exigences de reporting carbone pour les entreprises ? | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/analyse-reporting-carbone-entreprises-faut-il-augmenter-les-exigences" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Crise des approvisionnements et du climat : faut-il augmenter les exigences de reporting carbone pour les entreprises ? | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6930417248197095425,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "De trop nombreuses entreprises consid\u00e8rent encore que de s'occuper des \u00e9missions de gaz \u00e0 effet de serre a pour premier objectif de \"faire joli\" sur les rapports annuels. C'est du reste pour cette raison que l'une des trois \"revendications\" que j'ai formul\u00e9es lorsque j'ai \u00e9t\u00e9 re\u00e7u par notre pr\u00e9sident r\u00e9\u00e9lu (il y a une semaine : https://lnkd.in/eg2dBAHU) \u00e9tait de renforcer les obligations pour les entreprises. Ces derni\u00e8res - dont Carbone 4 fait partie - ne tiennent pas des comptes - en euros - juste parce que \"ca fait joli\". Elles le font parce qu'il y a des sanctions p\u00e9nales \u00e0 ne pas le faire, alors que sur le carbone - pourtant porteur d'enjeux au moins aussi consid\u00e9rables que de gruger son banquier ou son client - il n'y en a aucune.\n\nDans le contexte de \"d\u00e9mondialisation accidentielle\"que le covid et la guerre en Ukraine nous am\u00e8nent (car ces deux \u00e9pisodes rendent plus difficiles de se procurer certaines denr\u00e9es qui ne sont pas produites sur notre sol), on pourrait se dire que l'urgence n'est pas de renforcer les exigences de reporting carbone pour les entreprises. Tout le rebours.\n\nCertes cet article de Carbone 4 est un plaidoyer pro domo (ca nous arrive aussi :) ). Mais il rappelle que nous ne construirons pas une soci\u00e9t\u00e9 nouvelle, comme y aspirent les \u00e9tudiants d'AgroParisTech qui viennent de se faire remarquer avec un discours \"non conventionnel\" (https://lnkd.in/ed3q9AkH ), avec la boite \u00e0 outils du monde actuel.\n\nUne fois que l'on a dit qu'il fallait tout changer, nous n'avons fait que le plus facile : le plus difficile n'est pas de d\u00e9crire ce qui ne doit plus \u00eatre, mais de d\u00e9crire ce qui devrait \u00eatre, et de proposer les outils et m\u00e9thodes qui permettent d'y aller au bon rythme (qui sera \"d'enfer\") avec la contribution de tout le monde ou presque.\n\nEvidemment cet article s'inscrit dans un cadre de pens\u00e9e o\u00f9 il reste des entreprises - c'est \u00e0 dire des activit\u00e9s productives priv\u00e9es - dans un monde qui se d\u00e9carbone. Il appartient normalement \u00e0 celles et ceux qui pensent qu'il n'en faut plus du tout de proposer une construction alternative r\u00e9aliste (rappelons que l'apiculteur qu'un des \u00e9tudiants de l'agro se propose d'\u00eatre est une activit\u00e9 productive priv\u00e9e, et qu'il ne faut pas confondre multinationales et \"toutes les entreprises\" !).\n\nDans un monde o\u00f9 il reste des entreprises, l'urgence est donc de les forcer \u00e0 \"bien faire les choses\". Nous esp\u00e9rons que la lecture de cet article alimentera utilement ce d\u00e9bat... urgent." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6930417248197095425,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6930417249023369216,urn:li:activity:6930417249023369216,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 21, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6930417249023369216,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6930417249023369216,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6930417249023369216", + "threadId": "activity:6930417249023369216", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6930417249023369216", + "urn": "urn:li:activity:6930417249023369216", + "numComments": 29, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6930417249023369216", + "reactionTypeCounts": [ + { + "count": 490, + "reactionType": "LIKE" + }, + { + "count": 34, + "reactionType": "MAYBE" + }, + { + "count": 24, + "reactionType": "PRAISE" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6930417249023369216", + "numLikes": 581, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6930417249023369216", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 581, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6930150707132022784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6930150707132022784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6930150707132022784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6930150707132022784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_signez-la-p%C3%A9tition-activity-6930150707132022784-db9s?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6930150706330923008", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6930150707132022784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6930150707132022784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6930150707132022784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6930150706330923008", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "zx95KMs7VTCN9W0BM+eNsg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6930150707132022784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7883404802345776143", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675861660129?e=1677240000&v=beta&t=zjir6E7qzRB8DzVrSvSgIm-iD3FBebPeLLjdtcT2kzY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675861660129?e=1677240000&v=beta&t=2bm2hXD2s8JZPB1cg0TO1P-odxehgBW2zYqAIypf02Y", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675861660130?e=1677240000&v=beta&t=KuVKKwA3Tnkqe_RpcujhZhW0SsBHE3gJAJklCNJCWk4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675861660130?e=1677240000&v=beta&t=xqSr3gqH6IIkH8ja5IVW7gGfXJgvuPja72tSN77ZrAs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGi8BwX_U5UTQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7883404802345776143)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7883404802345776143)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "change.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Signez la p\u00e9tition by change.org", + "actionTarget": "https://www.change.org/p/formation-obligatoire-%C3%A0-la-transition-%C3%A9cologique-pour-le-pr%C3%A9sident-emmanuelmacron-et-le-gouvernement-formation20heures" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Signez la p\u00e9tition" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6930150706330923008,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'\u00e9tait initialement une tribune parue dans le JDD, et c'est devenu une p\u00e9tition. Faut-il mobiliser les foules pour une \"simple\" formation de quelques dizaines de personnes, \u00e0 savoir les membres d'un (futur) gouvernement, \u00e0 la question climatique et \u00e9nerg\u00e9tique, quand il y a par ailleurs la guerre en Ukraine, la famine dans l'Est de l'Afrique, des pers\u00e9cutions un peu partout dans le monde, la dette qui atteint des sommets et un Etat am\u00e9ricain qui rassure de moins en moins ?\n\nParadoxalement oui : plus le monde devient en apparence incertain, plus il est utile de se raccrocher \u00e0 des certitudes et des choses qui ne changent pas. Et si le monde semble devenir inexplicable et impr\u00e9visible quand on regarde les indicateurs \u00e9conomiques et sociaux, il est malheureusement parfaitement lisible quand on regarde les indicateurs physiques. \n\nOr gouverner, n'est-ce pas pr\u00e9voir, et donc savoir \"lire le monde\" avec la bonne cl\u00e9 de lecture, d\u00e9sormais physique ? \n\nPar ailleurs, un gouvernement ce n'est pas n'importe quel groupe de 20 personnes : dans notre r\u00e9gime pr\u00e9sidentiel en vigueur (o\u00f9 le gouvernement fixe l'agenda du parlement et lui soumet les projets de loi), c'est de fait l'arbitre en dernier ressort de toutes les d\u00e9cisions qui rel\u00e8vent de la sph\u00e8re publique. Il n'est est pas de m\u00eame dans la quasi-totalit\u00e9 des autres d\u00e9mocraties (o\u00f9 le parlement poss\u00e8de plus de pouvoir), mais chez nous ce groupe d'individus tient beaucoup de r\u00eanes du pouvoir pendant l'exercice de son mandat.\n\nPour beaucoup de portefeuilles il est consid\u00e9r\u00e9 comme normal que le/la titulaire du poste sache un peu de quoi on parle : un(e) ministre de la d\u00e9fense est pri\u00e9(e) de savoir ce qu'est un soldat ou un porte avion, ou de l'apprendre tr\u00e8s vite. De m\u00eame, il est de bon ton qu'un(e) ministre de la sant\u00e9 sache pr\u00e9alablement, ou comprenne tr\u00e8s vite, ce qu'est un virus.\n\nA 8 milliards sur terre, il existe une r\u00e9alit\u00e9 physique qui vient d\u00e9sormais tamponner de plus en plus chacun de nos plans pour l'avenir : les limites plan\u00e9taires, en mati\u00e8re d'\u00e9nergie, de mat\u00e9riaux, d'environnement, de biodiversit\u00e9, etc.\n\nComprendre - pour un gouvernement - quels sont les degr\u00e9s de libert\u00e9 que nous avons perdus et ceux qu'il nous reste dans ce monde l\u00e0 est donc devenu essentiel, pour faire des plans qui seront compatibles avec ces limites. Il ne reste que quelques mandats pr\u00e9sidentiels ou l\u00e9gislatifs avant 2050 : nous pouvons chaque ann\u00e9e un peu moins nous permettre le luxe de prendre des d\u00e9cisions sur lesquelles il faudrait revenir ensuite parce qu'elles ne sont pas en accord avec le cadre physique.\n\nEnfin l'exp\u00e9rience de la Convention Citoyenne pour le Climat a prouv\u00e9 une chose : la formation aux enjeux (et il s'agit bien d'une formation, pas d'une \"sensibilisation\") fait passer tout(e) citoyen(ne) de \"sensibilis\u00e9 mais pas n\u00e9cessairement acteur\" \u00e0 \"ayant envie d'agir\". \n\nDonc ce n'est que 20 personnes. Et ce n'est que 20 heures. Mais l'effet de levier est potentiellement consid\u00e9rable." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6930150706330923008,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6930150707132022784,urn:li:activity:6930150707132022784,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 194, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6930150707132022784,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6930150707132022784,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6930150707132022784", + "threadId": "activity:6930150707132022784", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6930150707132022784", + "urn": "urn:li:activity:6930150707132022784", + "numComments": 251, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6930150707132022784", + "reactionTypeCounts": [ + { + "count": 5125, + "reactionType": "LIKE" + }, + { + "count": 332, + "reactionType": "PRAISE" + }, + { + "count": 315, + "reactionType": "APPRECIATION" + }, + { + "count": 72, + "reactionType": "EMPATHY" + }, + { + "count": 33, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6930150707132022784", + "numLikes": 5899, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6930150707132022784", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5899, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6929678521548075009,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6929678521548075009", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6929678521548075009)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6929678521548075009)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-publie-son-nouveau-rapport-interm%C3%A9diaire-activity-6929678521548075009-n56p?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6929678520134594560", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6929678521548075009", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6929678521548075009,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6929678521548075009,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6929678520134594560", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "xSbgPf7p6Qe8UrP1qR5bFQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6929678521548075009,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8552964389797084719", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676282111091?e=1677240000&v=beta&t=vxYA2gSeexKRzx3iTctB3WHR-vnYRu0KQ86jiWoIvMI", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676282111091?e=1677240000&v=beta&t=2l_WMvnjEnShTW9DyKJlvwfaITfNJB43N9M8C2R1-t8", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676282111091?e=1677240000&v=beta&t=uar19oG2EhDDrDy5Mn28xrWx-0WBbrpPsMmOD6FYC6k", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676282111091?e=1677240000&v=beta&t=Hdk-mMLRIQrSadsrPU2h6JCM5xkuZagYSx-oPtCoHFI", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFBf_rnN92hTA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8552964389797084719)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8552964389797084719)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift publie son nouveau rapport interm\u00e9diaire ! by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/climatsup-business-rapport-intermediaire-mai-2022/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift publie son nouveau rapport interm\u00e9diaire !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6929678520134594560,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Que doivent savoir les dipl\u00f4m\u00e9s \u00e0 l\u2019issue d\u2019une formation en gestion dans un monde qui doit se confronter aux limites plan\u00e9taires, et notamment celle li\u00e9e au climat ?\n\nC'est \u00e0 cette question que tente de r\u00e9pondre The Shift Project dans le cadre du projet \"Climasup Business\", pour lequel Audencia a \u00e9t\u00e9 pris comme cas pratique d'\u00e9tude.\n\nQue dispenser comme cours, comment les rendre coh\u00e9rents avec des limites physiques non prises en compte jusqu'\u00e0 maintenant (puisque les prix n'int\u00e8grent pas, par construction, les ressources naturelles indispensables \u00e0 l'existence d'une \u00e9conomie), comment embarquer le corps enseignant dans l'aventure, etc ? Bref, \"g\u00e9rer\" dans un monde qui se d\u00e9carbone, cela doit se faire comment ?\n\nApr\u00e8s 7 mois de travail, The Shift Project vient de publier son rapport provisoire. Il s'agit donc d'un \"document martyr\", destin\u00e9 \u00e0 \u00eatre lu puis comment\u00e9 par toutes les personnes qui le souhaitent, et \u00e9videmment au premier chef les enseignant(e)s, gestionnaires, \u00e9l\u00e8ves et anciens \u00e9l\u00e8ves de ces cursus, et... leurs employeurs. \n\nPour d'excellentes raisons, le sujet de la formation (initiale et continue) de la population aux enjeux environnementaux est un th\u00e8me \"qui monte\" dans le d\u00e9bat public, parce qu'il est \u00e9vident que de b\u00e2tir des projets de soci\u00e9t\u00e9 en accord avec une plan\u00e8te finie (qu'on le veuille ou non !) ne peut pas se faire sans les connaissances et comp\u00e9tences qui vont avec.\n\nAlors si le sujet vous int\u00e9resse, \u00e0 vos r\u00e9tines (pour lire le document) puis \u00e0 vos claviers !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6929678520134594560,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6929678521548075009,urn:li:activity:6929678521548075009,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6929678521548075009,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6929678521548075009,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6929678521548075009", + "threadId": "activity:6929678521548075009", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6929678521548075009", + "urn": "urn:li:activity:6929678521548075009", + "numComments": 29, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6929678521548075009", + "reactionTypeCounts": [ + { + "count": 388, + "reactionType": "LIKE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 16, + "reactionType": "INTEREST" + }, + { + "count": 11, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6929678521548075009", + "numLikes": 447, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6929678521548075009", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 447, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6929482930524172290,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6929482930524172290", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6929482930524172290)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6929482930524172290)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_leurope-veut-se-passer-du-p%C3%A9trole-russe-activity-6929482930524172290-UayX?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6929482929358135296", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6929482930524172290", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6929482930524172290,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6929482930524172290,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6929482929358135296", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "yasjAv62CpCaIwpy+8607w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6929482930524172290,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFP1k5WjvbUmw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFP1k5WjvbUmw", + "artifacts": [ + { + "width": 1602, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1652117471361?e=1679529600&v=beta&t=ffH4jSJdgZX0GREsuH2C0Quiwt71RuslAW1fQrVGbKg", + "expiresAt": 1679529600000, + "height": 902 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1652117472891?e=1679529600&v=beta&t=Si9IDdo1pCVRu3JJdVPDWp3FS47CETQQhL8w1RWAfC4", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1652117472891?e=1679529600&v=beta&t=YhmzyDLHvjvAdcBJVYk9FV9VlWOviXmuXTLNfutZWek", + "expiresAt": 1679529600000, + "height": 721 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1652117472891?e=1679529600&v=beta&t=AY8XYn_OKw8SsQzxBVFD6V9K4od4ZZsK1Pa6BkuU-aM", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1652117472891?e=1679529600&v=beta&t=MhjOLl5C5ZQD7Z_lbfbSixVhqdYh_IWi8uFbMIRwBe8", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1652117472891?e=1679529600&v=beta&t=le_cIcuif6GarVtGWhYcZpBpC5tefsHSigvI7GkQgwI", + "expiresAt": 1679529600000, + "height": 450 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFP1k5WjvbUmw/feedshare-shrink_" + }, + "displayAspectRatio": 0.5630461922596754 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, line chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6929482929358135296,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Europe veut se passer du p\u00e9trole russe (https://lnkd.in/dSMiBXA4 ). Facile ?\n\nLa Russie produit actuellement un peu plus de 10 millions de barils par jour de p\u00e9trole et condensats (https://lnkd.in/dHgeypb2 ) sur une plan\u00e8te qui en produit 80 au total (graphique ci-dessous). De l\u00e0 une premi\u00e8re certitude : sauf \u00e0 se passer instantan\u00e9ment de 12,5% du p\u00e9trole mondial (ce qui s'est \u00e0 peu de choses pr\u00e8s produit involontairement en 2020, avec comme contrepartie 5% de r\u00e9cession), le monde ne fera pas instantan\u00e9ment sans le p\u00e9trole russe. \n\nAttendons que la production d'or noir croisse, alors ! (et au Diable le climat). Mais on notera sur le m\u00eame graphique que, depuis 2016, la production mondiale n'augmentait plus beaucoup, et il y avait m\u00eame une l\u00e9g\u00e8re d\u00e9crue amorc\u00e9e avant le covid, puisque le pic \u00e0 date de cette production mondiale est en novembre 2018. \n\nAllons ailleurs que chez Poutine alors ! Si nous faisons cela pour \"ass\u00e9cher\" ses finances, il faut \u00e9videmment \u00eatre sur que le p\u00e9trole en question ne trouvera pas preneur du tout, sinon la Russie sera toujours autant financ\u00e9e, mais juste pas par les m\u00eames. En effet, dans un monde qui est d\u00e9j\u00e0 un peu \u00e0 la peine pour s'approvisionner, si ce n'est pas nous qui prenons le p\u00e9trole russe, il est probable qu'il finira assez vite par trouver preneur ailleurs, aux goulets d'\u00e9tranglement logistiques - rarement \u00e9ternels - pr\u00e8s.\n\nEn 2020, l'Europe a consomm\u00e9... un peu plus de 10 millions de barils par jour de p\u00e9trole et produits p\u00e9troliers, soit l'\u00e9quivalent de la production de la Russie. Cette derni\u00e8re exporte environ les 2/3 de sa production (et consomme le tiers restant). L'Europe repr\u00e9sentait 50% des exportations russes de p\u00e9trole brut et de produits p\u00e9troliers en 2020, qui permettent donc environ un tiers de notre consommation.\n\nQuestion : o\u00f9 trouver un peu plus de 3 millions de barils par jour de p\u00e9trole chez des producteurs qui auraient la production (ou la capacit\u00e9 \u00e0 l'avoir) et pas de clients ? La r\u00e9ponse est... \u00e0 peu pr\u00e8s nulle part, sauf \u00e0 jouer \u00e0 un jeu de taquin : un client du p\u00e9trole (au hasard la Chine) prend \u00e0 la Russie un p\u00e9trole qu'avant elle prenait ailleurs et du coup le \"ailleurs\" peut vendre \u00e0 l'Europe. \n\nIncidemment le \"ailleurs\" est souvent d\u00e9j\u00e0 en d\u00e9clin : c'est le cas de l'ensemble de l'Afrique, de l'ensemble de l'Am\u00e9rique du sud, de l'ensemble de l'Europe, de l'ensemble de l'Asie, du Mexique... Bref \u00e0 part le Moyen Orient et les USA les \"r\u00e9serves de croissance\" \u00e0 horizon de quelques ann\u00e9es ne semblent pas tr\u00e8s \u00e9lev\u00e9es. \n\nD'o\u00f9 le casse-t\u00eate europ\u00e9en !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6929482929358135296,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6929482930524172290,urn:li:activity:6929482930524172290,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 47, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6929482930524172290,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6929482930524172290,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6929482930524172290", + "threadId": "activity:6929482930524172290", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6929482930524172290", + "urn": "urn:li:activity:6929482930524172290", + "numComments": 103, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6929482930524172290", + "reactionTypeCounts": [ + { + "count": 736, + "reactionType": "LIKE" + }, + { + "count": 146, + "reactionType": "INTEREST" + }, + { + "count": 110, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6929482930524172290", + "numLikes": 999, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6929482930524172290", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 999, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6929013728281554944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6929013728281554944", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6929013728281554944)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6929013728281554944)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lint%C3%A9grale-cest-notre-plan%C3%A8te-0705-activity-6929013728281554944-h5T_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6929013727648227328", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6929013728281554944", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6929013728281554944,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6929013728281554944,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6929013727648227328", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "rSJ529QGBakCboV52zQuLg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6929013728281554944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8620489362060499223", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676386471770?e=1677240000&v=beta&t=pkZHc3iu9SKWw19seRRHoU6WLdN-6BHQhU1XJyC23v0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676386471770?e=1677240000&v=beta&t=SmVfNHd_VvtrvULMhRpcSxD91SCCDM1bCWLDf5sCcn8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676386471770?e=1677240000&v=beta&t=LF7V4sqnBGl8C2o-4VjXNrsTKT8JhOHjem6gvFXoleM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676386471770?e=1677240000&v=beta&t=yTF_jVmTXfau38zrOyEtVXqhQ9Wf0-ariNHLRwSKiMw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGCbdK9oo7wew/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8620489362060499223)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8620489362060499223)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'INT\u00c9GRALE - C'est notre Plan\u00e8te (07/05/22) by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900152200-l-integrale-c-est-notre-planete-07-05-22" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'INT\u00c9GRALE - C'est notre Plan\u00e8te (07/05/22)" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6929013727648227328,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Elle est apparue dans l'entre-deux tours : la \"planification \u00e9cologique\". Quesse\u00e7a ? Un sujet de dissertation pour le bac :) ?\n\nA d\u00e9faut d'avoir une d\u00e9finition normative, cette expression m'a au moins inspir\u00e9 un commentaire de quelques minutes hier matin sur RTL, o\u00f9 j'ai tent\u00e9 ma propre d\u00e9finition de la chose : la \"planification \u00e9cologique\", ce serait notamment de mettre les activit\u00e9s humaines en harmonie avec les limites plan\u00e9taires (sur le climat, la biodiversit\u00e9, l'eau, les ressources, le cycle de l'azote, etc), ce qui n'est pas du tout le cas actuellement (et le d\u00e9passement des limites ne peut \u00eatre que transitoire...).\n\nDans les obstacles \u00e0 cette \u00e9volution il y a la question de la mise en coh\u00e9rence au niveau des politiques nationales, mais aussi au niveau des politiques europ\u00e9ennes. Partout nous avons pris l'habitude du \"en m\u00eame temps\" parce que le monde semblait sans limite, et il va nous falloir apprendre \u00e0 raisonner autrement parce que dans le monde fini la question de l'ordre des priorit\u00e9s se posera plus fortement.\n\nApprendre \u00e0 raisonner autrement cela demande... de la formation. Ceci a un lien avec une autre sortie m\u00e9diatique du moment : la tribune du JDD qui demande \u00e0 ce que les premiers \u00e0 avoir une formation pour mieux saisir les r\u00e9alit\u00e9s physiques du monde soient ceux qui revendiquent la conduite des affaires publiques, \u00e0 savoir les membres de notre gouvernement : https://lnkd.in/e2yErtAZ\n\nOn exige bien un \"certificat d'aptitude\" pour les m\u00e9decins ou les avocats. Or \u00eatre nomm\u00e9 ministre n'est pas \u00e9quivalent \u00e0 r\u00e9ussir un test de connaissances. A l'heure des urgences environnementales, est-il ill\u00e9gitime de demander \u00e0 ce que l'ex\u00e9cutif puisse donner des gages en ce qui concerne sa compr\u00e9hension des faits ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6929013727648227328,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6929013728281554944,urn:li:activity:6929013728281554944,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 16, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6929013728281554944,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6929013728281554944,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6929013728281554944", + "threadId": "activity:6929013728281554944", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6929013728281554944", + "urn": "urn:li:activity:6929013728281554944", + "numComments": 22, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6929013728281554944", + "reactionTypeCounts": [ + { + "count": 420, + "reactionType": "LIKE" + }, + { + "count": 28, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6929013728281554944", + "numLikes": 480, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6929013728281554944", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 480, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6928649404019044352,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6928649404019044352", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6928649404019044352)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6928649404019044352)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_alors-que-la-crise-sanitaire-a-r%C3%A9v%C3%A9l%C3%A9-et-activity-6928649404019044352-uDX9?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6928649403155034112", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6928649404019044352", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6928649404019044352,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6928649404019044352,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6928649403155034112", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "zRRxyaTi/9IKcwL49RN+Lg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6928649404019044352,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQFQ3-OTCQGvBA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQFQ3-OTCQGvBA", + "artifacts": [ + { + "width": 1418, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1651918743295?e=1679529600&v=beta&t=k_rNrSe82iwJwy20t8i4Qv3zDe9bbY64iwl9arwSPJk", + "expiresAt": 1679529600000, + "height": 1316 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1651918745008?e=1679529600&v=beta&t=ae6Sx5yCz-cH5YUO_b-RjLjFGlnzJBIx2jwu-nr-pfc", + "expiresAt": 1679529600000, + "height": 19 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1651918745008?e=1679529600&v=beta&t=M14KUz671FKs0zhKTiEsRO2HcJKwHvwZcUigrmitutg", + "expiresAt": 1679529600000, + "height": 1188 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1651918745008?e=1679529600&v=beta&t=z98Tsa0_PZbl2VgbozC-72DheBwT2x11_VgyCSZXiLs", + "expiresAt": 1679529600000, + "height": 445 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1651918745008?e=1679529600&v=beta&t=GqFjqkpqpvs45vxq2qe001I8N7JfXr_DXiV54uJnGpc", + "expiresAt": 1679529600000, + "height": 148 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1651918745008?e=1679529600&v=beta&t=zcoV1Trk_4JfckIMvYQP24HRJSjlr7a701bHCMrHUbY", + "expiresAt": 1679529600000, + "height": 742 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQFQ3-OTCQGvBA/feedshare-shrink_" + }, + "displayAspectRatio": 0.9280677009873061 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6928649403155034112,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"Alors que la crise sanitaire a r\u00e9v\u00e9l\u00e9 et aurait pu conduire \u00e0 revoir des mod\u00e8les \u00e0 bout de souffle, les m\u00eames programmes, les m\u00eames financements, les m\u00eames projets qui auront, pour la plupart d\u2019entre eux, des cons\u00e9quences irr\u00e9versibles sur une ou plusieurs dizaines d\u2019ann\u00e9es sont invariablement pr\u00e9sent\u00e9s. (...) Certaines d\u00e9cisions sont m\u00eame des r\u00e9gressions. (...)\"\n\nQui ose ainsi \u00e9crire que l'action publique post covid n'est pas plus compatible avec les limites plan\u00e9taires que celle d'avant ? The Shift Project ? Extinction Rebellion ? Des politiques en campagne pour les l\u00e9gislatives ? L'Affaire du Si\u00e8cle ?\n\nPas du tout, pas du tout, comme chantait Dutronc : une instance administrative, l'Autorit\u00e9 Environnementale, qui vient de rendre son rapport annuel : https://lnkd.in/eRhXSAWF\n\nPour faire simple, cette autorit\u00e9 est charg\u00e9e de rendre un avis public sur \"la qualit\u00e9 des \u00e9valuations et la bonne prise en compte de l\u2019environnement\" pour des projets - d'infrastructure, industriels, d'am\u00e9nagement... - ou des plans qui \"sont au-del\u00e0 d'une certaine taille\", comme aurait dit Fernand Reynaud.\n\nJuger de l'ad\u00e9quation entre les impacts factuels des projets et les m\u00e9thodes qui ont \u00e9t\u00e9 utilis\u00e9es pour \u00e9valuer ces impacts peut sembler technique et anecdotique, mais en fait dire si le thermom\u00e8tre ou le st\u00e9thoscope \u00e9taient les bons instruments \u00e0 utiliser pour juger de l'\u00e9tat du patient est capital, car rien n'est plus facile que de d\u00e9clarer que des projets sont sans impact ennuyeux en utilisant des m\u00e9thodes inappropri\u00e9es ou qui font l'impasse sur une nuisance majeure. \n\nEn 2021 l'Autorit\u00e9 environnementale a rendu 159 avis : 91 sur des projets (1/3 industriels, 1/3 d'am\u00e9nagements urbains et 1/3 d'infrastructures de transports) et 68 sur des plans et programmes (sch\u00e9mas directeurs d\u2019am\u00e9nagement et de gestion de l\u2019eau, plans de gestion des risques d\u2019inondation, plans de protection de l\u2019atmosph\u00e8re, plans de pr\u00e9vention des risques, plans r\u00e9gionaux for\u00eat et bois...).\n\nQuelques \u00e9l\u00e9ments expos\u00e9s au fil des pages :\n- les projets propos\u00e9s pour d\u00e9carboner l'\u00e9nergie (ENR ou hydrog\u00e8ne) ne comportent pas toujours d'analyse probante sur leur contribution \u00e0 la d\u00e9carbonation (!)\n- \"Dans le domaine des transports, la transition \u00e9nerg\u00e9tique est assez g\u00e9n\u00e9ralement oubli\u00e9e\" (sans prise en compte de l'objectif national de baisse de la consommation d'\u00e9nergie) et \"la contribution des projets \u00e0 l\u2019atteinte de la neutralit\u00e9 carbone n\u2019est\npas d\u00e9montr\u00e9e ; elle pourrait m\u00eame \u00eatre n\u00e9gative\"\n- \"[il y a] une absence de prise en compte au bon niveau des th\u00e9matiques climat et \u00e9nergie (...) dans les contrats de plan \u00c9tat-R\u00e9gion\".\n- Etc...\n\nL\u2019AE \u00e9crit en conclusion que \"les plans et programmes [examin\u00e9s] ne sont pas \u00e0 la hauteur de l\u2019objectif fix\u00e9 dans l\u2019Accord de Paris\". Arriver \u00e0 une situation o\u00f9 chaque projet local sera raccord avec les limites plan\u00e9taires demandera un effort majeur de coh\u00e9rence et un effort non moins majeur de formation." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6928649403155034112,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6928649404019044352,urn:li:activity:6928649404019044352,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6928649404019044352,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6928649404019044352,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6928649404019044352", + "threadId": "activity:6928649404019044352", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6928649404019044352", + "urn": "urn:li:activity:6928649404019044352", + "numComments": 95, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6928649404019044352", + "reactionTypeCounts": [ + { + "count": 1474, + "reactionType": "LIKE" + }, + { + "count": 201, + "reactionType": "INTEREST" + }, + { + "count": 153, + "reactionType": "MAYBE" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 19, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6928649404019044352", + "numLikes": 1872, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6928649404019044352", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1872, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6928236323405221888,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6928236323405221888", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6928236323405221888)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6928236323405221888)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_interview-%C3%A9nergie-et-climat-j-m-jancovici-activity-6928236323405221888-fnf3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6928236322486693888", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6928236323405221888", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6928236323405221888,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6928236323405221888,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6928236322486693888", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "TJsDRc2dUn6AxHYxhLN52A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6928236323405221888,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8216444099063571628", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 690, + "fileIdentifyingUrlPathSegment": "800/0/1675951464082?e=1677240000&v=beta&t=n--KH2PH9A5HfSltulCQgSx4knQeTJ1NcuYsvUTT-S0", + "expiresAt": 1677240000000, + "height": 387 + }, + { + "width": 690, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675951464082?e=1677240000&v=beta&t=NttKxNW1AvsQ7SHYm9rNJW0lLoZIF6WZg5Q_f4S8Ftg", + "expiresAt": 1677240000000, + "height": 387 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675951464083?e=1677240000&v=beta&t=pXM12v17eBSmxcRLUPr3g_8B-zJYgqkWZHKBTa0C1XI", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675951464083?e=1677240000&v=beta&t=cA1oGcKyl8KvCJyvzUdf4xhPJo9HA0Od6naV_duybeg", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGyldpBpdknbA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5608695652173913 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Pour Jean-Marc Jancovici, l'agriculture neutre en carbone passe par une r\u00e9duction sensible de la production animale et une d\u00e9sp\u00e9cialisation des r\u00e9gions agricoles." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8216444099063571628)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8216444099063571628)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "terre-net.fr \u2022 9 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [Interview] \u00c9nergie et climat J.-M. Jancovici : Comment l'agriculture devrait envisager sa transformation by terre-net.fr", + "actionTarget": "https://www.terre-net.fr/actualite-agricole/economie-social/article/interview-de-jean-marc-jancovici-sur-comment-l-agriculture-devrait-envisager-sa-transformation-202-207820.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[Interview] \u00c9nergie et climat J.-M. Jancovici : Comment l'agriculture devrait envisager sa transformation" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6928236322486693888,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il faut que je remonte \u00e0 3 g\u00e9n\u00e9rations pour trouver un agriculteur dans mes ascendants directs. On pourrait donc penser que ma l\u00e9gitimit\u00e9 \u00e0 m'exprimer sur l'agriculture est discutable :).\n\nJe me suis n\u00e9anmoins risqu\u00e9 \u00e0 l'exercice pour le site d'informations pour la profession Terre-Net, en faisant quelques constats et en proposant quelques conclusions et directions dans lesquelles partir si l'on veut que ce secteur soit \u00e0 la fois plus r\u00e9silient face \u00e0 un changement climatique amplifi\u00e9 par rapport \u00e0 maintenant (de mani\u00e8re inexorable h\u00e9las) et plus \"doux\" pour l'environnement.\n\nRappelons que l'agriculture c'\u00e9tait 2/3 de la population active avant la r\u00e9volution industrielle. Comme l'argent ne paye que des hommes (et des femmes !), cela signifie que, peu ou prou, l'agriculture repr\u00e9sentait entre la moiti\u00e9 et les deux tiers du PIB de l'\u00e9poque, et donc, toujours pour les m\u00eames raisons, consommait aussi entre la moiti\u00e9 et les deux tiers du \"budget des m\u00e9nages\". \n\nAujourd'hui, les tickets de caisse pay\u00e9s au distributeur - 90% de nos achats alimentaires directs - ou aux \"petits commerces (y compris march\u00e9s), plus les additions pay\u00e9es \u00e0 la \"restauration hors domicile\" (restaurants y compris fast food, restauration scolaire et en entreprise, h\u00f4pital - le moins possible \u00e9videmment, etc) repr\u00e9sentent environ 10% du budget des m\u00e9nages. \n\nMais l'essentiel de cette d\u00e9pense finance des emplois qui ne sont que des \"interm\u00e9diaires\" : caissier(e)s, magasinier(e)s, chauffeurs routiers, salari\u00e9(e)s de l'agroalimentaire, salari\u00e9(e)s des producteurs de mat\u00e9riaux d'emballage ou de camions (un tiers des camions en France transportent quelque chose qui se mange), etc.\n\nLa nourriture elle-m\u00eame repr\u00e9sente donc un cinqui\u00e8me de notre d\u00e9pense alimentaire en moyenne (soit 2% de ce que nous gagnons). Nous avons remplac\u00e9 des individus dans les champs par une arm\u00e9e de machines, situ\u00e9e pour partie dans les exploitations (tracteurs, silos, trayeuses \u00e0 vaches....) et pour l'essentiel hors des champs (usines d'engrais et de phytosanitaires \u00e0 l'amont, camions \u00e0 l'amont et l'aval, machines de l'agroalimentaire, usines pour l'emballage, frigos et cong\u00e9lateurs, etc) qui ont permis une explosion des quantit\u00e9s et un effondrement des prix. Et ce que nous payons est essentiellement les gens qui fabriquent et actionnent ces machines.\n\nLa question que nous devons nous poser est donc la suivante : acceptons nous de d\u00e9lib\u00e9r\u00e9ment augmenter le prix de la nourriture pour produire \"mieux\" et plus durablement ? (et de fait nous aurons moins d'argent pour le reste). Si oui, il est possible de revisiter beaucoup de choses dans l'organisation actuelle du secteur. Si non, la mauvaise nouvelle est que les limites plan\u00e9taires finiront de toute fa\u00e7on par produire le m\u00eame effet, mais dans un contexte non g\u00e9r\u00e9, et avec des cons\u00e9quences n\u00e9gatives qui seront plus fortes.\n\nEncore une urgence et un sujet plus important que le m\u00e9taverse (qui ne fera pas pleuvoir) \u00e0 traiter dans le cadre du nouveau mandat !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6928236322486693888,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6928236323405221888,urn:li:activity:6928236323405221888,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 138, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6928236323405221888,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6928236323405221888,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6928236323405221888", + "threadId": "activity:6928236323405221888", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6928236323405221888", + "urn": "urn:li:activity:6928236323405221888", + "numComments": 243, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6928236323405221888", + "reactionTypeCounts": [ + { + "count": 2900, + "reactionType": "LIKE" + }, + { + "count": 230, + "reactionType": "INTEREST" + }, + { + "count": 218, + "reactionType": "MAYBE" + }, + { + "count": 82, + "reactionType": "PRAISE" + }, + { + "count": 51, + "reactionType": "APPRECIATION" + }, + { + "count": 29, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6928236323405221888", + "numLikes": 3510, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6928236323405221888", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3510, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6927926943145189376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6927926943145189376", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6927926943145189376)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6927926943145189376)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_franceinfo-on-twitter-activity-6927926943145189376-LMlE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6927926942453137408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6927926943145189376", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6927926943145189376,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6927926943145189376,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6927926942453137408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "LxPhGydypWjr7wSiAuUQxQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6927926943145189376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8353904397154396413", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675935092119?e=1677240000&v=beta&t=rwr_SRcfFYXNnklNJCe-EqHs3_JB9jdraTseJbjz85c", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675935092119?e=1677240000&v=beta&t=lJeWLNzq9YbtHhvq88jNXzYgoCVF8KZLFTaDQqfq4Js", + "expiresAt": 1677240000000, + "height": 675 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675935092119?e=1677240000&v=beta&t=BPZpVE-S2YJYCltwhyRhFyuLUJm6fU_uo3lVI1uEvKQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675935092119?e=1677240000&v=beta&t=ih8cJW2okxjPQFPAkJevF-L0NVH8u_fsJS1jbZ6YMZU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF6d7LiP9FrpQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8353904397154396413)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8353904397154396413)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "twitter.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: franceinfo on Twitter by twitter.com", + "actionTarget": "https://twitter.com/franceinfo/status/1522091064148041728" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "franceinfo on Twitter" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6927926942453137408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A la suite de la r\u00e9union organis\u00e9e par Emmanuel Macron \u00e0 l'Elys\u00e9e, votre serviteur a fait un tr\u00e8s bref compte rendu au micro de France Info. \n\nCette r\u00e9union a \u00e9videmment une arri\u00e8re pens\u00e9e \u00e9lectorale. Mais en d\u00e9mocratie, il n'y a rien d'anormal \u00e0 cela : s'il y a une d\u00e9mocratie il y a des \u00e9lections, et s'il y a des \u00e9lections les personnes qui candidatent cherchent \u00e0 se faire remarquer sur des points positifs, c'est la r\u00e8gle du jeu. Du point de vue du dirigeant d'association que je suis, toutes les opportunit\u00e9s sont bonnes \u00e0 prendre, et il faut les saisir quand elles se pr\u00e9sentent.\n\nCette r\u00e9union n'avais pas d'ordre du jour communiqu\u00e9 \u00e0 l'avance (l'invitation disait que le pr\u00e9sident voulait \"\u00e9changer\"). A chaque participant(e) - nous \u00e9tions une dizaine - revenait donc le choix de son terrain de jeu et de son angle d'approche, sachant que notre interlocuteur du jour ne nous a pas fait de long discours - ce qui est plut\u00f4t une bonne chose puisque cela laisse plus de temps pour les d\u00e9veloppements des personnes invit\u00e9es.\n\nPour ma part j'ai donc choisi de faire des suggestions un peu concr\u00e8tes, apr\u00e8s avoir rappel\u00e9 deux fois le chiffre 5 :\n- il n'y aura que 5 mandats pr\u00e9sidentiels pleins avant 2050 (\u00e0 supposer que l'on soit toujours en d\u00e9mocratie en 2042...)\n- il faut baisser l'empreinte carbone de la France de 5% par an soit 25% sur le prochain mandat.\n\nEn d\u00e9but de quinquennat, la question se pose de savoir si il faut porter des revendications qui concernent plut\u00f4t la mani\u00e8re de travailler, ou plut\u00f4t des mesures sectorielles pr\u00e9cises. \n\nC'est la premi\u00e8re option qui a \u00e9t\u00e9 la mienne. Cette \"mani\u00e8re de travailler\" conditionne les bonnes d\u00e9cisions et leur mise en oeuvre par le monde politique et l'administration. Elle doit imp\u00e9rativement s'am\u00e9liorer sur plusieurs points :\n- la transversalit\u00e9 au sein de l'action gouvernementale (la question climatique est une question transverse) -> modalit\u00e9s de gestion de la \"planification \u00e9cologique\" par le premier ministre. \n- la formation des gens qui devront faire. Parlant au premier magistrat j'ai donc parl\u00e9 de la formation des fonctionnaires en exercice aux enjeux \u00e9nergie climat\n- la compr\u00e9hension de la \"distance au probl\u00e8me\" par les entreprises : j'ai donc parl\u00e9 des obligations de comptabilit\u00e9 carbone pour ces derni\u00e8res.\n\nNotre interlocuteur du jour nous a affirm\u00e9 que son intention \u00e9tait d'avancer rapidement \u00e0 court terme (ce qu'il peut faire par d\u00e9crets ou circulaires sur des domaines - comme par exemple la formation des fonctionnaires - qui ne demandent m\u00eame pas un passage au Parlement). On ne va donc pas tarder \u00e0 savoir ce qu'il en est !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6927926942453137408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6927926943145189376,urn:li:activity:6927926943145189376,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 247, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6927926943145189376,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6927926943145189376,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6927926943145189376", + "threadId": "activity:6927926943145189376", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6927926943145189376", + "urn": "urn:li:activity:6927926943145189376", + "numComments": 353, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6927926943145189376", + "reactionTypeCounts": [ + { + "count": 8502, + "reactionType": "LIKE" + }, + { + "count": 647, + "reactionType": "PRAISE" + }, + { + "count": 493, + "reactionType": "MAYBE" + }, + { + "count": 167, + "reactionType": "INTEREST" + }, + { + "count": 117, + "reactionType": "APPRECIATION" + }, + { + "count": 71, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6927926943145189376", + "numLikes": 9997, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6927926943145189376", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 9997, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6927605107840720900,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6927605107840720900", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6927605107840720900)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6927605107840720900)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_australie-le-climat-non-sujet-de-la-campagne-activity-6927605107840720900-mU1l?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6927605105147961344", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6927605107840720900", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6927605107840720900,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6927605107840720900,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6927605105147961344", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "kF/FAHP/H5yHtOqJISt15A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6927605107840720900,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7183864427578042306", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675939012478?e=1677240000&v=beta&t=pHg1M2MWXkZnObMJaROd_XfswSX4xhMWwO5MF4QTmvo", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675939012478?e=1677240000&v=beta&t=CmTmQhZHJoNXFOy123ph8SX1ydrM2D6G38nWN7Ro70Q", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675939012478?e=1677240000&v=beta&t=NhweYBqYjxjzZBLB-3616GX-T8LlTpInR_ZA4AhHv8g", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675939012478?e=1677240000&v=beta&t=34w_x9qVtwIURJIj28uO7_YMaDYyG6YpO0PuBzvaE5c", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHrnjZrJEcBsA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7183864427578042306)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7183864427578042306)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Australie : le climat, non-sujet de la campagne \u00e9lectorale by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/australie-le-climat-non-sujet-de-la-campagne-electorale-1404451" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Australie : le climat, non-sujet de la campagne \u00e9lectorale" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6927605105147961344,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La for\u00eat y brule. Les inondations y sont de plus en plus d\u00e9vastatrices. La Grande Barri\u00e8re de Corail y meurt. Et pourtant la campagne \u00e9lectorale qui a lieu actuellement en Australie semble aussi peu richement dot\u00e9e en climat que l'\u00e9tait la n\u00f4tre il y a quelques semaines.\n\nUne fois ce constat fait, il serait int\u00e9ressant de comprendre pourquoi. L'Australie poss\u00e8de incontestablement une industrie extractive de combustibles fossiles qui \"p\u00e8se\" dans l'\u00e9conomie nationale. Ce pays est le 3\u00e8 producteur mondial de charbon, \u00e0 \u00e9galit\u00e9 avec l'Inde, et surtout le premier exportateur mondial (une moiti\u00e9 environ est du charbon m\u00e9tallurgique, utilis\u00e9 pour alimenter les hauts fourneaux pour faire de l'acier).\n\nEn 2020, il \u00e9tait aussi le premier exportateur mondial de gaz naturel liqu\u00e9fi\u00e9 (GNL), \u00e0 parit\u00e9 avec le Qatar, pour un total de 106 milliards de m3 dans l'ann\u00e9e, sachant que les Russes \u00e9taient cette ann\u00e9e l\u00e0 \u00e0 200 (donn\u00e9es BP Statistical Review).\n\nMais cette situation n'explique pas tout, puisque l'Hexagone, qui ne poss\u00e8de pas d'activit\u00e9s extractives sur son sol, ne s'est pas beaucoup plus souci\u00e9e de la question r\u00e9cemment. Par ailleurs, nous avons aussi eu affaire r\u00e9cemment \u00e0 des s\u00e9cheresses importantes (avec d\u00e9p\u00e9rissement de for\u00eats ou de cultures), des inondations sans pr\u00e9c\u00e9dent dans le nord de l'Europe, des canicules... et rien de tout cela n'infl\u00e9chit la trajectoire \u00e0 bref d\u00e9lai, ni les priorit\u00e9s politiques o\u00f9 la 5G et la production de voitures restent des sujets plus \"importants\" que l'adaptation au changement climatique ou la fin du gaz dans le chauffage.\n\nChez eux comme chez nous, la r\u00e9ponse est probablement \u00e0 aller chercher du c\u00f4t\u00e9 du \"mode de vie\". L'incendie chez le voisin c'est tr\u00e8s triste, mais force est de constater qu'il ne modifie pas vite notre envie de monter en voiture, de changer la t\u00e9l\u00e9, de nous acheter un r\u00f4ti ou de faire les soldes.\n\nChez les australiens comme chez nous, il faudra un plan organis\u00e9 pour sortir de cette situation. Apr\u00e8s le covid nous n'avons pas mis en route la d\u00e9carbonation acc\u00e9l\u00e9r\u00e9e alors que c'\u00e9tait le moment le plus facile pour le faire, faute de plan. Tant que la soci\u00e9t\u00e9 australienne n'aura pas un groupe organis\u00e9 pour proposer un plan organis\u00e9, il est h\u00e9las \u00e0 craindre que les d\u00e9bats \u00e9lectoraux restent d\u00e9cevants sur la question. Comme chez nous !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6927605105147961344,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6927605107840720900,urn:li:activity:6927605107840720900,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 87, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6927605107840720900,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6927605107840720900,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6927605107840720900", + "threadId": "activity:6927605107840720900", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6927605107840720900", + "urn": "urn:li:activity:6927605107840720900", + "numComments": 141, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6927605107840720900", + "reactionTypeCounts": [ + { + "count": 1311, + "reactionType": "LIKE" + }, + { + "count": 149, + "reactionType": "INTEREST" + }, + { + "count": 148, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "APPRECIATION" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6927605107840720900", + "numLikes": 1669, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6927605107840720900", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1669, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6927270589099331586,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6927270589099331586", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6927270589099331586)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6927270589099331586)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_comment-rendre-acceptable-la-sobri%C3%A9t%C3%A9-%C3%A9nerg%C3%A9tique-activity-6927270589099331586-ahqp?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6927270587929128960", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6927270589099331586", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6927270589099331586,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6927270589099331586,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6927270587929128960", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "nYd46l/MKelNTzaLOClftA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6927270589099331586,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7077936236833084790", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676302036037?e=1677240000&v=beta&t=kON4A4Fz1CMqxCNHRfUzmidokKhMDoqH3bx--L0HuWA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676302036037?e=1677240000&v=beta&t=G0oJ5nmQ0d3UJzyv1YiHHe0AOT-3CypXvCoyDz7H2SU", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676302036037?e=1677240000&v=beta&t=r_her5Q2VT0g9TMEIhzzhDPxgcqu69qsOVcriM-H2AM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676302036037?e=1677240000&v=beta&t=OcbvlIOkDU3c9nb-uKbzQyKpdcm-XotRdtnGJh99Kb4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFjzhdwMpuzHQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7077936236833084790)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7077936236833084790)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Comment rendre acceptable la sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique ? Jean-Marc Jancovici et Jean-Fran\u00e7ois Mouhot on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=G4aeTvN0KIk" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Soir\u00e9e d\u00e9bat organis\u00e9e par les Groupes Bibliques Universitaires (www.gbu.fr) et A Rocha France (www.arocha.fr). Mod\u00e9ration de la soir\u00e9e : Joseph Gotte Jean-Marc JANCOVICI est ing\u00e9nieur de l\u2019Ecole polytechnique, consultant et sp\u00e9cialiste de l\u2019\u00e9nergie..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Comment rendre acceptable la sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique ? Jean-Marc Jancovici et Jean-Fran\u00e7ois Mouhot" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6927270587929128960,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 97, + "length": 20, + "miniProfile": { + "firstName": "Jean-Francois", + "lastName": "Mouhot", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAhjZx0BjfSjIhpqMapuwVZE1nvSw23gz9c", + "occupation": "Directeur Association A Rocha France", + "objectUrn": "urn:li:member:140732189", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAhjZx0BjfSjIhpqMapuwVZE1nvSw23gz9c", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1650916219115?e=1681948800&v=beta&t=yG_iL1U_1tGAmhsXKn-s_dkvhvg3Ow6T8IwQKYRfQRs", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1650916219115?e=1681948800&v=beta&t=US7IeUa-BavgqqgVZhk_OQr3_9c7mAiex-ZT8rb62Bo", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQHuqFzmjND2tw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-francois-mouhot-2a516a3b", + "trackingId": "lrH7z7SsTlCfdO6cRZrFFA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "La sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique et la religion : amies ou ennemies ? C'\u00e9tait le th\u00e8me d'un \u00e9change entre Jean-Francois Mouhot, directeur de l'association A-Rocha France (https://lnkd.in/eBiDnk2y ), une organisation chr\u00e9tienne internationale de conservation de la nature, et auteur d'un livre intitul\u00e9 \"Des esclaves \u00e9nerg\u00e9tiques\" (https://lnkd.in/ePxHvyie ), et votre serviteur.\n\nComme je l'ai pr\u00e9cis\u00e9 en ouverture de mon propos introductif, ma fr\u00e9quentation des lieux de culte s'est promen\u00e9e quelque part entre faible et nulle depuis ma naissance (je suis un agnostique revendiqu\u00e9). Mais j'ai trouv\u00e9 tr\u00e8s int\u00e9ressant de pouvoir discuter avec un repr\u00e9sentant de la sph\u00e8re chr\u00e9tienne de la place de la religion - ou plus exactement d'une religion, car il a \u00e9t\u00e9 peu question d'islam ou de bouddhisme dans l'\u00e9change - dans le d\u00e9bat sur la sobri\u00e9t\u00e9 \u00e9nerg\u00e9tique - donc en fait la sobri\u00e9t\u00e9 au sens large - qui monte actuellement.\n\nEn effet, les pr\u00e9ceptes chr\u00e9tiens ont historiquement fait une large place aux invitations \u00e0 se contenter de peu, qu'il s'agisse du voeu de pauvret\u00e9 des pr\u00eatres, ou des ressorts de la soci\u00e9t\u00e9 de consommation qui tombent pour beaucoup dans les p\u00e9ch\u00e9s capitaux (la gourmandise, la luxure, l'envie ou la paresse par exemple). Du coup, qu'est-ce qui emp\u00eacherait les chr\u00e9tiens de se faire d'ardents d\u00e9fenseurs de l'environnement ?\n\nLa fameuse phrase de Staline \"le Pape combien de divisions\" \u00e9tait peut-\u00eatre de mise dans une vision du monde bas\u00e9e sur les rapports de force militaire, mais lorsqu'il s'agit d'entra\u00eener la population sur le terrain des valeurs, il faut se rappeler que l'Eglise catholique revendique 1,3 milliards de fid\u00e8les dans le monde. Si sa parole devient sinc\u00e8rement verte, ca changera peut-\u00eatre un peu la face du monde." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6927270587929128960,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6927270589099331586,urn:li:activity:6927270589099331586,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 61, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6927270589099331586,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6927270589099331586,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6927270589099331586", + "threadId": "activity:6927270589099331586", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6927270589099331586", + "urn": "urn:li:activity:6927270589099331586", + "numComments": 109, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6927270589099331586", + "reactionTypeCounts": [ + { + "count": 604, + "reactionType": "LIKE" + }, + { + "count": 78, + "reactionType": "MAYBE" + }, + { + "count": 52, + "reactionType": "INTEREST" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6927270589099331586", + "numLikes": 764, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6927270589099331586", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 764, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6926935955379523584,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6926935955379523584", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6926935955379523584)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6926935955379523584)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-interview-dans-lexpress-en-avril-2022-activity-6926935955379523584-94IM?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6926935954830073856", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6926935955379523584", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6926935955379523584,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6926935955379523584,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6926935954830073856", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "H7ixtTfxlEBsf+QqysBYlg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6926935955379523584,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8480183690828671668", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676490547718?e=1677240000&v=beta&t=eLf-RIyZiPSK4PGFt9RpZX1We7KyUXDiDHr1s3qw8MU", + "expiresAt": 1677240000000, + "height": 451 + }, + { + "width": 885, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676490547718?e=1677240000&v=beta&t=B2ex7oIXs4qc2qZeDO11rdbNozmt99_XxxjPVfgXGGE", + "expiresAt": 1677240000000, + "height": 500 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676490547718?e=1677240000&v=beta&t=ZmAHZsjBaivHsegYvdI5lSw-ZL5WfVJVRbgznXoIsp0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676490547718?e=1677240000&v=beta&t=etsnP1wgA5z7SScXPv_U0TKMT_uoaxnYg__gvc0JBPg", + "expiresAt": 1677240000000, + "height": 271 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF94xObjcQbyQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.56375 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8480183690828671668)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8480183690828671668)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 10 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Une interview dans l'Express en avril 2022 by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/interviews/une-interview-dans-lexpress-en-avril-2022/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Une interview dans l'Express en avril 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6926935954830073856,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les propos ont \u00e9t\u00e9 recueillis juste avant le second tour, histoire que l'article puisse sortir juste apr\u00e8s : l'angle choisi pour cette interview de l'Express \u00e9tait clairement de rebondir sur une forme d'irruption de l'environnement dans l'entre-deux-tours.\n\nDu coup les propos tenus ont - entre autres - concern\u00e9 quelques mesures relevant des pouvoirs publics qu'il serait pertinent de mettre en oeuvre sans tarder si le slogan de \"planification \u00e9cologique\" doit avoir un sens.\n\nCertaines d'entre elles ne demandent que la volont\u00e9 de faire (par exemple former l'ensemble des fonctionnaires pour leur permettre d'appr\u00e9hender les enjeux de l'\u00e9nergie et du climat), et leur mise en oeuvre rapide - ou pas - sera un bon test de la volont\u00e9 de faire, d\u00e8s avant les l\u00e9gislatives.\n\nIl ne reste que 5 mandatures compl\u00e8tes avant 2050. 5..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6926935954830073856,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6926935955379523584,urn:li:activity:6926935955379523584,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 21, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6926935955379523584,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6926935955379523584,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6926935955379523584", + "threadId": "activity:6926935955379523584", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6926935955379523584", + "urn": "urn:li:activity:6926935955379523584", + "numComments": 57, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6926935955379523584", + "reactionTypeCounts": [ + { + "count": 334, + "reactionType": "LIKE" + }, + { + "count": 20, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6926935955379523584", + "numLikes": 386, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6926935955379523584", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 386, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6926792489118924800,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6926792489118924800", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6926792489118924800)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6926792489118924800)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_accueil-activity-6926792489118924800-oBMr?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6926792488342962176", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6926792489118924800", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6926792489118924800,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6926792489118924800,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6926792488342962176", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "wKKKY9Z+f/6sLOcc8Jp4/A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6926792489118924800,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8023958104999136810", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676017069168?e=1677240000&v=beta&t=hDJBcE_PjzcDRO5lCpAPiIRGxg5xMzIiOILpQWl8soI", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676017069168?e=1677240000&v=beta&t=KpH9rioi-VKsLSmJ2uGF-UN9Dc2kmLpIEgNaLVesiFw", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676017069168?e=1677240000&v=beta&t=yk2ts7xzfkre6NbbK_TArHNZM-CMJP_gnpXFFtYIq1A", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676017069168?e=1677240000&v=beta&t=9erHvSb1-jCu6ALGfc3qJK5vZ8mz6JTx9AV_93yJnyA", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHP39b3sxlVcQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8023958104999136810)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8023958104999136810)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "protectmpa.bloomassociation.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Accueil by protectmpa.bloomassociation.org", + "actionTarget": "https://protectmpa.bloomassociation.org/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Accueil" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6926792488342962176,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Normalement le dictionnaire est bien fait : les aires marines prot\u00e9g\u00e9es sont... prot\u00e9g\u00e9es. Quel est le principe sur le papier ? Il s'agit de d\u00e9limiter des zones c\u00f4ti\u00e8res (\u00e0 moins de 200 miles des c\u00f4tes, car au-del\u00e0 l'oc\u00e9an n'appartient plus \u00e0 personne en particulier, et donc aucun pays ne peut y cr\u00e9er une zone d'exclusion de bateaux ou d'activit\u00e9s) au sein desquelles la vie marine est pr\u00e9serv\u00e9e des pr\u00e9l\u00e8vements de la p\u00eache - et d'autres activit\u00e9s de \"consommation\" de la nature - pour permettre aux esp\u00e8ces - et notamment les poissons - de se reproduire.\n\nCette mesure est donc destin\u00e9e \u00e0 pr\u00e9server les stocks de poisson, et les premiers partisans de la mesure devraient \u00eatre les p\u00eacheurs eux-m\u00eames. En effet, les poissons \u00e9tant mobiles, s'il redeviennent abondants au sein des ces aires parce qu'ils peuvent facilement s'y reproduire et grandir, ils se d\u00e9placeront ensuite en dehors de l'aire prot\u00e9g\u00e9e, et permettront ainsi une reconstitution ou un maintien \u00e0 niveau des stocks \"ailleurs\". \n\nL'existence de ces aires, pourvu qu'elles soient respect\u00e9es, est donc un moyen d'augmenter ou de faire durer les pr\u00e9l\u00e8vements par la p\u00eache. Rappelons que, pour l'oc\u00e9an dans son ensemble, ces derniers d\u00e9clinent depuis 1995 (ca fait donc presque 30 ans que le maximum de la p\u00eache en mer a \u00e9t\u00e9 pass\u00e9). Par ailleurs la p\u00eache vient s'ajouter au r\u00e9chauffement climatique, \u00e0 l'acidification de l'eau (\u00e0 cause du CO2 \u00e9mis par les activit\u00e9s humaines qui est dissous pour partie dans l'oc\u00e9an), et \u00e0 la pollution. Les esp\u00e8ces marines ne sont donc pas vraiment \u00e0 la f\u00eate.\n\nEn th\u00e9orie, ces aires sont donc une bonne id\u00e9e. Sauf que :\n\n- un article publi\u00e9 dans Science et qui porte sur 727 aires marines prot\u00e9g\u00e9es situ\u00e9es dans les eaux europ\u00e9ennes montre que 59% d'entre elles font l'objet d'un chalutage commercial, et que l'intensit\u00e9 de ce chalutage y est 1,4 fois plus \u00e9lev\u00e9e que dans les aires non prot\u00e9g\u00e9es (!) : https://lnkd.in/eQC8AR7v (abstract en libre acc\u00e8s)\n\n- un article publi\u00e9 dans \"Frontiers in Marine Sciences\" et qui porte sur 510 aires marines prot\u00e9g\u00e9es, repr\u00e9sentant 86% de la surface des 1945 aires marines prot\u00e9g\u00e9es situ\u00e9es dans les eaux europ\u00e9ennes (EU + UK), montre que ces derni\u00e8res sont tr\u00e8s souvent p\u00each\u00e9es avec des engins destructeurs (comme le chalutage de fond) ou op\u00e9rant des pr\u00e9l\u00e8vements intensifs : https://lnkd.in/eEckHczY\n\nC'est la raison pour laquelle l'association Bloom, qui milite pour la pr\u00e9servation de la biodiversit\u00e9 marine - et du m\u00eame coup les gens qui en vivent ! - lance une p\u00e9tition pour demander que ces aires marines prot\u00e9g\u00e9es ne fassent pas mentir le dictionnaire. La raison pour laquelle cette p\u00e9tition est lanc\u00e9e maintenant et pas \u00e0 un autre moment est que le parlement europ\u00e9en d\u00e9bat en ce moment du sujet : https://lnkd.in/eK5zmS3Z\n\nL\u00e0 comme ailleurs il faut g\u00e9rer la limite avant qu'elle ne nous g\u00e8re..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6926792488342962176,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6926792489118924800,urn:li:activity:6926792489118924800,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 37, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6926792489118924800,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6926792489118924800,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6926792489118924800", + "threadId": "activity:6926792489118924800", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6926792489118924800", + "urn": "urn:li:activity:6926792489118924800", + "numComments": 48, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6926792489118924800", + "reactionTypeCounts": [ + { + "count": 1421, + "reactionType": "LIKE" + }, + { + "count": 146, + "reactionType": "APPRECIATION" + }, + { + "count": 64, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "INTEREST" + }, + { + "count": 27, + "reactionType": "PRAISE" + }, + { + "count": 18, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6926792489118924800", + "numLikes": 1723, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6926792489118924800", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1723, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6926469494018064384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6926469494018064384", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6926469494018064384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6926469494018064384)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-menu-principal-de-la-page-daccueil-du-activity-6926469494018064384-LwGi?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6926469492864647168", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6926469494018064384", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6926469494018064384,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6926469494018064384,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6926469492864647168", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "5NVFYYwJ6/DlS8pAi5LO8w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6926469494018064384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGiqmV6ipjDig", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGiqmV6ipjDig", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1651399013962?e=1679529600&v=beta&t=tyh5uxnPHlMn2MPPyuZnNusYccgOByUeUwDHGBrZNzc", + "expiresAt": 1679529600000, + "height": 1270 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1651399013680?e=1679529600&v=beta&t=gn8OyKzme6CJzz5cYhRKp4GBHTW6rIOLnPuDH8Q31rY", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1651399013680?e=1679529600&v=beta&t=izsts_PgXhbUXpKXoorjzucjFQkT1DvesDJDx8iSryw", + "expiresAt": 1679529600000, + "height": 794 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1651399013680?e=1679529600&v=beta&t=oOfqNrU2Mv5_Vh9YQd26XLayVPNj9Ivym9Ucm5W9dNs", + "expiresAt": 1679529600000, + "height": 298 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1651399013680?e=1679529600&v=beta&t=-IXnwxUe-v-yko_TJjvaZjf1L-mNw18sMCXVsM0epI8", + "expiresAt": 1679529600000, + "height": 99 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1651399013680?e=1679529600&v=beta&t=WGbu_qfTmL38-31tqj7VnPqKblU3kDM5HVtc9d0f2xo", + "expiresAt": 1679529600000, + "height": 496 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGiqmV6ipjDig/feedshare-shrink_" + }, + "displayAspectRatio": 0.6201171875 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, website" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6926469492864647168,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le menu principal de la page d'accueil du site du Financial Times comporte une rubrique \"climat\" : https://lnkd.in/eqb_ntGU (sauf erreur de ma part ce n'est le cas pour aucun media g\u00e9n\u00e9raliste en France, en tus cas pas ceux pour lesquels je vient de regarder \u00e0 l'instant).\n\nLa bonne nouvelle est donc qu'un des media \u00e9conomiques les plus lus du monde occidental propose, de mani\u00e8re visible, beaucoup d'informations sur le sujet, ce qui donne par construction de l'importance \u00e0 ce dernier.\n\nA l'instant, la premi\u00e8re option propos\u00e9e quand on va sur cette rubrique est un jeu pour essayer de rendre l'\u00e9conomie \"net zero\" en 2050. J'ai \u00e9videmment test\u00e9 le jeu en question, et la mauvaise nouvelle est qu'il est tr\u00e8s facile de gagner (du reste un tiers des personnes qui jouent arrivent sous 1,5\u00b0C de r\u00e9chauffement en 2100 \u00e0 la fin du jeu).\n\nCertes, il ne faut pas d\u00e9sesp\u00e9rer Billancourt. Mais quand m\u00eame, il n'est pas sur que ce soit un tr\u00e8s bon service \u00e0 rendre aux acteurs du monde \u00e9conomique que de leur laisser croire, m\u00eame \u00e0 travers un jeu, qu'il y a quelques leviers \u00e0 actionner (quasiment tous technologiques soit dit en passant) pour que cette affaire de changement climatique devienne un lointain souvenir qui ne nous causera pas plus de probl\u00e8mes que cela.\n\nIl n'en reste pas moins que tous nos media nationaux - y compris Les Echos - seraient bien inspir\u00e9s d'avoir aussi une rubrique \"climat\" ou \"nature\" en page d'accueil, et plus encore de toujours voir si un article qui \u00e9voque un sujet \"non environnemental\" ne dit pas implicitement quelque chose qui suppose que les limites plan\u00e9taires n'existent pas. Exemple parmi 150 \u00e0 l'instant : cet article du JDD qui parle du \"red\u00e9collage\" des vols vers les USA sans utiliser ni le mot climat ni le mot CO2 : https://lnkd.in/e5VpRV7p \n\nLe jour de la f\u00eate du travail, c'est un bon jour pour s'interroger sur les emplois qu'il faut d\u00e9velopper, ou au contraire diminuer, pour qu'il y ait toujours une humanit\u00e9 au travail sur une plan\u00e8te ayant la meilleure t\u00eate possible dans quelques d\u00e9cennies. Il n'est malheureusement pas assur\u00e9 qu'il y ait beaucoup de couverture presse sous cet angle (en lot de consolation vous pouvez lire ou relire le chapitre \"emploi\" du Plan de Transformation de l'Economie Fran\u00e7aise, qui vient de d\u00e9passer les 50.000 exemplaires vendus en 3 mois, ce qui le range dans la cat\u00e9gorie des \"tr\u00e8s gros succ\u00e8s\" pour un essai : https://lnkd.in/ekk7DZZH).\n\nBon muguet !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6926469492864647168,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6926469494018064384,urn:li:activity:6926469494018064384,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 23, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6926469494018064384,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6926469494018064384,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6926469494018064384", + "threadId": "activity:6926469494018064384", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6926469494018064384", + "urn": "urn:li:activity:6926469494018064384", + "numComments": 31, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6926469494018064384", + "reactionTypeCounts": [ + { + "count": 814, + "reactionType": "LIKE" + }, + { + "count": 33, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "INTEREST" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6926469494018064384", + "numLikes": 924, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6926469494018064384", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 924, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6926101898215235584,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6926101898215235584", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6926101898215235584)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6926101898215235584)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-bulletin-m%C3%A9t%C3%A9o-pour-ce-week-end-a-annonc%C3%A9-activity-6926101898215235584-kt-p?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6926101897258926080", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6926101898215235584", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6926101898215235584,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6926101898215235584,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6926101897258926080", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "rLR1nRXhM0GjD6PeLkXSUw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6926101898215235584,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGi6mOyytMBtA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGi6mOyytMBtA", + "artifacts": [ + { + "width": 1438, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1651311370489?e=1679529600&v=beta&t=6QmQrwaTwsD5Xg76nI2aINl3xBRnVLFHjfGEIddZcd8", + "expiresAt": 1679529600000, + "height": 1388 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1651311371994?e=1679529600&v=beta&t=HND0T5F7qkcGBjHFQNV36tDMLRhceKNVAbfarAMj8TI", + "expiresAt": 1679529600000, + "height": 19 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1651311371994?e=1679529600&v=beta&t=UDZFCZkxJU0LnzeNSAfRyWVlH8vFxL6Pyv1kwslqTgQ", + "expiresAt": 1679529600000, + "height": 1235 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1651311371994?e=1679529600&v=beta&t=dGrBypZgxgHXQUsFI4l5g7rs6cFqOwaalrPnkb96Z90", + "expiresAt": 1679529600000, + "height": 463 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1651311371994?e=1679529600&v=beta&t=Fy_JumFNfIr0cpUkxnLY9fwjYebLahQkVzbtWaUtmoI", + "expiresAt": 1679529600000, + "height": 154 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1651311371994?e=1679529600&v=beta&t=E0gtOudwik-c5zJ810TEh-128aylinh7uTz3fPf7Buw", + "expiresAt": 1679529600000, + "height": 772 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGi6mOyytMBtA/feedshare-shrink_" + }, + "displayAspectRatio": 0.9652294853963839 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6926101897258926080,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le bulletin m\u00e9t\u00e9o pour ce week-end a annonc\u00e9 \"du beau temps sur l'essentiel du pays\". Nous comprenons donc qu'il va y avoir du soleil, et que cela est une bonne nouvelle puisque \"beau\" est en g\u00e9n\u00e9ral un adjectif positif.\n\nMais, avec la situation actuelle du pays, \"beau\" devrait plut\u00f4t signifier qu'il va pleuvoir. Comme le rappelle la chronique de ce matin sur RTL (https://lnkd.in/exPkQ9vq ), il fait trop sec.\n\nTout d'abord il a moins plu que la normale depuis l'automne dernier. Ensuite ces pluies ont tendance \u00e0 \u00eatre moins \"efficaces\" parce que comportant plus d'\u00e9pisodes intenses, avec beaucoup d'eau tombant en une seule fois, et une partie plus importante de cette eau qui ruisselle alors directement vers les fleuves puis la mer, sans s'infiltrer dans le sol.\n\nEnfin comme le climat est plus chaud, l'\u00e9vaporation est plus \u00e9lev\u00e9e, et donc les sols s'ass\u00e8chent plus vite \u00e0 pr\u00e9cipitations \u00e9gales. \n\nCette situation est g\u00e9n\u00e9rale aux moyennes latitudes et ne concerne pas que la France. Tout l'ouest am\u00e9ricain fait face \u00e0 une s\u00e9cheresse qui va de s\u00e9v\u00e8re \u00e0 exceptionnelle (https://lnkd.in/dQVN83A ). Le pourtour m\u00e9diterran\u00e9en connait \u00e9galement des s\u00e9cheresses qui vont croissant, du Maroc (https://lnkd.in/erifgEqQ ) \u00e0 la Turquie (https://lnkd.in/efErGTWs ). On pourrait aussi parler du Br\u00e9sil (https://lnkd.in/esARz-zi ) ou du Chili o\u00f9 une s\u00e9cheresse historique impacte... la production de cuivre (https://lnkd.in/etA3dThv ).\n\nQuestion : la situation va-t-elle \"revenir \u00e0 la normale\" parce que nous sommes dans une mauvaise passe qui va s'estomper avec le temps ? La r\u00e9ponse est h\u00e9las n\u00e9gative : la situation va s'aggraver en tendance, parce que le r\u00e9chauffement climatique va diminuer l'humidit\u00e9 des sols sur une large fraction des terres \u00e9merg\u00e9es. et notamment une tr\u00e8s large fraction des moyennes latitudes (voir carte en commentaire).\n\nAlors que toutes nos activit\u00e9s en d\u00e9pendent, le mot \"climat\" a \u00e9t\u00e9 tr\u00e8s peu prononc\u00e9 pendant la campagne pr\u00e9sidentielle. Gageons que le mot \"adaptation\", qui peut s'employer pour se pr\u00e9parer au mieux (ce qui sera souvent \"au moins mal\") \u00e0 un climat qui va changer de toute fa\u00e7on, le sera encore moins pendant les l\u00e9gislatives. \n\nPourtant il faut commencer \u00e0 agir sans tarder, parce que les actions \u00e0 mener pour supporter au mieux un climat plus sec demandent de la dur\u00e9e. A d\u00e9faut, l'inflation qui nous pr\u00e9occupe tant actuellement pourrait bien nous sembler un plaisant souvenir. \n\nNB : carte issue de https://lnkd.in/ef8KRH6M" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6926101897258926080,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6926101898215235584,urn:li:activity:6926101898215235584,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 127, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6926101898215235584,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6926101898215235584,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6926101898215235584", + "threadId": "activity:6926101898215235584", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6926101898215235584", + "urn": "urn:li:activity:6926101898215235584", + "numComments": 283, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6926101898215235584", + "reactionTypeCounts": [ + { + "count": 4177, + "reactionType": "LIKE" + }, + { + "count": 557, + "reactionType": "INTEREST" + }, + { + "count": 335, + "reactionType": "MAYBE" + }, + { + "count": 70, + "reactionType": "PRAISE" + }, + { + "count": 69, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6926101898215235584", + "numLikes": 5221, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6926101898215235584", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5221, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 16, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 Edited \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6925707670670729217,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6925707670670729217", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6925707670670729217)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6925707670670729217)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_this-eminent-scientist-says-climate-activists-activity-6925707670670729217-CZvn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6925707669978685440", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6925707670670729217", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6925707670670729217,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6925707670670729217,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6925707669978685440", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "CEU2WR03/oOaoqPa9wm+vQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6925707670670729217,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7897138572487402612", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675426188860?e=1677240000&v=beta&t=R3pY8IsysqssRqGn9S9CZzHsktmbJwjwVy6wtkprJ0I", + "expiresAt": 1677240000000, + "height": 418 + }, + { + "width": 1050, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675426188860?e=1677240000&v=beta&t=mNYju5nRICIhJ_bGsrG86mOLNitTve1zlO71PbMnYTQ", + "expiresAt": 1677240000000, + "height": 549 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675426188860?e=1677240000&v=beta&t=JiVk6OSeCOzyFfwk6mmuuPkQhlKXV053meP07LMY4eI", + "expiresAt": 1677240000000, + "height": 83 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675426188860?e=1677240000&v=beta&t=epCJdwgxWs2xL0RL9q4lNAca7EhIflypI2I-YuW9GoE", + "expiresAt": 1677240000000, + "height": 250 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHr0r5FFjt22w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7897138572487402612)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7897138572487402612)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "nytimes.com \u2022 14 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: This Eminent Scientist Says Climate Activists Need to Get Real by nytimes.com", + "actionTarget": "https://www.nytimes.com/interactive/2022/04/25/magazine/vaclav-smil-interview.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "This Eminent Scientist Says Climate Activists Need to Get Real" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6925707669978685440,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Vaclav Smil, un \"penseur de l'\u00e9nergie\" install\u00e9 au Canada (il est d'origine tch\u00e8que), va sortir un nouveau livre. Cela lui vaut une interview du New York Times o\u00f9, au risque de passer pour un vieux ronchon (qu'il est peut-\u00eatre par ailleurs !), il rappelle de mani\u00e8re un peu cash que de se bercer d'illusions en se fixant des objectifs irr\u00e9alistes ne diminue pas les risques que l'on court.\n\nIl est bien connu que l'on trouve toujours \"tr\u00e8s pertinents\" des gens qui pensent.... comme soi :). Exprim\u00e9es certes dans un style diff\u00e9rent, je n'aurais pas fait des r\u00e9ponses tr\u00e8s diff\u00e9rentes aux questions pos\u00e9es par le journaliste. Vaclav Smil rappelle que la d\u00e9carbonation est un chantier de civilisation consid\u00e9rablement plus difficile que l'id\u00e9e que l'essentiel des activistes du climat (et a fortiori des d\u00e9cideurs) s'en fait (ou que certains \u00e9conomistes, comme ceux qui signent cette tribune en expliquant \"qu'il suffit d'investir massivement dans les technologies d\u00e9carbon\u00e9es partout dans le monde\" pour faire de la croissance verte : https://lnkd.in/eGK_78qt ).\n\nNous pensons facilement transport ou logement quand il est question d'\u00e9nergie. Mais Smil rappelle que l'\u00e9nergie c'est aussi l'industrie de base. Notre civilisation est celle de l'acier (quasiment 2 milliards de tonnes produites en 2021 ; 250 kg par terrien), du ciment (environ 4 milliards de tonnes ; 500 kg par terrien), des plastiques et de la chimie organique (environ 500 millions de tonnes). \n\nOr l'industrie de base - qui produit ces mat\u00e9riaux - c'est plus d'\u00e9nergie et d'\u00e9missions - dans le monde - que l'ensemble des moyens de transport. Il n'y a pour le moment pas de plan pour d\u00e9carboner cela en 30 ans, et Smil rappelle que dans ce domaine il y a des lois physiques et chimiques qu'il n'est pas possible de transgresser (produire de l'acier vierge demandera toujours de commencer par d\u00e9barrasser de l'oxyde de fer - le minerai - de son oxyg\u00e8ne, et cela demande une quantit\u00e9 incompressible d'\u00e9nergie).\n\nSmil rappelle que les vitesses d'\u00e9volution des syst\u00e8mes sont lentes, et que de jeter des chiffres en l'air sans avoir r\u00e9fl\u00e9chi \u00e0 la mani\u00e8re d'en faire des objectifs r\u00e9alistes est contreproductif. \n\nCe que dit implicitement Smil, c'est que nous ne tiendrons malheureusement pas les objectifs de 1,5\u00b0C ou 2\u00b0C, parce qu'il est extraordinairement difficile de modifier l'ensemble du corps social \u00e0 la bonne vitesse. Les pessimistes penseront donc que nous allons droit aux ennuis de plus en plus s\u00e9rieux. \n\nLes optimistes verront son message comme un imp\u00e9rieux rappel \u00e0 l'ordre et une invitation toute aussi imp\u00e9rieuse \u00e0 devenir s\u00e9rieux sur la question. Les \u00e9quipes de notre pr\u00e9sident fraichement r\u00e9\u00e9lu qui veut \"\u00e9cologiquement planifier\" seraient bien avis\u00e9es de lire cet interview (ou - ce qui revient au m\u00eame - de revoir l'\u00e9quation de Kaya : https://lnkd.in/gAthJhJ ). Fissa !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6925707669978685440,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6925707670670729217,urn:li:activity:6925707670670729217,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 87, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6925707670670729217,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6925707670670729217,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6925707670670729217", + "threadId": "activity:6925707670670729217", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6925707670670729217", + "urn": "urn:li:activity:6925707670670729217", + "numComments": 115, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6925707670670729217", + "reactionTypeCounts": [ + { + "count": 3302, + "reactionType": "LIKE" + }, + { + "count": 394, + "reactionType": "INTEREST" + }, + { + "count": 220, + "reactionType": "MAYBE" + }, + { + "count": 71, + "reactionType": "PRAISE" + }, + { + "count": 29, + "reactionType": "APPRECIATION" + }, + { + "count": 24, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6925707670670729217", + "numLikes": 4040, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6925707670670729217", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4040, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6925423767846313984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6925423767846313984", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6925423767846313984)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6925423767846313984)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-interview-dans-le-figaro-en-avril-2022-activity-6925423767846313984-SQQn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6925423766772584448", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6925423767846313984", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6925423767846313984,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6925423767846313984,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6925423766772584448", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "0+GLICUc9LQOnnR7iT16kg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6925423767846313984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9150552504265033619", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676068312815?e=1677240000&v=beta&t=NtmQSNjEZWkDyhozxCPSs5tIVRrCyZUi_vUP-jNoTXc", + "expiresAt": 1677240000000, + "height": 511 + }, + { + "width": 1253, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676068312816?e=1677240000&v=beta&t=2T8f6yaL5I3cn4_1D1Zo6ZHhqVBJ99fBf0QQKYAimCQ", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676068312816?e=1677240000&v=beta&t=0HzjTWx0dFv0-YGwMvQN06RUk2aorXbLgGHs2PfKZis", + "expiresAt": 1677240000000, + "height": 102 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676068312816?e=1677240000&v=beta&t=lMR1XNHj2vpWqfnlnpYGbUohRtXpBXDCcHwSwqdHnOg", + "expiresAt": 1677240000000, + "height": 307 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHpeZw-9NbDVQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.63875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9150552504265033619)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9150552504265033619)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 10 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Une interview dans Le Figaro en avril 2022 by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/interviews/une-interview-dans-le-figaro-en-avril-2022/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Une interview dans Le Figaro en avril 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6925423766772584448,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Des kWh, encore des kWh, voici ce quoi il est question dans cette interview au Figaro parue il y a une paire de semaines et que je viens de mettre en acc\u00e8s libre sur mon site. \n\nJe ne suis pas compl\u00e8tement sur que le choix du nouveau ou de la nouvelle premier(e) ministre se fera en ayant ce cadre bien en t\u00eate, mais \"planifier la transition\" c'est normalement aussi tenir compte d'un contexte qui ne sera pas tranquille c\u00f4t\u00e9 approvisionnements, sans m\u00eame parler, \u00e9videmment, de ce qui se profile sur le terrain du climat (avec 1,1 \u00b0C de hausse plan\u00e9taire on a 50\u00b0C au Pakistan fin avril par exemple : https://lnkd.in/eTAPdjus, alors avec 1,5\u00b0C - que nous allons en plus all\u00e8grement d\u00e9passer - il faut s'attendre \u00e0 un peu de grabuge...).\n\nL'\u00e9lu(e) de notre coeur, au Shift Project, devrait mettre l'\u00e9conomie en phase avec une baisse de 5% des \u00e9missions par an (https://lnkd.in/esiqHkbf ), et organiser la r\u00e9silience d'un pays face aux chocs physiques de toute nature (climatique, biologique, d\u00e9faut de ressources, etc) qui vont se multiplier (https://lnkd.in/diZSF5w ). Il n'est malheureusement pas sur que cela soit consid\u00e9r\u00e9 comme plus important que les retraites... qui sont certes un sujet, mais dans un monde en paix et d'abondance. \n\nSi le monde doit cesser d'\u00eatre un monde en paix et d'abondance, il y a peut-\u00eatre plus urgent \u00e0 faire, et nos concitoyens sont peut-\u00eatre d'accord pour que les probl\u00e8mes soient rang\u00e9s dans le bon ordre (en tous cas ca vaut le coup de leur demander)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6925423766772584448,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6925423767846313984,urn:li:activity:6925423767846313984,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 38, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6925423767846313984,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6925423767846313984,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6925423767846313984", + "threadId": "activity:6925423767846313984", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6925423767846313984", + "urn": "urn:li:activity:6925423767846313984", + "numComments": 78, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6925423767846313984", + "reactionTypeCounts": [ + { + "count": 833, + "reactionType": "LIKE" + }, + { + "count": 55, + "reactionType": "INTEREST" + }, + { + "count": 47, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6925423767846313984", + "numLikes": 971, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6925423767846313984", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 971, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GbRvZPMRS5ecP8guieFZnw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6925332946648231936,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6925332946648231936", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6925332946648231936)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6925332946648231936)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-manque-de-certains-m%C3%A9taux-risque-de-mettre-activity-6925332946648231936-8ov_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6925332946048454656", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6925332946648231936", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6925332946648231936,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6925332946648231936,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6925332946048454656", + "excludedFromSeen": false, + "trackingData": { + "requestId": "9758f071-d31e-4f1d-a851-4121223e63a1", + "trackingId": "EJmihz5slHOAW2282vqMZQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6925332946648231936,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7053631236273231365", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675811727454?e=1677240000&v=beta&t=Zo4iKem3vr5VZs3ubtgkIfypnYLz45B0ggdLBdRtlfQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675811727454?e=1677240000&v=beta&t=MI1VOdIAsgu-4Qslv50AMZviCWY9H1PZ8wtabX_Rub8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675811727454?e=1677240000&v=beta&t=BxoT737t9XCbCqfKUvj2nY9kaZKQJM-xlCdAtV_9_cM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675811727454?e=1677240000&v=beta&t=fAQhNvj5BA1NoGB96bG5vIaFFzVMP9KkiNaLYA2RjUw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFbtTgNzoHxKw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7053631236273231365)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7053631236273231365)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le manque de certains m\u00e9taux risque de mettre un frein \u00e0 l'essor des \u00e9nergies vertes by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/le-manque-de-certains-metaux-risque-de-mettre-un-frein-a-lessor-des-energies-vertes-1402784" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le manque de certains m\u00e9taux risque de mettre un frein \u00e0 l'essor des \u00e9nergies vertes" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6925332946048454656,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a d\u00e9j\u00e0 eu un certain nombre de commentaires ici sur ce rapport fait par des chercheurs de l'Universit\u00e9 de Louvain (en Belgique) sur la demande en m\u00e9taux de la \"transition\" qui risque de ne pas \u00eatre si facile que cela \u00e0 satisfaire : https://lnkd.in/eAfPC8Xs\n\nLe commentaire que je voudrais faire ici est le suivant : pour savoir si un plan qui porte sur une grandeur physique a une chance de se r\u00e9aliser, les couts pass\u00e9s ne nous sont d'aucun secours. Or c'est souvent cette donn\u00e9e qui est la premi\u00e8re prise en compte dans l'observation du pass\u00e9 pour jauger de la facilit\u00e9 \u00e0 faire les choses \u00e0 l'avenir. \n\nPar exemple dans le dernier rapport du (groupe 3 du) GIEC il y a un graphique qui donne les \u00e9volutions de cout pass\u00e9es des \u00e9nergies dites renouvelables, et la conclusion que le lecteur est tent\u00e9 d'en tirer est que, ces modes \u00e9tant devenus \"pas plus chers que le fossile\", on va pouvoir en d\u00e9ployer partout. Voire.\n\nL'\u00e9nergie est une grandeur physique. La quantit\u00e9 de cuivre ou de nickel qu'il faut pour fabriquer une voiture \u00e9lectrique ou une \u00e9olienne sont des grandeurs physiques. La physique a l'immense avantage d'avoir des lois constantes. Pourquoi ne pas en profiter pour regarder d'entr\u00e9e de jeu la question \u00e9nerg\u00e9tique avec le bon prisme de lecture ?\n\nAvant de faire le moindre calcul \u00e9conomique, qui ne porte que sur la composante humaine du plan pour l'avenir (l'argent ne paye que des hommes, mais pas la nature), il faut commencer par faire des calculs physiques. \n\nPour savoir si la plan\u00e8te supportera 1 milliard de voitures \u00e9lectriques (car la transition devra \u00eatre mondiale puisque le probl\u00e8me est mondial) pendant un si\u00e8cle, il faut regarder la quantit\u00e9 de nickel ou de lithium n\u00e9cessaire par voiture, regarder o\u00f9 sont les limites physiques th\u00e9oriques pour faire mieux, et faire une r\u00e8gle de trois avec 1 milliard de v\u00e9hicules et une dur\u00e9e de renouvellement des v\u00e9hicules tous les X ann\u00e9es (20, 30, 40, 50, peu importe mais il faut poser une hypoth\u00e8se).\n\nIl faut regarder ce qui peut revenir du recyclage (jamais 100%) et confronter cela aux stocks extractibles... et \u00e0 l'\u00e9nergie n\u00e9cessaire pour extraire et transformer ces m\u00e9taux (\u00e9nergie qui augmente fortement quand la teneur en m\u00e9tal des mines diminue, ce qu'elle fait toujours avec le temps).\n\nMais ce n'est pas comme cela que les plans sont faits. Trop souvent on voit de la prospective :\n- qui part des donn\u00e9es \u00e9conomiques alors que l'\u00e9conomie du pass\u00e9 n'est pas pr\u00e9dictive de celle de demain\n- qui prolonge la facilit\u00e9 pass\u00e9e sans se demander \u00e0 quoi elle \u00e9tait due et si les conditions continueront \u00e0 \u00eatre r\u00e9unies plus tard\n- qui postule un avenir continu et sans crises, alors que ce ne va pas \u00eatre le cas\n- qui raisonne \"toutes choses \u00e9gales par ailleurs\" en dehors du domaine qu'ils regardent...\n\nPlanifier sur cette base ne peut qu'amener des \"surprises\" quand, apr\u00e8s coup, on regarde ce qui aurait du l'\u00eatre d\u00e8s le d\u00e9but : les possibilit\u00e9s physiques." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6925332946048454656,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6925332946648231936,urn:li:activity:6925332946648231936,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 133, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6925332946648231936,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6925332946648231936,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6925332946648231936", + "threadId": "activity:6925332946648231936", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6925332946648231936", + "urn": "urn:li:activity:6925332946648231936", + "numComments": 367, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6925332946648231936", + "reactionTypeCounts": [ + { + "count": 3397, + "reactionType": "LIKE" + }, + { + "count": 458, + "reactionType": "INTEREST" + }, + { + "count": 352, + "reactionType": "MAYBE" + }, + { + "count": 107, + "reactionType": "PRAISE" + }, + { + "count": 25, + "reactionType": "EMPATHY" + }, + { + "count": 24, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6925332946648231936", + "numLikes": 4363, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6925332946648231936", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4363, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6925194287785652224,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1024481", + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "U+9QGjQhQniwSstMPpojBA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "U+9QGjQhQniwSstMPpojBA==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Carbone 4", + "actionTarget": "https://www.linkedin.com/company/carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1024481" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "118,673 followers" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6924275595631599616,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6924275595631599616", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6924275595631599616)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6924275595631599616)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/carbone-4_formation-r%C3%A9silience-climatique-des-entreprises-activity-6924275595631599616-IBp-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6924275594977267712", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1024481", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6924275595631599616,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6924275595631599616,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6924275594977267712", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "Z2Kaf0f4kbLEZ8AImgxt6g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6924275595631599616,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8109440995357540631", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1650875932080?e=1679529600&v=beta&t=NvgH9PgQkLZRuJWOi7rG5aoQ1lA_W0Ce_RYvwwIF7gU", + "expiresAt": 1679529600000, + "height": 1153 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1650875932149?e=1679529600&v=beta&t=CFrOWv8GiW1676nw1kFt8fAs3ommkou6L4koJzdfeAI", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1650875932149?e=1679529600&v=beta&t=JPyKeQJmTVGQ5-S4ihU5s_aXwSUvrRvdcMHMoRoAF3w", + "expiresAt": 1679529600000, + "height": 721 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1650875932149?e=1679529600&v=beta&t=dyu7oSvfe6Q_zdYTAKTHpuYN0MnJEge7-qMvN82Ctxk", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1650875932149?e=1679529600&v=beta&t=SkBZvY8_dAk_IWUD6DiHTGth983N7XtNo-A6KMClLwI", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1650875932149?e=1679529600&v=beta&t=fQ-nye11Af9zw5YqidYcFsHdYv4LHlkH-clG7LIblaQ", + "expiresAt": 1679529600000, + "height": 450 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E22AQFCYz256mjw5A/feedshare-shrink_" + }, + "displayAspectRatio": 0.56298828125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8109440995357540631)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8109440995357540631)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.hop3team.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Formation R\u00e9silience climatique des entreprises - M\u00e9thode OCARA by carbone4.hop3team.com", + "actionTarget": "https://carbone4.hop3team.com/formations/resilience-climatique-des-entreprises-methode-ocara" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Formation R\u00e9silience climatique des entreprises - M\u00e9thode OCARA" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6924275594977267712,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "[Formation\u00a0#r\u00e9silience]\nIl reste quelques places pour la prochaine formation R\u00e9silience climatique des entreprises - M\u00e9thode OCARA !\n\n\u25b6\ufe0f Conna\u00eetre les concepts cl\u00e9s li\u00e9s \u00e0 la r\u00e9silience et l\u2019adaptation des entreprises face au changement climatique\n\u25b6\ufe0f Ma\u00eetriser la m\u00e9thodologie et l'outil OCARA (https://lnkd.in/g-imsVZW) en vue d\u2019appr\u00e9hender le niveau de r\u00e9silience climatique de votre entreprise et d\u2019initier une d\u00e9marche d\u2019adaptation face aux cons\u00e9quences du d\u00e9r\u00e8glement climatique\n\n\ud83d\udc49 Prochaine session du\u00a03 mai au 26 juin (8 heures de formation dispens\u00e9es en 5 s\u00e9ances).\n\nPour vous inscrire :\u00a0https://lnkd.in/dksSKn68 \nPour en savoir plus sur le contenu :\u00a0https://lnkd.in/dJ7KrVWD\nPour toute question, contactez\u00a0formation-ocara@carbone4.com" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6924275594977267712,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6924275595631599616,urn:li:activity:6924275595631599616,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 2, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6924275595631599616,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6924275595631599616,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6924275595631599616", + "threadId": "activity:6924275595631599616", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6924275595631599616", + "urn": "urn:li:activity:6924275595631599616", + "numComments": 2, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6924275595631599616", + "reactionTypeCounts": [ + { + "count": 28, + "reactionType": "LIKE" + }, + { + "count": 3, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6924275595631599616", + "numLikes": 32, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6924275595631599616", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6925194287785652224", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6925194287785652224)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6925194287785652224)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_formation-r%C3%A9silience-climatique-des-entreprises-activity-6925194287785652224-sBmF?utm_source=share&utm_medium=member_desktop" + }, + { + "subActionsMenu": { + "title": "Who would you like to unfollow?", + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + } + ] + }, + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_ACTIONS", + "text": "Unfollow" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6925194287206825984", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6925194287785652224", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6925194287785652224,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6925194287785652224,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6925194287206825984", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "Z2Kaf0f4kbLEZ8AImgxt6g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6925194287785652224,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6925194287206825984,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pour le moment les 45 \u00b0C en avril ce n'est qu'au Pakistan mais il est \u00e9vident que chez nous les choses risquent fort de ne pas s'arranger avec le temps.\n\nSelon l'adage \"mieux vaut pr\u00e9venir que gu\u00e9rir\" il vaut mieux essayer de comprendre tout ce qui peut \"partir de travers\" avec le changement climatique avant que ca n'arrive qu'apr\u00e8s.\n\nComprendre le plus t\u00f4t possible, tel est l'objectif de la formation \"r\u00e9silience climatique des entreprises\" \u00e9voqu\u00e9e ci-dessous (et qui est \u00e9ligible OPCO)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6925194287206825984,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6925194287785652224,urn:li:activity:6925194287785652224,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 3, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6925194287785652224,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6925194287785652224,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6925194287785652224", + "threadId": "activity:6925194287785652224", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6925194287785652224", + "urn": "urn:li:activity:6925194287785652224", + "numComments": 6, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6925194287785652224", + "reactionTypeCounts": [ + { + "count": 148, + "reactionType": "LIKE" + }, + { + "count": 9, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6925194287785652224", + "numLikes": 174, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6925194287785652224", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 174, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6925119768999903232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6925119768999903232", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6925119768999903232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6925119768999903232)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-guerre-lagriculture-et-le-climat-les-activity-6925119768999903232-pOJp?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6925119768446279680", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6925119768999903232", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6925119768999903232,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6925119768999903232,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6925119768446279680", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "tuf5d9nyGqeh9hm+L13a+A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6925119768999903232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9219596700516447792", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675908725053?e=1677240000&v=beta&t=u5o3Z5k9aUiPBe9hiJ8N36BrD6RtBzN3Av4LOyoRa2s", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 1066, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675908725053?e=1677240000&v=beta&t=fLHmMUQLwAPUU69mm1ehzyC49BXvzUMUWqBiyNim2vs", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675908725054?e=1677240000&v=beta&t=ovjTuOb_0rkMMqT8E51yNqUAOLT6ibn-G4vXpnMLiLc", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675908725054?e=1677240000&v=beta&t=4tP0FS259TjFu6scYeinByy2Czhde12i6wKlhAFn0gs", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEAhyDvXanLOQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9219596700516447792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9219596700516447792)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La guerre, l\u2019agriculture et le climat : les limites de notre syst\u00e8me alimentaire | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/article-guerre-agri-climat" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La guerre, l\u2019agriculture et le climat : les limites de notre syst\u00e8me alimentaire | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6925119768446279680,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La guerre en Ukraine a fait r\u00e9aliser \u00e0 notre pays que la d\u00e9pendance \u00e0 une source d'\u00e9nergie situ\u00e9e en dehors de notre territoire n'avait pas que des avantages (car cela a aussi des avantages, sinon nous ne le ferions pas !).\n\nPour le gaz, d\u00e9sormais le message est bien pass\u00e9. Mais par ricochet cet \u00e9pisode ukrainien cr\u00e9e \u00e9galement des perturbations sur d'autres chaines de valeur, et notamment dans le domaine agricole et agroalimentaire.\n\nCet article de Carbone 4 l'illustre avec 3 exemples : les tomates, la volaille et les grandes cultures." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6925119768446279680,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6925119768999903232,urn:li:activity:6925119768999903232,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 16, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6925119768999903232,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6925119768999903232,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6925119768999903232", + "threadId": "activity:6925119768999903232", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6925119768999903232", + "urn": "urn:li:activity:6925119768999903232", + "numComments": 18, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6925119768999903232", + "reactionTypeCounts": [ + { + "count": 328, + "reactionType": "LIKE" + }, + { + "count": 39, + "reactionType": "INTEREST" + }, + { + "count": 38, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6925119768999903232", + "numLikes": 413, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6925119768999903232", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 413, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6924815871341174784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1442492", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "YXQ5rBPBSJu+Klix3Dju0w==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 17, + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "YXQ5rBPBSJu+Klix3Dju0w==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "The Shift Project" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: The Shift Project", + "actionTarget": "https://www.linkedin.com/company/the-shift-project/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1442492" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "154,075 followers" + }, + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1442492", + "followerCount": 154075, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1442492", + "following": false, + "trackingUrn": "urn:li:company:1442492" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followCompany" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6919998186853945344,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6919998186853945344", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6919998186853945344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6919998186853945344)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/the-shift-project_retrouvez-l%C3%A9quipe-du-shift-le-jeudi-5-activity-6919998186853945344-I0Br?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:ugcPost:6919998186233200640", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1442492", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6919998186853945344,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6919998186853945344,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:ugcPost:6919998186233200640", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "Bld300PxAO49hh/wVhwHHA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6919998186853945344,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.EventComponent": { + "description": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 0, + "length": 1, + "artDecoIcon": "IC_VIDEO_CAMERA_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": " Online" + }, + "navigationContext": { + "trackingActionType": "viewEvent", + "accessibilityText": "View event: Former les acteurs de l'\u00e9conomie de demain | Conf\u00e9rence du Shift", + "actionTarget": "https://www.linkedin.com/events/formerlesacteursdel-conomiedede6919998184228323328/" + }, + "banner": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:D4E1EAQH90eO6JwkmvQ", + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 480, + "fileIdentifyingUrlPathSegment": "crop_270_480/0/1649856133762?e=1677240000&v=beta&t=5J3YdDmYCUf0fxv7znARohCvwEiVBkDpKAJ4brHWQrU", + "expiresAt": 1677240000000, + "height": 270 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "crop_720_1280/0/1649856133762?e=1677240000&v=beta&t=cE8hHD52qpAGRCa2skBEuOe-ahmm9pwcSkG1MvfftUo", + "expiresAt": 1677240000000, + "height": 720 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E1EAQH90eO6JwkmvQ/event-background-image-" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "title": { + "textDirection": "USER_LOCALE", + "text": "Former les acteurs de l'\u00e9conomie de demain | Conf\u00e9rence du Shift" + }, + "insightText": { + "textDirection": "USER_LOCALE", + "text": "331 attendees" + }, + "titleContext": { + "textDirection": "USER_LOCALE", + "text": "Thu, May 5, 2022, 9:15 AM - 12:10 PM CEST" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:ugcPost:6919998186233200640,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 73, + "length": 14, + "miniCompany": { + "objectUrn": "urn:li:company:11047940", + "entityUrn": "urn:li:fs_miniCompany:11047940", + "name": "Ground Control", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1519881710873?e=1684972800&v=beta&t=uEqYPev9_3AD3LGli-rKN9UhHD67nJl6J2YTkzOPag8", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1519881710873?e=1684972800&v=beta&t=cGC4DSTKI0daCkb7cbgUSntrlwK-OXrRRgLoeQ9aCEw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1519881710873?e=1684972800&v=beta&t=g3zVywP-lBvsatd7EHBswaTXu9hSrFctCWTTgsbpXes", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQFhxAvbZZZjvA/company-logo_" + } + }, + "universalName": "ground-control-paris", + "dashCompanyUrn": "urn:li:fsd_company:11047940", + "trackingId": "kIGJTuQ5T/6GFwVl6DQU2w==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "\ud83d\udce2 Retrouvez l'\u00e9quipe du Shift le jeudi 5 mai prochain de 9h00 \u00e0 12h10 au Ground Control (dans la limite des places disponibles) et en direct sur Zoom pour suivre la pr\u00e9sentation du rapport interm\u00e9diaire du projet \u00ab ClimatSup Business \u2013 Former les acteurs de l\u2019\u00e9conomie de demain \u00bb ! \n\n\ud83d\udc49 Inscriptions \u00e0 l'\u00e9v\u00e9nement : https://lnkd.in/et9s7aRp\n\ud83d\udc49 Programme complet de l'\u00e9v\u00e9nement : https://bit.ly/3J7Pctn\n\ud83d\udc49 Toutes les infos sur le projet \u00ab ClimatSup Business \u00bb : https://bit.ly/3JDtlu1" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:ugcPost:6919998186233200640,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:ugcPost:6919998186233200640,urn:li:ugcPost:6919998186233200640,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 3, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:ugcPost:6919998186233200640,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:ugcPost:6919998186233200640,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:ugcPost:6919998186233200640", + "threadId": "ugcPost:6919998186233200640", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:ugcPost:6919998186233200640", + "urn": "urn:li:ugcPost:6919998186233200640", + "numComments": 3, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:ugcPost:6919998186233200640", + "reactionTypeCounts": [ + { + "count": 27, + "reactionType": "LIKE" + }, + { + "count": 2, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:ugcPost:6919998186233200640", + "numLikes": 32, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:ugcPost:6919998186233200640", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6924815871341174784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6924815871341174784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6924815871341174784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_retrouvez-l%C3%A9quipe-du-shift-le-jeudi-5-activity-6924815871341174784-Y0jz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:ugcPost:6924815869571174400", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6924815871341174784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6924815871341174784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6924815871341174784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:ugcPost:6924815869571174400", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "Bld300PxAO49hh/wVhwHHA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6924815871341174784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:ugcPost:6924815869571174400,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Fin du covid, fin du \"tout \u00e0 distance\" dans les manifestations du Shift Project !\n\nLe 5 mai prochain, de 9h00 \u00e0 12h10, aura lieu au @GroundControlParis (81, rue du Charolais 75012 Paris) la pr\u00e9sentation du rapport interm\u00e9diaire du projet \u00ab ClimatSup Business \u2013 Former les acteurs de l\u2019\u00e9conomie de demain \u00bb.\n\nCe projet consiste \u00e0 regarder, \u00e0 partir d'un cas pratique (Audencia) comment \"aligner\" le cursus d'une \u00e9cole de commerce avec la baisse des \u00e9missions de gaz \u00e0 effet de serre (c'est donc le pendant \"\u00e9cole de commerce\" de ce qui a \u00e9t\u00e9 fait sur le cas du groupe INSA pour les \u00e9coles d'ing\u00e9nieur).\n\nPeut-on faire un business plan de la m\u00eame mani\u00e8re dans un monde en expansion et dans un monde en contraction ? La finance verte, cela s'apprend comment ? Le contr\u00f4le de gestion ou le conseil en strat\u00e9gie \"d\u00e9carbonants\" ressemblent-ils \u00e0 ce qu'ils sont dans un monde fossile ?\n\nLa pr\u00e9sentation des travaux du Shift Project sera l'occasion de se pencher sur ce genre de questions. Pour celles et ceux qui seront vraiment r\u00e9tifs \u00e0 venir en personne (alors que c'est gratuit !), il restera possible de tout suivre par zoom ou FB. Programme de la journ\u00e9e et d\u00e9tails ci-dessous." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:ugcPost:6924815869571174400,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:ugcPost:6924815869571174400,urn:li:ugcPost:6924815869571174400,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 0, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:ugcPost:6924815869571174400,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:ugcPost:6924815869571174400,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:ugcPost:6924815869571174400", + "threadId": "ugcPost:6924815869571174400", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:ugcPost:6924815869571174400", + "urn": "urn:li:ugcPost:6924815869571174400", + "numComments": 0, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:ugcPost:6924815869571174400", + "reactionTypeCounts": [ + { + "count": 41, + "reactionType": "LIKE" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:ugcPost:6924815869571174400", + "numLikes": 45, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:ugcPost:6924815869571174400", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 45, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6924667520876478465,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6924667520876478465", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6924667520876478465)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6924667520876478465)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_quand-carbone-4-a-%C3%A9t%C3%A9-cr%C3%A9%C3%A9-le-chiffre-4-activity-6924667520876478465-n4xQ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6924667518984851457", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6924667520876478465", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6924667520876478465,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6924667520876478465,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6924667518984851457", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "PnRdcQWJYkawgvZEkLJgrg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6924667520876478465,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQFbFEIvXoJ5Ig", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQFbFEIvXoJ5Ig", + "artifacts": [ + { + "width": 654, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1650969390153?e=1679529600&v=beta&t=4ZJKJJHUTHLqjw5xX6CLCHT1vUUENOVmFMOW87_2o9I", + "expiresAt": 1679529600000, + "height": 586 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1650969390204?e=1679529600&v=beta&t=hVBKglRCe9YQvl7uxgK7YgxRvvYGM1TuCsKJS9l3C4U", + "expiresAt": 1679529600000, + "height": 17 + }, + { + "width": 654, + "fileIdentifyingUrlPathSegment": "1280/0/1650969390204?e=1679529600&v=beta&t=b59Gyz_TZifVNLpv4wwDTCkIitIsHZxlCpT4UYdpnI4", + "expiresAt": 1679529600000, + "height": 586 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1650969390204?e=1679529600&v=beta&t=F_NeBK7RaAapPwG6ksmG3obD5KUwtrYG_wc_bqcPnks", + "expiresAt": 1679529600000, + "height": 430 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1650969390204?e=1679529600&v=beta&t=5MDkC-1o73ocj6mwm7p3eL4sYeFlCfL6WFn8kF42Bjo", + "expiresAt": 1679529600000, + "height": 143 + }, + { + "width": 654, + "fileIdentifyingUrlPathSegment": "800/0/1650969390204?e=1679529600&v=beta&t=-wZZakPNyoZTPB1rJ02RFCP5aDwpNmiD-inVUv21W5o", + "expiresAt": 1679529600000, + "height": 586 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQFbFEIvXoJ5Ig/feedshare-shrink_" + }, + "displayAspectRatio": 0.8960244648318043 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6924667518984851457,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1201, + "length": 12, + "miniProfile": { + "firstName": "Arthur", + "lastName": "Pivin", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABoLMXUBGYLOodE_ZKQqgKGCBQhYkLi27J4", + "occupation": "Manager chez Carbone 4 - Head of Biodiversity", + "objectUrn": "urn:li:member:436941173", + "entityUrn": "urn:li:fs_miniProfile:ACoAABoLMXUBGYLOodE_ZKQqgKGCBQhYkLi27J4", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1607617893004?e=1681948800&v=beta&t=AtMbPP1jHEqWaI-GT5cLRmmMppqXSXKXohwQ__kb0-M", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1607617893004?e=1681948800&v=beta&t=H026o0nsL_lLbqJHCw5iiLfPwu_J4VE1uK4QF-SCSog", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQEYuhI1BnZtOg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "arthur-pivin", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1651044693840?e=1681948800&v=beta&t=-8dMNY5TXCFNlNndQUiFKqLQ3dfe0vIQ2ui6NIU0BKc", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1651044693840?e=1681948800&v=beta&t=rNjb03cT92MYTYUQFCBw1Duxx3QtuXbVgWz5TA6aEXQ", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1651044693840?e=1681948800&v=beta&t=fUmjLpAso5wHHiElNblMvcG3ivY4prYmAqk5T1gBm8k", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1651044693840?e=1681948800&v=beta&t=cenT2R5UJ19TVww0brQQWgEpu_p0ndC4ETjDB78C_T8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQGwoHRVm6j5LA/profile-displayphoto-shrink_" + } + }, + "trackingId": "TQ9uv0iCQsueWk7O02J7mg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Quand Carbone 4 a \u00e9t\u00e9 cr\u00e9\u00e9, le chiffre 4 faisait r\u00e9f\u00e9rence \u00e0 l'objectif de division par 4 des \u00e9missions de carbone fossile en France, qui \u00e9tait inscrit dans la loi sur l'\u00e9nergie de 2005. M\u00eame si le diviseur doit d\u00e9sormais (h\u00e9las) \u00eatre augment\u00e9, la direction \u00e0 prendre sur nos \u00e9missions de gaz \u00e0 effet de serre reste la m\u00eame.\n\nMais ce m\u00eame chiffre (ou plus) pourrait d\u00e9sormais s'appliquer \u00e0 la multiplication d'un autre carbone : le carbone \"vivant\", \u00e0 savoir la biomasse d'esp\u00e8ces non domestiqu\u00e9es, que l'on appelle encore... la biodiversit\u00e9.\n\nEn effet, apr\u00e8s le climat (qui reste \u00e9videmment au coeur de nos pr\u00e9occupations), Carbone 4 a d\u00e9cid\u00e9 d'investiguer un nouveau champ de pression environnementale : la perte de biodiversit\u00e9. Notre petit groupe poss\u00e8de d\u00e9j\u00e0 une offre dans ce domaine, port\u00e9e par Carbon 4 Finance. Il s'agit de BIA (pour Biodiversity Impact Analytics), d\u00e9velopp\u00e9e en partenariat avec CDC Biodiversit\u00e9, et qui vise \u00e0 donner l'empreinte biodiversit\u00e9 des investissements financiers.\n\nPour renforcer l'\u00e9quipe qui a aussi \u00e9t\u00e9 cr\u00e9\u00e9e c\u00f4t\u00e9 conseil, nous recherchons un(e) chef(fe) de projet biodiversit\u00e9 : https://lnkd.in/eEUKcFKZ\n\nLe ou la titulaire du poste travaillera notamment avec Arthur Pivin, grand planteur d'arbres devant l'Eternel, qui s'est exprim\u00e9 r\u00e9cemment sur son parcours et sa profession de foi ici : https://lnkd.in/expyZmp3\n\nA vos CV si ca vous int\u00e9resse !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6924667518984851457,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6924667520876478465,urn:li:activity:6924667520876478465,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6924667520876478465,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6924667520876478465,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6924667520876478465", + "threadId": "activity:6924667520876478465", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6924667520876478465", + "urn": "urn:li:activity:6924667520876478465", + "numComments": 68, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6924667520876478465", + "reactionTypeCounts": [ + { + "count": 1114, + "reactionType": "LIKE" + }, + { + "count": 78, + "reactionType": "PRAISE" + }, + { + "count": 66, + "reactionType": "MAYBE" + }, + { + "count": 43, + "reactionType": "APPRECIATION" + }, + { + "count": 29, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6924667520876478465", + "numLikes": 1347, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6924667520876478465", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1347, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6924599328455970816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6924599328455970816", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6924599328455970816)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6924599328455970816)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rapport-du-groupe-iii-du-giec-les-points-activity-6924599328455970816-tLmD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6924599327927496704", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6924599328455970816", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6924599328455970816,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6924599328455970816,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6924599327927496704", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "Hn4KDwoNdyIK2nSZ9xTOyA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6924599328455970816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7826814519644885626", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675842708722?e=1677240000&v=beta&t=cEMR22bhaoCXC_dGUVrW4A7h_HFoIQKQLDiJlqIz1-U", + "expiresAt": 1677240000000, + "height": 507 + }, + { + "width": 1262, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675842708722?e=1677240000&v=beta&t=3Ri-CygfyuR21OKhgTbSqG23OKzEufOvv7DmUmI0yp8", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675842708722?e=1677240000&v=beta&t=DTTephwl7BKJVGytQIQ59W4mrLbcxhiO01fA7KKh1E8", + "expiresAt": 1677240000000, + "height": 101 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675842708722?e=1677240000&v=beta&t=VayQROjQHNrUK3zQyhLxosxFVxEFOzsnKiw0kkaFHD8", + "expiresAt": 1677240000000, + "height": 304 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEsmvzl0Cs-Dw/articleshare-shrink_" + }, + "displayAspectRatio": 0.63375 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7826814519644885626)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7826814519644885626)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Rapport du groupe III du GIEC : Les points cl\u00e9s | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/article-giec-groupe3-points-cles" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Rapport du groupe III du GIEC : Les points cl\u00e9s | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6924599327927496704,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le rapport du groupe 3 du GIEC (celui qui porte sur les marges de manoeuvre pour r\u00e9duire les \u00e9missions) a fait l'objet d'un r\u00e9sum\u00e9 pour d\u00e9cideurs en anglais dont Carbone 4 vous propose un r\u00e9sum\u00e9 du r\u00e9sum\u00e9... mais en fran\u00e7ais :).\n\nRappelons que le GIEC ne fait que r\u00e9sumer les publications sous-jacentes qui ont eu lieu dans le domaine couvert. Sur la partie \u00e9missions pass\u00e9es, la mati\u00e8re premi\u00e8re est compos\u00e9e des publications scientifiques ou des inventaires nationaux faisant \u00e9tat des \u00e9missions. Sur les possibles \u00e9volutions futures, il est largement fait appel \u00e0 des travaux de sc\u00e9narisation qui sont souvent faits par des \u00e9conomistes.\n\nPar ailleurs, si un sc\u00e9nario n'a pas \u00e9t\u00e9 publi\u00e9 dans la litt\u00e9rature \u00e0 comit\u00e9 de lecture, il ne sera pas pris en compte dans le rapport du GIEC. Ce dernier, comme le rappelle cet article de Carbone 4, ne fait pas de recherche en propre, mais r\u00e9sume celle d\u00e9j\u00e0 faite.\n\nLes sc\u00e9narios qui permettent de limiter le r\u00e9chauffement \u00e0 2\u00b0C supposent tous une tr\u00e8s forte baisse des \u00e9missions d\u00e8s maintenant, et surtout supposent tous que d'ici \u00e0 la fin du si\u00e8cle les activit\u00e9s humaines sont devenues un puits net de CO2 (cette conclusion, pour le coup, vient des mod\u00e8les physiques et non des \u00e9conomistes).\n\nDit autrement, pour tenir cette trajectoire, vers 2070 au plus tard nous n'\u00e9mettrions plus un gramme de CO2 fossile, et en plus nos activit\u00e9s seraient globalement \"absorbeuses\" de CO2 apr\u00e8s cette date.\n\nInutile de dire que ce n'est pas gagn\u00e9. L'objectif de 2\u00b0C demanderait, litt\u00e9ralement, une forme d'\u00e9conomie de guerre. Pour \u00e9viter la vraie." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6924599327927496704,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6924599328455970816,urn:li:activity:6924599328455970816,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6924599328455970816,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6924599328455970816,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6924599328455970816", + "threadId": "activity:6924599328455970816", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6924599328455970816", + "urn": "urn:li:activity:6924599328455970816", + "numComments": 48, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6924599328455970816", + "reactionTypeCounts": [ + { + "count": 822, + "reactionType": "LIKE" + }, + { + "count": 105, + "reactionType": "INTEREST" + }, + { + "count": 63, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6924599328455970816", + "numLikes": 1022, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6924599328455970816", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1022, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6924255468332695552,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6924255468332695552", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6924255468332695552)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6924255468332695552)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-le-plan-de-transformation-de-l%C3%A9conomie-activity-6924255468332695552-BFwh?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6924255467653246976", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6924255468332695552", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6924255468332695552,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6924255468332695552,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6924255467653246976", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "KGLYoccUPCeNSowryFaCRA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6924255468332695552,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7850330588040311691", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 752, + "fileIdentifyingUrlPathSegment": "800/0/1676457306839?e=1677240000&v=beta&t=8spi_sP2z0GhQmCs5ZfJ42AYQ-MEPeDOk0McFHQoVqU", + "expiresAt": 1677240000000, + "height": 560 + }, + { + "width": 752, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676457306839?e=1677240000&v=beta&t=wiDj8eAd-bOhZ2RO3H9F6JWbZZmnDtva8_n35zPCc9A", + "expiresAt": 1677240000000, + "height": 560 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676457306840?e=1677240000&v=beta&t=OzvF0YPhjghgZbrihwE54eQRBK3ZfIor-mqvAWPlxys", + "expiresAt": 1677240000000, + "height": 119 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676457306840?e=1677240000&v=beta&t=rPrxJtohi3p_6LUkGgfRThwFqAioheqaSQMCzIHFLEs", + "expiresAt": 1677240000000, + "height": 357 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEeKpy6O5fzHA/articleshare-shrink_" + }, + "displayAspectRatio": 0.7446808510638298 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7850330588040311691)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7850330588040311691)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ilnousfautunplan.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : le Plan de transformation de l'\u00e9conomie fran\u00e7aise | Shift Project by ilnousfautunplan.fr", + "actionTarget": "https://ilnousfautunplan.fr/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat : le Plan de transformation de l'\u00e9conomie fran\u00e7aise | Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6924255467653246976,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Touch\u00e9 par la gr\u00e2ce ou fin manipulateur ? Le candidat redevenu pr\u00e9sident aura largement utilis\u00e9 dans l'entre deux tours un mot cher au Shift Project et au Plan de Transformation de l'Economie Fran\u00e7aise : la planification. \n\nLes Echos de ce matin semblent consid\u00e9rer que le virage de Macron est r\u00e9el, et que ce terme de \"planification\" n'est pas juste un mot dans un discours pour capter un \u00e9lectorat m\u00e9lenchoniste qui lui \u00e9tait indispensable : https://lnkd.in/eRmJEWNb\n\nL'avenir dira, \u00e9videmment, ce qu'il convient d'en penser... \u00e0 la condition, qui n'est pas du tout assur\u00e9e, que le pr\u00e9sident qui rempile dispose d'une majorit\u00e9 \u00e0 l'Assembl\u00e9e Nationale, puisque c'est cette derni\u00e8re qui d\u00e9signe en pratique le Premier Ministre et vote les lois.\n\nCela \u00e9tant, la modeste exp\u00e9rience du Shift Project est que, au sein de la soci\u00e9t\u00e9 civile, ce terme de \"planification\" rencontre de plus en plus d'\u00e9chos positifs. Dans les manifestations qui ont \u00e9t\u00e9 organis\u00e9es autour du \"plan de transformation de l'\u00e9conomie fran\u00e7aise\", nous avons entendu des hauts responsables patronaux comme de syndicats de salari\u00e9s d\u00e9clarer que cette approche leur semblait pertinente.\n\nPlanifions, donc, mais quoi et comment ? Ce n'est de fait pas pareil de planifier \"la start-up nation\" ou la d\u00e9carbonation de l'\u00e9conomie, une nouvelle r\u00e9volution agricole ou \"la d\u00e9fense du pouvoir d'achat\".\n\nLa campagne pr\u00e9sidentielle n'aura pas vraiment permis de trancher cette question. La d\u00e9carbonation aura \u00e9t\u00e9 (tr\u00e8s) peu pr\u00e9sente dans les discours, quasiment absente des questions des journalistes politiques, et surtout pas du tout mise en perspective avec les autres sujets d\u00e9battus, qui pourtant sont directement li\u00e9s \u00e0 l'abondance des machines (retraites, pouvoir d'achat, am\u00e9nagement du territoire, \u00e9conomie productive, ch\u00f4mage...).\n\nThe Shift Project ne consid\u00e8re donc pas du tout que nous avons gagn\u00e9 la bataille finale parce que ce mot de \"planification\" a \u00e9t\u00e9 utilis\u00e9 au moment du sprint final. A ce stade, nous pouvons tout juste revendiquer avoir un peu contribu\u00e9 \u00e0 une petite victoire d'\u00e9tape. Mais Rome ne s'est pas faite en un jour. Alors nous allons continuer \u00e0 travailler. Toutes les entreprises qui souhaitent soutenir financi\u00e8rement nos travaux le peuvent :) (https://lnkd.in/eYdHuMDA ) et tous les individus qui souhaitent nous aider en rejoignant les Shifters le peuvent aussi : https://lnkd.in/dsYcVSm\n\nEt surtout, quelles que soient les d\u00e9clarations de campagne du nouveau premier magistrat, il va se faire rattraper dans les ann\u00e9es qui viennent par de \"l'impr\u00e9vu\" du \u00e0 la tenaille \u00e9nergie-climat. C'est dans ces moments l\u00e0 qu'il sera essentiel de disposer d'un plan, pas juste au moment de la campagne." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6924255467653246976,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6924255468332695552,urn:li:activity:6924255468332695552,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 108, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6924255468332695552,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6924255468332695552,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6924255468332695552", + "threadId": "activity:6924255468332695552", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6924255468332695552", + "urn": "urn:li:activity:6924255468332695552", + "numComments": 179, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6924255468332695552", + "reactionTypeCounts": [ + { + "count": 3334, + "reactionType": "LIKE" + }, + { + "count": 130, + "reactionType": "MAYBE" + }, + { + "count": 125, + "reactionType": "INTEREST" + }, + { + "count": 96, + "reactionType": "PRAISE" + }, + { + "count": 82, + "reactionType": "APPRECIATION" + }, + { + "count": 32, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6924255468332695552", + "numLikes": 3799, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6924255468332695552", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3799, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6923933869545025536,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6923933869545025536", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6923933869545025536)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6923933869545025536)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lozone-des-basses-altitudes-une-%C3%A9p%C3%A9e-%C3%A0-activity-6923933869545025536-cMWi?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6923933868622274560", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6923933869545025536", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6923933869545025536,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6923933869545025536,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6923933868622274560", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "2n/mlq10NC0jbUYDyf4vBg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6923933869545025536,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9043907838950859292", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675818334124?e=1677240000&v=beta&t=ditMuFYLYQxyHDl1J8aZBTWlXNSANM5bNrv1N1cq6wE", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675818334124?e=1677240000&v=beta&t=8EHLh6r2R-wvqdfwXY9kGKP3Ki-ZBPHugvSrMVR32KQ", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675818334124?e=1677240000&v=beta&t=28K4Z6U0I7_7v8IBtG5OlR0cvrbYBWb4MjeLYPTcez4", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675818334125?e=1677240000&v=beta&t=rdbFyNKjmbGXxky1JZnxDxC5i1DhQ8xm1YskpoOwEFs", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHtsKiIADaNzQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9043907838950859292)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9043907838950859292)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L\u2019ozone des basses altitudes, une \u00e9p\u00e9e \u00e0 double tranchant | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/article-ozone-adaptation" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L\u2019ozone des basses altitudes, une \u00e9p\u00e9e \u00e0 double tranchant | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6923933868622274560,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'ozone, selon l'endroit o\u00f9 il se trouve, nous l'aimons beaucoup ou pas. Dans la haute atmosph\u00e8re, ce gaz de formule O3 nous est pr\u00e9cieux : il a le bon go\u00fbt d'intercepter les ultraviolets les plus durs que notre astre du jour nous envoie avec le reste de son rayonnement. \n\nSa diminution dans la stratosph\u00e8re est une mauvaise nouvelle, et c'est pour cela que le Protocole de Montr\u00e9al, entr\u00e9 en vigueur d\u00e9but 1989, a contraint les pays signataires \u00e0 ne plus utiliser des gaz appel\u00e9s CFC (chloro-fluoro-carbures), dont la d\u00e9gradation dans la stratosph\u00e8re conduisait \u00e0 y diminuer la teneur en ozone. Ces CFC \u00e9taient employ\u00e9s dans les circuits de r\u00e9frig\u00e9ration, comme gaz expanseurs de mousses, et comme gaz propulseurs dans les bombes a\u00e9rosols. \n\nMais l'ozone est aussi pr\u00e9sent dans la basse atmosph\u00e8re, o\u00f9 nous d\u00e9couvrons une autre facette de ce m\u00eame gaz : nous voyons alors qu'il s'agit d'un oxydant tr\u00e8s agressif, dont nos poumons (et les plantes) n'appr\u00e9cient pas du tout la pr\u00e9sence. Et il s'agit aussi d'un gaz \u00e0 effet de serre (ce gaz poss\u00e8de donc des raies d'absorption \u00e0 la fois dans l'infrarouge terrestre et dans l'ultraviolet solaire).\n\nLe r\u00e9chauffement climatique va accro\u00eetre sa concentration dans la basse atmosph\u00e8re, ce qui va augmenter la mortalit\u00e9 pr\u00e9matur\u00e9e qu'il engendre et diminuer la croissance des plantes. Ce n'est pas tr\u00e8s r\u00e9jouissant mais autant \u00eatre pr\u00e9venu : cet article de Carbone 4 vous pr\u00e9sente cette cons\u00e9quence de la d\u00e9rive climatique d\u00e9velopp\u00e9e dans le dernier rapport du GIEC, et sugg\u00e8re quelques pistes pour parer au mieux les ennuis \u00e0 venir." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6923933868622274560,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6923933869545025536,urn:li:activity:6923933869545025536,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 22, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6923933869545025536,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6923933869545025536,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6923933869545025536", + "threadId": "activity:6923933869545025536", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6923933869545025536", + "urn": "urn:li:activity:6923933869545025536", + "numComments": 37, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6923933869545025536", + "reactionTypeCounts": [ + { + "count": 493, + "reactionType": "LIKE" + }, + { + "count": 108, + "reactionType": "INTEREST" + }, + { + "count": 59, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6923933869545025536", + "numLikes": 667, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6923933869545025536", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 667, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6923663231295086592,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6923663231295086592", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6923663231295086592)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6923663231295086592)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_transition-%C3%A9nerg%C3%A9tique-la-fusion-nucl%C3%A9aire-activity-6923663231295086592-xuB2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6923663230695317504", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6923663231295086592", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6923663231295086592,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6923663231295086592,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6923663230695317504", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "o1G0mQGddZD7EJiEwLOhZQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6923663231295086592,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8209855912045376171", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675836771288?e=1677240000&v=beta&t=lhZRXGYCpBQp5iXXVGaAqUykTWJUhaJsi7Ohh9ikrow", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675836771288?e=1677240000&v=beta&t=yr8QJyN9IZzEoc35JG5HYG2eepqTm_hV0gX4kvYIfZo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675836771288?e=1677240000&v=beta&t=Fy-otqR6i8UOiv4k5io3ZnZEmD9gWIpKuh2uOLSgW_c", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675836771288?e=1677240000&v=beta&t=HgIqg3S6sadj_BxR57n6VazxNTDt09v7zl_M5r2wGV4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFcRPphO3ON5Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8209855912045376171)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8209855912045376171)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Transition \u00e9nerg\u00e9tique : la fusion nucl\u00e9aire, une solution pour l'avenir ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900147520-transition-energetique-la-fusion-nucleaire-une-solution-pour-l-avenir" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Transition \u00e9nerg\u00e9tique : la fusion nucl\u00e9aire, une solution pour l'avenir ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6923663230695317504,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La campagne \u00e9lectorale est termin\u00e9e depuis hier soir minuit. Du coup, il n'\u00e9tait pas question d'utiliser la chronique de ce matin sur RTL pour parler directement des programmes des finalistes. \n\nPar contre, quel que soit le nom qui sortira des urnes demain, les d\u00e9fis resteront les m\u00eames. Dans ces d\u00e9fis, il y a notamment la d\u00e9carbonation, subie \u00e0 d\u00e9faut d'\u00eatre voulue, qui nous attend pour les d\u00e9cennies \u00e0 venir, et qui doit imp\u00e9rativement \u00eatre mise en route de mani\u00e8re pilot\u00e9e avec beaucoup plus de d\u00e9termination pendant le prochain quinquennat.\n\nPour g\u00e9rer cette d\u00e9carbonation, il y a deux leviers \u00e0 actionner : \n- la sobri\u00e9t\u00e9 (c'est \u00e0 dire moins consommer et donc par la force des choses moins produire). \n- le passage \u00e0 des \u00e9nergies d\u00e9carbon\u00e9es.\n\nDans cette deuxi\u00e8me cat\u00e9gorie on va trouver les \u00e9nergies dites renouvelables et les \u00e9nergies dites nucl\u00e9aires. Et dans cette derni\u00e8re cat\u00e9gorie on trouve... la fusion, sur laquelle j'ai souvent eu des questions.\n\nExpliquer en quelques minutes, sans sch\u00e9ma, avec des mots pas trop compliqu\u00e9s (on sent que j'ai h\u00e9sit\u00e9 avant de dire \"isotope\" et \"tore\" !), en quoi consiste la fusion, et surtout ce qu'il ne faut pas en attendre, tel \u00e9tait le d\u00e9fi que je m'\u00e9tais fix\u00e9 pour cette derni\u00e8re chronique avant d'aller faire mon devoir civique. \n\nLe point essentiel est celui du calendrier. Si elle semble tr\u00e8s s\u00e9duisante sur le papier, l'\u00e9nergie du soleil ne contribuera h\u00e9las pas significativement \u00e0 la d\u00e9carbonation du monde avant la fin du si\u00e8cle. Comme il faut abandonner p\u00e9trole, gaz et charbon en 3 \u00e0 4 d\u00e9cennies, on peut tout de suite oublier ITER dans cette histoire : la fusion arrivera apr\u00e8s la bataille !\n\nJe ne pouvais pas parler d'\u00e9lection dans ma chronique, mais ici je ne vais pas r\u00e9sister :). Quel lien ? Pour la fusion comme pour l'\u00e9lection, le miracle est hors d'atteinte. Il va donc falloir faire avec \"ce que l'on a sous la main\".\n\nLes 5 ans qui viennent vont \u00eatre - probablement encore plus que les 5 ans pass\u00e9s - secou\u00e9s par des \"crises\" (\u00e9nerg\u00e9tiques, climatiques, de ressources, biologiques... et en cons\u00e9quence \u00e9conomiques et sociales) dont seule l'\u00e9ch\u00e9ance pr\u00e9cise est inconnue. \n\nCes \"impr\u00e9vus\" (en fait pas tant que cela) vont emp\u00eacher, un peu ou beaucoup, la r\u00e9alisation d'une partie plus ou moins large des promesses de chacun(e) des deux finalistes (sans compter que pour mettre en oeuvre leur programme il leur faut une majorit\u00e9 \u00e0 l'Assembl\u00e9e nationale, ce qui n'est pas un d\u00e9tail).\n\nCe contexte demande par ailleurs des actions \u00e0 effet rapide avec les moyens du bord. Il demande de renoncer, alors qu'aujourd'hui nous ne savons qu'empiler. Il demande des efforts pour \u00e9viter la souffrance (la bonne question \u00e9tant celle de l'\u00e9quit\u00e9). Il demande de revisiter beaucoup de \"situations acquises\" tout en suscitant de l'enthousiasme pour construire.\n\nAucun des deux finalistes n'est \"miraculeux\" au regard de ce qui pr\u00e9c\u00e8de. Mais voter n'est pas le choix d'un miracle. C'est juste un tri \"avec les moyens du bord\"." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6923663230695317504,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6923663231295086592,urn:li:activity:6923663231295086592,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 58, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6923663231295086592,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6923663231295086592,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6923663231295086592", + "threadId": "activity:6923663231295086592", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6923663231295086592", + "urn": "urn:li:activity:6923663231295086592", + "numComments": 157, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6923663231295086592", + "reactionTypeCounts": [ + { + "count": 778, + "reactionType": "LIKE" + }, + { + "count": 37, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "INTEREST" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6923663231295086592", + "numLikes": 882, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6923663231295086592", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 882, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6922963098433650688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6922963098433650688", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6922963098433650688)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6922963098433650688)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_macron-promet-un-premier-ministre-directement-activity-6922963098433650688-Yl_Q?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6922963097460572160", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6922963098433650688", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6922963098433650688,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6922963098433650688,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6922963097460572160", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "Cx3itw0uD5HBXwZnqqIsbQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6922963098433650688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8720793191846669655", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675743322854?e=1677240000&v=beta&t=OqNXWHnSAH2d4_NhsG6rDU1XUw8ziFzDirZXkl7U8k4", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1250, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675743322854?e=1677240000&v=beta&t=IrS11yEV14RZq0xlCdQaFtPpzMwebD1-IiLwbZAXM8s", + "expiresAt": 1677240000000, + "height": 625 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675743322854?e=1677240000&v=beta&t=yRWEmlTprsH4E2RuYjG721F8jFym_mtPVWqLuGXQEMM", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675743322854?e=1677240000&v=beta&t=GmzbtfJLpgZv5-RQeuk0n14lF1x9IYhQnqxIymE3Q70", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF7EWvXnz3HWg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8720793191846669655)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8720793191846669655)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lepoint.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Macron promet un Premier ministre \"directement charg\u00e9 de la planification \u00e9cologique\" by lepoint.fr", + "actionTarget": "https://www.lepoint.fr/politique/macron-promet-un-premier-ministre-directement-charge-de-la-planification-ecologique-16-04-2022-2472374_20.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Macron promet un Premier ministre \"directement charg\u00e9 de la planification \u00e9cologique\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6922963097460572160,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans les novations du programme du candidat Macron ajout\u00e9es apr\u00e8s le premier tour figure la proposition de cr\u00e9er un Premier ministre \"directement charg\u00e9 de la planification \u00e9cologique\", auquel seraient rattach\u00e9s deux ministres d\u00e9l\u00e9gu\u00e9s en charge \"de la planification \u00e9nerg\u00e9tique\" et \"de la planification \u00e9cologique territoriale\".\n\nC'est toujours une bonne nouvelle qu'un responsable politique, quel qu'il soit, affirme que nos plans pour l'avenir doivent inclure de nous remettre \u00e0 bonne distance des limites plan\u00e9taires que nous avons franchies, ou que nous nous appr\u00eatons \u00e0 franchir. Et il ne faut pas se leurrer : ce genre d'annonce sera h\u00e9las souvent faite en r\u00e9ponse \u00e0 un impr\u00e9vu. \n\nMais la forme propos\u00e9e est-elle la bonne ? Cette id\u00e9e de mettre \"tr\u00e8s haut dans le gouvernement\" une personne sp\u00e9cifiquement en charge de l'environnement ne date pas d'hier : elle \u00e9tait d\u00e9j\u00e0 dans le Pacte Ecologique de la Fondation Nicolas Hulot de 2007 et a donn\u00e9 naissance au \"super minist\u00e8re\" de Borloo. Est-ce que cela a chang\u00e9 la trajectoire de la France ? Pas vraiment.\n\nPar ailleurs il est curieux de dire que 2 ministres seront plus particuli\u00e8rement \"d\u00e9l\u00e9gu\u00e9s\" aupr\u00e8s du Premier ministre pour cette transition. D'une part tous les ministres de plein exercice sont \"d\u00e9l\u00e9gu\u00e9s\" aupr\u00e8s du premier d'entre eux, et d'autre part il n'existe pas un minist\u00e8re qui peut se consid\u00e9rer comme \"pas concern\u00e9\". Au nom de quoi le minist\u00e8re de l'Education Nationale, celui de la Jeunesse et des Sports, celui de la Sant\u00e9 ou celui des Affaires Etrang\u00e8res - sans parler de la Fonction Publique ou de la D\u00e9fense - devraient \u00eatre laiss\u00e9s \"en dehors\" de la transition ?\n\nEn r\u00e9alit\u00e9, l'ensemble du gouvernement est charg\u00e9 de la mise en application du projet de la majorit\u00e9 (qui \u00e9mane de l'Assembl\u00e9e, et non du pr\u00e9sident, petit d\u00e9tail qui a son importance !). \n\nSi le projet est de faire \"pour de vrai\" une d\u00e9carbonation g\u00e9r\u00e9e et d\u00e9sirable, il n'y a pas besoin de charger le premier ministre d'une mission sp\u00e9ciale ni de lui adjoindre des ministres plus particuli\u00e8rement en charge du sujet. Il \"faut juste\" que le projet majoritaire soit d'y aller, que l'ensemble des propositions soit au service et/ou en coh\u00e9rence de cet objectif, et apr\u00e8s chaque ministre aura son r\u00f4le \u00e0 jouer dans l'ensemble.\n\nIl sera par contre n\u00e9cessaire de modifier beaucoup de choses dans le fonctionnement op\u00e9rationnel de la haute administration, mais cela est une autre histoire." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6922963097460572160,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6922963098433650688,urn:li:activity:6922963098433650688,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 134, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6922963098433650688,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6922963098433650688,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6922963098433650688", + "threadId": "activity:6922963098433650688", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6922963098433650688", + "urn": "urn:li:activity:6922963098433650688", + "numComments": 172, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6922963098433650688", + "reactionTypeCounts": [ + { + "count": 2262, + "reactionType": "LIKE" + }, + { + "count": 158, + "reactionType": "MAYBE" + }, + { + "count": 123, + "reactionType": "INTEREST" + }, + { + "count": 74, + "reactionType": "PRAISE" + }, + { + "count": 27, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6922963098433650688", + "numLikes": 2660, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6922963098433650688", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2660, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6922471223926906880,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6922471223926906880", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6922471223926906880)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6922471223926906880)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_laura-foglia-the-shift-project-avec-la-activity-6922471223926906880-o_B5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6922471223088041985", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6922471223926906880", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6922471223926906880,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6922471223926906880,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6922471223088041985", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "O6okJAm8GyUcl+UprA7l1g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6922471223926906880,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8697039378153078761", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 707, + "fileIdentifyingUrlPathSegment": "800/0/1675780360243?e=1677240000&v=beta&t=tOWa9uEMQ8skl__21N0kSaCL1d0uX2HHLwgwXMHEGpE", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 707, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675780360244?e=1677240000&v=beta&t=B2whhOeTVtH165MlT4Ivzf2_yMyz1_2qYKxRjdtsKjI", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675780360244?e=1677240000&v=beta&t=Qg_ONR9q76TaNF6wDCX-RZP7ujlzr-Lmsamx9eFW97s", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675780360244?e=1677240000&v=beta&t=of8jss6RpKVlo4MEMAAr4I3DRnxRxaCiGwhTdGNfJ0I", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFPSIa0csYUrQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.6661951909476662 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8697039378153078761)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8697039378153078761)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "novethic.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Laura Foglia, The Shift Project : \"Avec la ville du quart d\u2019heure, il faut rendre d\u00e9sirable un imaginaire li\u00e9 \u00e0 la vie de proximit\u00e9\" by novethic.fr", + "actionTarget": "https://www.novethic.fr/actualite/energie/mobilite-durable/isr-rse/laura-foglia-the-shift-project-la-ville-du-quart-d-heure-permet-de-raccourcir-les-distances-et-limiter-les-emissions-de-co2-150719.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Laura Foglia, The Shift Project : \"Avec la ville du quart d\u2019heure, il faut rendre d\u00e9sirable un imaginaire li\u00e9 \u00e0 la vie de proximit\u00e9\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6922471223088041985,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 44, + "length": 12, + "miniProfile": { + "firstName": "Laura", + "lastName": "Foglia", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAfqPscB-Vt3dphwEq2asc8tIuPxO64Hf7M", + "occupation": "Low-Carbon Mobility: Senior Consultant and Project Manager at \"The Shift Project\"", + "objectUrn": "urn:li:member:132792007", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAfqPscB-Vt3dphwEq2asc8tIuPxO64Hf7M", + "publicIdentifier": "foglialaura", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1561103779047?e=1681948800&v=beta&t=0o-QgBmoNDX7Sh9bIlWNmLH_rzMy1ibpbm57b8Le-PU", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1561103779047?e=1681948800&v=beta&t=R13WReXRNtUCZ5Rp_YqixwfF-JIJnka_t3OI_qASSZU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1561103779047?e=1681948800&v=beta&t=-tlJHcFxQ2c_82EY7boqemNWrI6IcPAHUhhAo9ElcnM", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1561103779047?e=1681948800&v=beta&t=N1AxLYdMYOt8oEDcxrson3jAcVacq64dLAB2-dAwa5A", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGqW_Q8qTkO_w/profile-displayphoto-shrink_" + } + }, + "trackingId": "Ce6WswMGSNq1tpSOJU/Vug==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "C'est un fait bien connu sur lequel revient Laura Foglia (cheffe de projet \"mobilit\u00e9 du quotidien\" pour le plan de transformation de l'\u00e9conomie fran\u00e7aise) dans cette interview pour Novethic : la voiture pour tou(te)s ou presque (il y a d\u00e9sormais 40 millions de v\u00e9hicules particuliers dans notre pays contre 2,5 juste apr\u00e8s guerre) a conduit \u00e0 faire un urbanisme \u00e9tal\u00e9 en cons\u00e9quence.\n\nNous n'avons donc pas affect\u00e9 l'augmentation de la vitesse des d\u00e9placements \u00e0 raccourcir nos temps de d\u00e9placement, mais \u00e0 allonger les distances \u00e0 temps de d\u00e9placement constant.\n\nQuestion : que deviendra cet urbanisme lorsque, Poutine ou pas, nous aurons de moins en moins de modes de d\u00e9placement individuels rapides ? Car ce temps viendra : il n'y aura pas 1,2 milliard de voitures particuli\u00e8res (valeur actuelle) \u00e9lectriques sur terre pendant des si\u00e8cles (condition pour que l'urbanisme, dont le temps d'\u00e9volution est plus proche du si\u00e8cle que de l'ann\u00e9e, \u00e9volue).\n\nUne autre question vient se greffer : sachant que les villes sont uniquement des lieux d'\u00e9change ou de transformation, o\u00f9 rien \"de base\" n'est produit sur place (ni mines, ni champs, ni for\u00eats...), avec des emplois associ\u00e9s (essentiellement du tertiaire), que deviendront les villes quand les transports longue distance qui permettent de nourrir les habitants, les v\u00eatir, les loger, et acheminer tout ce qui est n\u00e9cessaire aux emplois tertiaires en question, deviendront moins abondants ? A l'\u00e9poque de l'\u00e9nergie rare (il y a quelques si\u00e8cles) la population urbaine \u00e9tait consid\u00e9rablement plus petite qu'aujourd'hui... et ce n'est pas un hasard.\n\nL\u00e0 comme ailleurs, moins nous anticiperons - ce qui est le cas actuel - et plus dure sera la r\u00e9gulation par la crise. Entre autres absences dans les d\u00e9bats de cette dr\u00f4le de campagne, aucun(e) candidat(e) n'a dit quoi que ce soit sur la mani\u00e8re de faire \u00e9voluer l'am\u00e9nagement du territoire - proportion villes/campagnes et forme des villes - dans un monde plus sobre en \u00e9nergie.\n\nNe pas en rajouter au probl\u00e8me (et donc arr\u00eater de faire grossir les grosses villes + contenir l'\u00e9talement urbain de celles existantes) devrait \u00eatre la premi\u00e8re \u00e9tape de ce difficile chemin." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6922471223088041985,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6922471223926906880,urn:li:activity:6922471223926906880,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 72, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6922471223926906880,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6922471223926906880,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6922471223926906880", + "threadId": "activity:6922471223926906880", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6922471223926906880", + "urn": "urn:li:activity:6922471223926906880", + "numComments": 110, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6922471223926906880", + "reactionTypeCounts": [ + { + "count": 1091, + "reactionType": "LIKE" + }, + { + "count": 99, + "reactionType": "MAYBE" + }, + { + "count": 95, + "reactionType": "INTEREST" + }, + { + "count": 33, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6922471223926906880", + "numLikes": 1345, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6922471223926906880", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1345, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 16, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 Edited \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6922243410472919040,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6922243410472919040", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6922243410472919040)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6922243410472919040)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-marc-jancovici-futur-ministre-de-l%C3%A9nergie-activity-6922243410472919040-_38R?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6922243409902510081", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6922243410472919040", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6922243410472919040,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6922243410472919040,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6922243409902510081", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "TPJE8YLpTXcdc9qjSoOidA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6922243410472919040,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9182262659377415972", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675719729519?e=1677240000&v=beta&t=X0L2IDGeDdC4812DOuMPmA71AmvXWh4amJG6lqDB2mI", + "expiresAt": 1677240000000, + "height": 388 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675719729519?e=1677240000&v=beta&t=AaEH6mh54-jxll_jo2AjaQUHdSzxXXn9nWVEq6zC5qY", + "expiresAt": 1677240000000, + "height": 622 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675719729519?e=1677240000&v=beta&t=rnmFsf0gKQ8ycWQpVUJuaVXttMNEiQyRsG5pw7XyFMk", + "expiresAt": 1677240000000, + "height": 77 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675719729520?e=1677240000&v=beta&t=XxGKmEITruImVxcpj_cBzJsbEQbPsvSR1u6X-cO6MGY", + "expiresAt": 1677240000000, + "height": 233 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEh5Va99gomew/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Jean-Marc Jancovici 19/04/2022 Inchausp\u00e9" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9182262659377415972)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9182262659377415972)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lopinion.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean-Marc Jancovici, futur ministre de l'\u00e9nergie de Macron ? by lopinion.fr", + "actionTarget": "https://www.lopinion.fr/economie/jean-marc-jancovici-hypothese-ministre-de-energie-de-macron" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici, futur ministre de l'\u00e9nergie de Macron ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6922243409902510081,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Puisque nous approchons du second tour, il me para\u00eet important de ne pas laisser passer sans r\u00e9agir des propos me concernant et qui sont directement li\u00e9s aux discours de campagne.\n\nDans cet article de l'Opinion (dont je n'ai lu que les quelques \u00a7 en libre acc\u00e8s) il est \u00e9crit que je pourrais devenir ministre dans un gouvernement nomm\u00e9 par Macron r\u00e9\u00e9lu.\n\nPr\u00e9cisions :\n- je n'ai pas \u00e9t\u00e9 contact\u00e9 par l'auteure de ce papier\n- je n'ai jamais eu envie d'\u00eatre ministre ou d'avoir un mandat politique au sens o\u00f9 on l'entend habituellement (d\u00e9put\u00e9, maire etc)\n- en cons\u00e9quence de quoi je n'ai jamais dit \u00e0 personne chez LREM (ou ailleurs) que je souhaitais occuper cette fonction et que j'aurais r\u00e9cemment chang\u00e9 d'avis sur ce sujet.\n\nIncidemment le programme d\u00e9crit dans https://lnkd.in/esiqHkbf ne rel\u00e8ve pas de 2 ministres particuliers. Il demanderait le concours de l'ensemble du gouvernement puisque quand il y a un projet de soci\u00e9t\u00e9 il n'est pas d\u00e9tachable \"du reste\" qui ne serait pas concern\u00e9 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6922243409902510081,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6922243410472919040,urn:li:activity:6922243410472919040,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 312, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6922243410472919040,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6922243410472919040,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6922243410472919040", + "threadId": "activity:6922243410472919040", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6922243410472919040", + "urn": "urn:li:activity:6922243410472919040", + "numComments": 472, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6922243410472919040", + "reactionTypeCounts": [ + { + "count": 4000, + "reactionType": "LIKE" + }, + { + "count": 253, + "reactionType": "PRAISE" + }, + { + "count": 205, + "reactionType": "INTEREST" + }, + { + "count": 138, + "reactionType": "MAYBE" + }, + { + "count": 52, + "reactionType": "APPRECIATION" + }, + { + "count": 39, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6922243410472919040", + "numLikes": 4687, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6922243410472919040", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4687, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "10mo \u2022 ", + "accessibilityText": "10 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6921024768003473408,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6921024768003473408", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6921024768003473408)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6921024768003473408)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_%C3%A9pisode-3-jean-marc-jancovici-paroles-activity-6921024768003473408-N358?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6921024767382724608", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6921024768003473408", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6921024768003473408,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6921024768003473408,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6921024767382724608", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "5ypqAuG90Bo3XYjBg4qDaw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6921024768003473408,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7955966626887245750", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 480, + "fileIdentifyingUrlPathSegment": "800/0/1675491775681?e=1677240000&v=beta&t=xRmKz9DeuKvG38MdZEchwcBTJdwMhgzf7Dn3vbcvC2M", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675491775681?e=1677240000&v=beta&t=efuU75CV2luMSWgea7X4cYFCAw4W_6WaO-3k9ZsQfSQ", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675491775681?e=1677240000&v=beta&t=aYI-aT76Wli5jxNUhqVovY0ccbc58U7AiLxXi0rfJBU", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675491775681?e=1677240000&v=beta&t=viJtmMaBaKc1UIa0lWMy9PRDcgyKXq98n-IIROJfhBA", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEMPnl46ksTfw/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7955966626887245750)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7955966626887245750)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: \u2728 \u00c9pisode 3 - Jean-Marc Jancovici | Paroles d'Expert.e.s - l'In\u00e9vitable R\u00e9bellion on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=sPLOwsTW1g8&list=PLMDQXkItOZ4JPzrtfq6f0zTG5utL7az4N&index=2" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\ud83e\udd14 Crise environnementale ? \u00c9tat de sant\u00e9 de notre d\u00e9mocratie ? Quels constats et quelles perspectives ? \u23f3\ufe0f Alors que se profile L'In\u00e9vitable R\u00e9bellion, action de d\u00e9sob\u00e9issance civile non-violente organis\u00e9e \u00e0 l'entre-deux-tours de l'\u00e9lection..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "\u2728 \u00c9pisode 3 - Jean-Marc Jancovici | Paroles d'Expert.e.s - l'In\u00e9vitable R\u00e9bellion" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6921024767382724608,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce week-end, le mouvement Extinction Rebellion d\u00e9marre une op\u00e9ration de blocage d'un lieu parisien pour manifester contre l'inaction en mati\u00e8re de climat. Cette action est parfaitement ill\u00e9gale. En effet, elle entre dans la cat\u00e9gorie des manifestations non autoris\u00e9es, et des entraves \u00e0 la libert\u00e9 de circuler (ce qui est aussi le cas des piquets de gr\u00e8ve), toutes choses qui sont r\u00e9prim\u00e9es par la loi.\n\nMais est-elle immorale ? L'assimilation de la r\u00e8gle et de la morale est parfois moins \u00e9vidente qu'il n'y para\u00eet. Par exemple, il est actuellement parfaitement l\u00e9gal de se procurer une arme \u00e0 feu aux USA avec des restrictions \u00e0 cet acc\u00e8s qui sont minimes ou inexistantes. Est-ce moral ? Le tabac tue 70.000 personnes par an en France et est en vente libre (sauf aux mineurs en th\u00e9orie mais la loi n'est \u00e0 peu pr\u00e8s jamais respect\u00e9e) : est-ce moral ?\n\nPayer 5 fois plus cher un salari\u00e9 du secteur financier qu'un ma\u00e7on qui isole des logements est parfaitement l\u00e9gal. Est-ce moral ? On pourrait multiplier ainsi les exemples de comportements qui sont parfaitement en phase avec la r\u00e8gle du moment mais qui sont pourtant l'objet de d\u00e9bats... sur le fait que la r\u00e8gle pourrait changer.\n\nA l'inverse, comme je le rappelle dans cette br\u00e8ve interview que j'ai accept\u00e9e de faire pour ce mouvement, nous c\u00e9l\u00e9brons tous les 14 juillet un acte aujourd'hui consid\u00e9r\u00e9 comme tout \u00e0 fait moral - il s'agit de la r\u00e9volution fran\u00e7aise - et qui \u00e9tait parfaitement ill\u00e9gal \u00e0 l'\u00e9poque.\n\nL'occupation non autoris\u00e9e de l'espace public n'est donc pas l\u00e9gale. Mais l'inaction sur le climat ne semble pas morale \u00e0 une personne qui a aujourd'hui 25 ans (et m\u00eame 60). Je serais probablement le premier \u00e0 r\u00e2ler si j'\u00e9tais un habitant de la zone concern\u00e9e, mais on ne peut pas retirer aux manifestant(e)s une forme de l\u00e9gitimit\u00e9 devant notre apathie g\u00e9n\u00e9ralis\u00e9e.\n\nAu fond la seule question vue de ma fen\u00eatre est de savoir si cela sera utile pour que nous soyons collectivement plus motiv\u00e9s \u00e0 agir. Si la r\u00e9ponse est oui, le mal est vraiment b\u00e9nin compte tenu du b\u00e9n\u00e9fice. Si la r\u00e9ponse est non parce que cela braque trop de monde, il faut alors penser \u00e0 autre chose." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6921024767382724608,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6921024768003473408,urn:li:activity:6921024768003473408,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 129, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6921024768003473408,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6921024768003473408,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6921024768003473408", + "threadId": "activity:6921024768003473408", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6921024768003473408", + "urn": "urn:li:activity:6921024768003473408", + "numComments": 295, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6921024768003473408", + "reactionTypeCounts": [ + { + "count": 2571, + "reactionType": "LIKE" + }, + { + "count": 230, + "reactionType": "PRAISE" + }, + { + "count": 179, + "reactionType": "MAYBE" + }, + { + "count": 89, + "reactionType": "APPRECIATION" + }, + { + "count": 59, + "reactionType": "EMPATHY" + }, + { + "count": 53, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6921024768003473408", + "numLikes": 3181, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6921024768003473408", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3181, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 16, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 Edited \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6920624837954572288,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6920624837954572288", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6920624837954572288)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6920624837954572288)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_dwindling-water-levels-of-lake-powell-seen-activity-6920624837954572288-ysnU?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6920624837375762432", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6920624837954572288", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6920624837954572288,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6920624837954572288,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6920624837375762432", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "qp2yQNoBGpXHIJ4y0wTS6w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6920624837954572288,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7422095136039202673", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675511198837?e=1677240000&v=beta&t=5zz5jwHhjg6JoMG_WzCWbwA3ZhDYD_A4prXaGrloLv4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675511198838?e=1677240000&v=beta&t=fDB4FcxH_aOVHXuYaN9zHVPsKVepjHeAghEPgGKaNbU", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675511198838?e=1677240000&v=beta&t=nkNAeZbg-qoBp0pgsrWOlYjUuh-7OcLeIp7_kEUSpqA", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675511198838?e=1677240000&v=beta&t=PVkAaOQtrb2eBRW8t7eoVayXnhG9SMkTNWgmN3kPDR8", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEUPeRxOyQqeg/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Dwindling waters of Lake Powell" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7422095136039202673)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7422095136039202673)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "esa.int \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Dwindling water levels of Lake Powell seen from space by esa.int", + "actionTarget": "https://www.esa.int/Applications/Observing_the_Earth/Copernicus/Sentinel-2/Dwindling_water_levels_of_Lake_Powell_seen_from_space" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Dwindling water levels of Lake Powell seen from space" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6920624837375762432,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il n'y a pas que la France qui ait connu un hiver plus sec que la normale, ce qui fait que les pluies r\u00e9centes sont bienvenues (un avis qui ne semble pas partag\u00e9 par les parisien(ne)s que j'entends se plaindre du \"mauvais temps\" dans le m\u00e9tro ; peut-\u00eatre qu'ils et elles ne mangent pas et n'aiment pas les arbres :) ?).\n\nLes USA ont aussi eu un hiver qui n'a pas permis de compenser l'\u00e9tat de s\u00e9cheresse globalement exceptionnel que conna\u00eet la moiti\u00e9 ouest du pays en ce d\u00e9but de printemps : https://lnkd.in/dQVN83A\n\nR\u00e9sultats (entre autres) :\n- il y a d\u00e9j\u00e0 des incendies de for\u00eat d\u00e9but avril : https://lnkd.in/eR74ts-n!\n- le plus grand lac de retenue du pays (le lac Powell) a un niveau historiquement bas (ci-dessous ; photos prises depuis l'espace par les satellites europ\u00e9ens Sentinel 2), ce qui menace la production hydro\u00e9lectrique ainsi que l'irrigation.\n\nRappelons que dans le cadre de la d\u00e9rive climatique beaucoup de zones des moyennes latitudes vont s'ass\u00e9cher (voir en commentaire la variation d'humidit\u00e9 des sols pour le sc\u00e9nario \u00e0 +2,7 \u00b0C en 2100). Ce que nous vivons en ce moment sur le prix des c\u00e9r\u00e9ales \u00e0 cause de l'Ukraine est malheureusement juste un petit avant-gout de ce qui nous attend dans un monde qui se r\u00e9chauffe. \n\nNotre \"transition\", quelle qu'elle soit, va donc se d\u00e9rouler dans un monde de plus en plus volatil, o\u00f9 les \"mauvaises surprises\" vont se multiplier. Mais gageons que le d\u00e9bat du 2\u00e8 tour interrogera les candidats comme si l'avenir ne devait d\u00e9pendre que de variables \u00e0 notre main..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6920624837375762432,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6920624837954572288,urn:li:activity:6920624837954572288,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 41, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6920624837954572288,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6920624837954572288,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6920624837954572288", + "threadId": "activity:6920624837954572288", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6920624837954572288", + "urn": "urn:li:activity:6920624837954572288", + "numComments": 62, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6920624837954572288", + "reactionTypeCounts": [ + { + "count": 1159, + "reactionType": "LIKE" + }, + { + "count": 172, + "reactionType": "INTEREST" + }, + { + "count": 125, + "reactionType": "MAYBE" + }, + { + "count": 19, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6920624837954572288", + "numLikes": 1494, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6920624837954572288", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1494, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6920386397967167490,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6920386397967167490", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6920386397967167490)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6920386397967167490)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-4-questions-cl%C3%A9s-pour-le-second-tour-activity-6920386397967167490-g-SK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6920386397300244480", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6920386397967167490", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6920386397967167490,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6920386397967167490,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6920386397300244480", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "vGo/Utp2VWjDQj8Vyf9QqA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6920386397967167490,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8088540482235470836", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675514338921?e=1677240000&v=beta&t=cCu0IWihQLSJHyf3b-TCAhMlYpaFI9IZ2A27apZokGU", + "expiresAt": 1677240000000, + "height": 348 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675514338921?e=1677240000&v=beta&t=oI9Nulptg_BJzLsRfjsN1L4UKbyzENKLuG8e570ESek", + "expiresAt": 1677240000000, + "height": 355 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675514338921?e=1677240000&v=beta&t=V2HZoORXoaYyJkRlaj8pKZSeP-rsB-szzKDGNG0RD3U", + "expiresAt": 1677240000000, + "height": 69 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675514338921?e=1677240000&v=beta&t=SaTqOKzxLpIac7FGZh0FgpAQeYsYTvUnVmiR-X4Bjnw", + "expiresAt": 1677240000000, + "height": 209 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHBoS8cKGaEPw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8088540482235470836)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8088540482235470836)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les 4 questions cl\u00e9s pour le second tour - The Shift Project by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/climat-energie-les-4-questions-cles-pour-le-second-tour/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les 4 questions cl\u00e9s pour le second tour - The Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6920386397300244480,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Au Shift Project, nous sommes comme beaucoup de personnes int\u00e9ress\u00e9es/pr\u00e9occup\u00e9es par les sujets environnementaux : nous avons trouv\u00e9 que pendant cette campagne le silence avait \u00e9t\u00e9 un peu trop assourdissant sur nos sujets... qui sont aussi ceux de tous les habitants de ce grand vaisseau spatial qui s'appelle la terre.\n\nAlors comme on n'est jamais mieux servi que par soi-m\u00eame, nous avons d\u00e9cid\u00e9... de r\u00e9diger des questions que nous aimerions voir pos\u00e9es aux deux finalistes.\n\nElles sont un peu longues puisqu'il y a un \"expos\u00e9 des motifs\" dans chaque question, mais cela ne prend quand m\u00eame pas tr\u00e8s longtemps de les lire !\n\nSi des journalistes cuisinant parfois des politiques lisent ce post, ces questions sont bien \u00e9videmment recyclables (en les modifiant un peu au besoin) :\n- pour les l\u00e9gislatives\n- pour toute intervention de tout ministre du futur gouvernement.\n\nEt si les m\u00eames veulent d'autres suggestions, on leur en fournira avec plaisir !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6920386397300244480,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6920386397967167490,urn:li:activity:6920386397967167490,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 43, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6920386397967167490,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6920386397967167490,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6920386397967167490", + "threadId": "activity:6920386397967167490", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6920386397967167490", + "urn": "urn:li:activity:6920386397967167490", + "numComments": 62, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6920386397967167490", + "reactionTypeCounts": [ + { + "count": 983, + "reactionType": "LIKE" + }, + { + "count": 79, + "reactionType": "PRAISE" + }, + { + "count": 35, + "reactionType": "MAYBE" + }, + { + "count": 29, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + }, + { + "count": 9, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6920386397967167490", + "numLikes": 1151, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6920386397967167490", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1151, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6920262461803655169,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6920262461803655169", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6920262461803655169)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6920262461803655169)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_et-le-vainqueur-est-l%C3%A9cologie-activity-6920262461803655169-ytLO?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6920262461078048768", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6920262461803655169", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6920262461803655169,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6920262461803655169,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6920262461078048768", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "8/cd8y0RFGAceysxXgDBKQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6920262461803655169,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8246938360885746852", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675503274050?e=1677240000&v=beta&t=p8keXZJVY1WQYGE-2hXkuxGyiIVcW9_YAUdZ84v8iJo", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675503274051?e=1677240000&v=beta&t=eNQkhZQrOEfJNxexV1EZYLoSr5DbPouR7N6NInfJeI4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675503274051?e=1677240000&v=beta&t=qV6-amaVA5-gnQfKo76ZueaIms2ZR2duwORve0lZRe0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675503274051?e=1677240000&v=beta&t=_MaMtqy-CqfSTZYXdtM-mFsbue1w8zhgNOXxGWvysTk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEkt8C0mgoXcw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8246938360885746852)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8246938360885746852)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Et le vainqueur est\u2026 l'\u00e9cologie by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/et-le-vainqueur-est-lecologie-1400363" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Et le vainqueur est\u2026 l'\u00e9cologie" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6920262461078048768,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 171, + "length": 14, + "miniProfile": { + "firstName": "Gaspard", + "lastName": "Koenig", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAncI4MBlLtZ4ppShr18dEDm9nbUMXg3eyE", + "occupation": "Philosophe et \u00e9crivain gaspardkoenig.com", + "objectUrn": "urn:li:member:165421955", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAncI4MBlLtZ4ppShr18dEDm9nbUMXg3eyE", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623315287493?e=1681948800&v=beta&t=N-NwQWyjwJMXXX-Apq4asOwegskLOpz2epZV86bl6oU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623315287493?e=1681948800&v=beta&t=5TSzC86RE5a_jDVfgfGN7al0DD7AYPpOlfWnHZiDawQ", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFNcYuTwu_vFA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "gaspard-koenig-36b49647", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1651047357421?e=1681948800&v=beta&t=lTMFwHB4NIA-rmp-A0lQfzDZP3m1e16716pvpHnohEE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1651047357421?e=1681948800&v=beta&t=o3KimKQJK2ADWf1OITQk-ehHlqEjvo5weVo0MdjKcIA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1651047357421?e=1681948800&v=beta&t=yuscnby9WsPAMSVu0pbUv6FghPR7uPqvTxIn5W6RhWI", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1651047357421?e=1681948800&v=beta&t=QZPCuQLoOWdAkgAgGs5SKNUlNtF3DmkQoC5MNQsH5eM", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQFObKO9ZT61hA/profile-displayphoto-shrink_" + } + }, + "trackingId": "I+5DTKk8RLCkbf7DB7r8Qw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Est-ce une petite overdose de m\u00e9thode Cou\u00e9, ou une fine analyse de ce qui s'est d\u00e9roul\u00e9 dans notre pays depuis quelques mois ? Dans une tribune parue hier dans Les Echos, Gaspard Koenig se r\u00e9jouit du score tr\u00e8s bas de Yannick Jadot au premier tour avec un argument qui ne manque pas d'int\u00e9r\u00eat... s'il est av\u00e9r\u00e9 :). \n\nSon point est de dire que le destin des Verts est de dispara\u00eetre parce que l'environnement sera devenu un th\u00e8me \"ordinaire\" pour les autres partis politiques, ce qui signifie que nous sommes pr\u00e9cis\u00e9ment au moment o\u00f9 la soci\u00e9t\u00e9 toute enti\u00e8re souhaite que l'on s'en empare. Et il consid\u00e8re que nous y sommes.\n\nIncidemment, The Shift Project est aussi concern\u00e9 par le m\u00eame argument : le destin de cette association est bien de s'auto-dissoudre lorsque le probl\u00e8me climatique aura \u00e9t\u00e9 r\u00e9gl\u00e9 ! (bon, j'ai bien peur que ca ne soit pas pour demain matin...).\n\nIl se plaide donc qu'un parti dont l'objet est \"juste\" un aspect de notre vie en commun soit encore utile lorsque cet aspect est int\u00e9gr\u00e9 par tous les autres.\n\nDe fait, notre pays ne comporte pas de parti pour le droit \u00e0 l'apprentissage de la lecture ou pour le droit d'\u00eatre propri\u00e9taire : ces sujets l\u00e0 \u00e9tant d'int\u00e9r\u00eat pour tout le monde, tous les partis s'en emparent. Les modalit\u00e9s changent, non la pertinence de l'objectif. \n\nRevenons donc \u00e0 cette tribune : l\u00e0 o\u00f9 son auteur a probablement raison, c'est que l'environnement - et notamment la question climatique - devient un sujet \"ordinaire\" : une large fraction de la population attend clairement le monde politique sur la question, et tou(te)s les candidat(e)s ont \u00e9voqu\u00e9 le sujet, un peu ou beaucoup.\n\nPar contre, aucun(e) ne lui a donn\u00e9 la place qu'il m\u00e9rite, \u00e0 savoir celle d'un sujet qui conditionne tout le reste (trop souvent aid\u00e9s par des media qui soit ne l'ont pas compris, soit ne veulent pas le dire). C'est par ailleurs un pari audacieux de proposer de produire plus ou m\u00eame autant dans un monde avec moins de ressources, ce qui \u00e9tait plus ou moins implicite dans tous les programmes du 1er tour. \n\nDe fait, avoir plus de redistribution dans un monde qui produit \"beaucoup plus proprement\" - donc moins - est une variante de la croissance verte, et a donc autant de chances de se produire que cette derni\u00e8re.\n\nL'auteur de la tribune a bien vu cette difficult\u00e9. Il ne compte pas sur le politique pour la r\u00e9soudre, mais... sur nous tou(te)s. Il nous appelle \u00e0 revisiter la notion de libert\u00e9 qui \"[ne doit pas \u00eatre] la possibilit\u00e9 d'\u00e9tendre son pouvoir sur le monde, mais d'accro\u00eetre son pouvoir sur soi, pour devenir aussi ind\u00e9pendant que possible des circonstances ext\u00e9rieures\". Pouvons nous d\u00e9sirer la sobri\u00e9t\u00e9 en devenant tous sto\u00efciens ?\n\nCe qui est certain, c'est qu'en d\u00e9mocratie \"tranquille\" le pouvoir \u00e9lu ne sera pas plus courageux que ses \u00e9lecteurs, et en plus il l'est toujours avec 3 \u00e0 5 ans de retard. Seule une crise, ou une profonde modification de la hi\u00e9rarchie des valeurs des \u00e9lecteurs peut changer la donne. Koenig appelle \u00e0 la seconde option." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6920262461078048768,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6920262461803655169,urn:li:activity:6920262461803655169,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 97, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6920262461803655169,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6920262461803655169,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6920262461803655169", + "threadId": "activity:6920262461803655169", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6920262461803655169", + "urn": "urn:li:activity:6920262461803655169", + "numComments": 144, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6920262461803655169", + "reactionTypeCounts": [ + { + "count": 1899, + "reactionType": "LIKE" + }, + { + "count": 250, + "reactionType": "MAYBE" + }, + { + "count": 175, + "reactionType": "INTEREST" + }, + { + "count": 49, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "EMPATHY" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6920262461803655169", + "numLikes": 2404, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6920262461803655169", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2404, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6919906797768065024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6919906797768065024", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6919906797768065024)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6919906797768065024)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-il-y-a-50-ans-le-rapport-meadows-activity-6919906797768065024-xvC_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6919906796736282626", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6919906797768065024", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6919906797768065024,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6919906797768065024,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6919906796736282626", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "tE2SBAwkSj0wfB43OI8WyQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6919906797768065024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9150198425758571576", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675469226169?e=1677240000&v=beta&t=LI_mZutL8sRT2iZvZmG6_FWCD71euDcqvHAjGKpC96g", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675469226169?e=1677240000&v=beta&t=gfkr3WYL-_GvEzRjUUidrpi7NCWvf90kFFwW_2zTfN0", + "expiresAt": 1677240000000, + "height": 675 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675469226169?e=1677240000&v=beta&t=xZiJjODMT0Ma7LoGrFzDTyhp_dzQd-q83iVx0bujWU0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675469226169?e=1677240000&v=beta&t=ciikxAN2TBuMwoU3dth51aBkTOm_hHIE3FzpUQ7dfo4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFrQAoORB3WfQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9150198425758571576)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9150198425758571576)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "leparisien.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : il y a 50 ans, le rapport Meadows sonne la premi\u00e8re alerte pour la plan\u00e8te Terre by leparisien.fr", + "actionTarget": "https://www.leparisien.fr/environnement/climat-il-y-a-50-ans-le-rapport-meadows-sonne-la-premiere-alerte-pour-la-planete-terre-10-04-2022-KAGI4F5UFZFAFGWX7HJSZ2Y46M.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat : il y a 50 ans, le rapport Meadows sonne la premi\u00e8re alerte pour la plan\u00e8te Terre" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6919906796736282626,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 2825, + "length": 17, + "miniProfile": { + "firstName": "David", + "lastName": "Charpentier", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAArVm5UBeFdDboZbe3V7s0F5Wfa4BvESsJc", + "occupation": "Chef de service adjoint au p\u00f4le Economie chez Le Parisien", + "objectUrn": "urn:li:member:181771157", + "entityUrn": "urn:li:fs_miniProfile:ACoAAArVm5UBeFdDboZbe3V7s0F5Wfa4BvESsJc", + "publicIdentifier": "david-charpentier-785a5b50", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516474574188?e=1681948800&v=beta&t=5ML5i0ZcsR6SkTa3GceWKcVvJRSZLYFgEe3odMuq2Mg", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516474574188?e=1681948800&v=beta&t=ambuB8AFTDLRkjdibaZLYKfy72lfWl06CzSa7wmlC7I", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516474574188?e=1681948800&v=beta&t=ywxwqwTPbvTkXeaxioDRWyEYtkyvQ-8kBbI-nQT-tXk", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516474574188?e=1681948800&v=beta&t=NYlvSWInn_FvbgTUYP36ERDj2trAeA3vePS4Xq7Khzs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5103AQEMiExIdN3IMA/profile-displayphoto-shrink_" + } + }, + "trackingId": "5KlkVR8ZQzuE9t5haaDtoA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "N'\u00e9tant pas abonn\u00e9 au Parisien, je ne saurai pas ce qui est \u00e9crit exactement dans cet article. Mais l'essentiel, en l'esp\u00e8ce, est l'existence m\u00eame d'un article sur les 50 ans de ce rapport dans un \"grand journal populaire\", dont la ligne \u00e9ditoriale est de parler du quotidien de nos concitoyens.\n\nCe rapport, qui est une merveille de vulgarisation sur la dynamique des syst\u00e8mes, a donc \u00e9t\u00e9 publi\u00e9 il y a un demi-si\u00e8cle. Que penser aujourd'hui de ce travail, qui ambitionnait de fournir les \"grandes tendances\" caract\u00e9risant une soci\u00e9t\u00e9 humaine cherchant \u00e0 maintenir la croissance de son activit\u00e9 aussi longtemps que possible ?\n\nQuelques chercheurs ont compar\u00e9 comment avaient \u00e9volu\u00e9 des indicateurs \"faciles \u00e0 suivre\" dans la mod\u00e9lisation de Meadows et al. et dans la vraie vie : la population, ou la production agricole ou industrielle. \n\nA l'\u00e9poque, et avec les moyens informatiques disponibles alors, il \u00e9tait par contre difficile de faire un mod\u00e8le incorporant des milliers de variables \"physiques\", comme les \u00e9missions de CO2, la consommation de p\u00e9trole ou de cuivre, ou encore les populations d'esp\u00e8ces. La mod\u00e9lisation a donc port\u00e9 sur des indicateurs agr\u00e9g\u00e9s, comme par exemple \"l'ensemble des ressources non renouvelables\" ou \"l'ensemble de la pollution\".\n\nPour ces indicateurs l\u00e0, la comparaison avec l'\u00e9volution du monde est plus d\u00e9licate. Mais si l'on prend comme proxy de la pollution les \u00e9missions de gaz \u00e0 effet de serre (ce n'est pas compl\u00e8tement idiot : le CO2 vient tr\u00e8s majoritairement de l'\u00e9nergie, or plus on utilise d'\u00e9nergie plus on transforme, et plus on transforme plus il y a de sous-produits ind\u00e9sirables de cette transformation = de la pollution) et si l'on prend comme proxy des stocks de ressources naturelles non renouvelables les combustibles fossiles (pas compl\u00e8tement ill\u00e9gitime non plus : nous extrayons des ressources \u00e0 peu pr\u00e8s \u00e0 proportion des combustibles fossiles utilis\u00e9s) alors on voit que les projections du sc\u00e9nario \"ligne de pente\" (appel\u00e9 aussi \"business as usual\") ne sont pas tr\u00e8s \u00e9loign\u00e9es de ce qui s'est vraiment pass\u00e9 : https://lnkd.in/gKxWieK ).\n\nEt il est frappant de constater que, en ce d\u00e9but de 21\u00e8 si\u00e8cle, des pics ont d\u00e9j\u00e0 \u00e9t\u00e9 franchis ou sont en passe de l'\u00eatre :\n- le pic de poissons p\u00each\u00e9s (1995)\n- le pic de production du p\u00e9trole conventionnel (2008) et tous p\u00e9troles au cours de cette d\u00e9cennie si ce n'est pas 2019\n- le pic de la photosynth\u00e8se aux moyennes latitudes a peut-\u00eatre \u00e9t\u00e9 pass\u00e9 au d\u00e9but du si\u00e8cle...\n\nDans ce contexte, la question de savoir quelle retraite nous toucherons en 2050 ne se pr\u00e9sente pas pareil qu'avec de la croissance \u00e0 gogo, mais cela n'a pas l'air de trop pr\u00e9occuper nos finalistes de l'\u00e9lection... ni les journalistes \"politiques\" qui leur tendent le micro. Pourtant, si un journaliste \u00e9conomique d'un \"quotidien populaire\" s'y met (David Charpentier), les journalistes politiques - dont le m\u00e9tier n'est pas juste de passer les plats - ont-ils encore une seule excuse valable pour garder des oeill\u00e8res ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6919906796736282626,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6919906797768065024,urn:li:activity:6919906797768065024,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 71, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6919906797768065024,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6919906797768065024,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6919906797768065024", + "threadId": "activity:6919906797768065024", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6919906797768065024", + "urn": "urn:li:activity:6919906797768065024", + "numComments": 102, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6919906797768065024", + "reactionTypeCounts": [ + { + "count": 2077, + "reactionType": "LIKE" + }, + { + "count": 140, + "reactionType": "INTEREST" + }, + { + "count": 121, + "reactionType": "PRAISE" + }, + { + "count": 55, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 17, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6919906797768065024", + "numLikes": 2441, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6919906797768065024", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2441, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6919602679035928576,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6919602679035928576", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6919602679035928576)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6919602679035928576)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-justifications-de-jean-castex-sur-son-activity-6919602679035928576-HgYT?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6919602678394191872", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6919602679035928576", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6919602679035928576,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6919602679035928576,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6919602678394191872", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "2BQOXQSOI/89logRfrsmdw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6919602679035928576,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7737430388655154568", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675472056559?e=1677240000&v=beta&t=JecALrLt-oJeOIFvWvBOVWkUOyzN3-bMw1rQeHGRMos", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675472056559?e=1677240000&v=beta&t=_LFfStIahVDMQj8DtfmSwlvEJkDFCvyDZSaQp3JAtJw", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675472056559?e=1677240000&v=beta&t=65RuY4ECsmSp_S2OI4QfQY_NrtvLcho9qI8tD0DComc", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675472056559?e=1677240000&v=beta&t=Z0ubHLLAwYGi_KoM6xcVYDMrWqozG3MtSMbVCFb5e5w", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGbRNayYzCGZw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7737430388655154568)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7737430388655154568)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "msn.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les justifications de Jean Castex sur son aller-retour en avion pour voter : \"Il faut que le Premier ministre soit \u00e0 Paris tr\u00e8s vite\u2026\" (VIDEO) by msn.com", + "actionTarget": "https://www.msn.com/fr-fr/actualite/france/les-justifications-de-jean-castex-sur-son-aller-retour-en-avion-pour-voter-il-faut-que-le-premier-ministre-soit-%C3%A0-paris-tr%C3%A8s-vite-video/ar-AAW7PJI" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les justifications de Jean Castex sur son aller-retour en avion pour voter : \"Il faut que le Premier ministre soit \u00e0 Paris tr\u00e8s vite\u2026\" (VIDEO)" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6919602678394191872,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 23, + "length": 11, + "miniProfile": { + "firstName": "Jean", + "lastName": "Castex", + "dashEntityUrn": "urn:li:fsd_profile:ACoAADGBr_4Blpfb3lhcaxTg9ozKiP5rx312PhI", + "occupation": "Pr\u00e9sident-directeur g\u00e9n\u00e9ral du groupe RATP", + "objectUrn": "urn:li:member:830582782", + "entityUrn": "urn:li:fs_miniProfile:ACoAADGBr_4Blpfb3lhcaxTg9ozKiP5rx312PhI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1603100659776?e=1681948800&v=beta&t=lA-Suv06Ra8u76RZ2meINTmG6UmIvO__u8OicpZWjuM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1603100659776?e=1681948800&v=beta&t=olxmcv71KLvT3qQRLrY_GfNmKk52aG2KEcKUoloVBcg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQEIWUcV1jCYnw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-castex", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1669635574467?e=1681948800&v=beta&t=fkwwERpv5DJYo5SC5m01yoG6D_9_uwoHZRvX5Cc3rBk", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1669635574467?e=1681948800&v=beta&t=gops-UV7y-lmltqG4wTOjCXGsvIjs0pUyaQUCBjTr-A", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1669635574467?e=1681948800&v=beta&t=voIOvRKVzEk88RWFL4ZoTbzEB--pZ0zpQQTxfyQw7-A", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1669635574467?e=1681948800&v=beta&t=KhtOWJTPlfElJtpntgW4cpeIBEO8U_Iblq7TjeWw-OY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQFZVAFScGEoJw/profile-displayphoto-shrink_" + } + }, + "trackingId": "wpXQNwa7Sw+IGz4uh9gH5Q==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Notre premier ministre Jean Castex a pris un jet priv\u00e9 pour aller voter. Argument invoqu\u00e9 : il faut qu'il puisse s'absenter le moins longtemps possible pour \u00eatre pr\u00eat \u00e0 r\u00e9agir en cas de probl\u00e8me.\n\nEn Su\u00e8de, les membres du gouvernement prennent le m\u00e9tro ou le v\u00e9lo, et il n'est pas sur que ce pays g\u00e8re moins bien ses urgences que le notre...\n\nEn fait, \u00e0 l'heure o\u00f9 nous sommes connect\u00e9s en permanence, il est \u00e9vident que cet argument n'a aucune esp\u00e8ce de validit\u00e9. En outre, le candidat choisi par Castex \u00e9tant probablement un secret de Polichinelle, il aurait tout aussi bien pu faire une procuration \u00e0 n'importe quel d\u00e9put\u00e9 LREM du coin qui se serait fait un plaisir d'y aller pour lui. \n\nAdmettons que Castex n'ait pas compris que cet aller-retour en jet priv\u00e9 \u00e9tait une provocation pour les jeunes (et les moins jeunes) effray\u00e9s par le changement climatique. Admettons qu'il n'ait pas compris que c'\u00e9tait une provocation pour les gens qui en ce moment sont prisonniers d'un carburant \u00e0 2 euros (m\u00eame si les personnes concern\u00e9es n'ont pas toujours \u00e9cout\u00e9 les incitations \u00e0 acheter les voitures les plus sobres possibles de par le pass\u00e9 !).\n\nAdmettons qu'il n'ait pas compris que de surconsommer du carburant \u00e9tait aujourd'hui \"sur-financer\" Poutine alors m\u00eame que nous faisons de grands discours appelant \u00e0 l'inverse.\n\nIl pourrait \u00e0 tout le moins faire un petit mea culpa. Ca n'est pas d\u00e9shonorant de pr\u00e9senter des excuses quand on a fait mal sans faire expr\u00e8s. Ca nous arrive \u00e0 tous quand nous faisons un geste brusque dans un pi\u00e8ce et qu'une personne que nous n'avions pas vue prend un coup (heureusement pas m\u00e9chant l'essentiel du temps).\n\nPar ailleurs quand un ministre a un comportent ou un discours qui le met en porte \u00e0 faux avec la politique gouvernementale du moment il est g\u00e9n\u00e9ralement recadr\u00e9 par \"plus haut que lui\" (ici ce serait le chef de l'Etat). \n\nIl est significatif qu'un tel recadrage n'ait pas (encore ?) eu lieu. Cela signifie qu'au fond il n'est pas tr\u00e8s grave de se fiche de l'environnement quand on est premier ministre dans ce gouvernement (ca n'est pas mieux en face pour \u00e9viter tout malentendu !)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6919602678394191872,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6919602679035928576,urn:li:activity:6919602679035928576,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 1002, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6919602679035928576,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6919602679035928576,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6919602679035928576", + "threadId": "activity:6919602679035928576", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6919602679035928576", + "urn": "urn:li:activity:6919602679035928576", + "numComments": 1430, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6919602679035928576", + "reactionTypeCounts": [ + { + "count": 19316, + "reactionType": "LIKE" + }, + { + "count": 1875, + "reactionType": "PRAISE" + }, + { + "count": 1388, + "reactionType": "MAYBE" + }, + { + "count": 311, + "reactionType": "INTEREST" + }, + { + "count": 203, + "reactionType": "APPRECIATION" + }, + { + "count": 136, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6919602679035928576", + "reacted": "LIKE", + "numLikes": 23229, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6919602679035928576", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 23229, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6919537205082267648,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6919537205082267648", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6919537205082267648)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6919537205082267648)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_voyager-bas-carbone-le-shift-publie-activity-6919537205082267648-segA?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6919537204356648961", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6919537205082267648", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6919537205082267648,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6919537205082267648,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6919537204356648961", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "oiKdprfmHXmDgChazXpwRw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6919537205082267648,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7935096914187373138", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676615332756?e=1677240000&v=beta&t=v2wUIkc2R80wirOJ7M1MOenUcEYE3RCf4CA5yn-BpXY", + "expiresAt": 1677240000000, + "height": 504 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676615332756?e=1677240000&v=beta&t=eeYtKjmk57LKthAtJQQHzUn2KWn-RQLUgCb3t99WbY4", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676615332757?e=1677240000&v=beta&t=Mu7z9y8LBkSy0fSt1EZGlzSarnRh9iWxEOHNHiilKxg", + "expiresAt": 1677240000000, + "height": 100 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676615332757?e=1677240000&v=beta&t=jB2rM-tJtFyY7MgUrSdn97Lx6B9kTAR2oO7HxxHgVRw", + "expiresAt": 1677240000000, + "height": 302 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHXS9m4pA-tHA/articleshare-shrink_" + }, + "displayAspectRatio": 0.63 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7935096914187373138)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7935096914187373138)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab Voyager bas carbone \u00bb : le Shift publie son nouveau rapport ! by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/rapport-final-voyager-bas-carbone-ptef/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab Voyager bas carbone \u00bb : le Shift publie son nouveau rapport !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6919537204356648961,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Nous sommes des animaux terrestres : de ce fait nous avons la bougeotte, et le d\u00e9placement fait partie de notre nature. Mais depuis que le p\u00e9trole s'est invit\u00e9 dans nos vies, nos d\u00e9placements quotidiens sont pass\u00e9s de 3 km par jour \u00e0 10 fois plus (voir https://lnkd.in/ejMNZQgN pour des d\u00e9tails). De 2 millions de v\u00e9hicules particuliers en 1945, le parc automobile fran\u00e7ais est pass\u00e9 \u00e0 presque 40. \n\nLe p\u00e9trole, le gaz et le charbon ayant lib\u00e9r\u00e9 nos bras via les machines, nous avons eu des vacances (cong\u00e9s pay\u00e9s), et comme nous sommes des animaux curieux et explorateurs, nous avons profit\u00e9 de ce temps libre et de la mobilit\u00e9 motoris\u00e9e pour prendre l'habitude d'aller voir ailleurs ce qui se passe (ca s'appelle le \"d\u00e9paysement\").\n\nLa mobilit\u00e9 accessible \u00e0 tou(te)s a aussi \u00e9clat\u00e9 les familles (qui avant vivaient globalement au m\u00eame endroit de g\u00e9n\u00e9ration en g\u00e9n\u00e9ration), engendrant l'envie de se retrouver de temps en temps... en se d\u00e9pla\u00e7ant.\n\nAujourd'hui, un(e) fran\u00e7ais(e) parcourt en moyenne 7600 km par an pour sa mobilit\u00e9 dite longue distance, l'emmenant \u00e0 plus de 80 km de son domicile. Les motifs en sont essentiellement \"non professionnels\" : vacances, loisirs, visites \u00e0 la famille ou \u00e0 des ami(e)s.\n\nTout cela, c'est le p\u00e9trole qui nous l'a donn\u00e9. La voiture domine largement dans les d\u00e9placements, mais l'avion fait jeu \u00e9gal avec la voiture dans les kilom\u00e8tres parcourus, et conduit \u00e0 plus d'\u00e9missions que la voiture pour les loisirs. \n\nDans un monde qui doit totalement se passer de p\u00e9trole en 30 \u00e0 50 ans (et qui va de toute fa\u00e7on, en Europe, en consommer 2 \u00e0 Z fois moins dans les 30 ans \u00e0 venir : https://lnkd.in/dqWtnMPi ), et sans r\u00eaver \u00e0 des \"humains immobiles\", ce qui ne correspond pas \u00e0 notre nature, comment faire ?\n\nTelle est la question abord\u00e9e dans ce dernier volet publi\u00e9 du plan de transformation de l'\u00e9conomie fran\u00e7aise version 1. Sans grande surprise on va trouver dans le cocktail de solutions moins d'avion, moins de voiture et plus de train, des voitures de plus en plus \u00e9lectriques, et une organisation des voyages (par exemple de la location de modes de d\u00e9placement \"locaux\" et d\u00e9carbon\u00e9s \u00e0 destination) permettant de continuer \u00e0 se d\u00e9placer pour ses loisirs.\n\nRien de tout cela ne va cependant se faire tout seul par la magie du march\u00e9 envoyant 30 ans \u00e0 l'avance les bons signaux \u00e0 des acteurs qui anticiperont sur cette dur\u00e9e. Comme pour le reste du plan de transformation de l'\u00e9conomie fran\u00e7aise, il va \u00eatre n\u00e9cessaire de... planifier. Moins on le fera et plus le risque que cette mobilit\u00e9 baisse de fa\u00e7on brutale et in\u00e9quitable augmente.\n\nLa \"planification \u00e9cologique\" n'est pas qu'un r\u00eave de vieux ronchons qui ne se sont pas remis de la chute de l'URSS. C'est la meilleure mani\u00e8re de pr\u00e9server nos libert\u00e9s futures - dont la paix et la stabilit\u00e9 sont des pr\u00e9suppos\u00e9s indispensables - en acceptant un peu moins de libert\u00e9 tout de suite. Si l'exp\u00e9rience doit nous le prouver, il sera trop tard pour faire machine arri\u00e8re." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6919537204356648961,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6919537205082267648,urn:li:activity:6919537205082267648,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 63, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6919537205082267648,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6919537205082267648,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6919537205082267648", + "threadId": "activity:6919537205082267648", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6919537205082267648", + "urn": "urn:li:activity:6919537205082267648", + "numComments": 84, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6919537205082267648", + "reactionTypeCounts": [ + { + "count": 2245, + "reactionType": "LIKE" + }, + { + "count": 148, + "reactionType": "INTEREST" + }, + { + "count": 86, + "reactionType": "MAYBE" + }, + { + "count": 57, + "reactionType": "EMPATHY" + }, + { + "count": 51, + "reactionType": "PRAISE" + }, + { + "count": 38, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6919537205082267648", + "numLikes": 2625, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6919537205082267648", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2625, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6919180049367642112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6919180049367642112", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6919180049367642112)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6919180049367642112)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_marine-le-pen-enfant-du-carbone-activity-6919180049367642112-KH9S?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6919180048507785216", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6919180049367642112", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6919180049367642112,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6919180049367642112,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6919180048507785216", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "t9XthQnGxwolXWiwtrxA7A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6919180049367642112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8087568316306548159", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675422811671?e=1677240000&v=beta&t=-cQETbQmcucgFnD-6g4tjCD0S8A2leVdYRxi6wY_aVU", + "expiresAt": 1677240000000, + "height": 530 + }, + { + "width": 1205, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675422811671?e=1677240000&v=beta&t=XFPUSWA5t5hCHGpSM7zsoXZWz7YpCPNcb83IfFDb8sI", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675422811671?e=1677240000&v=beta&t=pDKLbxrf16V4ozhOBbBRb_FJ5yDt_niL00uU3ljXcAg", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675422811671?e=1677240000&v=beta&t=g-R_2V8PtBFbeA_TAZc_x4UFuuLANkfo7LsQDt7v-w0", + "expiresAt": 1677240000000, + "height": 318 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHPco9UIWNtKA/articleshare-shrink_" + }, + "displayAspectRatio": 0.6625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8087568316306548159)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8087568316306548159)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Marine Le Pen, enfant du carbone ? by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/articles-de-presse/marine-le-pen-enfant-du-carbone/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Marine Le Pen, enfant du carbone ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6919180048507785216,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le titre de cet article pourrait faire penser qu'il a \u00e9t\u00e9 \u00e9crit la nuit derni\u00e8re, histoire de montrer que je suis \"\u00e0 la page\" et que j'ai un peu suivi le r\u00e9sultat de ce premier tour.\n\nEn fait il date de... 2011, et avait \u00e9t\u00e9 publi\u00e9 dans Les Echos \u00e0 l'\u00e9poque. En exhumant cette production des placards, je prends \u00e9videmment le risque que l'on y pointe quelques petits \u00e9l\u00e9ments qui ne sont pas compl\u00e8tement raccord avec les 10 ans que nous avons connus depuis (et l'emploi du mot \"d\u00e9carbonisation\" plut\u00f4t que \"d\u00e9carbonation\" !), mais c'est bien le sens g\u00e9n\u00e9ral qu'il faut y voir. \n\nLe sens g\u00e9n\u00e9ral, qu'aucun(e) candidat(e) n'a mis en avant pendant cette campagne, est que l'\u00e9conomie est avant tout une affaire de flux physiques, que la d\u00e9crue subie des combustibles fossiles est en route, et qu'elle contraint tout partout. Elle oblige \u00e0 r\u00e9am\u00e9nager le territoire, \u00e0 modifier les activit\u00e9s productives, \u00e0 d\u00e9mondialiser pour partie, \u00e0 repenser l'agriculture, \u00e0 modifier l'industrie, bref \u00e0 \"tout changer\" puisque \"tout a chang\u00e9\" dans l'autre sens (voir la chose en dessins au besoin : https://lnkd.in/dtHn5pbD ). \n\nCela n'a pas \u00e9t\u00e9 compris pendant le quinquennat qui s'ach\u00e8ve, mais pas plus pendant ceux qui ont pr\u00e9c\u00e9d\u00e9. La faillite des anciens partis de gouvernement (PS et LR) a peut-\u00eatre un lien avec ca.\n\nSi nous sommes dans cette confusion aujourd'hui, nous le devons aussi... aux personnages \"civils\" qui ne cessent de dire que la croissance n'est qu'une affaire d'envie ou de volont\u00e9 (le dernier en date est le patron de la BPI dans cette vid\u00e9o : https://lnkd.in/evQae8tc ). Cette inversion du lien de causalit\u00e9 entre PIB et disponibilit\u00e9 des ressources physiques structure par construction des programmes politiques qui font tous le pari de la croissance (\u00e0 de rares exceptions pr\u00e8s), et nous laisse donc \"\u00e0 poil\" pour g\u00e9rer le monde tel qu'il est r\u00e9ellement, avec une \u00e9conomie qui ne peut mieux se porter que la disponibilit\u00e9 des ressources physiques qui lui sont n\u00e9cessaires.\n\nEst-ce que de ressortir cet article des placards va aider pour choisir dans 15 jours, et surtout pour construire quelque chose d'adapt\u00e9 \u00e0 l'\u00e9poque ensuite ?\n\nPeut-\u00eatre pas... ou peut-\u00eatre, puisque l'espoir fait vivre :). Dans tous les cas de figure, apr\u00e8s les pr\u00e9sidentielles viendront les l\u00e9gislatives, et quel que soit le choix du premier magistrat il y aura toujours une vie civile qui comptera beaucoup. En outre bien malin(e) qui peut aujourd'hui pr\u00e9dire \u00e0 quoi ressemblera l'Assembl\u00e9e qui, pour le choix du gouvernement, a fatalement le dernier mot. La fin de l'histoire n'est heureusement pas encore totalement \u00e9crite." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6919180048507785216,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6919180049367642112,urn:li:activity:6919180049367642112,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 60, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6919180049367642112,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6919180049367642112,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6919180049367642112", + "threadId": "activity:6919180049367642112", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6919180049367642112", + "urn": "urn:li:activity:6919180049367642112", + "numComments": 147, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6919180049367642112", + "reactionTypeCounts": [ + { + "count": 1363, + "reactionType": "LIKE" + }, + { + "count": 135, + "reactionType": "INTEREST" + }, + { + "count": 120, + "reactionType": "MAYBE" + }, + { + "count": 30, + "reactionType": "PRAISE" + }, + { + "count": 27, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6919180049367642112", + "numLikes": 1686, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6919180049367642112", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1686, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6918863489679675392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6918863489679675392", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6918863489679675392)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6918863489679675392)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_changement-climatique-quapporte-le-volet-activity-6918863489679675392-WaAn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6918863488702423040", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6918863489679675392", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6918863489679675392,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6918863489679675392,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6918863488702423040", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "gMIdGgym9aETzO8xfCb+PA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6918863489679675392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7958487467128533942", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675639670408?e=1677240000&v=beta&t=ufwcItcIk3IJagzbqsprC3MorFKnjnH60Z0ycGheaws", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675639670408?e=1677240000&v=beta&t=I8CfRCgrFtZUQYSh3fms8EzJTMRUo3CSmlIzdTQ_d-8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675639670409?e=1677240000&v=beta&t=jr93NTE_ciHx1IJdNpZMja5QfthRL8A-xSRNNz5Xfps", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675639670409?e=1677240000&v=beta&t=7Nl8XfEp10UMT8BSE49BMg4dufFST0xS08kunb_2OuA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFPuAD6a_ztqg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7958487467128533942)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7958487467128533942)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Changement climatique : qu'apporte le volet 3 du rapport du Giec ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900143101-changement-climatique-qu-apporte-le-volet-3-du-rapport-du-giec" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Changement climatique : qu'apporte le volet 3 du rapport du Giec ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6918863488702423040,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Derni\u00e8re chronique du Samedi matin sur RTL avant le premier tour. Elle part du dernier rapport du GIEC, celui du groupe 3, qui porte sur les marges de manoeuvre. \n\nCe rapport est par nature bien plus d\u00e9licat \u00e0 interpr\u00e9ter que les groupes 1 et 2. Reprenons du d\u00e9but : un rapport du GIEC part toujours de ce qui a \u00e9t\u00e9 publi\u00e9 dans les revues \u00e0 comit\u00e9 de lecture des disciplines couvertes. Pourle groupe 3, il s'agit tr\u00e8s souvent d'\u00e9conomie.\n\nCons\u00e9quence logique : la synth\u00e8se du groupe 3 \"incorpore\" donc - mais sans le rappeler - les limites de l'\u00e9conomie en g\u00e9n\u00e9ral. Cette discipline s'appuie avant tout sur des conventions humaines, ou sur des sc\u00e9narios qui partent d'hypoth\u00e8ses postul\u00e9es et non d\u00e9montr\u00e9es.\n\nPremi\u00e8re limite : parler prix est par d\u00e9finition supposer l'existence d'un march\u00e9 (c'est tellement \u00e9vident ; on l'oublie souvent !). Mais tout n'est pas marchand dans nos soci\u00e9t\u00e9s. Pour revenir \u00e0 l'actualit\u00e9 du jour, le droit de vote n'a pas de valeur marchande, or l'avoir ou pas change un peu l'avenir...\n\nApr\u00e8s il y a des limites qui viennent non pas des outils utilis\u00e9s mais de nos \"oeill\u00e8res\" culturelles. Par exemple je ne connais pas de simulations \u00e9conomiques qui explorent une productivit\u00e9 qui d\u00e9croit \u00e0 peu pr\u00e8s comme les \u00e9missions (parce que les \u00e9missions c'est de l'\u00e9nergie, l'\u00e9nergie c'est des machines, et ce qui a augment\u00e9 la productivit\u00e9 ce sont les machines !). Du coup la productivit\u00e9 augmente par hypoth\u00e8se dans tous les travaux \u00e9conomiques, et en cons\u00e9quence les marges de manoeuvre techniques sont syst\u00e9matiquement \"de moins en moins ch\u00e8res\". Est-ce si sur ?\n\nL'\u00e9conomie th\u00e9orique prend toujours le PIB (ou la productivit\u00e9 du travail et la population, ce qui revient au m\u00eame) comme donn\u00e9e d'entr\u00e9e des mod\u00e8les et non comme donn\u00e9e de sortie. Comme la croissance est d\u00e9sirable (!), le PIB est suppos\u00e9 croissant, et \"appelle\" des ressources conventionnellement disponibles. \n\nImpossible de voir venir les limites physiques \u00e0 la production - qui existent pourtant - avec un tel raisonnement !\n\nCela explique pourquoi on trouve p. 27 du r\u00e9sum\u00e9 pour d\u00e9cideur - https://lnkd.in/e_6VyaAy - l'hypoth\u00e8se que le PIB croit sans discontinuer jusqu'en 2100 quel que soit le sc\u00e9nario d'\u00e9mission :).\n\nAvant la publication de ce rapport, The Shift Project a envoy\u00e9 au GIEC une remarque pour souligner que :\n\n- les sc\u00e9narios hauts (SSP 8.5 voire 7.0 ; https://lnkd.in/ehJGzTmi ) supposent une disponibilit\u00e9 en combustibles fossiles qui pose question. \n\n- les sc\u00e9narios bas (SSP 2.6 et SSP 1.9) supposent un d\u00e9couplage entre \u00e9missions et PIB - et donc un d\u00e9couplage entre \u00e9missions et productivit\u00e9 du travail - qui pose aussi question.\n\nRappelons que le GIEC a pour mandat d'informer mais non de prescrire l'action (en anglais on dit \"policy relevant but not policy prescriptive\"). Mais l'\u00e9conomie ne permet pas de bien faire la diff\u00e9rence. Est-ce ne pas \u00eatre \"prescriptif pour l'action\" quand on \u00e9crit que toute marge de manoeuvre peut s'inscrire dans un avenir en croissance ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6918863488702423040,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6918863489679675392,urn:li:activity:6918863489679675392,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 14, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6918863489679675392,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6918863489679675392,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6918863489679675392", + "threadId": "activity:6918863489679675392", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6918863489679675392", + "urn": "urn:li:activity:6918863489679675392", + "numComments": 54, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6918863489679675392", + "reactionTypeCounts": [ + { + "count": 357, + "reactionType": "LIKE" + }, + { + "count": 44, + "reactionType": "INTEREST" + }, + { + "count": 34, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6918863489679675392", + "numLikes": 443, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6918863489679675392", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 443, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6918492366764961792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6918492366764961792", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6918492366764961792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6918492366764961792)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_notre-d%C3%A9cryptage-des-programmes-quel-quinquennat-activity-6918492366764961792-mYkF?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6918492365808668672", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6918492366764961792", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6918492366764961792,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6918492366764961792,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6918492365808668672", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "fe53JYWjg+lbpnK4zKMkBQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6918492366764961792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9143036237590935205", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676300938124?e=1677240000&v=beta&t=YJFT7EIQJ9Gpcnu0kOTgORncCDg83ZPzVwIjy7p0sa4", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676300938124?e=1677240000&v=beta&t=jYi8itvPsGaP7ydVAfJaIRfTLYQtFAxQ2S69c8Yw2QY", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676300938125?e=1677240000&v=beta&t=dFBN03QFkOzs0jJcWmu6WrAmQduKhwScVuxnIdyDgzY", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676300938125?e=1677240000&v=beta&t=TYrUhGGHUOKX_lH6zMFkHZL4RyQ_5gb8U_vX6T55JE0", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQE-TKZu1ojkEw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9143036237590935205)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9143036237590935205)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "presidentielle2022.theshifters.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Notre d\u00e9cryptage des programmes - Quel quinquennat pour le climat ? by presidentielle2022.theshifters.org", + "actionTarget": "https://presidentielle2022.theshifters.org/decryptage/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Notre d\u00e9cryptage des programmes - Quel quinquennat pour le climat ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6918492365808668672,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 92, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "r4wE0XP9RnyXOHt92dcaDg==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 209, + "length": 17, + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "C7YZKhvKQ76QDGMaueH74w==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Demain on vote. Pour \u00e9clairer chaque personne qui glissera un bulletin de vote dans l'urne, Les Shifters (l'association des personnes physiques qui enrichissent/compl\u00e8tent/soutiennent/diffusent les travaux de The Shift Project) ont r\u00e9alis\u00e9 une analyse des programmes des candidat(e)s qui sollicitent nos suffrages.\n\nCette analyse a \u00e9t\u00e9 reprise par France Info (https://lnkd.in/ejcXBjEN ) qui a introduit une novation qui n'\u00e9tait pas dans la production des Shifters : un classement. Le jour de la publication de la page sur le site de France Info j'ai fait une erreur de d\u00e9butant : je suis parti de leur analyse et non de celle des Shifters (que je n'avais pas eue sous la main \u00e0 ce moment l\u00e0 ; mea culpa bis !). \n\nOr l'infographie de France Info r\u00e9sumant graphiquement les secteurs couverts n'est pas la m\u00eame que celle des shifters. Du coup le commentaire que j'ai fait sur le \"nombre de cases coch\u00e9es\" est partiellement erron\u00e9 sur le strict plan quantitatif.\n\nMon commentaire a par ailleurs \u00e9t\u00e9 interpr\u00e9t\u00e9 comme une \"bonne note\" pour Jean-Luc M\u00e9lenchon \u00e0 la fois par certains de ses partisans (https://lnkd.in/eYAvkYAm) et par certains de ses adversaires (https://lnkd.in/e37jnrC5 ).\n\nJe voudrais donc rappeler :\n\n- que je n'ai appel\u00e9 - et n'appellerai pas - \u00e0 voter pour une personne en particulier, pas plus que The Shift Project ou Les Shifters qui sont des associations a-partisanes\n\n- que l'analyse des Shifters inventorie l'existence de mesures dans un secteur mentionn\u00e9 dans la Strat\u00e9gie Nationale Bas Carbone. C'est d'abord un indicateur du temps pass\u00e9 par les r\u00e9dacteurs des programmes avant d'\u00eatre un indicateur de la pertinence de la mesure propos\u00e9e\n\n- que pour \u00e9tablir un classement il faut n\u00e9cessairement pond\u00e9rer les \"notes\" obtenues dans les diverses rubriques. Si \"on\" d\u00e9cide que le secteur transport a un coefficient 2 alors que le secteur \u00e9nergie a un coefficient 10 on n'obtient pas le m\u00eame classement que si on d\u00e9cide que le transport a 5 pendant que l'\u00e9nergie a 3. Or aucune pond\u00e9ration des secteurs n'a \u00e9t\u00e9 propos\u00e9e dans l'analyse des Shifters. \n\n- que pour obtenir une moyenne les secteurs doivent \u00eatre ind\u00e9pendants les uns des autres, sinon les liens de d\u00e9pendance peuvent conduire \u00e0 noter \u00e0 l'identique tous les programmes o\u00f9 un secteur qui conditionne tous les autres ne passe pas la rampe.\n\n- que cette analyse ne confronte pas les mesures propos\u00e9es au chapitre \"climat\" avec ce qui est propos\u00e9 par ailleurs par le/la candidat(e). Par exemple plusieurs candidat(e)s proposent explicitement de diminuer le prix des carburants (au moins M\u00e9lenchon, Macron et Le Pen), de sortir du nucl\u00e9aire, ou de favoriser la hausse de la consommation, des mesures qui rendent par la force des choses plus difficile d'atteindre les objectifs propos\u00e9s au titre du climat.\n\nSi le climat est bien pr\u00e9sent dans les discours, les programmes peinent \u00e0 mettre l'ensemble des propositions en coh\u00e9rence. Il faudra h\u00e9las faire avec au moment du choix. Bon vote !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6918492365808668672,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6918492366764961792,urn:li:activity:6918492366764961792,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 46, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6918492366764961792,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6918492366764961792,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6918492366764961792", + "threadId": "activity:6918492366764961792", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6918492366764961792", + "urn": "urn:li:activity:6918492366764961792", + "numComments": 73, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6918492366764961792", + "reactionTypeCounts": [ + { + "count": 1235, + "reactionType": "LIKE" + }, + { + "count": 117, + "reactionType": "INTEREST" + }, + { + "count": 83, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6918492366764961792", + "numLikes": 1472, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6918492366764961792", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1472, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6918078032247205888,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6918078032247205888", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6918078032247205888)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6918078032247205888)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_comment-le-reporting-des-risques-physiques-activity-6918078032247205888-9ea8?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6918078031601278976", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6918078032247205888", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6918078032247205888,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6918078032247205888,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6918078031601278976", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "VDsHqKzoZRVI3QEwx95mUA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6918078032247205888,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8687438252304492129", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676195392681?e=1677240000&v=beta&t=5Y_5ryyv41KeaNZsxmEkLCV_KJ14TJbvpgt7smqHOjw", + "expiresAt": 1677240000000, + "height": 535 + }, + { + "width": 1195, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676195392681?e=1677240000&v=beta&t=FcaAfifD0i1E3JBfdyL0KnRWsX4f-KZqrB71cFrNlY0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676195392681?e=1677240000&v=beta&t=HqWJ4eMOuJaPrxIiD4u2jGHJAveoBMWi3m5T3vcdfHM", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676195392681?e=1677240000&v=beta&t=iiMIgejQ7JlrS2q1DPh1raVzdMka9Dep79hnDD_AenU", + "expiresAt": 1677240000000, + "height": 321 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFQzL9M14KvmA/articleshare-shrink_" + }, + "displayAspectRatio": 0.66875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8687438252304492129)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8687438252304492129)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Comment le reporting des risques physiques \u00e9volue avec la CSRD ? | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/analyse-csrd-reporting-risques-physiques" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Comment le reporting des risques physiques \u00e9volue avec la CSRD ? | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6918078031601278976,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "De la CSRD \u00e0 la NFRD... qu\u00e9saco ?\n\nNFRD signifie Non Financial Reporting Directive. Comme son nom l'indique, il s'agit d'une directive, c'est \u00e0 dire une \"loi\" europ\u00e9enne. Rappelons qu'une directive ne s'applique pas en l'\u00e9tat ni d\u00e8s son adoption par le parlement et le conseil europ\u00e9ens ; il faut qu'elle soit \"convertie\" en loi nationale par chaque Etat membre pour entrer en vigueur dans l'Etat concern\u00e9.\n\nElle concerne les informations de nature \"non financi\u00e8re\" qui doivent \u00eatre rendue publiques par les entreprises assujetties, dit autrement tout ce qui n'est pas exprim\u00e9 en monnaie dans les documents publi\u00e9s par l'entreprise pour rendre compte de son \u00e9tat. C'est dans ce vaste ensemble que l'on trouve tout ce qui rel\u00e8ve des donn\u00e9es environnementales et sociales.\n\nCette directive oblige actuellement \u00e0 une certaine transparence 11700 entreprises cot\u00e9es, banques et entreprises d\u2019assurance europ\u00e9ennes. Entr\u00e9e en vigueur en 2018, la NFRD a \u00e9t\u00e9 compl\u00e9t\u00e9e en 2019 avec une rubrique concernant le climat - non explicitement pr\u00e9sent \u00e0 l'origine - mais... qui est d'application facultative.\n\nComme les entreprises concern\u00e9es se r\u00e9v\u00e8lent un peu molles du genou pour jouer le jeu - seulement 4% des plus grandes soci\u00e9t\u00e9s cot\u00e9es de l\u2019UE d\u00e9crivent clairement les impacts physiques du changement climatique sur leur activit\u00e9 \u00e0 court, moyen et long terme - la Commission a d\u00e9cid\u00e9 de passer \u00e0 la vitesse sup\u00e9rieure.\n\nElle a mis en chantier la Corporate Sustainability Reporting Directive - CSRD - qui va obliger les entreprises concern\u00e9es \u00e0 publier des informations\u00a0sur les risques climatiques, physiques et de transition, qui affectent le fonctionnement de l\u2019entreprise. Le seuil est abaiss\u00e9 \u00e0 toutes les entreprises cot\u00e9es, ainsi qu\u2019aux entreprises d\u00e9passant au moins deux des trois seuils suivants\u00a0:\u00a0\n- 20 millions d\u2019euros de bilan\n- 40 millions d\u2019euros de chiffre d\u2019affaires\n- 250 salari\u00e9s\n\n49.000 entreprises de l'UE seront directement concern\u00e9es, et devront identifier les risques climatiques physiques les plus importants pour leur activit\u00e9, mais aussi mettre en \u0153uvre des solutions d\u2019adaptation r\u00e9duisant de mani\u00e8re substantielle les risques significatifs identifi\u00e9s.\n\nEvidemment, le Diable sera dans quelques d\u00e9tails :\n- les moyens - humains et budg\u00e9taires - consacr\u00e9s par les entreprises \u00e0 effectuer des investigations pertinentes (pas juste pour publier un chiffre pour avoir la paix, ce qui reste h\u00e9las le comportement le plus courant)\n- la capacit\u00e9 des autorit\u00e9s \u00e0 juger de la pertinence de ce qui est fait (la formation et la comp\u00e9tence du gendarme sont des sujets trop souvent n\u00e9glig\u00e9s)\n- la sanction en cas de non respect de la r\u00e8gle (la peur du gendarme reste une motivation certaine)\n\nEsp\u00e9rons que les entreprises comprendront que c'est \"pour leur bien\" que ces obligations s'appliquent, sans chercher \u00e0 faire le service minimum en pensant que c'est ainsi qu'elles optimisent l'allocation de moyens. L'actualit\u00e9 r\u00e9cente rappelle que les mauvaises surprises ca existe." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6918078031601278976,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6918078032247205888,urn:li:activity:6918078032247205888,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 15, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6918078032247205888,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6918078032247205888,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6918078032247205888", + "threadId": "activity:6918078032247205888", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6918078032247205888", + "urn": "urn:li:activity:6918078032247205888", + "numComments": 19, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6918078032247205888", + "reactionTypeCounts": [ + { + "count": 345, + "reactionType": "LIKE" + }, + { + "count": 53, + "reactionType": "INTEREST" + }, + { + "count": 32, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6918078032247205888", + "numLikes": 439, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6918078032247205888", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 439, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6917878649945776128,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6917878649945776128", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6917878649945776128)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6917878649945776128)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rapport-du-giec-la-sobri%C3%A9t%C3%A9-ou-le-cauchemar-activity-6917878649945776128-4vA2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6917878649270497280", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6917878649945776128", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6917878649945776128,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6917878649945776128,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6917878649270497280", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "rAuQGhbmEbJ038AlvTGZYg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6917878649945776128,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7900818225452297659", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676583528090?e=1677240000&v=beta&t=yE8_dEkn9ukWeInh1qGAyJ2vZYfpDh2xswQDmBY6Lx8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676583528090?e=1677240000&v=beta&t=S-5oHFWhzxKncI7-9Y4ouoFIo5oZknH6YvbLcCCSA1U", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676583528091?e=1677240000&v=beta&t=JnZm6TTkXLQiydEeCfjUGbjTSBbEXxx_jliVrpnW0Jw", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676583528091?e=1677240000&v=beta&t=8Tt5VF2hLGG-Bv8AAZ2p8uFXBBpkcLGIuIidvKgd2vU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGkVPvwpIr4mQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7900818225452297659)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7900818225452297659)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Rapport du GIEC - La Sobri\u00e9t\u00e9 ou le cauchemar (avec Val\u00e9rie Masson-Delmotte & Yamina Saheb) #Groupe3 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=zxhCrtX5Lss" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\u2799 Cette cha\u00eene vit gr\u00e2ce \u00e0 vos dons ! https://linktr.ee/limit.media Que nous raconte le dernier volet du rapport du GIEC du groupe 3 ? Nous te r\u00e9sumons ici l'essentiel de 3000 pages avec des invit\u00e9s de luxe et le tout comme d'habitude rendu \u00e0 la sauce..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Rapport du GIEC - La Sobri\u00e9t\u00e9 ou le cauchemar (avec Val\u00e9rie Masson-Delmotte & Yamina Saheb) #Groupe3" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6917878649270497280,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un jeune (enfin pour moi !) \u00e0 casquette s'int\u00e9ressant \u00e0 la science, sour\u00e7ant ses informations, \u00e9grenant les conclusions du GIEC presque comme si c'\u00e9tait un air de rap, et tentant de donner la quintessence de ce qu'il faut savoir en vid\u00e9o et en quelques minutes, \u00e7a existe, ou bien c'est comme une fourmi de 3 m\u00e8tres de long, personne n'a jamais vu cela ?\n\nEh bien oui ca existe : c'est le pari de Vinz Kant\u00e9, qui a pour ambition d'int\u00e9resser en particulier les jeunes - de toutes provenances - \u00e0 la question environnementale (notamment climatique), et qui utilise pour cela les \"codes\" auxquels sont habitu\u00e9s cette g\u00e9n\u00e9ration : langage simple, propos directs, montage punchy, images bien choisies...\n\nLe drame du vulgarisateur est r\u00e9sum\u00e9 par cette maxime : \"ce qui est simple est faux, et ce qui ne l'est pas est incompr\u00e9hensible\". Bien vulgariser est donc un m\u00e9tier difficile, puisque cela revient \u00e0 faire \"simple et pas trop faux\". Pari r\u00e9ussi en l'esp\u00e8ce." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6917878649270497280,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6917878649945776128,urn:li:activity:6917878649945776128,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 114, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6917878649945776128,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6917878649945776128,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6917878649945776128", + "threadId": "activity:6917878649945776128", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6917878649945776128", + "urn": "urn:li:activity:6917878649945776128", + "numComments": 189, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6917878649945776128", + "reactionTypeCounts": [ + { + "count": 6196, + "reactionType": "LIKE" + }, + { + "count": 520, + "reactionType": "PRAISE" + }, + { + "count": 173, + "reactionType": "MAYBE" + }, + { + "count": 121, + "reactionType": "APPRECIATION" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 92, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6917878649945776128", + "numLikes": 7205, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6917878649945776128", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7205, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6917715493613150209,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6917715493613150209", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6917715493613150209)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6917715493613150209)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_franz%C3%B6sischer-klima-comic-das-ende-der-welt-activity-6917715493613150209-EcAo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6917715493004976128", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6917715493613150209", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6917715493613150209,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6917715493613150209,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6917715493004976128", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "z/ryofFZOdEgC/MjNQ7bHQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6917715493613150209,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8983985522218398235", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676622212310?e=1677240000&v=beta&t=aKN3rMFsxx2XtwTGhu1znfdjJQ-DCkU7TlO3awGd6Cc", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676622212310?e=1677240000&v=beta&t=9rAglgCWR3TifE5v3OXD3NpApBb-_fGRJP9v_PPYrPs", + "expiresAt": 1677240000000, + "height": 674 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676622212310?e=1677240000&v=beta&t=0Om2sC7dMbT_DbsJcCdA3vE_OWPr-cHJmPmi0ZBgNQ0", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676622212310?e=1677240000&v=beta&t=tWxZfggtTlykoFpy_jmU0iBAgIFSVLuiVGzPw1-S_YU", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGHXsvoosxQxA/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8983985522218398235)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8983985522218398235)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "augsburger-allgemeine.de \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Franz\u00f6sischer Klima-Comic: Das Ende der Welt l\u00e4sst auf sich warten by augsburger-allgemeine.de", + "actionTarget": "https://www.augsburger-allgemeine.de/kultur/graphic-novel-franzoesischer-klima-comic-das-ende-der-welt-laesst-auf-sich-warten-id62266646.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Franz\u00f6sischer Klima-Comic: Das Ende der Welt l\u00e4sst auf sich warten" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6917715493004976128,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est en pleine crise de l'\u00e9nergie en Allemagne (comme ailleurs) qu'elle sort : la traduction dans la langue de Goethe du Monde sans Fin (outre-Rhin ca devient \"Welt ohne Ende\" ; j'ai au moins appris ca !).\n\nNous n'y esp\u00e9rons \u00e9videmment pas les m\u00eames chiffres de vente que dans l'Hexagone :), mais... nous esp\u00e9rons que nous pourrons compter, au moins pour partie, sur le m\u00eame processus \"d'aide \u00e0 la diffusion\" que celui qui a eu lieu dans notre pays.\n\nEn effet, dans sa version fran\u00e7aise ce livre a une particularit\u00e9 : il est consid\u00e9r\u00e9 par les \"militants de la cause\" comme le parfait cadeau \u00e0 offrir pour que le ou la r\u00e9cipiendaire prenne conscience d'un d\u00e9fi dont il ou elle cernait mal les contours. Apr\u00e8s quoi d'une part on peut esp\u00e9rer qu'il ou elle (r\u00e9cipiendaire) soit plus enclin(e) \u00e0 accepter les mesures \u00e0 prendre pour diminuer notre d\u00e9pendance aux hydrocarbures, et incidemment qu'il arr\u00eate de regarder la personne qui lui a offert l'ouvrage comme gentiment foldingue ou obs\u00e9d\u00e9e :)\n\nMalgr\u00e9 quelques pages sur le nucl\u00e9aire qui seront peut-\u00eatre encore plus un chiffon rouge outre Rhin que chez nous, j'esp\u00e8re qu'en Allemagne il en sera un peu de m\u00eame, et notamment que des fran\u00e7ais qui y sont install\u00e9s auront envie d'offrir cet ouvrage \u00e0 leurs connaissances germanophones exactement comme cela s'est fait de ce c\u00f4t\u00e9 ci de la fronti\u00e8re.\n\nPeut-\u00eatre m\u00eame verrons nous des groupes fran\u00e7ais qui y ont des filiales qui d\u00e9cideront d'offrir ce livre \u00e0 une large partie de leur personnel local, comme cela s'est d\u00e9j\u00e0 observ\u00e9 dans notre pays !\n\nDes traductions sont \u00e9galement en cours en espagnol, anglais, et... n\u00e9erlandais. Ne manque que le mandarin :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6917715493004976128,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6917715493613150209,urn:li:activity:6917715493613150209,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 183, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6917715493613150209,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6917715493613150209,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6917715493613150209", + "threadId": "activity:6917715493613150209", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6917715493613150209", + "urn": "urn:li:activity:6917715493613150209", + "numComments": 256, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6917715493613150209", + "reactionTypeCounts": [ + { + "count": 2509, + "reactionType": "LIKE" + }, + { + "count": 286, + "reactionType": "PRAISE" + }, + { + "count": 70, + "reactionType": "APPRECIATION" + }, + { + "count": 45, + "reactionType": "EMPATHY" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6917715493613150209", + "numLikes": 2933, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6917715493613150209", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2933, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6917413734428622848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6917413734428622848", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6917413734428622848)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6917413734428622848)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_refus-de-prolonger-les-centrales-nucl%C3%A9aires-activity-6917413734428622848-EEjM?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6917413733707231232", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6917413734428622848", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6917413734428622848,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6917413734428622848,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6917413733707231232", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "tQdcwKu5e9ThLS5KdNzYdw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6917413734428622848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9132407784432727076", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675881444892?e=1677240000&v=beta&t=OG2_xzfza45gQbj7cWEiUsIFsXwRbBAIKKmkSv19e9Y", + "expiresAt": 1677240000000, + "height": 532 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675881444892?e=1677240000&v=beta&t=2NubJJtQAHC7nDXo7ZFhB8JM-VcUmY_VB9Xl_GHNGcY", + "expiresAt": 1677240000000, + "height": 681 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675881444892?e=1677240000&v=beta&t=Wx1FTIPQg_Ahtl17-xLxqJBofVfzlt3hiS5Uo3ZczcY", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675881444892?e=1677240000&v=beta&t=2-r5Z6PIWs_q2xACni-tLMegnGVCaOEZ5BzPyvFG-wc", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFORBzvZEAcIw/articleshare-shrink_" + }, + "displayAspectRatio": 0.665 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9132407784432727076)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9132407784432727076)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "sfen.org \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Refus de prolonger les centrales nucl\u00e9aires allemandes : l\u2019examen gouvernemental est contest\u00e9 - Sfen by sfen.org", + "actionTarget": "https://www.sfen.org/rgn/refus-de-prolonger-les-centrales-nucleaires-allemandes-lexamen-gouvernemental-est-conteste" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Refus de prolonger les centrales nucl\u00e9aires allemandes : l\u2019examen gouvernemental est contest\u00e9 - Sfen" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6917413733707231232,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En cette p\u00e9riode de guerre en Ukraine, vaut-il mieux financer un peu plus Poutine ou conserver des r\u00e9acteurs nucl\u00e9aires en \u00e9tat de marche ? Le gouvernement allemand pr\u00e9f\u00e8re implicitement financer un peu plus Poutine (et \u00e9mettre un peu plus de CO2), et argue de raisons r\u00e9glementaires, technologiques et pratiques pour maintenir la fermeture des r\u00e9acteurs qui doivent l'\u00eatre pour des raisons de promesses \"politiques\".\n\nLa SFEN propose un passage en revue de ces arguments pour montrer que ces fermetures ne sont pas in\u00e9luctables pour des raisons techniques. \n\nLes opposants au nucl\u00e9aire ont souvent mis en avant les risques de cette fili\u00e8re. Mais dans le monde qui est le n\u00f4tre, une option sans risque n'existe pas. Abandonner le nucl\u00e9aire comporte aussi des risques : celui de contribuer de mani\u00e8re plus importante au d\u00e9r\u00e8glement climatique, celui de se rendre plus d\u00e9pendant de pays dont le r\u00e9gime est discutable, celui de se rendre plus d\u00e9pendant de ressources fossiles ou m\u00e9talliques non disponibles sur son propre sol (avec \u00e9videmment la possibilit\u00e9 d'une rupture physique d'approvisionnement), celui d'augmenter les atteintes \u00e0 la biodiversit\u00e9 (en occupant plus d'espace), etc.\n\nQuand on supprime un risque, la bonne question est donc de savoir si nous n'en faisons pas appara\u00eetre un qui serait sup\u00e9rieur (auquel cas il faut conserver le risque que l'on pensait devoir supprimer !). Manifestement ce n'est pas comme cela que nos voisins ont pris le probl\u00e8me dans ce cas pr\u00e9cis (et cela nous arrive aussi plus souvent qu'\u00e0 notre tour...)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6917413733707231232,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6917413734428622848,urn:li:activity:6917413734428622848,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 97, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6917413734428622848,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6917413734428622848,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6917413734428622848", + "threadId": "activity:6917413734428622848", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6917413734428622848", + "urn": "urn:li:activity:6917413734428622848", + "numComments": 144, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6917413734428622848", + "reactionTypeCounts": [ + { + "count": 1728, + "reactionType": "LIKE" + }, + { + "count": 197, + "reactionType": "MAYBE" + }, + { + "count": 182, + "reactionType": "INTEREST" + }, + { + "count": 56, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6917413734428622848", + "numLikes": 2193, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6917413734428622848", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2193, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6917087688596570112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6917087688596570112", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6917087688596570112)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6917087688596570112)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-giec-ipcc-en-anglais-vient-de-publier-activity-6917087688596570112-xRSu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6917087687715774464", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6917087688596570112", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6917087688596570112,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6917087688596570112,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6917087687715774464", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "m5BXqgt7FIwVRUNzxfRJ4Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6917087688596570112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGjpqUbwGqUQA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGjpqUbwGqUQA", + "artifacts": [ + { + "width": 1342, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1649162215795?e=1679529600&v=beta&t=jp4FuH5o1xTN9ihPV5oz5YZUBytFH9O6JaL8cIxUL0Q", + "expiresAt": 1679529600000, + "height": 944 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1649162217027?e=1679529600&v=beta&t=z5mR3jQ5Bg7CuKUt8CbzRgvHvLgGWHo2AUqSGiHVi5I", + "expiresAt": 1679529600000, + "height": 14 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1649162217027?e=1679529600&v=beta&t=oStYYrORAFzT9sCEfMwqt9Hhfe9v5anD_Pin1pJJ1CI", + "expiresAt": 1679529600000, + "height": 900 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1649162217027?e=1679529600&v=beta&t=LPlD6b_1_Exfq512-KFSHtrgVzdfL2f7S0Ef1_6KjVE", + "expiresAt": 1679529600000, + "height": 338 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1649162217027?e=1679529600&v=beta&t=yPtcs8W6aQlJphfYxprF-72nrF1tB7Ntil3fGOkA0mE", + "expiresAt": 1679529600000, + "height": 113 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1649162217027?e=1679529600&v=beta&t=OFaqlJgY7uimHU0RabshNYLSD-vtnnNB8L-dCfisPKk", + "expiresAt": 1679529600000, + "height": 563 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGjpqUbwGqUQA/feedshare-shrink_" + }, + "displayAspectRatio": 0.7034277198211625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, application" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6917087687715774464,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le GIEC - IPCC en anglais - vient de publier le 3\u00e8 volet de son 6\u00e8 rapport d'\u00e9valuation (ca fait un peu s\u00e9rie \u00e0 rebondissements :) : https://lnkd.in/ee43XibU\n\nRappelons que les 3 \"volets\" d'un rapport d'\u00e9valuation concernent le fonctionnement du syst\u00e8me climatique sur le plan physique et sa modification sous l'influence des activit\u00e9s humaines (groupe 1), les impacts de cette modification sur les \u00e9cosyst\u00e8mes et les soci\u00e9t\u00e9s humaines (groupe 2), et enfin les moyens d'action (groupe 3).\n\nLe GIEC a une particularit\u00e9 : il se doit d'\u00eatre \"policy relevant\" (donc fournir des \u00e9l\u00e9ments permettant d'\u00e9clairer la prise de d\u00e9cision) mais pas \"policy prescriptive\" (il n'a donc pas \u00e0 recommander des politiques publiques, contrairement \u00e0 ce que sugg\u00e8rent nombre de commentaires - erron\u00e9s - d\u00e9j\u00e0 lus dans la presse). \n\nCette partie de son mandat est tr\u00e8s facile \u00e0 respecter pour le groupe 1 (la physique est r\u00e9gie par des lois qui ne d\u00e9pendent pas de nos valeurs morales ou conventions), assez facile pour le groupe 2 (les impacts d\u00e9pendent peu de nos valeurs morales ou conventions, m\u00eame si dans les mesures d'adaptation on va trouver des conventions ou pr\u00e9f\u00e9rences qui interviennent), mais... presque impossible pour une large partie de ce qui concerne le groupe 3.\n\nEn effet, c'est dans ce groupe que l'on trouve l'apport de l'\u00e9conomie \u00e0 la possible mani\u00e8re de r\u00e9soudre le probl\u00e8me. Or, parler d'\u00e9conomie, c'est avoir par d\u00e9finition choisi une convention qui tient les ressources pour sans valeur (rappelons que les prix n'int\u00e8grent pas, par d\u00e9finition, le \"cout de la nature\" : https://lnkd.in/gPsGK-F ). \n\nEclairer un choix sur la pr\u00e9servation d'un actif naturel avec des indicateurs qui tiennent la valeur de cet actif pour nul est d\u00e9j\u00e0 un pari os\u00e9. Mais, en plus, il n'existe pas de prix sans march\u00e9. Parler syst\u00e9matiquement prix est donc ilmplicitement supposer que l'\u00e9conomie de march\u00e9 g\u00e9n\u00e9ralis\u00e9e est compatible avec le \"sauvetage du climat\", alors que la norme et la r\u00e9glementation - qui ne cr\u00e9ent pas de prix explicites - sont d'autres moyens d'orienter nos choix. C'est tr\u00e8s proche de la prescription que de ne parler que des instruments de march\u00e9... \n\nLa raison \u00e0 cela ? Les mod\u00e8les utilis\u00e9s par les \u00e9conomistes ne savent pas bien - voire pas du tout - explorer un avenir uniquement modifi\u00e9 par des r\u00e8glements. Mais qui comprendra que de ne pas parler des r\u00e8glements vient d'une limite sur les outils des \u00e9conomistes universitaires et non d'une impossibilit\u00e9 de s'en servir dans la vraie vie ?\n\nAutre exemple : tous les sc\u00e9narios d'\u00e9mission limitant fortement le r\u00e9chauffement comportent un PIB mondial qui croit d'ici \u00e0 2100, tout simplement parce que... le PIB a \u00e9t\u00e9 postul\u00e9 croissant au d\u00e9part. Qui comprendra que c'est une hypoth\u00e8se non d\u00e9montr\u00e9e et non une conclusion ?\n\nCe nouveau rapport demande donc beaucoup de recul pour sa lecture sur la partie \"solutions\". Sinon gare aux d\u00e9sillusions..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6917087687715774464,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6917087688596570112,urn:li:activity:6917087688596570112,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 42, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6917087688596570112,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6917087688596570112,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6917087688596570112", + "threadId": "activity:6917087688596570112", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6917087688596570112", + "urn": "urn:li:activity:6917087688596570112", + "numComments": 151, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6917087688596570112", + "reactionTypeCounts": [ + { + "count": 1642, + "reactionType": "LIKE" + }, + { + "count": 195, + "reactionType": "INTEREST" + }, + { + "count": 119, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6917087688596570112", + "numLikes": 2007, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6917087688596570112", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2007, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6916641790192185344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6916641790192185344", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6916641790192185344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6916641790192185344)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pr%C3%A9sidentielle-2022-le-climat-grand-oubli%C3%A9-activity-6916641790192185344-nQUp?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6916641789458194432", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6916641790192185344", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6916641790192185344,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6916641790192185344,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6916641789458194432", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "p3pD1z7slY8yqjec/g/VhQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6916641790192185344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8138767512437860088", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676110445147?e=1677240000&v=beta&t=n_f2lr10YYlhvT6Re2qkBqtvnD0WPK_RGbuDdDa-iXQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676110445147?e=1677240000&v=beta&t=Gclx24DHhLenXppJLm0dnVg7C61MYtopUT7eIE_gN2Y", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676110445147?e=1677240000&v=beta&t=vgAXDniCOnZ1SKAGJ8jXcjuUqG6N3d0K0iRbJwCNpuQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676110445147?e=1677240000&v=beta&t=u-DHwDiSbknXva6G345o35QCr5YbGi1aGSTb5NNqrg0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEhcxkhWO0mMg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8138767512437860088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8138767512437860088)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pr\u00e9sidentielle 2022 : le climat, grand oubli\u00e9 de la campagne by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900140491-presidentielle-2022-le-climat-grand-oublie-de-la-campagne" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pr\u00e9sidentielle 2022 : le climat, grand oubli\u00e9 de la campagne" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6916641789458194432,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A part rousp\u00e9ter gentiment (un exercice usuel dans notre pays d'ex-gaulois), je ne suis pas sur que d'avoir rappel\u00e9 que l'absence de l'environnement de la campagne pr\u00e9sidentielle aura servi \u00e0 quelque chose, mais enfin c'est fait.\n\nManifestement, dire encore et toujours que nous sommes plong\u00e9s dans l'environnement, et que l'\u00e9tat de ce dernier conditionne par construction tout plan pour l'avenir prenant place dans d'autres domaines (notre \u00e9conomie, notre syst\u00e8me social, notre libert\u00e9 de d\u00e9placement, notre sant\u00e9, etc), produit un effet limit\u00e9 sur les propositions politiques, qui au mieux tentent de \"cocher les cases\" dans ce domaine l\u00e0 (https://lnkd.in/eu-5pgqD et https://lnkd.in/ed9fQTYh ), mais sans n\u00e9cessairement faire le lien avec le reste.\n\nCela continue \u00e0 ne pas chagriner les candidat(e)s plus que \u00e7a de marier croissance avec baisse des \u00e9missions de CO2 (alors que la charge de la preuve en pareil cas est de leur c\u00f4t\u00e9 ; voir par exemple https://lnkd.in/dDCe4YAm ou https://lnkd.in/gAthJhJ ), ou encore de planifier l'avenir pour un monde tranquille et sans cahots alors que le \"stress sur les ressources physiques\" va nous demander de piloter notre destin dans un monde volatil et chahut\u00e9.\n\nLa question qui se pose en pareil cas est de savoir qui sera a priori le ou la mieux plac\u00e9(e) pour tenir compte au plus t\u00f4t de l'in\u00e9luctable ou de l'\u00e9vident, n\u00e9cessairement en violation, alors, d'une partie des promesses faites. Et je vous avoue que m\u00eame moi n'ai pas de r\u00e9ponse \u00e9vidente... alors qu'il faut voter !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6916641789458194432,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6916641790192185344,urn:li:activity:6916641790192185344,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 86, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6916641790192185344,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6916641790192185344,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6916641790192185344", + "threadId": "activity:6916641790192185344", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6916641790192185344", + "urn": "urn:li:activity:6916641790192185344", + "numComments": 197, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6916641790192185344", + "reactionTypeCounts": [ + { + "count": 1481, + "reactionType": "LIKE" + }, + { + "count": 82, + "reactionType": "MAYBE" + }, + { + "count": 60, + "reactionType": "INTEREST" + }, + { + "count": 35, + "reactionType": "APPRECIATION" + }, + { + "count": 27, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6916641790192185344", + "numLikes": 1693, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6916641790192185344", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1693, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6916411189610614784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6916411189610614784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6916411189610614784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6916411189610614784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-compagnies-a%C3%A9riennes-europ%C3%A9ennes-tablent-activity-6916411189610614784-gP-a?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6916411188964696064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6916411189610614784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6916411189610614784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6916411189610614784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6916411188964696064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "9a/I7JFvBv0RnW+c1iuDNA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6916411189610614784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8874100787319947723", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676077482444?e=1677240000&v=beta&t=wvl-Th4zU5jmAe9n2QA1cpPqEV9RUxHodNepacDiDSI", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676077482444?e=1677240000&v=beta&t=pwtPf2rXyEnzGkfiWffJuvfIrIpOMaCG7HSDhOc4VlE", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676077482445?e=1677240000&v=beta&t=dAEgExnJV1IIxjkRmqEaJnEezDUTjvtIurxyFr9YqvY", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676077482445?e=1677240000&v=beta&t=qOkBbegRUqwjNxuEnfoTxlJjWd5-n_qzTzkC-e0RNTo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFpg1dK4Kr88A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8874100787319947723)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8874100787319947723)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les compagnies a\u00e9riennes europ\u00e9ennes tablent sur un \u00e9t\u00e9 presque normal by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/tourisme-transport/les-compagnies-aeriennes-europeennes-tablent-sur-un-ete-presque-normal-1397606" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les compagnies a\u00e9riennes europ\u00e9ennes tablent sur un \u00e9t\u00e9 presque normal" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6916411188964696064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'\u00e9t\u00e9 devrait \u00eatre \"normal\" pour l'a\u00e9rien en Europe, titrent Les Echos.\n\nQuestion : qu'est-ce qu'une situation \"normale\" pour ce secteur, qui \u00e9met - selon la mani\u00e8re de compter - autant que la marine marchande, voire autant que les camions dans le monde, et qui utilise presque 10% du p\u00e9trole mondial, pour des usages de loisirs \u00e0 75%, et alors que les \u00e9missions plan\u00e9taires doivent baisser de 5% par an pour que la limite des 2\u00b0C en 2100 soit tenue ?\n\nAu regard du climat le trafic pr\u00e9-covid ne peut pas \u00eatre \"normal\" : dans son rapport \"Pouvoir voler en 2050\" (https://lnkd.in/d3h_4QA ) The Shift Project indiquait que, en ne faisant pas de pari intenable sur la technologie, le trafic devait baisser de 1% par an d\u00e8s maintenant pour que l'aviation soit en ligne avec l'accord de Paris.\n\nAu regard du p\u00e9trole le trafic actuel ne peut pas \u00eatre normal : les 16 premiers producteurs de p\u00e9trole dans le monde hors Br\u00e9sil et Canada devraient voir leur production baisser de 50% d'ici \u00e0 2050 (https://lnkd.in/dwPcgve ). Au titre de quoi l'avion - r\u00e9serv\u00e9 \u00e0 du loisir pour l'essentiel - devrait-il \u00eatre prioritaire sur les camions et bateaux (qui acheminent notre nourriture, nos v\u00eatements, nos meubles, notre \u00e9lectrom\u00e9nager, nos minerais et m\u00e9taux, nos mat\u00e9riaux de construction, notre bois, etc) ou m\u00eame sur les voitures, dont les 2/3 du kilom\u00e9trage concernent des d\u00e9placements du quotidien ? \n\nSi leur part dans le p\u00e9trole n'a pas de raison d'augmenter, alors le p\u00e9trole disponible pour les avions devrait en gros \u00eatre divis\u00e9 par 2 dans les 30 ans, m\u00eame si le climat n'est pas un sujet.\n\nAu vu de ce contexte, reposons nous la question : un trafic \"normal\" ne devrait-il pas \u00eatre, en fait, un trafic d\u00e9croissant ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6916411188964696064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6916411189610614784,urn:li:activity:6916411189610614784,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 97, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6916411189610614784,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6916411189610614784,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6916411189610614784", + "threadId": "activity:6916411189610614784", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6916411189610614784", + "urn": "urn:li:activity:6916411189610614784", + "numComments": 262, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6916411189610614784", + "reactionTypeCounts": [ + { + "count": 2922, + "reactionType": "LIKE" + }, + { + "count": 224, + "reactionType": "INTEREST" + }, + { + "count": 208, + "reactionType": "MAYBE" + }, + { + "count": 96, + "reactionType": "PRAISE" + }, + { + "count": 42, + "reactionType": "APPRECIATION" + }, + { + "count": 20, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6916411189610614784", + "numLikes": 3512, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6916411189610614784", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3512, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6915938002166816768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6915938002166816768", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6915938002166816768)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6915938002166816768)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rencontre-d%C3%A9bat-entre-jean-marc-jancovici-activity-6915938002166816768-5V1j?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6915938001583788032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6915938002166816768", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6915938002166816768,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6915938002166816768,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6915938001583788032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "XLSjLA2V3isWmlAgPkYnUA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6915938002166816768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:9107409899682878431", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1675504566719?e=1677240000&v=beta&t=o8Iq1GZIUfT5BSbNJEuPT6qqvml8-L_ddZ1wKK1KhGI", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675504566719?e=1677240000&v=beta&t=2vlXqmarLrf_Tjuopd6ISEJp19mu3-uENS4YYa-jmfc", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675504566719?e=1677240000&v=beta&t=hUGm0-dJZg4wKvDVxULJqfcBV5ysVyosfYL9O4chj6s", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675504566719?e=1677240000&v=beta&t=RB2qYaDV_v6Jl50LWc7N7xC7KWCp7Cgl76zl7cBRwRU", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFZrsnm9avWdA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9107409899682878431)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9107409899682878431)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Rencontre d\u00e9bat entre Jean-Marc Jancovici et les \u00e9tudiants de l'Institut Agro Rennes-Angers - LIVE \ud83d\udd34 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=Tl8CuFr2sag" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "1re \u00e9dition du cycle de rencontres d\u00e9bats \"TransFORMER : \"Int\u00e9grer les enjeux environnementaux pour agir et transformer la soci\u00e9t\u00e9\" d\u00e9di\u00e9e aux enjeux climat, \u00e9nergie et aux leviers de transformation collective. Grands t\u00e9moins, acteurs majeurs de ces..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Rencontre d\u00e9bat entre Jean-Marc Jancovici et les \u00e9tudiants de l'Institut Agro Rennes-Angers - LIVE \ud83d\udd34" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6915938001583788032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Plan de transformation de l'\u00e9conomie fran\u00e7aise (PTEF) a \u00e9t\u00e9 mis \u00e0 la question au sens propre du terme par les \u00e9tudiant(e)s de l'Institut Agro Rennes-Angers, qui m'ont \"pass\u00e9 sur le gril\" sur divers chapitres de ce travail.\n\nPlut\u00f4t que de faire une conf\u00e9rence \"classique\" dont il existe d\u00e9j\u00e0 N versions enregistr\u00e9es sur Youtube (https://lnkd.in/egH_JQ6R ), j'ai propos\u00e9 \u00e0 mes interlocuteurs de faire la chose suivante : commencer par regarder une des vid\u00e9os en question, puis consacrer l'int\u00e9gralit\u00e9 du temps pass\u00e9 avec votre serviteur \u00e0 un \u00e9change autour des questions n\u00e9es du visionnage.\n\nL\u00e0, l'id\u00e9e a \u00e9t\u00e9 de structurer toutes les questions - pos\u00e9es par des \u00e9tudiantes (pas assez alors que l'agro est aux 2/3 f\u00e9minine...) et des \u00e9tudiants - autour des chapitres du PTEF. J'esp\u00e8re que l'exercice aura int\u00e9ress\u00e9 l'auditoire, en tous cas il aura au moins eu le m\u00e9rite de m'\u00e9viter de r\u00e9p\u00e9ter tout le temps la m\u00eame chose !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6915938001583788032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6915938002166816768,urn:li:activity:6915938002166816768,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 20, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6915938002166816768,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6915938002166816768,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6915938002166816768", + "threadId": "activity:6915938002166816768", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6915938002166816768", + "urn": "urn:li:activity:6915938002166816768", + "numComments": 57, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6915938002166816768", + "reactionTypeCounts": [ + { + "count": 569, + "reactionType": "LIKE" + }, + { + "count": 29, + "reactionType": "PRAISE" + }, + { + "count": 29, + "reactionType": "INTEREST" + }, + { + "count": 13, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6915938002166816768", + "numLikes": 653, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6915938002166816768", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 653, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6915711804690051072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6915711804690051072", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6915711804690051072)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6915711804690051072)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_m%C3%A0j-la-r%C3%A9ponse-demmanuel-macron-il-y-activity-6915711804690051072-aldU?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6915711803893116928", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6915711804690051072", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6915711804690051072,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6915711804690051072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6915711803893116928", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "Ls1Y4dw+G9ghtkrGKh7N9g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6915711804690051072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7817719640607892344", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675526432902?e=1677240000&v=beta&t=f0YYvsgBoiF-6y606c5w8mTz0-Vt5CRalb_ArhsESUY", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675526432902?e=1677240000&v=beta&t=Kp1XCVTCd7ffIcKr0lYANm-TvxL3SgaPrgiWIsOea8w", + "expiresAt": 1677240000000, + "height": 458 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675526432902?e=1677240000&v=beta&t=hG5P_au4VV1f3RkBtNmhm8aOWQMR2e305vi6SbTyhT0", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675526432902?e=1677240000&v=beta&t=_7Cf-lwfQFW-vbxY4mkQxCH5-D6EA_6ZiDVS1Fi-6L0", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE58-i00dSx8g/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7817719640607892344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7817719640607892344)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [M\u00e0J : la r\u00e9ponse d'Emmanuel Macron] Il y a du boulot : l\u2019analyse des propositions des candidats sur le climat par le Shift Project - The Shift Project by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/climat-energie-analyse-shift-presidentielles/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[M\u00e0J : la r\u00e9ponse d'Emmanuel Macron] Il y a du boulot : l\u2019analyse des propositions des candidats sur le climat par le Shift Project - The Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6915711803893116928,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 107, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "Paf2osfcQ7SQxf6IRblKhA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Ce n'est pas un poisson mais \u00e7a aurait pu l'\u00eatre : The Shift Project publie ce premier avril la lettre que Emmanuel Macron nous a adress\u00e9e en r\u00e9ponse \u00e0 l'invitation qui avait \u00e9t\u00e9 faite \u00e0 l'ensemble des candidat(e)s aux pr\u00e9sidentielles de nous d\u00e9crire en quelques pages la mani\u00e8re dont le/la candidat(e) envisageait de s'attaquer \u00e0 la d\u00e9carbonation du pays.\n\nSi nous sommes \u00e9videmment heureux que cette lettre vienne compl\u00e9ter celles des autres candidat(e)s qui nous avaient d\u00e9j\u00e0 r\u00e9pondu, elle nous est malheureusement parvenue hors d\u00e9lai. Nous avions en effet demand\u00e9 aux candidat(e)s de nous adresser leur envoi avant le 7 mars, afin d'avoir un peu de temps pour les analyser, avant de publier les r\u00e9sultats le 29 mars.\n\nNous avions \u00e9videmment int\u00e9gr\u00e9 la possibilit\u00e9 qu'un pr\u00e9sident d'un pays un peu chahut\u00e9 par les \u00e9v\u00e9nements ait un peu de retard par rapport \u00e0 la date que quasiment tou(te)s les autres candidat(e)s ayant r\u00e9pondu (soit tout le monde sauf Lassalle) ont respect\u00e9e.\n\nMais... une fois l'analyse publi\u00e9e, il ne nous \u00e9tait pour le coup plus possible de prendre une r\u00e9ponse suppl\u00e9mentaire. Nous avons donc simplement mis la lettre re\u00e7ue en ligne, mais nous n'en ferons pas l'analyse. Au vu de la m\u00e9thode employ\u00e9e pour les autres r\u00e9ponses, \u00e0 chacun(e) de se faire une id\u00e9e." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6915711803893116928,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6915711804690051072,urn:li:activity:6915711804690051072,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 14, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6915711804690051072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6915711804690051072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6915711804690051072", + "threadId": "activity:6915711804690051072", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6915711804690051072", + "urn": "urn:li:activity:6915711804690051072", + "numComments": 24, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6915711804690051072", + "reactionTypeCounts": [ + { + "count": 176, + "reactionType": "LIKE" + }, + { + "count": 27, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6915711804690051072", + "numLikes": 223, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6915711804690051072", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 223, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6914994625862631424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6914994625862631424", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6914994625862631424)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6914994625862631424)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-2021-lhiver-avait-%C3%A9t%C3%A9-doux-la-v%C3%A9g%C3%A9tation-activity-6914994625862631424-bgaB?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6914994625141207040", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6914994625862631424", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6914994625862631424,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6914994625862631424,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6914994625141207040", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "GMG/sgoEp/MjmWWSVM/QUg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6914994625862631424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQE_dOuUecIpPA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQE_dOuUecIpPA", + "artifacts": [ + { + "width": 1532, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1648663190606?e=1679529600&v=beta&t=H59duamxx0w07p_Hh2T1PkmRsTrCs8jqTNWv70gIr4w", + "expiresAt": 1679529600000, + "height": 832 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1648663191852?e=1679529600&v=beta&t=rVkqoSHLe58tzVA2R-W0T0ujpHGxCWDc6AgfGX7AneQ", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1648663191852?e=1679529600&v=beta&t=4JYV8X73vqoxd0I3Q5sIXsMCIIAF14MMZzEjs5XrXiA", + "expiresAt": 1679529600000, + "height": 695 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1648663191852?e=1679529600&v=beta&t=L7azv93TQs8RV0i7x074J2gt-SzflZFvvzKqAz9WoVo", + "expiresAt": 1679529600000, + "height": 261 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1648663191852?e=1679529600&v=beta&t=GyfxquO7AJlFDSz1gK9mjm5o5ifUOpgi5fhAYTF9Aj4", + "expiresAt": 1679529600000, + "height": 87 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1648663191852?e=1679529600&v=beta&t=kEpTRih4QS5Ao59PRRtb7H9KM-uUldnYTJ0nH66eYRI", + "expiresAt": 1679529600000, + "height": 434 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQE_dOuUecIpPA/feedshare-shrink_" + }, + "displayAspectRatio": 0.5430809399477807 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "map" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6914994625141207040,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 2021, l'hiver avait \u00e9t\u00e9 doux. La v\u00e9g\u00e9tation avait donc d\u00e9bourr\u00e9 t\u00f4t, et puis est arriv\u00e9e une \"goutte froide\" qui a conduit les temp\u00e9ratures \u00e0 devenir n\u00e9gatives quelques jours. R\u00e9sultat : des pertes de r\u00e9coltes dans de nombreuses cultures fruiti\u00e8res.\n\nBis repetita : apr\u00e8s un d\u00e9bourrage favoris\u00e9 par des temp\u00e9ratures douces (dignes de mai ces derniers jours), un \u00e9pisode froid est pr\u00e9vu pour la fin de la semaine, et la seule question est h\u00e9las de savoir quelle fraction des fruitiers (vigne comprise) va y perdre sa r\u00e9colte de l'ann\u00e9e : https://lnkd.in/eeCSwKFy\n\nAnn\u00e9e apr\u00e8s ann\u00e9e, le r\u00e9chauffement climatique fait partir la v\u00e9g\u00e9tation de plus en plus t\u00f4t. Qu'arrive un \u00e9pisode de gel qui liu n'a pas chang\u00e9 de date et voil\u00e0 une partie de la r\u00e9colte fruiti\u00e8re qui s'envole.\n\nParions que l'essentiel du d\u00e9bat sur les cons\u00e9quences portera sur l'indemnisation des arboriculteurs. Malheureusement les polices d'assurance ca ne se mange pas..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6914994625141207040,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6914994625862631424,urn:li:activity:6914994625862631424,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 76, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6914994625862631424,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6914994625862631424,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6914994625862631424", + "threadId": "activity:6914994625862631424", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6914994625862631424", + "urn": "urn:li:activity:6914994625862631424", + "numComments": 139, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6914994625862631424", + "reactionTypeCounts": [ + { + "count": 3124, + "reactionType": "LIKE" + }, + { + "count": 321, + "reactionType": "INTEREST" + }, + { + "count": 256, + "reactionType": "MAYBE" + }, + { + "count": 64, + "reactionType": "APPRECIATION" + }, + { + "count": 37, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6914994625862631424", + "numLikes": 3810, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6914994625862631424", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3810, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6914593029706129410,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6914593029706129410", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6914593029706129410)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6914593029706129410)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_m%C3%A0j-la-r%C3%A9ponse-demmanuel-macron-il-y-activity-6914593029706129410-HFvN?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6914593028875649024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6914593029706129410", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6914593029706129410,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6914593029706129410,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6914593028875649024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "h8QuqhIxtQHedFB8fTtBIA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6914593029706129410,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7817719640607892344", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675526432902?e=1677240000&v=beta&t=f0YYvsgBoiF-6y606c5w8mTz0-Vt5CRalb_ArhsESUY", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675526432902?e=1677240000&v=beta&t=Kp1XCVTCd7ffIcKr0lYANm-TvxL3SgaPrgiWIsOea8w", + "expiresAt": 1677240000000, + "height": 458 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675526432902?e=1677240000&v=beta&t=hG5P_au4VV1f3RkBtNmhm8aOWQMR2e305vi6SbTyhT0", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675526432902?e=1677240000&v=beta&t=_7Cf-lwfQFW-vbxY4mkQxCH5-D6EA_6ZiDVS1Fi-6L0", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE58-i00dSx8g/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7817719640607892344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7817719640607892344)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [M\u00e0J : la r\u00e9ponse d'Emmanuel Macron] Il y a du boulot : l\u2019analyse des propositions des candidats sur le climat par le Shift Project - The Shift Project by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/climat-energie-analyse-shift-presidentielles/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[M\u00e0J : la r\u00e9ponse d'Emmanuel Macron] Il y a du boulot : l\u2019analyse des propositions des candidats sur le climat par le Shift Project - The Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6914593028875649024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 49, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "En0xEeFFRMO4mMN+2Ii27g==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 80, + "length": 17, + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "spRm1QRmQqGqqwnMWvVRow==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 415, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "Paf2osfcQ7SQxf6IRblKhA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 434, + "length": 13, + "miniProfile": { + "firstName": "Jean", + "lastName": "Lassalle", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACCd-cEBeMEoy8vHkkEcrSZEafKRBwv0NVQ", + "occupation": "Pr\u00e9sident de R\u00e9sistons !", + "objectUrn": "urn:li:member:547224001", + "entityUrn": "urn:li:fs_miniProfile:ACoAACCd-cEBeMEoy8vHkkEcrSZEafKRBwv0NVQ", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1517049483710?e=1681948800&v=beta&t=HpaIBTLb6DbbibzBpX16RseIHvsfgkja8ZHYMw0sIUs", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1517049483710?e=1681948800&v=beta&t=mvZpZYVRvJN94ntypPZ7OhCjPoCREeUipzOP5QTFbHE", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQEGQ9uwnwL47w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "lassallejean", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517049483196?e=1681948800&v=beta&t=BfQVQ7iYjKh9X4QHf3DIp_rVww183a9jJwEEZs7W9Ug", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517049483196?e=1681948800&v=beta&t=xEan53DgRTlC9K2Z7rs-TShMRxGzW1d2JwSHUd-6bB8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517049483196?e=1681948800&v=beta&t=VMi_jQsC-ATSld9dKrFh9_xrFT-mI2LzFGrGAY-O_lc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517049483196?e=1681948800&v=beta&t=Ep-X3s0h4_p465d-6tp9X2Ap5CfhTgM5licgOeYBb18", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQE0tIAmXwNxJQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "DEqVWNe7QMS4+QKm14s4QQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Apr\u00e8s l'analyse des programmes pr\u00e9sidentiels par Les Shifters, c'est au tour de The Shift Project de vous proposer un exercice voisin mais convergeant : nous avons demand\u00e9 \u00e0 tou(te)s les candidat(e)s aux pr\u00e9sidentielles de nous envoyer une lettre pour d\u00e9crire comment ils comptent concr\u00e8tement g\u00e9rer la sortie des \u00e9nergies fossiles au cours du prochain quinquennat.\n\nTou(te)s les candidat(e)s nous ont r\u00e9pondu sauf Emmanuel Macron et Jean Lassalle\n\nCes lettres ont \u00e9t\u00e9 analys\u00e9es - sur la base de leur seul contenu, et donc sans se r\u00e9f\u00e9rer ni au programme ni \u00e0 des d\u00e9clarations faites dans d'autres enceintes - par une \u00e9quipe du Shift Project, et les r\u00e9sultats sont mis en ligne depuis ce matin sur le site internet de l'association. Nous avons publi\u00e9 un commentaire g\u00e9n\u00e9ral sur les contributions ainsi qu'un avis d\u00e9taill\u00e9 par lettre.\n\nLes deux analyses convergent largement mais r\u00e9servent quand m\u00eame quelques surprises. En particulier, certaines lettres sont plus d\u00e9taill\u00e9es que les programmes, alors que d'autres ne mettent pas en avant les propositions contenues dans les programmes.\n\nMais l'avis g\u00e9n\u00e9ral qui se d\u00e9gage est que nous restons encore assez loin :\n- d'une bonne compr\u00e9hension du probl\u00e8me \u00e0 traiter : globalement nous allons devoir g\u00e9rer plus de cons\u00e9quences adverses avec moins de moyens mat\u00e9riels, or nombre de candidats proposent en pratique des solutions du monde infini pour r\u00e9gler des probl\u00e8mes du monde fini, \n- d'une int\u00e9gration d'un monde tr\u00e8s changeant dans les plans pour l'avenir ; en particulier \"l'adaptation\" est tr\u00e8s peu pr\u00e9sente dans les r\u00e9ponses\n- d'une strat\u00e9gie de r\u00e9ponse quantifi\u00e9e et \u00e9ch\u00e9anc\u00e9e int\u00e9grant des al\u00e9as qui ne manqueront pas de survenir.\n\nIl ne reste qu'une grosse semaine jusqu'au premier tour. La probabilit\u00e9 que les copies s'am\u00e9liorent significativement d'ici l\u00e0 est donc tr\u00e8s faible. Une des questions pos\u00e9es est alors de savoir qui, parmi les candidat(e)s, sera \u00e0 m\u00eame de se poser les bonnes questions une fois \u00e9lu(e), si ces questions n'ont pas \u00e9t\u00e9 pos\u00e9es avant." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6914593028875649024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6914593029706129410,urn:li:activity:6914593029706129410,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 56, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6914593029706129410,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6914593029706129410,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6914593029706129410", + "threadId": "activity:6914593029706129410", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6914593029706129410", + "urn": "urn:li:activity:6914593029706129410", + "numComments": 68, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6914593029706129410", + "reactionTypeCounts": [ + { + "count": 1143, + "reactionType": "LIKE" + }, + { + "count": 130, + "reactionType": "MAYBE" + }, + { + "count": 125, + "reactionType": "INTEREST" + }, + { + "count": 38, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6914593029706129410", + "numLikes": 1450, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6914593029706129410", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1450, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6914458316593098752,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6914458316593098752", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6914458316593098752)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6914458316593098752)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_exclusif-crise-climatique-on-a-%C3%A9pluch%C3%A9-activity-6914458316593098752-XAcs?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6914458314923782144", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6914458316593098752", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6914458316593098752,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6914458316593098752,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6914458314923782144", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "4ulHl0j0RqOxpJuILZ0jbA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6914458316593098752,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9190690509065413164", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676223103472?e=1677240000&v=beta&t=7DFpoFrBIJVsMULPebtjD05hrCkjTJ00CO4S3B-Vi3E", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676223103472?e=1677240000&v=beta&t=fNQ8qmUC80JN9dduVpFXTC2IJ0wROXaqdRshBrkenfM", + "expiresAt": 1677240000000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676223103472?e=1677240000&v=beta&t=uGnTcFEjx7k0mrh1tzjtrJsYopS6E3r2OQPNXpoYEj8", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676223103472?e=1677240000&v=beta&t=cB3owEF62cYMEdVrAmzgxbRZEkQ6Z1UXlPftBm_0Qvc", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQER1gtzi8Q34w/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "En collaboration avec l'association Les Shifters, franceinfo vous propose une analyse d\u00e9taill\u00e9e des mesures propos\u00e9es par les pr\u00e9tendants \u00e0 l'Elys\u00e9e face au d\u00e9fi cliimatique." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9190690509065413164)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9190690509065413164)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "francetvinfo.fr \u2022 9 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EXCLUSIF. Crise climatique : on a \u00e9pluch\u00e9 les programmes des candidats \u00e0 la pr\u00e9sidentielle pour voir s'ils respectent l'accord de Paris by francetvinfo.fr", + "actionTarget": "https://www.francetvinfo.fr/elections/programmes-election-presidentielle-2022/programmes-climat/exclusif-crise-climatique-on-a-epluche-les-programmes-des-candidats-a-la-presidentielle-pour-voir-s-ils-respectent-l-accord-de-paris_5033276.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EXCLUSIF. Crise climatique : on a \u00e9pluch\u00e9 les programmes des candidats \u00e0 la pr\u00e9sidentielle pour voir s'ils respectent l'accord de Paris" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6914458314923782144,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 55, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "sowch5CWTQmgK5bkvw5jig==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Plus de 200 pages d'analyses : c'est ce qu'ont r\u00e9alis\u00e9 Les Shifters, l'association des personnes \"cousine\" du Shift Project, pour \u00e9valuer l'angle climat des programmes des candidat(e)s aux pr\u00e9sidentielles.\n\nPour cela, les programmes publi\u00e9s ont \u00e9t\u00e9 confront\u00e9s \u00e0 la strat\u00e9gie nationale bas carbone, et, pour un certain nombre de secteurs (transports, agriculture, b\u00e2timent, for\u00eat, industrie, \u00e9nergie, d\u00e9chets) ou d'axes transverses (notamment formation/reconversion), les Shifters ont regard\u00e9 les mesures propos\u00e9es.\n\nOn peut ainsi voir qui affiche une intention sans mesure pr\u00e9cise, qui propose une mesure mais sans quantification, qui propose une mesure quantifi\u00e9e et calend\u00e9e (l\u00e0 ca devient une exception plus que la r\u00e8gle), qui compte dans quelles proportions sur la technologie et la sobri\u00e9t\u00e9, qui propose de proc\u00e9der par obligation et qui par incitation, etc.\n\nA ce stade, ce qui n'a pas \u00e9t\u00e9 fait de mani\u00e8re syst\u00e9matique a \u00e9t\u00e9 de jauger de la compatibilit\u00e9 des mesures propos\u00e9es avec le reste des promesses du m\u00eame ou de la m\u00eame candidat(e). Parfois, une contradiction \"\u00e9vidente\" a n\u00e9anmoins \u00e9t\u00e9 relev\u00e9e. Par exemple le RN affiche \u00e0 la fois l'intention de d\u00e9carboner les transports et une proposition de baisse de la fiscalit\u00e9 des carburants. En pareil cas il est fait remarquer que ces deux mesures sont antagonistes.\n\nGlobalement, aucun des programmes n'est totalement compatible avec le probl\u00e8me pos\u00e9. Aucun ne prend compl\u00e8tement acte du fait que nous allons devoir g\u00e9rer plus de probl\u00e8mes avec moins de moyens. Aucun ne part du principe que nous allons devoir g\u00e9rer un monde de plus en plus volatil (l'enchainement baisse de l'\u00e9nergie -> baisse de la production -> baisse de nos moyens mat\u00e9riels d'action est tr\u00e8s peu pris en compte par exemple).\n\nSouvent les orientations restent au stade des d\u00e9clarations mais il n'y a pas de plan pr\u00e9cis. Par exemple \"r\u00e9industrialiser la France\", avanc\u00e9 par de nombreux candidats, ne pr\u00e9cise pas souvent s'il s'agit des engrais ou des machines \u00e0 laver, des v\u00eatements ou des meubles, de la m\u00e9tallurgie ou des scanners. Etc.\n\nBref, si la n\u00e9cessit\u00e9 d'une d\u00e9carbonation commence \u00e0 \u00eatre largement partag\u00e9e, les implications \u00e9conomiques de la d\u00e9crue fossile sont beaucoup moins bien comprises, et la vision d'ensemble - et surtout l'aspect op\u00e9rationnel - reste globalement en de\u00e7\u00e0 de qui serait pertinent pour avancer \u00e0 la bonne vitesse.\n\nIl n'en reste pas moins possible de classer les candidat(e)s au regard de ce crit\u00e8re, en regardant combien de cases coche chacun(e), ce qui est quand m\u00eame une indication de la quantit\u00e9 de travail qui a pris place au sein de chaque formation. Comme cet exercice ne pond\u00e8re pas les cases coch\u00e9es (chacun(e) d\u00e9cidera si c'est plus important de cocher la case \u00e9nergie ou transports que agriculture ou logement), nous n'en tirons \u00e9videmment pas de consignes de vote. Mais nous esp\u00e9rons que cet exercice sera utile pour \u00e9clairer les choix et ce qu'il reste de d\u00e9bat d'ici au premier tour." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6914458314923782144,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6914458316593098752,urn:li:activity:6914458316593098752,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 186, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6914458316593098752,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6914458316593098752,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6914458316593098752", + "threadId": "activity:6914458316593098752", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6914458316593098752", + "urn": "urn:li:activity:6914458316593098752", + "numComments": 317, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6914458316593098752", + "reactionTypeCounts": [ + { + "count": 3815, + "reactionType": "LIKE" + }, + { + "count": 547, + "reactionType": "INTEREST" + }, + { + "count": 399, + "reactionType": "MAYBE" + }, + { + "count": 199, + "reactionType": "PRAISE" + }, + { + "count": 48, + "reactionType": "EMPATHY" + }, + { + "count": 30, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6914458316593098752", + "numLikes": 5038, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6914458316593098752", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5038, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6914216625474838528,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6914216625474838528", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6914216625474838528)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6914216625474838528)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-cumul-les-pr%C3%A9cipitations-dautomne-et-activity-6914216625474838528-ERQD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6914216624635965440", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6914216625474838528", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6914216625474838528,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6914216625474838528,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6914216624635965440", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "ma8yjzamPl93BLPijEP3/Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6914216625474838528,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQFX_heP467A9A", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQFX_heP467A9A", + "artifacts": [ + { + "width": 1304, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1648477701036?e=1679529600&v=beta&t=IQhC_Zi3CBRVIHR8iRibYwKSMiyGjeU6RUa_kpmDe7M", + "expiresAt": 1679529600000, + "height": 1246 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1648477702641?e=1679529600&v=beta&t=A8jvbMehiYd-J5AlR2rXWTwHfc_trCpMiz64-RQHXNI", + "expiresAt": 1679529600000, + "height": 19 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1648477702641?e=1679529600&v=beta&t=DMSVL24ntCHcEWYYQ6_InL8HgqZtPXoELc8Ays1MZAo", + "expiresAt": 1679529600000, + "height": 1223 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1648477702641?e=1679529600&v=beta&t=gUn0mJUUgwYEYPLLWcGl1CK_vIw3AH49xFvf8wnJJo4", + "expiresAt": 1679529600000, + "height": 459 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1648477702641?e=1679529600&v=beta&t=J4vmj6QtIglLU8qr8s1NfeymB2VmFTSRxDtlvlWHHb8", + "expiresAt": 1679529600000, + "height": 153 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1648477702641?e=1679529600&v=beta&t=7JI4DfRcuR163kNmWq4d96VwInMCasrAXKms8VWuRjc", + "expiresAt": 1679529600000, + "height": 764 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQFX_heP467A9A/feedshare-shrink_" + }, + "displayAspectRatio": 0.9555214723926381 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6914216624635965440,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En cumul, les pr\u00e9cipitations d'automne et d'hiver ont \u00e9t\u00e9 proches de la normale sur une large partie du pays. Voici donc qui devrait nous rassurer. Sauf que... ces pr\u00e9cipitations n'ont pas n\u00e9cessairement \u00e9t\u00e9 \"efficaces\" : quand ce sont des pluies torrentielles, elles contribuent de mani\u00e8re importante aux cumuls mais ne contribuent pas plus \u00e0 la recharge du sol que des pluies qui auraient \u00e9t\u00e9 plus modestes.\n\nDe ce fait, ces pr\u00e9cipitations \"efficaces\" sont elles en d\u00e9ficit sur l'essentiel du pays par rapport \u00e0 une saison automne-hiver normale (carte ci-dessous). Ceci allant avec cela, d'une part les nappes sont basses dans une large partie du pays (https://lnkd.in/eEyMdtMx ), et d'autre part les sols sont partout en France plus secs que la normale (https://lnkd.in/e5tNK-sR ).\n\nDu coup on commence \u00e0 se faire quelques cheveux blancs pour l'agriculture : https://lnkd.in/exiYGSzS , alors m\u00eame que les \u00e9v\u00e9nements en Ukraine sont d\u00e9j\u00e0 \u00e0 la manoeuvre pour pousser les prix vers le haut et les quantit\u00e9s vers le bas.\n\nMais ce n'est pas grave : manger c'est juste 2% du PIB et les \u00e9cosyst\u00e8mes c'est gratuit !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6914216624635965440,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6914216625474838528,urn:li:activity:6914216625474838528,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 62, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6914216625474838528,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6914216625474838528,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6914216625474838528", + "threadId": "activity:6914216625474838528", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6914216625474838528", + "urn": "urn:li:activity:6914216625474838528", + "numComments": 100, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6914216625474838528", + "reactionTypeCounts": [ + { + "count": 1543, + "reactionType": "LIKE" + }, + { + "count": 268, + "reactionType": "INTEREST" + }, + { + "count": 238, + "reactionType": "MAYBE" + }, + { + "count": 24, + "reactionType": "APPRECIATION" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6914216625474838528", + "numLikes": 2096, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6914216625474838528", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2096, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6914106564895248384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6914106564895248384", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6914106564895248384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6914106564895248384)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_invitation-voyager-bas-carbone-le-nouveau-activity-6914106564895248384-sAgS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6914106564345802752", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6914106564895248384", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6914106564895248384,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6914106564895248384,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6914106564345802752", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "HVKd6y7LgY9RlXu3lnqWlQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6914106564895248384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9130583236965641322", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675975765514?e=1677240000&v=beta&t=6PG2INYN-hjCE8OoCVMJWgmpxqd8wYFwqRA_8izG5P4", + "expiresAt": 1677240000000, + "height": 504 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675975765514?e=1677240000&v=beta&t=MwBsTgZTjQ2tL47hY8Jif04TdWWxp2pLu7zZuCEmN1k", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675975765514?e=1677240000&v=beta&t=SFPnpuoLgpVFondpb34-l7noORlYkAmtGOftgr7spUY", + "expiresAt": 1677240000000, + "height": 100 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675975765514?e=1677240000&v=beta&t=RiX9uBISDt3FducOkbrrq4neW0846KYKtzIRoeNIgps", + "expiresAt": 1677240000000, + "height": 302 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFD0ayUn792qA/articleshare-shrink_" + }, + "displayAspectRatio": 0.63 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9130583236965641322)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9130583236965641322)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [Invitation] Voyager bas carbone, le nouveau rapport du Shift sur la mobilit\u00e9 longue distance - 7 avril \u00e0 18h - The Shift Project by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-voyager-bas-carbone-le-nouveau-rapport-du-shift-sur-la-mobilite-longue-distance-7-avril-a-18h/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[Invitation] Voyager bas carbone, le nouveau rapport du Shift sur la mobilit\u00e9 longue distance - 7 avril \u00e0 18h - The Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6914106564345802752,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ca sera juste avant le premier tour, et juste apr\u00e8s le diesel \u00e0 2 euros le litre : Jeudi 7 avril \u00e0 18h, The Shift Project effectuera la derni\u00e8re pr\u00e9sentation d\u00e9taill\u00e9e du dernier chapitre du Plan de transformation de l'\u00e9conomie fran\u00e7aise : \"Voyager bas carbone\".\n\nLes voyages \u00e0 plus de 80 km du domicile, qui sont par ailleurs essentiellement des d\u00e9placements de loisirs, repr\u00e9sentent en gros un tiers de la mobilit\u00e9 en voiture, voiture qui inversement est utilis\u00e9e pour 85% des distances parcourues par les fran\u00e7ais(es) pour ces d\u00e9placements longs.\n\nAvant la voiture (et l'avion), la mobilit\u00e9 longue distance des habitants de ce pays \u00e9tait bien plus r\u00e9duite. Comment continuer \u00e0 s'\u00e9loigner de son domicile dans un monde sans p\u00e9trole ? C'est autour de cette question que nous vous convions dans un peu plus d'une semaine.\n\nIl est clair que dans ce domaine la sobri\u00e9t\u00e9 signifiera pour partie l'inversion de ce que le p\u00e9trole nous a donn\u00e9 : plus loin, plus vite, moins cher. Exprim\u00e9 en minutes de temps de travail, le prix d'un billet d'avion a par exemple \u00e9t\u00e9 divis\u00e9 par un facteur 5 \u00e0 10 (selon les destinations) en quelques d\u00e9cennies.\n\nComment aborder ce d\u00e9fi, psychologique bien avant d'\u00eatre technique ? On en parle la semaine prochaine !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6914106564345802752,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6914106564895248384,urn:li:activity:6914106564895248384,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 74, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6914106564895248384,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6914106564895248384,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6914106564895248384", + "threadId": "activity:6914106564895248384", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6914106564895248384", + "urn": "urn:li:activity:6914106564895248384", + "numComments": 135, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6914106564895248384", + "reactionTypeCounts": [ + { + "count": 2586, + "reactionType": "LIKE" + }, + { + "count": 172, + "reactionType": "MAYBE" + }, + { + "count": 85, + "reactionType": "PRAISE" + }, + { + "count": 44, + "reactionType": "INTEREST" + }, + { + "count": 28, + "reactionType": "APPRECIATION" + }, + { + "count": 22, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6914106564895248384", + "numLikes": 2937, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6914106564895248384", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2937, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6913891175347191808,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6913891175347191808", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6913891175347191808)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6913891175347191808)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_p%C3%A9trole-pourquoi-il-faudrait-accepter-les-activity-6913891175347191808-7z2K?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6913891174822891520", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6913891175347191808", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6913891175347191808,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6913891175347191808,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6913891174822891520", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "3Xtni2oaLbgLDYOPvtWn3Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6913891175347191808,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7787302561713579176", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676537168072?e=1677240000&v=beta&t=u9r41r97hd5Fr0cwJVSzoynrq-IWagphpFJttlU-g8U", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676537168072?e=1677240000&v=beta&t=CujRvRAulKQMTZVAEzu4AdlSedJMqpcmmgUz3x0wPyQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676537168072?e=1677240000&v=beta&t=eHHW5BhCReFpoEbAJxJ-CzBLgAgbCP0MnbviHhyZ8Es", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676537168073?e=1677240000&v=beta&t=xjVOmpyImE4gpDnIl_afZEy99jETO_Jf3ntMhLmelP0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGq6yTRuLFLvA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7787302561713579176)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7787302561713579176)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: P\u00e9trole : pourquoi il faudrait accepter les hausses des prix par les taxes by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900138051-petrole-pourquoi-il-faudrait-accepter-les-hausses-des-prix-par-les-taxes" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "P\u00e9trole : pourquoi il faudrait accepter les hausses des prix par les taxes" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6913891174822891520,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La taxe carbone a mis une partie de nos concitoyens dans la rue, alors que la r\u00e9cente hausse du prix des carburants, qui nous a pourtant emmen\u00e9s \u00e0 des prix au litre bien sup\u00e9rieurs, est accept\u00e9e avec fatalisme.\n\nCe n'est pas le moindre des paradoxes que d'accepter plus facilement, comme je le rappelle dans cette chronique du Samedi matin sur RTL, une hausse qui envoie l'argent hors de France qu'une hausse qui laisse l'argent en France.\n\nEt, quand bien m\u00eame nous ne le voudrions pas - c'est le deuxi\u00e8me volet de mes 3 minutes r\u00e9glementaires :) - il va de toute fa\u00e7on falloir apprendre \u00e0 faire avec moins de p\u00e9trole : comme l'a expliqu\u00e9 The Shift Project au terme d'une analyse assez fouill\u00e9e confi\u00e9e \u00e0 des hommes de l'art sur base d'un inventaire de l'ensemble des gisements - exploit\u00e9s ou non - dans le monde (https://lnkd.in/dwPcgve ), la quantit\u00e9 de p\u00e9trole dont l'Europe va disposer va baisser \u00e0 l'avenir, parce que l'essentiel des pays producteurs dans le monde sont en d\u00e9clin ou y seront bient\u00f4t.\n\nComme ces pays r\u00e9serveront globalement une fraction croissante de leur production \u00e0 leur propre population, il est m\u00eame vraisemblable que les importations europ\u00e9ennes (couvrant 95% de notre consommation) baissent plus vite que la production des producteurs.\n\nCette approche reste totalement absente des programmes de campagne. Quand un souhait de baisse des hydrocarbures il y a, c'est uniquement au nom du climat qu'elle est propos\u00e9e. Peut-\u00eatre que nos concitoyens \u00e9couteraient d'une oreille encore plus attentive si on leur expliquait aussi ce qui se passe du c\u00f4t\u00e9 de la g\u00e9ologie ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6913891174822891520,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6913891175347191808,urn:li:activity:6913891175347191808,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 21, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6913891175347191808,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6913891175347191808,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6913891175347191808", + "threadId": "activity:6913891175347191808", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6913891175347191808", + "urn": "urn:li:activity:6913891175347191808", + "numComments": 49, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6913891175347191808", + "reactionTypeCounts": [ + { + "count": 857, + "reactionType": "LIKE" + }, + { + "count": 74, + "reactionType": "INTEREST" + }, + { + "count": 68, + "reactionType": "MAYBE" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6913891175347191808", + "numLikes": 1037, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6913891175347191808", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1037, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6913785817542868992,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6913785817542868992", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6913785817542868992)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6913785817542868992)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_forum-des-tp-2022-environnement-et-tp-activity-6913785817542868992-vdfg?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6913785816892751872", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6913785817542868992", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6913785817542868992,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6913785817542868992,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6913785816892751872", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "N16PKuM4txA5f9bIIvbODg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6913785817542868992,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7563528591297273951", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676496702406?e=1677240000&v=beta&t=Q5hZYgmVFOCC2Z7L_LPRBbkjopKzCQeLg1CN7Y8jbto", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676496702406?e=1677240000&v=beta&t=Ib31XcS8hxOBetWeO56qv98waWk6B8vsu-H4ALQxKu0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676496702406?e=1677240000&v=beta&t=a6KYHlSmFDhMp4sKihIxMQejvry1pU18v1w-6wrSG5Q", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676496702406?e=1677240000&v=beta&t=hJ4pmvAQV6zdIA9ueehzSwqpILiwvbIGKnlTDvBkKD8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHBDFVwo4Grfw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7563528591297273951)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7563528591297273951)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: FORUM DES TP 2022 - Environnement et TP : les perspectives on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=4QVQGD18RNc" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "FORUM DES TP 2022 - Environnement et TP : les perspectives Intervenants : Jean-Marc JANCOVICI, Fondateur et Pr\u00e9sident de \"The Shift Project\", Associ\u00e9 Fondateur de Carbone 4 Xavier NEUSCHWANDER, Pr\u00e9sident de la Commission Technique et Innovation de la..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "FORUM DES TP 2022 - Environnement et TP : les perspectives" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6913785816892751872,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans les infrastructures qui structurent le fonctionnement des pays en ce d\u00e9but de 21\u00e8 si\u00e8cle, il y a notamment les syst\u00e8mes \u00e9nerg\u00e9tiques. Les \u00e9v\u00e9nements survenant actuellement \u00e0 l'est de l'Europe montrent bien l'inertie associ\u00e9e \u00e0 leur \u00e9volution : quand on s'est cr\u00e9\u00e9 un r\u00e9seau de gaz pour alimenter des appareils de chauffage au gaz, de la production industrielle au gaz et de la production \u00e9lectrique au gaz, on ne change pas cela en une semaine.\n\nIl en va de m\u00eame avec les transports : quand on a structur\u00e9 les d\u00e9placements de personnes et de marchandises avec des routes (construites et entretenues avec du p\u00e9trole, puisque ce dernier fait \u00e0 la fois fonctionner les engins de chantier et fournit le rev\u00eatement - le bitume) pour y faire circuler des v\u00e9hicules \u00e0 peu pr\u00e8s tous dot\u00e9s d'un moteur \u00e0 combustion interne, on ne se passe pas du p\u00e9trole en une semaine non plus.\n\nLe d\u00e9bat qui a eu lieu au dernier forum des travaux publics entre Xavier Neuschwander et votre serviteur portait justement sur la possibilit\u00e9 de r\u00e9orienter le secteur des infrastructures en faveur d'une \u00e9conomie d\u00e9carbon\u00e9e. En effet, l'utilisation des infrastructures de toute nature situ\u00e9es en France est \u00e0 l'origine de la moiti\u00e9 de l'empreinte carbone de notre pays. D\u00e9carboner cet usage est donc indispensable, tout comme il est indispensable de le planifier puisque, \u00e0 l'\u00e9vidence, supprimer les \u00e9missions associ\u00e9es \u00e0 court terme ne peut se faire qu'en se privant du service associ\u00e9, perspective que peu de gens acceptent.\n\nDans le d\u00e9bat, il a \u00e9t\u00e9 question \u00e0 la fois du plan de transformation de l'\u00e9conomie fran\u00e7aise (qui n'a pas de chapitre explicitement d\u00e9di\u00e9 aux infrastructures, mais ces derni\u00e8res sont pr\u00e9sentes en filigrane un peu partout), et d'une analyse que Carbone 4 a publi\u00e9e il y a quelques mois sur le sujet (https://lnkd.in/eYXaufiz ).\n\nLa crise ukrainienne ne sera pas la seule que nous allons avoir sur les 30 ans qui viennent, malheureusement. A quelque chose malheur est bon : il faudrait au moins qu'elle serve de d\u00e9clencheur puissant \u00e0 une nouvelle trajectoire pour le pays et pour l'Europe (trajectoire dont la \"s\u00e9curisation des approvisionnements en hydrocarbures aupr\u00e8s d'autres fournisseurs\" ne peut constituer qu'un palliatif de tr\u00e8s court terme)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6913785816892751872,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6913785817542868992,urn:li:activity:6913785817542868992,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 17, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6913785817542868992,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6913785817542868992,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6913785817542868992", + "threadId": "activity:6913785817542868992", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6913785817542868992", + "urn": "urn:li:activity:6913785817542868992", + "numComments": 35, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6913785817542868992", + "reactionTypeCounts": [ + { + "count": 450, + "reactionType": "LIKE" + }, + { + "count": 39, + "reactionType": "INTEREST" + }, + { + "count": 35, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6913785817542868992", + "numLikes": 541, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6913785817542868992", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 541, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6913419959779901440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6913419959779901440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6913419959779901440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6913419959779901440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-soutenez-lappel-des-agents-activity-6913419959779901440-a7yx?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6913419958920073216", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6913419959779901440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6913419959779901440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6913419959779901440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6913419958920073216", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "viB6RF/jlaae7JxHFN23lw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6913419959779901440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7353899564798792918", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676314238731?e=1677240000&v=beta&t=Xa5ZtmbemhwOpja_DKffhs4BNWEv75-6jN1ZynngIQQ", + "expiresAt": 1677240000000, + "height": 531 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676314238731?e=1677240000&v=beta&t=5feCYa6LdXVereuclEjy03XpRwVs5km9NcOWi_QhRQ8", + "expiresAt": 1677240000000, + "height": 541 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676314238732?e=1677240000&v=beta&t=YXHe-LHenQLD1VpzLfBysC2C8hPuoTkdt2TdqyzWMgc", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676314238732?e=1677240000&v=beta&t=DXNAg278VuMpqs1fQkSzBThyoFcEGmjgfJVhKB0Z_gA", + "expiresAt": 1677240000000, + "height": 318 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEkkAwUBF_egg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66375 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7353899564798792918)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7353899564798792918)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : soutenez l'Appel ! - Des agents publics se mobilisent pour d\u00e9carboner les services publics by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/climat-soutenez-appel-agents-publics/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat : soutenez l'Appel ! - Des agents publics se mobilisent pour d\u00e9carboner les services publics" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6913419958920073216,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 24, + "miniProfile": { + "firstName": "Jean-Guillaume", + "lastName": "Bretenoux", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAB0ZCgBFGoRSBsAc1hIKeFDq1oot725pYc", + "occupation": "Directeur r\u00e9gional de l'\u00e9conomie, de l'emploi, du travail et des solidarit\u00e9s de Nouvelle Aquitaine", + "objectUrn": "urn:li:member:7627816", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAB0ZCgBFGoRSBsAc1hIKeFDq1oot725pYc", + "publicIdentifier": "jean-guillaume-bretenoux-2b467a2", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1634664571299?e=1681948800&v=beta&t=nIRWo4pwFKDG8qoXjIZrZW69_nv3d9GOIdY_LIVNV0k", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1634664571299?e=1681948800&v=beta&t=cvRuZ3q0E7cu6N8MjwfytgQ7OrrNVcfS30giXxk4el8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1634664571299?e=1681948800&v=beta&t=KJC8d0rJdotNf4n-nseDHDB9YPlRj_1jG8E_tkwTYZQ", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1634664571299?e=1681948800&v=beta&t=dvIZZYT5JrdAj-XOeJkaa4SjB3bJ2Zxhaup5FtzH4TE", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQEE97eTGqqYIQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "PfPrsG6wToarVGFEs/D3CA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 28, + "length": 12, + "miniProfile": { + "firstName": "Angel", + "lastName": "Prieto", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACP6qO8B3ZwvtGQkU5nLxw85BS6W2A4FYSg", + "occupation": "Corps des Mines | Pour un r\u00e9veil \u00e9cologique", + "objectUrn": "urn:li:member:603629807", + "entityUrn": "urn:li:fs_miniProfile:ACoAACP6qO8B3ZwvtGQkU5nLxw85BS6W2A4FYSg", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1624728959758?e=1681948800&v=beta&t=GZlzHLXZBOP_sMQpzXg96t-hLYXEUqb93R2D1BPknag", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1624728959758?e=1681948800&v=beta&t=eT8U3YO51zHIaAfM9yar_c92C5nfJLvjKyf16bRcaK8", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHmffO2E-4q0Q/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "angel-prieto-97b1a214a", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1624728507461?e=1681948800&v=beta&t=ApQZaEcOOkA2jKBvxFW09AwiipivpO1QULNXKkNM9Ww", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1624728507461?e=1681948800&v=beta&t=0nWjprDJzXMdQQCxkMOQHAmAGRI0QZkAin7GFiXda00", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1624728507461?e=1681948800&v=beta&t=wIl-lrXLndgesJSGqXhZSud78TMuuozM6QOR68rsTM0", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1624728507461?e=1681948800&v=beta&t=x1IjkgXPIGKG8RjWmNKLQixUmUEfB84Z608pH0aECL8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQGAkoiZIpUEaA/profile-displayphoto-shrink_" + } + }, + "trackingId": "fqv1ILH2TJynEAnv4fYI2A==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Jean-Guillaume Bretenoux et Angel Prieto, auteurs du rapport \"D\u00e9carboner l'Administration publique\" du Shift Project (https://lnkd.in/ehrNbRfy), ont pris l'initiative de lancer un \"Appel des agents publics pour d\u00e9carboner les services publics\", ouvert \u00e0 tou(te)s les fonctionnaires (nationaux, territoriaux, et des \u00e9tablissements publics), demandant \"une acc\u00e9l\u00e9ration urgente de la d\u00e9carbonation du fonctionnement de l\u2019Etat, des collectivit\u00e9s territoriales et de tous les \u00e9tablissements publics\".\n\nRepr\u00e9sentant 20% de l'emploi en France, l'Administration publique au sens large est en effet un important acheteur (v\u00e9hicules, b\u00e2timents, nourriture, objets de toute nature), et, par ailleurs, et par nature, le prescripteur essentiel des r\u00e8gles de la vie en commun. \n\nPour mieux exercer la deuxi\u00e8me fonction, les initiateurs de l'appel consid\u00e8rent qu'il est indispensable que le premier volet soit fait en accord avec ce qui sera demand\u00e9 aux autres. Acheter bas-carbone, se d\u00e9placer bas carbone, soigner ou enseigner bas carbone, tout cela est indispensable si l'on veut par ailleurs \u00eatre cr\u00e9dible pour que le reste de la soci\u00e9t\u00e9 prenne le m\u00eame chemin.\n\nLes signataires de l'appel demandant donc au prochain gouvernement (pour l'existant c'est un peu r\u00e2p\u00e9 !) de mettre l'Administration publique \"en r\u00e8gle\" avec la d\u00e9carbonation du pays sans tarder, d\u00e8s les \u00e9lections pr\u00e9sidentielle et l\u00e9gislatives pass\u00e9es. Ils \u00e9crivent notamment \"Comment [la puissance publique]\u00a0serait-elle l\u00e9gitime, cr\u00e9dible et pertinente pour impulser, via les politiques publiques coh\u00e9rentes, [la transition bas-carbone de l\u2019\u00e9conomie et de la soci\u00e9t\u00e9 fran\u00e7aise] si elle n\u2019a pas engag\u00e9 un processus de d\u00e9carbonation volontariste et ambitieux pour elle-m\u00eame ?\". La demande renvoie \u00e9videmment aux nombreuses propositions contenues dans le rapport \"D\u00e9carboner l'Administration publique\" qui est lui-m\u00eame un des volets du plan de transformation de l'\u00e9conomie fran\u00e7aise (https://lnkd.in/esiqHkbf ).\n\nSi vous \u00eates agent public et que vous estimez qu'il est indispensable que la lutte contre le changement climatique soit partie int\u00e9grante de votre quotidien professionnel ; si vous voulez que cela devienne une vraie priorit\u00e9, avec les d\u00e9cisions, les objectifs, l\u2019accompagnement (dont la formation) et les moyens que cela implique, cet appel est pour vous, \u00e0 la fois pour le signer bien s\u00fbr :), et pour le relayer \u00e9galement." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6913419958920073216,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6913419959779901440,urn:li:activity:6913419959779901440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6913419959779901440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6913419959779901440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6913419959779901440", + "threadId": "activity:6913419959779901440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6913419959779901440", + "urn": "urn:li:activity:6913419959779901440", + "numComments": 59, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6913419959779901440", + "reactionTypeCounts": [ + { + "count": 985, + "reactionType": "LIKE" + }, + { + "count": 72, + "reactionType": "PRAISE" + }, + { + "count": 58, + "reactionType": "APPRECIATION" + }, + { + "count": 18, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + }, + { + "count": 8, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6913419959779901440", + "numLikes": 1149, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6913419959779901440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1149, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6913022967245381632,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6913022967245381632", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6913022967245381632)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6913022967245381632)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cest-peu-dire-que-le-p%C3%A9trole-est-au-centre-activity-6913022967245381632-XMT0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6913022966314237952", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6913022967245381632", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6913022967245381632,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6913022967245381632,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6913022966314237952", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "W1XKZ+fnU/E2HYR8XZweSQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6913022967245381632,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQFUmvqB3ySCvA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQFUmvqB3ySCvA", + "artifacts": [ + { + "width": 1870, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1648193109954?e=1679529600&v=beta&t=1Fv405qIlW76Ox3zDfSeQzGYSTNQypfMJksthx9EsX8", + "expiresAt": 1679529600000, + "height": 1230 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1648193112394?e=1679529600&v=beta&t=10afaHUpYAA_CESLCvqVN9aQTV3X1wxWwRb85Jesyps", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1648193112394?e=1679529600&v=beta&t=zbUomuTlab6Kfypp6mhj5kxiNwQYyayp4UcpYsOPXLM", + "expiresAt": 1679529600000, + "height": 842 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1648193112394?e=1679529600&v=beta&t=LCzW0bLe4azE8K-6xr5M5Grzn7OCnOkEVKjt-Ghbkug", + "expiresAt": 1679529600000, + "height": 316 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1648193112394?e=1679529600&v=beta&t=b-0Xaaah27tVy8pLPmeZmXzdE7TPXLyZYYENqza-Umw", + "expiresAt": 1679529600000, + "height": 105 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1648193112394?e=1679529600&v=beta&t=XP_fIdSTdSkYF95vl_XitDXNndIbRgmw2ne3BMQmXB8", + "expiresAt": 1679529600000, + "height": 526 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQFUmvqB3ySCvA/feedshare-shrink_" + }, + "displayAspectRatio": 0.6577540106951871 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, bar chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6913022966314237952,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est peu dire que le p\u00e9trole est au centre de notre actualit\u00e9. A cause des russes, voil\u00e0 qu'il faudrait s'en passer rapidement. En fait, russes ou pas, et m\u00eame climat ou pas, il va falloir progressivement s'en passer.\n\nLa raison de base est simple : il faut de quelques dizaines \u00e0 quelques centaines de millions d'ann\u00e9es pour que le p\u00e9trole et le gaz se forment \u00e0 partir de r\u00e9sidus de vie marine (https://lnkd.in/djAcDUP ). De ce fait, en premi\u00e8re approximation ces ressources sont non renouvelables \u00e0 l'\u00e9chelle des temps historiques. \n\nPour extraire du p\u00e9trole et du gaz du sous-sol, il faut commencer par savoir o\u00f9 ils se trouvent. Difficile de faire sortir un p\u00e9trole sans savoir o\u00f9 il est !\n\nOr, depuis le d\u00e9but des ann\u00e9es 1980, les d\u00e9couvertes annuelles sont devenues inf\u00e9rieures, puis tr\u00e8s inf\u00e9rieures \u00e0 la production. En agr\u00e9geant p\u00e9trole et gaz, nous extrayons de terre un peu moins de 60 milliards de barils (ou d'\u00e9quivalent baril pour le gaz) par an. En face de cela, les d\u00e9couvertes de ces derni\u00e8res ann\u00e9es se prom\u00e8nent entre 5 et 15 milliards de barils ou \u00e9quivalent baril par an (graphique ci-dessous ; source Rystad Energy). \n\nQuand le prix du baril augmente fortement, il devient plus rentable pour les p\u00e9troliers de faire sortir de terre des hydrocarbures \"compliqu\u00e9s\" (petits gisements, et/ou tr\u00e8s profonds, et/ou gaz tr\u00e8s \u00e9loign\u00e9 des infrastructures de transport, p\u00e9trole de \"mauvaise qualit\u00e9\", etc). Du coup ils relancent l'exploration dans l'espoir de trouver \"n'importe quoi\", et les d\u00e9couvertes, m\u00eame insuffisantes pour contrebalancer l'extraction, augmentent un peu dans les ann\u00e9es qui suivent. \n\nA l'inverse, quand le prix du baril baisse, ces efforts diminuent aussi, et en cons\u00e9quence logique les d\u00e9couvertes baissent par rapport \u00e0 la tendance de fond.\n\nMais dans tous les cas de figure, on voit bien que le stock extractible identifi\u00e9 diminue n\u00e9cessairement d\u00e8s lors que les d\u00e9couvertes sont tr\u00e8s inf\u00e9rieures \u00e0 l'extraction. C'est ce qui a conduit The Shift Project, sur la base d'une analyse effectu\u00e9e sur une base de donn\u00e9es portant sur l'ensemble des gisements (exploit\u00e9s ou pas) dans le monde, et confi\u00e9e notamment \u00e0 deux anciens dirigeants de l'exploration-production de Total, \u00e0 conclure que le \"sevrage p\u00e9trolier\" attendait l'Europe - et en fait l'humanit\u00e9 - pour les d\u00e9cennies \u00e0 venir, Ukraine ou pas : https://lnkd.in/dwPcgve\n\nOr le p\u00e9trole, c'est l'\u00e9conomie. Sans p\u00e9trole pas de transports abondants, donc pas de syst\u00e8me productif op\u00e9rationnel et fin des chaines de valeur mondialis\u00e9es. C'est pour cela que depuis des d\u00e9cennies la variation du PIB mondial suit tr\u00e8s exactement la variation de la production mondiale de p\u00e9trole. La conclusion logique de tout cela est que le prochain mandat pr\u00e9sidentiel - et les suivants - doit pouvoir \"flotter dans une Europe en d\u00e9croissance\"." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6913022966314237952,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6913022967245381632,urn:li:activity:6913022967245381632,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 73, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6913022967245381632,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6913022967245381632,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6913022967245381632", + "threadId": "activity:6913022967245381632", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6913022967245381632", + "urn": "urn:li:activity:6913022967245381632", + "numComments": 168, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6913022967245381632", + "reactionTypeCounts": [ + { + "count": 1917, + "reactionType": "LIKE" + }, + { + "count": 272, + "reactionType": "INTEREST" + }, + { + "count": 169, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "EMPATHY" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6913022967245381632", + "numLikes": 2409, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6913022967245381632", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2409, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6912840591156342784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6912840591156342784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6912840591156342784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6912840591156342784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_belgique-le-nucl%C3%A9aire-joue-la-prolongation-activity-6912840591156342784-uGo4?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6912840590111969280", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6912840591156342784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6912840591156342784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6912840591156342784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6912840590111969280", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "Tx4hn8L3GzbpwoXHNRC9zw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6912840591156342784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8493068238479831881", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676285206401?e=1677240000&v=beta&t=A-P2xCQJd76tBIUUHe9aMvtqdDqVCqRhFFQy7VgHldY", + "expiresAt": 1677240000000, + "height": 532 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676285206401?e=1677240000&v=beta&t=UNlQmZnMgt0ZfZZvJLovPghwVr3u0PabNHUX707_WtQ", + "expiresAt": 1677240000000, + "height": 682 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676285206401?e=1677240000&v=beta&t=jQ2WwWIBDICuUiVXfEvlTHlJWPEuQCXLh6eUjsG712I", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676285206401?e=1677240000&v=beta&t=bUDPNC93C6zaPun7dMyPdeM1qSLkv9ipf2wrjXGjtcE", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEY8oaMS5ZnyQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.665 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8493068238479831881)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8493068238479831881)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "new.sfen.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Belgique : le nucl\u00e9aire joue la prolongation - Sfen by new.sfen.org", + "actionTarget": "https://new.sfen.org/rgn/belgique-le-nucleaire-joue-la-prolongation" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Belgique : le nucl\u00e9aire joue la prolongation - Sfen" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6912840590111969280,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 424, + "length": 14, + "miniProfile": { + "firstName": "Sylvestre", + "lastName": "Huet", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAO9iBUBrJPOAiOLpOa49uUAlKWtP2fcD94", + "occupation": "journaliste scientifique ind\u00e9pendant", + "objectUrn": "urn:li:member:62752789", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAO9iBUBrJPOAiOLpOa49uUAlKWtP2fcD94", + "publicIdentifier": "sylvestre-huet-33102319", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516799797874?e=1681948800&v=beta&t=EbEU2mNNzL8mKmONMhbMHNFmXxw4meytDPaHz_MATgo", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516799797874?e=1681948800&v=beta&t=GDoTL8oxbkf3tJEVDqabrbXUmJR2LKj_RooRjFciB8M", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516799797874?e=1681948800&v=beta&t=FgHh1elDkGpv6AwfMHleG8pA04ZVPo8pq1D_XGsjzRA", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516799797874?e=1681948800&v=beta&t=T8ijLFU3JAQPQkggh0ncWe1Zl8EPa1PW9KAmiEDNgYI", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGLl4HX_4m5Yw/profile-displayphoto-shrink_" + } + }, + "trackingId": "mRsC/jX6Tl2I5Iq5cIHNaA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1314, + "length": 15, + "miniProfile": { + "firstName": "Maxence", + "lastName": "Cordiez", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAuKk2oBbePNyO9ePjG_LdXPj0ZplQ4tDC8", + "occupation": "Engineer", + "objectUrn": "urn:li:member:193631082", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAuKk2oBbePNyO9ePjG_LdXPj0ZplQ4tDC8", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1516829893599?e=1681948800&v=beta&t=7E3sY-k3ePXxtXWA2kybmxIhgcNTzgffgYgn8UwphZs", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1516829893599?e=1681948800&v=beta&t=52mgzkhX6quseuboUzyKJYQ-qJ_KdjjhTnFKTaxPNZc", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5116AQGIqqfBrGp5pQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "maxence-cordiez", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1622446554705?e=1681948800&v=beta&t=de-BZgDe4_SL70jtMuLi9wm-34KQDKGzo7QG7an4Azw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1622446554705?e=1681948800&v=beta&t=_BgJJ_lLwDiqq4cwl6jijMFWSM4gGht8rrkTeDq88NQ", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1622446554705?e=1681948800&v=beta&t=0jkBTCWM23jmcKYYfoV6FICxEl3ByOfs3NjrnQwOw0U", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1622446554705?e=1681948800&v=beta&t=V8xYgqymhb1DYfLXcCHNZHPc7jIJLX-geaApyPx9k5Q", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGWgUvKMBdpbg/profile-displayphoto-shrink_" + } + }, + "trackingId": "f2o3m80/RF2DAcLPpVbLFQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "La Belgique vient de repousser de 10 ans la fermeture de 2 r\u00e9acteurs nucl\u00e9aires, fermeture qui \u00e9tait pr\u00e9vue pour 2025, en cons\u00e9quence directe de la \"crise du gaz russe\".\n\nIl faut \u00e9videmment se r\u00e9jouir de cette d\u00e9cision, qui conduira \u00e0 des \u00e9conomies directes d'\u00e9missions de CO2 alors m\u00eame que le monde vient de conna\u00eetre en 2021 un effacement total du \"creux\" de 2020 en ce qui concerne les \u00e9missions de CO2 (voir article de Sylvestre Huet \u00e0 ce sujet : https://lnkd.in/ddwqQFsG ).\n\nDans le m\u00eame esprit, on note que, dans le programme pr\u00e9sidentiel des Verts fran\u00e7ais, il n'est d\u00e9sormais plus question de fermeture anticip\u00e9e des r\u00e9acteurs en service (alors qu'initialement il \u00e9tait question d'une sortie compl\u00e8te du nucl\u00e9aire le plus vite possible).\n\nPourquoi certains politiques deviennent-ils moins hostiles \u00e0 l'atome d\u00e9sormais ? Pour une raison assez simple : parce que l'avis de la population \u00e9volue. Ce n'est pas \"les faits\" qui les conduisent \u00e0 changer d'avis (sinon ce serait fait depuis longtemps !) : c'est l'opinion.\n\nEt c'est probablement pour cette m\u00eame raison que l'Allemagne, elle, reste sur sa position historique en ce qui concerne cette source d'\u00e9lectricit\u00e9. La population y \u00e9volue probablement moins vite en faveur de cette modalit\u00e9 de production qu'ailleurs.\n\nComme le soulignait un post r\u00e9cent de Maxence Cordiez, cela place les Verts allemands, \u00e0 la fois contre le nucl\u00e9aire civil mais aussi pour la paix, dans une situation d\u00e9sormais schizophr\u00e9nique : le refus du nucl\u00e9aire pour le choix du gaz (la puissance \u00e9lectrique install\u00e9e au gaz a augment\u00e9 de 50% en 20 ans : https://lnkd.in/dshZdp7X ) conduit aujourd'hui \u00e0 plus financer l'effort de guerre de Poutine que si le choix inverse avait \u00e9t\u00e9 fait.\n\nA plus long terme, cette position conduira \u00e0 une autre schizophr\u00e9nie : on se rendra compte que le refus du nucl\u00e9aire a contribu\u00e9 \u00e0 conserver plus de combustibles fossiles dans la production \u00e9lectrique, ce qui cr\u00e9e plus de changement climatique et d\u00e9truit plus de biodiversit\u00e9.\n\nMais ce changement, quand il survient, ne permet pour autant pas de se d\u00e9barrasser de l'existant fossile \u00e0 bref d\u00e9lai : redevenir favorable \u00e0 la construction de centrales nucl\u00e9aires ne fait sentir ses effets que 15 \u00e0 30 ans plus tard... \u00e0 condition d'\u00eatre ensuite d\u00e9termin\u00e9 et constant sur cette dur\u00e9e." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6912840590111969280,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6912840591156342784,urn:li:activity:6912840591156342784,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 65, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6912840591156342784,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6912840591156342784,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6912840591156342784", + "threadId": "activity:6912840591156342784", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6912840591156342784", + "urn": "urn:li:activity:6912840591156342784", + "numComments": 96, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6912840591156342784", + "reactionTypeCounts": [ + { + "count": 1544, + "reactionType": "LIKE" + }, + { + "count": 113, + "reactionType": "INTEREST" + }, + { + "count": 75, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6912840591156342784", + "numLikes": 1800, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6912840591156342784", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1800, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6912473041310494720,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6912473041310494720", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6912473041310494720)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6912473041310494720)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_new-sec-climate-disclosure-rules-a-primer-activity-6912473041310494720-fvR4?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6912473040362565633", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6912473041310494720", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6912473041310494720,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6912473041310494720,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6912473040362565633", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "rZt87PJaM/3CYnzuWtMoqw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6912473041310494720,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7921683586095894169", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676578330894?e=1677240000&v=beta&t=BtXm_UZr1SK5H5L7CBdyEDt5_ETJJbtOVedLFBLV_t0", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676578330894?e=1677240000&v=beta&t=tYRtCdfxNIgXqVk33GrkApHP_0pSSa4AtmGV13OgxnY", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676578330895?e=1677240000&v=beta&t=zHlCycZGkjIAJY_kDo-b_jf1kD0vSZFVRZT3SiQApCg", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676578330895?e=1677240000&v=beta&t=onqXs8HvvxeBUrm6K7700bOVaIPJIJrZamXg6LdHHOg", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEcdUVFkW4dIg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7921683586095894169)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7921683586095894169)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "forbes.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: New SEC Climate Disclosure Rules - A Primer From A Top ESG Investor by forbes.com", + "actionTarget": "https://www.forbes.com/sites/joanmichelson2/2022/03/23/will-the-new-sec-climate-disclosure-rules-matter/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "New SEC Climate Disclosure Rules - A Primer From A Top ESG Investor" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6912473040362565633,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "510 pages : c'est ce qu'il a fallu \u00e0 la Securities and Exchange Commission (SEC), le gendarme boursier am\u00e9ricain, pour pr\u00e9ciser les obligations auxquelles les entreprises cot\u00e9es aux USA vont devoir satisfaire en mati\u00e8re de transparence sur leurs risques climat, de transition et physiques.\n\n \"Risque\" : le mot est prononc\u00e9. Jusqu'\u00e0 maintenant, la publication d'informations sur les \u00e9missions \u00e9tait g\u00e9n\u00e9ralement vue comme relevant de la \"responsabilit\u00e9 sociale et environnementale\" des entreprises.\n\nEn pratique cela veut donc dire que cela rel\u00e8ve du suppl\u00e9ment d'\u00e2me, de la bonne volont\u00e9, et du reste pour le moment ces publications sont r\u00e9gies par des recommandations (comme la TCFD ou m\u00eame l'article 173 - qui permet assez facilement de donner le change - et non par des obligations dures. \n\nMais, aux USA, parler de risque pour l'actionnaire, c'est regarder la possible d\u00e9pr\u00e9ciation de son patrimoine, et par ailleurs l'actionnaire est souvent un (futur) retrait\u00e9. C'est donc un sujet avec lequel on ne plaisante pas. \n\nA supposer que le p\u00e9rim\u00e8tre des obligations soit bon (ne pas se limiter aux \u00e9missions directes, ne pas autoriser la compensation avant publication, etc), ce que je confesse ne pas avoir encore regard\u00e9, le fait de voir les \u00e9missions comme un facteur de risque sur la valeur patrimoniale serait un levier plus puissant que la RSE pour faire remonter le sujet du climat d'un cran ou deux dans la hi\u00e9rarchie des entreprises. \n\nSi on parle de risque pour l'actionnaire, on parle en effet possiblement de proc\u00e8s, de d\u00e9sinvestissement et d'abaissement de la note de cr\u00e9dit, et d'autres bricoles de ce genre qui permettront d'avoir l'oreille du dirigeant.\n\nCette publication de la SEC illustre aussi une chose essentielle : l'Europe ne doit pas avoir peur d'innover. Il arrive que cela conduise d'autres pays \u00e0 suivre." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6912473040362565633,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6912473041310494720,urn:li:activity:6912473041310494720,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 31, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6912473041310494720,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6912473041310494720,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6912473041310494720", + "threadId": "activity:6912473041310494720", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6912473041310494720", + "urn": "urn:li:activity:6912473041310494720", + "numComments": 37, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6912473041310494720", + "reactionTypeCounts": [ + { + "count": 926, + "reactionType": "LIKE" + }, + { + "count": 119, + "reactionType": "INTEREST" + }, + { + "count": 93, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6912473041310494720", + "numLikes": 1165, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6912473041310494720", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1165, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6911941403988127744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6911941403988127744", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6911941403988127744)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6911941403988127744)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_plains-drought-to-curb-us-wheat-harvest-activity-6911941403988127744-7qQ4?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6911941403262513152", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6911941403988127744", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6911941403988127744,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6911941403988127744,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6911941403262513152", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "qApwet0TV+CciSS0U2agTA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6911941403988127744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8158517325339082783", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1647934177525?e=1677240000&v=beta&t=iIj-SuvxwvewcKKJOAhQvkhP-b7UYyfSynZRjlHtzC4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1647934177525?e=1677240000&v=beta&t=treXKojGSOVDA3xSEdrFTCyOsJRZddA6Ed9hwi3N-y0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1647934177525?e=1677240000&v=beta&t=U6NSQMEzCRnRkVNidBIC0nbbuiHv000SwKr7HTNSs3k", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1647934177525?e=1677240000&v=beta&t=x8skInEMqjmrN-gy2hF2xa7t2Nw0WUALNzbnVjqGcb0", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFjl5rJ0cvDIA/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8158517325339082783)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8158517325339082783)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "msn.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Plains drought to curb U.S. wheat harvest, adding to global supply worries by msn.com", + "actionTarget": "https://www.msn.com/en-us/news/us/plains-drought-to-curb-us-wheat-harvest-adding-to-global-supply-worries/ar-AAV3kva" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Plains drought to curb U.S. wheat harvest, adding to global supply worries" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6911941403262513152,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Alors que le conflit \u00e0 l'Est de l'Europe va limiter la production et/ou les exportations de c\u00e9r\u00e9ales (bl\u00e9, ma\u00efs) ou ol\u00e9agineux (tournesol), un autre gros producteur mondial fait face \u00e0 des conditions de s\u00e9cheresse qui ne cessent de s'intensifier (voir la carte sur https://lnkd.in/dQVN83A). En cons\u00e9quence de quoi la production de bl\u00e9 d'hiver est incertaine, ce qui contribue aussi \u00e0 faire monter les prix.\n\nParadoxe : en Chine ce sont des exc\u00e8s d'eau au moment de la plantation qui menacent la r\u00e9colte de bl\u00e9 d'hiver (https://lnkd.in/eNcqc6xx). Pour le coup, ce ne sont pas les exportations chinoises qui sont menac\u00e9es, car ce pays est un importateur, mais cela va in\u00e9vitablement aussi exercer une pression sur les prix.\n\nA un moment ou \u00e0 un autre, il va falloir se poser la question de l'adaptation \u00e0 une production qui ne va plus augmenter, voire baisser. C'est d'autant plus vrai que les auxiliaires de la production agricole \"moderne\" sont le p\u00e9trole et le gaz, pour la m\u00e9canisation et les engrais (les engrais azot\u00e9s sont faits avec de l'ammoniac, lui-m\u00eame fait avec de l'hydrog\u00e8ne... largement produit \u00e0 partir de gaz).\n\nUne large partie des c\u00e9r\u00e9ales sert \u00e0 nourrir du b\u00e9tail en \u00e9levage intensif. Une autre partie sert \u00e0 nourrir... nos voitures (c'est le cas de 40% du ma\u00efs am\u00e9ricain), ce qui est aussi la destination d'une large partie des betteraves \u00e0 sucre (le sucre sert \u00e0 faire de l'\u00e9thanol substituant l'essence) ou du colza (qui sert \u00e0 fabriquer un substitut au gazole).\n\nDans le Plan de Transformation de l'Economie Fran\u00e7aise (https://lnkd.in/esiqHkbf), la r\u00e9ponse \u00e0 tous ces probl\u00e8mes combine :\n- une baisse de la production de viande (ce qui permet d'avoir moins de c\u00e9r\u00e9ales \u00e0 cultiver)\n- moins de voitures (il faut baisser le nombre d'objets de 1 tonne ou plus de masse unitaire en circulation ; c'est physique !) ce qui permet d'avoir moins de v\u00e9g\u00e9taux \u00e0 cultiver pour les substituts au p\u00e9trole\n- un recours tr\u00e8s mod\u00e9r\u00e9 aux produits d'origine agricole pour l'approvisionnement \u00e9nerg\u00e9tique d'une mani\u00e8re g\u00e9n\u00e9rale, pour lib\u00e9rer de la pression sur les sols.\n\nRien de tout cela ne se met en place en une semaine \u00e9videmment. Ce qui signifie que, \u00e0 court terme, les pressions \u00e0 la baisse sur les productions agricoles vont cr\u00e9er des troubles - et une forte volatilit\u00e9 des prix - l\u00e0 o\u00f9 l'ajustement se fera de mani\u00e8re forc\u00e9e. Si c'est un ajustement forc\u00e9 \u00e0 la baisse dans les estomacs des gens qui n'ont d\u00e9j\u00e0 pas beaucoup \u00e0 manger, il y aura h\u00e9las des probl\u00e8mes de disette ou de famine." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6911941403262513152,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6911941403988127744,urn:li:activity:6911941403988127744,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 84, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6911941403988127744,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6911941403988127744,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6911941403988127744", + "threadId": "activity:6911941403988127744", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6911941403988127744", + "urn": "urn:li:activity:6911941403988127744", + "numComments": 167, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6911941403988127744", + "reactionTypeCounts": [ + { + "count": 1622, + "reactionType": "LIKE" + }, + { + "count": 319, + "reactionType": "INTEREST" + }, + { + "count": 226, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "PRAISE" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6911941403988127744", + "numLikes": 2227, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6911941403988127744", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2227, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6911739763653791744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6911739763653791744", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6911739763653791744)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6911739763653791744)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-la-bce-tacle-les-banques-europ%C3%A9ennes-activity-6911739763653791744-oEYj?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6911739762877841408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6911739763653791744", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6911739763653791744,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6911739763653791744,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6911739762877841408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "pF1J/dCPsm8gPZ8q3EVNeg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6911739763653791744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7132247065011595088", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675792950456?e=1677240000&v=beta&t=chU2zq6JFaVo6zgGKRH5XaKEuNCsy7EcNq_GHsWvPEk", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675792950457?e=1677240000&v=beta&t=V0k-1FgQKvTN40lWytyZjVIF237fpHcL7K3Hg4wcZqE", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675792950457?e=1677240000&v=beta&t=7ORH8UIxiy3JdJQP0aTWuh4BCJ6ycdcBH8nPR0CG9XU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675792950457?e=1677240000&v=beta&t=Bi3tQD9CdWRr1y4PjAcpWK3VJr6yUSSw6anv6vEV0XE", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHlp9jpp_Ql-g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7132247065011595088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7132247065011595088)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : la BCE tacle les banques europ\u00e9ennes sur leur manque de transparence by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/banque-assurances/climat-la-bce-tacle-les-banques-europeennes-sur-leur-manque-de-transparence-1393494" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat\u00a0: la BCE tacle les banques europ\u00e9ennes sur leur manque de transparence" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6911739762877841408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce n'est pas une association militante qui le dit, mais la banque centrale europ\u00e9enne : une \u00e9valuation sur 109 grandes banques commerciales de la zone euro montre que ces derni\u00e8res ne sont pas au bon niveau en ce qui concerne la gestion de leurs risques climatiques, et, d'apr\u00e8s Les Echos, \"ne r\u00e9pondent pas pleinement aux attentes de la supervision\".\n\nDe quels risques parle-t-on ? Il y en a deux principalement en mati\u00e8re de climat. Le premier est dit \"de transition\". Il correspond \u00e0 la situation ou un pr\u00eat ou une action vont perdre de la valeur, parce que l'emprunteur se retrouve en d\u00e9faut partiel ou total \u00e0 cause d'un contexte r\u00e9glementaire qui l'emp\u00eache d'exercer son activit\u00e9 comme avant. Par exemple si une banque d\u00e9tient des actions d'un op\u00e9rateur de r\u00e9seau de gaz et que la collectivit\u00e9 d\u00e9cide que le gaz ne doit plus \u00eatre utilis\u00e9, ces actions perdent en valeur.\n\nOr les actifs d'une banque sont essentiellement constitu\u00e9s d'obligations - qui sont des \"morceaux de pr\u00eat\" - et de pr\u00eats \"ordinaires\" (le pr\u00eat est au passif de l'emprunteur mais \u00e0 l'actif de la banque !), avec quelques actions et autres titres (immobilier par exemple). Si une fraction trop importante de ces actifs sont impact\u00e9s \u00e0 la baisse par les contraintes de la transition, la banque est en risque.\n\nUne variante du risque de transition est que ce ne soit pas la r\u00e9glementation qui emp\u00eache d'\u00e9mettre du CO2, mais un d\u00e9faut d'approvisionnement en combustibles fossiles (suivez mon regard du c\u00f4t\u00e9 de la situation actuelle), qui finira par arriver de toute fa\u00e7on puisque ces combustibles sont \u00e9puisables.\n\nLe deuxi\u00e8me risque est dit \"physique\". Il correspond au risque de d\u00e9faut li\u00e9 au fait que l'entreprise ou le pays dont on d\u00e9tient une obligation, un pr\u00eat ou une action pourrait voir ses op\u00e9rations impact\u00e9es \u00e0 cause des cons\u00e9quences du changement climatique.\n\nAppr\u00e9cier ces risques est compliqu\u00e9. Il faut bien comprendre l'ensemble de la chaine de valeur dans laquelle s'ins\u00e8re l'entit\u00e9 que l'on regarde, puisque sa vuln\u00e9rabilit\u00e9 est aussi celle de ses clients ou fournisseurs. Cela demande des comp\u00e9tences, des donn\u00e9es, du temps, et pire encore d'envisager des \u00e9ventualit\u00e9s d\u00e9sagr\u00e9ables, chose que peu de gens aiment faire. Et appr\u00e9cier si les banques sont au bon niveau suppose des comp\u00e9tences encore plus importantes du c\u00f4t\u00e9 du r\u00e9gulateur, soit dit en passant.\n\nDu coup, il n'est pas tr\u00e8s \u00e9tonnant que le syst\u00e8me financier dans son ensemble n'y soit pas encore. Par contre, ne pas mettre les moyens pour y \u00eatre rapidement serait encore plus \u00e9tonnant, maintenant que nous savons ce que nous savons." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6911739762877841408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6911739763653791744,urn:li:activity:6911739763653791744,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 27, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6911739763653791744,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6911739763653791744,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6911739763653791744", + "threadId": "activity:6911739763653791744", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6911739763653791744", + "urn": "urn:li:activity:6911739763653791744", + "numComments": 47, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6911739763653791744", + "reactionTypeCounts": [ + { + "count": 910, + "reactionType": "LIKE" + }, + { + "count": 118, + "reactionType": "INTEREST" + }, + { + "count": 106, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6911739763653791744", + "numLikes": 1160, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6911739763653791744", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1160, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6911607356413894656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6911607356413894656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6911607356413894656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6911607356413894656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_guerre-en-ukraine-pourquoi-il-pourrait-activity-6911607356413894656-1Lsa?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6911607355583442944", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6911607356413894656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6911607356413894656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6911607356413894656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6911607355583442944", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "sApd3xsvjD47wNhmcGaaIg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6911607356413894656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9128410024266182055", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675887272013?e=1677240000&v=beta&t=yNDLmWxbc_PnJF5HBYcmoPVg97t0HJP7l-XDg3f-3Ps", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675887272013?e=1677240000&v=beta&t=Kxd_vWqr8D0FYY61IV8Qn5DBhCWWPyyp-s49KUwPeo4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675887272013?e=1677240000&v=beta&t=4vuAseQWDf3zxRwreBgxiQvf4Me_LZjkNj-dvRCLyYE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675887272013?e=1677240000&v=beta&t=ohB2QJGpy-kLGqeHd0vYyJvz3Z0gH5Ansl13FRaaycc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHUXWgGXEL76A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9128410024266182055)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9128410024266182055)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Guerre en Ukraine : pourquoi il pourrait y avoir des cons\u00e9quences sur les pays arabes ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900135740-guerre-en-ukraine-pourquoi-il-pourrait-y-avoir-des-consequences-sur-les-pays-arabes" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Guerre en Ukraine : pourquoi il pourrait y avoir des cons\u00e9quences sur les pays arabes ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6911607355583442944,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pour une fois, j'esp\u00e8re bien me tromper. J'ai indiqu\u00e9 lors de ma derni\u00e8re chronique sur RTL - Samedi dernier - que la conjonction qui est en train de se mettre en place pour les pays du Maghreb ressemble \u00e9trangement \u00e0 ce qui s'est observ\u00e9 au moment du d\u00e9clenchement du \"Printemps Arabe\", il y a une dizaine d'ann\u00e9es. \n\nA l'\u00e9poque, les troubles s'\u00e9taient d\u00e9clench\u00e9s \u00e0 cause d'un prix de l'alimentation devenu tr\u00e8s difficile \u00e0 supporter pour une partie de la population, en r\u00e9ponse \u00e0 une production domestique insuffisante encore affaiblie par une s\u00e9cheresse croissante (coh\u00e9rente avec ce qui est attendu dans le cadre du r\u00e9chauffement climatique), des importations dont les prix avaient fortement augment\u00e9, et des recettes \u00e0 l'exportation - notamment le tourisme - pas au mieux \u00e0 cause de la \"crise financi\u00e8re\" de 2008 : https://lnkd.in/gaY7nrE\n\nQu'observe-t-on aujourd'hui ? Une s\u00e9cheresse qui continue \u00e0 \u00eatre pr\u00e9sente voire qui s'intensifie (voir par exemple https://lnkd.in/efJaRyx9 ou https://lnkd.in/eyqiqNta ) ; un prix des c\u00e9r\u00e9ales qui s'approchait d\u00e9j\u00e0 de son niveau de 2010 avant la guerre en Ukraine (https://lnkd.in/evf6a5ye ) et qui pourrait encore monter, et un tourisme un peu d\u00e9prim\u00e9 par le covid. \n\nSi l'on s'int\u00e9resse aux flux physiques, dans les gros acheteurs de bl\u00e9 russe/ukrainien, il y a notamment l'Egypte. \n\nBref cette chronique \u00e9tait essentiellement l\u00e0 pour rappeler que, dans notre monde interconnect\u00e9 et mondialis\u00e9, tout probl\u00e8me \"local\" peut toujours s'\u00e9tendre ailleurs, et ces effets domino seront d'autant plus amples que la situation de d\u00e9part comporte peu de marges." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6911607355583442944,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6911607356413894656,urn:li:activity:6911607356413894656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 15, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6911607356413894656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6911607356413894656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6911607356413894656", + "threadId": "activity:6911607356413894656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6911607356413894656", + "urn": "urn:li:activity:6911607356413894656", + "numComments": 20, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6911607356413894656", + "reactionTypeCounts": [ + { + "count": 399, + "reactionType": "LIKE" + }, + { + "count": 88, + "reactionType": "INTEREST" + }, + { + "count": 86, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6911607356413894656", + "numLikes": 585, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6911607356413894656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 585, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6911369362150977536,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6911369362150977536", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6911369362150977536)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6911369362150977536)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-intercommunalit%C3%A9s-face-%C3%A0-jean-marc-jancovici-activity-6911369362150977536-alE8?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6911369361375035392", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6911369362150977536", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6911369362150977536,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6911369362150977536,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6911369361375035392", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "DZLGWAiPr1whRl/LRkJAnw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6911369362150977536,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7733191655535047428", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 480, + "fileIdentifyingUrlPathSegment": "800/0/1676020946589?e=1677240000&v=beta&t=DCp9aWLQtCUB4qrIKaa4bIGERFIFPDQotepH5LhXe20", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676020946589?e=1677240000&v=beta&t=UgUeLf4q2SvvZaMGg2PUSHuhe0GUiwyyyzdw3dw851A", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676020946590?e=1677240000&v=beta&t=YX_rJXE9Gd4o1HMZ7cnT1QjoUvTSJ1GlKqoVef1d2n0", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676020946590?e=1677240000&v=beta&t=n4INREQlAJguIgtgaYmOHNCrTEVlWfFOjB_iWNT2yW0", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQG0QOCeNcGTAQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7733191655535047428)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7733191655535047428)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Les intercommunalit\u00e9s face \u00e0 Jean-Marc Jancovici \u2013 \u00c9lection pr\u00e9sidentielle 2022 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=huKlLxPP_sg" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Pendant la campagne pr\u00e9sidentielle, Intercommunalit\u00e9s de France et La Gazette des communes s'associent pour faire \u00e9changer et d\u00e9battre des pr\u00e9sidents d'intercommunalit\u00e9s, repr\u00e9sentant la diversit\u00e9 des territoires, avec un intellectuel. Avec Jean-Marc..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Les intercommunalit\u00e9s face \u00e0 Jean-Marc Jancovici \u2013 \u00c9lection pr\u00e9sidentielle 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6911369361375035392,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 854, + "length": 23, + "miniCompany": { + "objectUrn": "urn:li:company:33227580", + "entityUrn": "urn:li:fs_miniCompany:33227580", + "name": "La Gazette des communes", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1581616718557?e=1684972800&v=beta&t=m7Pr6IlIVhcs_CoNc7VkYL4r6RLGL98-2u4XpFT35bw", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1581616718557?e=1684972800&v=beta&t=pgWg8xXII_OzVZRvArq0qOEOaeFwBzFDytNSQrtVN3M", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1581616718557?e=1684972800&v=beta&t=Hiftl-DMoJVEq3MlqVgm4JECuhQDQo5_XD0qF89bI_I", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQE40tbDM2906g/company-logo_" + } + }, + "universalName": "la-gazette-des-communes", + "dashCompanyUrn": "urn:li:fsd_company:33227580", + "trackingId": "lScqMe9/RrOITMJh7A1V6A==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Il y a 15 jours The Shift Project publiait sous forme de livre le r\u00e9sultat de ses travaux sur la \"r\u00e9silience des territoires\" (https://lnkd.in/eJ2mn-xt ). Ce projet tente de donner quelques cl\u00e9s de lecture et conseils pratiques aux \u00e9lus locaux pour commencer \u00e0 r\u00e9pondre \u00e0 la question suivante : comment organiser la vie locale pour \u00eatre plus aptes \u00e0 r\u00e9sister \u00e0 des perturbations croissantes tout en ayant moins de moyens ?\n\nCe projet a \u00e9t\u00e9 lanc\u00e9 avant la guerre en Ukraine, qui, apr\u00e8s le covid, illustre combien notre pays - et donc toutes ses collectivit\u00e9s - est d\u00e9pendant de chaines d'approvisionnement longues qui sont autant de points de vuln\u00e9rabilit\u00e9 dans un monde chahut\u00e9. et du chahut il va aussi y en avoir \u00e0 cause du changement climatique, dont les premi\u00e8res manifestations sont d\u00e9j\u00e0 un peu d\u00e9sagr\u00e9ables,et qui vont n\u00e9cessairement s'amplifier.\n\nLa Gazette des communes a souhait\u00e9 organiser une \"discussion\" avec des \u00e9lus locaux sur ce projet, ainsi que sur le plan de transformation de l'\u00e9conomie fran\u00e7aise (https://lnkd.in/esiqHkbf ) . En pratique j'ai \u00e9t\u00e9 invit\u00e9 \u00e0 pr\u00e9senter les grandes lignes du PTEF, puis il y a eu un tour de table des \u00e9lu(e)s pr\u00e9sent(e)s, puis j'ai planch\u00e9 sur le projet \"strat\u00e9gie de r\u00e9silience des territoires\", puis il y a de nouveau eu un (en fait plusieurs) tour de table pour avoir des r\u00e9actions.\n\nPour celles et ceux qui ont l'habitude des d\u00e9bats sur des chaines de t\u00e9l\u00e9vision avec des \u00e9lus \"nationaux\", il sera facile de remarquer que le ton et le contenu des \u00e9changes est ici fort diff\u00e9rent. D'abord personne ne se revendique d'une couleur politique pour \"cadrer\" son action locale (couleur qui n'est pas plus annonc\u00e9e par l'animateur, \u00e0 tel point que je suis bien incapable de dire qui \u00e9tait de quel bord). \n\nCeci allant peut-\u00eatre avec cela, les pan\u00e9listes ne se sont pas oppos\u00e9s pendant ce d\u00e9bat, o\u00f9 il a surtout \u00e9t\u00e9 question de probl\u00e8mes assez concrets auxquels ils \u00e9taient confront\u00e9s. \n\nDepuis que je m'int\u00e9resse \u00e0 la question de la d\u00e9carbonation de la soci\u00e9t\u00e9, il y a un sujet r\u00e9current de \"plus forte l\u00e9gitimit\u00e9\" au sein du monde politique pour mener l'action, \u00e0 savoir si c'est plut\u00f4t \u00e0 l'Etat ou plut\u00f4t aux \u00e9lus locaux de mener la barque.\n\nLa r\u00e9ponse est \u00e9videmment que nous avons besoin des deux. Laisser l'Etat en dehors de la planification de la d\u00e9carbonation n'aurait pas de sens, mais laisser les \u00e9lus locaux en dehors de la d\u00e9clinaison locale de la mise en oeuvre n'en aurait pas plus. Mieux : plus il y aura d'\u00e9lus locaux ayant bien compris le d\u00e9fi qui se pr\u00e9sente, et plus il y en aura qui agiront de fa\u00e7on pertinente \u00e0 leur niveau, et plus cela augmentera la probabilit\u00e9 que l'Etat soit s\u00e9rieux sur la question." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6911369361375035392,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6911369362150977536,urn:li:activity:6911369362150977536,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 5, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6911369362150977536,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6911369362150977536,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6911369362150977536", + "threadId": "activity:6911369362150977536", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6911369362150977536", + "urn": "urn:li:activity:6911369362150977536", + "numComments": 5, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6911369362150977536", + "reactionTypeCounts": [ + { + "count": 474, + "reactionType": "LIKE" + }, + { + "count": 34, + "reactionType": "PRAISE" + }, + { + "count": 27, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6911369362150977536", + "numLikes": 560, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6911369362150977536", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 560, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 7, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11mo \u2022 ", + "accessibilityText": "11 months ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6911010132529176577,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6911010132529176577", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6911010132529176577)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6911010132529176577)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-retour-en-force-du-charbon-en-europe-activity-6911010132529176577--dpZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6911010131895857152", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6911010132529176577", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6911010132529176577,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6911010132529176577,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6911010131895857152", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "bhksB1BS5Cu8GCpEAo1BCA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6911010132529176577,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7819183048942008486", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676562248432?e=1677240000&v=beta&t=Lzx8erVqAKv3lbJwF5HRbp-psaKrR0G9v5bexrVmJhU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676562248433?e=1677240000&v=beta&t=u18qITK-01rCAun8Ihc_onWE42nYBMaJMhgkHAkFnlE", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676562248433?e=1677240000&v=beta&t=CChNXMGpJ-usioaQyJEMluGulh9ND9jrhdz7LlHNq30", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676562248433?e=1677240000&v=beta&t=mRnDPXdjHVoYAk6wApVRvRqrX15q2F7rCTomnsOjCTg", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHhCljtJh82rQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7819183048942008486)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7819183048942008486)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le retour en force du charbon en Europe by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/le-retour-en-force-du-charbon-en-europe-1394150" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le retour en force du charbon en Europe" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6911010131895857152,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est le monde \u00e0 l'envers : permettant de diminuer les \u00e9missions de la production \u00e9lectrique de 60% environ par rapport au charbon, le gaz devait aider \u00e0 supprimer ce dernier de notre mix \u00e9lectrique (et donc pour l'essentiel de notre mix \u00e9nerg\u00e9tique, car l'essentiel du charbon sert \u00e0 produire de l'\u00e9lectricit\u00e9). C'\u00e9tait bien l\u00e0 une des directions prises par les pays europ\u00e9ens, surtout ceux qui n'avaient pas tr\u00e8s envie d'entendre parler de nucl\u00e9aire.\n\nMais le plan n'avait pas pr\u00e9vu l'\u00e9ventualit\u00e9 qu'il puisse y avoir un d\u00e9faut d'approvisionnement en gaz, et des prix qui grimpent au plafond. Que faire en pareil cas ?\n\nImpossible d'avoir beaucoup plus d'ENR \u00e0 bref d\u00e9lai : ces modes sont soit d\u00e9j\u00e0 inject\u00e9s pour la totalit\u00e9 de leur production (\u00e9olien, solaire et biogaz) et des capacit\u00e9s additionnelles sont lentes \u00e0 arriver, soit ne peuvent augmenter leur production (hydraulique ; tout le contenu des barrages est d\u00e9j\u00e0 utilis\u00e9). \n\nImpossible d'avoir beaucoup plus de nucl\u00e9aire (hors probl\u00e8me de capacit\u00e9 disponible comme en France que l'on peut esp\u00e9rer r\u00e9soudre \u00e0 l'horizon de l'ann\u00e9e) : \u00e0 part en France, o\u00f9 les r\u00e9acteurs font du suivi de charge (parce que nous avons beaucoup de nucl\u00e9aire), le nucl\u00e9aire produit en base, c'est \u00e0 dire en permanence. En outre on ne rajoute pas un r\u00e9acteur en quelques mois ! \n\nIl reste une possibilit\u00e9 : augmenter la production au charbon. Il s'agit bien du charbon (ou de la houille) et non du lignite, ce dernier combustible \u00e9tant le charbon de \"mauvaise qualit\u00e9\" (teneur en carbone pas tr\u00e8s \u00e9lev\u00e9e beaucoup d'eau) qui s'exploite avec des excavatrices g\u00e9antes dans des mines \u00e0 ciel ouvert, et qui lui aussi produit en g\u00e9n\u00e9ral \u00e0 puissance maximale en permanence (du moins en Allemagne).\n\nLes centrales \u00e0 charbon de type \"houille\" ont g\u00e9n\u00e9ralement un facteur de charge inf\u00e9rieur \u00e0 100%. Si on trouve du charbon (car une bonne partie est import\u00e9e en Europe) on peut donc augmenter la production au charbon en cas de d\u00e9faut de gaz, ou de prix trop \u00e9lev\u00e9.\n\nEt c'est exactement ce qui s'est pass\u00e9 en Europe en 2021, avec une hausse de pr\u00e8s de 20% de la production \u00e9lectrique au charbon." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6911010131895857152,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6911010132529176577,urn:li:activity:6911010132529176577,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 67, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6911010132529176577,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6911010132529176577,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6911010132529176577", + "threadId": "activity:6911010132529176577", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6911010132529176577", + "urn": "urn:li:activity:6911010132529176577", + "numComments": 96, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6911010132529176577", + "reactionTypeCounts": [ + { + "count": 543, + "reactionType": "LIKE" + }, + { + "count": 169, + "reactionType": "MAYBE" + }, + { + "count": 148, + "reactionType": "INTEREST" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6911010132529176577", + "numLikes": 872, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6911010132529176577", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 872, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6910502064171188224,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6910502064171188224", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6910502064171188224)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6910502064171188224)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_consommer-moins-d%C3%A9nergie-la-meilleure-activity-6910502064171188224-s77G?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6910502063579803648", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6910502064171188224", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6910502064171188224,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6910502064171188224,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6910502063579803648", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "vCYHl1RuQaqoTSYNiSH+vQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6910502064171188224,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8229863569182967120", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676368843321?e=1677240000&v=beta&t=2oULZcTkYLpqzlIRsIrF4ShDo8R2XWeZRBBSUdg8-dI", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676368843321?e=1677240000&v=beta&t=2iDz0zC2jLgFeem-yZ-AR44NJ1DKc8axnsYgVZp5kYc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676368843321?e=1677240000&v=beta&t=m4aw9HDQ2U5DuGF0rDHIlSfoItp96x2NWb0iui9s5Yc", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676368843321?e=1677240000&v=beta&t=ydOS1TMSBZUs7za8yHzAHWab0feXN0V3bCjQeEqXyXo", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQECT1OWChBy8A/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8229863569182967120)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8229863569182967120)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Consommer moins d\u2019\u00e9nergie : la meilleure arme pour se passer du p\u00e9trole et du gaz russe en un temps record | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/article-russie-sobriete" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Consommer moins d\u2019\u00e9nergie : la meilleure arme pour se passer du p\u00e9trole et du gaz russe en un temps record | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6910502063579803648,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 472, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "yHalykF3R56pjO55QetwwQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "S'il faut se passer du p\u00e9trole et du gaz russes, en ne comptant pas trop sur la possibilit\u00e9 de se retourner vers d'autres producteurs (notamment sur le p\u00e9trole dont la production future, sur terre, risque de ne pas beaucoup augmenter avant un d\u00e9clin marqu\u00e9 : https://lnkd.in/dwPcgve), il va falloir faire... des \u00e9conomies.\n\nLa question devient alors : que pouvons nous \u00e9conomiser, comment, et \u00e0 quel horizon de temps ? Parlons chiffres : cet article publi\u00e9 sur le site de Carbone 4 d\u00e9taille l'utilisation du p\u00e9trole et du gaz en France, et fournit \u00e9galement l'ordre de grandeur des \u00e9conomies possibles (pour le p\u00e9trole et pour le gaz) associ\u00e9es \u00e0 un certain nombre de gestes de sobri\u00e9t\u00e9.\n\nPour le p\u00e9trole, ralentir sur la route (dont limitation \u00e0 110 sur autoroute), avoir une conduite \"sobre\" (pas d'acc\u00e9l\u00e9rations furieuses, par exemple), et \u00e9viter de prendre la voiture pour les d\u00e9placements courts, permettrait de se passer du p\u00e9trole russe (environ 10% de notre consommation) \u00e0 l'horizon de l'ann\u00e9e. \n\nEvidemment, ce calcul est fait \u00e0 la maille fran\u00e7aise. A la maille europ\u00e9enne (un tiers du p\u00e9trole provient de ce pays) cela n'est plus suffisant, or il y aurait probablement un goulet d'\u00e9tranglement sur nos autres fournisseurs si les autres pays europ\u00e9ens d\u00e9cident aussi de se tourner vers d'autres producteurs.\n\nPour le gaz, qui sert avant tout au chauffage, aucune marge n'est rapide \u00e0 part baisser le thermostat (rappelons que la r\u00e9glementation est que la temp\u00e9rature int\u00e9rieure ne doit pas d\u00e9passer 19 \u00b0C !). Isoler ou passer \u00e0 la pompe \u00e0 chaleur demandent des ann\u00e9es pour que le r\u00e9sultat soit l\u00e0. Et, comme pour le p\u00e9trole, si les autres pays ne veulent plus de la Russie, cela cr\u00e9era un goulet d'\u00e9tranglement sur les autres producteurs (pour le moment la France importe de Norv\u00e8ge une part majeure de son gaz, mais la Norv\u00e8ge devra fournir d'autres pays - dont l'Allemagne - si toute l'Europe cherche \u00e0 se d\u00e9tourner de la Russie).\n\nCe que rappelle cet \u00e9pisode russe, c'est que l'absence de d\u00e9carbonation n'est pas une option. A partir du moment o\u00f9 p\u00e9trole et gaz sont \u00e9puisables, il arrive un moment o\u00f9 nous devons faire avec moins, climat ou pas. \n\nEvidemment personne n'a de boule de cristal pour pr\u00e9dire quand exactement et avec quelles modalit\u00e9s exactement ce \"moins\" arrive. Par contre, tabler sur le fait que nous n'aurons jamais de mauvaise surprise c\u00f4t\u00e9 fourniture dans un monde qui reste d\u00e9pendant aux hydrocarbures est un pari que nous sommes s\u00fbrs de perdre. \n\nPas de mauvaise surprise, c'est pourtant ce qu'ont suppos\u00e9 les candidat(e)s en 2017, et je ne suis pas sur que les programmes actuellement pr\u00e9sent\u00e9s soient tous compatibles avec une nouvelle r\u00e9cession significative qui arriverait pendant le prochain mandat \u00e0 cause d'une nouvelle \"mauvaise surprise\"." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6910502063579803648,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6910502064171188224,urn:li:activity:6910502064171188224,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 110, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6910502064171188224,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6910502064171188224,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6910502064171188224", + "threadId": "activity:6910502064171188224", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6910502064171188224", + "urn": "urn:li:activity:6910502064171188224", + "numComments": 188, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6910502064171188224", + "reactionTypeCounts": [ + { + "count": 2198, + "reactionType": "LIKE" + }, + { + "count": 189, + "reactionType": "INTEREST" + }, + { + "count": 101, + "reactionType": "PRAISE" + }, + { + "count": 69, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6910502064171188224", + "numLikes": 2592, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6910502064171188224", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2592, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6910270104580583424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:11435106", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "Pd9bmYV/RtO5aOHArrPF4Q==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 15, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "Pd9bmYV/RtO5aOHArrPF4Q==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbon4 Finance" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Carbon4 Finance", + "actionTarget": "https://www.linkedin.com/company/carbon4finance/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A11435106" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "19,600 followers" + }, + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:11435106", + "followerCount": 19600, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:11435106", + "following": false, + "trackingUrn": "urn:li:company:11435106" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followCompany" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6909812414804815873,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6909812414804815873", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6909812414804815873)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6909812414804815873)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/carbon4finance_laurent-morel-associ%C3%A9-de-carbone-4-activity-6909812414804815873-91xg?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6909812414158888960", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:11435106", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6909812414804815873,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6909812414804815873,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6909812414158888960", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "B+cQ+gml3mET7+GpgOuU1w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6909812414804815873,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8240372061625848396", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 750, + "fileIdentifyingUrlPathSegment": "800/0/1676546690472?e=1677240000&v=beta&t=_y1fE0gm1izf_YGEWN-1jpB_Am8zXf61a1RhKV6NTfA", + "expiresAt": 1677240000000, + "height": 490 + }, + { + "width": 750, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676546690473?e=1677240000&v=beta&t=NY-OCr5tIcWfcGyF1RnGmai_eKO5c-Syw8JqRZ_OR_U", + "expiresAt": 1677240000000, + "height": 490 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676546690473?e=1677240000&v=beta&t=BxDSoNY1KIjPemoQEijzX9GVMwEokLYIipkZjZINmsU", + "expiresAt": 1677240000000, + "height": 104 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676546690473?e=1677240000&v=beta&t=GXp8KtY4CTVjldAk6hI6IjFxPgNjrtaqKE-8ywe3034", + "expiresAt": 1677240000000, + "height": 313 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEMzoOzjVzIsw/articleshare-shrink_" + }, + "displayAspectRatio": 0.6533333333333333 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8240372061625848396)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8240372061625848396)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "forbes.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Laurent Morel (associ\u00e9 de Carbone 4) : \u00ab Les entreprises d\u00e9carbon\u00e9es sont d\u00e9j\u00e0 pr\u00eates pour le monde de demain \u00bb - Forbes France by forbes.fr", + "actionTarget": "https://www.forbes.fr/finance/laurent-morel-associe-de-carbone-4-les-entreprises-decarbonees-sont-deja-pretes-pour-le-monde-de-demain/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Laurent Morel (associ\u00e9 de Carbone 4) : \u00ab Les entreprises d\u00e9carbon\u00e9es sont d\u00e9j\u00e0 pr\u00eates pour le monde de demain \u00bb - Forbes France" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6909812414158888960,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 2, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "11EMrCZJQVaCONJhotN5NQ==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 791, + "length": 6, + "miniCompany": { + "objectUrn": "urn:li:company:5597", + "entityUrn": "urn:li:fs_miniCompany:5597", + "name": "Forbes", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1664975262278?e=1684972800&v=beta&t=uhkv_UIVxvnDNB7Qh1bppFJvi_xFjeHJurc9iRUAvO8", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1664975262278?e=1684972800&v=beta&t=quXGvijLFNgnXmPXhnMfaVgjZ1lk8xPNX3uzY57ydDs", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1664975262278?e=1684972800&v=beta&t=Pqa8iH-uYcAnrAdXwp4My_fdGPCcwk1sm2rWFn5jS00", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E0BAQF-t47ix2ppcg/company-logo_" + } + }, + "universalName": "forbes-magazine", + "dashCompanyUrn": "urn:li:fsd_company:5597", + "trackingId": "/kYdFW30Teu9G+mmOGvN9A==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 825, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "0JbRTjz3Qw6MifXwGStqDA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": " \"Carbon4 Finance est une v\u00e9ritable fabrique de #donn\u00e9es #carbone de r\u00e9f\u00e9rence sur toutes les entreprises cot\u00e9es du monde, qui tel un bureau de recherche financier se base sur la documentation publique pour \u00e9mettre des calculs et des avis sur toutes sortes de titres cot\u00e9s : actions, obligations vertes, obligations souveraines,\u00a0etc. \n(...)\nNous nous rapprochons de plus en plus d\u2019un monde d\u00e9carbon\u00e9 ; \u00e0 mesure que les pr\u00e9f\u00e9rences collectives \u00e9voluent, au m\u00eame titre que la politique et les r\u00e9glementations. Notre r\u00f4le est donc de\u00a0mesurer la contribution qu\u2019ont des entreprises dans la transition climatique, leur alignement avec les enjeux de la d\u00e9carbonation. Si ces derni\u00e8res sont en retard sur la question, elles seront tr\u00e8s bient\u00f4t expos\u00e9es aux risques de transition.\"\n\nInterview\u00e9 dans Forbes, Laurent Morel, associ\u00e9 de Carbone 4, parle du r\u00f4le des donn\u00e9es analys\u00e9es par Carbon4 Finance et des solutions que nous proposons pour calculer l'empreinte carbone d'un portefeuille, \u00e9valuer les risques physiques ou encore mesurer l'impact des entreprises sur la biodiversit\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6909812414158888960,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6909812414804815873,urn:li:activity:6909812414804815873,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 0, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6909812414804815873,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6909812414804815873,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6909812414804815873", + "threadId": "activity:6909812414804815873", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6909812414804815873", + "urn": "urn:li:activity:6909812414804815873", + "numComments": 0, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6909812414804815873", + "reactionTypeCounts": [ + { + "count": 67, + "reactionType": "LIKE" + }, + { + "count": 4, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6909812414804815873", + "numLikes": 76, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6909812414804815873", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 76, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6910270104580583424", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6910270104580583424)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6910270104580583424)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_laurent-morel-associ%C3%A9-de-carbone-4-activity-6910270104580583424-Q9ha?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6910270103804633088", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6910270104580583424", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6910270104580583424,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6910270104580583424,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6910270103804633088", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "B+cQ+gml3mET7+GpgOuU1w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6910270104580583424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6910270103804633088,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s l'annonce (https://lnkd.in/eR4RTjuR ) que l'Eurosyst\u00e8me - et les banques centrales qui le composent - allait utiliser les donn\u00e9es de Carbon 4 Finance pour l'analyse des \"portefeuilles de politique non mon\u00e9taires\" (cela recouvre notamment les titres - actions et obligations - que les banques commerciales apportent en garantie quand les banques centrales leur offrent des liquidit\u00e9s), le magazine Forbes a interview\u00e9e Laurent Morel sur le m\u00e9tier de notre branche data.\n\nComme la situation actuelle le rappelle, d\u00e9carboner l'\u00e9conomie n'est pas juste arr\u00eater d'investir dans les op\u00e9rateurs p\u00e9troliers. Pas de p\u00e9trole, pas d'\u00e9conomie ! Il ne faut pas chercher ailleurs la raison pour laquelle l'Europe ne peut pas boycotter le p\u00e9trole et la gaz russes....\n\nPour comprendre en quoi toute entreprise d\u00e9pend aujourd'hui directement ou indirectement des combustibles fossiles, il faut regarder ce que l'on appelle sa chaine de valeur (de la mine \u00e0 la fin de l'utilisation du produit ou service par le client final), et voir quels maillons d\u00e9pendent - et combien - des combustibles fossiles.\n\nTrop longtemps le secteur financier a refus\u00e9 de prendre les \u00e9missions dites indirectes en consid\u00e9ration alors qu'elles sont indispensables pour mener une analyse de risque (https://lnkd.in/eVSer7fm ). De fait, si le fournisseur n'a plus d'\u00e9nergie pour produire, ou si le client ne peut plus se d\u00e9placer faute de p\u00e9trole, cela changera le destin de l'entreprise m\u00eame si les \u00e9missions ne sont pas \"chez elle\" !\n\nD'autres \u00e9l\u00e9ments sont fournis par Carbon 4 Finance : ce que l'on appelle les \u00e9missions \u00e9vit\u00e9es (caract\u00e9risant, le cas \u00e9ch\u00e9ant, le fait que le produit de l'entreprise en remplace un \"moins bien\"), ou encore l'ad\u00e9quation des ambitions de l'entreprise avec le probl\u00e8me \u00e0 traiter.\n\nLa promesse que nous faisons \u00e0 nos clients n'est pas de leur permettre de rendre leurs investissements \"compatibles accord de Paris\" sans changer grand chose \u00e0 leur mani\u00e8re de travailler. Notre promesse est essentiellement de leur permettre de comprendre o\u00f9 en sont leurs investissements (ou pr\u00eats) au regard du climat." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6910270103804633088,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6910270104580583424,urn:li:activity:6910270104580583424,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 2, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6910270104580583424,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6910270104580583424,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6910270104580583424", + "threadId": "activity:6910270104580583424", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6910270104580583424", + "urn": "urn:li:activity:6910270104580583424", + "numComments": 6, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6910270104580583424", + "reactionTypeCounts": [ + { + "count": 179, + "reactionType": "LIKE" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6910270104580583424", + "numLikes": 218, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6910270104580583424", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 218, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6910133481985466368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6910133481985466368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6910133481985466368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6910133481985466368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-gouvernement-a-pr%C3%A9sent%C3%A9-hier-son-plan-activity-6910133481985466368-0As3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6910133481092091904", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6910133481985466368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6910133481985466368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6910133481985466368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6910133481092091904", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "3QOFYdK4Y0nmFUFUJ/1twg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6910133481985466368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHTNwYL_ZnZpw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHTNwYL_ZnZpw", + "artifacts": [ + { + "width": 1488, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1647504203929?e=1679529600&v=beta&t=XdV9v0YNLyQChGY3Rlk4mz8cBhngG3-fdnB-u8y9DIo", + "expiresAt": 1679529600000, + "height": 1212 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1647504205563?e=1679529600&v=beta&t=bbltlDZzW4BnnqJcm7Yhcl-m9n9kXRsxr8EEJB4tXzc", + "expiresAt": 1679529600000, + "height": 16 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1647504205563?e=1679529600&v=beta&t=zi4mVcLkYQ2vQDYkzpPcquSLRUR1a5Tsv1SCEQvxGbg", + "expiresAt": 1679529600000, + "height": 1043 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1647504205563?e=1679529600&v=beta&t=KKzdDfdAmkyjIhQE-4F775-IP1oBvDH_BN_HpI2eDN8", + "expiresAt": 1679529600000, + "height": 391 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1647504205563?e=1679529600&v=beta&t=mLhuH8ulREo3l9yl9fknOhMld-cLv0SwhIgWmbm4Luk", + "expiresAt": 1679529600000, + "height": 130 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1647504205563?e=1679529600&v=beta&t=wf0sg9MXMHhCWUHpXA0i_IQ7P-MqleGWuAEhN__gWTg", + "expiresAt": 1679529600000, + "height": 652 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHTNwYL_ZnZpw/feedshare-shrink_" + }, + "displayAspectRatio": 0.8145161290322581 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, application" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6910133481092091904,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le gouvernement a pr\u00e9sent\u00e9 hier son \"plan de r\u00e9silience \u00e9conomique et sociale\" qui constitue la r\u00e9ponse de l'Etat \u00e0 la situation tendue sur l'\u00e9nergie cr\u00e9\u00e9e dans notre pays par la guerre en Ukraine : https://lnkd.in/ehA2dXf5\n\nLa \"gros du plan\" vise \u00e0 soulager les tr\u00e9soreries : subvention des carburants (particuliers et professionnels), garantie par l'Etat de diverses cat\u00e9gories de pr\u00eats, ou d\u00e9calage des paiements de la TVA (ou des charges sociales).\n\nMais ces mesures ne diminuent en rien notre d\u00e9pendance aux importations de combustibles fossiles (au contraire la subvention aux consommateurs la p\u00e9rennise). Nous ne serons pas en meilleure posture \"physique\" apr\u00e8s ces mesures qu'avant.\n\nCe qui contribuerait \u00e0 r\u00e9soudre \"physiquement\" le probl\u00e8me \u00e0 l'horizon de la semaine ou du mois serait la baisse imm\u00e9diate de la consommation \u00e0 ces m\u00eames \u00e9chelles de temps. On peut songer (exemples illustratifs) :\n- \u00e0 la limitation de la vitesse sur autoroute\n- \u00e0 la mise en place \u00e0 tr\u00e8s bref d\u00e9lai d'un plan de covoiturage entreprises (domicile - travail = 1/3 de la mobilit\u00e9 en voiture)\n- \u00e0 l'optimisation du taux de remplissage des transporteurs routiers (obligation de remplissage minimum pour pouvoir rouler)\n- \u00e0 la baisse de la temp\u00e9rature de consigne dans tous les b\u00e2timents chauff\u00e9s au fioul ou au gaz (et m\u00eame pour l'\u00e9lectricit\u00e9 dans la mesure o\u00f9 une partie de cette derni\u00e8re est produite au gaz)\n- \u00e0 la baisse imm\u00e9diate et r\u00e9glement\u00e9e du nombre de vols autoris\u00e9s \u00e0 d\u00e9coller (avant covid 10% du carburant utilis\u00e9 en France concernait l'aviation).\n\nLe plan propose aussi une acc\u00e9l\u00e9ration des investissements \"d\u00e9carbonants\" (b\u00e2timents, mobilit\u00e9, ENR). Outre que certains sont plus d\u00e9carbonants que d'autres, ces mesures sont \u00e0 moyen et long terme. Leur appliquer le terme de \"r\u00e9silience\" \u00e0 court terme est donc \u00e0 nuancer.\n\nEn mati\u00e8re d'agriculture, le plan consiste \u00e0 subventionner les \u00e9leveurs expos\u00e9s \u00e0 la hausse du prix des c\u00e9r\u00e9ales, et \u00e0 s'assurer que toute hausse sera bien pass\u00e9e au consommateur final via la distribution. A nouveau pas d'incitation \u00e0 proc\u00e9der autrement.\n\nEnfin le plan \u00e9voque la diversification des d\u00e9bouch\u00e9s pour les exportateurs (en 2021, la France a export\u00e9 6,5 Mds \u20ac de biens vers la Russie) et la s\u00e9curisation des importations. Mais \u00e0 court terme ces mesures sont partielles. Trouver de nouveaux clients est parfois rapide (forte demande et chaines logistiques faciles \u00e0 modifier), mais pas toujours.\n\nEt surtout pour les importations de m\u00e9taux critiques (tungst\u00e8ne, palladium, platine...) la diversification des approvisionnements est un probl\u00e8me de moyen et long terme.\n\nApr\u00e8s le covid, la guerre en Ukraine est une nouvelle forme de \"d\u00e9mondialisation accidentelle\" : rupture des approvisionnements ou des d\u00e9bouch\u00e9s. Ce que r\u00e9v\u00e8le ce plan, c'est que nous n'avons toujours pas pens\u00e9 le 21\u00e8 si\u00e8cle tr\u00e8s diff\u00e9remment du 20\u00e8." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6910133481092091904,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6910133481985466368,urn:li:activity:6910133481985466368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 139, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6910133481985466368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6910133481985466368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6910133481985466368", + "threadId": "activity:6910133481985466368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6910133481985466368", + "urn": "urn:li:activity:6910133481985466368", + "numComments": 259, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6910133481985466368", + "reactionTypeCounts": [ + { + "count": 3055, + "reactionType": "LIKE" + }, + { + "count": 376, + "reactionType": "INTEREST" + }, + { + "count": 204, + "reactionType": "PRAISE" + }, + { + "count": 180, + "reactionType": "MAYBE" + }, + { + "count": 35, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6910133481985466368", + "numLikes": 3863, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6910133481985466368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3863, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6909758706427543552,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6909758706427543552", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6909758706427543552)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6909758706427543552)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_former-ling%C3%A9nieur-du-21e-si%C3%A8cle-le-shift-activity-6909758706427543552-8lE5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6909758705446105088", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6909758706427543552", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6909758706427543552,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6909758706427543552,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6909758705446105088", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "REQRDug3yHLuqhipCj/a9A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6909758706427543552,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8047968654327702369", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675946028707?e=1677240000&v=beta&t=__mZHW3ljverP3B0krvt8UNt07TqO2oPxoCJKP33ZLc", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675946028707?e=1677240000&v=beta&t=4LbB9tV9FHQeiQoRyyTsjXEi0dU0XWJ3PRI5GgSBJ8c", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675946028707?e=1677240000&v=beta&t=uoYCJv-RuIeq9LmNS1yY59WzfwOVz9bFA66JS63bFSU", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675946028707?e=1677240000&v=beta&t=WL2rirXxBqkbo9jT4Ig6cO7iRBDXKzrpBpsKLWNyOF0", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFy3GKdFEujbA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8047968654327702369)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8047968654327702369)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Former l'ing\u00e9nieur du 21e si\u00e8cle : le Shift publie son rapport final ! by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/publication-rapport-former-lingenieur-du-21esiecle/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Former l'ing\u00e9nieur du 21e si\u00e8cle : le Shift publie son rapport final !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6909758705446105088,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Exploiter au mieux la connaissance scientifique du moment pour le b\u00e9n\u00e9fice de la collectivit\u00e9\u00a0: ainsi pourrait-on tenter de d\u00e9finir l\u2019ing\u00e9nieur, d\u2019hier, d\u2019aujourd\u2019hui ou de demain. \n\u00a0\nQuand cette corporation s\u2019est mise au service de la r\u00e9volution industrielle, la science se composait pour l'essentiel des explications sur l\u2019agencement de la mati\u00e8re, les interactions du monde physique, d'o\u00f9 les ing\u00e9nieurs ont d\u00e9duit la fa\u00e7on de s\u2019en servir pour construire machines et objets. \n\u00a0\nMais la science ne se limite d\u00e9sormais plus \u00e0 cette dimension \"techniciste\". Elle s'enrichit d\u00e9sormais chaque jour un peu plus d\u2019une deuxi\u00e8me composante\u00a0: celle de l\u2019observation de l\u2019environnement, et de la caract\u00e9risation de ce qu\u2019il est d\u00e9sormais convenu d\u2019appeler les limites plan\u00e9taires. Nous savons chaque jour un peu plus que, avec 8 milliards de cosmonautes, notre vaisseau spatial est limit\u00e9, fragile, \u00e9puisable.\n\u00a0\nPour que le m\u00e9tier de l'ing\u00e9nieur reste d\u2019apporter \"le progr\u00e8s\" \u00e0 la population alors que le cadre a fortement chang\u00e9 (et donc la mani\u00e8re de d\u00e9finir le progr\u00e8s aussi), les \u00e9tablissements qui forment des ing\u00e9nieurs doivent aussi changer. Comment ? Suffit-il de rajouter quelques cours de sciences sur l'\u00e9tat de l'environnement ? \n\nC'est \u00e0 cette question que s'est attaqu\u00e9 The Shift Project, en prenant pour cobaye le groupe des INSA. Et, de fait, le sujet ne se limite pas \u00e0 rajouter quelques cours. Il faut traiter les antagonismes entre cours (par exemple comment r\u00e9concilier la vision physique, int\u00e9grant des limites, et la vision \u00e9conomique, bas\u00e9e sur une convention tenant ces limites pour nulles ?), la formation du corps enseignant, les d\u00e9sirs des employeurs (qui veulent favoriser leurs propres activit\u00e9s et non la collectivit\u00e9), les classements (qui aujourd'hui donnent une part importante aux r\u00e9mun\u00e9rations alors que les m\u00e9tiers \"qui sont utiles pour notre avenir\" sont parfois moins pay\u00e9s que ceux qui le sont moins), etc. Bref \"se mettre en ordre de marche\" demande de nombreux changements, et donc une volont\u00e9 (tr\u00e8s) forte de la direction.\n\nLe but du travail effectu\u00e9 n'\u00e9tait pas de faire des pr\u00e9conisations uniquement destin\u00e9es aux INSA (m\u00eame si il est num\u00e9riquement important dans le paysage !), mais bien d'en tirer un \"discours de la m\u00e9thode\" qui soit public et utilisable par tout \u00e9tablissement d'enseignement sup\u00e9rieur formant des ing\u00e9nieurs (rappelons que The Shift Project est une association d'int\u00e9r\u00eat g\u00e9n\u00e9ral).\n\nLe r\u00e9sultat de ce travail vient d'\u00eatre mis en ligne. Nous esp\u00e9rons qu'il aidera tous les \u00e9tablissements fran\u00e7ais concern\u00e9s (en attendant les autres !) \u00e0 fournir une formation en phase avec les enjeux, ce qui pour le moment est encore tr\u00e8s loin d'\u00eatre le cas.\n\nNB : Bien \u00e9videmment, nous ne pensons pas une minute, au Shift Project, que seules les formations d'ing\u00e9nieur sont concern\u00e9es. Nous avons \"juste\" commenc\u00e9 par le projet qui \u00e9tait le plus \u00e0 notre port\u00e9e, mais tout le monde doit s'y coller !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6909758705446105088,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6909758706427543552,urn:li:activity:6909758706427543552,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 95, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6909758706427543552,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6909758706427543552,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6909758706427543552", + "threadId": "activity:6909758706427543552", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6909758706427543552", + "urn": "urn:li:activity:6909758706427543552", + "numComments": 133, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6909758706427543552", + "reactionTypeCounts": [ + { + "count": 1862, + "reactionType": "LIKE" + }, + { + "count": 175, + "reactionType": "PRAISE" + }, + { + "count": 133, + "reactionType": "INTEREST" + }, + { + "count": 79, + "reactionType": "MAYBE" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 23, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6909758706427543552", + "numLikes": 2297, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6909758706427543552", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2297, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6909400865363648512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6909400865363648512", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6909400865363648512)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6909400865363648512)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rapport-du-groupe-ii-du-giec-les-points-activity-6909400865363648512-pFgJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6909400864700968960", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6909400865363648512", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6909400865363648512,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6909400865363648512,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6909400864700968960", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "2d1AbCzY/uvQBAKc1rN3iQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6909400865363648512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8669947795576969815", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676591370523?e=1677240000&v=beta&t=GbQ55co8HVmsE6depDi-kEi01X3Mo3XDnqJV_vNLiW8", + "expiresAt": 1677240000000, + "height": 446 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676591370523?e=1677240000&v=beta&t=bXg5gdWERtIF1p9VIPygmlc8QSY6cMmIbDObCvVjRTs", + "expiresAt": 1677240000000, + "height": 714 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676591370523?e=1677240000&v=beta&t=ZdA6dVppcO8SDhifn71kz6U7QCnMriS5N8mX4TbpcAQ", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676591370523?e=1677240000&v=beta&t=iXra_pKRN0Rmo4f3xv-EOlOi5g8S3FMKTUv63xGaCys", + "expiresAt": 1677240000000, + "height": 268 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHNGICkXx1NzQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5575 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8669947795576969815)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8669947795576969815)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Rapport du Groupe II du GIEC : Les points cl\u00e9s | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/article-giec-goupe2-points-cles" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Rapport du Groupe II du GIEC : Les points cl\u00e9s | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6909400864700968960,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Nous ne serons pas les premiers, mais en l'esp\u00e8ce abondance ne nuit pas : Carbone 4 vous propose un r\u00e9sum\u00e9 (en fran\u00e7ais) du r\u00e9sum\u00e9 pour d\u00e9cideurs (en anglais) du dernier rapport du GIEC, qui portait sur les impacts du changement climatique, impacts pass\u00e9s et impacts \u00e0 venir.\n\nLa liste est d\u00e9sormais longue - et r\u00e9sum\u00e9e dans la figure 2 - des \u00e9volutions n\u00e9gatives qui sont dues - ou dues pour partie - au changement climatique qui a \u00e9t\u00e9 engendr\u00e9 par le surplus d'effet de serre du aux activit\u00e9s humaines. \n\nEn fait, pour bien faire il faudrait faire un post par colonne de ce graphique, tant il contient d'informations. C'est une des difficult\u00e9s de lecture des graphiques tr\u00e8s riches produits par le GIEC : ils pourraient parfois justifier 15 ou 20 minutes d'explications \u00e0 l'oral !\n\nIl y a un petit - et m\u00eame un gros - manque dans ledit r\u00e9sum\u00e9 : il ne contient pas de graphiques sur les impacts futurs - graphiques par contre disponibles dans le r\u00e9sum\u00e9 technique - qui permettent de comprendre que \"chaque demi-degr\u00e9 compte, et m\u00eame chaque dixi\u00e8me de degr\u00e9 compte\". \n\nDe fait, les cons\u00e9quences seront fortement croissantes avec l'\u00e9l\u00e9vation de la temp\u00e9rature. Les d\u00e9g\u00e2ts de 2\u00b0C de r\u00e9chauffement ne seront pas \"juste\" le double de ceux caus\u00e9s par 1\u00b0C. A titre d'exemple, avec 1,1 \u00b0C 15% des coraux tropicaux mondiaux sont morts, et \u00e0 2\u00b0C ce sera 99%.\n\nIl y a une autre faiblesse dans ce r\u00e9sum\u00e9 : il ne souligne pas que la \"r\u00e9silience\" pour les soci\u00e9t\u00e9s humaines d\u00e9pend essentiellement de l'\u00e9nergie disponible. La convention \u00e9conomique n'int\u00e9grant pas la physique, les publications acad\u00e9miques relient la capacit\u00e9 \u00e0 faire face au \"niveau de d\u00e9veloppement\". Mais, au premier ordre, ce dernier est essentiellement la taille du parc de machines par personne. A perturbation \u00e9gale, moins d'\u00e9nergie signifiera plus de probl\u00e8mes." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6909400864700968960,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6909400865363648512,urn:li:activity:6909400865363648512,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 27, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6909400865363648512,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6909400865363648512,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6909400865363648512", + "threadId": "activity:6909400865363648512", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6909400865363648512", + "urn": "urn:li:activity:6909400865363648512", + "numComments": 41, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6909400865363648512", + "reactionTypeCounts": [ + { + "count": 1200, + "reactionType": "LIKE" + }, + { + "count": 148, + "reactionType": "INTEREST" + }, + { + "count": 74, + "reactionType": "MAYBE" + }, + { + "count": 28, + "reactionType": "PRAISE" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6909400865363648512", + "numLikes": 1480, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6909400865363648512", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1480, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6909050138086793216,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6909050138086793216", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6909050138086793216)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6909050138086793216)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lex%C3%A9cutif-d%C3%A9gaine-une-subvention-publique-activity-6909050138086793216-SuM1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6909050137252143105", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6909050138086793216", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6909050138086793216,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6909050138086793216,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6909050137252143105", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "knNAgeqK6/HuhQABvQp45A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6909050138086793216,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8675623200599507180", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675600570175?e=1677240000&v=beta&t=IvSwEvYa6zMSMB1orRhKYDNkAf-SqlB8ugjrZ7Ty934", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675600570175?e=1677240000&v=beta&t=L-_sy16lI5ERYqUTk-GOUl1ecmFR2DewRJC6aSA6nfc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675600570175?e=1677240000&v=beta&t=m_fVikV_uupkhqfkaEwXroYDFnRNGUatElaxrd83ok8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675600570175?e=1677240000&v=beta&t=19qeng7F2f5EmqB6t5vzZkYjU1tPUnSXqCux3faxLog", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGa_aunjMkprw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8675623200599507180)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8675623200599507180)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'ex\u00e9cutif d\u00e9gaine une subvention publique pour faire baisser le prix des carburants by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/politique-societe/gouvernement/le-gouvernement-annonce-une-remise-a-la-pompe-de-15-centimes-par-litre-a-partir-du-1er-avril-1393166" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'ex\u00e9cutif d\u00e9gaine une subvention publique pour faire baisser le prix des carburants" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6909050137252143105,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En p\u00e9riode de temps calme, il n'\u00e9tait pas question de monter le prix des carburants, \"pas tol\u00e9rable pour la population\". Arrive une mont\u00e9e des prix qui vient d'un ph\u00e9nom\u00e8ne ind\u00e9pendant de notre volont\u00e9, et alors... on les subventionne. Rappelons que cela signifie explicitement subventionner les producteurs (\u00e9trangers) de p\u00e9trole et de gaz (alors qu'on ne veut pas payer la guerre de Poutine !).\n\nEvidemment que cette hausse fait du mal \u00e0 certains portefeuilles. Mais le signal envoy\u00e9 par cette subvention est le plus mauvais qui soit. Il dit que ce qui se passe n'est qu'un accident et que derri\u00e8re il n'y aura plus de probl\u00e8me. Mais il se trouve que le probl\u00e8me ne fait que commencer, climat ou pas. Rystad Energy vient de r\u00e9viser \u00e0 la baisse ses perspectives de production de p\u00e9trole russe (embargo ou pas) qui aurait alors pass\u00e9 son pic en 2019. \n\nLa Mer du Nord d\u00e9cline, comme l'ensemble du continent africain. Les producteurs am\u00e9ricains de shale oil ne semblent pas vouloir (pouvoir ?) en faire beaucoup plus. Bref nous entrons de mani\u00e8re acc\u00e9l\u00e9r\u00e9e dans la tendance baissi\u00e8re sur le p\u00e9trole, et s'organiser correctement ne passe pas avant tout par des subventions d\u00e9cid\u00e9es \"dans la panique\".\n\nCette incompr\u00e9hension de la contrainte n'est pas le propre du camp en place. A l'instant Anne Hidalgo se faisait cuisiner (pour une fois de mani\u00e8re assez pertinente !) sur France Info sur ce sujet du prix de l'\u00e9nergie. Propositions de la candidate :\n- proposition d'un embargo sur gaz et p\u00e9trole russes imm\u00e9diats (rappel : 30% du p\u00e9trole et 40% du gaz consomm\u00e9s en Europe) tout en expliquant que le gouvernement subventionnerait les prix autant que n\u00e9cessaire.\n- baisser la TVA sur l'essence\n- se fournir en gaz de roche m\u00e8re aupr\u00e8s des USA\n\nBref la repr\u00e9sentante du PS (alli\u00e9 historiquement aux Verts) pr\u00f4ne l'exact inverse de ce qu'il faut faire en pareil cas (surtout ne pas baisser le prix de l'\u00e9nergie mais \u00e9ventuellement aider autrement), mais qui \"ne contredit en rien ce qu'il faut faire pour sortir des \u00e9nergies fossiles\" (sic). \n\nAu passage elle tacle Macron qui \"n'a pas fait ce qu'il fallait pour d\u00e9velopper les \u00e9nergies renouvelables\" (comme si les \u00e9oliennes et panneaux solaires auraient remplac\u00e9 des chaudi\u00e8res \u00e0 gaz et des voitures \u00e0 p\u00e9trole). Elle oublie un peu vite que Hollande - donc son propre camp - a fait ce qu'il pouvait pour favoriser le gaz :) (\u00e9tiquette \u00e9nergie \"pro-gaz\" dans le logement ; objectif de baisse du nucl\u00e9aire).\n\nLoin de moi l'id\u00e9e qu'il s'agisse d'une pr\u00e9f\u00e9rence exprim\u00e9e pour un camp plut\u00f4t qu'un autre. Il s'agit plut\u00f4t de souligner que l'impr\u00e9paration \u00e0 une situation qui n'\u00e9tait pourtant qu'une question de temps (un probl\u00e8me d'approvisionnement en combustibles fossiles qui allait potentiellement faire grimper les prix au plafond) est g\u00e9n\u00e9ralis\u00e9e parmi les candidat(e)s. Peut-\u00eatre qu'il est enfin temps que le personnel politique comprenne ce qu'est une limite physique, et tienne \u00e0 la population un discours adulte en cons\u00e9quence ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6909050137252143105,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6909050138086793216,urn:li:activity:6909050138086793216,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 229, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6909050138086793216,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6909050138086793216,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6909050138086793216", + "threadId": "activity:6909050138086793216", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6909050138086793216", + "urn": "urn:li:activity:6909050138086793216", + "numComments": 294, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6909050138086793216", + "reactionTypeCounts": [ + { + "count": 5675, + "reactionType": "LIKE" + }, + { + "count": 519, + "reactionType": "PRAISE" + }, + { + "count": 384, + "reactionType": "MAYBE" + }, + { + "count": 261, + "reactionType": "INTEREST" + }, + { + "count": 51, + "reactionType": "APPRECIATION" + }, + { + "count": 43, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6909050138086793216", + "numLikes": 6933, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6909050138086793216", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6933, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6908731632669605888,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6908731632669605888", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6908731632669605888)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6908731632669605888)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-gaz-une-arme-de-guerre-activity-6908731632669605888-yz5f?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6908731632048848896", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6908731632669605888", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6908731632669605888,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6908731632669605888,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6908731632048848896", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "EF8DowOg/INRbg172ZLlYQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6908731632669605888,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7563627684230909585", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 720, + "fileIdentifyingUrlPathSegment": "800/0/1676394333186?e=1677240000&v=beta&t=XpR0ZBz5hXD1Z4hqB4z2fXmKzjF5wIvC08m1SOIv6zc", + "expiresAt": 1677240000000, + "height": 522 + }, + { + "width": 720, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676394333186?e=1677240000&v=beta&t=PTPmVx8daAqcV2hGwmu4ktDaITv7r0RHBtGJUxom7qU", + "expiresAt": 1677240000000, + "height": 522 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676394333186?e=1677240000&v=beta&t=bYNdsCPs2DDIG82JbXroh8l6hQSgqhMeRALxt95hQao", + "expiresAt": 1677240000000, + "height": 116 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676394333186?e=1677240000&v=beta&t=cjTE2J7IglDSXtnmj8q-AccqpjYn2n6a_hlQXhvUlUI", + "expiresAt": 1677240000000, + "height": 348 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGjXUi3SEbPsQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.725 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7563627684230909585)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7563627684230909585)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "medium.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le gaz, une arme de guerre\u2026 by medium.com", + "actionTarget": "https://medium.com/@myco2/le-gaz-une-arme-de-guerre-fc0c7f9c4696" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le gaz, une arme de guerre\u2026" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6908731632048848896,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 319, + "length": 19, + "miniCompany": { + "objectUrn": "urn:li:company:66641273", + "entityUrn": "urn:li:fs_miniCompany:66641273", + "name": "MyCO2 par Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1594818120745?e=1684972800&v=beta&t=iu0KPu8LLJ9RAfjnT2Ns5LZl33RPKeM9HX6-ZLDA21k", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1594818120745?e=1684972800&v=beta&t=_mCrEcZ-7ykNMvdPjukL2wRv9vwlFKKCFeayuZ86FtM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1594818120745?e=1684972800&v=beta&t=oeC9Hq1Uc2ASP0IP9mQN7GVDE17ikFZ9KCBOFO9D33Y", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQG2GlbS3GKBow/company-logo_" + } + }, + "universalName": "myco2-par-carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:66641273", + "trackingId": "Xke1GqB6T6ywrdw6egdwDA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Finalement les europ\u00e9ens ne boycotteront pas le p\u00e9trole et le gaz russe \u00e0 bref d\u00e9lai. Quand on sait l'importance de ce fournisseur dans ces deux approvisionnements, et quand on sait l'importance de l'\u00e9nergie - donc du parc de machines - pour faire fonctionner le monde actuel, c'est l'inverse qui aurait \u00e9t\u00e9 \u00e9tonnant.\n\nMyCO2 par Carbone 4 vous propose un petit panorama sur le gaz en France : d'o\u00f9 vient-il (sachant que par effet ricochet, si la Russie cessait de nous fournir la comp\u00e9tition sur le gaz norv\u00e9gien n'en laisserait plus autant pour nous), \u00e0 quoi sert-il, et comment s'en passer (ce qui est aussi l'objectif du PTEF) \u00e0 quelles \u00e9ch\u00e9ances.\n\nLe \"coup de semonce\" actuel devrait utilement servir \u00e0 mettre en route les grandes manoeuvres acc\u00e9l\u00e9r\u00e9es dans la d\u00e9carbonation du chauffage. C'est un des usages o\u00f9 c'est essentiellement une affaire de volont\u00e9 \u00e0 confort presque constant. Il y a d'autres usages o\u00f9 ce sera moins simple." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6908731632048848896,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6908731632669605888,urn:li:activity:6908731632669605888,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 60, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6908731632669605888,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6908731632669605888,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6908731632669605888", + "threadId": "activity:6908731632669605888", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6908731632669605888", + "urn": "urn:li:activity:6908731632669605888", + "numComments": 115, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6908731632669605888", + "reactionTypeCounts": [ + { + "count": 1271, + "reactionType": "LIKE" + }, + { + "count": 185, + "reactionType": "INTEREST" + }, + { + "count": 134, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6908731632669605888", + "numLikes": 1610, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6908731632669605888", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1610, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6908433318703210496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6908433318703210496", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6908433318703210496)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6908433318703210496)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_environnement-ce-que-contient-le-dernier-activity-6908433318703210496-gBfs?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6908433318053093376", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6908433318703210496", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6908433318703210496,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6908433318703210496,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6908433318053093376", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "5Z0Bj3NwILehmG4AtHFkiQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6908433318703210496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7074623582325553039", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676217994260?e=1677240000&v=beta&t=Z63-bifvHNgA8bGZiklVpxaUggCFPpXgdJN4OuC7P0I", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676217994260?e=1677240000&v=beta&t=IeIv2OM7lxLykJYyxTnZan_bo4KWQKdnlMyQhDukqrw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676217994260?e=1677240000&v=beta&t=qO9GUP5SPZ28IsI6egLfcJ1f5ilhLWmdL9IBYTM04Kk", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676217994260?e=1677240000&v=beta&t=UcEReP9Mgwof-U0gTS0QN18SNdBLlWwTbCNTJ8e-pr0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFYJ5Ek4lDnrw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7074623582325553039)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7074623582325553039)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Environnement : ce que contient le dernier rapport du GIEC by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900133333-environnement-ce-que-contient-le-dernier-rapport-du-giec" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Environnement : ce que contient le dernier rapport du GIEC" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6908433318053093376,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Cela ne compensera pas le silence assourdissant que les media ont eu sur le rapport du groupe 2 du GIEC, mais c'est toujours bon \u00e0 prendre : les auditrices et auditeurs de RTL ont eu droit \u00e0 3 minutes sur la question dans la matinale d'aujourd'hui.\n\nEn 3 minutes il a fallu essayer de r\u00e9sumer au moins mal le message scientifique, ce qu'il faut en d\u00e9duire sur l'urgence de l'action pour ce que l'on peut encore g\u00e9rer, et le r\u00f4le des media dans la faiblesse de l'information sur la question.\n\nJusqu'au 31 d\u00e9cembre 2099 il y aura toujours plus urgent que 2100. Mais attendre que nous soyons sortis du \"probl\u00e8me du moment\" pour s'attaquer \u00e0 la question du climat est garantir que ce sont les crises qui r\u00e8gleront le probl\u00e8me \u00e0 notre place : \u00e0 cause des diverses limites plan\u00e9taires qui sont d\u00e9sormais partout autour d'une humanit\u00e9 \u00e0 8 milliards, consommant comme elle le fait maintenant, nous allons avoir de plus en plus de \"surprises\" pas sympathiques \u00e0 l'avenir. \n\nIl faut le dire encore et encore : les \"plans de transition\" doivent aussi pouvoir r\u00e9sister \u00e0 des contextes tr\u00e8s adverses (crises \u00e9conomiques, crises sociales, crises g\u00e9opolitiques, crises environnementales...). Il ne faut pas compter sur la croissance verte pour s'attaquer aux probl\u00e8mes... engendr\u00e9s par la croissance pas verte." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6908433318053093376,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6908433318703210496,urn:li:activity:6908433318703210496,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 29, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6908433318703210496,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6908433318703210496,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6908433318703210496", + "threadId": "activity:6908433318703210496", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6908433318703210496", + "urn": "urn:li:activity:6908433318703210496", + "numComments": 101, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6908433318703210496", + "reactionTypeCounts": [ + { + "count": 1433, + "reactionType": "LIKE" + }, + { + "count": 69, + "reactionType": "INTEREST" + }, + { + "count": 56, + "reactionType": "MAYBE" + }, + { + "count": 29, + "reactionType": "PRAISE" + }, + { + "count": 28, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6908433318703210496", + "numLikes": 1617, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6908433318703210496", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1617, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6907946057062617088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6907946057062617088", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6907946057062617088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6907946057062617088)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-project-publie-son-nouveau-livre-activity-6907946057062617088-v5AY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6907946056362151936", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6907946057062617088", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6907946057062617088,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6907946057062617088,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6907946056362151936", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "LeMbPRHu9lpmUEC70fOUxQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6907946057062617088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7759186567094175973", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676481945756?e=1677240000&v=beta&t=q5mSFzqqfN-fD0g8eSumB8_Z7q_zOHqvO9xPPe1ICRE", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676481945756?e=1677240000&v=beta&t=g6zwoHaOfdQ7DhtCiK3b726AOTmjV-A650FubF8nR0I", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676481945757?e=1677240000&v=beta&t=KsIcoMyYjneppcU1Wznmy3GaYSguPDQo9bI-OHVVGAY", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676481945757?e=1677240000&v=beta&t=8cwPCnFr7AMNGhkfRKNPVZvDd1gvZknAQSsdx2PYTes", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFdGqLyWefV4g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7759186567094175973)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7759186567094175973)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift Project publie son nouveau livre sur la r\u00e9silience des territoires ! by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/publication-livre-vers-la-resilience-des-territoires/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift Project publie son nouveau livre sur la r\u00e9silience des territoires !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6907946056362151936,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s le Plan de Transformation de l'Economie Fran\u00e7aise (qui s'est offert le luxe d'\u00eatre le livre le plus vendu par la FNAC la semaine du 18 au 25 f\u00e9vrier, au coude \u00e0 coude avec... Le monde sans fin), The Shift Project propose aux personnes int\u00e9ress\u00e9es par la \"r\u00e9silience des territoires\" (\u00e9lus locaux - avec 36000 communes en France ca en fait quand m\u00eame quelques centaines de milliers -, ex\u00e9cutifs locaux, ou toute personne voulant se plonger dans le sujet) sa nouvelle production : \"Vers la R\u00e9silience des Territoires\" (https://lnkd.in/e5G6DHAS. ).\n\nR\u00e9silience, quesse\u00e7a ? Il s'agit de conserver, ou de retrouver apr\u00e8s un choc, ou une perturbation adverse forte, une organisation locale qui fonctionne. \n\nNous devons d\u00e9sormais faire face \u00e0 un changement climatique dont certaines cons\u00e9quences vont aller croissant \u00e0 l'\u00e9chelle du si\u00e8cle ou plus quoi que nous fassions, \u00e0 cause de l'inertie du syst\u00e8me socio\u00e9conomique mondial, et \u00e0 cause des effets de seuil dans le monde qui nous entoure. \n\nNous devons aussi faire face \u00e0 la d\u00e9pl\u00e9tion des combustibles fossiles qui ont fait la soci\u00e9t\u00e9 industrielle et mondialis\u00e9e, l'\u00e9mergence des classes moyennes et l'am\u00e9nagement du territoire (tout le monde en ville ou presque), la structure des emplois etc (voir https://lnkd.in/dtHn5pbD pour la description du processus en images). L'actualit\u00e9 nous offre l'occasion de rappeler que rien n'est pr\u00eat pour faire face \u00e0 cette d\u00e9pl\u00e9tion, qui est non seulement possible mais certaine en tendance.\n\nDans ce contexte, comment r\u00e9organiser la vie locale ? Comment organiser l'approvisionnement alimentaire si moins de choses poussent ici et que moins de p\u00e9trole est disponible pour les faire venir de l\u00e0 ? Comment organiser les transports si moins de voitures sont disponibles pour des gens habitant en zone \"distendue\" o\u00f9 les transports en commun fortement maill\u00e9s sont inenvisageables ? \n\nComment assurer l'emploi si la mondialisation diminue et que les entreprises ne peuvent plus compter sur les m\u00eames chaines de valeur, qui ont aujourd'hui toutes des racines \u00e0 l'autre bout de la plan\u00e8te, ne serait-ce que pour les m\u00e9taux ou le p\u00e9trole ? Comment faire \u00e9voluer l'habitat ? \n\nEt surtout comment, pour des ex\u00e9cutifs locaux tr\u00e8s d\u00e9munis face \u00e0 cette n\u00e9cessit\u00e9 de voir les choses totalement diff\u00e9remment, o\u00f9 l'\u00e9conomie d'aujourd'hui est le plus mauvais guide qui soit pour pr\u00e9parer demain, int\u00e9grer les connaissances et comp\u00e9tences permettant de s'attaquer \u00e0 ce d\u00e9fi ?\n\nFortement illustr\u00e9, et comprenant de nombreux exemples et t\u00e9moignages, ce guide est destin\u00e9 aux \u00e9lus que les acteurs territoriaux d\u00e9sireux d\u2019\u0153uvrer d\u00e8s aujourd\u2019hui \u00e0 la r\u00e9silience de leur territoire." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6907946056362151936,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6907946057062617088,urn:li:activity:6907946057062617088,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 79, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6907946057062617088,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6907946057062617088,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6907946057062617088", + "threadId": "activity:6907946057062617088", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6907946057062617088", + "urn": "urn:li:activity:6907946057062617088", + "numComments": 106, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6907946057062617088", + "reactionTypeCounts": [ + { + "count": 1846, + "reactionType": "LIKE" + }, + { + "count": 140, + "reactionType": "PRAISE" + }, + { + "count": 91, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "INTEREST" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 18, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6907946057062617088", + "numLikes": 2166, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6907946057062617088", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2166, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6907579881631424512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6907579881631424512", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6907579881631424512)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6907579881631424512)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_p%C3%A9nuries-agricoles-inflation-ins%C3%A9curit%C3%A9-activity-6907579881631424512-XQvI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6907579880612188160", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6907579881631424512", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6907579881631424512,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6907579881631424512,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6907579880612188160", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "QqgVFsLvO2/77XNbO3LJcw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6907579881631424512,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7844007981494395710", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676578935685?e=1677240000&v=beta&t=beIgevy8x2Lho7kU1vWOUdOHXaWSvkSXMIgSIhCyfNM", + "expiresAt": 1677240000000, + "height": 394 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676578935685?e=1677240000&v=beta&t=LP46ba_PuZrPso_0_MhyHVMoAWRgOiHGXcueJfIKMwI", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676578935686?e=1677240000&v=beta&t=4nEuPScvMzJzU7Fvn768-9xJHkp4iV73784P-3V_OJM", + "expiresAt": 1677240000000, + "height": 78 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676578935686?e=1677240000&v=beta&t=Wpd1Rj2BR-j83MxjRHiQ7L3i1Oqsvg0MxBX6A6vIS4A", + "expiresAt": 1677240000000, + "height": 236 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEtpP-ao4xTdw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7844007981494395710)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7844007981494395710)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theconversation.com \u2022 9 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: P\u00e9nuries agricoles, inflation, ins\u00e9curit\u00e9 alimentaire : les r\u00e9percussions de la guerre en Ukraine by theconversation.com", + "actionTarget": "https://theconversation.com/penuries-agricoles-inflation-insecurite-alimentaire-les-repercussions-de-la-guerre-en-ukraine-178628" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "P\u00e9nuries agricoles, inflation, ins\u00e9curit\u00e9 alimentaire\u00a0: les\u00a0r\u00e9percussions de la\u00a0guerre en\u00a0Ukraine" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6907579880612188160,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il n'y a pas que dans le domaine des \u00e9nergies fossiles que la guerre en Ukraine va avoir des r\u00e9percussions plan\u00e9taires : cela pourrait \u00e9galement se voir en ce qui concerne le commerce mondial de certaines denr\u00e9es agricoles, notamment le bl\u00e9 (Ukraine et Russie combinent un tiers des exportations et quasiment tout transite par les ports de la Mer Noire ou de la Mer d'Azov), le ma\u00efs (Ukraine et Russie fournissent 20% du march\u00e9 mondial, et c'est surtout l'Ukraine), et enfin le tournesol (l'Ukraine est le premier exportateur mondial avec la moiti\u00e9 \u00e0 elle seule, et avec la Russie c'est 70% des exportations).\n\nCe risque sur les exportations de ces denr\u00e9es agricoles survient dans un contexte de s\u00e9cheresse frappant le pourtour de la M\u00e9diterran\u00e9e (tr\u00e8s coh\u00e9rente avec les effets attendus du r\u00e9chauffement climatique). Les pays du Sud de l'Europe sont en situation anormalement s\u00e8che pour une fin d'hiver (https://lnkd.in/dXseY92w ) et le Maroc est m\u00eame en train de faire face \u00e0 une s\u00e9cheresse exceptionnelle (https://lnkd.in/daamQ82P). Dans les deux cas de figure les r\u00e9servoirs pour l'irrigation sont en plus sous leur niveau normal de remplissage \u00e0 cette \u00e9poque.\n\nCet article de The Conversation explique que cela va engendrer une inflation significative des prix agricoles, qui sont d\u00e9j\u00e0 remont\u00e9s \u00e0 leur record atteint en 1974, au moment du premier choc p\u00e9trolier.\n\nCela va \u00e0 l'\u00e9vidence provoquer du remue m\u00e9nage au sein des pays fortement importateurs de denr\u00e9es agricoles et qui n'ont pas de recettes \u00e0 l'exportation pouvant contrebalancer. Certains sont ceux qui ont fait l'objet d'\u00e9meutes au moment du Printemps Arabe (https://lnkd.in/gaY7nrE ). \n\nProbl\u00e8me sur la disponibilit\u00e9 en \u00e9nergie en m\u00eame temps que cons\u00e9quences du changement climatique : voici un cocktail que nous aurons h\u00e9las de plus en plus souvent au 21\u00e8 si\u00e8cle. Il faut un plan !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6907579880612188160,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6907579881631424512,urn:li:activity:6907579881631424512,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 53, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6907579881631424512,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6907579881631424512,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6907579881631424512", + "threadId": "activity:6907579881631424512", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6907579881631424512", + "urn": "urn:li:activity:6907579881631424512", + "numComments": 75, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6907579881631424512", + "reactionTypeCounts": [ + { + "count": 1289, + "reactionType": "LIKE" + }, + { + "count": 258, + "reactionType": "INTEREST" + }, + { + "count": 177, + "reactionType": "MAYBE" + }, + { + "count": 26, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6907579881631424512", + "numLikes": 1763, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6907579881631424512", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1763, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6907224369362567168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6907224369362567168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6907224369362567168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6907224369362567168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9cret-sur-la-neutralit%C3%A9-carbone-des-produits-activity-6907224369362567168-Eu18?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6907224368787943424", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6907224369362567168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6907224369362567168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6907224369362567168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6907224368787943424", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "EDae9L3Eo3aVTgGkrXZGAA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6907224369362567168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7786747214619570649", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676287411389?e=1677240000&v=beta&t=4cD-esVW9hVgvAc_w2LUt62s28qOY58CO_SK04RQvKo", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676287411389?e=1677240000&v=beta&t=7UnKSng3JmZJVh83PzbF3LHBTrquc3q_7Mus8LqiOLc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676287411389?e=1677240000&v=beta&t=Mm7g6nbONw9Ip_GTook4VdAeNzL7sptYTizXtWLc8wE", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676287411389?e=1677240000&v=beta&t=A96IyONbDpC5giIwyerVOqkKNb7dQryp5pDngZaUmbs", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQE3xoD0PsxFSQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7786747214619570649)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7786747214619570649)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: D\u00e9cret sur la neutralit\u00e9 carbone des produits : demandez votre baril de p\u00e9trole neutre ! | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/article-decret-neutralite-greenwashing" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9cret sur la neutralit\u00e9 carbone des produits : demandez votre baril de p\u00e9trole neutre ! | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6907224368787943424,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un plein \u00e0 la pompe neutre en carbone ? Un vol en avion neutre en carbone ? Une centrale \u00e9lectrique au charbon neutre en carbone ? Tout cela est d\u00e9sormais possible en France, avec la b\u00e9n\u00e9diction du l\u00e9gislateur.\n\nQuelques jours \u00e0 peine apr\u00e8s la sortie du dernier rapport du GIEC, et alors que l'actualit\u00e9 nous rappelle avec force que la d\u00e9pendance aux \u00e9nergies fossiles est porteuse de risques ind\u00e9pendamment du climat, le gouvernement fran\u00e7ais vient de pr\u00e9ciser, dans un d\u00e9cret, les modalit\u00e9s d'application, en mati\u00e8re d'all\u00e9gations de neutralit\u00e9, de l'article de la loi climat et r\u00e9silience de juillet dernier.\n\nDans la version initiale du projet de loi, il \u00e9tait juste interdit de parler de \"neutralit\u00e9\" d'un produit ou d'une entreprise, ce qui \u00e9tait la cons\u00e9quence logique d'une observation des faits : all\u00e9guer qu'un produit ou service a \u00e9t\u00e9 \u00e9labor\u00e9 sans \u00e9missions, ou en utilisant un \"balai sp\u00e9cial\" qui aurait fait dispara\u00eetre ces \u00e9missions comme si elles n'avaient pas eu lieu, est en fait une affirmation invalide (https://lnkd.in/dGTt6Zs ). \n\nMais, par le jeu des amendements d\u00e9pos\u00e9s par les parlementaires (qui sont eux-m\u00eames sollicit\u00e9s par des porteurs d'int\u00e9r\u00eat, ce qui est le jeu normal de la d\u00e9mocratie), il est devenu possibledans l'article final de revendiquer la neutralit\u00e9 d'un produit \"sous certaines conditions\", pr\u00e9cis\u00e9es par d\u00e9cret.\n\nCe qu'explique cet article de Carbone 4, c'est que le d\u00e9cret tout juste pris rend les conditions en question tr\u00e8s faciles \u00e0 satisfaire, et vont donc permettre \u00e0 qui le veut - y compris un exploitant de centrales \u00e0 charbon ou un vendeur de carburants - de revendiquer la neutralit\u00e9 de son produit ou service. \n\nComme le dit cet article en conclusion, nous venons en pratique de permettre \"l\u2019\u00e9mergence d\u2019un monde \u00e0 +4\u00b0C peupl\u00e9 de produits et services neutres\u201d. L'\u00e9tape suivante sera-t-elle l'ouverture en France d'une ESG - \"\u00e9cole sup\u00e9rieure du greenwashing\" - pour apprendre \u00e0 bien mettre ces dispositions en oeuvre ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6907224368787943424,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6907224369362567168,urn:li:activity:6907224369362567168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 212, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6907224369362567168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6907224369362567168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6907224369362567168", + "threadId": "activity:6907224369362567168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6907224369362567168", + "urn": "urn:li:activity:6907224369362567168", + "numComments": 286, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6907224369362567168", + "reactionTypeCounts": [ + { + "count": 3742, + "reactionType": "LIKE" + }, + { + "count": 720, + "reactionType": "MAYBE" + }, + { + "count": 668, + "reactionType": "INTEREST" + }, + { + "count": 119, + "reactionType": "PRAISE" + }, + { + "count": 83, + "reactionType": "APPRECIATION" + }, + { + "count": 29, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6907224369362567168", + "numLikes": 5361, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6907224369362567168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5361, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6906991209211162625,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6906991209211162625", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6906991209211162625)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6906991209211162625)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climate-crisis-amazon-rainforest-tipping-activity-6906991209211162625-NJkW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6906991208623951872", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6906991209211162625", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6906991209211162625,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6906991209211162625,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6906991208623951872", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "7lzCGuSeu3i/STGJBfbIcQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6906991209211162625,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7699030319694476584", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676523808979?e=1677240000&v=beta&t=j89zTgV6ObgRWHfhcsxS48b_50uxvAo3RmAlEt9jxL4", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676523808979?e=1677240000&v=beta&t=ybp06PuPxAClHcklotBswvh1uy9xpZXGcDy0Flpgd8Y", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676523808979?e=1677240000&v=beta&t=QHjU356tWy7u9KgdgQ4kcECgU1feCDzVOTD8WvuRSkI", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676523808980?e=1677240000&v=beta&t=g-Fp90uGWR3IQaMF3qyKNHwno8PUo88P3hnK2VcshZc", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFjBmrz3Yui8A/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7699030319694476584)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7699030319694476584)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climate crisis: Amazon rainforest tipping point is looming, data shows by theguardian.com", + "actionTarget": "https://www.theguardian.com/environment/2022/mar/07/climate-crisis-amazon-rainforest-tipping-point" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climate crisis: Amazon rainforest tipping point is looming, data shows" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6906991208623951872,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un article paru dans The Guardian synth\u00e9tise un article scientifique lui-m\u00eame paru (hier) dans Nature Climate Change (https://lnkd.in/eK9avcK7 ) et qui porte sur l'\u00e9volution r\u00e9cente de la for\u00eat amazonienne.\n\nLes r\u00e9sultats ne sont gu\u00e8re rassurants (what else...) : la remise en \u00e9tat de la for\u00eat apr\u00e8s des s\u00e9cheresses ou des incendies - eux-m\u00eames de plus en plus fr\u00e9quents - est de plus en plus difficile.\n\nLes chercheurs se demandent si la for\u00eat n'est pas en train d'approcher d'un point de bascule, qui la verrait alors irr\u00e9m\u00e9diablement se transformer pour une large part en for\u00eat s\u00e8che ou en savane. Il en r\u00e9sulterait alors une perte massive de biodiversit\u00e9, mais aussi de carbone, avec en retour une acc\u00e9l\u00e9ration du r\u00e9chauffement - et de ses cons\u00e9quences - partout ailleurs sur la plan\u00e8te.\n\nComme augmenter le thermostat plan\u00e9taire un grand coup en tr\u00e8s peu de temps (un si\u00e8cle c'est tr\u00e8s tr\u00e8s court \u00e0 l'\u00e9chelle des temps g\u00e9ologiques) est une exp\u00e9rience in\u00e9dite, sans pr\u00e9c\u00e9dent auquel se r\u00e9f\u00e9rer, la seule chose de certaine en pareil cas est qu'il y aura une partie de \"grand saut dans l'inconnu\".\n\nEn pratique, cela signifie que pour certains processus la compr\u00e9hension de ce qui va se passer de mani\u00e8re fine arrivera beaucoup trop tard pour que l'on puisse alors y changer quoi que ce soit. Et il est illusoire d'attendre que tous nos probl\u00e8mes de court terme soient r\u00e9gl\u00e9s pour commencer \u00e0 nous attaquer en grand au changement climatique : cette situation n'arrivera h\u00e9las jamais." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6906991208623951872,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6906991209211162625,urn:li:activity:6906991209211162625,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 24, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6906991209211162625,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6906991209211162625,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6906991209211162625", + "threadId": "activity:6906991209211162625", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6906991209211162625", + "urn": "urn:li:activity:6906991209211162625", + "numComments": 37, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6906991209211162625", + "reactionTypeCounts": [ + { + "count": 609, + "reactionType": "LIKE" + }, + { + "count": 140, + "reactionType": "INTEREST" + }, + { + "count": 91, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6906991209211162625", + "numLikes": 862, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6906991209211162625", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 862, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6906861062030041088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6906861062030041088", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6906861062030041088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6906861062030041088)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-prix-de-l%C3%A9lectricit%C3%A9-atteindra-850-euros-activity-6906861062030041088-1ECf?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6906861060729802752", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6906861062030041088", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6906861062030041088,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6906861062030041088,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6906861060729802752", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "65LImsts6z+qBp6JCY4QkQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6906861062030041088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQER9fhaaW_hrA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQER9fhaaW_hrA", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1646723997739?e=1679529600&v=beta&t=IVdq_UPBPgrtlr4kIZ8BshFFuPWBuJChcjlzZs-PQ1I", + "expiresAt": 1679529600000, + "height": 1068 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1646723999666?e=1679529600&v=beta&t=mKdHbdrXR3kCVtgMEgM4b8Asl2VeKrzn252wP0gmbzA", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1646723999666?e=1679529600&v=beta&t=kYN04TYETsTS_zKlzguptCEQgz0O5Gb4HgKFq0ban_Q", + "expiresAt": 1679529600000, + "height": 667 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1646723999666?e=1679529600&v=beta&t=W--jz4JmUalR4s5w-gehX_apRgMQJXqx9dyWLfVACaQ", + "expiresAt": 1679529600000, + "height": 250 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1646723999666?e=1679529600&v=beta&t=IsWhVVHXVZ5xyM6STC_YI43gynzhuVA-y-IprWU_yRg", + "expiresAt": 1679529600000, + "height": 83 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1646723999666?e=1679529600&v=beta&t=dIfcmRjHyRMCtl_FZxjS38w3MPx8NLaCflE04HLYW0k", + "expiresAt": 1679529600000, + "height": 417 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQER9fhaaW_hrA/feedshare-shrink_" + }, + "displayAspectRatio": 0.521484375 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, histogram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6906861060729802752,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le prix de l'\u00e9lectricit\u00e9 atteindra 850 euros le MWh \u00e0 19h ce soir en Grande Bretagne (donn\u00e9es issues de https://lnkd.in/dfxe6pfH ). A cette heure l\u00e0, ce pays ne sera pas une exception : toute l'Europe sera \u00e0 plus de 700 euros du MWh (70 centimes le kWh alors que le prix moyen pour \"la fourniture\" sur la facture d'un particulier est plut\u00f4t de 5 ou 6 centimes le kWh actuellement).\n\nCe prix tr\u00e8s \u00e9lev\u00e9 de l'\u00e9lectricit\u00e9 sur le march\u00e9 dit spot (quand on ach\u00e8te tout de suite un MWh dont on a besoin tout de suite) est \"tir\u00e9\" par le prix tr\u00e8s \u00e9lev\u00e9 du gaz (qui approche les 300 euros par MWh en Europe). \n\nAucune simulation \u00e9conomique effectu\u00e9e sur l'avenir de notre syst\u00e8me n'a test\u00e9 de prix s'aventurant dans ces eaux l\u00e0. Dans un syst\u00e8me qui serait rest\u00e9 encadr\u00e9, les prix du gaz et de l'\u00e9lectricit\u00e9 ne se seraient du reste jamais aventur\u00e9s dans ces eaux l\u00e0, puisque le prix pour le consommateur serait la moyenne des couts (qui augmente beaucoup moins vite), et non le cout marginal.\n\nCet \u00e9pisode d\u00e9montre une chose : les prix pass\u00e9s ne sont pas pr\u00e9dictifs des prix futurs, ni m\u00eame, parfois, de l'ordre de grandeur des prix futurs (alors que de tr\u00e8s nombreuses \"pr\u00e9visions\" \u00e9conomiques raisonnent avec ce pr\u00e9suppos\u00e9). Dans un monde incertain et volatil (et le monde va devenir, h\u00e9las, de plus en plus incertain et volatil), les \"prix de march\u00e9\" vont devenir de moins en moins pr\u00e9visibles. \n\nNous allons donc de plus en plus souvent \u00eatre confront\u00e9s \u00e0 l'arbitrage suivant : moins de \"march\u00e9\" (et donc moins de libert\u00e9 individuelle) et plus de s\u00e9curit\u00e9 collective (amen\u00e9e par un peu plus de pr\u00e9visibilit\u00e9), ou l'inverse." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6906861060729802752,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6906861062030041088,urn:li:activity:6906861062030041088,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 121, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6906861062030041088,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6906861062030041088,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6906861062030041088", + "threadId": "activity:6906861062030041088", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6906861062030041088", + "urn": "urn:li:activity:6906861062030041088", + "numComments": 235, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6906861062030041088", + "reactionTypeCounts": [ + { + "count": 2939, + "reactionType": "LIKE" + }, + { + "count": 532, + "reactionType": "INTEREST" + }, + { + "count": 460, + "reactionType": "MAYBE" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6906861062030041088", + "numLikes": 3970, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6906861062030041088", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3970, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6906513151257317376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6906513151257317376", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6906513151257317376)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6906513151257317376)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_engie-sans-gaz-russe-nous-entrerions-activity-6906513151257317376-abT3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6906513150653337600", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6906513151257317376", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6906513151257317376,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6906513151257317376,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6906513150653337600", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "YLKJ7JWoxPYnJ/hqTIiRfw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6906513151257317376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7597923253764731446", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "shrink_800/0/1676381883320?e=1677240000&v=beta&t=klMzl5c_PvMq2cozvgvJEg7jz9rq8-2-N-yl8ySiByE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 624, + "fileIdentifyingUrlPathSegment": "proxy-image-offsite-ads_350_624/0/1676381883371?e=1677240000&v=beta&t=6e10vGa77XkHz5gGKEl653oO0Zg5LA2LXbPn-9vT5Ks", + "expiresAt": 1677240000000, + "height": 350 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "shrink_1280_800/0/1676381883320?e=1677240000&v=beta&t=eeYhp6V9X2JraSqTPpbe16z37uiwZ472lqcKc1fpmBg", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "shrink_160/0/1676381883320?e=1677240000&v=beta&t=zoxoJQOuN7yOlI7iOxhP6N0bio2uK9x3-17G2TsBXNk", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "shrink_480/0/1676381883320?e=1677240000&v=beta&t=FRz8Ntu246wv5f7lSh99uVNZMba7p3yuVF5ohyaqzPk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGnGvUhcHGlMw/articleshare-" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7597923253764731446)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7597923253764731446)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Engie : \u00ab Sans gaz russe, nous entrerions dans un sc\u00e9nario de l'extr\u00eame \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/engie-sans-gaz-russe-nous-entrerions-dans-un-scenario-de-lextreme-1391617" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Engie\u00a0: \u00ab\u00a0Sans gaz russe, nous entrerions dans un sc\u00e9nario de l'extr\u00eame\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6906513150653337600,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans une interview aux Echos, la directrice g\u00e9n\u00e9rale d'Engie explique que, d\u00e8s l'hiver prochain, sans gaz russe il faudrait :\n- rationner le gaz\n- r\u00e9glementer les prix (donc transitoirement \"supprimer le march\u00e9\").\n\nOn ne saurait mieux le dire : la \"lib\u00e9ralisation\" appliqu\u00e9e \u00e0 l'\u00e9nergie en Europe n'a pas fonctionn\u00e9 pour s'organiser en fonction du gros temps \u00e0 venir, qui \u00e9tait absolument certain. \n\nLa guerre en Ukraine n'\u00e9tait pas pr\u00e9visible dira-t-on. La guerre, certes non. Mais \"un \u00e9v\u00e9nement\" qui allait rendre l'approvisionnement en gaz et/ou en p\u00e9trole compliqu\u00e9, \u00e7a oui. D\u00e8s lors que les gisements de p\u00e9trole et de gaz sont \u00e9puisables, vient n\u00e9cessairement un moment o\u00f9... il y en a moins. La baisse subie des combustibles fossiles \u00e9tait d\u00e9j\u00e0 un fait en Europe avant cette guerre, alors que nous n'avons toujours pas pris le taureau par les cornes.\n\nEn 1973, ce n'est pas la guerre du Kippour qui a fait chuter la production de p\u00e9trole (voir cette analyse de Michel Lepetit parue dans Le Monde : https://lnkd.in/eZa7SfKu ), ou plus exactement qui a fait passer le monde d'une production de p\u00e9trole augmentant de 8% par an \u00e0 une production augmentant d'un petit % par an. C'est la physique : la production ne pouvait juste pas continuer \u00e0 augmenter au m\u00eame rythme.\n\nDe m\u00eame, la guerre en Ukraine ne fait qu'amplifier une fragilit\u00e9 sous-jacente de l'Europe : celle de l'absence de plan coh\u00e9rent pour r\u00e9ellement sortir des combustibles fossiles. \n\nLa directrice g\u00e9n\u00e9rale d'Engie affirme que \"Mon espoir est que, dans ce nouveau monde, la soci\u00e9t\u00e9 regardera les \u00e9nergies renouvelables diff\u00e9remment. Elles repr\u00e9sentent une source, certes intermittente, mais quasi infinie, implant\u00e9e chez nous, comp\u00e9titive, et qui nous permet de ne d\u00e9pendre de personne\".\n\nBien sur que nous allons devoir d\u00e9velopper certaines ENR. Pour autant :\n- \u00e9olien et solaire sont \"infinis\" mais les m\u00e9taux pour la collecter, non (et il en faut beaucoup plus qu'avec les fossiles)\n- \"d\u00e9pendre de personne\" est inexact : l'Europe n'a pas de mine significative sur son sol,\n- \"une source certes intermittente\" signifie que, sans stockage massif (pas du tout \u00e9vident qu'on y arrive), l'\u00e9lectricit\u00e9 n'est plus disponible \u00e0 la demande (ce matin, sans fossiles, il y en aurait peu : https://lnkd.in/eKmfFCM6 )\n- \"comp\u00e9titive\" si on se limite au cout de production, mais... RTE a rappel\u00e9 r\u00e9cemment que ce n'est pas l\u00e9gitime et qu'il faut regarder le cout de l'ensemble du syst\u00e8me.\n\nEngie pousse aussi le \"gaz vert\". C'est une bonne id\u00e9e... mais pour en faire du carburant pour la m\u00e9canisation agricole (et progressivement supprimer le gaz dans le chauffage).\n\nEngie \u00e9carte enfin la prolongation des centrales nucl\u00e9aires belges. A court terme, avec la baisse de la demande partout o\u00f9 c'est possible (transports, chauffage) c'est pourtant la chose la plus utile \u00e0 faire." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6906513150653337600,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6906513151257317376,urn:li:activity:6906513151257317376,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 171, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6906513151257317376,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6906513151257317376,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6906513151257317376", + "threadId": "activity:6906513151257317376", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6906513151257317376", + "urn": "urn:li:activity:6906513151257317376", + "numComments": 282, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6906513151257317376", + "reactionTypeCounts": [ + { + "count": 3556, + "reactionType": "LIKE" + }, + { + "count": 532, + "reactionType": "INTEREST" + }, + { + "count": 526, + "reactionType": "MAYBE" + }, + { + "count": 43, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6906513151257317376", + "numLikes": 4681, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6906513151257317376", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4681, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6906183132031053824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6906183132031053824", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6906183132031053824)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6906183132031053824)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_guerre-en-ukraine-peut-on-se-passer-du-activity-6906183132031053824-SODc?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6906183131338997760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6906183132031053824", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6906183132031053824,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6906183132031053824,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6906183131338997760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "lNLMjtmAJkyaOL7w79Fjcw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6906183132031053824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7598716238901944598", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675890574229?e=1677240000&v=beta&t=ANCTZIRi-UXeNfIaq7qVOXATB4IKgyPsgwegluWJ3k8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675890574229?e=1677240000&v=beta&t=_uq9ik0VNc5SOfGCNic8Jz8_9PByueQeQzBI58zVrdU", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675890574230?e=1677240000&v=beta&t=RPRmDKNTyf7586_JURAehyKnhNhd_m4ByPOV8v05DXE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675890574230?e=1677240000&v=beta&t=EwT4apWeODR8MNrYn63rDEStRyri6n-SpPLaIaUKp5M", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGmbHfYbMM-cg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7598716238901944598)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7598716238901944598)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Guerre en Ukraine : peut-on se passer du gaz russe ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900130944-guerre-en-ukraine-peut-on-se-passer-du-gaz-russe" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Guerre en Ukraine : peut-on se passer du gaz russe ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6906183131338997760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis le d\u00e9but du conflit en Ukraine, des appels au \"boycott du gaz russe\" ont commenc\u00e9 \u00e0 appara\u00eetre ici ou l\u00e0. \n\nDans ma chronique d'hier sur RTL, il a \u00e9t\u00e9 question (une fois de plus, mais 3 minutes seulement, et probablement pour une audience qui n'est pas uniquement celle de ce r\u00e9seau social :) ) de l'importance de la Russie dans la consommation europ\u00e9enne de p\u00e9trole, gaz et charbon.\n\nCela m'a donn\u00e9 l'occasion de faire un petit calcul d'ordre de grandeur : le gaz import\u00e9 de Russie repr\u00e9sente (en Europe) 3 fois la consommation fran\u00e7aise. Si l'Union devait s'en passer, comme le GNL ne peut que doubler \u00e0 bref d\u00e9lai, et que l'Alg\u00e9rie et la Mer du Nord sont en d\u00e9clin, la moiti\u00e9 des importations russes serait remplac\u00e9e par... rien, soit environ 15% de la consommation europ\u00e9enne. \n\nJe ne connais pas les proportions pour l'Europe dans son ensemble, mais en France plus de la moiti\u00e9 du gaz (import\u00e9 en totalit\u00e9) sert au chauffage des b\u00e2timents. 15% du gaz en moins, s'il \u00e9tait imput\u00e9 uniquement sur le chauffage, conduirait \u00e0 30% de surfaces chauff\u00e9es en moins, ou... \u00e0 4 \u00e0 5\u00b0C de baisse du thermostat partout (on a coutume de dire que 1\u00b0C de baisse c'est 7% de consommation en moins).\n\nPour ne plus \u00eatre dans cette situation de d\u00e9pendance, une seule solution \u00e0 terme : se passer de gaz presque partout. Dans le chauffage, cela veut dire isolation et pompes \u00e0 chaleur ou, avec beaucoup de limites, bois.\n\nSe passer de gaz dans le chauffage, c'est du reste exactement l'angle choisi dans le Plan de Transformation de l'Economie Fran\u00e7aise du Shift Project. En cons\u00e9quence, nous proposons de supprimer progressivement le r\u00e9seau de gaz presque partout (puisqu'il n'y a plus de gaz dans le chauffage !).\n\nCet objectif n'est pas si r\u00e9volutionnaire qu'on le pense : en Su\u00e8de, par exemple, il n'y a jamais eu de gaz dans le chauffage, et donc il n'y a jamais eu de r\u00e9seau de gaz significatif (voir carte sur https://lnkd.in/e6H-QsAM par exemple).\n\nMais, bien \u00e9videmment, la mise en oeuvre d'un tel plan demande quelques d\u00e9cennies et non quelques jours. A tr\u00e8s court terme, donc, se passer du gaz russe c'est se passer d'une partie du thermostat. Et pour l'Allemagne, qui d\u00e9pend bien plus du gaz russe que la France (environ la moiti\u00e9 de sa consommation en 2020), ca serait m\u00eame probablement se passer d'une partie de son \u00e9lectricit\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6906183131338997760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6906183132031053824,urn:li:activity:6906183132031053824,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 87, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6906183132031053824,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6906183132031053824,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6906183132031053824", + "threadId": "activity:6906183132031053824", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6906183132031053824", + "urn": "urn:li:activity:6906183132031053824", + "numComments": 183, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6906183132031053824", + "reactionTypeCounts": [ + { + "count": 1071, + "reactionType": "LIKE" + }, + { + "count": 206, + "reactionType": "INTEREST" + }, + { + "count": 142, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6906183132031053824", + "numLikes": 1431, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6906183132031053824", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1431, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6905827217654263808,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6905827217654263808", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6905827217654263808)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6905827217654263808)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-r%C3%A9sum%C3%A9-technique-du-dernier-rapport-activity-6905827217654263808--2KL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6905827216920244224", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6905827217654263808", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6905827217654263808,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6905827217654263808,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6905827216920244224", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "JedyX15Sn75rYNYJwxldGA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6905827217654263808,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHJjjPBE_O2Hw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHJjjPBE_O2Hw", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1646477509907?e=1679529600&v=beta&t=2XqAgtm7AMtf2e0ioipbzHaIlY0JClzd8EfXMw98SGM", + "expiresAt": 1679529600000, + "height": 1465 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1646477511444?e=1679529600&v=beta&t=K7npSyAccQKQL3meMKOvBfEIOzA2b1TuQPQMiWt5yxQ", + "expiresAt": 1679529600000, + "height": 14 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1646477511444?e=1679529600&v=beta&t=KItcwYl4zbd0b8bNObdvSn7G3sb9v_fywgJRzz7dSdE", + "expiresAt": 1679529600000, + "height": 916 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1646477511444?e=1679529600&v=beta&t=lQT0WDgirqv-g_cyZ58j6r4aLax-4IL1iBVCfWoMqZw", + "expiresAt": 1679529600000, + "height": 343 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1646477511444?e=1679529600&v=beta&t=AgIHXncA4eC9zPCU1RIbV9YVLL23_kwYyNOaa0NBhFI", + "expiresAt": 1679529600000, + "height": 114 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1646477511444?e=1679529600&v=beta&t=poSAABnTLye0v1XJ9O7ijSIHszsJ4iZPdClH3dDFa5Y", + "expiresAt": 1679529600000, + "height": 572 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHJjjPBE_O2Hw/feedshare-shrink_" + }, + "displayAspectRatio": 0.71533203125 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6905827216920244224,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le \"r\u00e9sum\u00e9 technique\" du dernier rapport du GIEC comporte le graphique ci-dessous qui concerne les pertes de biodiversit\u00e9, compar\u00e9es \u00e0 la p\u00e9riode pr\u00e9-industrielle, qui pourraient d\u00e9couler du changement climatique.\n\nLe graphique de gauche concerne la fraction de la biodiversit\u00e9 expos\u00e9e \u00e0 des conditions climatiques dangereuses en fonction de l'\u00e9l\u00e9vation de temp\u00e9rature globale. Celui de droite concerne la perte de biodiversit\u00e9 pour les esp\u00e8ces terrestres en fonction de l'\u00e9l\u00e9vation de temp\u00e9rature.\n\nOn voit que ces pertes augmentent de mani\u00e8re non lin\u00e9aire avec l'augmentation de temp\u00e9rature. On voit aussi que l'oc\u00e9an tropical est le lieu le plus rapidement affect\u00e9 (notamment \u00e0 cause de la fragilit\u00e9 des coraux) et que, sur les terres \u00e9merg\u00e9es, la for\u00eat amazonienne est aussi particuli\u00e8rement \u00e0 risque.\n\nBien \u00e9videmment ce sont des projections uniquement dues au changement climatique. La pression humaine locale (pollution, d\u00e9forestation, pr\u00e9dation) ou les esp\u00e8ces invasives ne sont pas prises en compte. Ces cartes sont donc malheureusement une borne inf\u00e9rieure - comme avec beaucoup de \"risques climatiques\" - de ce qui est en jeu." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6905827216920244224,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6905827217654263808,urn:li:activity:6905827217654263808,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 9, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6905827217654263808,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6905827217654263808,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6905827217654263808", + "threadId": "activity:6905827217654263808", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6905827217654263808", + "urn": "urn:li:activity:6905827217654263808", + "numComments": 19, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6905827217654263808", + "reactionTypeCounts": [ + { + "count": 570, + "reactionType": "LIKE" + }, + { + "count": 108, + "reactionType": "INTEREST" + }, + { + "count": 63, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6905827217654263808", + "numLikes": 747, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6905827217654263808", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 747, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6905538079935803392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6905538079935803392", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6905538079935803392)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6905538079935803392)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_emmanuel-macron-officiellement-candidat-%C3%A0-activity-6905538079935803392-Mt4W?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6905538079440859136", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6905538079935803392", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6905538079935803392,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6905538079935803392,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6905538079440859136", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "NaRrSM7yat0JLmpUKT3hYQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6905538079935803392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8924010376970872232", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675904026991?e=1677240000&v=beta&t=q56wlfjzrTbH2dfoBawarz4LqWvQnnoIIlYhbyJfpJ0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675904026991?e=1677240000&v=beta&t=Q48guV_clNFxYTfeh-Hy2233C2ikWCw7-zoTaQR8aLA", + "expiresAt": 1677240000000, + "height": 675 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675904026991?e=1677240000&v=beta&t=8t0mJ0TB0mdSlo-aLrTOIAuLtvR8rsgn6sFj9ial0d8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675904026991?e=1677240000&v=beta&t=I8BPOMlbrdRjPH8V67wJVKn6fDD9_MdISBoDeg_iIdA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHrgLZQZFIEOw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8924010376970872232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8924010376970872232)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "leparisien.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Emmanuel Macron officiellement candidat \u00e0 la pr\u00e9sidentielle : d\u00e9couvrez sa \u00abLettre aux Fran\u00e7ais\u00bb by leparisien.fr", + "actionTarget": "https://www.leparisien.fr/elections/presidentielle/emmanuel-macron-officiellement-candidat-a-la-presidentielle-decouvrez-sa-lettre-aux-francais-03-03-2022-VWPBWQNS3JHY7JWAMUR353JDKU.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Emmanuel Macron officiellement candidat \u00e0 la pr\u00e9sidentielle : d\u00e9couvrez sa \u00abLettre aux Fran\u00e7ais\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6905538079440859136,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s le pr\u00e9sident-pr\u00e9sident, c'est au tour du candidat-pr\u00e9sident de s'exprimer, au travers d'un texte reproduit par toute la presse. Sur la partie \u00e9nergie-climat, la phrase de la d\u00e9claration de candidature est \n\n\"il nous faudra aussi continuer d\u2019investir dans notre innovation et notre recherche afin de placer la France en t\u00eate dans les secteurs qui, comme les \u00e9nergies renouvelables, le nucl\u00e9aire, les batteries, l\u2019agriculture, le num\u00e9rique, ou le spatial feront le futur et nous permettront de devenir une grande Nation \u00e9cologique, celle qui la premi\u00e8re sera sortie de la d\u00e9pendance au gaz, au p\u00e9trole et au charbon.\"\n\nQuelques rapides commentaires :\n\n- dans le plan de transformation de l'\u00e9conomie fran\u00e7aise, le 1er chapitre se termine ainsi : \"La sortie des \u00e9nergies fossiles est inexorable (...). La premi\u00e8re nation qui ouvrira le passage marquera l'Histoire. (...) Nous pouvons r\u00e9ussir, gr\u00e2ce \u00e0 ce qui a fait la grandeur de ce pays : la raison et l'audace.\". Si l'on s'en tient aux mots, on pourrait y voir un petit air de ressemblance :)\n\n- mais... \"sortir de la d\u00e9pendance au gaz, au p\u00e9trole et au charbon\" n'est pas qu'une affaire de technique. En fait ce n'est m\u00eame que marginalement une affaire de technique. C'est une affaire de sobri\u00e9t\u00e9 (donc de valeurs et de r\u00e8gles) et de coh\u00e9rence. R\u00e9duire le probl\u00e8me \u00e0 sa dimension technique est le r\u00e9duire \u00e0 sa dimension la plus facile \u00e0 g\u00e9rer. Comment organiser la sobri\u00e9t\u00e9, ce que la baisse rapide des importations d'hydrocarbures russes nous forcerait \u00e0 faire si elle survient ? Ce serait par la force des choses le sujet central de son mandat s'il rempile. Mieux vaudrait s'y int\u00e9resser et en parler...\n\n- le mot \"climat\" est aussi absent que du discours de Mercredi soir (du reste aucune limite plan\u00e9taire n'est pr\u00e9sente dans ce discours). Alors que le nouveau rapport du GIEC tout juste sorti laisse entrevoir des cons\u00e9quences en face desquelles celles de la guerre en Ukraine s(er)ont du 2\u00e8 ordre (sauf \u00e0 ce que nous ayons une guerre nucl\u00e9aire totale, OK) cette absence se verra \"gros comme le nez au milieu de la figure\" pour les personnes qui ont un peu compris le sujet. Esp\u00e9rons que la presse vienne un peu le chercher sur ce sujet (on peut toujours r\u00eaver !)\n\nAu d\u00e9but de cette lettre on trouve la phrase \"rarement, la France avait \u00e9t\u00e9 confront\u00e9e \u00e0 une telle accumulation de crises\". Malheureusement, s'il rempile, les crises, il a int\u00e9r\u00eat \u00e0 aimer cela, parce qu'il n'est pas sur que nous soyons au bout de nos surprises." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6905538079440859136,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6905538079935803392,urn:li:activity:6905538079935803392,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6905538079935803392,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6905538079935803392,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6905538079935803392", + "threadId": "activity:6905538079935803392", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6905538079935803392", + "urn": "urn:li:activity:6905538079935803392", + "numComments": 156, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6905538079935803392", + "reactionTypeCounts": [ + { + "count": 1735, + "reactionType": "LIKE" + }, + { + "count": 112, + "reactionType": "INTEREST" + }, + { + "count": 93, + "reactionType": "PRAISE" + }, + { + "count": 73, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "EMPATHY" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6905538079935803392", + "numLikes": 2036, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6905538079935803392", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2036, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6905415579436425216,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6905415579436425216", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6905415579436425216)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6905415579436425216)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-russie-est-en-train-de-faire-des-choses-activity-6905415579436425216-2bJ0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6905415578417213440", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6905415579436425216", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6905415579436425216,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6905415579436425216,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6905415578417213440", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "JbqKk+M0x6Qe6Tt3+VsuKQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6905415579436425216,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEyhkUPLnjy5w", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEyhkUPLnjy5w", + "artifacts": [ + { + "width": 1481, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1646379367132?e=1679529600&v=beta&t=j4vghLtNVR0cM1YtQPRRohhnUWAWgr8gyqNaFVgunzY", + "expiresAt": 1679529600000, + "height": 898 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1646379369048?e=1679529600&v=beta&t=njhoc2eJZp3EsRZ6t1nu2LMwaJJrSJvkPk_VIu4m8qc", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1646379369048?e=1679529600&v=beta&t=nW8798xcafGMRd5UP7PY8iGYWKN3iIHZpZr6p5QhxPM", + "expiresAt": 1679529600000, + "height": 776 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1646379369048?e=1679529600&v=beta&t=7pByJl3jETF4NpHXyRWAUFaws8a8YhmWBPbu_F-LLkc", + "expiresAt": 1679529600000, + "height": 291 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1646379369048?e=1679529600&v=beta&t=Yxn38lg8E9gC0nEE5remr0tWzpu5TVXMFHYOsSTTBKM", + "expiresAt": 1679529600000, + "height": 97 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1646379369048?e=1679529600&v=beta&t=5kfT4_VUpYhGPrNKjw_nJbBlqzWOo1wtHmNWI5TUJKc", + "expiresAt": 1679529600000, + "height": 485 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEyhkUPLnjy5w/feedshare-shrink_" + }, + "displayAspectRatio": 0.6063470627954085 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, waterfall chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6905415578417213440,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 2551, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "Paf2osfcQ7SQxf6IRblKhA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "La Russie est en train de faire des choses que l'Europe r\u00e9prouve. Nous r\u00e9alisons alors que d'\u00eatre aussi d\u00e9pendants de ce pays pour notre consommation de p\u00e9trole (un tiers des importations europ\u00e9ennes viennent de Russie, et 75% du p\u00e9trole europ\u00e9en est import\u00e9 - 96% pour l'Union) et de gaz (un tiers du gaz utilis\u00e9 en Europe est russe) ne nous facilite pas la vie pour tenir t\u00eate \u00e0 Poutine.\n\nQu'\u00e0 cela ne tienne : nous allons nous passer du gaz russe. Est-ce possible ? Oui... \u00e0 condition de nous passer d'une partie du gaz tout court. La soci\u00e9t\u00e9 Rystad Energy (fournissant des bases de donn\u00e9es sur le p\u00e9trole et le gaz) a livr\u00e9 l'analyse reprise dans le graphique en commentaire, qui montre que \"ca passe\" pour la moiti\u00e9 du gaz que nous livre la Russie, mais qu'il va falloir se passer de l'\u00e9quivalent de la consommation fran\u00e7aise. Et, en pareil cas, personne ne sait \u00e0 quel prix le gaz disponible le sera. Il est peu probable que les autres fournisseurs nous fassent des cadeaux.\n\nPar ailleurs ce \"plan\" suppose d'augmenter l'\u00e9lectricit\u00e9 au charbon. Autant pour le CO2... et pourtant cela ne va pas totalement r\u00e9soudre nos probl\u00e8mes en ce qui concerne la d\u00e9pendance \u00e0 la Russie.\n\nEn effet, la moiti\u00e9 du charbon utilis\u00e9 en Europe est import\u00e9, et la moiti\u00e9 de nos importations viennent... de Russie ! Le graphique ci-dessous, effectu\u00e9 avec des donn\u00e9es BP Statistical Review, montre en effet qu'en 2020 c'\u00e9tait, et de loin, la Russie qui \u00e9tait le premier fournisseur d'Europe pour ce combustible solide. L'Allemagne n'y fait pas exception : elle dispose d'importantes r\u00e9serves de lignite, ce \"mauvais charbon\" qui s'exploite dans des mines \u00e0 ciel ouvert avec des excavatrices g\u00e9antes, mais ne dispose plus de houille, qui est import\u00e9e... pour une large part de Russie.\n\nQu'\u00e0 cela ne tienne, dit le nouveau ministre (Vert) de l'\u00e9conomie, on va changer d'avis sur le nucl\u00e9aire. M\u00eame si ce \"revirement\" est bienvenu, changer d'avis sur le nucl\u00e9aire est, \u00e0 court terme, aussi efficace que de d\u00e9cider de se tricoter un parachute si on a saut\u00e9 de l'avion sans en avoir un, en emportant juste une pelote de laine.\n\nSi la vie doit \u00eatre difficile pour quelques ann\u00e9es (voire plus) pour les pays qui ont d\u00e9cid\u00e9 de s'appuyer sur la g\u00e9n\u00e9ration \u00e9lectrique au gaz, voire au charbon, il va falloir boire le calice jusqu'\u00e0 la lie. C'est tout le charme des syst\u00e8mes \u00e9nerg\u00e9tiques : ils ne se reconfigurent pas toujours en une ann\u00e9e, au fil des al\u00e9as qui surviennent. Il en sera de m\u00eame pour le climat, sujet qui n'a pas \u00e9t\u00e9 \u00e9voqu\u00e9 - m\u00eame une seconde - dans le discours d'Emmanuel Macron prononc\u00e9 Mercredi soir, alors m\u00eame que le dernier rapport du GIEC, annon\u00e7ant pire que la guerre en Ukraine, venait de sortir." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6905415578417213440,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6905415579436425216,urn:li:activity:6905415579436425216,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 144, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6905415579436425216,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6905415579436425216,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6905415579436425216", + "threadId": "activity:6905415579436425216", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6905415579436425216", + "urn": "urn:li:activity:6905415579436425216", + "numComments": 281, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6905415579436425216", + "reactionTypeCounts": [ + { + "count": 3130, + "reactionType": "LIKE" + }, + { + "count": 501, + "reactionType": "INTEREST" + }, + { + "count": 338, + "reactionType": "MAYBE" + }, + { + "count": 68, + "reactionType": "PRAISE" + }, + { + "count": 34, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6905415579436425216", + "numLikes": 4087, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6905415579436425216", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4087, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6904888937752387584,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6904888937752387584", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6904888937752387584)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6904888937752387584)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-le-plan-de-transformation-de-l%C3%A9conomie-activity-6904888937752387584-5E7z?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6904888936926101504", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6904888937752387584", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6904888937752387584,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6904888937752387584,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6904888936926101504", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "mA7HMGBkaclmqkddfC30hw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6904888937752387584,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7850330588040311691", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 752, + "fileIdentifyingUrlPathSegment": "800/0/1676457306839?e=1677240000&v=beta&t=8spi_sP2z0GhQmCs5ZfJ42AYQ-MEPeDOk0McFHQoVqU", + "expiresAt": 1677240000000, + "height": 560 + }, + { + "width": 752, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676457306839?e=1677240000&v=beta&t=wiDj8eAd-bOhZ2RO3H9F6JWbZZmnDtva8_n35zPCc9A", + "expiresAt": 1677240000000, + "height": 560 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676457306840?e=1677240000&v=beta&t=OzvF0YPhjghgZbrihwE54eQRBK3ZfIor-mqvAWPlxys", + "expiresAt": 1677240000000, + "height": 119 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676457306840?e=1677240000&v=beta&t=rPrxJtohi3p_6LUkGgfRThwFqAioheqaSQMCzIHFLEs", + "expiresAt": 1677240000000, + "height": 357 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEeKpy6O5fzHA/articleshare-shrink_" + }, + "displayAspectRatio": 0.7446808510638298 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7850330588040311691)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7850330588040311691)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ilnousfautunplan.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : le Plan de transformation de l'\u00e9conomie fran\u00e7aise | Shift Project by ilnousfautunplan.fr", + "actionTarget": "https://ilnousfautunplan.fr/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat : le Plan de transformation de l'\u00e9conomie fran\u00e7aise | Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6904888936926101504,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 56, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "Paf2osfcQ7SQxf6IRblKhA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans son allocution aux fran\u00e7ais(es) effectu\u00e9e ce soir, Emmanuel Macron a demand\u00e9 au premier ministre, dans un contexte d'inflation \u00e9nerg\u00e9tique renforc\u00e9e par les \u00e9v\u00e9nements en Ukraine, de \"pr\u00e9parer un plan de r\u00e9silience \u00e9conomique et sociale\" pour r\u00e9pondre \u00e0 la situation (\u00e0 10' dans la vid\u00e9o : https://lnkd.in/e7yp9g_p ). Le pr\u00e9sident a aussi indiqu\u00e9 qu'il fallait \"augmenter l'ind\u00e9pendance du pays\" afin de mieux ma\u00eetriser notre destin \u00e9nerg\u00e9tique.\n\nVous savez quoi ? Ce cahier des charges est exactement celui du plan de transformation de l'\u00e9conomie fran\u00e7aise : https://lnkd.in/esiqHkbf\n\nNotre pays utilise 4 fois plus de gaz que d'\u00e9lectricit\u00e9 pour le chauffage des b\u00e2timents. 15% du p\u00e9trole est aussi utilis\u00e9 pour le chauffage. Gaz et p\u00e9trole sont import\u00e9s en totalit\u00e9 dans notre pays (et la Russie fournit un tiers du p\u00e9trole et du gaz communautaires en ordre de grandeur). Quelle meilleure occasion que les \u00e9v\u00e9nements actuels pour d\u00e9cider de remplacer en 30 ans p\u00e9trole et gaz import\u00e9s par de l'isolation et des pompes \u00e0 chaleur ?\n\nNous souhaitons une agriculture moins consommatrice d'engrais azot\u00e9s et plus riche en emplois. Les engrais azot\u00e9s sont faits avec du gaz et la moiti\u00e9 des engrais azot\u00e9s est import\u00e9e.\n\nNous souhaitons une \u00e9conomie plus sobre en mat\u00e9riaux de base (acier, plastique et ciment). L'acier est aujourd'hui fait avec du charbon import\u00e9 (en l'esp\u00e8ce plus souvent d'Australie que de Russie mais il est import\u00e9 quand m\u00eame !), le plastique avec du p\u00e9trole et du gaz import\u00e9s, et le ciment avec des combustibles souvent import\u00e9s.\n\nNous souhaitons des transports plus sobres. Les transports fonctionnent essentiellement au p\u00e9trole... import\u00e9. \n\nEt il se trouve que ce plan r\u00e9pondrait aussi \u00e0 une \"petite\" actualit\u00e9 du moment : la publication par le GIEC du rapport du groupe 2, qui explique que le rouleau compresseur du changement climatique est en marche. \n\nA l'\u00e9vidence, la population acceptera beaucoup mieux les d\u00e9cisions courageuses \u00e0 prendre pour le climat si elles sont aussi les d\u00e9cisions \u00e0 prendre pour diminuer rapidement notre d\u00e9pendance \u00e0 des ressources largement import\u00e9es de Russie. De fait, c'est pour partie notre argent qui finance l'arm\u00e9e russe actuellement...\n\nA quelque chose malheur est bon, l'occasion est probablement inesp\u00e9r\u00e9e pour enclencher un tel plan de d\u00e9carbonation acc\u00e9l\u00e9r\u00e9e. Alors, M. Le pr\u00e9sident, chiche ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6904888936926101504,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6904888937752387584,urn:li:activity:6904888937752387584,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 346, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6904888937752387584,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6904888937752387584,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6904888937752387584", + "threadId": "activity:6904888937752387584", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6904888937752387584", + "urn": "urn:li:activity:6904888937752387584", + "numComments": 497, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6904888937752387584", + "reactionTypeCounts": [ + { + "count": 15126, + "reactionType": "LIKE" + }, + { + "count": 1131, + "reactionType": "PRAISE" + }, + { + "count": 536, + "reactionType": "EMPATHY" + }, + { + "count": 308, + "reactionType": "APPRECIATION" + }, + { + "count": 259, + "reactionType": "MAYBE" + }, + { + "count": 226, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6904888937752387584", + "reacted": "LIKE", + "numLikes": 17586, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6904888937752387584", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 17586, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6904315948187078656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6904315948187078656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6904315948187078656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6904315948187078656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_coinc%C3%A9-entre-un-char-russe-et-un-sondage-activity-6904315948187078656-rU0G?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6904315947323056128", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6904315948187078656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6904315948187078656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6904315948187078656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6904315947323056128", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "KYUjFlDlFaNZ0thT/ES/eg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6904315948187078656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQFCQt8f3NUJxQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQFCQt8f3NUJxQ", + "artifacts": [ + { + "width": 1904, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1646117195608?e=1679529600&v=beta&t=7C2cMM3jwJjuS5VB24H5st4oClPJlSPpShZAuFHXQos", + "expiresAt": 1679529600000, + "height": 1056 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1646117197401?e=1679529600&v=beta&t=-RXyXva-e_rSQWOe3nM53DoiYE5Pf9pp4ima3ZhYcm0", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1646117197401?e=1679529600&v=beta&t=5_FV_18KNEuZzh9Ut0ORgA2ItCEGeN4lrtHmcRO4TWI", + "expiresAt": 1679529600000, + "height": 710 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1646117197401?e=1679529600&v=beta&t=o-Hz5PpmkWDbO8DZz502FOfSopD2uT-xfa8zrfSoThM", + "expiresAt": 1679529600000, + "height": 266 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1646117197401?e=1679529600&v=beta&t=gkhiKDg2d48ML9nKZ9r29lFfaJlaE3JyAGNVYwR2M1s", + "expiresAt": 1679529600000, + "height": 89 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1646117197401?e=1679529600&v=beta&t=FhsCGjSyAV7jP72skYZGAVl05awfUd__sip57DcvKrA", + "expiresAt": 1679529600000, + "height": 444 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQFCQt8f3NUJxQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.5546218487394958 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6904315947323056128,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Coinc\u00e9 entre un char russe et un sondage \u00e9lectoral, le rapport du groupe 2 du GIEC sur les cons\u00e9quences (d\u00e9j\u00e0 observables, et, beaucoup plus important, \u00e0 venir) de la d\u00e9rive climatique est sorti hier : https://lnkd.in/eA84Bxzq\n\nRappelons que le GIEC a pour mandat de faire \u00e9tat de ce qui a \u00e9t\u00e9 publi\u00e9 dans la litt\u00e9rature \u00e0 comit\u00e9 de lecture et rien d'autre. Il est subdivis\u00e9 en 3 groupes qui portent sur :\n- les m\u00e9canismes physiques, chimiques et biologiques du changement climatique induit par les activit\u00e9s humaines (groupe 1)\n- les cons\u00e9quences de ce changement climatique (groupe 2)\n- les marges de manoeuvre (groupe 3). \n\nLe groupe 2 du GIEC vient de mettre \u00e0 la disposition du public trois documents :\n- un rapport complet, de 3675 pages. C'est ce document qui, formellement, s'appelle \"le rapport du groupe 2 du GIEC\"\n- un r\u00e9sum\u00e9 technique (96 pages)\n- un r\u00e9sum\u00e9 pour d\u00e9cideurs (36 pages). C'est ce dernier document que la presse va g\u00e9n\u00e9ralement appeler \u00e0 tort \"le rapport du GIEC\".\n\nCe serait \u00e9videmment une gageure de pr\u00e9tendre r\u00e9sumer ici un document de 36 pages en 2000 caract\u00e8res, surtout que chaque graphique d'un rapport du GIEC condense en g\u00e9n\u00e9ral tellement d'information qu'il demande facilement 10 minutes d'explication \u00e0 l'oral.\n\nPuisqu'il faut bien en choisir un, j'ai reproduit ci-dessous un \"r\u00e9sum\u00e9 graphique\" d'une partie des impacts d\u00e9j\u00e0 observ\u00e9s. Plus le cercle est sombre plus le degr\u00e9 de confiance dans l'attribution de ce qui a \u00e9t\u00e9 observ\u00e9 au changement climatique est \u00e9lev\u00e9. Le signe donne le sens de l'impact (n\u00e9gatif = pas bon ; \u00b1 = mitig\u00e9).\n\nUn simple coup d'oeil montre que le changement climatique est d\u00e9j\u00e0 une cause av\u00e9r\u00e9e d'impacts n\u00e9gatifs, dont l'augmentation des maladies infectieuses, migrations, dommages aux infrastructures ou de d\u00e9gradation de la sant\u00e9 mentale.\n\nMais en face, nous avons encore du p\u00e9trole et d'autres \u00e9nergies \u00e0 profusion. Cela explique par exemple que le GIEC dise que le changement climatique a \"juste\" ralenti la hausse de la productivit\u00e9 agricole. L'\u00e9neegie a tellement augment\u00e9 cette derni\u00e8re que pour le moment la situation est globalement g\u00e9rable (localement pas toujours).\n\nDans le m\u00eame esprit, les dommages aux infrastructures sont vite r\u00e9par\u00e9s, gr\u00e2ce aux cimenteries, aci\u00e9ries, camions et tractopelles, donc encore l'\u00e9nergie.\n\nEt plus tard ? Les cons\u00e9quences adverses du changement climatique vont augmenter bien plus rapidement que la temp\u00e9rature. Certaines vont m\u00eame augmenter longtemps apr\u00e8s arr\u00eat des \u00e9missions. Dans le m\u00eame temps, l'approvisionnement \u00e9nerg\u00e9tique - conditionnant notre capacit\u00e9 d'adaptation - va finir par baisser partout.\n\nCe dernier point n'est pas \u00e9voqu\u00e9 dans le r\u00e9sum\u00e9 pour d\u00e9cideurs (je n'ai pas regard\u00e9 pour les autres documents), tout simplement parce qu'il n'est pas \u00e9voqu\u00e9 dans la litt\u00e9rature acad\u00e9mique.\n\nCela signifie que les cons\u00e9quences \u00e9voqu\u00e9es dans ce rapport sont tr\u00e8s certainement un minorant de ce que nous risquons, et que nous n'avons pas fini d'avoir des (mauvaises) surprises." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6904315947323056128,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6904315948187078656,urn:li:activity:6904315948187078656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 92, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6904315948187078656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6904315948187078656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6904315948187078656", + "threadId": "activity:6904315948187078656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6904315948187078656", + "urn": "urn:li:activity:6904315948187078656", + "numComments": 170, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6904315948187078656", + "reactionTypeCounts": [ + { + "count": 4033, + "reactionType": "LIKE" + }, + { + "count": 680, + "reactionType": "INTEREST" + }, + { + "count": 373, + "reactionType": "MAYBE" + }, + { + "count": 55, + "reactionType": "APPRECIATION" + }, + { + "count": 41, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6904315948187078656", + "numLikes": 5195, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6904315948187078656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5195, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6903969937296027648,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6903969937296027648", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6903969937296027648)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6903969937296027648)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_il-ny-a-pas-que-pour-le-gaz-que-leurope-activity-6903969937296027648-eww2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6903969936415227904", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6903969937296027648", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6903969937296027648,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6903969937296027648,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6903969936415227904", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "sSao6HPCEYwj8RIF+wh1hA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6903969937296027648,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGm1gdmLc8U3g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGm1gdmLc8U3g", + "artifacts": [ + { + "width": 1300, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1646034700037?e=1679529600&v=beta&t=PW234ejHV-2sRbWtR-7keXcYJ5FwLUI8pT3o-LasEvE", + "expiresAt": 1679529600000, + "height": 1129 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1646034701349?e=1679529600&v=beta&t=mnoURNPvmF3ys_yFnCMZ1cMT-bt-2tk6H9o11a7iJ14", + "expiresAt": 1679529600000, + "height": 17 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1646034701349?e=1679529600&v=beta&t=BGGK1YeR0sW1ukYvqk-FiIZKMlG5g1L3A1tXzT0KVQ8", + "expiresAt": 1679529600000, + "height": 1112 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1646034701349?e=1679529600&v=beta&t=xTps3Pzyp6RS0VZ1wgKrEdnYfti5S3j-dN7tQcuTsIQ", + "expiresAt": 1679529600000, + "height": 417 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1646034701349?e=1679529600&v=beta&t=99SDPNGZQkyTMScihwNYlvFe2lmiiOa5boQ4ndrelp0", + "expiresAt": 1679529600000, + "height": 139 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1646034701349?e=1679529600&v=beta&t=vKjplr5GqpT4GtkwEnOH-68bwgR_7JNXAV8HW3uCyjw", + "expiresAt": 1679529600000, + "height": 695 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGm1gdmLc8U3g/feedshare-shrink_" + }, + "displayAspectRatio": 0.8684615384615385 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6903969936415227904,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il n'y a pas que pour le gaz que l'Europe est un peu d\u00e9pendante de la Russie. C'est \u00e9galement le cas pour le p\u00e9trole : 30% de l'or noir et des produits raffin\u00e9s import\u00e9s en Europe g\u00e9ographique (donc avec la Norv\u00e8ge et la Grande Bretagne, qui sont les deux seuls producteurs significatifs mais qui ne font plus partie de l'Union) vient de notre grand voisin de l'Est. Les importations europ\u00e9ennes (au sens g\u00e9ographique) repr\u00e9sentent environ les 3/4 de notre consommation d'hydrocarbures liquides (et 96% si nous nous limitons \u00e0 la seule Union).\n\nSym\u00e9triquement, l'Europe repr\u00e9sente la moiti\u00e9 des ventes de p\u00e9trole et de produits raffin\u00e9s de la Russie (graphique en commentaire), soit environ 1 milliard de barils par an. A environ 100 dollars le baril, nous sommes donc clients de la Russie pour environ 100 milliards de dollars par an pour nos barils.\n\nA 80 euros le MWh, il faut y rajouter une somme \u00e0 peu pr\u00e8s \u00e9quivalente pour le gaz, dont l'Allemagne est de loin le premier client europ\u00e9en (voir graphique ci-dessous).\n\nS'il ne s'agissait pas de combustibles fossiles, cette situation serait en fait plut\u00f4t une bonne nouvelle : cette d\u00e9pendance mutuelle entre la Russie et l'Europe est normalement un \u00e9l\u00e9ment qui incite chaque camp \u00e0 rester \"raisonnable\", pour \u00e9viter de trop se mettre \u00e0 dos un partenaire en affaires.\n\nUne difficult\u00e9 de plus, quand nous sortirons des \u00e9nergies fossiles, ce qui se passera de gr\u00e9 ou de force, sera de maintenir des liens bas\u00e9s sur \"autre chose\" avec nos ex-fournisseurs d'hydrocarbures, pour que chacun continue \u00e0 avoir un peu besoin de l'autre. C'\u00e9tait le principe fondateur de l'Union europ\u00e9enne : rester un peu d\u00e9pendant de ses partenaires, histoire de ne pas se sentir trop libre de leur envoyer des obus \u00e0 la figure au premier coup de sang. Toute la question est, comme toujours, de savoir o\u00f9 mettre le curseur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6903969936415227904,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6903969937296027648,urn:li:activity:6903969937296027648,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 64, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6903969937296027648,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6903969937296027648,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6903969937296027648", + "threadId": "activity:6903969937296027648", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6903969937296027648", + "urn": "urn:li:activity:6903969937296027648", + "numComments": 140, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6903969937296027648", + "reactionTypeCounts": [ + { + "count": 1512, + "reactionType": "LIKE" + }, + { + "count": 217, + "reactionType": "INTEREST" + }, + { + "count": 191, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6903969937296027648", + "numLikes": 1938, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6903969937296027648", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1938, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6903666063389597696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6903666063389597696", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6903666063389597696)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6903666063389597696)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_recul-record-de-la-banquise-antarctique-cet-activity-6903666063389597696-jKEp?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6903666062835937280", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6903666063389597696", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6903666063389597696,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6903666063389597696,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6903666062835937280", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "R9+W3uN311Wp74TT2pbAPg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6903666063389597696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9021352721116767705", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 650, + "fileIdentifyingUrlPathSegment": "800/0/1676293253751?e=1677240000&v=beta&t=CXWhKFm-KMOz8_qcqKOI30f_TQuDxp3mRPghe4GmuI0", + "expiresAt": 1677240000000, + "height": 517 + }, + { + "width": 650, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676293253751?e=1677240000&v=beta&t=D8zEQ-Uhu_HjOMJQTidPMeY2SX2J3OYHC_fMPtqAXyM", + "expiresAt": 1677240000000, + "height": 517 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676293253751?e=1677240000&v=beta&t=MqSGwplEISJZNgbFn4AR8P828obOgPfeDZ8TYILw_pI", + "expiresAt": 1677240000000, + "height": 127 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676293253751?e=1677240000&v=beta&t=glzmZfArGekte8khVvZw8FB_R2UldhpOyl69apEEeQU", + "expiresAt": 1677240000000, + "height": 382 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGtS4u-lKybtA/articleshare-shrink_" + }, + "displayAspectRatio": 0.7953846153846154 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Extension de la banquise antarctique. En bleu, l'ann\u00e9e en cours, en rouge 2017, l'ann\u00e9e recors pr\u00e9c\u00e9dente. \u00a9 NSIDC." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9021352721116767705)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9021352721116767705)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "meteofrance.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Recul record de la banquise antarctique cet \u00e9t\u00e9 2022 ! by meteofrance.com", + "actionTarget": "https://meteofrance.com/actualites-et-dossiers/actualites/recul-record-de-la-banquise-antarctique-cet-ete-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Recul record de la banquise antarctique cet \u00e9t\u00e9 2022 !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6903666062835937280,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un malheur n'en chasse pas un autre, malheureusement. Pendant que les yeux sont riv\u00e9s (\u00e0 juste titre) sur ce qui passe \u00e0 l'Est de l'Europe, les effets d\u00e9j\u00e0 enclench\u00e9s du changement climatique continuent leur petit bonhomme de chemin. \n\nLa banquise antarctique vient d'enregistrer un record de faible \u00e9tendue \u00e0 la fin de l'\u00e9t\u00e9 austral. En quoi cela nous concerne, vont se demander certain(e)s ?\n\nSur notre plan\u00e8te, beaucoup de choses sont interconnect\u00e9es. La diminution de la banquise change fortement le pouvoir r\u00e9flexif de la surface au rayonnement solaire : avec de la glace, l'essentiel de ce dernier repart dans l'espace ; avec de l'eau, l'essentiel est absorb\u00e9 et contribue donc \u00e0 chauffer plus vite l'oc\u00e9an austral.\n\nUn oc\u00e9an plus chaud d\u00e9stabilise plus vite les langues terminales des glaciers antarctiques, langues qui sont pos\u00e9es sur l'eau et donc \"grignot\u00e9es\" par le dessous \u00e0 vitesse acc\u00e9l\u00e9r\u00e9e.\n\nCela contribue \u00e0 diminuer la \"r\u00e9sistance\" des glaciers \u00e0 l'amont qui servent parfois d'ac-boutant pour stabiliser des glaciers encore plus \u00e0 l'amont ; une partie de la calotte antarctique \u00e9tant en fait une esp\u00e8ce de ch\u00e2teau de cartes o\u00f9 les glaciers de consolident les uns les autres (et en plus une partie de la calotte est pos\u00e9e sur un socle rocheux sous-marin).\n\nL'acc\u00e9l\u00e9ration du r\u00e9chauffement local pourrait donc avoir des r\u00e9percussions plan\u00e9taires, parce que ce qui est en jeu l\u00e0-bas est que l'oc\u00e9an mondial s'\u00e9l\u00e8ve ou pas de plus de 10 m\u00e8tres en quelques si\u00e8cles. Certes, quelques si\u00e8cles c'est plus lointain que l'horizon de temps associ\u00e9 \u00e0 la guerre en Ukraine, ou \u00e0 tout autre processus qui serait susceptible de d\u00e9stabiliser nos soci\u00e9t\u00e9s \u00e0 plus br\u00e8ve \u00e9ch\u00e9ance.\n\nMais ce \"rouleau compresseur\" en marche viendra en rajouter - bien avant quelques si\u00e8cles - \u00e0 d'autres probl\u00e8mes. Bienvenue dans le 21\u00e8 si\u00e8cle, o\u00f9 il faudra garder un oeil sur plus d'un risque, et du coup avoir des plans qui soient compatibles avec la partie d\u00e9j\u00e0 non \u00e9vitable des cons\u00e9quences de nos actes pass\u00e9s. Pour le moment, l'impression g\u00e9n\u00e9rale est plut\u00f4t celle d'\u00eatre pris au d\u00e9pourvu \u00e0 chaque fois qu'il y a un \u00e9cart \u00e0 la \"pr\u00e9vision\" d'un monde ma\u00eetrisable et continu." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6903666062835937280,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6903666063389597696,urn:li:activity:6903666063389597696,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 56, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6903666063389597696,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6903666063389597696,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6903666063389597696", + "threadId": "activity:6903666063389597696", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6903666063389597696", + "urn": "urn:li:activity:6903666063389597696", + "numComments": 108, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6903666063389597696", + "reactionTypeCounts": [ + { + "count": 1388, + "reactionType": "LIKE" + }, + { + "count": 330, + "reactionType": "INTEREST" + }, + { + "count": 221, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6903666063389597696", + "numLikes": 1997, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6903666063389597696", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1997, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6903282407500247040,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6903282407500247040", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6903282407500247040)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6903282407500247040)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_linvasion-russe-en-ukraine-pourrait-elle-activity-6903282407500247040-z84f?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6903282406556520448", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6903282407500247040", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6903282407500247040,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6903282407500247040,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6903282406556520448", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "0/g2pMadZnv+U3DvfeT79Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6903282407500247040,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEa8f-QY6hulg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEa8f-QY6hulg", + "artifacts": [ + { + "width": 1546, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1645870779859?e=1679529600&v=beta&t=VHq6RIPRuccTbJU3-iezslcd5rFyecfVlrfZt9h7mbs", + "expiresAt": 1679529600000, + "height": 1088 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1645870781895?e=1679529600&v=beta&t=sMiqiMbbntwUi61tS_UDmPatLLtMlsUev4FOOmk5L4s", + "expiresAt": 1679529600000, + "height": 14 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1645870781895?e=1679529600&v=beta&t=YxCLvV2SUiSVK6Gd-1oGFq1pynxRHcJzmhVovkX-Fzc", + "expiresAt": 1679529600000, + "height": 901 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1645870781895?e=1679529600&v=beta&t=4XCI7ZtXAWB69usERN-INzRy-3FAGA-qP0Jc1uLu7_U", + "expiresAt": 1679529600000, + "height": 338 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1645870781895?e=1679529600&v=beta&t=7TJzPQQvQRRfryfevWXeQPxDDDeZzgyie_-W7Zh2pSU", + "expiresAt": 1679529600000, + "height": 113 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1645870781895?e=1679529600&v=beta&t=Qv5x0jIK_o3612cmSggBPNTfa8hNh4pgL4pGRTPRKIk", + "expiresAt": 1679529600000, + "height": 563 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEa8f-QY6hulg/feedshare-shrink_" + }, + "displayAspectRatio": 0.703751617076326 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, chart, line chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6903282406556520448,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'invasion russe en Ukraine pourrait-elle propulser le prix des c\u00e9r\u00e9ales vers des sommets ? La Russie, c'est environ 20% du bl\u00e9 faisant l'objet d'un commerce du commerce international. L'Ukraine, c'est un peu moins de 10% (https://lnkd.in/exKqJ5Hu ).\n\nDe ce fait, l'ensemble combin\u00e9 repr\u00e9sente un gros quart des exportations mondiales de cette c\u00e9r\u00e9ale majeure. Y a-t-il en cons\u00e9quence un vrai risque de \"contr\u00f4le des prix\", voire des quantit\u00e9s, par l'agr\u00e9gation politique des deux pays ?\n\nL'observation du prix du bl\u00e9 applicable aux \u00e9changes internationaux (graphique ci-dessous, tir\u00e9 de https://lnkd.in/eFTtRp22 ), montre que depuis 2000 le premier d\u00e9terminant du prix du bl\u00e9 est... le prix du p\u00e9trole. Le cours de cette c\u00e9r\u00e9ale est mont\u00e9 vers des sommets lors du choc de 2008, puis celui de 2010 - 2014, et est reparti \u00e0 la hausse depuis 2020 exactement comme celui du p\u00e9trole.\n\nEst-ce un effet inflationniste du au fait que le bl\u00e9 se cultive avec des engrais (fabriqu\u00e9s avec du gaz, dont le cours est index\u00e9 sur celui du p\u00e9trole) et des tracteurs fonctionnant au p\u00e9trole ?\n\nUn peu, mais cela n'explique pas une multiplication par 2 du prix. La premi\u00e8re raison est probablement celle d'un arbitrage par les acteurs du march\u00e9 financier (auquel je confesse ne pas avoir tout compris) qui conduit les cours de tr\u00e8s nombreuses commodit\u00e9s \u00e0 \u00e9voluer en parall\u00e8le.\n\nToujours est-il que quand on regarde cette courbe sur longue p\u00e9riode, la hausse des derniers jours n'est pas \"anormale\" : elle s'inscrit juste dans une tendance qui a d\u00e9marr\u00e9 bien avant. \n\nEt comme il est possible que le p\u00e9trole n'ait pas termin\u00e9 sa hausse (l'inverse aussi ! avec ce satan\u00e9 liquide les pr\u00e9visions pr\u00e9cises sont toujours un peu risqu\u00e9es :) ), cela signifie alors que le prix des c\u00e9r\u00e9ales, Ukraine ou pas, continuera de monter.\n\n Cela pourrait d\u00e9clencher d'autres foyers d'instabilit\u00e9 : les pays gros importateurs de nourriture dont l'\u00e9conomie domestique n'est pas au mieux. Cela concerne notamment les pays du sud de la M\u00e9diterran\u00e9e largement d\u00e9pendants du tourisme (Egypte et Tunisie), ce dernier \u00e9tant actuellement en phase de difficile r\u00e9mission post-covid.\n\nNous retrouverions alors la m\u00eame conjonction qu'au moment du d\u00e9clenchement du printemps arabe : des sources de devises au plus bas avec un prix de la nourriture import\u00e9e au plus haut. Et on connait la suite.\n\nCe qui pr\u00e9c\u00e8de n'est \u00e9videmment pas une pr\u00e9vision. Mais dans notre monde interconnect\u00e9 et faisant face \u00e0 des pressions \"physiques\" croissantes, les effets domino sont ceux qui sont le plus \u00e0 redouter." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6903282406556520448,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6903282407500247040,urn:li:activity:6903282407500247040,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6903282407500247040,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6903282407500247040,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6903282407500247040", + "threadId": "activity:6903282407500247040", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6903282407500247040", + "urn": "urn:li:activity:6903282407500247040", + "numComments": 99, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6903282407500247040", + "reactionTypeCounts": [ + { + "count": 865, + "reactionType": "LIKE" + }, + { + "count": 180, + "reactionType": "INTEREST" + }, + { + "count": 163, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6903282407500247040", + "numLikes": 1216, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6903282407500247040", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1216, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6902873609866395648,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6902873609866395648", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6902873609866395648)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6902873609866395648)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_guerre-en-ukraine-lue-pr%C3%A9pare-cette-fois-activity-6902873609866395648-rmVx?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6902873609014972417", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6902873609866395648", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6902873609866395648,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6902873609866395648,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6902873609014972417", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "64oP+VmXmwGlb580SfQrpw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6902873609866395648,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7446244115826261599", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676159395983?e=1677240000&v=beta&t=xWe2jMBT40vALyDiRLqx8BqHWtre7KgGjZQg1PnevE4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676159395983?e=1677240000&v=beta&t=91HqCt42V4GJx4P3HNh-B_WVmhC7meloatM-Vu5M1l8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676159395984?e=1677240000&v=beta&t=Xwec4cTEMRMF2QBEHIdWfDhS724elYabARwDkoYdOmo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676159395984?e=1677240000&v=beta&t=l8T6Wm3hatE-Mj86BcF_0PtyWfZrfj_T_fn6PQt1E6Q", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHh0EzIQUzjFw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7446244115826261599)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7446244115826261599)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Guerre en Ukraine : l'UE pr\u00e9pare, cette fois, un train de sanctions massives by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/ukraine-lue-prepare-cette-fois-un-train-de-sanctions-massives-imminent-1389367" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Guerre en Ukraine\u00a0: l'UE pr\u00e9pare, cette fois, un train de sanctions massives" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6902873609014972417,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Je te tiens, tu me tiens par la barbichette : l'Europe voudrait r\u00e9agir \u00e0 l'offensive russe en Ukraine, mais qui tient qui dans cette histoire ? La Russie, c'est un pays richement dot\u00e9 en mati\u00e8res premi\u00e8res, tr\u00e8s au-del\u00e0 de ce qui est n\u00e9cessaire \u00e0 sa consommation propre. \n\nDe ce fait, le pays exporte massivement p\u00e9trole et gaz, qui contribuent pour pr\u00e8s d'un tiers \u00e0 son PIB (sym\u00e9triquement l'Union d\u00e9pend de la Russie pour le tiers de ses approvisionnement pour ces deux sources d'\u00e9nergie, qui ensemble repr\u00e9sentent plus de la moiti\u00e9 des joules utilis\u00e9s sur le Vieux Continent). Mais il exporte aussi de nombreux minerais et m\u00e9taux, sans lesquels il n'y a pas d'industrie possible (et la France, o\u00f9 tous les candidats parlent de r\u00e9industrialiser - voire l'excellente tribune qui pique de Jean-Marc Vittori sur le sujet : https://lnkd.in/eXX5XskA - ferait bien de se souvenir qu'historiquement l'industrialisation est all\u00e9e avec le contr\u00f4le de l'approvisionnement en mati\u00e8res premi\u00e8res).\n\nEntre l'Europe qui a la possibilit\u00e9 \"physique\" de priver les russes de transactions financi\u00e8res (qui se font via le r\u00e9seau SWIFT qu'elle contr\u00f4le), et la Russie qui a la possibilit\u00e9 \"physique\" de mettre l'Union en p\u00e9nurie de gaz et de p\u00e9trole (donc aussi d'\u00e9lectricit\u00e9), qui tient qui ?\n\nSi demain matin les russes fermaient NordStream 1, le r\u00e9seau \u00e9lectrique allemand aurait de bonnes chances de sauter, et... l'Europe aussi n'aurait plus de transactions financi\u00e8res, puisqu'il faut de l'\u00e9lectricit\u00e9 pour les r\u00e9aliser !\n\nLa strat\u00e9gie \u00e9nerg\u00e9tique allemande, qui a consist\u00e9 depuis 20 ans - avec l'appui explicite des antinucl\u00e9aires europ\u00e9ens - \u00e0 se mettre un peu plus \u00e0 la remorque des russes, ne facilite donc pas la t\u00e2che pour essayer de tenir t\u00eate \u00e0 Poutine dans les conditions actuelles. On pourrait remarquer que, l'Europe n'ayant ni chef de guerre ni r\u00e9elle arm\u00e9e commune, \u00eatre cr\u00e9dible en temps de crise militaire est de toute fa\u00e7on une gageure. En outre, en se concentrant sur le consommateur (lib\u00e9ralisation des march\u00e9s, concurrence partout) et en n\u00e9gligeant la strat\u00e9gie de long terme (qui demande parfois de se passer du march\u00e9), notre attelage europ\u00e9en est de toute fa\u00e7on fragile face aux crises.\n\nOr, d'ici \u00e0 2050 il y aura de nombreuses crises, de nombreux impr\u00e9vus partout sur la plan\u00e8te, qui vont secouer la g\u00e9opolitique, notre \u00e9conomie, et donc notre pays. Tout plan de d\u00e9carbonation doit en tenir compte. Pour l'heure, les sc\u00e9narios de \"transition\" sont toujours des sc\u00e9narios \"calmes et sans crises\". Malheureusement la situation actuelle en Ukraine nous rappelle une fois de plus que cela correspond \u00e0 une \u00e9volution du monde qui n'aura pas lieu.\n\nLes \"\u00e9cologistes politiques\" doivent donc aussi avoir des propositions r\u00e9alistes en mati\u00e8re de g\u00e9opolitique et de strat\u00e9gie militaire." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6902873609014972417,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6902873609866395648,urn:li:activity:6902873609866395648,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 394, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6902873609866395648,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6902873609866395648,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6902873609866395648", + "threadId": "activity:6902873609866395648", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6902873609866395648", + "urn": "urn:li:activity:6902873609866395648", + "numComments": 716, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6902873609866395648", + "reactionTypeCounts": [ + { + "count": 10322, + "reactionType": "LIKE" + }, + { + "count": 1204, + "reactionType": "INTEREST" + }, + { + "count": 1173, + "reactionType": "MAYBE" + }, + { + "count": 325, + "reactionType": "PRAISE" + }, + { + "count": 57, + "reactionType": "EMPATHY" + }, + { + "count": 46, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6902873609866395648", + "numLikes": 13127, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6902873609866395648", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 13127, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6902573747639787521,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6902573747639787521", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6902573747639787521)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6902573747639787521)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_not-even-200-oil-will-make-shale-giants-activity-6902573747639787521-wICK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6902573746893176832", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6902573747639787521", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6902573747639787521,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6902573747639787521,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6902573746893176832", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "MAQOs0z8dPfqlw9b+d0W7g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6902573747639787521,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8723325760099001479", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 718, + "fileIdentifyingUrlPathSegment": "800/0/1676249667208?e=1677240000&v=beta&t=ou1hrvDskabM8SxEd-qSnvcDpLC5Z8Dq-kBYxTVnb20", + "expiresAt": 1677240000000, + "height": 300 + }, + { + "width": 718, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676249667208?e=1677240000&v=beta&t=YNGE5qez0whGIlvsIv2E-FGbyG4q6lpHwdTPdHdhjMQ", + "expiresAt": 1677240000000, + "height": 300 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676249667209?e=1677240000&v=beta&t=kjCjRY78b8RIPfF7aT5cbeieZbloahTzR-2c6h0FklA", + "expiresAt": 1677240000000, + "height": 66 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676249667209?e=1677240000&v=beta&t=RhJYoWBPbi6bFl_VvFwiKAmBLm5JtAFYNoLEGJ1dXR8", + "expiresAt": 1677240000000, + "height": 200 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFsRYB-jSWK8Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8723325760099001479)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8723325760099001479)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "oilprice.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Not Even $200 Oil Will Make Shale Giants Drill Aggressively | OilPrice.com by oilprice.com", + "actionTarget": "https://oilprice.com/Energy/Energy-General/Not-Even-200-Oil-Will-Make-Shale-Giants-Drill-Aggressively.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Not Even $200 Oil Will Make Shale Giants Drill Aggressively | OilPrice.com" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6902573746893176832,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les plus gros producteurs de shale oil aux USA ont annonc\u00e9 \u00e0 la presse que m\u00eame \u00e0 200 dollars le baril ils ne d\u00e9cideront pas de produire beaucoup plus qu'aujourd'hui. \n\nLors de la mont\u00e9e en puissance de ce type de p\u00e9trole, un fait avait marqu\u00e9 les observateurs : le secteur perdait continument du cash (fourni par des augmentation de capital et de la dette). A l'origine il y a un fait physique : un nouveau puits de shale oil voit sa production diminuer des 4/5\u00e8 au bout d'un an, parce qu'une roche m\u00e8re fractur\u00e9e ne contient pas le m\u00eame volume extractible qu'un gisement \"conventionnel\" une fois le puits de production en place.\n\nEn phase de croissance de la production, il faut donc forer massivement : \u00e0 la fois pour compenser le d\u00e9clin des puits d\u00e9j\u00e0 for\u00e9s, et pour assurer la croissance.\n\nMais forer des nouveaux puits coute cher. Augmenter la production garantit un cash flow n\u00e9gatif, la laisser d\u00e9cliner (ce qui supprime les nouveaux forages) permet de gagner de l'argent. L'int\u00e9r\u00eat \u00e9conomique des acteurs du secteur est donc de ne pas augmenter (ou tr\u00e8s peu) la production. Mais cela signifie que le shale oil ne peut pas compenser le d\u00e9clin des autres productions, d\u00e9clin enclench\u00e9 depuis 2008 dans le monde, et donc que la production p\u00e9troli\u00e8re mondiale devrait significativement d\u00e9cliner d'ici \u00e0 2050, climat ou pas.\n\nLe p\u00e9trole restant un facteur limitant de l'activit\u00e9 \u00e9conomique mondiale (car il permet l'essentiel des transports), il est donc probable que les flux physiques vont se retrouver de plus en plus contraints \u00e0 l'avenir. Macro\u00e9conomiquement, cela signifie que le plus probable pour les d\u00e9cennies \u00e0 venir est un PIB contract\u00e9 en tendance (du moins tant qu'on le compte pareil), et, physiquement, des ressources mat\u00e9rielles (nourriture, m\u00e9taux, objets...) de plus en plus difficiles \u00e0 produire et mettre \u00e0 disposition en quantit\u00e9s identiques et au m\u00eame endroit.\n\nIl sera int\u00e9ressant de voir si le lien est fait entre cette annonce am\u00e9ricaine et les perspectives \"de facilit\u00e9\" (en pratique un PIB croissant) mises en avant par les ex\u00e9cutifs europ\u00e9ens, \u00e0 commencer par ceux qui briguent cette place en France. Cela fera partie des choses que The Shift Project regardera quand il passera \u00e0 la loupe les programmes des candidat(e)s." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6902573746893176832,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6902573747639787521,urn:li:activity:6902573747639787521,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 22, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6902573747639787521,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6902573747639787521,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6902573747639787521", + "threadId": "activity:6902573747639787521", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6902573747639787521", + "urn": "urn:li:activity:6902573747639787521", + "numComments": 38, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6902573747639787521", + "reactionTypeCounts": [ + { + "count": 473, + "reactionType": "LIKE" + }, + { + "count": 83, + "reactionType": "INTEREST" + }, + { + "count": 71, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6902573747639787521", + "numLikes": 637, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6902573747639787521", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 637, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6902533148299579392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6902533148299579392", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6902533148299579392)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6902533148299579392)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-interview-dans-le-monde-en-f%C3%A9vrier-2022-activity-6902533148299579392-43M1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6902533147771105280", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6902533148299579392", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6902533148299579392,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6902533148299579392,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6902533147771105280", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "4U/xZ/cWilrm4S98VZeDcQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6902533148299579392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8735869242463857114", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675432979204?e=1677240000&v=beta&t=lq73jKUBEmpmKl6JNkGqlaA1wdJan1fFfZ00-C8RQJY", + "expiresAt": 1677240000000, + "height": 259 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675432979204?e=1677240000&v=beta&t=Il9-DG96t2_ktPtoc2MMBXaVexm4qyR7fa8Og385A34", + "expiresAt": 1677240000000, + "height": 415 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675432979204?e=1677240000&v=beta&t=OeDpKl3fNMyNlqynUu3Pg3mdyqgo5U6muKwBNyhsP5E", + "expiresAt": 1677240000000, + "height": 52 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675432979205?e=1677240000&v=beta&t=oLBmmTZ_Yi6a6MDphSZvWx2TunExsVfVwS8KKfnqeYE", + "expiresAt": 1677240000000, + "height": 156 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFk__a9Jkd8ug/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8735869242463857114)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8735869242463857114)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Une interview dans Le Monde en f\u00e9vrier 2022 by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/interviews/une-interview-dans-le-monde-en-fevrier-2022/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Une interview dans Le Monde en f\u00e9vrier 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6902533147771105280,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dimanche dernier, le Plan de Transformation de l'Economie Fran\u00e7aise \u00e9tait dans Le Monde (le journal, en attendant que ca soit sur la plan\u00e8te :) ).\n\nJ'ai reproduit le contenu de l'interview sur mon site, pour celles et ceux qui n'auraient pas eu acc\u00e8s au texte int\u00e9gral de l'interview en question." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6902533147771105280,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6902533148299579392,urn:li:activity:6902533148299579392,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 10, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6902533148299579392,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6902533148299579392,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6902533148299579392", + "threadId": "activity:6902533148299579392", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6902533148299579392", + "urn": "urn:li:activity:6902533148299579392", + "numComments": 11, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6902533148299579392", + "reactionTypeCounts": [ + { + "count": 196, + "reactionType": "LIKE" + }, + { + "count": 14, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "INTEREST" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6902533148299579392", + "numLikes": 231, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6902533148299579392", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 231, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6902205507491151872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6902205507491151872", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6902205507491151872)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6902205507491151872)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_green-investing-the-risk-of-a-new-mis-selling-activity-6902205507491151872-AAuw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6902205506870415360", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6902205507491151872", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6902205507491151872,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6902205507491151872,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6902205506870415360", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "21CgRr5/1lhszwfT2iwbOQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6902205507491151872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7353125665489098174", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "shrink_800/0/1676474909864?e=1677240000&v=beta&t=Yj5k4oYB2UccUs6cKdnx3e2GZxJxWR0GTodnLW70yFY", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 624, + "fileIdentifyingUrlPathSegment": "proxy-image-offsite-ads_350_624/0/1676474909860?e=1677240000&v=beta&t=Ei4t48lU4kG2nyHhv6Z21UJdIGshWEg4Zq08AwyXj-o", + "expiresAt": 1677240000000, + "height": 350 + }, + { + "width": 900, + "fileIdentifyingUrlPathSegment": "shrink_1280_800/0/1676474909864?e=1677240000&v=beta&t=5Pfr3AxfRLSg7AMyz5UYHeEJuPjuuoB2ufRd4Td5D8s", + "expiresAt": 1677240000000, + "height": 506 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "shrink_160/0/1676474909865?e=1677240000&v=beta&t=3BTsCKR5ckbh7FCDZAHryYiAxF1hr4OAeOmvQO7fx2M", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "shrink_480/0/1676474909865?e=1677240000&v=beta&t=WQyxnmelmK4UlqGt6BNk1Jg_bbJq6tMfa7jFnthVb5U", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFkqC7SV2Kn_A/articleshare-" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7353125665489098174)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7353125665489098174)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ft.com \u2022 12 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Green investing: the risk of a new mis-selling scandal by ft.com", + "actionTarget": "https://www.ft.com/content/ae78c05a-0481-4774-8f9b-d3f02e4f2c6f" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Green investing: the risk of a new mis-selling scandal" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6902205506870415360,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Financial Times publie un article (qui occupe une pleine page dans l'\u00e9dition papier) sur le fait que les produits financiers dits \"verts\" pourraient faire de plus en plus l'objet de proc\u00e9dures pour fraude (ou quelque chose d'\u00e9quivalent), parce que leur caract\u00e9ristique \"verte\" n'est pas comprise de la m\u00eame mani\u00e8re par le vendeur et l'acheteur, le premier en ayant une compr\u00e9hension plus \"accommodante\" que le second.\n\nEt, du coup, lorsque le second se rend compte qu'il n'a pas achet\u00e9 ce qu'il croyait acheter, il pourrait demander r\u00e9paration, quand bien m\u00eame il n'a subi aucune perte financi\u00e8re. Ca serait au fond une esp\u00e8ce de r\u00e9paration d'un pr\u00e9judice moral.\n\nIl se pourrait donc que les juges conf\u00e8rent un caract\u00e8re plus contraignant \u00e0 cette affirmation de verdeur que ce que les concepteur de ces produits ont en t\u00eate, ces derniers consid\u00e9rant un peu trop souvent que l'important est de dire que l'on est vert et moins la r\u00e9alit\u00e9 de ce qui est fait.\n\nDe fait, dans le monde financier, le c\u00f4t\u00e9 \"vert\" est aujourd'hui l'objet de d\u00e9finitions o\u00f9 chacun voit facilement midi \u00e0 sa porte. Si le droit devient le juge de paix (c'est le cas de le dire), quelle pourrait \u00eatre l'interpr\u00e9tation de ce qui est \"durable\" ? La Palisse nous dit que cela signifie une activit\u00e9 capable de durer (!), et au niveau du climat, dit un avocat, cela signifiera \"align\u00e9 avec l'accord de Paris\". \n\nEn pratique, il faudra donc une m\u00e9thode opposable et partag\u00e9e qui permette de comprendre si un produit financier est effectivement capable de r\u00e9sister \u00e0 une baisse de 5% des \u00e9missions plan\u00e9taires tous les ans (car c'est cela \"align\u00e9 avec l'accord de Paris\"). Il sera int\u00e9ressant de voir si des tribunaux sont capables d'aller \u00e0 ce niveau de technicit\u00e9, et ce qu'il en sort. \n\nMais ce qui est sur, c'est que le risque existe pour des acteurs du monde financier de se faire prendre la main dans le pot de peinture verte, car la pratique actuelle est trop souvent bas\u00e9e sur des fondements th\u00e9oriques plus que discutables. Ce qui est sugg\u00e9r\u00e9 dans cet article, c'est que la seule affirmation qui soit valable est de dire que \"tel produit est mieux plac\u00e9 que tel autre en ce qui concerne le climat\" (ce qui, soit dit en passant, est exactement la philosophie des m\u00e9thodes utilis\u00e9es au sein de Carbon 4 Finance). Mais cela n'autorise pas \u00e0 dire que le produit en question est vert." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6902205506870415360,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6902205507491151872,urn:li:activity:6902205507491151872,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 39, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6902205507491151872,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6902205507491151872,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6902205507491151872", + "threadId": "activity:6902205507491151872", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6902205507491151872", + "urn": "urn:li:activity:6902205507491151872", + "numComments": 49, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6902205507491151872", + "reactionTypeCounts": [ + { + "count": 945, + "reactionType": "LIKE" + }, + { + "count": 132, + "reactionType": "INTEREST" + }, + { + "count": 111, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6902205507491151872", + "numLikes": 1217, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6902205507491151872", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1217, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6901902422168399872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6901902422168399872", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6901902422168399872)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6901902422168399872)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-id%C3%A9es-re%C3%A7ues-sur-la-voiture-%C3%A9lectrique-activity-6901902422168399872-SrRi?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6901902421459550208", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6901902422168399872", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6901902422168399872,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6901902422168399872,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6901902421459550208", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "2uJGMf8UyUX/Pci+1Zo3Pg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6901902422168399872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7030693757098633398", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676439023184?e=1677240000&v=beta&t=QM1BNTKdW5f9rNgFpztGSxN3Dqv0TFvL5_WGWhsdGX4", + "expiresAt": 1677240000000, + "height": 530 + }, + { + "width": 1207, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676439023184?e=1677240000&v=beta&t=kZWHGZfHHl6afZw1n6H2fmBPO2PCr0sDtl46g5kRCBI", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676439023185?e=1677240000&v=beta&t=frSRyr-U5kKPHiboAbEn6N6_SoW5kcu_MPhtNzmrL_A", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676439023185?e=1677240000&v=beta&t=li6gbxs3H4KASUF3I4s_2t25mHM8mAyVAjtr6BUrsUY", + "expiresAt": 1677240000000, + "height": 318 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFi4ERRGI_92Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.6625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7030693757098633398)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7030693757098633398)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les id\u00e9es re\u00e7ues sur la voiture \u00e9lectrique | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/analyse-faq-voiture-electrique" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les id\u00e9es re\u00e7ues sur la voiture \u00e9lectrique | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6901902421459550208,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Solution miracle pour les uns, fausse bonne id\u00e9e pour les autres, la voiture \u00e9lectrique se retrouve d\u00e9sormais souvent au centre de d\u00e9bats passionn\u00e9s sur la place qu'elle doit occuper pour remplacer ces satan\u00e9es voitures \u00e0 p\u00e9trole qui puent et qui polluent.\n\nA travers une premi\u00e8re s\u00e9rie de questions-r\u00e9ponses, Carbone 4 vous propose de faire un \u00e9tat des lieux sur l'aspect \"carbone\" de l'affaire, pour vous aider \u00e0 situer la voiture \u00e9lectrique par rapport \u00e0 ses alternatives (dont la voiture hybride), et vous aider aussi \u00e0 comprendre que m\u00eame au sein de l'\u00e9lectrique il y a plus ou moins vertueux en mati\u00e8re de carbone selon que l'on a une petite voiture ou un e-tank.\n\nBonne lecture !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6901902421459550208,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6901902422168399872,urn:li:activity:6901902422168399872,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 269, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6901902422168399872,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6901902422168399872,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6901902422168399872", + "threadId": "activity:6901902422168399872", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6901902422168399872", + "urn": "urn:li:activity:6901902422168399872", + "numComments": 481, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6901902422168399872", + "reactionTypeCounts": [ + { + "count": 3359, + "reactionType": "LIKE" + }, + { + "count": 651, + "reactionType": "INTEREST" + }, + { + "count": 396, + "reactionType": "MAYBE" + }, + { + "count": 64, + "reactionType": "PRAISE" + }, + { + "count": 28, + "reactionType": "EMPATHY" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6901902422168399872", + "numLikes": 4505, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6901902422168399872", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4505, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6901793516540739584,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6901793516540739584", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6901793516540739584)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6901793516540739584)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_dans-sa-derni%C3%A8re-livraison-concernant-lavenir-activity-6901793516540739584-O5Qf?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6901793515475415040", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6901793516540739584", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6901793516540739584,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6901793516540739584,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6901793515475415040", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "l7DKszCmNYHUxC5d/Y2gVA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6901793516540739584,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGBJFyD5maugQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGBJFyD5maugQ", + "artifacts": [ + { + "width": 1712, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1645515801350?e=1679529600&v=beta&t=t5UOUGbnRiMW2YLqk2wLm2UxbCkD0G9i9iQvr7xim1s", + "expiresAt": 1679529600000, + "height": 772 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1645515802567?e=1679529600&v=beta&t=quiV3e6tHcCkAghNItEV1dgQTYXBTgUyK0e_uiKjkF0", + "expiresAt": 1679529600000, + "height": 9 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1645515802567?e=1679529600&v=beta&t=l3UU6rM8NW36igToZPAYXlxFfG4b9iTJZfoFB1n-rD8", + "expiresAt": 1679529600000, + "height": 577 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1645515802567?e=1679529600&v=beta&t=Pg0hXPVgQ2Lrk9HBT3UROi5sYEi9mJkNaYfnsEOuCLY", + "expiresAt": 1679529600000, + "height": 216 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1645515802567?e=1679529600&v=beta&t=k3Td5mj6F6It3t8HHW_zh9bpcImfx1GGrCtfgNcOIG8", + "expiresAt": 1679529600000, + "height": 72 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1645515802567?e=1679529600&v=beta&t=mwu_DoqW0U7DIzPdiPqe7f8IM-9lmUyvMyUdH53T8Sg", + "expiresAt": 1679529600000, + "height": 361 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGBJFyD5maugQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.45093457943925236 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, line chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6901793515475415040,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans sa derni\u00e8re livraison concernant l'avenir possible du syst\u00e8me \u00e9lectrique, RTE annonce la mise \u00e0 l'\u00e9tude d'une variante \"mondialisation contrari\u00e9e\" du cadrage macro\u00e9conomique de r\u00e9f\u00e9rence (qui sert pour les analyses \u00e9conomiques). D\u00e9crit \u00e0 partir de la page 194 du document https://lnkd.in/eAp4RVwn, cette variante est moins optimiste que la version de base sur la croissance \u00e9conomique (de 1,4% par an sur les 30 ans \u00e0 venir) et sur la disponibilit\u00e9 des mati\u00e8res premi\u00e8res (dans la version de base on suppose une \"absence de tensions particuli\u00e8res sur les approvisionnements en mati\u00e8res et composants n\u00e9cessaires au d\u00e9veloppement de nouvelles infrastructures \u00e9nerg\u00e9tiques\").\n\nOr, RTE consid\u00e8re sagement que \"Il est cependant n\u00e9cessaire de s\u2019interroger quant \u00e0 la robustesse des sc\u00e9narios vis-\u00e0-vis d\u2019un contexte global plus adverse, qui ne peut pas \u00eatre exclu vu\nd\u2019aujourd\u2019hui\". RTE note par exemple que le prix des mati\u00e8res premi\u00e8res est fortement remont\u00e9 r\u00e9cemment (ce qui est aussi vrai pour les composants du PV), que la mondialisation (qui est bas\u00e9e sur le p\u00e9trole) est aujourd'hui indispensable \u00e0 la fourniture de composants indispensables \u00e0 bas cout, et donc que sa poursuite n'est pas assur\u00e9e, etc.\n\nDans la version \"mondialisation contrari\u00e9e\", RTE Ecrit que :\nDe mani\u00e8re caricaturale, deux types d\u2019issues peuvent donc \u00eatre envisag\u00e9es dans l\u2019analyse des implications de cette variante sur le contexte macro\u00e9conomique :\n\u00b0 Dans un premier cas, la transition \u00e9nerg\u00e9tique resterait possible, au prix de r\u00e9percussions n\u00e9gatives sur le pouvoir d\u2019achat des m\u00e9nages\n(avec une baisse des consommations d\u2019\u00e9nergie sous la contrainte) et possiblement de s\u00e9curit\u00e9 d\u2019approvisionnement \u00e9lectrique ;\n* Dans l\u2019autre, l\u2019atteinte m\u00eame des objectifs climatiques est \u00e0 interroger.\n\nIl faut saluer le fait qu'une entit\u00e9 publique ose \u00e9crire que l'avenir sera peut-\u00eatre moins facile \u00e0 piloter que le pr\u00e9sent, et que nos paris doivent pouvoir r\u00e9sister \u00e0 un contexte \u00e9conomique chaotique et un approvisionnement en mat\u00e9riaux et composants plus difficile \u00e0 assurer.\n\nC'est bien dans ce contexte que nous devrions d\u00e9sormais faire de la prospective. Si nous avons d'heureuses surprises, on arrivera probablement \u00e0 s'en accommoder sans trop de difficult\u00e9s. Mais, \u00e0 l'inverse, prendre pour acquis que le contexte sera facile nous laisse sans boussole si ce n'est pas le cas, alors m\u00eame que tous les signaux se conjuguent - h\u00e9las - pour nous dire que c'est un monde plus volatil et moins g\u00e9n\u00e9reux sur le plan des ressources qui s'annonce." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6901793515475415040,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6901793516540739584,urn:li:activity:6901793516540739584,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 19, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6901793516540739584,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6901793516540739584,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6901793516540739584", + "threadId": "activity:6901793516540739584", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6901793516540739584", + "urn": "urn:li:activity:6901793516540739584", + "numComments": 37, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6901793516540739584", + "reactionTypeCounts": [ + { + "count": 683, + "reactionType": "LIKE" + }, + { + "count": 93, + "reactionType": "INTEREST" + }, + { + "count": 65, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6901793516540739584", + "numLikes": 858, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6901793516540739584", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 858, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6901431976121679872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6901431976121679872", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6901431976121679872)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6901431976121679872)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_oil-could-vault-as-high-as-150-a-barrel-activity-6901431976121679872-WLpe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6901431975266062336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6901431976121679872", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6901431976121679872,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6901431976121679872,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6901431975266062336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "hlNeqE/tmviypf+rXQmuxg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6901431976121679872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7780488272681738020", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675620870780?e=1677240000&v=beta&t=U06qmoUlBTTLzHb3A_a0ZRxQKvWoUkBAYYhVb8NbyOQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675620870780?e=1677240000&v=beta&t=qOClkt4x4Wls_xRFr6zfP42nJq5Rr0y46VAwZ0sI968", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675620870780?e=1677240000&v=beta&t=nfdeGr5AeusmpoaFjwKQi8ymoV-s4LVST_dMrMPwUKk", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675620870780?e=1677240000&v=beta&t=Z4l2hcaLuNgBdzzsEqXgFWJY-syZLS9qzpD-BB9B6q0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFi5lcRnKUfcw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7780488272681738020)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7780488272681738020)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "cnbc.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Oil could vault as high as $150 a barrel, veteran analyst warns, as undersupply meets surging demand by cnbc.com", + "actionTarget": "https://www.cnbc.com/2022/02/16/oil-could-vault-as-high-as-150-a-barrel-veteran-analyst-warns.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Oil could vault as high as $150 a barrel, veteran analyst warns, as undersupply meets surging demand" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6901431975266062336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il \u00e9tait \u00e0 un peu moins de 60 dollars il y a un an, et m\u00eame transitoirement \u00e0 -37 dollars en avril 2020, au moment du premier confinement plan\u00e9taire du au covid : le baril de p\u00e9trole approche d\u00e9sormais les 100. \n\nCette hausse n'est pas compl\u00e8tement une surprise : au moment du covid, le prix s'\u00e9tant effondr\u00e9, les investissements dans la production ont fait de m\u00eame, et du coup au moment o\u00f9 le monde voudrait en consommer plus, l'offre ne suit pas.\n\nLes pays de l'OPEP+, par exemple (l'OPEP + rassemble les pays de l'OPEP et une dizaine d'autres dont la Russie, le Kazakhstan et le Mexique) produisent actuellement en dessous du quota qu'ils se sont fix\u00e9. Dans les diverses causes auxquelles on peut penser, il y a tout simplement le fait qu'il ne leur est techniquement pas possible de sortir plus de barils actuellement, par manque de capacit\u00e9s de production... ou de p\u00e9trole \u00e0 extraire.\n\nCertains de ces pays ont en effet pass\u00e9 leur pic de production de mani\u00e8re certaine (le Mexique, l'Alg\u00e9rie, le Nig\u00e9ria ou encore le Venezuela, et la Russie - 30% du p\u00e9trole utilis\u00e9 en Europe - n'en est pas loin si ce n'est d\u00e9j\u00e0 fait) et la question se pose pour d'autres. \n\nRappelons que, pour le p\u00e9trole dit \"conventionnel\" (tout ce qui n'est pas shale oil et sables bitumineux), le pic mondial a \u00e9t\u00e9 pass\u00e9 en 2008, aux dires de l'Agence Internationale de l'Energie. \n\nDu coup, et c'est exactement ce que sugg\u00e8re cet article, en cas d'insuffisance de production, il n'y a pas d'autre mani\u00e8re d'\u00e9quilibrer la situation que de d\u00e9truire de la demande. Cela passe notamment par des prix qui montent. \n\nIl est assez facile de th\u00e9oriser que lorsque l'\u00e9conomie manque d'un facteur de production qui lui est essentiel (ce qui est le cas pour le p\u00e9trole, sans lequel il n'y a pas de monde \"moderne\"), le prix de ce dernier devient volatil. Au d\u00e9but, le prix monte, mais comme par ailleurs la substance est physiquement indispensable, son d\u00e9faut d\u00e9truit du PIB. Cette destruction fait baisser la demande, et du coup le prix baisse. \n\nA ce moment les producteurs ne sont pas incit\u00e9s \u00e0 faire sortir de terre le baril marginal (qui est le plus cher), alors que les gisements en cours d'exploitation voient globalement leur production baisser, et l'offre se tasse. M\u00eame avec une demande diminu\u00e9e, le prix se met alors \u00e0 remonter, et c'est reparti pour un cycle. La \"longueur d'onde\" de cette volatilit\u00e9 est notamment fonction du temps de mise en oeuvre des investissements pour faire remonter (autant que faire se peut) la production.\n\nNe pas d\u00e9carboner nos \u00e9conomies (et en particulier ne pas les \"d\u00e9p\u00e9troliser\") de mani\u00e8re organis\u00e9e nous exposera de mani\u00e8re structurelle \u00e0 cette volatilit\u00e9 des prix du p\u00e9trole, et, par effet de ricochet, \u00e0 une volatilit\u00e9 de beaucoup d'autres prix (comme ceux du gaz. Et du coup, cela l\u00e9gitime cette plaisanterie des personnes du secteur : en mati\u00e8re de p\u00e9trole, vous pouvez donner un prix ou vous pouvez donner une date, mais jamais les deux en m\u00eame temps !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6901431975266062336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6901431976121679872,urn:li:activity:6901431976121679872,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6901431976121679872,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6901431976121679872,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6901431976121679872", + "threadId": "activity:6901431976121679872", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6901431976121679872", + "urn": "urn:li:activity:6901431976121679872", + "numComments": 105, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6901431976121679872", + "reactionTypeCounts": [ + { + "count": 927, + "reactionType": "LIKE" + }, + { + "count": 170, + "reactionType": "INTEREST" + }, + { + "count": 113, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6901431976121679872", + "numLikes": 1229, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6901431976121679872", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1229, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6901233436908945408,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6901233436908945408", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6901233436908945408)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6901233436908945408)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_smart-impact-linvit%C3%A9-de-smart-impact-activity-6901233436908945408-QMG9?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6901233436376264704", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6901233436908945408", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6901233436908945408,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6901233436908945408,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6901233436376264704", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "mPAazDUgckdrQ63ROoqtmw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6901233436908945408,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7993494456292544460", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676028743145?e=1677240000&v=beta&t=Pmufc4ZxCvsQIAzSHvADzMF7cJ30OjLfi3kq7JclTT0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676028743145?e=1677240000&v=beta&t=lhf7mWFzISZipnadzAvzTdxNV2RPyFvMa65CeOAZkZg", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676028743145?e=1677240000&v=beta&t=GqJHGdaJUJ4fkIr-gYnyeZXURm6MN2B07vqeETRzGyY", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676028743145?e=1677240000&v=beta&t=G13EoCsWGtGKEXDoROPC08xcGA3L8fkijNKttUuBT2c", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEeLvMp0pFqgA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7993494456292544460)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7993494456292544460)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: SMART IMPACT - L'invit\u00e9 de SMART IMPACT : Jean-Marc Jancovici (The Shift Project) on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=lUauIaotfPI&list=PLMDQXkItOZ4JPzrtfq6f0zTG5utL7az4N&index=2" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Vendredi 18 f\u00e9vrier 2022, SMART IMPACT re\u00e7oit Jean-Marc Jancovici (Pr\u00e9sident, The Shift Project)" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "SMART IMPACT - L'invit\u00e9 de SMART IMPACT : Jean-Marc Jancovici (The Shift Project)" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6901233436376264704,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Je ne sais pas si c'est en entendant parler de sobri\u00e9t\u00e9 que Thomas Hugues l\u00e8ve les yeux au ciel :), mais c'est entre autres de ce sujet dont il a \u00e9t\u00e9 question lors de mon passage sur B Smart pour \u00e9voquer \u00e0 la fois Le Monde sans Fin (d\u00e9sormais r\u00e9approvisionn\u00e9 de mani\u00e8re significative) et le Plan de Transformation de l'Economie Fran\u00e7aise (qui r\u00e9cup\u00e8re plus doucement de sa rupture de stock - d\u00e9cid\u00e9ment une manie :) - mais la r\u00e9mission, \u00e0 savoir une r\u00e9impression cons\u00e9quente, est en vue). \n\nUn petit ap\u00e9ro de 20 minutes avant le film du soir !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6901233436376264704,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6901233436908945408,urn:li:activity:6901233436908945408,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 12, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6901233436908945408,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6901233436908945408,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6901233436908945408", + "threadId": "activity:6901233436908945408", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6901233436908945408", + "urn": "urn:li:activity:6901233436908945408", + "numComments": 19, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6901233436908945408", + "reactionTypeCounts": [ + { + "count": 263, + "reactionType": "LIKE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6901233436908945408", + "numLikes": 293, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6901233436908945408", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 293, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6901193252578353152,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6901193252578353152", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6901193252578353152)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6901193252578353152)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_recherche-demploi-activity-6901193252578353152-Nk_S?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6901193251890483200", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6901193252578353152", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6901193252578353152,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6901193252578353152,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6901193251890483200", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "4t20i7DI2J1YFbqaOU5+fw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6901193252578353152,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9206443569304101187", + "swapTitleAndSubtitle": false, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9206443569304101187)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9206443569304101187)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "selescope.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Recherche d\u2019emploi by selescope.com", + "actionTarget": "https://www.selescope.com/candidat/?id=8152" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Postulez \u00e0 nos offres d'emploi, envoyez nous votre candidature et un consultant en recrutement Selescope \u00e9tudiera votre candidature" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Recherche d\u2019emploi" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6901193251890483200,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si vous travaillez dans le domaine de la finance, que le climat n'a pas de secret pour vous, que vous aimez \u00e0 la fois \"rentrer dans la technique\" et manager des \u00e9quipes, que vous avez d\u00e9j\u00e0 quelques ann\u00e9es d'exp\u00e9rience au compteur, et que c'est justement ce week-end que vous aviez d\u00e9cid\u00e9 de r\u00e9fl\u00e9chir \u00e0 un changement d'employeur, vous serez peut-\u00eatre int\u00e9ress\u00e9 d'apprendre que Carbon 4 Finance se cherche son/sa nouveau/nouvelle DG.\n\nCarbon 4 Finance est la branche \"data\" de Carbone 4, qui fournit au monde financier des donn\u00e9es pour que ce dernier comprenne \"ce qu'il fait\", quels risques il court en ce qui concerne les \u00e9missions de gaz \u00e0 effet de serre, la d\u00e9carbonation, les risques physiques du changement climatique, et enfin qu'il puisse mesurer l'impact sur la biodiversit\u00e9 de ses activit\u00e9s.\n\nNotre promesse n'est pas de permettre \u00e0 nos clients de se verdir sans rien changer \u00e0 leurs pratiques, mais de leur fournir une meilleure appr\u00e9hension de la \"distance au probl\u00e8me\" de leurs activit\u00e9s, pour - id\u00e9alement - les rendre plus matures et donc pertinents sur le sujet.\n\nNous avons d\u00e9velopp\u00e9, en interne pour le climat (risques de transition et risques physiques), et en partenariat avec CDC Biodiversit\u00e9 pour la biodiversit\u00e9, des m\u00e9thodes permettant ensuite de noter plus de 10.000 \u00e9metteurs de titres (actions ou obligations), cette information \u00e9tant disponible sur abonnement aupr\u00e8s de nos clients. \n\nNous sommes (\u00e0 notre connaissance) le seul fournisseur de telles donn\u00e9es 100% ind\u00e9pendant en France (aucun actionnaire ext\u00e9rieur \u00e0 la soci\u00e9t\u00e9), et si l'on regarde les 3 offres que nous fournissons nous avons m\u00eame peu d'\u00e9quivalents ailleurs pour le moment. Cela nous conf\u00e8re une forte libert\u00e9 intellectuelle, laquelle nous rend en retour un peu exigeants sur la rigueur m\u00e9thodologique ; on n'a rien sans rien !\n\nLes d\u00e9tails et la mani\u00e8re de postuler sont d\u00e9taill\u00e9es dans l'annonce ci-dessous. Bonne chance pour celles et ceux qui se laisseront tenter !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6901193251890483200,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6901193252578353152,urn:li:activity:6901193252578353152,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 31, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6901193252578353152,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6901193252578353152,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6901193252578353152", + "threadId": "activity:6901193252578353152", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6901193252578353152", + "urn": "urn:li:activity:6901193252578353152", + "numComments": 35, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6901193252578353152", + "reactionTypeCounts": [ + { + "count": 896, + "reactionType": "LIKE" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6901193252578353152", + "numLikes": 963, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6901193252578353152", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 963, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6900745253964308480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6900745253964308480", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6900745253964308480)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6900745253964308480)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cest-notre-plan%C3%A8te-du-19-f%C3%A9vrier-2022-activity-6900745253964308480-aJDj?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6900745253242892288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6900745253964308480", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6900745253964308480,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6900745253964308480,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6900745253242892288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "KfzukgrF1q6TIQcFShlokg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6900745253964308480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8315117002084590592", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675633646138?e=1677240000&v=beta&t=nCU5SHSEw4YgBD2yQuFOwBC_1CJq0Jktq4nR9kj6G0g", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675633646138?e=1677240000&v=beta&t=fnb49z54DQHeGcq1YnHPQmLod-K64mk-9k9h_jC-NlA", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675633646139?e=1677240000&v=beta&t=2XuriZ_IeCf0lNZf_VS2TMQE7WzFmZkH0VDu0qawlp0", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675633646139?e=1677240000&v=beta&t=9FG6WdPBYjBPDnZcgoi6wlh5h8OijrodHNnIA-Ynwzg", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGcx3SXAiHPHg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8315117002084590592)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8315117002084590592)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: C'est notre Plan\u00e8te du 19 f\u00e9vrier 2022 by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900126720-c-est-notre-planete-du-19-fevrier-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "C'est notre Plan\u00e8te du 19 f\u00e9vrier 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6900745253242892288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Aurons nous assez de cuivre, de nickel, de lithium, de cobalt, d'indium, d'\u00e9tain ou m\u00eame d'or (il y en a dans tous les appareils \u00e9lectroniques) pour assurer la \"transition\" ? C'\u00e9tait l'objet de ma petite chronique diffus\u00e9e ce matin (comme tous les Samedi) sur RTL.\n\nPourquoi cette question ? Parce que de se d\u00e9barrasser des combustibles fossiles demande d'utiliser plus de m\u00e9tal, dans un monde qui demande de faire plus de place \u00e0 l'\u00e9lectricit\u00e9. Cette derni\u00e8re doit \u00eatre produite et il faut du m\u00e9tal dans les alternateurs et c\u00e2blages des dispositifs de production. \n\nPlus l'\u00e9nergie disponible dans l'environnement est diffuse (vent et soleil) plut\u00f4t que concentr\u00e9e (combustibles fossiles et accessoirement uranium), et plus il faut de m\u00e9tal par unit\u00e9 d'\u00e9nergie mise \u00e0 disposition des machines que nous utilisons... et qui seront aussi \u00e9lectriques, et donc demanderont aussi du cuivre et d'autres m\u00e9taux.\n\nIl faut par exemple pr\u00e8s de 100 kg de cuivre par voiture \u00e9lectrique contre plut\u00f4t 25 par voiture \u00e0 essence (j'ai dit 5 fois plus dans la chronique ; mea culpa !) ; 10 fois plus de cuivre par kWh produit au solaire que produit par une centrale \u00e9lectrique \"conventionnelle\" ; 5 \u00e0 6 kg de lithium et environ 7 kg de cobalt par voiture (50 kWh de batterie) ; etc.\n\nRares sont les analyses prospectives qui se penchent sur la disponibilit\u00e9 effective des m\u00e9taux pour assurer les d\u00e9carbonations bas\u00e9es sur le passage \u00e0 l'\u00e9lectricit\u00e9 \u00e0 usages identiques (avec donc peu ou pas de sobri\u00e9t\u00e9). Pour le moment, les sc\u00e9narios de place (dont la SNBC) assument cette disponibilit\u00e9, et les \u00e9conomistes consid\u00e8rent que toute l'information sur la disponibilit\u00e9 physique future est contenue dans le prix du moment. \n\nAvant de se jeter \u00e0 corps perdu dans une trajectoire donn\u00e9e, sachant que nous n'aurons pas de 2\u00e8 essai, il est urgent de passer un peu de temps \u00e0 savoir quels paris nous pouvons prendre et quels paris il vaut mieux \u00e9viter de prendre quand on revient \u00e0 la physique. Gouverner, c'est pr\u00e9voir !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6900745253242892288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6900745253964308480,urn:li:activity:6900745253964308480,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 112, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6900745253964308480,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6900745253964308480,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6900745253964308480", + "threadId": "activity:6900745253964308480", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6900745253964308480", + "urn": "urn:li:activity:6900745253964308480", + "numComments": 261, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6900745253964308480", + "reactionTypeCounts": [ + { + "count": 1827, + "reactionType": "LIKE" + }, + { + "count": 226, + "reactionType": "INTEREST" + }, + { + "count": 141, + "reactionType": "MAYBE" + }, + { + "count": 51, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6900745253964308480", + "numLikes": 2260, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6900745253964308480", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2260, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6900361035920785408,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6900361035920785408", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6900361035920785408)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6900361035920785408)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_edf-un-plan-dactions-et-une-augmentation-activity-6900361035920785408-tPVy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6900361035308445697", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6900361035920785408", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6900361035920785408,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6900361035920785408,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6900361035308445697", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "5low+Bi2MpnEzooVxpdcZQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6900361035920785408,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7747033068781459144", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675479742903?e=1677240000&v=beta&t=3OGRC4cOXGwXAoDMjvbJr83LA4ebjAJ8Af48DZdLdFk", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675479742903?e=1677240000&v=beta&t=Cw9l8hR8NP7cOnI-V6EQmJX6ieF09r1UGGPblU1jxz4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675479742903?e=1677240000&v=beta&t=Q3KuJ6DnMJlXEjtcX9kj_JczHSo4y2fnRyRnnmRj-1g", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675479742903?e=1677240000&v=beta&t=D6tCfFdl41sKnKo_yB4-KlHVxG5HyXMBnC_65uMIMRI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEqbNS8onsYlA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7747033068781459144)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7747033068781459144)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EDF : un \u00ab plan d'actions \u00bb et une augmentation de capital de 2,5 milliards by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/edf-un-plan-dactions-et-une-augmentation-de-capital-de-25-milliards-1388029" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EDF\u00a0: un \u00ab\u00a0plan d'actions\u00a0\u00bb et une augmentation de capital de 2,5\u00a0milliards" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6900361035308445697,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le deuxi\u00e8me temps de la valse n'aura pas tard\u00e9 \u00e0 se produire, et n'aura m\u00eame pas attendu apr\u00e8s l'\u00e9lection : apr\u00e8s avoir mis \u00e0 la charge d'EDF (dont ce n'est \u00e9videmment pas le r\u00f4le) de soulager ses \"concurrents\" et les \u00e9lecteurs fran\u00e7ais de 8 milliards d'euros environ (ca d\u00e9pendra des prix de march\u00e9 de l'\u00e9lectricit\u00e9), l'Etat met d\u00e9j\u00e0 la main \u00e0 la poche de 2 milliards pour recapitaliser ladite EDF.\n\nIl y a une blague classique qui consiste \u00e0 demander \u00e0 un ouvrier de creuser un trou pour disposer de la terre pour pouvoir boucher un trou existant. Comment boucher le nouveau trou demande l'ouvrier ? Mais en creusant un nouveau trou pardi !\n\nCette histoire de shadoks \u00e9tait pr\u00e9visible. Et comme 8 -2 = 6 et pas 0, et que par ailleurs 6 EPR \u00e0 construire couteront 60 milliards plus ou moins 30 (et ce n'est qu'un d\u00e9but puisque le parc repr\u00e9sente actuellement plut\u00f4t l'\u00e9quivalent de 50 EPR), ce n'est \u00e9videmment pas en commen\u00e7ant par demander \u00e0 EDF de payer 6 milliards pour assurer la r\u00e9\u00e9lection de l'\u00e9quipe en place que cela va renforcer la solidit\u00e9 financi\u00e8re de l'op\u00e9rateur qui va devoir s'atteler \u00e0 ce plan industriel. Surtout que EDF va devoir continuer \u00e0 verser des dividendes \u00e0 son actionnaire !\n\nL'article des Echos parle de \"restaurer la confiance des investisseurs\". Les \"investisseurs\" d\u00e9tiennent 15% du capital d'EDF et demandent 10% de retour sur capitaux investis. Leur donner satisfaction est-il vraiment l'objectif N\u00b01 quand on parle d'un actif qui est crucial pour l'avenir du pays pour le si\u00e8cle qui vient ?\n\nEt les investisseurs n'auraient-ils pas \u00e9t\u00e9 moins \u00e9chaud\u00e9s si l'Etat ne s'\u00e9tait pas servi dans les poches d'EDF au service de la campagne \u00e9lectorale du locataire actuel de l'Elys\u00e9e ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6900361035308445697,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6900361035920785408,urn:li:activity:6900361035920785408,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 174, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6900361035920785408,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6900361035920785408,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6900361035920785408", + "threadId": "activity:6900361035920785408", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6900361035920785408", + "urn": "urn:li:activity:6900361035920785408", + "numComments": 330, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6900361035920785408", + "reactionTypeCounts": [ + { + "count": 4324, + "reactionType": "LIKE" + }, + { + "count": 467, + "reactionType": "MAYBE" + }, + { + "count": 455, + "reactionType": "INTEREST" + }, + { + "count": 233, + "reactionType": "PRAISE" + }, + { + "count": 36, + "reactionType": "EMPATHY" + }, + { + "count": 36, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6900361035920785408", + "numLikes": 5551, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6900361035920785408", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5551, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6899999942199300096,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6899999942199300096", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6899999942199300096)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6899999942199300096)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_administrateurice-syst%C3%A8mes-et-parc-informatique-activity-6899999942199300096-jjhj?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6899999941683404802", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6899999942199300096", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6899999942199300096,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6899999942199300096,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6899999941683404802", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "s7A1mlgfZizV74G1BrfztA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6899999942199300096,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8240282460584856338", + "swapTitleAndSubtitle": false, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8240282460584856338)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8240282460584856338)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Administrateur\u00b7ice syst\u00e8mes et parc informatique | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/offre-administrateur-ice-systemes-parc-informatique" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Carbone 4 est le premier cabinet de conseil sp\u00e9cialis\u00e9 dans la strat\u00e9gie carbone." + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Administrateur\u00b7ice syst\u00e8mes et parc informatique | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6899999941683404802,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans notre monde num\u00e9ris\u00e9, m\u00eame les personnes qui se penchent sur l'empreinte carbone du num\u00e9rique... ont besoin de num\u00e9rique !\n\nCarbone 4 se cherche donc une personne \u00e0 m\u00eame de renforcer l'\u00e9quipe IT (aussi sobre que possible, cela va sans dire) pour \"administrer\" le parc informatique (un peu moins cons\u00e9quent que celui d'une banque, mais utilis\u00e9 par des personnes si sympathiques :) ) et les r\u00e9seaux." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6899999941683404802,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6899999942199300096,urn:li:activity:6899999942199300096,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 2, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6899999942199300096,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6899999942199300096,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6899999942199300096", + "threadId": "activity:6899999942199300096", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6899999942199300096", + "urn": "urn:li:activity:6899999942199300096", + "numComments": 2, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6899999942199300096", + "reactionTypeCounts": [ + { + "count": 167, + "reactionType": "LIKE" + }, + { + "count": 3, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "INTEREST" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6899999942199300096", + "numLikes": 179, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6899999942199300096", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 179, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6899983654085283840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6899983654085283840", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6899983654085283840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6899983654085283840)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_intensified-by-climate-change-western-megadrought-activity-6899983654085283840-SozN?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6899983653489700864", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6899983654085283840", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6899983654085283840,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6899983654085283840,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6899983653489700864", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "SqC3q6U5oQvjZ3lwuvkyhw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6899983654085283840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8460746645572002035", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 600, + "fileIdentifyingUrlPathSegment": "800/0/1675584731503?e=1677240000&v=beta&t=h6nn1XmAu2xjvwSKmAZde6xwu3Mt2fyAKS7QosAVv1I", + "expiresAt": 1677240000000, + "height": 315 + }, + { + "width": 600, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675584731503?e=1677240000&v=beta&t=ruJLhUogPR6wHkwBhfD7c2ZNfRYmuOY72oouMPJlxWs", + "expiresAt": 1677240000000, + "height": 315 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675584731504?e=1677240000&v=beta&t=P45dNc6jT7yAPmwVPlXlLkQUNoAQBMnYrvevy5-D35Y", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675584731504?e=1677240000&v=beta&t=AAmh0d8MWRQ7nnebrr4LYXCTRvS594QuwBmEo0rcu_0", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQETkswhVnD2jQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8460746645572002035)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8460746645572002035)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "msn.com \u2022 8 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Intensified by climate change, Western megadrought is worst in 1,200 years, study finds by msn.com", + "actionTarget": "https://www.msn.com/en-us/weather/topstories/intensified-by-climate-change-western-megadrought-is-worst-in-1200-years-study-finds/ar-AATPYRu" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Intensified by climate change, Western megadrought is worst in 1,200 years, study finds" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6899983653489700864,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La revue Nature Climate Change a c\u00e9l\u00e9br\u00e9 la Saint Valentin \u00e0 sa mani\u00e8re : en publiant une \u00e9tude qui montre que l'\u00e9pisode de s\u00e9cheresse qui s\u00e9vit actuellement dans le sud-ouest am\u00e9ricain (voir carte qui montre qu'en pleine \"saison des pr\u00e9cipitations\" c'est encore tr\u00e8s tr\u00e8s sec : https://lnkd.in/dQVN83A ) est le plus intense des 1200 derni\u00e8res ann\u00e9es. \n\nComment reconstitue-t-on les pr\u00e9cipitations pass\u00e9es \u00e0 une \u00e9poque o\u00f9 il n'y avait pas de pluviom\u00e8tres ? En analysant les cernes d'arbres (suffisamment vieux, mais il faut savoir que l'on trouve aux USA, pr\u00e9cis\u00e9ment dans des r\u00e9gions un peu hostiles o\u00f9 la croissance des arbres est tr\u00e8s lente, des v\u00e9g\u00e9taux vieux de plusieurs milliers d'ann\u00e9es) qui permettent de reconstituer l'humidit\u00e9 du sol.\n\nCette derni\u00e8re conditionne en effet la croissance de l'arbre pour l'ann\u00e9e consid\u00e9r\u00e9e. L'\u00e9talonnage est permis par le fait que la croissance (et la duret\u00e9 du bois pour l'ann\u00e9e de croissance) peut \u00eatre mesur\u00e9e pour des ann\u00e9es r\u00e9centes pour lesquelles les relev\u00e9s de pr\u00e9cipitations sont disponibles.\n\nCette s\u00e9cheresse aurait \u00e9t\u00e9 beaucoup moins probable sans changement climatique, indiquent les chercheurs. cela est coh\u00e9rent avec le fait que les mod\u00e8les climatiques concluent \u00e0 un ass\u00e8chement d'une large partie des sols des moyennes latitudes dans un climat qui se r\u00e9chauffe. Outre une baisse de pr\u00e9cipitations par endroits, d'autres \u00e9l\u00e9ments contribuent \u00e0 cette \u00e9volution :\n- des pr\u00e9cipitations plus irr\u00e9guli\u00e8res, or ce sont les pr\u00e9cipitations r\u00e9guli\u00e8res qui rechargent bien les sols (les \u00e9pisodes pluvieux intenses conduisent \u00e0 un ruissellement intense et l'eau s'\u00e9vacue pour l'essentiel sans p\u00e9n\u00e9trer le sol)\n- une \u00e9vaporation plus intense, \u00e0 cause des temp\u00e9ratures plus \u00e9lev\u00e9es.\n\nCette \u00e9volution n'est \u00e9videmment pas bonne pour la v\u00e9g\u00e9tation. Ni pour les \u00e9cosyst\u00e8mes naturels, ni pour l'agriculture. Et malheureusement elle ne vas pas s'arr\u00eater le jour o\u00f9 nous commen\u00e7ons \u00e0 baisser les \u00e9missions. En \u00e9viter les effets les plus dramatiques, si nous le pouvons, doit aussi faire partie de nos priorit\u00e9s d\u00e8s \u00e0 pr\u00e9sent. \n\nCela demande du jus de cerveau pour comprendre au mieux ce que cela signifie en termes de risques, et des moyens humains et physiques pour \u00e9viter ce qui est \u00e9vitable ensuite. Plus nous tardons, plus nous le regretterons." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6899983653489700864,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6899983654085283840,urn:li:activity:6899983654085283840,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 13, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6899983654085283840,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6899983654085283840,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6899983654085283840", + "threadId": "activity:6899983654085283840", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6899983654085283840", + "urn": "urn:li:activity:6899983654085283840", + "numComments": 14, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6899983654085283840", + "reactionTypeCounts": [ + { + "count": 371, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 41, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6899983654085283840", + "numLikes": 490, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6899983654085283840", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 490, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6899642717047971840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6899642717047971840", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6899642717047971840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6899642717047971840)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_r%C3%A9chauffement-climatique-la-for%C3%AAt-fran%C3%A7aise-activity-6899642717047971840-RdCB?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6899642715550617600", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6899642717047971840", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6899642717047971840,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6899642717047971840,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6899642715550617600", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "Y7HdA63DCw7G+j4wPeugtA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6899642717047971840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7779056289038972724", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676197602427?e=1677240000&v=beta&t=G7FCy18M7WTzcc-Qc7Nt6auIJzbGT-MSw415yrcGA74", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676197602427?e=1677240000&v=beta&t=AZYNo2KIlxNPxA3r4ATcelmykabk8SAKU37lF4L-8mA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676197602427?e=1677240000&v=beta&t=_SHTrv7O1Mm4BsNoSCeGvx9_2KhBkbQd0d4LnLpmEks", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676197602427?e=1677240000&v=beta&t=REMUetgJcc-uP90w-h2ahxKBLebABKbsaVsW7phxzck", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHiA6WVsRaFXg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7779056289038972724)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7779056289038972724)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: R\u00e9chauffement climatique : \u00ab la for\u00eat fran\u00e7aise est en crise \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/politique-societe/societe/rechauffement-climatique-la-foret-francaise-est-en-crise-1386901" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "R\u00e9chauffement climatique\u00a0: \u00ab\u00a0la for\u00eat fran\u00e7aise est en crise\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6899642715550617600,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le r\u00e9chauffement climatique ne s'\u00e9l\u00e8ve \"que\" \u00e0 1,2 \u00b0C pour la plan\u00e8te, et cependant cela est d\u00e9j\u00e0 suffisant pour conduire le patron de l'Office National des For\u00eats \u00e0 affirmer dans Les Echos que \"La for\u00eat fran\u00e7aise est en train de s\u00e9cher\". Et le m\u00eame d'ajouter que sur 10\u00a0% du territoire national nous verrons d'ici dix \u00e0 vingt ans les effets tr\u00e8s concrets du r\u00e9chauffement (traduire une mortalit\u00e9 s\u00e9v\u00e8re).\n\nUne des choses que nous devons nous mettre en t\u00eate en ce qui concerne le r\u00e9chauffement est que les effets suivent l'\u00e9l\u00e9vation de temp\u00e9rature avec une inertie plus ou moins grande, mais de mani\u00e8re irr\u00e9versible. Pour la for\u00eat, quand bien m\u00eame les \u00e9missions plan\u00e9taires tomberaient \u00e0 z\u00e9ro demain matin, les cons\u00e9quences du r\u00e9chauffement ayant d\u00e9j\u00e0 eu lieu vont s'amplifier \u00e0 l'avenir, puisque le temps de retour des canicules et s\u00e9cheresses a d\u00e9j\u00e0 diminu\u00e9 (ces derni\u00e8res sont d\u00e9j\u00e0 plus fr\u00e9quentes), et donc que les conditions sont d\u00e9j\u00e0 plus \"dures\" pour les arbres existants (\u00e9pic\u00e9as, h\u00eatres, ch\u00eanes...) qui, petit \u00e0 petit, succombent au stress hydrique. \n\nDans l'Est, explique le directeur g\u00e9n\u00e9ral de l'ONF, ce sont les s\u00e9cheresses \u00e0 r\u00e9p\u00e9tition qui ont affaibli les arbres et rendu les conditions favorables \u00e0 la prolif\u00e9ration d'un insecte (le scolyte) qui finit de les achever. Et il s'agit d'\u00e9pic\u00e9as pr\u00e9sents depuis un si\u00e8cle... La France n'est pas un cas isol\u00e9 : au Canada et en Sib\u00e9rie des ph\u00e9nom\u00e8nes identiques se produisent, auxquels il faut rajouter des incendies qui augmentent, et qui peuvent transformer en peu de temps la for\u00eat existante en un sol quasi-nu.\n\nAdapter la for\u00eat au changement climatique n'est donc pas simple : un arbre plant\u00e9 aujourd'hui doit \u00e0 la fois s'accommoder du climat actuel... mais \u00eatre toujours vivant dans le climat encore plus modifi\u00e9 - et notamment plus sec - que nous aurons dans 50 \u00e0 100 ans - la dur\u00e9e n\u00e9cessaire pour qu'il devienne adulte. \n\nEn plus le remplacement des arbres existants est impos\u00e9 par la mortalit\u00e9 : \"par endroits, le taux d'arbres qui meurent est tel qu'il faut d'abord r\u00e9colter les arbres secs avant d'exploiter les vivants. Nous passons en situation de crise\" explique Bertrand Munch. \n\nReplanter 30% du territoire avec des essences adapt\u00e9es, diversifi\u00e9es, indispensables \u00e0 la fourniture de mat\u00e9riaux, d'\u00e9nergie, de biodiversit\u00e9, d'espaces r\u00e9cr\u00e9atifs, et au cycle de l'eau : voil\u00e0 un projet qui devrait faire l'objet d'un grand programme national mobilisant les finances publiques (un peu plus que la r\u00e9alit\u00e9 virtuelle, le soutien aux cryptomonnaies ou les taxis volants) et justifier le renforcement de certaines fili\u00e8res professionnelles, non ? Et qui m\u00e9riterait un peu plus de place dans les discours politiques..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6899642715550617600,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6899642717047971840,urn:li:activity:6899642717047971840,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 246, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6899642717047971840,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6899642717047971840,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6899642717047971840", + "threadId": "activity:6899642717047971840", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6899642717047971840", + "urn": "urn:li:activity:6899642717047971840", + "numComments": 380, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6899642717047971840", + "reactionTypeCounts": [ + { + "count": 7216, + "reactionType": "LIKE" + }, + { + "count": 794, + "reactionType": "INTEREST" + }, + { + "count": 684, + "reactionType": "MAYBE" + }, + { + "count": 261, + "reactionType": "APPRECIATION" + }, + { + "count": 215, + "reactionType": "PRAISE" + }, + { + "count": 59, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6899642717047971840", + "reacted": "LIKE", + "numLikes": 9229, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6899642717047971840", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 9229, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6899262466526654464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6899262466526654464", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6899262466526654464)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6899262466526654464)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rapport-carbon-market-watch-new-climate-activity-6899262466526654464-oZP7?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6899262465670991872", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6899262466526654464", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6899262466526654464,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6899262466526654464,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6899262465670991872", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "LIAkDvBLx/sNFmc+s1/J5g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6899262466526654464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8377512221512962089", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676268939197?e=1677240000&v=beta&t=fkj5EA-1wWMXATjC2fnMzN_6dmpHlxIuol3eO8VQ-dA", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1199, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676268939197?e=1677240000&v=beta&t=rY0OlEOT78J7dKVx2-lAOgUkWnpArUq2K-USuG5DkP4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676268939198?e=1677240000&v=beta&t=D-lgwcYOqo3LpKDC_hCqIzF9L2NECUJaoppNs4gCCY8", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676268939198?e=1677240000&v=beta&t=q6-Ozs0FENvRsCmEMLPSUytb6SX4gtgQMZDZJTyMkEo", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHfJn9HRI2HVw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8377512221512962089)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8377512221512962089)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Rapport Carbon Market Watch - New Climate Institute : les engagements \u00ab neutralit\u00e9 \u00bb de 25 multinationales pass\u00e9s \u00e0 la loupe | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/article-rapport-carbon-market-watch" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Rapport Carbon Market Watch - New Climate Institute : les engagements \u00ab neutralit\u00e9 \u00bb de 25 multinationales pass\u00e9s \u00e0 la loupe | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6899262465670991872,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1077, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "B0bE0gBtQcyQcZDer0Xf2A==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 2474, + "length": 25, + "miniCompany": { + "objectUrn": "urn:li:company:14821160", + "entityUrn": "urn:li:fs_miniCompany:14821160", + "name": "Pour un r\u00e9veil \u00e9cologique", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1611686863763?e=1684972800&v=beta&t=qrHOF5RpuS_vrJL5PmyugmHNV56dITYGx3JmkIPTt4g", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1611686863763?e=1684972800&v=beta&t=9MqucCzrGpzwgtmRInipDsUpXsfk0yJpREzKw7MirWE", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1611686863763?e=1684972800&v=beta&t=_fVG3UT8ftdBL8aHh4f1xrtRdf7CKNtYKbKvCEfYLUE", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGPFTxlgBwqsg/company-logo_" + } + }, + "universalName": "pour-un-reveil-ecologique", + "dashCompanyUrn": "urn:li:fsd_company:14821160", + "trackingId": "wjPD/9StQpq5iBk4jMplhg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Le 7 f\u00e9vrier dernier, les think tanks Carbon Market Watch (Belgique) et New Climate Institute (Allemagne) ont publi\u00e9 un \"Corporate Climate Responsibility Monitor\" qui a pour but \"d'\u00e9valuer la transparence et l'int\u00e9grit\u00e9 des engagements des entreprises en mati\u00e8re de climat\" ((https://lnkd.in/edwRCrCs ).\n\nComme l'expose l'introduction de ce rapport, la plupart des grandes entreprises ont d\u00e9sormais des strat\u00e9gies et des objectifs publics en mati\u00e8re de climat, avec le plus souvent des engagements qui \"\u00e0 premi\u00e8re vue, semblent r\u00e9duire consid\u00e9rablement, voire \u00e9liminer, leurs contributions au r\u00e9chauffement plan\u00e9taire\". \n\nEn pratique, ces entreprises revendiquent souvent une neutralit\u00e9 individuelle, comme par exemple Colissimo qui affiche fi\u00e8rement que la livraison qui vous sera faite sera \"neutre en carbone\", ou Google qui affiche d\u00e9sormais sur sa page d'accueil qu'il est \"neutre en carbone depuis 2007\", excusez du peu.\n\nLes auteurs du rapport se sont demand\u00e9 ce que valaient ces engagements de neutralit\u00e9, maintenant ou pour plus tard. Comme le rapport fait 128 pages, Carbone 4 vous en propose un r\u00e9sum\u00e9 un peu plus rapide \u00e0 lire, qui peut malheureusement lui-m\u00eame se r\u00e9sumer en une phrase : \"les entreprises neutres en carbone, c\u2019est (souvent) n\u2019importe quoi\".\n\nIl est en particulier facile de constater que les entreprises qui se d\u00e9clarent neutres d\u00e8s \u00e0 pr\u00e9sent, ou qui \"se sont mises en capacit\u00e9 de l'\u00eatre plus tard\", vendent en pratique le m\u00eame produit ou service, aux m\u00eames clients, et avec la m\u00eame organisation et gouvernance qu'avant \u00e0 quelques d\u00e9tails pr\u00e8s. \n\nDu coup, on peut l\u00e9gitimement se demander, m\u00eame sans \u00eatre sp\u00e9cialiste, ce que valent ces engagements. A l'occasion d'une tribune parue dans l'Express il y a un an et demi (https://lnkd.in/dGTt6Zs ), j'avais propos\u00e9 aux lecteurs de r\u00e9pondre \u00e0 la question \"\u00e0 votre avis, une entreprise peut-elle devenir \"neutre en carbone\" ?\". Le choix \u00e9tait entre \"oui tout de suite\", \"oui plus tard\", \"non jamais\", et \"je ne sais pas\". Certes ce genre de sondage en ligne n'est pas repr\u00e9sentatif, mais il est int\u00e9ressant de noter que les deux derni\u00e8res possibilit\u00e9s ont recueilli plus de la moiti\u00e9 des votes.\n\nDit autrement, tant qu'il n'y a pas de sanction l\u00e9gale \u00e0 affirmer des choses qui n'ont pas de fondement th\u00e9orique solide (https://lnkd.in/db7JzB2q ), le seul risque pour une entreprise est d'appara\u00eetre comme non cr\u00e9dible aupr\u00e8s de ceux qui ont regard\u00e9 la question d'un peu pr\u00e8s (dont les \u00e9tudiants de Pour un r\u00e9veil \u00e9cologique qui chassent r\u00e9guli\u00e8rement le greenwashing avec un certain succ\u00e8s). \n\nMais si un jour la soci\u00e9t\u00e9 devient s\u00e9rieuse sur ces questions, il s'av\u00e8rera peut-\u00eatre que les entit\u00e9s qui ont choisi cette voie n'auront pas pris de l'avance, mais, en choisissant de noyer le poisson plut\u00f4t que de prendre le taureau par les cornes, plut\u00f4t du retard." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6899262465670991872,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6899262466526654464,urn:li:activity:6899262466526654464,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 19, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6899262466526654464,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6899262466526654464,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6899262466526654464", + "threadId": "activity:6899262466526654464", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6899262466526654464", + "urn": "urn:li:activity:6899262466526654464", + "numComments": 31, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6899262466526654464", + "reactionTypeCounts": [ + { + "count": 312, + "reactionType": "LIKE" + }, + { + "count": 32, + "reactionType": "INTEREST" + }, + { + "count": 19, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6899262466526654464", + "numLikes": 370, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6899262466526654464", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 370, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6899047224358051840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6899047224358051840", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6899047224358051840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6899047224358051840)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_10-jancovici-a-r%C3%A9pondu-%C3%A0-vos-questions-activity-6899047224358051840-G1Gg?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6899047223875694592", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6899047224358051840", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6899047224358051840,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6899047224358051840,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6899047223875694592", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "wtnokBwp7Yl45+8rkeCGYA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6899047224358051840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8586211111955233305", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676191367887?e=1677240000&v=beta&t=PzeT_mz-ht9WEHwiMklWC1rxfgfx5iiZkZS1mKmqqYg", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676191367887?e=1677240000&v=beta&t=0UJKRh4nVtYenVdMif-UXMKXOLA0K2MPYw6ldAhflDM", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676191367887?e=1677240000&v=beta&t=9Ump834T2PPG7kDY8q2i7E0_KqGurablGAFWK2EorTI", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676191367887?e=1677240000&v=beta&t=WqL5tgxqr7zIT7wHBFEuUzW0ZBsqKVZxPq3CUooSQAk", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGqL8G4FdSsNA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8586211111955233305)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8586211111955233305)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: #10 Jancovici a r\u00e9pondu \u00e0 vos questions - 11/02/2022 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=A73muGZCooM" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici a r\u00e9pondu \u00e0 certaines des questions des abonn\u00e9s de sa page Facebook via un live le 11 f\u00e9vrier 2022.. Les questions portent essentiellement sur le PTEF (plan de transformation de l'\u00e9conomie fran\u00e7aise) du Shift Project. D\u00e9tails sur..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "#10 Jancovici a r\u00e9pondu \u00e0 vos questions - 11/02/2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6899047223875694592,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quand on livre un produit, il est bon de pr\u00e9voir un service apr\u00e8s-vente. C'est plus ou moins l'esprit de ce \"facebook live\" qui porte sur le plan de transformation de l'\u00e9conomie fran\u00e7aise (https://lnkd.in/esiqHkbf), ou plus exactement qui comporte un certain nombre de r\u00e9ponses \u00e0 des questions qui ont \u00e9t\u00e9 pos\u00e9es par des internautes \u00e0 propos de ce plan.\n\nComme d'habitude, la proc\u00e9dure est la suivante : la session est annonc\u00e9e quelques jours \u00e0 l'avance sur \"ma\" page FB, et les personnes qui le souhaitent peuvent \u00e0 la fois poser des questions et \"soutenir\" les questions d\u00e9j\u00e0 pos\u00e9es. \n\nLe jour J je prends les questions dans l'ordre descendant des \"soutiens\" pour r\u00e9pondre en premier aux questions les plus \"soutenues\" (et donc qui int\u00e9ressent le plus de monde, du moins dans les personnes qui sont all\u00e9es faire un tour sur la page). Et \u00e0 l'arriv\u00e9e vous avez un superbe plan presque fixe avec de la voix (donc vous pouvez supprimer l'image ou presque !).\n\nLe minutage des questions n'est pas encore disponible mais ca ne devrait pas tarder (d\u00e9sol\u00e9). J'esp\u00e8re que l'on s'y retrouve quand m\u00eame !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6899047223875694592,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6899047224358051840,urn:li:activity:6899047224358051840,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 12, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6899047224358051840,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6899047224358051840,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6899047224358051840", + "threadId": "activity:6899047224358051840", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6899047224358051840", + "urn": "urn:li:activity:6899047224358051840", + "numComments": 14, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6899047224358051840", + "reactionTypeCounts": [ + { + "count": 271, + "reactionType": "LIKE" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6899047224358051840", + "numLikes": 320, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6899047224358051840", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 320, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6898887763693752320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6898887763693752320", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6898887763693752320)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6898887763693752320)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sixi%C3%A8me-extinction-de-masse-alerte-sur-activity-6898887763693752320-TIvw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6898887762959757312", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6898887763693752320", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6898887763693752320,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6898887763693752320,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6898887762959757312", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "ZHFfYv2WLPJDZzWHYLpXPQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6898887763693752320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7429652409169422697", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676416567551?e=1677240000&v=beta&t=CVE9w3QpaIRQkYw3BjU_Hlj2WTtJlXvR8ED8VyysWdA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676416567551?e=1677240000&v=beta&t=bnnBdhG10_giUg36AdIzUwu2yI5VM6wgm7q4f615VSQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676416567551?e=1677240000&v=beta&t=BsTd-L2_Sc5u-ZOlkKUdJXPETpSuNLJWK25e4XWEbPg", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676416567552?e=1677240000&v=beta&t=qa_eduTL-rlBRk1p2ALo8JSn4MMLUs5y-3xwYKqp4cA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEOti8TANj2MQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7429652409169422697)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7429652409169422697)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Sixi\u00e8me extinction de masse : alerte sur une trag\u00e9die silencieuse by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/sciences-prospective/sixieme-extinction-de-masse-alerte-sur-une-tragedie-silencieuse-1386375" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Sixi\u00e8me extinction de masse\u00a0: alerte sur une trag\u00e9die silencieuse" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6898887762959757312,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les Echos consacrent un long article \u00e0 l'extinction des esp\u00e8ces en cours, \u00e0 l'occasion de la publication d'un article scientifique qui vient de sortir (https://lnkd.in/eZnpfjtk ; en libre acc\u00e8s). Cette publication explique en quoi le syst\u00e8me de \"liste rouge\" de l'Union internationale pour la conservation de la nature (UICN) conduit \u00e0 sous-estimer le rythme de disparition, car elle ne concerne quasiment pas les insectes, qui repr\u00e9sentent environ 90% des esp\u00e8ces animales d\u00e9crites, ni les mollusques, qui en repr\u00e9sentent presque 10%.\n\nLes auteurs de la publication scientifique ont regard\u00e9 de pr\u00e8s le groupe des mollusques, et ont ensuite extrapol\u00e9 \u00e0 l'ensemble des esp\u00e8ces, pour en d\u00e9duire que, en ordre de grandeur, de 7,5 \u00e0 13% des 2 millions d'esp\u00e8ces d\u00e9crites avaient d\u00e9j\u00e0 disparu depuis 1500. \n\nCela fait donc de 150.000 \u00e0 260.000 esp\u00e8ces qui ont disparu sur environ 2 millions d'esp\u00e8ces d\u00e9crites. Les 5 extinctions de masse qui ont eu lieu depuis 450 millions d'ann\u00e9es avaient pour origine une perturbation de grande ampleur du syst\u00e8me climatique (glaciation, impact d'un m\u00e9t\u00e9orite, volcanisme...). Celle ci a pour origine la domination d'une esp\u00e8ce : nous.\n\nComment agir ? Comme pour le climat, cela sera plus vite dit que fait. La premi\u00e8re cause de perte de biodiversit\u00e9 est la perte d'habitats, et la premi\u00e8re cause de cette perte est due \u00e0 l'activit\u00e9 agricole. Cette derni\u00e8re consiste en effet \u00e0 remplacer des \u00e9cosyst\u00e8mes naturels par des \u00e9cosyst\u00e8mes dirig\u00e9s comportant beaucoup moins d'esp\u00e8ces, \u00e0 la fois v\u00e9g\u00e9tales (on se limite aux plantes ou arbres cultiv\u00e9s) et animales (on supprime autant que possible l'acc\u00e8s aux \"ravageurs\").\n\nLa taille de la population est donc un premier d\u00e9terminant : plus nous sommes nombreux, plus nous avons de production v\u00e9g\u00e9tale et plus la \"nature\" dispose de peu d'espace. \n\nMais \u00e0 cela sont venus se rajouter les \"agressions chimiques\" de toute nature (d\u00e9lib\u00e9r\u00e9e comme celle des phytosanitaires ou involontaire) ainsi que le changement climatique (incendies, s\u00e9cheresses). Et, comme pour le climat, les urbains en bout de chaine, physiquement d\u00e9connect\u00e9s des \u00e9cosyst\u00e8mes qui nous permettent de vivre, ont du mal \u00e0 faire le lien entre leurs comportements et ce qui cr\u00e9e des pressions \"ailleurs\" sur la biodiversit\u00e9. \n\nIl reste peu de temps pour \u00e0 la fois d\u00e9ployer les syst\u00e8mes comptables \u00e9mergents qui permettent de faire un \u00e9tat de la pression sur la biodiversit\u00e9 d'une activit\u00e9 donn\u00e9e, et tenter de corriger le tir. Comme pour le climat pourrait-on dire..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6898887762959757312,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6898887763693752320,urn:li:activity:6898887763693752320,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 110, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6898887763693752320,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6898887763693752320,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6898887763693752320", + "threadId": "activity:6898887763693752320", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6898887763693752320", + "urn": "urn:li:activity:6898887763693752320", + "numComments": 197, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6898887763693752320", + "reactionTypeCounts": [ + { + "count": 3067, + "reactionType": "LIKE" + }, + { + "count": 450, + "reactionType": "INTEREST" + }, + { + "count": 294, + "reactionType": "APPRECIATION" + }, + { + "count": 189, + "reactionType": "MAYBE" + }, + { + "count": 30, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6898887763693752320", + "numLikes": 4043, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6898887763693752320", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4043, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6898585443433029632,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6898585443433029632", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6898585443433029632)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6898585443433029632)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_chez-les-verts-lessor-discret-des-pronucl%C3%A9aires-activity-6898585443433029632-3gl1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6898585442568990720", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6898585443433029632", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6898585443433029632,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6898585443433029632,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6898585442568990720", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "edMDy5rShIjUZx+mpCBu8w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6898585443433029632,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8239288462025802741", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676569939303?e=1677240000&v=beta&t=46SCW31_DEczRJRf5S9b5r0Q2oYUpxYLVlquHC6bbbE", + "expiresAt": 1677240000000, + "height": 426 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676569939303?e=1677240000&v=beta&t=y4eyzShphIHLw12pz2Xc249zW2gqy_0h1HkJqjBFAb4", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676569939304?e=1677240000&v=beta&t=I8MUAcOkVwVMJ3B7AptQLsBuegE0E-eBSZPeMEG2ebA", + "expiresAt": 1677240000000, + "height": 85 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676569939304?e=1677240000&v=beta&t=KKPR50wc9hAwK1QBAzy-zK9MGMC6cOxmHWEz4Y4G3Lw", + "expiresAt": 1677240000000, + "height": 256 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFjrztJdHBaIg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5325 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8239288462025802741)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8239288462025802741)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "reporterre.net \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Chez les Verts, l\u2019essor discret des pronucl\u00e9aires by reporterre.net", + "actionTarget": "https://reporterre.net/Chez-les-Verts-l-essor-discret-des-pronucleaires" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Chez les Verts, l\u2019essor discret des pronucl\u00e9aires" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6898585442568990720,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 20, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "Paf2osfcQ7SQxf6IRblKhA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "L'annonce r\u00e9cente d'Emmanuel Macron sur le nucl\u00e9aire (se doter d'une strat\u00e9gie ambitieuse dans le domaine) est assur\u00e9ment pertinente au regard du contexte et du d\u00e9fi climatique. Elle pose cependant quelques questions :\n- y aura-t-il la stabilit\u00e9 politique \u00e0 suivre ?\n- y aura-t-il les comp\u00e9tences ?\n- y aura-t-il le financement ?\n- y aura-t-il la stabilit\u00e9 r\u00e9glementaire \u00e0 un niveau qui soit le bon ?\n- et, surtout, pourquoi avoir chang\u00e9 d'avis depuis la fermeture de Fessenheim ?\n\nCes questions sont interconnect\u00e9es. Par exemple, la volont\u00e9 politique dans la dur\u00e9e est indispensable pour susciter des vocations chez les jeunes ou les personnes en mobilit\u00e9 professionnelle, ce qui permettra d'avoir des comp\u00e9tences. Au moment de la construction du parc existant, qui a pris 20 ans, les comp\u00e9tences n\u00e9cessaires sont pour partie apparues en cours de route et c'est normal.\n\nLe cout de l'argent pour financer la construction ou les op\u00e9rations de maintenance lourde (le \"grand car\u00e9nage\") est fonction du risque per\u00e7u par les pr\u00eateurs et investisseurs, et ce risque est bien \u00e9videmment consid\u00e9r\u00e9 comme plus \u00e9lev\u00e9 quand on a peur que le pouvoir politique revire sur le sujet et ferme pr\u00e9matur\u00e9ment une installation, ou lui complique inutilement la vie en poussant des r\u00e9glementations qui sont excessivement prudentes.\n\nLa stabilit\u00e9 r\u00e9glementaire au bon niveau est aussi n\u00e9cessairement fonction du degr\u00e9 de volontarisme du moment. M\u00eame si l'ASN est ind\u00e9pendante, elle prend fatalement appui sur l'ambiance du moment en ce qui concerne le soutien politique et de la population au nucl\u00e9aire. Plus on veut un r\u00e9sultat, plus on est pr\u00eat \u00e0 prendre de risques assum\u00e9s pour y arriver ! (et inversement)\n\nLa question de fond est donc celle de la stabilit\u00e9 politique. Et, en d\u00e9mocratie, cela renvoie au consensus qui s'est forg\u00e9 (ou pas) \u00e0 \"l'\u00e9tage en dessous\", c'est \u00e0 dire \u00e0 la volont\u00e9 populaire (ou pas) de disposer d'une fili\u00e8re nucl\u00e9aire offensive. Si c'est le cas, comme nous avons dans ce pays un consensus sur le fait d'avoir une s\u00e9curit\u00e9 sociale par exemple, alors la stabilit\u00e9 politique suivra. \n\nEt cela donne peut-\u00eatre la cl\u00e9 de lecture sur \"pourquoi ce revirement\". L'opinion a chang\u00e9 sur le sujet du nucl\u00e9aire ces deux derni\u00e8res ann\u00e9es, avec un soutien qui est devenu nettement plus marqu\u00e9. Difficile de savoir pourquoi sans disposer d'\u00e9tudes approfondies. On peut penser au climat (dont le fait que le nucl\u00e9aire soit une \u00e9nergie bas carbone devient compris par une part croissante de la population), au prix de l'\u00e9lectricit\u00e9 qui a fortement augment\u00e9 pour le consommateur final, aux ENR qui ne semblent pas si faciles que cela \u00e0 d\u00e9ployer \u00e0 large \u00e9chelle, \u00e0 la question de l'emploi (il y a quand m\u00eame un peu de monde dans la fili\u00e8re)...\n\nDans tous les cas de figure, ce mouvement gagne du terrain, y compris dans les rangs des Verts. Et c'est probablement ce dernier \u00e9l\u00e9ment qui a contribu\u00e9 \u00e0 d\u00e9cider Macron de franchir le pas \u00e0 la veille d'une \u00e9lection. Il faudra voir ce qu'il en reste apr\u00e8s !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6898585442568990720,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6898585443433029632,urn:li:activity:6898585443433029632,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6898585443433029632,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6898585443433029632,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6898585443433029632", + "threadId": "activity:6898585443433029632", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6898585443433029632", + "urn": "urn:li:activity:6898585443433029632", + "numComments": 171, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6898585443433029632", + "reactionTypeCounts": [ + { + "count": 1194, + "reactionType": "LIKE" + }, + { + "count": 100, + "reactionType": "MAYBE" + }, + { + "count": 88, + "reactionType": "INTEREST" + }, + { + "count": 14, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6898585443433029632", + "numLikes": 1411, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6898585443433029632", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1411, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6898206087938412544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6898206087938412544", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6898206087938412544)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6898206087938412544)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cest-notre-plan%C3%A8te-du-12-f%C3%A9vrier-2022-activity-6898206087938412544-sa8p?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6898206087384760320", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6898206087938412544", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6898206087938412544,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6898206087938412544,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6898206087384760320", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "LCG6HmdFMYO6Yw0/ILJBBQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6898206087938412544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8005404914316143803", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675599270228?e=1677240000&v=beta&t=LkXYs-d9S0FbtH8StRSjtIQY282Xv8bj02935qmz6tk", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675599270228?e=1677240000&v=beta&t=Ekgm4zX7BgXzWbVpI9oXEbIAieBAXiFg-AoeV-LCYHE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675599270228?e=1677240000&v=beta&t=o1giTJ28yZoetpOxucs9qUXGvgiQURl0QqbhIydx_OE", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675599270228?e=1677240000&v=beta&t=zlqcjUZVfOWmMsyeDYpoaIvWZeNWLNOPdnqbREQmJIY", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEKv8Z8bioaOA/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8005404914316143803)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8005404914316143803)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: C'est notre Plan\u00e8te du 12 f\u00e9vrier 2022 by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900124328-c-est-notre-planete-du-12-fevrier-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "C'est notre Plan\u00e8te du 12 f\u00e9vrier 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6898206087384760320,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Rien \u00e0 voir avec la d\u00e9claration de Macron sur le nucl\u00e9aire (!) : ma chronique de ce matin sur RTL parle du permafrost et sa disparition partielle sous l'effet du r\u00e9chauffement climatique.\n\nPourquoi \u00e9voquer cette fonte dont nous pouvons penser, nous fran\u00e7ais(es), qu'elle ne nous concerne pas, puisque notre territoire ne se situe pas aux hautes latitudes nord ?\n\nPour deux raisons, \u00e9voqu\u00e9es dans cette chronique :\n- d'une part nous avons du permafrost en France, l\u00e0 o\u00f9 la temp\u00e9rature est n\u00e9gative une large partie de l'ann\u00e9e : au sommet des montages (en gros au-dessus de la limite des glaciers et neiges \u00e9ternelles), et sa fonte aura des effets visibles\n- d'autre part parce que sa fonte aux hautes latitudes va amplifier le r\u00e9chauffement climatique en acc\u00e9l\u00e9rant le rel\u00e2chement de m\u00e9thane.\n\nOn appelle dans les media les sujets qui ne d\u00e9pendent pas de l'actualit\u00e9 du jour (ou de la semaine) des sujets \"froids\". Pour le coup c'est de circonstance !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6898206087384760320,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6898206087938412544,urn:li:activity:6898206087938412544,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 22, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6898206087938412544,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6898206087938412544,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6898206087938412544", + "threadId": "activity:6898206087938412544", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6898206087938412544", + "urn": "urn:li:activity:6898206087938412544", + "numComments": 53, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6898206087938412544", + "reactionTypeCounts": [ + { + "count": 472, + "reactionType": "LIKE" + }, + { + "count": 30, + "reactionType": "INTEREST" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6898206087938412544", + "numLikes": 523, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6898206087938412544", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 523, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6897810363778174976,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6897810363778174976", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6897810363778174976)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6897810363778174976)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_linvit%C3%A9-du-vacher-time-jean-marc-jancovici-activity-6897810363778174976-6n61?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6897810363098689536", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6897810363778174976", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6897810363778174976,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6897810363778174976,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6897810363098689536", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "nNWW1GQ70RjM6Y+jssd3/w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6897810363778174976,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9071889527875108654", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 795, + "fileIdentifyingUrlPathSegment": "800/0/1676104758539?e=1677240000&v=beta&t=B4VXET8gNNMEDrBXIfdB_Wp14ubBBs3o9ZfATJDK7yg", + "expiresAt": 1677240000000, + "height": 530 + }, + { + "width": 795, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676104758539?e=1677240000&v=beta&t=n-9dX0ZfvJUVhyLkrb8zCp-nn-qECNQLg_YyNdmK-XE", + "expiresAt": 1677240000000, + "height": 530 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676104758539?e=1677240000&v=beta&t=ljGyyJRMKUDZV95UO_KDgLiuz76KYCy783j6Nwf5jh4", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676104758539?e=1677240000&v=beta&t=IeGnQBYJznoHMb0Kg1jnDVT4LEz2r0LzRZj3QQ26HcI", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFBIDlcLIo9-w/articleshare-shrink_" + }, + "displayAspectRatio": 0.6666666666666666 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9071889527875108654)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9071889527875108654)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "funradio.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'invit\u00e9 du Vacher Time - Jean-Marc Jancovici by funradio.fr", + "actionTarget": "https://www.funradio.fr/programmes/le-vacher-time/7900123292-l-invite-du-vacher-time-jean-marc-jancovici" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'invit\u00e9 du Vacher Time - Jean-Marc Jancovici" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6897810363098689536,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Etre invit\u00e9 sur Fun Radio, c'est bien la derni\u00e8re chose \u00e0 laquelle je m'attendais lorsque The Shift Project s'est mis \u00e0 la planche \u00e0 dessin pour accoucher du Plan de Transformation de l'Economie Fran\u00e7aise.\n\nUn media \u00e9voque rarement des sujets qui vont compl\u00e8tement le couper de son audience. J'ai donc envie de penser (j'esp\u00e8re pas \u00e0 tort !) que si j'ai \u00e9t\u00e9 convi\u00e9 \u00e0 causer sur cette antenne, c'est parce que de l'autre c\u00f4t\u00e9 du poste de radio (ou de l'ordinateur ou du t\u00e9l\u00e9phone) \u00e0 cette heure l\u00e0 (\u00e2ge moyen 18 \u00e0 35 ans m'a-t-on dit) il y a de l'int\u00e9r\u00eat.\n\nOn ne va pas s'en plaindre, tout le rebours. Pour effectuer dans la dur\u00e9e (des d\u00e9cennies) la transformation de notre \u00e9conomie, il est essentiel d'y int\u00e9resser d\u00e8s \u00e0 pr\u00e9sent la jeune g\u00e9n\u00e9ration, qui devra id\u00e9alement avoir envie de se former sur les emplois dont la soci\u00e9t\u00e9 devra disposer, et avoir envie d'adopter un \"mode de vie\" qui soit en ad\u00e9quation avec les possibilit\u00e9s physiques du monde.\n\nIl semblerait que l'envie de voir des propositions (s\u00e9rieuses de pr\u00e9f\u00e9rence) sur l'environnement ne soit pas limit\u00e9 aux auditeurs de cette radio (tant mieux !) si l'on en croit cet article du Monde : https://lnkd.in/eSCUx55x\n\nThe Shift Project a pr\u00e9vu un dispositif \"d'interpellation\" des candidat(e)s sur les th\u00e8mes qui nous sont chers, pour savoir ce qu'ils proposent et donner notre avis. Nous esp\u00e9rons ainsi contribuer \u00e0 un choix plus \u00e9clair\u00e9, tout en sachant que ces sujets demandent du temps pour \u00eatre travaill\u00e9s correctement, et que des responsables politiques qui se r\u00e9veilleraient maintenant en se disant qu'il faut qu'ils s'en occupent ne pourront rien faire d'autre que de r\u00e9cup\u00e9rer des propositions \"sur \u00e9tag\u00e8res\". \n\nNous esp\u00e9rons \u00e9videmment qu'\u00e0 ce moment ils auront envie de s'inspirer de notre plan !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6897810363098689536,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6897810363778174976,urn:li:activity:6897810363778174976,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 36, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6897810363778174976,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6897810363778174976,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6897810363778174976", + "threadId": "activity:6897810363778174976", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6897810363778174976", + "urn": "urn:li:activity:6897810363778174976", + "numComments": 48, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6897810363778174976", + "reactionTypeCounts": [ + { + "count": 589, + "reactionType": "LIKE" + }, + { + "count": 49, + "reactionType": "PRAISE" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6897810363778174976", + "numLikes": 680, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6897810363778174976", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 680, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6897502776142700544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6897502776142700544", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6897502776142700544)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6897502776142700544)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_%C3%A9viter-leffondrement-jean-marc-jancovici-activity-6897502776142700544-LdHp?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6897502775526125568", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6897502776142700544", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6897502776142700544,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6897502776142700544,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6897502775526125568", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "ZY7LQOsunEeN3iGY8+AtzA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6897502776142700544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7782168638552748953", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676289095926?e=1677240000&v=beta&t=7Ow1_G7HDlc4xTL6X2uY2-NmbdtWD-AZaOH4QRwXjGE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676289095926?e=1677240000&v=beta&t=dhBOpwkGxiMC6ESTSs0audznf2RkxgL91SWuwBCN09w", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676289095926?e=1677240000&v=beta&t=X0TDIJnldO1zK4SLNv1TQL2GICDdAk8pznMoqeDAuy4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676289095926?e=1677240000&v=beta&t=IiNc7kbr76dOtGq9dO-3KC9SIxVzW7PjiuXYi0Xrygk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFNAKwBRqrvoA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7782168638552748953)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7782168638552748953)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: \u00c9viter l\u2019effondrement ? Jean-Marc Jancovici - Laurent Morel [EN DIRECT] on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=dmBRwFVQk_M" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici : polytechnicien, pr\u00e9sident de The Shift Project Laurent Morel : Ing\u00e9nieur, entrepreneur, membre de Carbone 4 SOUTENEZ-NOUS : \u25b6\ufe0f https://tipeee.com/thinkerview POSEZ VOS QUESTIONS EN DIRECT : \u25b6\ufe0f https://discord.gg/Ey3pBWV SOURCEZ,..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "\u00c9viter l\u2019effondrement ? Jean-Marc Jancovici - Laurent Morel [EN DIRECT]" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6897502775526125568,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Plan de Transformation de l'Economie Fran\u00e7aise \u00e9tait l'objet de l'int\u00e9r\u00eat de Thinkerview hier soir. Pendant un peu moins de 3 heures nous - Laurent Morel et ma pomme - avons \u00e9voqu\u00e9 des sujets en lien direct ou indirect (et \u00e0 quelques rares occasions tr\u00e8s indirects mais c'est le charme de l'\u00e9mission) avec ce plan.\n\nNous n'avons pas tant egren\u00e9 les mesures op\u00e9rationnelles propos\u00e9es dans chacun des 15 secteurs couverts dans le livre, mais nous avons plut\u00f4t parl\u00e9 de la philosophie g\u00e9n\u00e9rale de l'affaire, des questions d'emploi et d'\u00e9quit\u00e9, du contexte international, de l'existence ou pas de \"candidat(e)s\" \u00e0 sa mise en oeuvre, etc.\n\nComme d'habitude sur cette chaine les questions sont parfois d\u00e9lib\u00e9r\u00e9ment d\u00e9stabilisantes ou provocatrices, mais ca fait partie du jeu, et par ailleurs ce n'est pas pareil d'avoir 10 secondes ou 10 minutes pour r\u00e9pondre \u00e0 une question taquine.\n\nCe qui est sur, c'est que l'une des questions d'ouverture (\"que se passe-t-il si on ne fait rien\") est tr\u00e8s en lien avec le cygne noir qui sert de logo \u00e0 la chaine !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6897502775526125568,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6897502776142700544,urn:li:activity:6897502776142700544,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 96, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6897502776142700544,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6897502776142700544,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6897502776142700544", + "threadId": "activity:6897502776142700544", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6897502776142700544", + "urn": "urn:li:activity:6897502776142700544", + "numComments": 119, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6897502776142700544", + "reactionTypeCounts": [ + { + "count": 3689, + "reactionType": "LIKE" + }, + { + "count": 216, + "reactionType": "PRAISE" + }, + { + "count": 103, + "reactionType": "MAYBE" + }, + { + "count": 89, + "reactionType": "INTEREST" + }, + { + "count": 87, + "reactionType": "EMPATHY" + }, + { + "count": 32, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6897502776142700544", + "numLikes": 4216, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6897502776142700544", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4216, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6897446108843315202,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6897446108843315202", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6897446108843315202)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6897446108843315202)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_%C3%A9clairage-sur-la-r%C3%A9forme-du-dpe-une-meilleure-activity-6897446108843315202-UVv4?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6897446108243509248", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6897446108843315202", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6897446108843315202,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6897446108843315202,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6897446108243509248", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "oK2W3HHi4Snh3WFVedYW0A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6897446108843315202,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7768341141950547014", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676006552955?e=1677240000&v=beta&t=iY4-vRt7KcWEpOhaqTsclF784v5IAzVpD7Z2uHShB9A", + "expiresAt": 1677240000000, + "height": 1000 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676006552955?e=1677240000&v=beta&t=zhnOREfzd19Hv3b8Ta4G7pHFABwwTDnLxgJJPw7KOkk", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676006552955?e=1677240000&v=beta&t=NtsDGBhsEhV3-ksdkOci9GVl5ivb2GfBjC-WZh1LUUw", + "expiresAt": 1677240000000, + "height": 200 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676006552955?e=1677240000&v=beta&t=W8lZvQGjeJFSZSOAOvoi7Hbw8NsdXl06M0prXYuBbNM", + "expiresAt": 1677240000000, + "height": 600 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHgf8pP_yAMeA/articleshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7768341141950547014)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7768341141950547014)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 9 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00c9clairage sur la r\u00e9forme du DPE : une meilleure prise en compte de l\u2019enjeu climatique | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/analyse-reforme-dpe-decryptage" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00c9clairage sur la r\u00e9forme du DPE : une meilleure prise en compte de l\u2019enjeu climatique | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6897446108243509248,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tou(te)s celles et ceux qui ont achet\u00e9 ou vendu un logement y ont eu affaire : le Diagnostic de Performance Energ\u00e9tique, ou DPE, qui classe le logement en fonction... de sa performance \u00e9nerg\u00e9tique. A c'est pour un logement tr\u00e8s \u00e9conome, et G pour ce que l'on appelle une \"passoire thermique\" (F aussi du reste). \n\nCe DPE ne tenait compte, jusqu'\u00e0 maintenant, que de la consommation d'\u00e9nergie, mais ne se pr\u00e9occupait pas du type d'\u00e9nergie en question. Il \u00e9tait donc possible d'avoir une meilleure note avec un logement chauff\u00e9 au fioul qu'avec un logement chauff\u00e9 \u00e0 l'\u00e9lectricit\u00e9, alors m\u00eame que le second aurait conduit \u00e0 beaucoup moins d'\u00e9missions que le premier \u00e0 usage identique.\n\nDu coup il y avait aussi une \"\u00e9tiquette gaz \u00e0 effet de serre\" qui concernait elle uniquement les \u00e9missions de CO2, mais c'\u00e9tait n\u00e9anmoins celle sur l'\u00e9nergie qui \u00e9tait syst\u00e9matiquement cit\u00e9e et prise en compte dans les actions, beaucoup moins celle sur les \u00e9missions. Mettre les deux informations dans une m\u00eame note est bien plus pertinent, m\u00eame si les seuils choisis peuvent toujours se discuter.\n\nD'autres imperfections existaient dans le mode de calcul du DPE : par exemple, le b\u00e2timent pouvait \u00eatre mieux not\u00e9 simplement parce qu'il \u00e9tait moins utilis\u00e9 (alors que la note doit refl\u00e9ter ses performances intrins\u00e8ques et non sa temp\u00e9rature de consigne ou sa vacance).\n\nLes modifications et novations (par exemple la cr\u00e9ation d'un DPE collectif pour les immeubles) sont d\u00e9taill\u00e9es et comment\u00e9es dans cet article qui vous est propos\u00e9 par la pratique b\u00e2timent de Carbone 4. Le nombre de \"passoires \u00e9nerg\u00e9tiques\" et leur composition, ainsi que l'ad\u00e9quation entre ce DPE r\u00e9form\u00e9 et les politiques nationales sont ainsi pass\u00e9s au crible, avec pour conclusion \"c'est beaucoup mieux, mais il reste encore quelques marges de progr\u00e8s\".\n\nRappelons que le b\u00e2timent c'est 40% de l'\u00e9nergie finale et environ 20% des \u00e9missions de gaz \u00e0 effet de serre du pays. C'est donc un secteur incontournable (et majeur sur l'\u00e9nergie) de tout plan visant \u00e0 rendre notre \"mode de vie\" compatible avec les limites climatiques et de ressources." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6897446108243509248,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6897446108843315202,urn:li:activity:6897446108843315202,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6897446108843315202,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6897446108843315202,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6897446108843315202", + "threadId": "activity:6897446108843315202", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6897446108843315202", + "urn": "urn:li:activity:6897446108843315202", + "numComments": 92, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6897446108843315202", + "reactionTypeCounts": [ + { + "count": 451, + "reactionType": "LIKE" + }, + { + "count": 59, + "reactionType": "INTEREST" + }, + { + "count": 31, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6897446108843315202", + "numLikes": 554, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6897446108843315202", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 554, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6896854521138475008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6896854521138475008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6896854521138475008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6896854521138475008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_bruno-le-maire-sur-le-gazoduc-nord-stream-activity-6896854521138475008-F5tc?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6896854520312197120", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6896854521138475008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6896854521138475008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6896854521138475008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6896854520312197120", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "yQU/u8G2SvbJuFFlfh4kEg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6896854521138475008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6980256647701252253", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675890570417?e=1677240000&v=beta&t=12Fh3d_LH7p2W4aqlluQ2qBFCHndGNe3nmug-GcQXzU", + "expiresAt": 1677240000000, + "height": 453 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675890570417?e=1677240000&v=beta&t=n4HbZS7cfHizhZ6ukf4cr6YIl1PKFN8L9i9Pym2Dk6c", + "expiresAt": 1677240000000, + "height": 680 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675890570417?e=1677240000&v=beta&t=FkZkKYkBBrmggnG-Ofp9tbz4BMlyB8bYtxbwWPd9G2w", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675890570417?e=1677240000&v=beta&t=EcLwCwjw8h42fsCyQu0sSyEwfyja25r_4GGrw2fKhrk", + "expiresAt": 1677240000000, + "height": 272 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEjbh2Lv9dDmw/articleshare-shrink_" + }, + "displayAspectRatio": 0.56625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6980256647701252253)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6980256647701252253)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "franceinter.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Bruno Le Maire sur le gazoduc Nord Stream 2 : \"Nous avons des int\u00e9r\u00eats diff\u00e9rents des \u00c9tats-Unis\" by franceinter.fr", + "actionTarget": "https://www.franceinter.fr/emissions/l-invite-de-8h20-le-grand-entretien/l-invite-de-8h20-le-grand-entretien-du-mardi-08-fevrier-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Bruno Le Maire sur le gazoduc Nord Stream 2 : \"Nous avons des int\u00e9r\u00eats diff\u00e9rents des \u00c9tats-Unis\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6896854520312197120,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 14, + "miniProfile": { + "firstName": "Bruno", + "lastName": "Le Maire", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "occupation": "Ministre de l\u2019\u00c9conomie, des Finances et de la Souverainet\u00e9 industrielle et num\u00e9rique", + "objectUrn": "urn:li:member:489338904", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1615820384690?e=1681948800&v=beta&t=1lSONwEqNZ6YCfsSa_SSdMyy3lRIBlt7HnIa8FhbD_0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1615820384690?e=1681948800&v=beta&t=mXrkcvswYDvA5nxrWnHwv0uRHbVbSrbb-YTCHNh3hZs", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFtlzemSILDlQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "brunolemaire", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650470576103?e=1681948800&v=beta&t=grYiuKFOw0Vps9r0gskTHNlsABqKydJY1BD9PqrCOZE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650470576103?e=1681948800&v=beta&t=_dq5B-XcARKywCPZ39sHI46v2wiioUaRLXHB6EjQEZA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650470576103?e=1681948800&v=beta&t=hpGqyzWjIXtO01PmwOzhVATdVIHajDaeNdSiiN6I2KY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650470576103?e=1681948800&v=beta&t=sDT3g5ZnR6kL5Ks0S37qtLS2Z-UNhM119fiXH0t1h8I", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQH2hSTPjrAuKw/profile-displayphoto-shrink_" + } + }, + "trackingId": "RdxfX+WWTSqukbRUlVrMHQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Bruno Le Maire a fait quelques affirmations sur l'\u00e9nergie sur France Inter qui m'ont sembl\u00e9 m\u00e9riter quelques pr\u00e9cisions.\n\nIl a dit \"L'Europe doit \u00eatre ind\u00e9pendante du point de vue \u00e9nerg\u00e9tique\". L'Union importe actuellement 96% de son p\u00e9trole (dont 35% de Russie), 80% de son gaz (un tiers russe aussi) et 35% de son charbon. Elle importe 100% de son uranium, quasiment 100% de ses panneaux solaires, une fraction de ses \u00e9oliennes, 100% de son cuivre (n\u00e9cessaire aux r\u00e9seaux et appareils \u00e9lectriques), 100% des m\u00e9taux pour batteries, et j'en passe. Ne pas d\u00e9pendre de pays tiers pour des denr\u00e9es indispensables \u00e0 notre syst\u00e8me \u00e9nerg\u00e9tique sera h\u00e9las impossible. De quelle ind\u00e9pendance parle-t-on ?\n\nBruno Le Maire impute la hausse des prix de l'\u00e9nergie \u00e0 la \"demande plus forte que pr\u00e9vue\" en p\u00e9trole et en gaz \u00e0 cause de la reprise. Il ne faudrait pas oublier ce qui a jou\u00e9 encore plus (sans jugement de valeur sur la pertinence de la hausse des taxes) : la mise de l'\u00e9lectricit\u00e9 dans le march\u00e9 (qui cale les prix spot pour tous sur le mode de production le plus on\u00e9reux), le prix des quotas qui atteint pas loin de 100 euros la tonne de CO2 et qui rench\u00e9rit le MWh au gaz, la hausse des taxes sur les carburants (notamment le diesel) et enfin la fiscalit\u00e9 (d'abord affect\u00e9e aux ENR, puis non affect\u00e9e) qui a augment\u00e9 sur l'\u00e9lectricit\u00e9. \n\nIl esp\u00e8re que d'ici la fin 2022 les prix vont baisser. Que disent \"les march\u00e9s\" ? Le prix du gaz pour livraison dans un an et dans deux ans est \u00e0 peu pr\u00e8s le m\u00eame que le prix pour demain. Un peu plus loin il a parl\u00e9 de \"sortie de crise\". Mais si le gaz reste proche de 100 euros le MWh (et donc l'\u00e9lec pas loin de 250 avec le rendement des centrales et le prix du CO2) pendant 2 ans, ca n'est plus vraiment \"une crise\", c'est plut\u00f4t un nouvel \u00e9tat de fait....\n\nBruno Le Maire explique que l'Etat a impos\u00e9 une charge de 8 milliards \u00e0 EDF (dont une partie financera une filiale de Total !) \"parce que c'est une entreprise publique\" et \"sous le contr\u00f4le de l'Etat\". Cela veut-il dire que l'on ne peut pas, au nom de l'int\u00e9r\u00eat g\u00e9n\u00e9ral, imposer une charge \u00e0 une entreprise priv\u00e9e ? Que l'Etat n'a aucun contr\u00f4le sur le secteur priv\u00e9 ? \n\nLe ministre qualifie EDF de \"service public\". Objection votre honneur : si on a voulu un march\u00e9 concurrentiel il n'y a plus de service public. Il y a des concurrents, et si on fait les poches de l'un d'eux on doit faire les poches de tous. Cela n'emp\u00eache pas l'invit\u00e9 de dire un peu plus loin que pour les p\u00e9troliers \"c'est \u00e0 eux de faire des propositions\" (aucune obligation !). Amusant... \n\nEnfin notre ministre d\u00e9clare que \"nous avons des besoins en \u00e9lectricit\u00e9 d\u00e9carbon\u00e9s infiniment sup\u00e9rieurs \u00e0 ce \u00e0 quoi nous nous attendions\". Pour ce que j'en ai vu depuis 20 ans, la question de la disponibilit\u00e9 physique future de l'\u00e9lectricit\u00e9 d\u00e9carbon\u00e9e n'a jamais fait l'objet d'une \"attente\" quantifi\u00e9e du monde politique : elle a fait l'objet de certitudes d'une absence de difficult\u00e9s fond\u00e9es sur... rien." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6896854520312197120,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6896854521138475008,urn:li:activity:6896854521138475008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 216, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6896854521138475008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6896854521138475008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6896854521138475008", + "threadId": "activity:6896854521138475008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6896854521138475008", + "urn": "urn:li:activity:6896854521138475008", + "numComments": 309, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6896854521138475008", + "reactionTypeCounts": [ + { + "count": 5533, + "reactionType": "LIKE" + }, + { + "count": 619, + "reactionType": "INTEREST" + }, + { + "count": 608, + "reactionType": "PRAISE" + }, + { + "count": 266, + "reactionType": "MAYBE" + }, + { + "count": 53, + "reactionType": "EMPATHY" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6896854521138475008", + "numLikes": 7100, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6896854521138475008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7100, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6896758521564602368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6896758521564602368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6896758521564602368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6896758521564602368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_consommation-les-indon%C3%A9siens-manquent-d-activity-6896758521564602368-uzFr?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6896758520197251072", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6896758521564602368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6896758521564602368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6896758521564602368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6896758520197251072", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "b2np/X7xTy9VTkUFz7QibA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6896758521564602368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8873032561908355339", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676112635525?e=1677240000&v=beta&t=jZoig-BI9Slh2Pz7i8utVkmKBXj5p5todq9gHPDpnis", + "expiresAt": 1677240000000, + "height": 534 + }, + { + "width": 940, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676112635525?e=1677240000&v=beta&t=R4tgAZKLRqe8X300Hpp1J8jrkWIm5pGu15enDvOYK8w", + "expiresAt": 1677240000000, + "height": 628 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676112635525?e=1677240000&v=beta&t=k11zMNF_ShoNe0DT9JxA63oGrOOIqFarjWYvClePnW0", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676112635525?e=1677240000&v=beta&t=8NkZoVNLj7zY1Hz405ydjVeffzmmAOphvmbvuLxxyp4", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFgS0ja5wqHcQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.6675 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8873032561908355339)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8873032561908355339)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "courrierinternational.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Consommation. Les Indon\u00e9siens manquent d\u2019huile de palme, utilis\u00e9e pour la production de biocarburants by courrierinternational.com", + "actionTarget": "https://www.courrierinternational.com/une/consommation-les-indonesiens-manquent-dhuile-de-palme-utilisee-pour-la-production-de" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Consommation. Les Indon\u00e9siens manquent d\u2019huile de palme, utilis\u00e9e pour la production de biocarburants" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6896758520197251072,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ma casserole contre ta voiture : la diminution de l'usage des combustibles fossiles sur une plan\u00e8te peupl\u00e9e de 8 milliards d'individus va conduire de plus en plus fr\u00e9quemment \u00e0 des conflits sur l'utilisation des sols, dont le produit (la biomasse) est \"r\u00e9clam\u00e9e\" pour des usages multiples :\n- se nourrir\n- se d\u00e9placer en mode motoris\u00e9 (carburants)\n- produire des mat\u00e9riaux (bois, coton ou lin, chanvre...)\n- profiter \u00e0 la biodiversit\u00e9 (auquel cas on pr\u00e9l\u00e8ve un minimum car on \"laisse la nature tranquille\").\n\nA ce la on peut rajouter un usage hors biomasse qui est d'implanter des b\u00e2timents et infrastructures (voies de communication), qui peut inclure de la biomasse \"r\u00e9cr\u00e9ative\" (espaces verts, par exemple).\n\nAux USA la concurrence entre voitures et assiettes est d\u00e9j\u00e0 tr\u00e8s significative sur le ma\u00efs. 40% des cultures de cette c\u00e9r\u00e9ale servent \u00e0 produire de l'\u00e9thanol pour mettre dans les r\u00e9servoirs et non \u00e0 nourrir des gens (peu !) ou des animaux (beaucoup). Et comme les d\u00e9tenteurs de voiture ont souvent plus de pouvoir d'achat que ceux qui n'en ont pas, il se passe alors le processus suivant, que l'on voit aussi arriver en Indon\u00e9sie : l'achat de la denr\u00e9e pour des usages \u00e9nerg\u00e9tiques est plus rentable pour les producteurs que pour nourrir des gens. \n\nIl est malheureusement probable que cette concurrence va s'amplifier \u00e0 l'avenir, et que la tentative de basculer sur le flux solaire courant des usages qui se sont d\u00e9velopp\u00e9s avec du d\u00e9stockage de flux solaire ancien (les combustibles solides) va cr\u00e9er de plus en plus de tensions sur l'alimentation." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6896758520197251072,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6896758521564602368,urn:li:activity:6896758521564602368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 28, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6896758521564602368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6896758521564602368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6896758521564602368", + "threadId": "activity:6896758521564602368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6896758521564602368", + "urn": "urn:li:activity:6896758521564602368", + "numComments": 46, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6896758521564602368", + "reactionTypeCounts": [ + { + "count": 393, + "reactionType": "LIKE" + }, + { + "count": 100, + "reactionType": "INTEREST" + }, + { + "count": 89, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6896758521564602368", + "numLikes": 588, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6896758521564602368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 588, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6896405103591374848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6896405103591374848", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6896405103591374848)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6896405103591374848)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_invit%C3%A9-rtl-nucl%C3%A9aire-moins-on-en-fait-activity-6896405103591374848-YnpO?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6896405102949646336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6896405103591374848", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6896405103591374848,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6896405103591374848,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6896405102949646336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "MpPCDwgsB1VSro0BIKd4SQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6896405103591374848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8887126502154101605", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676208028699?e=1677240000&v=beta&t=_oUFk6QAQJF4_ho3N-cfOnLt_7E59WfWGtgTjPuCSvQ", + "expiresAt": 1677240000000, + "height": 532 + }, + { + "width": 1201, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676208028699?e=1677240000&v=beta&t=GCjWA8Z58jXQ0xT7qSHq7J8OinAV9xKO5r81bru8RHA", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676208028699?e=1677240000&v=beta&t=-lItvDbb2QPF7oCAv5AHyWf-UVAzFxPZtZZ3WzCCWzE", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676208028699?e=1677240000&v=beta&t=fNaJRPUiEUe0FKmw_tkRha960dV8x9Sclkau1lbb-qs", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQER0GUQK3XWBw/articleshare-shrink_" + }, + "displayAspectRatio": 0.665 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8887126502154101605)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8887126502154101605)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: INVIT\u00c9 RTL - Nucl\u00e9aire : \"Moins on en fait, plus on se complique la vie\", explique Jean-Marc Jancovici by rtl.fr", + "actionTarget": "https://www.rtl.fr/actu/debats-societe/invite-rtl-nucleaire-moins-on-en-fait-plus-on-se-complique-la-vie-explique-jean-marc-jancovici-7900122029" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "INVIT\u00c9 RTL - Nucl\u00e9aire : \"Moins on en fait, plus on se complique la vie\", explique Jean-Marc Jancovici" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6896405102949646336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quelques heures avant l'\u00e9v\u00e9nement organis\u00e9 par The Shift Project pour pr\u00e9senter de fa\u00e7on un peu panoramique le plan de transformation de l'\u00e9conomie fran\u00e7aise (inscription libre pour assister en ligne : https://lnkd.in/e8m9JS_S ), RTL m'a laiss\u00e9 une petite place pour parler de ce travail (avec une mention en passant au Monde sans Fin, normalement disponible \u00e0 nouveau en librairie - et r\u00e9approvisionn\u00e9 \u00e0 intervalles r\u00e9guliers de toute fa\u00e7on d'ici \u00e0 avril).\n\nOn ne refait pas les media : on a plus parl\u00e9 de nucl\u00e9aire \u00e0 l'antenne que dans le PTEF (o\u00f9 il en est un peu question au chapitre \u00e9nergie - un chapitre sur 15 !), et j'invite \u00e9videmment tout(e) un(e) chacun(e) \u00e0 en juger par lui ou elle-m\u00eame, en lisant le livre publi\u00e9 chez Odile Jacob, en assistant \u00e0 la pr\u00e9sentation de cet apr\u00e8s-midi, ou en regardant les documents publi\u00e9s directement par The Shift Project sur le site https://lnkd.in/esiqHkbf\n\nBien \u00e9videmment notre travail (au Shift Project) ne va pas s'arr\u00eater ce soir : nous sommes plus au d\u00e9but d'un processus qu'\u00e0 la fin, puisque dans la vraie vie la d\u00e9carbonation \u00e0 la bonne vitesse n'a pas vraiment commenc\u00e9 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6896405102949646336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6896405103591374848,urn:li:activity:6896405103591374848,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6896405103591374848,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6896405103591374848,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6896405103591374848", + "threadId": "activity:6896405103591374848", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6896405103591374848", + "urn": "urn:li:activity:6896405103591374848", + "numComments": 64, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6896405103591374848", + "reactionTypeCounts": [ + { + "count": 1089, + "reactionType": "LIKE" + }, + { + "count": 73, + "reactionType": "PRAISE" + }, + { + "count": 37, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "INTEREST" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6896405103591374848", + "numLikes": 1237, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6896405103591374848", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1237, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6896332347893960704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6896332347893960704", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6896332347893960704)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6896332347893960704)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_dans-une-publication-r%C3%A9cente-de-flash-economics-activity-6896332347893960704--bJe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6896332347214503936", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6896332347893960704", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6896332347893960704,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6896332347893960704,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6896332347214503936", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "N7N+hLJ06yLzvPEKKbr6Zg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6896332347893960704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQFtZXK72-4qEw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQFtZXK72-4qEw", + "artifacts": [ + { + "width": 1442, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1644213757306?e=1679529600&v=beta&t=7sWwmiuOuAamoXSutIcTWJ0eBEsoY8U7E4ZSZZeJNkA", + "expiresAt": 1679529600000, + "height": 1140 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1644213758837?e=1679529600&v=beta&t=HzpR7nbXwDjBqlk4zsTr0UUV0jmj4rkHSldB36MU8Zs", + "expiresAt": 1679529600000, + "height": 16 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1644213758837?e=1679529600&v=beta&t=tWxyNNVdqimHJ2P5wy7osiiinliZLkBEuaBCT4Fe-NI", + "expiresAt": 1679529600000, + "height": 1012 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1644213758837?e=1679529600&v=beta&t=H0bgsOTLHnmbvOg_iiOjDJUDhfHaXaJuHZbErh6sMhA", + "expiresAt": 1679529600000, + "height": 379 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1644213758837?e=1679529600&v=beta&t=4g4vOkUqoLZ61kaOiF982fZPE95uXNSMerCzHvxCDOw", + "expiresAt": 1679529600000, + "height": 126 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1644213758837?e=1679529600&v=beta&t=SQZWvrfdgkFKNXTd67aCn8JGNoxTpkPjdubcOUsdlDU", + "expiresAt": 1679529600000, + "height": 632 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQFtZXK72-4qEw/feedshare-shrink_" + }, + "displayAspectRatio": 0.7905686546463245 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6896332347214503936,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans une publication r\u00e9cente de \"Flash Economics\", Patrick Artus, chef \u00e9conomiste de Natixis, se demande si le d\u00e9couplage entre PIB et CO2 est en route : https://lnkd.in/ekFjfb4J\n\nRappelons que le d\u00e9couplage est un autre nom pour la croissance verte (qui est affirm\u00e9e comme possible par notre pouvoir politique, puisque nous avons en France une loi \"pour la croissance verte\", vot\u00e9e en 2015). Cette \u00e9volution correspond \u00e0 une situation o\u00f9 le PIB croit en permanence pendant que les \u00e9missions de gaz \u00e0 effet de serre et autres nuisances environnementales d\u00e9croissent en permanence. \n\nLa conclusion d'Artus est :\n- le d\u00e9couplage s'observe depuis 1990 pour l'Europe ou les USA\n- il s'observe un peu pour la Chine et l'Inde\n- mais il ne s'observe pas pour le monde dans son ensemble.\n\nDit autrement, pour le monde dans son ensemble, les \u00e9missions de CO2 par unit\u00e9 de PIB ne diminuent quasiment pas depuis 1990. Or, c'est bien \u00e0 ce niveau global qu'il faut regarder les choses, parce qu'aucun pays n'est autosuffisant pour l'ensemble de sa consommation. C'est pour l'ensemble de l'activit\u00e9 productive qu'il faut voir si la croissance verte est en vue ou pas (voir par exemple https://lnkd.in/dDCe4YAm ).\n\nQue signifie ce r\u00e9sultat\u00a0? Tout simplement que l'on voit mal, aujourd'hui, comment il serait possible de ramener les \u00e9missions plan\u00e9taires \u00e0 z\u00e9ro avec un PIB en croissance... voire m\u00eame un PIB constant. Cela est assez coh\u00e9rent avec le fait que, avant les combustibles fossiles, le PIB mondial \u00e9tait tr\u00e8s inf\u00e9rieur \u00e0 ce qu'il est aujourd'hui, et surtout croissait tr\u00e8s tr\u00e8s lentement." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6896332347214503936,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6896332347893960704,urn:li:activity:6896332347893960704,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 59, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6896332347893960704,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6896332347893960704,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6896332347893960704", + "threadId": "activity:6896332347893960704", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6896332347893960704", + "urn": "urn:li:activity:6896332347893960704", + "numComments": 128, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6896332347893960704", + "reactionTypeCounts": [ + { + "count": 752, + "reactionType": "LIKE" + }, + { + "count": 128, + "reactionType": "INTEREST" + }, + { + "count": 93, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6896332347893960704", + "numLikes": 981, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6896332347893960704", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 981, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6896026057577676800,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6896026057577676800", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6896026057577676800)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6896026057577676800)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pr%C3%A9sidentielle-2022-pourquoi-lenvironnement-activity-6896026057577676800-x87Q?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6896026057007276032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6896026057577676800", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6896026057577676800,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6896026057577676800,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6896026057007276032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "NOrm3EzlIwIYBrlufG9pAA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6896026057577676800,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9207418851521922205", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676002411158?e=1677240000&v=beta&t=99GUr3EeUQk9qebazsyhgNJnYIM2D2y_XsYrMy5KPg8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676002411158?e=1677240000&v=beta&t=zLapgTfRrct9dikLFsNyt7vxsRXtyx-oIkvIrfxkEwE", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676002411158?e=1677240000&v=beta&t=WWryEspSIM5wrrk6BLUs7KZKOK8G83KlPgcgkwA9y4o", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676002411158?e=1677240000&v=beta&t=kWIA4h_CWgeToGS-CLOofQMyFoTUESfG9lIskQKAyEg", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEuxYxiGGbo4g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9207418851521922205)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9207418851521922205)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pr\u00e9sidentielle 2022 : pourquoi l'environnement n'est pas au c\u0153ur des d\u00e9bats by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900121726-presidentielle-2022-pourquoi-l-environnement-n-est-pas-au-coeur-des-debats" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pr\u00e9sidentielle 2022 : pourquoi l'environnement n'est pas au c\u0153ur des d\u00e9bats" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6896026057007276032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'environnement peut \u00e9ventuellement se voir comme un ensemble de limites physiques et biologiques incontournables sur une plan\u00e8te finie, et qui contraignent donc les degr\u00e9s de libert\u00e9 pour notre avenir, que cela nous enchante ou nous enchante un peu moins.\n\nDans le cadre de la surench\u00e8re \u00e9lectorale qui a d\u00e9marr\u00e9 de fait dans les media (m\u00eame si la campagne officielle n'est pas encore ouverte), il ne serait donc pas compl\u00e8tement idiot de regarder de fa\u00e7on un peu syst\u00e9matique si les promesses flottent au regard des limites en question. Ce serait d'autant plus logique que la question environnementale pr\u00e9occupe une fraction croissante de l'\u00e9lectorat. \n\nMais... on ne peut pas dire que nos amis journalistes passent souvent les personnages politiques \u00e0 la question sur ces sujets. M\u00eame Jadot a plus fait parler de lui r\u00e9cemment avec sa cravate qu'avec son programme ! Je suis donc all\u00e9 ronchonner... sur un m\u00e9dia :), en l'esp\u00e8ce dans le cadre de la chronique qui vient d'\u00eatre diffus\u00e9e ce Samedi sur RTL.\n\nComme elle fait 3 minutes, je ne vous en propose pas un r\u00e9sum\u00e9 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6896026057007276032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6896026057577676800,urn:li:activity:6896026057577676800,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6896026057577676800,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6896026057577676800,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6896026057577676800", + "threadId": "activity:6896026057577676800", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6896026057577676800", + "urn": "urn:li:activity:6896026057577676800", + "numComments": 85, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6896026057577676800", + "reactionTypeCounts": [ + { + "count": 934, + "reactionType": "LIKE" + }, + { + "count": 82, + "reactionType": "PRAISE" + }, + { + "count": 41, + "reactionType": "APPRECIATION" + }, + { + "count": 19, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "INTEREST" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6896026057577676800", + "numLikes": 1094, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6896026057577676800", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1094, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6895672266571476992,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6895672266571476992", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6895672266571476992)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6895672266571476992)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-project-publie-son-livre-issu-des-activity-6895672266571476992-IF0k?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6895672266038796288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6895672266571476992", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6895672266571476992,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6895672266571476992,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6895672266038796288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "fsFj80cispFSRlFvEL76og==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6895672266571476992,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9036375185403148342", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675740857394?e=1677240000&v=beta&t=8EOjFdxbUQ-S_nmMA-VzCGonzu5f1E6uqtNfAgVgKPE", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675740857395?e=1677240000&v=beta&t=3jzCghGB0wkswWD745Y6YxmOwAibcomG7cVImQgm6yo", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675740857395?e=1677240000&v=beta&t=rpUvoBi3tMVVH_F2Gznyzw4prq6DcsoHjPVqsTpjcT4", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675740857395?e=1677240000&v=beta&t=pwBzIG2mTynQduI-KKq3ARz_XbNwFpyoTUZpxNBnwUE", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFDBrf69Zcyrg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9036375185403148342)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9036375185403148342)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift Project publie son livre issu des travaux du PTEF : Rdv le 07/02 ! by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-publication-livre-ptef-7-fevrier-18h/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift Project publie son livre issu des travaux du PTEF : Rdv le 07/02 !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6895672266038796288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Petit rappel : Lundi 7 f\u00e9vrier, \u00e0 18h, The Shift Project organise un \u00e9v\u00e9nement en ligne pour pr\u00e9senter l'ensemble de son plan de transformation de l'\u00e9conomie fran\u00e7aise. \n\nCet \u00e9v\u00e9nement a en fait lieu en \"phygital\", c'est \u00e0 dire que tou(te)s les intervenant(e)s seront rassembl\u00e9s au m\u00eame endroit, en l'esp\u00e8ce \u00e0 Sciences Po, qui nous a paru \u00eatre le lieu o\u00f9 se mettre pour parler de l'avenir du pays \u00e0 l'occasion du d\u00e9bat pr\u00e9sidentiel (qui pour le moment ne comporte pas beaucoup de s\u00e9quences sur l'environnement, c'est le moins que l'on puisse dire).\n\nCet \u00e9v\u00e9nement ne sera pas juste l'occasion de r\u00e9sumer le r\u00e9sum\u00e9 (le le livre paru chez Odile Jacob - https://lnkd.in/ekk7DZZH - quasi-\u00e9puis\u00e9 une semaine apr\u00e8s sa sortie, ce qui nous a \u00e9tonn\u00e9 nous-m\u00eames, mais les r\u00e9impressions arrivent) : il sera aussi l'occasion de donner la parole \u00e0 une partie des chef(fe)s de projet qui, avec le concours de centaines de contributeurs et de milliers de relecteurs, ont rendu ce travail possible.\n\nIl sera aussi l'occasion de donner la parole \u00e0 des intervenant(e)s externes, dont le secr\u00e9taire g\u00e9n\u00e9ral de la CFDT, le pr\u00e9sident d\u00e9l\u00e9gu\u00e9 du MEDEF, la co-pr\u00e9sidente du mouvement Impact France, la nouvelle DG de Veolia et le (presque) nouveau patron de Sciences Po.\n\nPour assister en ligne (sur place nous avons r\u00e9serv\u00e9 l'amphi aux contributeurs du PTEF et aux invit\u00e9s, ainsi qu'\u00e0 des \u00e9tudiant(e)s de Sciences Po) c'est gratuit ; il faut juste s'inscrire pour recevoir le lien permettant de se connecter. Le programme figure sur la page en lien ci-dessous.\n\nNous esp\u00e9rons vous \"voir\" nombreux !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6895672266038796288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6895672266571476992,urn:li:activity:6895672266571476992,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 23, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6895672266571476992,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6895672266571476992,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6895672266571476992", + "threadId": "activity:6895672266571476992", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6895672266571476992", + "urn": "urn:li:activity:6895672266571476992", + "numComments": 44, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6895672266571476992", + "reactionTypeCounts": [ + { + "count": 911, + "reactionType": "LIKE" + }, + { + "count": 38, + "reactionType": "PRAISE" + }, + { + "count": 28, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "INTEREST" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6895672266571476992", + "numLikes": 1003, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6895672266571476992", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1003, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6895265334597607424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6895265334597607424", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6895265334597607424)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6895265334597607424)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-marc-jancovici-avec-les-bons-indicateurs-activity-6895265334597607424-y2LF?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6895265333876178944", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6895265334597607424", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6895265334597607424,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6895265334597607424,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6895265333876178944", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "MMJV+aYkAeOdtQG6MhWF0Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6895265334597607424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7754533641311964849", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675786056286?e=1677240000&v=beta&t=rACyoF1qgn268XTkl5CHzSLxkeim_aPca96JaNzle3s", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675786056287?e=1677240000&v=beta&t=r78muhfHXZOhv2GeRLISj772PEU9MbRxCo-OPVsX_6A", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675786056287?e=1677240000&v=beta&t=wCv9BCo2BGqMgQq4q03pe9-8jPpPY0ONlTNqWzNLuSY", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675786056287?e=1677240000&v=beta&t=eFabJYD5NlL3lC-wSw6gZS9odlXqt_bM7j1gnFxUQxM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHYbZ9GDxemGQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7754533641311964849)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7754533641311964849)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean-Marc Jancovici : \u00ab Avec les bons indicateurs, l'\u00e9conomie mondiale serait en faillite ! \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/jean-marc-jancovici-avec-les-bons-indicateurs-leconomie-mondiale-serait-en-faillite-1384557" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici\u00a0: \u00ab\u00a0Avec les bons indicateurs, l'\u00e9conomie mondiale serait en faillite\u00a0!\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6895265333876178944,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A l'occasion de la sortie chez Odile Jacob du livre r\u00e9sumant le Plan de Transformation de l'Economie Fran\u00e7aise (https://lnkd.in/esiqHkbf), Les Echos me font l'honneur de leur interview longue du Vendredi dans le journal \"papier\" (qui est de plus en plus digital !), et encore plus longue sur le site web.\n\nLe fait m\u00eame que le site des Echos puisse mettre le lien vers cette interview en page d'accueil, et avec le titre \"Avec les bons indicateurs, l'\u00e9conomie mondiale serait en faillite\u00a0!\", montre bien que les sujets \u00e9voqu\u00e9s sont d\u00e9sormais consid\u00e9r\u00e9s comme l\u00e9gitimes par la r\u00e9daction, qui n'\u00e9tait pas du tout le cas il y a 10 ans.\n\nAu demeurant, pendant l'\u00e9change qui a donn\u00e9 lieu au texte publi\u00e9, les points de vue d\u00e9velopp\u00e9s ont \u00e9videmment donn\u00e9 lieu \u00e0 discussion, mais pas du tout \u00e0 un dialogue de sourds. Le m\u00eame jour, le m\u00eame journal publie un \u00e9ditorial d'un des deux interviewers (David Barroux, R\u00e9dacteur en chef Micro), o\u00f9 l'auteur \u00e9crit : \"Croire que, sans aucune contrainte, les modes de production ou les habitudes de consommation \u00e9volueront assez rapidement et radicalement pour changer la donne est illusoire. De m\u00eame, parier uniquement sur une multitude de ruptures technologiques pour esp\u00e9rer r\u00e9soudre les probl\u00e8mes climatiques est sans doute excessivement optimiste.\" (https://lnkd.in/eMFUEbFq )\n\nBien sur, il faut se garder de crier victoire trop t\u00f4t, et penser qu'une interview est une r\u00e9volution. Une interview est... une interview :). Mais elle marque un petit point dans l'adh\u00e9sion indispensable d'une partie des acteurs \u00e9conomiques \u00e0 l'id\u00e9e d'une planification de la d\u00e9carbonation, sans laquelle, dans notre syst\u00e8me remontant qu'est la d\u00e9mocratie, il n'y a pas d'avanc\u00e9e significative possible dans la sph\u00e8re politique prise dans son ensemble." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6895265333876178944,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6895265334597607424,urn:li:activity:6895265334597607424,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 109, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6895265334597607424,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6895265334597607424,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6895265334597607424", + "threadId": "activity:6895265334597607424", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6895265334597607424", + "urn": "urn:li:activity:6895265334597607424", + "numComments": 138, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6895265334597607424", + "reactionTypeCounts": [ + { + "count": 4097, + "reactionType": "LIKE" + }, + { + "count": 432, + "reactionType": "PRAISE" + }, + { + "count": 149, + "reactionType": "MAYBE" + }, + { + "count": 91, + "reactionType": "INTEREST" + }, + { + "count": 67, + "reactionType": "APPRECIATION" + }, + { + "count": 46, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6895265334597607424", + "numLikes": 4882, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6895265334597607424", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4882, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6895003034313662464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1024481", + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "iPt6huYlRpCOZhr00Mv4Cg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "iPt6huYlRpCOZhr00Mv4Cg==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Carbone 4", + "actionTarget": "https://www.linkedin.com/company/carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1024481" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "118,673 followers" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6891415423657607170,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6891415423657607170", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6891415423657607170)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6891415423657607170)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/carbone-4_inscription-au-webinaire-le-r%C3%B4le-des-infrastructures-activity-6891415423657607170-sQlQ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6891415422613225472", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1024481", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6891415423657607170,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6891415423657607170,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6891415422613225472", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "bigecpixti89ryliHtLp4A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6891415423657607170,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7890649412059786199", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1643041415691?e=1679529600&v=beta&t=4SlyL208R4fATM6KC2QuuBhcWbvy4FNzphkxcPoifH0", + "expiresAt": 1679529600000, + "height": 563 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1643041415709?e=1679529600&v=beta&t=9e6c7NSwkubaac3VeKOIPeeCdSEjyUbK7RRWz_wj68M", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280/0/1643041415709?e=1679529600&v=beta&t=JX6bbpUO6-_r_BV5iIjZ2SqXnkgkC0-KeD9ydITAYW8", + "expiresAt": 1679529600000, + "height": 563 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1643041415709?e=1679529600&v=beta&t=ke4JToi-zngaftVfQtu7W9Txk4UVpva3ghogDgTbVjk", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1643041415709?e=1679529600&v=beta&t=waIS2IitRfBhCkFDH3vlL37_A7Ui_eDESAlU7IhPXII", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1643041415709?e=1679529600&v=beta&t=PeECIbL43LVzlM2Y5zt07CQDSvz64bt_y2Ya31R_8YY", + "expiresAt": 1679529600000, + "height": 450 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5622AQFlnQ7Xr-wu5w/feedshare-shrink_" + }, + "displayAspectRatio": 0.563 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7890649412059786199)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7890649412059786199)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "us06web.zoom.us \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Inscription au webinaire: Le r\u00f4le des infrastructures dans la transition bas-carbone et l\u2019adaptation au changement climatique de la France by us06web.zoom.us", + "actionTarget": "https://us06web.zoom.us/webinar/register/WN_gmYIg4sMTHyVBNJgy256CQ" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Inscription au webinaire: Le r\u00f4le des infrastructures dans la transition bas-carbone et l\u2019adaptation au changement climatique de la France" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6891415422613225472,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1825, + "length": 15, + "miniProfile": { + "firstName": "H\u00e9l\u00e8ne", + "lastName": "Chauvir\u00e9", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAHowg8BGnOa4ybUyFal8kwecj6DGY3CfDE", + "occupation": "Management et Business Development pour Carbone 4", + "objectUrn": "urn:li:member:32031247", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAHowg8BGnOa4ybUyFal8kwecj6DGY3CfDE", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1516337273779?e=1681948800&v=beta&t=irji1bdawJO5P0KWfiqyryo95y7oDVkiXTqgdsYsZq4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1516337273779?e=1681948800&v=beta&t=0cu3WC8pWApJhSGedHsMkAPM9ZCKjbiOie-xxanyzRo", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQFdwVWhlmpOFg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "h\u00e9l\u00e8ne-chauvir\u00e9-727888a", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650526838419?e=1681948800&v=beta&t=6VKGyEovttFZNk9Y4hcLiQrMEU5QNZbbMCRtPh-155Y", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650526838419?e=1681948800&v=beta&t=dhBhHwuliIJwpmyXB-GwmA5OFgshOX7rNd0Kx1VaBdE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650526838419?e=1681948800&v=beta&t=yvDpnEwttuvR6r-IOXsZZy5oPfio6kmEwnderNT_8Bo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650526838419?e=1681948800&v=beta&t=QPquTdqt3qoAxYan0ulbuzhhqxG6-FUPqwcBsrIYUrQ", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQGf3ZsISFs-fg/profile-displayphoto-shrink_" + } + }, + "trackingId": "UcWP8dXcSWGj2JrXlJ/Jeg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1866, + "length": 17, + "miniProfile": { + "firstName": "Jacques", + "lastName": "Portalier", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAATdj2gBS-z0cXFxwED48_uo0HDj3bxl7j4", + "occupation": "Strat\u00e9gies et enjeux Climat - Energies - Ressources", + "objectUrn": "urn:li:member:81629032", + "entityUrn": "urn:li:fs_miniProfile:ACoAAATdj2gBS-z0cXFxwED48_uo0HDj3bxl7j4", + "publicIdentifier": "jacquesportalier", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517026463553?e=1681948800&v=beta&t=FLsOaDIDVPCt6EEQOCrUlKv_VanvTDYTKr5Yk08h8Ro", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517026463553?e=1681948800&v=beta&t=4NuapPcXMwvX0dgvk_FinOLcJOQ5ph-uNNF0MbEOKHk", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517026463553?e=1681948800&v=beta&t=J_s2GZdIh2IfNaAnYaIQg3L6_sQRcs61DmicVSotSYc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517026463553?e=1681948800&v=beta&t=zI81rIfeIfOtn0ArdnBf91M341Ki1v5P1qh2UWAP_uU", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHYSRfth-uLkg/profile-displayphoto-shrink_" + } + }, + "trackingId": "wmGI5n8zRCy9EEOgUIByDA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1888, + "length": 13, + "miniProfile": { + "firstName": "Joseph", + "lastName": "Hajjar", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAA09P_cBEg5XOt0liYLZYngsorBvEgoA9b4", + "occupation": "Directeur de programme climat", + "objectUrn": "urn:li:member:222117879", + "entityUrn": "urn:li:fs_miniProfile:ACoAAA09P_cBEg5XOt0liYLZYngsorBvEgoA9b4", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1672762324662?e=1681948800&v=beta&t=kX7QgV8F1uo-D6QU-wtU6TIPtwIJAFQcPkoRHOgAM4s", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1672762324662?e=1681948800&v=beta&t=F4LOKQWy3ndRXMWd1IsvHqXCfGIJni5008aVy1tlifo", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQGa_g5bg6UfnA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "joseph-hajjar-53347862", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517601472446?e=1681948800&v=beta&t=kC3EKemLwS2GBWxnpQCrndETan6kTBoZt-C-zNlo6qA", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517601472446?e=1681948800&v=beta&t=dm4feJ1yGivNpLTZFyERlScjDK1yk0gX_6ShmGXYEEI", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517601472446?e=1681948800&v=beta&t=JNACo_Su87LomF3rYr7Mi57y70naD06aowoO_avfrAg", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517601472446?e=1681948800&v=beta&t=4DIKc_aGOxp2XWxQhndyS9C7DZiwHNep1LykXnQ4uQo", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHPe8gU-jFboQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "k+wxIK3NTyGh6nbllYS8Lg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "[Inscription] Webinaire de pr\u00e9sentation de l'\u00e9tude Carbone 4 \"Le r\u00f4le des infrastructures dans la transition bas-carbone et l\u2019adaptation au changement climatique de la France\" - le 10 f\u00e9vrier \u00e0 11h \n\nLes infrastructures sont l\u2019ensemble des installations, ouvrages et \u00e9quipements permanents qui conditionnent l\u2019activit\u00e9 \u00e9conomique de la France, et dont les donneurs d\u2019ordre sont principalement la puissance publique. Elle sont ainsi la condition de nos modes de vie, et une pierre angulaire du bon fonctionnement de notre soci\u00e9t\u00e9.\n\nEn France m\u00e9tropolitaine, les usages associ\u00e9s aux infrastructures repr\u00e9sentent 50% de l\u2019empreinte carbone fran\u00e7aise (\u00e9missions territoriales et solde des \u00e9missions import\u00e9es - export\u00e9es).\n\nLes infrastructures sont \u00e9troitement li\u00e9es \u00e0 la d\u00e9rive climatique :\u00a0\n- Elles g\u00e9n\u00e8rent des \u00e9missions de gaz \u00e0 effet de serre sur une longue p\u00e9riode de temps, du fait de leur dur\u00e9e d\u2019exploitation.\n- Elles sont impact\u00e9es de fa\u00e7on croissante par le changement climatique : elles sont expos\u00e9es \u00e0 des risques physiques.\n- Les infrastructures de transport sont parmi les premi\u00e8res concern\u00e9es par les impacts physiques de la d\u00e9rive climatique.\n\u00a0\n\u2753Et demain ? Comment les infrastructures fran\u00e7aises doivent-elles se transformer afin d\u2019accompagner les \u00e9volutions des usages et contribuer \u00e0 la d\u00e9carbonation ainsi qu\u2019\u00e0 la r\u00e9silience du pays ?\n\n\u2753Comment les infrastructures sont-elles expos\u00e9es aux risques physiques li\u00e9s \u00e0 la d\u00e9rive climatique ?\n\n\u2753Quels travaux d\u2019adaptation des infrastructures existantes, et quelles nouvelles infrastructures d\u2019adaptation sont n\u00e9cessaires, afin de pr\u00e9venir les risques sociaux, humains et environnementaux ?\n\nNous aborderons ces \u00e9l\u00e9ments cl\u00e9s pour la transition bas-carbone et l'adaptation de la France, lors du webinaire de pr\u00e9sentation de l'\u00e9tude le f\u00e9vrier \u00e0 10h, en pr\u00e9sence de H\u00e9l\u00e8ne Chauvir\u00e9, manager chez Carbone 4, Jacques Portalier, et Joseph Hajjar, Chef du Bureau des \u00e9missions, projections et mod\u00e9lisations au sein du service Climat et Efficacit\u00e9 \u00c9nerg\u00e9tique du d\u00e9partement de la lutte contre l\u2019effet de serres de la DGEC\n\nConsulter l'\u00e9tude :\nhttps://lnkd.in/gAg8dtbr\n\nInscription au webinaire \u2935\ufe0f\nhttps://lnkd.in/gu6FQYsD" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6891415422613225472,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6891415423657607170,urn:li:activity:6891415423657607170,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 4, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6891415423657607170,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6891415423657607170,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6891415423657607170", + "threadId": "activity:6891415423657607170", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6891415423657607170", + "urn": "urn:li:activity:6891415423657607170", + "numComments": 4, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6891415423657607170", + "reactionTypeCounts": [ + { + "count": 51, + "reactionType": "LIKE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6891415423657607170", + "numLikes": 56, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6891415423657607170", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 56, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6895003034313662464", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6895003034313662464)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6895003034313662464)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_inscription-au-webinaire-le-r%C3%B4le-des-infrastructures-activity-6895003034313662464-1_fg?utm_source=share&utm_medium=member_desktop" + }, + { + "subActionsMenu": { + "title": "Who would you like to unfollow?", + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + } + ] + }, + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_ACTIONS", + "text": "Unfollow" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6895003033726435328", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6895003034313662464", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6895003034313662464,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6895003034313662464,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6895003033726435328", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "bigecpixti89ryliHtLp4A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6895003034313662464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6895003033726435328,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le 10 f\u00e9vrier \u00e0 11h Carbone 4 organise un webinaire pour pr\u00e9senter les r\u00e9sultats d'une \u00e9tude sur les infrastructures et la question climatique. \n\nOn met dans cette cat\u00e9gorie les r\u00e9seaux de transport (route, rail, air, mer), les r\u00e9seaux de t\u00e9l\u00e9com, les r\u00e9seaux \u00e9nerg\u00e9tiques (gaz, \u00e9lectricit\u00e9) et souvent les unit\u00e9s de production, les r\u00e9seaux d'eau, et parfois certains b\u00e2timents (stades, gares...).\n\nLeur construction et leur usage repr\u00e9sentent la moiti\u00e9 de notre empreinte carbone. Il n'est donc pas compl\u00e8tement inint\u00e9ressant de savoir comment les modifier et piloter !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6895003033726435328,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6895003034313662464,urn:li:activity:6895003034313662464,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 6, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6895003034313662464,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6895003034313662464,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6895003034313662464", + "threadId": "activity:6895003034313662464", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6895003034313662464", + "urn": "urn:li:activity:6895003034313662464", + "numComments": 7, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6895003034313662464", + "reactionTypeCounts": [ + { + "count": 73, + "reactionType": "LIKE" + }, + { + "count": 5, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6895003034313662464", + "numLikes": 83, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6895003034313662464", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 83, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "qGURa1VST96Oqj/XMvnv+Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6894911248329519104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6894911248329519104", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6894911248329519104)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6894911248329519104)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_quand-j%C3%A9tais-%C3%A9tudiant-jai-appris-quelques-activity-6894911248329519104-2Xjt?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6894911247578738688", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6894911248329519104", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6894911248329519104,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6894911248329519104,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6894911247578738688", + "excludedFromSeen": false, + "trackingData": { + "requestId": "f020de00-5729-4204-836f-19398855cd84", + "trackingId": "tpPHbLagzmVmd9pn0DqoHQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6894911248329519104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEVypp0TB6dWw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEVypp0TB6dWw", + "artifacts": [ + { + "width": 1060, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1643874941351?e=1679529600&v=beta&t=81Onth87EE465DOiRJN2AztYq2VDnhqFaQrTPfH-uzo", + "expiresAt": 1679529600000, + "height": 707 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1643874941361?e=1679529600&v=beta&t=mL0FEGMOwvGtz9hq8nNAahaLmnZI0cp1jheSzKKCeZQ", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1060, + "fileIdentifyingUrlPathSegment": "1280/0/1643874941361?e=1679529600&v=beta&t=rDGAi3vlsvNXZVOHK5pWXx_ijIKYP5XrHvmKotea_Jg", + "expiresAt": 1679529600000, + "height": 707 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1643874941361?e=1679529600&v=beta&t=X4VFSAtwriVso2iY-GzzftZ5p1Q67YM0M-4n_KK2A_Y", + "expiresAt": 1679529600000, + "height": 320 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1643874941361?e=1679529600&v=beta&t=_P5eeTiL98oG49mJLhCn43sMMWe2m3OgWMKlVTc6eus", + "expiresAt": 1679529600000, + "height": 106 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1643874941361?e=1679529600&v=beta&t=GE_pSEqbIwJTE3MDlGtcMO-YQL7hMCg3zskRsi_WhHg", + "expiresAt": 1679529600000, + "height": 533 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEVypp0TB6dWw/feedshare-shrink_" + }, + "displayAspectRatio": 0.6669811320754717 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6894911247578738688,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quand j'\u00e9tais \u00e9tudiant, j'ai appris quelques rudiments de programmation informatique. A cette \u00e9poque, le changement climatique n'\u00e9tait pas vraiment un sujet (je ne pense pas en avoir entendu parler ne serait-ce qu'une fois pendant mes \u00e9tudes), et la question de l'empreinte carbone du num\u00e9rique encore moins (alors que j'ai fait une partie de mes \u00e9tudes \u00e0 Telecom ParisTech).\n\nCe n'est d\u00e9sormais plus le cas, et des chercheurs portugais ont regard\u00e9 quelle \u00e9tait l'efficacit\u00e9 compar\u00e9e, en termes d'\u00e9nergie utilis\u00e9e, de vitesse d'ex\u00e9cution, et de m\u00e9moire utilis\u00e9e, de diff\u00e9rents langages de programmation informatique : https://lnkd.in/dyqfb9Qn\n\nPour concevoir un programme qui \"fait la m\u00eame chose\", on peut donc utiliser des langages de programmation diff\u00e9rents. Un programme est une s\u00e9rie d'instructions fournies \u00e0 l'ordinateur pour partir de donn\u00e9es d'entr\u00e9e et avoir des donn\u00e9es (diff\u00e9rentes) en sortie, et ces instructions peuvent donc \u00eatre \u00e9crites en divers \"langages\".\n\nLe lien avec le climat est le suivant :\n- plus un langage demande d'\u00e9nergie, plus cela signifie qu'il va conduire \u00e0 ce que l'ordinateur effectue un grand nombre d'instructions \u00e9l\u00e9mentaires pour arriver au m\u00eame r\u00e9sultat\n- plus il est lent, plus il va demander un ordinateur puissant (donc n\u00e9cessitant plus de mati\u00e8re et d'\u00e9nergie pour \u00eatre fabriqu\u00e9) pour arriver au m\u00eame r\u00e9sultat dans les m\u00eames temps\n- plus il est gourmand en m\u00e9moire, plus il va demander un stockage capacitaire (donc n\u00e9cessitant aussi plus de mati\u00e8re et d'\u00e9nergie pour \u00eatre fabriqu\u00e9) pour arriver au m\u00eame r\u00e9sultat.\n\nLe r\u00e9sultat est que les langages que j'ai appris quand j'\u00e9tais petit (C et Pascal) sont ceux qui demandent le moins de capacit\u00e9 mat\u00e9rielle pour arriver au r\u00e9sultat dans un temps donn\u00e9. En contrepartie ils demandent plus de capacit\u00e9 humaine, car ils faut des programmeurs capables de d\u00e9composer pas \u00e0 pas ce qu'ils veulent demander \u00e0 la machine, et derri\u00e8re les instructions devront \u00eatre \"compil\u00e9es\", c'est \u00e0 dire traduites en langage machine (des instructions encore plus \u00e9l\u00e9mentaires) en une seule passe.\n\nLes langages appris aujourd'hui dans les \u00e9coles d'ing\u00e9nieur (notamment Python) se classent beaucoup plus mal au niveau de ces performances. Ils sont dits interpr\u00e9t\u00e9s : le m\u00eame code peut \u00eatre utilis\u00e9 sur plusieurs ordinateurs diff\u00e9rents par un \"interpr\u00e9teur\" qui rajoute un \u00e9tage par rapport au compilateur. C'est plus souple pour l'utilisateur mais plus exigeant pour la machine.\n\nDans ce domaine comme dans beaucoup d'autres, nous avons donc augment\u00e9 la performance \u00e0 mesure que les moyens mat\u00e9riels (des ordinateurs plus puissants mais donc plus gourmands en ressources et en \u00e9nergie) augmentaient. Aller vers la sobri\u00e9t\u00e9 demandera aussi de revenir \u00e0 des langages de programmation plus \u00e9conomes... qu'ils faudra donc enseigner en priorit\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6894911247578738688,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6894911248329519104,urn:li:activity:6894911248329519104,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 627, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6894911248329519104,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6894911248329519104,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6894911248329519104", + "threadId": "activity:6894911248329519104", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6894911248329519104", + "urn": "urn:li:activity:6894911248329519104", + "numComments": 919, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6894911248329519104", + "reactionTypeCounts": [ + { + "count": 5046, + "reactionType": "LIKE" + }, + { + "count": 1009, + "reactionType": "INTEREST" + }, + { + "count": 968, + "reactionType": "MAYBE" + }, + { + "count": 101, + "reactionType": "PRAISE" + }, + { + "count": 51, + "reactionType": "EMPATHY" + }, + { + "count": 27, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6894911248329519104", + "numLikes": 7202, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6894911248329519104", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7202, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6894744142681845760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6894744142681845760", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6894744142681845760)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6894744142681845760)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_il-y-a-quelques-semaines-il-a-fallu-quun-activity-6894744142681845760-KqhN?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6894744141905870849", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6894744142681845760", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6894744142681845760,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6894744142681845760,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6894744141905870849", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "wApq6gVLS8QzWGCVkLLVuQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6894744142681845760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHw1Njx691X2Q", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHw1Njx691X2Q", + "artifacts": [ + { + "width": 1922, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1643835097707?e=1679529600&v=beta&t=RpPoh9iB-VJ38iwy5T9AAHpVTLtlE6ly7fq2VRzkOaY", + "expiresAt": 1679529600000, + "height": 1212 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1643835101213?e=1679529600&v=beta&t=obLqyjTApDTcz_URmR1h5eb9BFXjwKBOMEm2WOkFhYg", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1643835101213?e=1679529600&v=beta&t=TXQ7X4WI4Ok60H509aSqdB3e3GglMsGYl0H6CY3JAfE", + "expiresAt": 1679529600000, + "height": 807 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1643835101213?e=1679529600&v=beta&t=mTgOdFaJOMPG64AunCbzoingHI8ACfFto-VF8KI_n_c", + "expiresAt": 1679529600000, + "height": 303 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1643835101213?e=1679529600&v=beta&t=3PLPIy4cs15ycUdPfKp5sva30x1B4kljmLBolSB_TbU", + "expiresAt": 1679529600000, + "height": 101 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1643835101213?e=1679529600&v=beta&t=ASsjGxA-jWNRTPi33_vTI8vbOEe4ZhzkAIqkJoeAVFI", + "expiresAt": 1679529600000, + "height": 504 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHw1Njx691X2Q/feedshare-shrink_" + }, + "displayAspectRatio": 0.6305931321540063 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, website" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6894744141905870849,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 61, + "length": 19, + "miniProfile": { + "firstName": "Guillermo", + "lastName": "Fernandez", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAAzT7ABXfhgNdYXZjS-NQxu0FbmdGFBwjw", + "occupation": "I've read the last IPCC report, I am a Terrified Dad.Tomorrow will be worse than today, always worse, forever and ever.Unless we realize SSP1-1.9 - It's impossible? then we'll have a miracle", + "objectUrn": "urn:li:member:3362736", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAAzT7ABXfhgNdYXZjS-NQxu0FbmdGFBwjw", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1574151727930?e=1681948800&v=beta&t=TLSBDxRhXx2EzAVzOn--z0S80D9OpCTCKribdKaaoO8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1574151727930?e=1681948800&v=beta&t=sFNQa3jv775a0VhFV9VcGsreCZJ17aR3rQn-NKeuDyg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQEwMMqaH6YUKQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "gfernand", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1632849738663?e=1681948800&v=beta&t=2xs4WshnpZL006SZ2fwYyJKa6SBia0FjYnjfMkUTbbE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1632849738663?e=1681948800&v=beta&t=7KE5M46yKizRDsq1dfXbwrumzhnOx7EbobrdBFs5qMc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1632849738663?e=1681948800&v=beta&t=8BbCK5L4XbfP_vQiCUTAXJMOWYgiBiEmllrUNAkEkCY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1632849738663?e=1681948800&v=beta&t=zKb7EeaJBf_tz-VpdJhzkj2MSiAZsXD3gj7YARE90RU", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEZjs_t4C-b7g/profile-displayphoto-shrink_" + } + }, + "trackingId": "TBYZBv09R7irGIB3QbSScw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Il y a quelques semaines, il a fallu qu'un citoyen suisse - Guillermo Fernandez - se mette en gr\u00e8ve de la faim pour que le conseil f\u00e9d\u00e9ral (l'\u00e9quivalent de notre conseil des ministres, sauf qu'ils ne sont que 7) accepte de recevoir une formation sur les enjeux climatiques : https://lnkd.in/ehBc6e_5\n\nEn France, nous arriverons peut-\u00eatre au m\u00eame r\u00e9sultat gr\u00e2ce \u00e0 l'initiative d'un s\u00e9nateur, qui vient de d\u00e9poser un projet de loi comportant un article unique, proposant que les \u00e9lus prennent obligatoirement connaissance des r\u00e9sultats du GIEC dans le cadre de leur mandat : https://lnkd.in/ejznc62n\n\nFait \u00e0 noter, ce projet de loi ne vient pas du gouvernement, mais pas non plus des \u00e9cologistes (ou m\u00eame de la gauche). Il est par contre totalement en accord avec les propositions du Shift Project !\n\nJ'esp\u00e8re que l'int\u00e9r\u00eat sup\u00e9rieur de notre avenir primera sur le jeu partisan, ce qui n'est jamais gagn\u00e9 (j'esp\u00e8re que le s\u00e9nateur n'aura pas besoin de faire une gr\u00e8ve de la faim pour faire voter son projet de loi !)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6894744141905870849,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6894744142681845760,urn:li:activity:6894744142681845760,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 66, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6894744142681845760,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6894744142681845760,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6894744142681845760", + "threadId": "activity:6894744142681845760", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6894744142681845760", + "urn": "urn:li:activity:6894744142681845760", + "numComments": 95, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6894744142681845760", + "reactionTypeCounts": [ + { + "count": 2772, + "reactionType": "LIKE" + }, + { + "count": 269, + "reactionType": "PRAISE" + }, + { + "count": 139, + "reactionType": "APPRECIATION" + }, + { + "count": 33, + "reactionType": "MAYBE" + }, + { + "count": 33, + "reactionType": "EMPATHY" + }, + { + "count": 24, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6894744142681845760", + "numLikes": 3270, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6894744142681845760", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3270, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6894263084462997504,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6894263084462997504", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6894263084462997504)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6894263084462997504)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-su%C3%A8de-pr%C3%A9voit-denfouir-ses-d%C3%A9chets-nucl%C3%A9aires-activity-6894263084462997504-FLv_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6894263083766730753", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6894263084462997504", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6894263084462997504,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6894263084462997504,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6894263083766730753", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "N9Y8WwOvWaekm8FWvta9Rw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6894263084462997504,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7183000854627849183", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 612, + "fileIdentifyingUrlPathSegment": "800/0/1676527562746?e=1677240000&v=beta&t=Lrj_lP6oB1ufnNbWU7nLaLlPzCqdotnj4GlaUR-pTKA", + "expiresAt": 1677240000000, + "height": 306 + }, + { + "width": 612, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676527562746?e=1677240000&v=beta&t=MN8CCSAF3-klPSsDSG2U1CH2sLNNqz-GEpTSQT5-uko", + "expiresAt": 1677240000000, + "height": 306 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676527562747?e=1677240000&v=beta&t=QXQw2iBYzLyINWhJFb_dPRUN4iWQm7aB7RJJ0O4zmwI", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676527562747?e=1677240000&v=beta&t=0QHXw6jMW9GCe9KsIjl6h-tNgcH-KTwwJA0j6fxVCKU", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEk3d22Ke2LSg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "La suede prevoit d'enfouir ses dechets nucleaires pour 100.000 ans[reuters.com]" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7183000854627849183)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7183000854627849183)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "latribune.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La Su\u00e8de pr\u00e9voit d'enfouir ses d\u00e9chets nucl\u00e9aires \"pour 100.000 ans\" by latribune.fr", + "actionTarget": "https://www.latribune.fr/depeches/reuters/KBN2K123K/la-suede-prevoit-d-enfouir-ses-dechets-nucleaires-pour-100-000-ans.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La Su\u00e8de pr\u00e9voit d'enfouir ses d\u00e9chets nucl\u00e9aires \"pour 100.000 ans\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6894263083766730753,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans les inconv\u00e9nients souvent mis en avant en ce qui concerne la production \u00e9lectrique \u00e0 base de fission nucl\u00e9aire, il y a la question des d\u00e9chets, tr\u00e8s fr\u00e9quemment (sinon exclusivement !) pr\u00e9sent\u00e9e comme un probl\u00e8me sans solution. \n\nCe terme un peu g\u00e9n\u00e9rique de \"d\u00e9chets\" englobe en pratique des objets ou faits qui peuvent \u00eatre tr\u00e8s divers. \n\nL'origine des \"d\u00e9chets\" se trouve dans les assemblages qui sont retir\u00e9s du coeur du r\u00e9acteur apr\u00e8s qu'ils y aient s\u00e9journ\u00e9 une ann\u00e9e ou plus. Les assemblages neufs contiennent l'uranium enrichi qui a servi \u00e0 la r\u00e9action en cha\u00eene, et qui est pr\u00e9sent sous forme de pastilles d'oxyde d'uranium, log\u00e9es dans des tubes en alliage de zirconium (voir photo en commentaire).\n\nDans certains pays (dont la Su\u00e8de qui fait l'objet de l'article ci-dessous) les assemblages d\u00e9charg\u00e9s sont \"juste stock\u00e9s\" apr\u00e8s un traitement purement m\u00e9canique (transport, d\u00e9coupage en morceaux, \"enrobage\" dans des conteneurs). C'est ces assemblages que l'on appelle \"d\u00e9chets\".\n\nDans d'autres pays (dont la France) ces assemblages sont \"retrait\u00e9s\". Leur contenu est tri\u00e9 : d'un c\u00f4t\u00e9 les produits de fission (les noyaux qui apparaissent lorsque le noyau d'uranium se casse en deux lors de la fission) et les actinides mineurs (des \u00e9l\u00e9ments de num\u00e9ro atomique sup\u00e9rieur ou \u00e9gal \u00e0 89 et qui apparaissent dans le coeur par absorption de neutrons par l'uranium puis d\u00e9sint\u00e9grations radioactives). Ils constitueront les d\u00e9chets dits HALV (Haute Activit\u00e9 Vie Longue) qui concentrent l'essentiel de la radioactivit\u00e9 des d\u00e9chets mais repr\u00e9sentent seulement quelques % de la masse de ce qui est retir\u00e9 du coeur.\n\nD'un autre c\u00f4t\u00e9 on va r\u00e9cup\u00e9rer le plutonium et l'uranium, qui, en France, ne sont pas consid\u00e9r\u00e9s comme des d\u00e9chets : ils sont r\u00e9utilis\u00e9s dans des assemblages neufs.\n\nNos voisins du Nord, qui ne \"retraitent\" pas, donc (ce qui, du point de vue de l'\u00e9conomie de ressources, est dommage, puisque l'uranium extrait d'un coeur contient plus d'isotope 235 - environ 1% - que l'uranium naturel, et le plutonium peut aussi fournir de l'\u00e9nergie), viennent de d\u00e9cider d'enfouir les assemblages usag\u00e9s dans un site de stockage g\u00e9ologique. \n\nLa dur\u00e9e de stabilit\u00e9 qu'un stockage doit garantir effraie souvent. Pensez vous, 100.000 ans ! En fait il faut relativiser :\n- les volumes occup\u00e9s sont faibles. L'\u00e9nergie nucl\u00e9aire \u00e9tant tr\u00e8s dense, elle met en jeu de (tr\u00e8s) petites quantit\u00e9s de mati\u00e8re (rapport\u00e9es \u00e0 l'\u00e9nergie produite) et engendre donc de petites quantit\u00e9s de \"d\u00e9chets\" (toujours rapport\u00e9es \u00e0 l'\u00e9nergie produite) : https://lnkd.in/dBSxJZi\n- la g\u00e9ologie est une chose globalement stable sur des \u00e9chelles de temps bien plus longues. Par exemple le gaz naturel a pu rester des dizaines de millions d'ann\u00e9es confin\u00e9 dans des formations g\u00e9ologiques. Si la g\u00e9ologie peut emp\u00eacher un gaz - qui diffuse quand m\u00eame assez facilement - de se promener partout, elle peut a fortiori le faire pour de petits objets solides !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6894263083766730753,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6894263084462997504,urn:li:activity:6894263084462997504,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 109, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6894263084462997504,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6894263084462997504,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6894263084462997504", + "threadId": "activity:6894263084462997504", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6894263084462997504", + "urn": "urn:li:activity:6894263084462997504", + "numComments": 281, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6894263084462997504", + "reactionTypeCounts": [ + { + "count": 2228, + "reactionType": "LIKE" + }, + { + "count": 426, + "reactionType": "INTEREST" + }, + { + "count": 287, + "reactionType": "MAYBE" + }, + { + "count": 33, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "EMPATHY" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6894263084462997504", + "numLikes": 2993, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6894263084462997504", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2993, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6893908772478087168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6893908772478087168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6893908772478087168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6893908772478087168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_opinion-comment-rendre-le-num%C3%A9rique-compatible-activity-6893908772478087168-Z2Rn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6893908771916062720", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6893908772478087168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6893908772478087168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6893908772478087168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6893908771916062720", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "eEa6Wbx4VlxdXpQV3RHAMw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6893908772478087168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7482666413751003168", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676463345706?e=1677240000&v=beta&t=ge2KklDeSs7s4tUkEAmSWMEnZC9v26ds_EWdMLQgWyc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676463345706?e=1677240000&v=beta&t=Lfyp0aRvelJBsLKBw3HO257SdPb6RRwtHnD2cOaoZ8k", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676463345706?e=1677240000&v=beta&t=dDHe615KOYajGjNhhCx9SorblcheSE5vll4H4PBwcgY", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676463345706?e=1677240000&v=beta&t=nyk91Aaw-iBNcIPt1I6qawDsVuoLADEl_iIKPORodlw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFvXXZmrRJnog/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7482666413751003168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7482666413751003168)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Opinion | Comment rendre le num\u00e9rique compatible avec l'accord de Paris ? by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/cercle/opinion-comment-rendre-le-numerique-compatible-avec-laccord-de-paris-1382971" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Opinion | Comment rendre le num\u00e9rique compatible avec l'accord de Paris\u00a0?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6893908771916062720,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 431, + "length": 17, + "miniProfile": { + "firstName": "Maxime", + "lastName": "Efoui-Hess", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACKDr_IByV4iMUoOw4ku_cvvltV7yRe5nvA", + "occupation": "Chef de projet, The Shift Project", + "objectUrn": "urn:li:member:579055602", + "entityUrn": "urn:li:fs_miniProfile:ACoAACKDr_IByV4iMUoOw4ku_cvvltV7yRe5nvA", + "publicIdentifier": "maxime-efoui-hess-756b11141", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1570695672694?e=1681948800&v=beta&t=jS3vC2QTwN2cxPG8jjehalWPUUQTov4aTFHHrs6x5_8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1570695672694?e=1681948800&v=beta&t=-JLnbW6upj-t70SruKNxXl4jrfDnT1_0JjqHkqJARGM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1570695672694?e=1681948800&v=beta&t=0_ePdKrKABlz7sWkHcErcUqrDNoytwBNtL7sPTGaWJ8", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1570695672694?e=1681948800&v=beta&t=eqA3YXuL6hzq-p466PAVl3Rxs6m_gYid8iAJbtg_wpw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGR4JMNjW2jGA/profile-displayphoto-shrink_" + } + }, + "trackingId": "Uved84UYQmehnET7Z2EAvw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans le cadre de la reprise quotidienne de propositions du Plan de Transformation de l'Economie Fran\u00e7aise, le site des Echos \u00e9voque aujourd'hui le num\u00e9rique. \n\nL'occasion de rappeler que l'apparition du digital n'a pas permis de faire reculer les \u00e9missions plan\u00e9taires, qui ont continu\u00e9 \u00e0 cro\u00eetre comme avant apr\u00e8s qu'aient \u00e9t\u00e9 cr\u00e9\u00e9s Internet, les vid\u00e9os en ligne et les univers \"virtuels\".\n\nDans une vid\u00e9o disponible sur la page, Maxime Efoui-Hess, qui a largement contribu\u00e9 aux travaux du Shift Project sur le num\u00e9rique, rappelle les enjeux et surtout plaide pour que le d\u00e9ploiement du num\u00e9rique se fasse d\u00e9sormais avec une gouvernance modifi\u00e9e, pour que la soci\u00e9t\u00e9 n'ait pas en permanence un train de retard sur les concepteurs de dispositifs techniques.\n\nDe fait, tant que nous sommes (collectivement) passifs et que la soci\u00e9t\u00e9 ne donne pas de limite aux fournisseurs de mat\u00e9riels et de services, leur logique intrins\u00e8que sera toujours d'essayer d'empiler (sans gain) et non de substituer." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6893908771916062720,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6893908772478087168,urn:li:activity:6893908772478087168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 6, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6893908772478087168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6893908772478087168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6893908772478087168", + "threadId": "activity:6893908772478087168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6893908772478087168", + "urn": "urn:li:activity:6893908772478087168", + "numComments": 6, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6893908772478087168", + "reactionTypeCounts": [ + { + "count": 235, + "reactionType": "LIKE" + }, + { + "count": 17, + "reactionType": "INTEREST" + }, + { + "count": 12, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6893908772478087168", + "numLikes": 271, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6893908772478087168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 271, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6893829451382091776,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6893829451382091776", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6893829451382091776)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6893829451382091776)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_changement-climatique-en-quoi-lagriculture-activity-6893829451382091776-7fA7?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6893829450820042752", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6893829451382091776", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6893829451382091776,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6893829451382091776,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6893829450820042752", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "VhCWatiB2eY5vXEArgiGvw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6893829451382091776,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7211424493851511553", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676527631241?e=1677240000&v=beta&t=bVvC8JZf5LRqD7SV8XTzg3KugB-nW2kwjzBso9_6DSk", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676527631241?e=1677240000&v=beta&t=KOhWd42SKYuHuQ5b8kX2dlHZoSVtUgIC_d5MQb9WkoY", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676527631241?e=1677240000&v=beta&t=YMwWHOockUPQUhgoVAvKy_U4J5w_Du8WPDwiRnnsiH0", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676527631241?e=1677240000&v=beta&t=1da8jC0a0hB7_lp07xcjFKazDD8w5QMf23HkX2275vk", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEvsfYFlxehrg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7211424493851511553)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7211424493851511553)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Changement climatique : en quoi l'agriculture est un enjeu majeur pour notre environnement by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900119240-changement-climatique-en-quoi-l-agriculture-est-un-enjeu-majeur-pour-notre-environnement" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Changement climatique : en quoi l'agriculture est un enjeu majeur pour notre environnement" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6893829450820042752,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il est question d'un tiers des \u00e9missions humaines de gaz \u00e0 effet de serre quand on parle d'agriculture. Cela valait donc la peine d'en faire 4 minutes d'antenne, pour rappeler les processus qui sont en jeu, et qui ne sont pas concern\u00e9s (ou tr\u00e8s peu) par la \"transition \u00e9nerg\u00e9tique\".\n\nA la diff\u00e9rence des combustibles fossiles, o\u00f9 il est possible de \"monter tr\u00e8s haut\" dans l'empreinte carbone d'un individu s'il lui prend l'envie de se doter de gadgets particuli\u00e8rement \u00e9nergivores (un palace de milliers de m2 chauff\u00e9 au fioul ou climatis\u00e9 \u00e0 l'\u00e9lectricit\u00e9 au charbon, une fus\u00e9e pour aller faire joujou \u00e0 quelques dizaines de km de la terre, un gros Airbus transform\u00e9 en avion priv\u00e9...), les \u00e9missions par personne pour l'alimentation peuvent moins facilement monter jusqu'au ciel (sans mauvais jeu de mots), car, comme le disait Dassault, \"on ne peut pas manger 6 poulets par jour\".\n\nRiche ou pauvre, la taille de l'estomac est \u00e0 peu pr\u00e8s la m\u00eame, et le m\u00e9tabolisme de base d'un individu aussi. Ce qui fait beaucoup varier l'empreinte carbone de l'alimentation, c'est la part de viande et de produits animaux, qu'il est donc sage de baisser significativement si nous voulons limiter la pression sur l'environnement.\n\nLa \"mauvaise nouvelle\" est donc que les \u00e9missions dans ce secteur sont plus d\u00e9pendantes de la taille de la population que celles li\u00e9es aux combustibles fossiles. La \"moins mauvaise\", cependant, est que le m\u00e9thane, un des deux gaz \u00e0 effet de serre qui dominent dans le secteur agricole (l'autre est le protoxyde d'azote), est le seul qui s'\u00e9pure dans l'atmosph\u00e8re par un processus chimique. L'effet sur le r\u00e9chauffement - ou plus exactement son ralentissement - est donc bien plus rapide quand on baisse les \u00e9missions de m\u00e9thane que lorsque nous baissons les \u00e9missions de CO2. \n\nRappelons qu'il y a 1,5 milliards de bovins sur terre et que, selon les pays, 50% \u00e0 80% de la surface agricole (p\u00e2turages inclus) sert \u00e0 nourrir des animaux : diminuer les tailles de cheptel est donc une marge de manoeuvre importante pour baisser la pression environnementale, qu'il s'agisse de climat ou de biodiversit\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6893829450820042752,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6893829451382091776,urn:li:activity:6893829451382091776,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6893829451382091776,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6893829451382091776,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6893829451382091776", + "threadId": "activity:6893829451382091776", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6893829451382091776", + "urn": "urn:li:activity:6893829451382091776", + "numComments": 97, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6893829451382091776", + "reactionTypeCounts": [ + { + "count": 870, + "reactionType": "LIKE" + }, + { + "count": 73, + "reactionType": "INTEREST" + }, + { + "count": 38, + "reactionType": "MAYBE" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6893829451382091776", + "numLikes": 1004, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6893829451382091776", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1004, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6893582617564770304,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6893582617564770304", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6893582617564770304)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6893582617564770304)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_gaz-%C3%A9lectricit%C3%A9-t%C3%A9l%C3%A9coms-repensons-les-activity-6893582617564770304-yiWA?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6893582617011118080", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6893582617564770304", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6893582617564770304,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6893582617564770304,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6893582617011118080", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "ud4AnaQ9fmT7CiJoMn6Ipw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6893582617564770304,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8456864563492721173", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676283899516?e=1677240000&v=beta&t=vpxNeGTndFaAYq4KTjn1UyJG8FY0AmNOUZRJGqS01nE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676283899516?e=1677240000&v=beta&t=a1pPuFGUR1T04BzwY4clI1MZw4RvU137EtfkaHEuHck", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676283899516?e=1677240000&v=beta&t=lAi0nkl9ULP2e-0ZYK8FChch3ijznaeVicqM3gWZrKk", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676283899516?e=1677240000&v=beta&t=EYlTIERxUSJAbCisIpfMUGpEgU9vz0rAPJYkaj6sbjQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHoHZJnPhg5Fw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8456864563492721173)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8456864563492721173)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Gaz, \u00e9lectricit\u00e9, t\u00e9l\u00e9coms\u2026 Repensons les biens communs ! by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/gaz-electricite-telecoms-repensons-les-biens-communs-1382728" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Gaz, \u00e9lectricit\u00e9, t\u00e9l\u00e9coms\u2026 Repensons les biens communs\u00a0!" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6893582617011118080,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il nous faut un plan (dans les infrastructures essentielles) : c'est en gros le message de cette chronique d'Eric Le Boucher parue Vendredi dernier dans Les Echos. \n\nL'auteur fut pendant longtemps un grand d\u00e9fenseur d'une version tr\u00e8s \"lib\u00e9rale\" de l'\u00e9conomie. Il est donc d'autant plus int\u00e9ressant de noter que dans ce texte il conclut que cela ne fonctionne pas pour certains services essentiels.\n\nOn pourrait se dire que c'est \u00e9vident que cela ne marche pas et qu'il faut proc\u00e9der autrement. Mais cette \u00e9vidence n'est toujours pas parvenue aux oreilles de la DG Concurrence \u00e0 la Commission qui, pour les \u00e9chos (sans mauvais jeu de mots) que j'en ai, continue \u00e0 penser que c'est la bonne direction \u00e0 prendre. \n\nIl y a en effet une partie des r\u00e9gulateurs de l'\u00e9conomie pour lesquels un syst\u00e8me qui ne fonctionne pas n'est pas une preuve que la th\u00e9orie n'est pas fond\u00e9e, mais juste une preuve du fait qu'elle est mal appliqu\u00e9e. Et puis, comme toujours \u00e0 la Commission, les int\u00e9r\u00eats nationaux (dont ceux des pays antinucl\u00e9aires) sont ravis que le cadre \"casse\" (avec la complicit\u00e9 active des opposants fran\u00e7ais au nucl\u00e9aire) un syst\u00e8me nucl\u00e9aire int\u00e9gr\u00e9 fran\u00e7ais qui \u00e9tait en pratique sup\u00e9rieur aux autres.\n\nNous avons le choix : attendre je ne sais quel miracle qui remettra le syst\u00e8me d'aplomb \u00e0 l'avenir, en imaginant que l'on aura toujours un EDF sectoriel \u00e0 qui faire les poches en cas d'incendie (ce qui est \u00e9videmment un leurre). Ou bien, comme le sugg\u00e8re opportun\u00e9ment Eric Le Boucher, repartir des objectifs et repenser le syst\u00e8me en cons\u00e9quence.\n\nLa deuxi\u00e8me option suppose de sortir de notre adoration pour le \"Dieu March\u00e9\" (voir \u00e0 ce propos https://lnkd.in/d-vx4tP ) et de r\u00e9fl\u00e9chir \u00e0 la mani\u00e8re de renationaliser peu ou prou la colonne vert\u00e9brale du syst\u00e8me. D\u00e9p\u00eachons nous de le faire pendant que nous en avons encore la possibilit\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6893582617011118080,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6893582617564770304,urn:li:activity:6893582617564770304,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 50, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6893582617564770304,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6893582617564770304,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6893582617564770304", + "threadId": "activity:6893582617564770304", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6893582617564770304", + "urn": "urn:li:activity:6893582617564770304", + "numComments": 103, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6893582617564770304", + "reactionTypeCounts": [ + { + "count": 1247, + "reactionType": "LIKE" + }, + { + "count": 85, + "reactionType": "INTEREST" + }, + { + "count": 81, + "reactionType": "MAYBE" + }, + { + "count": 53, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6893582617564770304", + "numLikes": 1480, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6893582617564770304", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1480, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6893243141164462080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6893243141164462080", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6893243141164462080)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6893243141164462080)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_comment-adapter-l%C3%A9conomie-aux-enjeux-climatiques-activity-6893243141164462080-qxOi?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6893243140610830336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6893243141164462080", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6893243141164462080,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6893243141164462080,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6893243140610830336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "OzIxSFI6F9QiYU1YfWs1Dw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6893243141164462080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7061482894592109494", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676568190633?e=1677240000&v=beta&t=hpP7cyvRRaIBvkHaOvsGbaFkVWCEwmi--Pg9Q7LjzK8", + "expiresAt": 1677240000000, + "height": 453 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676568190633?e=1677240000&v=beta&t=Jyu-1qhxLZSOvcWXivJCt7g3hNcI8qv81H6_26cFsbE", + "expiresAt": 1677240000000, + "height": 680 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676568190634?e=1677240000&v=beta&t=-jcpYX5BAwDNTTZIPKEWy3jiqvTx5IKN9seYSqYrdOE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676568190634?e=1677240000&v=beta&t=23mXER536UktYgQlG58CZbWZY5bfJq6mDnVHHX79ww8", + "expiresAt": 1677240000000, + "height": 272 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQH4u1jZboDT9Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.56625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7061482894592109494)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7061482894592109494)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "franceinter.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Comment adapter l'\u00e9conomie aux enjeux climatiques? avec Jean-Marc Jancovici by franceinter.fr", + "actionTarget": "https://www.franceinter.fr/emissions/le-grand-face-a-face/le-grand-face-a-face-du-samedi-29-janvier-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Comment adapter l'\u00e9conomie aux enjeux climatiques? avec Jean-Marc Jancovici" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6893243140610830336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Au tour de France Inter dans le \"parcours m\u00e9diatique\" associ\u00e9 au plan de transformation de l'\u00e9conomie fran\u00e7aise : j'ai \u00e9t\u00e9 (pas m\u00e9chamment) \"pass\u00e9 sur le gril\" du \"Grand Face \u00e0 Face\" \u00e0 l'occasion de la sortie du livre qui r\u00e9sume ce plan. \n\nL'\u00e9mission \u00e9tant en 2 parties, celle qui me concerne (enfin concerne surtout le PTEF !) d\u00e9marre \u00e0 22 minutes et 22 secondes. \n\nBonne audition ! (c'est juste du son et plus ne serait pas n\u00e9cessaire)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6893243140610830336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6893243141164462080,urn:li:activity:6893243141164462080,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 47, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6893243141164462080,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6893243141164462080,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6893243141164462080", + "threadId": "activity:6893243141164462080", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6893243141164462080", + "urn": "urn:li:activity:6893243141164462080", + "numComments": 81, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6893243141164462080", + "reactionTypeCounts": [ + { + "count": 1371, + "reactionType": "LIKE" + }, + { + "count": 69, + "reactionType": "PRAISE" + }, + { + "count": 41, + "reactionType": "INTEREST" + }, + { + "count": 34, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6893243141164462080", + "numLikes": 1530, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6893243141164462080", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1530, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6892732077515567104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6892732077515567104", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6892732077515567104)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6892732077515567104)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-voies-%C3%A9conomiques-de-l%C3%A9cologie-avec-activity-6892732077515567104-WZk5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6892732076945154048", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6892732077515567104", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6892732077515567104,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6892732077515567104,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6892732076945154048", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "uFOV+BdlZoHKmiwfESY8kQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6892732077515567104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7397416010586505455", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676484413563?e=1677240000&v=beta&t=WuKgz3_Jn-4rXVnxNC_PnXbFZ8Icnn4Yn-g2tbXyyt0", + "expiresAt": 1677240000000, + "height": 530 + }, + { + "width": 838, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676484413563?e=1677240000&v=beta&t=RBdU9prHw9NJz6gZkZiiGzG7_JXNHJit-p8uvWZN1mU", + "expiresAt": 1677240000000, + "height": 556 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676484413564?e=1677240000&v=beta&t=ShqoCxe95uRqCSuwdtrd5ro-LzpceEPEIIhLYp9I0Jk", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676484413564?e=1677240000&v=beta&t=Yi1Vzmr02tp2H7e_2BUBYdcyhAzk2JrL3LoBiftLwA4", + "expiresAt": 1677240000000, + "height": 318 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGhmVPI9mIKiA/articleshare-shrink_" + }, + "displayAspectRatio": 0.6625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7397416010586505455)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7397416010586505455)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "franceculture.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les voies \u00e9conomiques de l'\u00e9cologie. Avec Jean-Marc Jancovici by franceculture.fr", + "actionTarget": "https://www.franceculture.fr/emissions/l-invite-e-des-matins/les-voies-economiques-de-l-ecologie-avec-jean-marc-jancovici" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les voies \u00e9conomiques de l'\u00e9cologie. Avec Jean-Marc Jancovici" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6892732076945154048,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A l'occasion de la sortie du livre qui le r\u00e9sume, le plan de transformation de l'\u00e9conomie fran\u00e7aise (dit PTEF) du Shift Project \u00e9tait hier matin sur France Culture, sous la forme d'une invitation de votre serviteur dans la matinale de Guillaume Erner.\n\nAutant le dire tout de suite : l'illustration ci-dessous est un peu trompeuse puisque, probablement pour compenser la premi\u00e8re fois o\u00f9 nous \u00e9tions ensemble dans le m\u00eame studio de la m\u00eame radio, il n'a \u00e9t\u00e9 question de nucl\u00e9aire que quelques tr\u00e8s courts instants et tout \u00e0 la fin de l'\u00e9mission :)\n\nPar contre, nous avons parl\u00e9 r\u00f4le de l'\u00e9nergie dans le monde, d\u00e9carbonation de l'agriculture, hausse du prix des carburants et de l'\u00e9lectricit\u00e9, ampleur du d\u00e9fi climatique, n\u00e9cessit\u00e9 d'un plan coh\u00e9rent ; bref en l'espace de 40 minutes nous avons fait un tour d'horizon n\u00e9cessairement partiel par rapport \u00e0 la complexit\u00e9 du sujet, mais dans un temps limit\u00e9 (m\u00eame si 40 minutes c'est tr\u00e8s tr\u00e8s long \u00e0 la radio !) il n'est \u00e9videmment pas possible de parler de tout.\n\nLe Monde sans Fin a aussi \u00e9t\u00e9 \u00e9voqu\u00e9, ce qui est assez logique puisque, \"vu du profane\", les deux ouvrages se compl\u00e8tent : la BD pose le cadre puis le d\u00e9fi, et le PTEF propose la mani\u00e8re de s'y attaquer." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6892732076945154048,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6892732077515567104,urn:li:activity:6892732077515567104,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6892732077515567104,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6892732077515567104,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6892732077515567104", + "threadId": "activity:6892732077515567104", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6892732077515567104", + "urn": "urn:li:activity:6892732077515567104", + "numComments": 45, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6892732077515567104", + "reactionTypeCounts": [ + { + "count": 825, + "reactionType": "LIKE" + }, + { + "count": 48, + "reactionType": "PRAISE" + }, + { + "count": 40, + "reactionType": "INTEREST" + }, + { + "count": 21, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6892732077515567104", + "numLikes": 943, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6892732077515567104", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 943, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6892405502085537792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6892405502085537792", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6892405502085537792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6892405502085537792)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-monde-sans-fin-quand-les-auteurs-de-activity-6892405502085537792-zXmh?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6892405501510901760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6892405502085537792", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6892405502085537792,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6892405502085537792,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6892405501510901760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "CIMSmc6TvK0STPJNax+d0Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6892405502085537792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8710064461688142989", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675990582456?e=1677240000&v=beta&t=1vvRxGiUJ4eRtuI73nwJ_sHO-CEiW-1iK-v9JrUNBB0", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675990582456?e=1677240000&v=beta&t=Uq7HWDOgmLpDLlN7EMpZGJ5eW2RIw58j9phF3SLNszA", + "expiresAt": 1677240000000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675990582456?e=1677240000&v=beta&t=hcJMxptq_Rai9e2pcAJKphNmRCCIiUH-Kq_H8GQaYaQ", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675990582456?e=1677240000&v=beta&t=mSml3FF_0vtgLmd-nJkBAcVlAcbRGyf2oM2c2x8B-mA", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQH-uyTRsve6Kg/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le monde sans fin est une bande dessin\u00e9e sur le changement climatique qui est une des meilleures ventes en France. Le ph\u00e9nom\u00e8ne des BD qui s\u2019inspirent de la r\u00e9alit\u00e9 a le vent en poupe." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8710064461688142989)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8710064461688142989)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "francetvinfo.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \"Le Monde sans fin\" : quand les auteurs de BD planchent sur l'actu by francetvinfo.fr", + "actionTarget": "https://www.francetvinfo.fr/economie/emploi/metiers/art-culture-edition/culture-quand-les-auteurs-de-bd-planchent-sur-l-actu_4926141.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\"Le Monde sans fin\" : quand les auteurs de BD planchent sur l'actu" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6892405501510901760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il n'\u00e9tait que temps (et ce n'\u00e9tait que justice) : pour une fois c'est Christophe Blain qui est \u00e0 l'honneur dans un sujet m\u00e9diatique sur Le Monde sans Fin, dans ce reportage de France Info sur la BD \"d'actualit\u00e9\".\n\nLe lecteur interrog\u00e9 dit exactement ce que nous avions en t\u00eate en faisant cet ouvrage (d\u00e9sormais de nouveau disponible !) : que c'est \"plus p\u00e9dagogique\" qu'un essai ordinaire, et du reste le nombre d'exemplaires d\u00e9j\u00e0 mis en circulation ne lui donne pas tort, puisqu'un \"essai qui marche tr\u00e8s bien\" avec \"juste du texte\" diffuse plut\u00f4t \u00e0 50.000 exemplaires.\n\nCet ouvrage reste tr\u00e8s compl\u00e9mentaire du \"plan de transformation de l'\u00e9conomie fran\u00e7aise\" qui vient de sortir chez Odile Jacob (https://lnkd.in/ekHwBzqi ). L'id\u00e9al est de lire la BD puis le plan !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6892405501510901760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6892405502085537792,urn:li:activity:6892405502085537792,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 43, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6892405502085537792,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6892405502085537792,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6892405502085537792", + "threadId": "activity:6892405502085537792", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6892405502085537792", + "urn": "urn:li:activity:6892405502085537792", + "numComments": 54, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6892405502085537792", + "reactionTypeCounts": [ + { + "count": 970, + "reactionType": "LIKE" + }, + { + "count": 74, + "reactionType": "PRAISE" + }, + { + "count": 30, + "reactionType": "EMPATHY" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6892405502085537792", + "numLikes": 1104, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6892405502085537792", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1104, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6891997890286276608,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6891997890286276608", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6891997890286276608)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6891997890286276608)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_opinion-il-nous-faut-un-plan-pour-d%C3%A9carboner-activity-6891997890286276608-DN9d?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6891997889342582784", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6891997890286276608", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6891997890286276608,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6891997890286276608,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6891997889342582784", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "jsVL3wqHLkOe3rqQz7FU9w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6891997890286276608,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8903960955317462283", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675958964891?e=1677240000&v=beta&t=v9BPwTu18P3gFbc9zhvGIpuQwD29LXftMJUbbYv2XUU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675958964891?e=1677240000&v=beta&t=QX0qfIqWo7juWzYBFvNtZIbAt2gqBv9Y0MzQ5ViK0cw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675958964891?e=1677240000&v=beta&t=LOlKbhQzpk3LYU39pQpbLPscRJAvVw5ArxT12USCHPU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675958964891?e=1677240000&v=beta&t=JMEWN3ew0FEKUOzSeTfi5QNwUW_rBIQdhL1JEcwMVxM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHbENSOfZF32Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8903960955317462283)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8903960955317462283)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Opinion | Il nous faut un plan pour d\u00e9carboner la France by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/cercle/opinion-il-nous-faut-un-plan-pour-decarboner-la-france-1381876" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Opinion | Il nous faut un plan pour d\u00e9carboner la France" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6891997889342582784,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Au moment du premier confinement du au covid, en mars 2020, The Shift Project a fait le constat que, en cas d'impr\u00e9vu significatif, il n'tait pas possible au gouvernement d'en profiter pour faire repartir l'activit\u00e9 du pays sur des bases beaucoup plus \"d\u00e9carbonantes\", parce que le jeu de mesures op\u00e9rationnelles permettant de le faire n'existait pas.\n\nNous nous sommes alors lanc\u00e9s dans une aventure qui est celle de beaucoup d'entrepreneurs : concevoir le produit que nous aurions aim\u00e9 trouver sur \u00e9tag\u00e8res \u00e0 ce moment l\u00e0, \u00e0 savoir un plan op\u00e9rationnel complet permettant de cadrer et enclencher une d\u00e9carbonation syst\u00e9mique et coh\u00e9rente de notre \u00e9conomie. \n\nEt, plus pr\u00e9cis\u00e9ment, l'enjeu \u00e9tait de proposer au/\u00e0 la prochain(e) locataire de l'Elys\u00e9e les mesures \u00e0 prendre pour que, \u00e0 la fin de son mandat, les \u00e9missions du pays (et son empreinte carbone) aient baiss\u00e9 d'environ 25%, c'est-\u00e0-dire en ligne avec le rythme de baisse qui est \"physiquement\" demand\u00e9 par l'accord de Paris.\n\nApr\u00e8s 2 ans de travail ayant mobilis\u00e9 des centaines de personnes, cela prend forme. Plus exactement cela prend la forme d'un ouvrage publi\u00e9 chez Odile Jacob (https://lnkd.in/ekHwBzqi ), et d'un site web intitul\u00e9 \"il nous faut un plan\" (https://lnkd.in/esiqHkbf ) reprenant toutes les propositions mais aussi des \u00e9l\u00e9ments additionnels, comme des interviews vid\u00e9o des chefs de projet ou des infographies que nous esp\u00e9rons didactiques.\n\nLes Echos ont accept\u00e9 de reprendre, dans la rubrique id\u00e9es, les \"bonnes feuilles\" de notre livre pour nous aider \u00e0 mettre nos propositions en avant : https://lnkd.in/eeAuS8hn Cette reprise s'\u00e9talera sur plusieurs jours, avec un th\u00e8me par jour.\n\nNos propositions ne sont probablement pas parfaites, mais repr\u00e9sentent tout aussi probablement le travail le plus exhaustif r\u00e9alis\u00e9 \u00e0 ce jour dans notre pays (et probablement ailleurs, puisque nous avons d\u00e9j\u00e0 des demandes de pays \u00e9trangers pour reproduire la m\u00e9thode) sur les mesures op\u00e9rationnelles permettant la d\u00e9carbonation du pays tout en pr\u00e9servant l'emploi. Nous souhaitons donc que tous les d\u00e9cideurs \u00e9conomiques, syndicaux et et politiques en prennent connaissance, et nous serons heureux de r\u00e9pondre \u00e0 leurs questions.\n\nJe rappelle qu'un \u00e9v\u00e9nement de pr\u00e9sentation en ligne aura lieu le 7 f\u00e9vrier prochain ; inscriptions et renseignements sur https://lnkd.in/e8m9JS_S\n\nBonne lecture !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6891997889342582784,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6891997890286276608,urn:li:activity:6891997890286276608,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 117, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6891997890286276608,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6891997890286276608,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6891997890286276608", + "threadId": "activity:6891997890286276608", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6891997890286276608", + "urn": "urn:li:activity:6891997890286276608", + "numComments": 247, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6891997890286276608", + "reactionTypeCounts": [ + { + "count": 3612, + "reactionType": "LIKE" + }, + { + "count": 588, + "reactionType": "PRAISE" + }, + { + "count": 245, + "reactionType": "MAYBE" + }, + { + "count": 95, + "reactionType": "APPRECIATION" + }, + { + "count": 79, + "reactionType": "INTEREST" + }, + { + "count": 38, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6891997890286276608", + "numLikes": 4657, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6891997890286276608", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4657, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6891644280977330176,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6891644280977330176", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6891644280977330176)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6891644280977330176)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_apr%C3%A8s-le-gaz-apr%C3%A8s-l%C3%A9lectricit%C3%A9-revoici-activity-6891644280977330176-aGrZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6891644280205557760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6891644280977330176", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6891644280977330176,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6891644280977330176,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6891644280205557760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "s7qs/CV3OuI5yc/3Ho4UjA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6891644280977330176,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6891644280205557760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s le gaz, apr\u00e8s l'\u00e9lectricit\u00e9, (re)voici les carburants ! \n\nD\u00e8s la crise du covid, ce qui est en train de se passer \u00e9tait pour partie \u00e9crit. Reprenons : d\u00e9but 2020, la demande de p\u00e9trole plonge. Du coup les prix aussi. Cons\u00e9quence, les investissements dans l'exploration-production p\u00e9troli\u00e8re (et gazi\u00e8re, c'est la m\u00eame) sont divis\u00e9s par 2. Cons\u00e9quence un peu plus tard : la production d'or noir n'arrive pas \u00e0 suivre le regain de la demande, et les prix augmentent. \n\nPour autant, un baril \u00e0 85 dollars - c'est haut mais loin du maximum \u00e0 130 en moyenne sur 2011 - ne suffit pas \u00e0 expliquer que le prix \u00e0 la pompe atteigne des records. Deux autres \u00e9l\u00e9ments ont contribu\u00e9 :\n\n- l'euro a eu tendance \u00e0 s'affaiblir face au dollar. Cela rench\u00e9rit les importations de p\u00e9trole (qui s'ach\u00e8te en dollars) \u00e0 cout du baril constant,\n\n- la fiscalit\u00e9 sp\u00e9cifique sur les carburants a augment\u00e9, en particulier celle sur le gazole qui a cru de 50% environ de 2014 \u00e0 2018, dans le cadre d'un rattrapage essence-gazole.\n\nNotons qu'une partie des taxes sp\u00e9cifiques sur les carburants finance de mani\u00e8re affect\u00e9e le d\u00e9veloppement des ENR \u00e9lectriques, qui ne contribuent pourtant pas directement \u00e0 diminuer la d\u00e9pendance aux carburants (il eut \u00e9t\u00e9 plus pertinent, peut-\u00eatre, de financer le d\u00e9veloppement du v\u00e9lo ou des pompes \u00e0 chaleur - qui n'\u00e9vitent pas de carburant mais \u00e9vitent du fioul - avec le m\u00eame argent...).\n\nSi les carburants sont trop chers \u00e0 cause du prix du p\u00e9trole, \u00e0 bref d\u00e9lai nous ne pouvons rien faire d'autre que subir. De m\u00eame, le taux de change euro-dollar n'est pas tellement modifiable par le gouvernement fran\u00e7ais au moment o\u00f9 le p\u00e9trole vaut trop cher.\n\nEnfin dans le domaine du p\u00e9trole il n'y a pas de soci\u00e9t\u00e9 publique dont le gouvernement puisse faire les poches, comme cela vient d'\u00eatre le cas avec EDF. \n\nNe reste donc qu'une baisse de la fiscalit\u00e9. Mais la TICPE est devenue un imp\u00f4t de rendement, c'est-\u00e0-dire qu'elle est structurellement n\u00e9cessaire \u00e0 l'\u00e9quilibre des finances publiques. Tout baisse, m\u00eame modeste, se chiffre imm\u00e9diatement en beaucoup de milliards en moins. Notons au passage que cela signifie que la suppression des combustibles fossiles dans les transports obligera l'Etat \u00e0 trouver d'autres imp\u00f4ts en remplacement, et pas pour 3 centimes. C'est un des inconv\u00e9nients d'une fiscalit\u00e9 dissuasive (la taxe carbone) quand son produit devient n\u00e9cessaire au budget : faire dispara\u00eetre la nuisance pose un probl\u00e8me aux finances publiques !\n\nEn outre, une telle baisse (de la fiscalit\u00e9) fait d\u00e9sordre face \u00e0 un discours de \"neutralit\u00e9 carbone\" dont la traduction en actes est d\u00e9j\u00e0 faiblarde. \n\nNous sommes donc un peu coinc\u00e9s. Comme pour l'\u00e9lectricit\u00e9 et le gaz, ce n'est pas au moment o\u00f9 se d\u00e9clare l'incendie que l'on construit le plan d'\u00e9vacuation. Ce dernier demande... un plan, et des d\u00e9cennies d'efforts continus ensuite. A d\u00e9faut, la baisse subie de la production de p\u00e9trole engendrera de plus en plus d'\u00e9pisodes de cette nature, sans rem\u00e8de \u00e9vident \u00e0 court terme." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6891644280205557760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6891644280977330176,urn:li:activity:6891644280977330176,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 87, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6891644280977330176,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6891644280977330176,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6891644280977330176", + "threadId": "activity:6891644280977330176", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6891644280977330176", + "urn": "urn:li:activity:6891644280977330176", + "numComments": 167, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6891644280977330176", + "reactionTypeCounts": [ + { + "count": 2390, + "reactionType": "LIKE" + }, + { + "count": 357, + "reactionType": "INTEREST" + }, + { + "count": 230, + "reactionType": "MAYBE" + }, + { + "count": 69, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6891644280977330176", + "numLikes": 3068, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6891644280977330176", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3068, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6891287427730739201,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6891287427730739201", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6891287427730739201)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6891287427730739201)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_energie-transport-p%C3%A9trochimie-les-d%C3%A9fis-activity-6891287427730739201-IzvS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6891287427135135748", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6891287427730739201", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6891287427730739201,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6891287427730739201,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6891287427135135748", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "/hQUvtpGXwUfiChcdvuwAg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6891287427730739201,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7165116577676614878", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675856388352?e=1677240000&v=beta&t=5z2L0zdL4MzWSl9v8_baBuEEBLdGnMvavchqcYcqBR8", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675856388352?e=1677240000&v=beta&t=UQPEuv9nBwxLfgEyPW88cqZ0_IHoHwCXnNYdpwlr9XU", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675856388352?e=1677240000&v=beta&t=npMwQauUDDg5ARrstOIFTro_qp7FkBq8gnlnPawK66Y", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675856388352?e=1677240000&v=beta&t=UFLQaESnExuLotJ-LqAWpcZFVDJ1gdrwql2fUqd57YE", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGEfahZpeQLeg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7165116577676614878)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7165116577676614878)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Energie, transport, p\u00e9trochimie\u2026 Les d\u00e9fis du \u00ab z\u00e9ro p\u00e9trole \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/economie/article/2022/01/16/energie-transport-petrochimie-les-defis-du-zero-petrole_6109715_3234.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Energie, transport, p\u00e9trochimie\u2026 Les d\u00e9fis du \u00ab\u00a0z\u00e9ro p\u00e9trole\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6891287427135135748,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Une fois n'est pas coutume : Le Monde publie un long article sur l'\u00e9nergie... o\u00f9 il n'est pas question de nucl\u00e9aire ni d'\u00e9olien. Il y est question uniquement de p\u00e9trole, dont le quotidien rappelle, \u00e0 raison, qu'il reste la premi\u00e8re source de \"croquettes pour machines\" (ou plut\u00f4t de bibine pour machines !) sur la plan\u00e8te Terre.\n\nCet article cite explicitement le \"rapport de l'AIE\" (en fait le World Energy Outlook) de 2008 qui indiquait que le pic de production du p\u00e9trole conventionnel a \u00e9t\u00e9 franchi en 2008, ceci expliquant peut-\u00eatre cela, \u00e0 savoir que certains pays de l'OPEP n'arrivent plus, d\u00e8s \u00e0 pr\u00e9sent, \u00e0 produire au niveau de leur quota, et que le prix de l'or noir va d\u00e9sormais se mettre \u00e0 \"faire n'importe quoi\" de plus en plus souvent.\n\nCet article rappelle aussi que, outre qu'il repr\u00e9sente l'\u00e9nergie la plus commode \u00e0 utiliser (dense par unit\u00e9 de volume et liquide), le p\u00e9trole est aussi une mati\u00e8re premi\u00e8re que l'on va retrouver dans une quantit\u00e9 consid\u00e9rable d'objets du quotidien, du plastique des ustensiles de cuisine \u00e0 celui des ch\u00e2ssis de fen\u00eatre, des gaines de c\u00e2bles \u00e9lectriques aux chaussures de sport et aux brosses \u00e0 dent, des capots de tondeuse aux cosm\u00e9tiques et au bitume des routes, des pales d'\u00e9oliennes aux montures de lunettes et aux bougies pour souper en amoureux.... \n\nPar quoi le remplacer ? Par de l'\u00e9lectricit\u00e9 dans la mobilit\u00e9, certes, mais avec la quantit\u00e9 de moteurs \u00e0 explosion que nous avons en circulation (1 milliard de voitures particuli\u00e8res d'une tonne ou plus sont en circulation dans le monde, par exemple, sans parler des camions, bateaux, avions...) nous allons buter sur un probl\u00e8me d'ordre de grandeur pour d\u00e9ployer des batteries, des bornes de recharge et des moyens de production \u00e9lectrique bas carbone dans les d\u00e9lais. \n\nPar de la chimie \u00e0 partir de biomasse pour les plastiques, certes, mais cette biomasse va entrer en comp\u00e9tition avec celle requise pour les mat\u00e9riaux de structure devant remplacer acier et ciment (eux aussi produits avec des combustibles fossiles !), avec la production de nourriture (devenant moins facile avec moins de combustibles fossiles qui produisent engrais, m\u00e9canisation, et phytosanitaires), et avec la biodiversit\u00e9 (qui suppose de ne rien cultiver du tout). \n\nL'article ne le dit pas explicitement, mais le sugg\u00e8re n\u00e9anmoins, et d'autant plus qu'il parle de pouvoir d'achat : une partie sera remplac\u00e9e par... rien. Cela s'appellera, selon la mani\u00e8re dont nous le g\u00e8rerons, de la sobri\u00e9t\u00e9 ou de la pauvret\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6891287427135135748,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6891287427730739201,urn:li:activity:6891287427730739201,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 59, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6891287427730739201,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6891287427730739201,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6891287427730739201", + "threadId": "activity:6891287427730739201", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6891287427730739201", + "urn": "urn:li:activity:6891287427730739201", + "numComments": 153, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6891287427730739201", + "reactionTypeCounts": [ + { + "count": 1870, + "reactionType": "LIKE" + }, + { + "count": 252, + "reactionType": "INTEREST" + }, + { + "count": 227, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6891287427730739201", + "numLikes": 2394, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6891287427730739201", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2394, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6890966365772017664,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6890966365772017664", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6890966365772017664)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6890966365772017664)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_net-zero-insurers-uncovernew-climate-adversary-activity-6890966365772017664-uCb6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6890966365151260672", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6890966365772017664", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6890966365772017664,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6890966365772017664,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6890966365151260672", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "AS2I0KQjYQWtxFfg2Z/A3w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6890966365772017664,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6955880163073397817", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676310673944?e=1677240000&v=beta&t=9kFwimxQTYRdCA7hqfY4RZKIwi5XQJ3jl971doIhrDc", + "expiresAt": 1677240000000, + "height": 524 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676310673944?e=1677240000&v=beta&t=rUmA8Uh0eTr24HwVT4lSaaU-dtX0A1fEahzJe_Cd57Q", + "expiresAt": 1677240000000, + "height": 786 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676310673944?e=1677240000&v=beta&t=kjb-tXAybW-n-9XjQSspX7eFfPeyDeNi_Go5ZQNpE9A", + "expiresAt": 1677240000000, + "height": 104 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676310673944?e=1677240000&v=beta&t=4HAUQ1rNImbUUWCEKTALgd_FDcMFLv5ZqchG6VmRqSE", + "expiresAt": 1677240000000, + "height": 314 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFmpvkRlCOPfQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.655 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6955880163073397817)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6955880163073397817)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "bloomberg.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Net-Zero Insurers Uncover New Climate Adversary in Antitrust Law by bloomberg.com", + "actionTarget": "https://www.bloomberg.com/news/articles/2022-01-19/net-zero-insurance-coal-exit-plans-impeded-by-antitrust-laws" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Net-Zero Insurers Uncover\u00a0New Climate Adversary in\u00a0Antitrust Law" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6890966365151260672,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Une partie significative des investisseurs - les fameux qui placent leur argent via les march\u00e9s financiers - sont des assureurs. Ces entreprises ont deux activit\u00e9s :\n- elles couvrent les assur\u00e9s contre les risques \"d'accidents de la vie\" (ce qui s'appelle en fran\u00e7ais l'IARD : Incendies Accidents Risques Divers). C'est dans cette cat\u00e9gorie que l'on va trouver les assurances habitation, automobile, responsabilit\u00e9 civile des individus et des entreprises, risques li\u00e9s \u00e0 la pratique d'un sport, l'assurance d\u00e9c\u00e8s, etc.\n- elles g\u00e8rent l'\u00e9pargne des assur\u00e9s (on utilise le m\u00eame terme).\n\nL'argent plac\u00e9 par ces entreprises d'assurance correspond aux primes per\u00e7ues dans le premier cas (argent qui sera pour partie revers\u00e9 aux personnes ayant eu un sinistre), et \u00e0 l'\u00e9pargne dans le second (par exemple quand vous souscrivez une assurance vie, en pratique c'est la constitution d'une \u00e9pargne et l'assureur g\u00e8re cette derni\u00e8re pour vous ; vous devenez donc un rouage des \"march\u00e9s financiers\" !).\n\nDans les mesures qui ont \u00e9t\u00e9 imagin\u00e9es par le monde financier pour d\u00e9courager les activit\u00e9s qui nuisent par trop au climat, il y a la question du d\u00e9sinvestissement (ne plus utiliser les sommes investies pour acheter des actions ou obligations de soci\u00e9t\u00e9s qui ont des activit\u00e9s par trop \"nuisibles\"). Cette action est parfois mise en avant par les assureurs pour justifier de la compatibilit\u00e9 de leurs placements avec la question climatique. \n\nMais une deuxi\u00e8me action qui est \u00e0 la main des m\u00eames entit\u00e9s est de refuser d'assurer des activit\u00e9s qui leurs semblent cr\u00e9er trop de risques pour la collectivit\u00e9. L'assureur a en effet cette possibilit\u00e9 - m\u00eame si elle est encadr\u00e9e par la loi - de refuser d'assurer : on le voit par exemple pour l'assurance auto des tr\u00e8s mauvais conducteurs. \n\nDe m\u00eame, il est possible de ne pas assurer en responsabilit\u00e9 civile une entreprise qui nuit par trop au climat, auquel cas cette entreprise pourra se retrouver en situation de ne plus pouvoir exercer. C'est donc potentiellement une arme puissante. Mais cette action n'est efficace que si les assureurs se mettent d'accord entre eux pour cela. Or, aux USA au moins, il semblerait que cela contrevienne aux lois antitrust de cr\u00e9er une alliance qui aille en ce sens. C'est de l'entente sur le dos de la libre concurrence ! \n\nCe ne serait malheureusement pas le seul cas de figure o\u00f9 le dispositif l\u00e9gal en vigueur emp\u00eache de lutter efficacement contre le changement climatique. De nombreuses dispositions de protection des investissements ou de la libert\u00e9 de commercer ou de s'\u00e9tablir prot\u00e8gent de fait des activit\u00e9s qui ne sont pas compatibles avec la baisse rapide des pressions environnementales. \n\nAu fond ce n'est pas tr\u00e8s \u00e9tonnant : l'\u00e9conomie n'etant qu'un vaste syst\u00e8me physique de transformation des ressources naturelles avec l'aide d'\u00e9nergie (laquelle pose probl\u00e8me), tout cadre l\u00e9gal qui \"favorise l'\u00e9conomie\" rend difficile de limiter dans le m\u00eame temps les nuisances li\u00e9es \u00e0 l'\u00e9nergie..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6890966365151260672,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6890966365772017664,urn:li:activity:6890966365772017664,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6890966365772017664,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6890966365772017664,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6890966365772017664", + "threadId": "activity:6890966365772017664", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6890966365772017664", + "urn": "urn:li:activity:6890966365772017664", + "numComments": 41, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6890966365772017664", + "reactionTypeCounts": [ + { + "count": 340, + "reactionType": "LIKE" + }, + { + "count": 58, + "reactionType": "INTEREST" + }, + { + "count": 51, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6890966365772017664", + "numLikes": 452, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6890966365772017664", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 452, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6890323258114138112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6890323258114138112", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6890323258114138112)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6890323258114138112)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-publie-son-nouveau-rapport-sur-la-activity-6890323258114138112-Etpb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6890323257459838976", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6890323258114138112", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6890323258114138112,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6890323258114138112,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6890323257459838976", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "Z3ztnzPyfoKn32Tm7FdO4w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6890323258114138112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9043219359603632224", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675680869585?e=1677240000&v=beta&t=DrPl0n9OeevNlzD-s6s6gHiXyunKejFjtrT_R0bv-G0", + "expiresAt": 1677240000000, + "height": 599 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675680869585?e=1677240000&v=beta&t=TiNfRVHf5zFAawOtTk9y5-GgRiLE5yK1kcS-egJ8l8A", + "expiresAt": 1677240000000, + "height": 611 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675680869585?e=1677240000&v=beta&t=HpyOCtx5A_o_t_vfK58RdQfGaoctvK4sewFPWIJzf9g", + "expiresAt": 1677240000000, + "height": 119 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675680869586?e=1677240000&v=beta&t=Wolo_Es-s2XGN3NOco366QRdGMz9MRxNpmVHgQf0Y-4", + "expiresAt": 1677240000000, + "height": 359 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEGnsQo9NivrQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.74875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9043219359603632224)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9043219359603632224)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift publie son nouveau rapport sur la d\u00e9carbonation de l'industrie by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/rapport-final-decarboner-lindustrie-ptef/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift publie son nouveau rapport sur la d\u00e9carbonation de l'industrie" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6890323257459838976,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans un monde qui doit devenir neutre en carbone, aurons nous encore de l'acier, dont la production \u00e9met actuellement 2 tonnes de CO2 par tonne de m\u00e9tal (la production d'acier utilise environ 15% du charbon mondial) ?\n\nAurons nous encore du ciment, dont la production \u00e9met actuellement environ 0,7 tonne de CO2 par tonne de ciment ? Aurons nous du plastique (de 1 \u00e0 2 tonnes de CO2 par tonne de plastique en ordre de grandeur) ? Des engrais ? (ils sont actuellement faits \u00e0 partir d'hydrog\u00e8ne lui-m\u00eame obtenu \u00e0 partir de gaz ou d'autres combustibles fossiles, avec 10 tonnes de CO2 par tonne d'hydrog\u00e8ne au minimum). Aurons nous encore des robots m\u00e9nagers, des chaussettes, des pots de yaourt ?\n\nC'est \u00e0 ces questions que r\u00e9pond le rapport sur l'industrie que The Shift Project vient de publier dans le cadre de son \"plan de transformation de l'\u00e9conomie fran\u00e7aise\". Si on la fait courte mais bonne, et sans spoiler les 91 pages du rapport, la r\u00e9ponse est que nous pouvons faire beaucoup avec la technique, mais il faudra aussi user de la sobri\u00e9t\u00e9, dit autrement une baisse de la consommation. Mais si nous consid\u00e9rons que nous sommes devenus des \"ob\u00e8ses mat\u00e9riels\" ce n'est peut-\u00eatre pas un drame si on s'organise bien.\n\nEn particulier sur le plan de l'emploi on peut imaginer compenser les pertes dans la production initiale par des gains dans la r\u00e9paration, le r\u00e9emploi, et le recyclage, et un peu dans la relocalisation de certaines productions, ce qui conjugue un int\u00e9r\u00eat pour l'emploi avec un int\u00e9r\u00eat sur les \u00e9missions." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6890323257459838976,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6890323258114138112,urn:li:activity:6890323258114138112,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 56, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6890323258114138112,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6890323258114138112,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6890323258114138112", + "threadId": "activity:6890323258114138112", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6890323258114138112", + "urn": "urn:li:activity:6890323258114138112", + "numComments": 114, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6890323258114138112", + "reactionTypeCounts": [ + { + "count": 1318, + "reactionType": "LIKE" + }, + { + "count": 119, + "reactionType": "INTEREST" + }, + { + "count": 103, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6890323258114138112", + "numLikes": 1592, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6890323258114138112", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1592, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6889961018739494912,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6889961018739494912", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6889961018739494912)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6889961018739494912)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_environnement-activity-6889961018739494912-YTSv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6889961018055811073", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6889961018739494912", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6889961018739494912,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6889961018739494912,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6889961018055811073", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "ROyIbH9JPw/lKUTzolGmSg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6889961018739494912,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7000478650010053549", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676405573623?e=1677240000&v=beta&t=aILfgIcXOSfjxhODpddEbHz9mKa92J7c28gwgKoZ2jc", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676405573623?e=1677240000&v=beta&t=XdrGFtdAUKBIFnSD4oCq6YiER1oijqX5kB0B_KmTINo", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676405573623?e=1677240000&v=beta&t=yJg_dB0s-Zz6hviA23T15bFZW50tjhpHE66C7T1SnNk", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676405573624?e=1677240000&v=beta&t=lZZON6MVXPNZOywH4uVW9PgtknOPN5BL5FlaXPZ3gxc", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEeUM7AvVjL_A/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7000478650010053549)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7000478650010053549)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "arcep.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Environnement by arcep.fr", + "actionTarget": "https://www.arcep.fr/actualites/les-communiques-de-presse/detail/n/environnement-190122.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Environnement" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6889961018055811073,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L\u2019Autorit\u00e9 de r\u00e9gulation des communications \u00e9lectroniques, des postes et de la distribution de la presse (ARCEP) et l'Ademe viennent de publier une note sur l'impact environnemental du num\u00e9rique. L'essentiel des \u00e9l\u00e9ments contenus dans cette note n'est pas in\u00e9dit mais il est bon de les rappeler.\n\nSur le plan des \u00e9missions de gaz \u00e0 effet de serre, la note donne une valeur de 253 kg CO2 eq. par an et par Fran\u00e7ais pour l'empreinte carbone du num\u00e9rique, soit 2,5% de l'empreinte du pays. \n\nLa consommation \u00e9lectrique annuelle induite par les biens et services num\u00e9riques en France est de 48,7 TWh, soit l\u2019\u00e9quivalent d\u2019environ 10 % de la consommation \u00e9lectrique annuelle fran\u00e7aise (car toute cette consommation n'a pas lieu en France).\n\nL\u2019empreinte carbone du num\u00e9rique est majoritairement li\u00e9e aux terminaux (79 % de l\u2019empreinte), suivis par les centres de donn\u00e9es (plus de 16 %) puis les r\u00e9seaux (autour de 5 %). La phase de fabrication des \u00e9quipements (terminaux, serveurs, box,...) repr\u00e9sente 78 % du total alors que la phase d\u2019utilisation repr\u00e9sente 21 % (mais dans un pays \u00e0 l'\u00e9lectricit\u00e9 plus carbon\u00e9e ces proportions seraient diff\u00e9rentes).\n\nMais cette note pr\u00e9sente aussi l'impact sur d'autres indicateurs. Les terminaux mobilisent par exemple plus de 90% des m\u00e9taux et min\u00e9raux utilis\u00e9s pour fabriquer et faire fonctionner le syst\u00e8me num\u00e9rique (et 62,5 millions de tonnes de ressources sont utilis\u00e9es par an pour produire et utiliser les \u00e9quipements num\u00e9riques), et au sein de cet ensemble ce sont les \u00e9crans (les t\u00e9l\u00e9s) qui repr\u00e9sentent la plus grande part.\n\nL'id\u00e9al, ce serait que ce travail soit une premi\u00e8re \u00e9tape pour conditionner l'autorisation d'exercer des op\u00e9rateurs de t\u00e9l\u00e9coms \u00e0 une baisse de leur empreinte carbone tous les ans. Si nous \u00e9tions coh\u00e9rents, c'est ce que nous souhaiterions tou(te)s !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6889961018055811073,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6889961018739494912,urn:li:activity:6889961018739494912,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 20, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6889961018739494912,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6889961018739494912,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6889961018739494912", + "threadId": "activity:6889961018739494912", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6889961018739494912", + "urn": "urn:li:activity:6889961018739494912", + "numComments": 32, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6889961018739494912", + "reactionTypeCounts": [ + { + "count": 496, + "reactionType": "LIKE" + }, + { + "count": 70, + "reactionType": "INTEREST" + }, + { + "count": 60, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6889961018739494912", + "numLikes": 647, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6889961018739494912", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 647, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6889499849637584896,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6889499849637584896", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6889499849637584896)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6889499849637584896)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-charbon-nouvel-eldorado-des-fonds-dinvestissement-activity-6889499849637584896-SWHE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6889499848899403776", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6889499849637584896", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6889499849637584896,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6889499849637584896,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6889499848899403776", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "K/ov4GLyUg6hVLpmLr+UuQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6889499849637584896,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8435774998525457570", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676231775591?e=1677240000&v=beta&t=YjBO8nrgaAV5jTRReQZd8CXq_DTxBDc0Ii_8Wf4au1c", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676231775591?e=1677240000&v=beta&t=ykTXx6xb9cup481Da7_cAzf1M_-yGPaLk97-ayOkQis", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676231775591?e=1677240000&v=beta&t=gT1jwddMapuUmwcNZp2Uvx7dsLuznNZ8zjoWx4w3ntk", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676231775591?e=1677240000&v=beta&t=CZkMvXu_4yi9Z-0vXeNho9PpdzmijN1ayQQ0sBqJfOI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGRsn6tjk7p0g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8435774998525457570)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8435774998525457570)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le charbon, nouvel eldorado des fonds d'investissement by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/ma/le-charbon-nouvel-eldorado-des-fonds-dinvestissement-1379864" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le charbon, nouvel eldorado des fonds d'investissement" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6889499848899403776,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis que le climat est devenu un sujet pour les acteurs financiers, une des mani\u00e8res qu'ils ont de r\u00e9pondre au probl\u00e8me est de d\u00e9sinvestir des secteurs vus comme les plus probl\u00e9matiques, au premier rang desquels le charbon.\n\nAdmettons qu'un gestionnaire d'actif ou un investisseur d\u00e9tienne des actions ou des obligations d'une soci\u00e9t\u00e9 qui est pr\u00e9sente dans le secteur charbonnier (exploitant de mines, exploitant de centrales \u00e9lectriques, voire constructeur de ces centrales ou d'engins utilis\u00e9s dans les mines...). \n\nLa fa\u00e7on de r\u00e9soudre le probl\u00e8me actuellement est de vendre ces actions ou obligations \u00e0 des tiers. Les titres ne sont alors plus pris en compte dans l'empreinte carbone de l'acteur financier... qui peut consid\u00e9rer avoir contribu\u00e9 \u00e0 la r\u00e9solution du probl\u00e8me.\n\nSauf qu'il n'en est rien : la \"vraie\" r\u00e9solution du probl\u00e8me est la disparition \"physique\" de la mine ou de la centrale en activit\u00e9, et la vente \u00e0 un tiers ne garantit pas du tout cela. Pire : comme l'explique cet article, la cession de ces actifs cr\u00e9e des opportunit\u00e9s pour des investisseurs priv\u00e9s, qui prennent le relais des structures cot\u00e9es qui sont mises sous pression parce qu'elles doivent publier des informations et donc donner des gages.\n\nLa seule mani\u00e8re que es acteurs financiers pourraient avoir de r\u00e9soudre le probl\u00e8me par eux-m\u00eames serait de garder la propri\u00e9t\u00e9 de la mine ou de la centrale... et de cr\u00e9er des coalitions majoritaires en AG pour voter la cessation de l'activit\u00e9 charbonni\u00e8re, en encaissant la moins value correspondante au passage, ce qu'ils ne feront jamais, parce que c'est contraire \u00e0 leur devoir fiduciaire, qui les oblige \u00e0 mettre la pr\u00e9servation des int\u00e9r\u00eats financiers de leur mandants avant toute autre consid\u00e9ration.\n\nLa taxonomie europ\u00e9enne laissera ce probl\u00e8me entier. En fait, il n'y a que la puissance publique qui puisse r\u00e9soudre le probl\u00e8me, en interdisant progressivement l'activit\u00e9 charbonni\u00e8re. Les investisseurs ne le pourront pas. \n\nIls peuvent par contre avoir une approche \"risque individuel\", c'est \u00e0 dire sortir le charbon de leurs portefeuilles pour ne pas encaisser de moins values quand et si la puissance publique d\u00e9cide(ra) de p\u00e9naliser cette activit\u00e9 (ou les \u00e9pargnants, au d\u00e9triment du rendement, mais c'est peu probable que ce soit massif), ou si elle se \"p\u00e9nalise toute seule\" pour des raisons physiques (manque de ressources, impossibilit\u00e9 physique d'op\u00e9rer pour des raisons diverses). Cela correspond \u00e0 une vision \"secteur\", qui a sa pertinence, mais pas \u00e0 une vision soci\u00e9tale." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6889499848899403776,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6889499849637584896,urn:li:activity:6889499849637584896,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 68, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6889499849637584896,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6889499849637584896,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6889499849637584896", + "threadId": "activity:6889499849637584896", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6889499849637584896", + "urn": "urn:li:activity:6889499849637584896", + "numComments": 89, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6889499849637584896", + "reactionTypeCounts": [ + { + "count": 1331, + "reactionType": "LIKE" + }, + { + "count": 248, + "reactionType": "INTEREST" + }, + { + "count": 224, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6889499849637584896", + "numLikes": 1828, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6889499849637584896", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1828, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6889271744029356032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6889271744029356032", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6889271744029356032)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6889271744029356032)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-rechute-de-l%C3%A9conomie-allemande-complique-activity-6889271744029356032-jhwX?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6889271743538634752", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6889271744029356032", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6889271744029356032,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6889271744029356032,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6889271743538634752", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "lr8luTWLd+jluUNZhmFRHg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6889271744029356032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8097366332892754227", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675639792253?e=1677240000&v=beta&t=2q9ASvcSIL_klpWY9_8XeWX_flz1WcR0dqspJup4LXM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675639792253?e=1677240000&v=beta&t=h07ybQVTXA6UAfE2i3bi1DDQXESHf9GFKqQ0pySQFQQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675639792253?e=1677240000&v=beta&t=hx0Foi4Xg6B9vUI6v3hVeamXsxbpxgxe1DKGBeIKRGI", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675639792253?e=1677240000&v=beta&t=52y38dfM_NuAlO73sacTo_z4nX34l-wfAoP-uZszoAI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF7xE67io7m-A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8097366332892754227)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8097366332892754227)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La rechute de l'\u00e9conomie allemande complique la t\u00e2che de la nouvelle coalition by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/sa-reprise-economique-decevante-en-2021-complique-la-tache-de-lallemagne-1379262" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La rechute de l'\u00e9conomie allemande complique la t\u00e2che de la nouvelle coalition" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6889271743538634752,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Au 4\u00e8 trimestre 2021, le PIB allemand s'est l\u00e9g\u00e8rement contract\u00e9. Pourquoi est-ce un fait int\u00e9ressant ? Parce que ce tassement du PIB est du, selon cet article des Echos, \u00e0 une impossibilit\u00e9 de produire assez \u00e0 cause de la p\u00e9nurie de composants et mati\u00e8res premi\u00e8res.\n\nUn PIB qui se tasse de 0,1%, ce n'est pas une p\u00e9nurie massive. Le secteur automobile fran\u00e7ais s'en serait surement content\u00e9, lui qui a vu ses ventes chuter de 25% par rapport \u00e0 2019 pour des raisons identiques.\n\nEn Allemagne, la nouvelle coalition a clairement un programme de \"croissance verte\". Sur le plan \u00e9nerg\u00e9tique, le d\u00e9ploiement de modes physiquement peu concentr\u00e9s (solaire et \u00e9olien) et tr\u00e8s gourmands en ressources physiques n'est paradoxalement facile \u00e0 faire que dans un univers en croissance. Question : que va-t-il se passer quand la croissance deviendra l'exception et non la r\u00e8gle, ce qui a toutes les chances d'arriver bien avant 2050 ? \n\nLa question vaut aussi pour nous..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6889271743538634752,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6889271744029356032,urn:li:activity:6889271744029356032,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 12, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6889271744029356032,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6889271744029356032,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6889271744029356032", + "threadId": "activity:6889271744029356032", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6889271744029356032", + "urn": "urn:li:activity:6889271744029356032", + "numComments": 24, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6889271744029356032", + "reactionTypeCounts": [ + { + "count": 370, + "reactionType": "LIKE" + }, + { + "count": 53, + "reactionType": "MAYBE" + }, + { + "count": 44, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6889271744029356032", + "numLikes": 470, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6889271744029356032", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 470, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6889129997471158272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6889129997471158272", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6889129997471158272)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6889129997471158272)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-project-publie-son-livre-issu-des-activity-6889129997471158272-aGUA?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6889129996766511104", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6889129997471158272", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6889129997471158272,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6889129997471158272,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6889129996766511104", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "Zi8EZ29Jfk1LHj2sKPt1KQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6889129997471158272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9036375185403148342", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675740857394?e=1677240000&v=beta&t=8EOjFdxbUQ-S_nmMA-VzCGonzu5f1E6uqtNfAgVgKPE", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675740857395?e=1677240000&v=beta&t=3jzCghGB0wkswWD745Y6YxmOwAibcomG7cVImQgm6yo", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675740857395?e=1677240000&v=beta&t=rpUvoBi3tMVVH_F2Gznyzw4prq6DcsoHjPVqsTpjcT4", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675740857395?e=1677240000&v=beta&t=pwBzIG2mTynQduI-KKq3ARz_XbNwFpyoTUZpxNBnwUE", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFDBrf69Zcyrg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9036375185403148342)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9036375185403148342)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift Project publie son livre issu des travaux du PTEF : Rdv le 07/02 ! by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-publication-livre-ptef-7-fevrier-18h" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift Project publie son livre issu des travaux du PTEF : Rdv le 07/02 !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6889129996766511104,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le 7 f\u00e9vrier prochain, \u00e0 partir de 18h, The Shift Project organise un \u00e9v\u00e9nement pour la parution, chez Odile Jacob, d'un livre reprenant les propositions du plan de transformation de l'\u00e9conomie fran\u00e7aise (https://lnkd.in/exB5gsqS ).\n\nCet \u00e9v\u00e9nement sera l'occasion de parcourir - ou d\u00e9couvrir ! - les conclusions de nos travaux initi\u00e9s il y a presque 2 ans maintenant, et qui ont conduit \u00e0 formuler des propositions dans 15 secteurs d'activit\u00e9, pour rendre notre avenir \u00e9conomie compatible avec la baisse au bon rythme des \u00e9missions de gaz \u00e0 effet de serre plan\u00e9taires.\n\nNous aurons le plaisir d'accueillir \u00e0 cet \u00e9v\u00e9nement le nouveau directeur de Sciences Po, le secr\u00e9taire g\u00e9n\u00e9ral de la CFDT, le pr\u00e9sident d\u00e9l\u00e9gu\u00e9 du MEDEF, mais aussi - et surtout ! - de nombreux chef(fe)s de projet qui ont pilot\u00e9 les travaux conduisant aux propositions.\n\nCe travail - le \"plan de transformation de l'\u00e9conomie fran\u00e7aise\" - est notre fa\u00e7on \u00e0 nous de faire de la politique sans se pr\u00e9senter \u00e0 une \u00e9lection. Ce n'est pas un hasard que ce livre sorte au d\u00e9but de la campagne \u00e9lectorale, mais notre premier public est l'\u00e9lectorat plus que les candidat(e)s, pour une raison tr\u00e8s simple : le plus souvent, les candidat(e)s se calent sur les souhaits de leurs \u00e9lecteurs potentiels avant de se caler sur les \"constats scientifiques\". \n\nSi nous voulons convaincre une fraction significative de la classe politique du bien fond\u00e9 de notre approche, cela passe n\u00e9cessairement par le fait d'en convaincre une bonne fraction de la soci\u00e9t\u00e9 civile, \u00e0 commencer par les organismes qui souhaitent les repr\u00e9senter ou les inspirer (syndicats de salari\u00e9s et patronaux ; monde acad\u00e9mique).\n\nCet \u00e9v\u00e9nement s'inscrit pleinement dans ce cadre puisque nous n'aurons pas d'intervenant issu du monde politique. Rappelons que The Shift Project est a-partisan et n'a pas vocation \u00e0 soutenir un(e) candidat(e) particulier(e). \n\nL'inscription pour assister \u00e0 la retransmission en ligne est gratuite ; tous les d\u00e9tails dans le lien ci-dessous !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6889129996766511104,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6889129997471158272,urn:li:activity:6889129997471158272,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 19, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6889129997471158272,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6889129997471158272,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6889129997471158272", + "threadId": "activity:6889129997471158272", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6889129997471158272", + "urn": "urn:li:activity:6889129997471158272", + "numComments": 31, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6889129997471158272", + "reactionTypeCounts": [ + { + "count": 468, + "reactionType": "LIKE" + }, + { + "count": 38, + "reactionType": "PRAISE" + }, + { + "count": 32, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6889129997471158272", + "numLikes": 565, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6889129997471158272", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 565, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6888538708820209664,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6888538708820209664", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6888538708820209664)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6888538708820209664)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_2020-report-on-the-food-beverage-sector-activity-6888538708820209664-q6nH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6888538708165881856", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6888538708820209664", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6888538708820209664,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6888538708820209664,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6888538708165881856", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "90AxRw0Y182pgXuQgN3PBg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6888538708820209664,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9073604296192967190", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676526896511?e=1677240000&v=beta&t=J5YR3ns06KXZB86b4h6cQ-quBbuYveR8xExqa7_1lGU", + "expiresAt": 1677240000000, + "height": 532 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676526896512?e=1677240000&v=beta&t=G3qjGfaxsQCKrbvcIYhzo_0iT0Yyh7NiYM9BhOi1ls0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676526896512?e=1677240000&v=beta&t=DNZL7aAArDTA3DDtk_H9U7VLErRHkGeUsjE3mDC9hjU", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676526896512?e=1677240000&v=beta&t=DWSBBXSfqo_KLlHJoxO1_5GWK6zeOWI09vRZvOFR82Q", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEq-MDm0vOPUw/articleshare-shrink_" + }, + "displayAspectRatio": 0.665 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9073604296192967190)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9073604296192967190)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbon4finance.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: 2020 report on the food & beverage sector | Carbon4finance by carbon4finance.com", + "actionTarget": "https://www.carbon4finance.com/publication-food-and-beverage-2022" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "2020 report on the food & beverage sector | Carbon4finance" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6888538708165881856,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'agriculture au sens large, c'est un tiers des \u00e9missions mondiales de gaz \u00e0 effet de serre. Dans cet ensemble, on va trouver les \u00e9missions directes des pratiques agricoles (m\u00e9thane des ruminants et des rizi\u00e8res, protoxyde d'azote \u00e9mis par les engrais apr\u00e8s \u00e9pandage dans les champs), les \u00e9missions des machines agricoles, et la d\u00e9forestation amont. Pour obtenir les \u00e9missions associ\u00e9es \u00e0 notre alimentation, il faut y rajouter les \u00e9missions de l'agroalimentaire (chaleur, \u00e9lectricit\u00e9, et production d'emballages) et des transports associ\u00e9s (un camion sur trois en France transporte quelque chose qui se mange). \n\nIl \u00e9tait donc normal que la m\u00e9thode Carbon Impact Analytics (qui est destin\u00e9e \u00e0 \u00e9valuer le \"risque de transition\" d'entreprises face \u00e0 la contrainte climatique) d\u00e9veloppe un module sectoriel portant sur les industries du secteur \"nourriture et boissons\".\n\nLe premier rapport sur ce secteur vient d'\u00eatre publi\u00e9. Il d\u00e9crit la m\u00e9thode utilis\u00e9e pour \u00e9valuer les entreprises, les limites bien sur (par exemple pour le moment nous ne diff\u00e9rencions pas encore les qualit\u00e9s nutritionnelles dans les notes accord\u00e9es, alors qu'il serait \u00e0 l'\u00e9vidence pertinent de le faire), et les r\u00e9sultats obtenus.\n\nUn des enseignements importants est que ce secteur \u00e9tant peu sur l'\u00e9cran radar pour le sujet climat (par contre il l'est pour la d\u00e9forestation et des sujets biodiversit\u00e9), il reporte peu sur ses \u00e9missions (et encore moins sur celles de sa chaine de valeur, le fameux \"scope 3\"). Mais il p\u00e8se plus lourd en \u00e9missions que le secteur \u00e9lectrique : il serait temps de le scruter d'un peu plus pr\u00e8s !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6888538708165881856,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6888538708820209664,urn:li:activity:6888538708820209664,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6888538708820209664,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6888538708820209664,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6888538708820209664", + "threadId": "activity:6888538708820209664", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6888538708820209664", + "urn": "urn:li:activity:6888538708820209664", + "numComments": 89, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6888538708820209664", + "reactionTypeCounts": [ + { + "count": 667, + "reactionType": "LIKE" + }, + { + "count": 87, + "reactionType": "INTEREST" + }, + { + "count": 74, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6888538708820209664", + "numLikes": 844, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6888538708820209664", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 844, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6888157606695776256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6888157606695776256", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6888157606695776256)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6888157606695776256)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-syndicats-dedf-scandalis%C3%A9s-exigent-activity-6888157606695776256-cV2o?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6888157606095970304", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6888157606695776256", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6888157606695776256,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6888157606695776256,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6888157606095970304", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "FOjbcDCWHV+JDmjtVYDstQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6888157606695776256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7321148228692570235", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 612, + "fileIdentifyingUrlPathSegment": "800/0/1676204119207?e=1677240000&v=beta&t=R-K8j7HrgiEew1z3aFcIvN1wnys-yLEHe-D73ovpQ5Q", + "expiresAt": 1677240000000, + "height": 306 + }, + { + "width": 612, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676204119207?e=1677240000&v=beta&t=i-yXd9sD6cVZTLB8GRl4uKIixC3b4sCllfT1v3bDqIM", + "expiresAt": 1677240000000, + "height": 306 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676204119207?e=1677240000&v=beta&t=4u7PqiH3lE5H_UuiedMdnLDTazSwc9LqRB42A67T9MM", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676204119207?e=1677240000&v=beta&t=TLBm2pL1pg0UWm-flIa2xaxX9w_ULXMUuWgeUqrxvzQ", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGdl-q_bTn5hw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Nous demandons \u00e0 l'Etat actionnaire de compenser int\u00e9gralement le co\u00fbt du soutien provisoire demand\u00e9 \u00e0 EDF pour limiter la hausse des prix de l'\u00e9lectricit\u00e9, ajoutent-ils," + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7321148228692570235)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7321148228692570235)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "latribune.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les syndicats d'EDF, \"scandalis\u00e9s\", exigent une compensation de l'Etat by latribune.fr", + "actionTarget": "https://www.latribune.fr/entreprises-finance/industrie/energie-environnement/les-syndicats-d-edf-scandalises-exigent-une-compensation-de-l-etat-902059.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les syndicats d'EDF, \"scandalis\u00e9s\", exigent une compensation de l'Etat" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6888157606095970304,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1385, + "length": 22, + "miniProfile": { + "firstName": "Agn\u00e8s", + "lastName": "Pannier-Runacher", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAEK6BEBsG_i-hh5mSn5hIurr_OycRfuKkg", + "occupation": "Ministre de la Transition \u00c9nerg\u00e9tique", + "objectUrn": "urn:li:member:17491985", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAEK6BEBsG_i-hh5mSn5hIurr_OycRfuKkg", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1674899369693?e=1681948800&v=beta&t=3LKXkGY90MOr38xrRJrtLgywf-CAob9vNvkP8JflqqI", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1674899369693?e=1681948800&v=beta&t=6VFYH_PJYvuv19P322RrvyYfkZGT-i63snKrxWjsEfQ", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQFhA3JuxVMqHA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "agnes-pannier-runacher", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1651053018299?e=1681948800&v=beta&t=BR2u9KR89fk_mCv1Yxo0nE-tWFZb8FNFZnPg2n76HYk", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1651053018299?e=1681948800&v=beta&t=5L_yy71f7eKD8O0B5k28YL0f1-BTrBOApJpSkj7g-TI", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1651053018299?e=1681948800&v=beta&t=ztHyczbGWbD1-QqE21OfwpvSPk5D36cvf5iHpOtkBC4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1651053018299?e=1681948800&v=beta&t=S_OfvzDG0EP3voc0ZUb7PFaC9IyDoqjZyoZKlPuH-es", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQEq84-Nk6p0FA/profile-displayphoto-shrink_" + } + }, + "trackingId": "+zHCVQtMQdOL7V7AD/Ei8Q==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1604, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "nSKzP0IOT3S59HlfHDzPRA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1621, + "length": 11, + "miniProfile": { + "firstName": "Jean", + "lastName": "Castex", + "dashEntityUrn": "urn:li:fsd_profile:ACoAADGBr_4Blpfb3lhcaxTg9ozKiP5rx312PhI", + "occupation": "Pr\u00e9sident-directeur g\u00e9n\u00e9ral du groupe RATP", + "objectUrn": "urn:li:member:830582782", + "entityUrn": "urn:li:fs_miniProfile:ACoAADGBr_4Blpfb3lhcaxTg9ozKiP5rx312PhI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1603100659776?e=1681948800&v=beta&t=lA-Suv06Ra8u76RZ2meINTmG6UmIvO__u8OicpZWjuM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1603100659776?e=1681948800&v=beta&t=olxmcv71KLvT3qQRLrY_GfNmKk52aG2KEcKUoloVBcg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQEIWUcV1jCYnw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-castex", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1669635574467?e=1681948800&v=beta&t=fkwwERpv5DJYo5SC5m01yoG6D_9_uwoHZRvX5Cc3rBk", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1669635574467?e=1681948800&v=beta&t=gops-UV7y-lmltqG4wTOjCXGsvIjs0pUyaQUCBjTr-A", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1669635574467?e=1681948800&v=beta&t=voIOvRKVzEk88RWFL4ZoTbzEB--pZ0zpQQTxfyQw7-A", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1669635574467?e=1681948800&v=beta&t=KhtOWJTPlfElJtpntgW4cpeIBEO8U_Iblq7TjeWw-OY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQFZVAFScGEoJw/profile-displayphoto-shrink_" + } + }, + "trackingId": "r5MUgIW3SEGAoJDlSpAFSg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1634, + "length": 14, + "miniProfile": { + "firstName": "Bruno", + "lastName": "Le Maire", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "occupation": "Ministre de l\u2019\u00c9conomie, des Finances et de la Souverainet\u00e9 industrielle et num\u00e9rique", + "objectUrn": "urn:li:member:489338904", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1615820384690?e=1681948800&v=beta&t=1lSONwEqNZ6YCfsSa_SSdMyy3lRIBlt7HnIa8FhbD_0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1615820384690?e=1681948800&v=beta&t=mXrkcvswYDvA5nxrWnHwv0uRHbVbSrbb-YTCHNh3hZs", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFtlzemSILDlQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "brunolemaire", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650470576103?e=1681948800&v=beta&t=grYiuKFOw0Vps9r0gskTHNlsABqKydJY1BD9PqrCOZE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650470576103?e=1681948800&v=beta&t=_dq5B-XcARKywCPZ39sHI46v2wiioUaRLXHB6EjQEZA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650470576103?e=1681948800&v=beta&t=hpGqyzWjIXtO01PmwOzhVATdVIHajDaeNdSiiN6I2KY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650470576103?e=1681948800&v=beta&t=sDT3g5ZnR6kL5Ks0S37qtLS2Z-UNhM119fiXH0t1h8I", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQH2hSTPjrAuKw/profile-displayphoto-shrink_" + } + }, + "trackingId": "OfVKkfTlQmqvLZk4huyOQw==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1652, + "length": 15, + "miniProfile": { + "firstName": "Barbara", + "lastName": "Pompili", + "dashEntityUrn": "urn:li:fsd_profile:ACoAADGua-0B1uYN4g7tUhToYEnVt4NcLZClCRY", + "occupation": "D\u00e9put\u00e9e de la Somme, ex-ministre de la Transition \u00e9cologique", + "objectUrn": "urn:li:member:833514477", + "entityUrn": "urn:li:fs_miniProfile:ACoAADGua-0B1uYN4g7tUhToYEnVt4NcLZClCRY", + "publicIdentifier": "barbara-pompili", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1595867641823?e=1681948800&v=beta&t=YO0yS-McQdA35Vid0mqkqK0IoKsA7v9-DFUN5jQlq4A", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1595867641823?e=1681948800&v=beta&t=a7YzdeS5J0slM3KxyhaIjpz0dhCYGkJpEhYgA1ExC6Q", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1595867641823?e=1681948800&v=beta&t=Y7zzCO_FQEe-K24i39TSG_laCAv0G4GKj0o83xyRCn4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1595867641823?e=1681948800&v=beta&t=6Vauui1L2DJP-emDsWRRLNX3jwsOAGXEbCkTxf0bZ0U", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQFRjTspBNP7mw/profile-displayphoto-shrink_" + } + }, + "trackingId": "oO7Kb69vTv+SRu1tV+R50Q==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Peut-on, dans un march\u00e9 concurrentiel, demander \u00e0 un des \"concurrents\" de mettre la main \u00e0 la poche pour renflouer les autres ?\n\nPour soutenir le tarif de l'\u00e9lectricit\u00e9 pour les consommateurs finaux (une d\u00e9cision politique), l'Etat peut-il demander \u00e0 un des \"concurrents\" de porter l'effort qui incombe normalement aux finances publiques ?\n\nA l'\u00e9vidence la r\u00e9ponse est deux fois oui. Cela n'est pas du gout des administrateurs salari\u00e9s d'EDF (on les comprend) qui ont \u00e9crit que \"Nous refusons que ce soit le Groupe EDF qui assume, seul, encore et toujours, les risques de march\u00e9 alors que c'est aussi lui seul qui assume tous les risques industriels\".\n\nDe fait, ce qui vient de se passer est une remarquable confusion des genres. Imagine-t-on l'Etat demander \u00e0 Renault de perdre 8 milliards pour vendre \u00e0 perte des voitures \u00e0 ses concurrents pour que les voitures coutent moins cher au consommateur final ?\n\nSi au moins l'Etat en avait profit\u00e9 pour expliquer que le syst\u00e8me actuel dysfonctionne (et va le faire de plus en plus), et qu'il est urgent de revenir \u00e0 un monopole ou un oligipole encadr\u00e9, on y aurait au moins gagn\u00e9 quelque chose. Mais il ne semble pas que ce soit le cas : les m\u00eames causes produiront les m\u00eames effets, et attendez vous donc \u00e0 d'autres \u00e9pisodes d'inflation \u00e9nerg\u00e9tique tant que le syst\u00e8me actuel restera en place... \n\nPetite observation en passant : c'est \u00e0 Agn\u00e8s Pannier-Runacher qu'a \u00e9chu la d\u00e9sagr\u00e9able t\u00e2che d'\u00e9voquer sur ce r\u00e9seau social la ponction op\u00e9r\u00e9e par l'Etat sur les comptes d'EDF en la pr\u00e9sentant comme un succ\u00e8s (https://lnkd.in/e6VSHiDt ). Les fils linkedin d'Emmanuel Macron, Jean Castex, Bruno Le Maire et Barbara Pompili (\u00e0 savoir ceux qui ont vraiment pris la d\u00e9cision, et ceux qui ont la tutelle sur le secteur \u00e9nerg\u00e9tique/\u00e9conomique) sont rest\u00e9s muets sur le sujet. Int\u00e9ressant..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6888157606095970304,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6888157606695776256,urn:li:activity:6888157606695776256,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 196, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6888157606695776256,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6888157606695776256,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6888157606695776256", + "threadId": "activity:6888157606695776256", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6888157606695776256", + "urn": "urn:li:activity:6888157606695776256", + "numComments": 300, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6888157606695776256", + "reactionTypeCounts": [ + { + "count": 4449, + "reactionType": "LIKE" + }, + { + "count": 420, + "reactionType": "MAYBE" + }, + { + "count": 382, + "reactionType": "INTEREST" + }, + { + "count": 161, + "reactionType": "PRAISE" + }, + { + "count": 60, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6888157606695776256", + "numLikes": 5486, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6888157606695776256", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5486, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6887778873388408833,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6887778873388408833", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6887778873388408833)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6887778873388408833)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_edf-plonge-en-bourse-apr%C3%A8s-lannonce-de-mesures-activity-6887778873388408833-Ynpc?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6887778872478228480", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6887778873388408833", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6887778873388408833,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6887778873388408833,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6887778872478228480", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "ncsmSk5TFDRr1g/JCXUfDw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6887778873388408833,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8036225046245116247", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1642148662757?e=1677240000&v=beta&t=42jK5mN1RFtMIgDtlpWh_1PgePWXpSCSGm3DyhzwSek", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1642148662757?e=1677240000&v=beta&t=5uRwp2KT2iRolVsRxdErF3JNjK6YQL0qtLbKCLDmYzg", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1642148662757?e=1677240000&v=beta&t=mDO63fX8Jt1pbPgV7NpOtQQvVH2szZLqCzHBrubeviw", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1642148662757?e=1677240000&v=beta&t=4kRw8AQTo28WvdxI9kJ2A__X1z5bxJ74AAf6c4ANwKg", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQH_HmsgmM9kAA/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "EDF" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8036225046245116247)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8036225046245116247)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "investir.lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EDF plonge en Bourse apr\u00e8s l\u2019annonce de mesures gouvernementales en vue de limiter les hausses de prix by investir.lesechos.fr", + "actionTarget": "https://investir.lesechos.fr/actions/actualites/edf-plonge-de-25-en-bourse-apres-l-annonce-de-mesures-gouvernementales-en-vue-de-limiter-les-hausses-de-prix-1997805.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EDF plonge en Bourse apr\u00e8s l\u2019annonce de mesures gouvernementales en vue de limiter les hausses de prix" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6887778872478228480,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\nS'il s'agissait de d\u00e9truire un syst\u00e8me qui fonctionnait bien, la \"concurrence\" dans le march\u00e9 de l'\u00e9lectricit\u00e9 vient de remporter une nouvelle victoire. Rappelons que les \"concurrents\" d'EDF sont en fait plut\u00f4t des \"d\u00e9pendants\" que des concurrents. La concurrence, c'est la facult\u00e9 de s'\u00e9tablir \u00e0 ses risques et p\u00e9rils. Un nouveau constructeur auto a le droit de se cr\u00e9er pour vendre des voitures comme concurrent des vendeurs existants. Et en pareil cas, si un vendeur historique fait d\u00e9faut, ca ne g\u00eane pas le nouvel entrant, au contraire.\n\nDans le domaine de l'\u00e9lectricit\u00e9, le syst\u00e8me est plut\u00f4t celui d'une extorsion encadr\u00e9e. EDF est oblig\u00e9 de vendre \u00e0 perte (c'est l'ARENH) une partie de sa production \u00e0 des entit\u00e9s tierces qui sont donc en situation de d\u00e9pendance et non de concurrence : si les centrales d'EDF disparaissent, les \"concurrents\" font de m\u00eame !\n\nLes \"concurrents\" n'ont pas construit de moyens de production. Pour l'essentiel ce sont des structures avec des fonds propres tr\u00e8s faibles, bien incapables de porter les investissements n\u00e9cessaires pour construire des unit\u00e9s de puissance. Ce sont en fait de purs distributeurs, vendant l'\u00e9lectricit\u00e9 produite par d'autres (en France essentiellement EDF). \n\nArrive une situation ou les prix de gros s'envolent (parce que les prix de gros sont cal\u00e9s sur le moyen le plus cher du moment ; c'est un fait bien connu dans le domaine de l'\u00e9lectricit\u00e9, m\u00eame si le r\u00e9gulateur europ\u00e9en et le pouvoir politique fran\u00e7ais ne l'avaient pas compris). Les fournisseurs \"d\u00e9pendants\" ont d\u00e9sormais plus de clients \u00e0 fournir que d'\u00e9lectricit\u00e9 achet\u00e9e \u00e0 des prix brad\u00e9s \u00e0 EDF. Ils sont coinc\u00e9s. \n\nLe gouvernement a choisi de sauver les concurrents (il n'\u00e9tait pas oblig\u00e9) et de \"sauver le consommateur\" avant l'\u00e9lection (ben voyons). Mais il n'y a pas de repas gratuit : le contribuable devra passer \u00e0 la caisse apr\u00e8s l'\u00e9lection. \n\nRappelons que ce probl\u00e8me n'a rien \u00e0 voir avec le nucl\u00e9aire. Il est li\u00e9 \u00e0 l'existence d'une concurrence \u00e0 l'aval dans l'\u00e9lectricit\u00e9 et au fait que la production \u00e9lectrique repose sur des moyens dont soit la quantit\u00e9 (\u00e9olien) soit le prix (gaz) est peu pr\u00e9visible. Tant qu'une partie de la production \u00e9lectrique sera faite au gaz (dont le prix sera volatil) et que le syst\u00e8me sera \"concurrentiel\" il y aura des embard\u00e9es sur les prix. Sacrifier EDF n'y changera rien. Ce qu'il faut, c'est revenir au syst\u00e8me r\u00e9gul\u00e9 d'avant." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6887778872478228480,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6887778873388408833,urn:li:activity:6887778873388408833,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 362, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6887778873388408833,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6887778873388408833,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6887778873388408833", + "threadId": "activity:6887778873388408833", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6887778873388408833", + "urn": "urn:li:activity:6887778873388408833", + "numComments": 652, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6887778873388408833", + "reactionTypeCounts": [ + { + "count": 8820, + "reactionType": "LIKE" + }, + { + "count": 869, + "reactionType": "INTEREST" + }, + { + "count": 807, + "reactionType": "MAYBE" + }, + { + "count": 499, + "reactionType": "PRAISE" + }, + { + "count": 87, + "reactionType": "APPRECIATION" + }, + { + "count": 53, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6887778873388408833", + "numLikes": 11135, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6887778873388408833", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 11135, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6887678776524771328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6887678776524771328", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6887678776524771328)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6887678776524771328)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-march%C3%A9-des-green-bonds-face-aux-accusations-activity-6887678776524771328-ZVVU?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6887678775899811841", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6887678776524771328", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6887678776524771328,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6887678776524771328,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6887678775899811841", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "3RS0DD1xXOQf1Fed3ANI4g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6887678776524771328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8156720117392036217", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675837706236?e=1677240000&v=beta&t=H4Tu-lBYq-03CT6WQw54-PkXpdzN6RWndcg-4Afpekc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675837706236?e=1677240000&v=beta&t=DH5HtpzlL1gn72mdV9gnoefxol3R9oweqCZrckC7vy8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675837706236?e=1677240000&v=beta&t=25T69CSHE4JOzzevqzX1IIZWhH5ujj-CFidoJU5oiLc", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675837706236?e=1677240000&v=beta&t=FBb-iB8ee7EbqI6yrF83KXiltZP0KuNwWE2V3k7mAn4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFDMYSe99S7EQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8156720117392036217)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8156720117392036217)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le march\u00e9 des green bonds face aux accusations de greenwashing by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/le-marche-des-green-bonds-face-aux-accusations-de-greenwashing-1378132" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le march\u00e9 des green bonds face aux accusations de greenwashing" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6887678775899811841,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La finance \"verte\" est cens\u00e9e fournir des moyens \u00e0 des projets qui am\u00e9liorent l'\u00e9tat de la plan\u00e8te. Mais il n'est pas rare qu'un projet soit qualifi\u00e9 de \"vert\" simplement s'il est \"pas vert mais mieux que si c'\u00e9tait pire\".\n\nC'est ainsi que vient d'\u00eatre qualifi\u00e9e \"d'obligation verte\" une obligation servant \u00e0 financer une nouvelle piste \u00e0 l'a\u00e9roport de Hong-Kong, au motif, selon Les Echos, que l'a\u00e9roport va \"faire la promotion des transports bas carbone\". Parce qu'ils encourageront les passagers \u00e0 marcher plut\u00f4t que d'utiliser des taxis une fois dans Hong Kong :) ?\n\nL'article souligne le \"point dur\" dans cette histoire : l'absence de norme pertinente, ce qui conduit chaque \u00e9metteur \u00e0 utiliser son propre cadre pour d\u00e9finir le \"vert\", avec \u00e0 l'\u00e9vidence le risque que de temps en temps on aboutisse \u00e0 des absurdit\u00e9s, comme avec cet a\u00e9roport.\n\nIl n'y a qu'\u00e0 faire une norme diront certain(e)s. Certes, mais deux \u00e9cueils (au moins !) se pr\u00e9sentent alors :\n- le premier est que la norme soit faite par ceux qui y seront soumis. La tentation sera alors tr\u00e8s forte de la d\u00e9finir de fa\u00e7on suffisamment faible pour que l'essentiel des op\u00e9rations habituelles \"passe la rampe\" : il est rare que des acteurs b\u00e9n\u00e9ficiant d'une rente construisent une norme qui les emp\u00eache de continuer \u00e0 le faire.\n- le second est que cette norme soit faite par le r\u00e9gulateur (qui lui n'est pas cens\u00e9 \u00eatre \"captur\u00e9\" par les r\u00e9gul\u00e9s, encore que cela soit souvent le cas malheureusement) sans un recul, une exp\u00e9rience et une formation suffisants. A ce moment la norme \"tape \u00e0 c\u00f4t\u00e9\" et demande de respecter des crit\u00e8res qui ne correspondent pas, en pratique, au probl\u00e8me physique \u00e0 r\u00e9soudre (par exemple une norme qui ne porte pas sur un p\u00e9rim\u00e8tre suffisant des impacts pris en compte).\n\nQuand nous sommes dans une course contre la montre, la moins mauvaise mani\u00e8re d'\u00e9viter ces deux \u00e9cueils est que le r\u00e9gulateur investisse massivement et rapidement dans la formation de ses propres effectifs, pour comprendre le probl\u00e8me \u00e0 traiter, passer beaucoup de temps \u00e0 soupeser les diff\u00e9rentes approches qui existent pour y r\u00e9pondre, et \u00e9dicte ensuite une norme qui corresponde bien \u00e0 la question, avec pour cons\u00e9quence \u00e9vidente qu'une large partie de ce qui est fait \"habituellement\" ne passera plus la rampe (c'est normal : on ne peut pas \"changer le monde\" en conservant les m\u00eames r\u00e9f\u00e9rentiels !). \n\nH\u00e9las, ce n'est que tr\u00e8s rarement le cas." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6887678775899811841,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6887678776524771328,urn:li:activity:6887678776524771328,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 49, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6887678776524771328,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6887678776524771328,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6887678776524771328", + "threadId": "activity:6887678776524771328", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6887678776524771328", + "urn": "urn:li:activity:6887678776524771328", + "numComments": 80, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6887678776524771328", + "reactionTypeCounts": [ + { + "count": 910, + "reactionType": "LIKE" + }, + { + "count": 98, + "reactionType": "INTEREST" + }, + { + "count": 78, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6887678776524771328", + "numLikes": 1123, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6887678776524771328", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1123, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6887322176152764416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6887322176152764416", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6887322176152764416)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6887322176152764416)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-d%C3%A9lire-du-charbon-activity-6887322176152764416-S6Cz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6887322175234224128", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6887322176152764416", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6887322176152764416,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6887322176152764416,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6887322175234224128", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "QVLEV5ev6W4cBwKrq4dGvg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6887322176152764416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7996365050697625240", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675895991161?e=1677240000&v=beta&t=lFkWv-L93rXcuwS1xrbGSZKvrd1tr5kXWvJK49GnI1M", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675895991161?e=1677240000&v=beta&t=e59zvwQlnVtchSK7v7tni2oYUo8qyI-K7cV-pjf3BLA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675895991161?e=1677240000&v=beta&t=uw6lvVpd6LViR9ltWb52ujn-LpRZBSClvEX-wS6rqAE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675895991161?e=1677240000&v=beta&t=UkdYPxvAxkDnMQtX3lbQJrJ9n54xiAfEwyO_EbQqL_4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEFg0wx9czx1Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7996365050697625240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7996365050697625240)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le d\u00e9lire du charbon by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/le-delire-du-charbon-1378195" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le d\u00e9lire du charbon" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6887322175234224128,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 110, + "length": 17, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Vittori", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAABMMHABybLIGbKxz3mYY-HDiuQyThsIgvg", + "occupation": "\u00e9ditorialiste at Les Echos", + "objectUrn": "urn:li:member:4993136", + "entityUrn": "urn:li:fs_miniProfile:ACoAAABMMHABybLIGbKxz3mYY-HDiuQyThsIgvg", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1516322127622?e=1681948800&v=beta&t=l9mVGWJwnAwzhaz_aELE3d061cItApqXaYFhVRdmGlo", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1516322127622?e=1681948800&v=beta&t=X1nxSNeALTQHBcOcKOoLMmA9TiVW-9xBUgdxm2_jtKA", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5116AQH58AGS4Kx5Ew/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-vittori-6688091", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1627577164056?e=1681948800&v=beta&t=5m8Ns0KZydMifld6M0l-6nsLq3qPgXmxjZjUlXHtGMg", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1627577164056?e=1681948800&v=beta&t=e2fbzhOgn_y53tJNTcpaQCj_Br8J4EOYyGIS5XixWdQ", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1627577164056?e=1681948800&v=beta&t=uqH-kOow02cCJ-IYtY7WlXQrnZcn4kvZqAnb2cZOuyc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1627577164056?e=1681948800&v=beta&t=tMARCi9zRvkfMLRfUYQ_WT3ZVJqMoN8G7UWnXpq005o", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFd7DrjKwvLKg/profile-displayphoto-shrink_" + } + }, + "trackingId": "okZbrSjMSbuSq3OeisKnww==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Comment va votre meilleur ennemi climatique ? Tr\u00e8s bien merci ! Ainsi pourrait se r\u00e9sumer cette chronique que Jean-Marc Vittori consacre au charbon dans Les Echos. Il y constate - \u00e0 regret - que ce combustible occupe la m\u00eame part dans la production \u00e9lectrique mondiale en 2019 qu'en 1973.\n\nPar contre, ce n'est pas au m\u00eame endroit que ca se passe. En 1973, la premi\u00e8re zone de consommation au monde \u00e9tait... l'Europe, avec 30% du total mondial. En 2020 ce n'est plus que 4%, et la \"r\u00e9sistance\" transitoire de l'Allemagne sur le sujet est en fait l'arbre qui cache la for\u00eat, m\u00eame si on peut regretter (et je le regrette) que notre voisin du nord ait fait le mauvais arbitrage entre charbon et nucl\u00e9aire.\n\nIncidemment, mais \u00e0 plus petite \u00e9chelle, la France conna\u00eet une situation proche : les plafonds r\u00e9glementaires de fonctionnement des centrales \u00e0 charbon vont \u00eatre relev\u00e9s.... \u00e0 cause d'un nucl\u00e9aire insuffisamment disponible, pour partie fortuitement (centrales arr\u00eat\u00e9es \u00e0 la demande de l'ASN pour remplacement de pi\u00e8ces dans les dispositifs de secours ; maintenance d\u00e9cal\u00e9e \u00e0 cause de la baisse de production due au covid) et pour partie d\u00e9lib\u00e9r\u00e9ment (fermeture de Fessenheim). Mon homonyme de pr\u00e9nom se permet incidemment de rappeler un tweet d'Emmanuel Macron qui en 2017 annon\u00e7ait que le charbon dans l'\u00e9lectricit\u00e9 serait supprim\u00e9 pendant son mandat :).\n\nLe climat n'est en fait pas du tout la cause premi\u00e8re de cette diminution en Europe : elle est due \u00e0 la baisse des ressources mini\u00e8res du Vieux Continent, qui a d\u00e9marr\u00e9 l'exploitation de ce combustible solide il y a plus 2 si\u00e8cles. Le pic de production, il s'est tr\u00e8s bien mat\u00e9rialis\u00e9 dans le charbon europ\u00e9en ! Et la raison premi\u00e8re pour laquelle l'Hexagone a fait du nucl\u00e9aire et non du charbon n'est pas par \"vertu climatique\", mais tout simplement parce que notre sous-sol ne contenait d\u00e9j\u00e0 plus beaucoup de houille (ou de lignite) au moment des chocs p\u00e9troliers.\n\nCette baisse a aussi eu lieu ailleurs dans les \"vieux pays industrialis\u00e9s\" : les USA \u00e9taient \u00e0 21% du total mondial en 1973 ; ils sont descendus \u00e0 6%. L\u00e0, c'est l'\u00e9conomie qui a chass\u00e9 le charbon (et pas non plus la vertu climatique) : le gaz est devenu moins cher. L'URSS \u00e9tait \u00e0 22% ; les pays de l'ex-bloc sovi\u00e9tique sont collectivement descendus \u00e0 4% en 2020. A nouveau peu de vertu dans l'affaire, mais surtout l'arriv\u00e9e d'un gaz domestique disponible en abondance (en valeur absolue le charbon n'a pas tant baiss\u00e9 que cela mais en part relative oui).\n\nLe charbon, aujourd'hui, c'est \u00e0 notre Est lointain que cela se passe : la Chine utilise 50% du total mondial, puis arrive l'Inde avec 12%, l'Asie au total faisant 80%. La question qui n'est pas pos\u00e9e dans la chronique, mais qui est bien celle qui compte, est : que pouvons nous y faire ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6887322175234224128,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6887322176152764416,urn:li:activity:6887322176152764416,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 37, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6887322176152764416,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6887322176152764416,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6887322176152764416", + "threadId": "activity:6887322176152764416", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6887322176152764416", + "urn": "urn:li:activity:6887322176152764416", + "numComments": 68, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6887322176152764416", + "reactionTypeCounts": [ + { + "count": 873, + "reactionType": "LIKE" + }, + { + "count": 143, + "reactionType": "INTEREST" + }, + { + "count": 103, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6887322176152764416", + "numLikes": 1132, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6887322176152764416", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1132, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6886999770863337473,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6886999770863337473", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6886999770863337473)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6886999770863337473)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_myco2-pr%C3%A9sente-un-nouveau-calcul-de-lempreinte-activity-6886999770863337473-ZxZy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6886999770288726016", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6886999770863337473", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6886999770863337473,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6886999770863337473,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6886999770288726016", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "5/TpPtOA5905pp6qplMNzQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6886999770863337473,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8819317653207507204", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676217971652?e=1677240000&v=beta&t=7q_M8t-5sMqxmKewT7eTuEavb87FY_6Jaf7Iu6yTczg", + "expiresAt": 1677240000000, + "height": 1200 + }, + { + "width": 533, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676217971652?e=1677240000&v=beta&t=1HlJhLF2D6l7BQCObA0F-gosUu_Ze_o69EQAcDHdb-0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676217971652?e=1677240000&v=beta&t=20OUa5LAzhDDpYs209pNBbLGvB3xg7SHda4hzps6gJE", + "expiresAt": 1677240000000, + "height": 240 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676217971652?e=1677240000&v=beta&t=UdVPNjajVy63yF5jAHzYrlUNpobFKqKcLpVZjDKlVhM", + "expiresAt": 1677240000000, + "height": 720 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEwUAEB8brXhA/articleshare-shrink_" + }, + "displayAspectRatio": 1.5 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8819317653207507204)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8819317653207507204)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: MyCO2 pr\u00e9sente un nouveau calcul de l\u2019empreinte carbone personnelle | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/communique-myco2-empreinte-moyenne-evolution-methodo" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "MyCO2 pr\u00e9sente un nouveau calcul de l\u2019empreinte carbone personnelle | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6886999770288726016,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "9,9 tonnes \u00e9quivalent CO2 : c'est la valeur \u00e0 laquelle aboutit l'\u00e9quipe de MYCO2 (version revisit\u00e9e du bilan carbone personnel dont votre serviteur avait tent\u00e9 une version pr\u00e9historique il y a 15 ans :) ) pour l'empreinte carbone d'un(e) fran\u00e7ais(e) en 2019.\n\nL'empreinte carbone d'un individu, c'est la totalit\u00e9 des \u00e9missions qui ont eu lieu, en France et hors de France, pour que l'individu en question puisse disposer de l'ensemble des produits et services qu'il \"consomme\". Sont inclus \u00e0 la fois les produits et services marchands (ceux que vous payez en direct) et les \"non marchands\" (en pratique pay\u00e9s par vos imp\u00f4ts : la d\u00e9fense, l'essentiel de la sant\u00e9 ou de l'\u00e9ducation). \n\nC'est tr\u00e8s diff\u00e9rent des \u00e9missions territoriales, qui n'incluent pas les \u00e9missions n'ayant pas lieu sur le territoire mais permettant la fabrication des biens interm\u00e9diaires ou finaux qui sont import\u00e9s, ni les \u00e9missions qui \"n'appartiennent \u00e0 aucun pays\", \u00e0 savoir celles du transport maritime et a\u00e9rien internationaux (environ 4% des \u00e9missions plan\u00e9taires \u00e0 eux deux). Et, sym\u00e9triquement, les \u00e9missions territoriales incluent ce qui est associ\u00e9 aux exportations, qui iront alimenter la consommation de personnes ou d'entreprises hors du pays.\n\nIl y a plusieurs mani\u00e8res de faire ce calcul. Dans une version dat\u00e9e de 2011, en utilisant une m\u00e9thode bas\u00e9e sur des flux physiques reconstitu\u00e9s et des facteurs d'\u00e9mission \"physiques\", Carbone 4 avait obtenu une valeur de 10,5 tonnes \u00e9quivalent CO2 : https://lnkd.in/emVVEc-9 \n\nLa m\u00e9thode utilis\u00e9e par MyCO2 (qui fait partie de Carbone 4) se base sur des facteurs mon\u00e9taires et des tableaux entr\u00e9e-sortie, avec un compl\u00e9ment ad hoc pour quelques postes sp\u00e9cifiques (voir https://lnkd.in/eKegc6pz ). Le total est proche (9,9 tonnes) mais la r\u00e9partition un peu diff\u00e9rente de ce qui avait \u00e9t\u00e9 publi\u00e9 en 2010. \n\nLes scientifiques qui \u00e9tudient le syst\u00e8me climatique nous disent que pour stabiliser ce dernier il faut commencer par stabiliser la quantit\u00e9 de gaz \u00e0 effet de serre dans l'atmosph\u00e8re, ce qui signifie que les \u00e9missions humaines doivent devenir quasi-nulles. \n\nPour que les \u00e9missions plan\u00e9taires deviennent nulles (ce qui finira par arriver un jour de toute fa\u00e7on !), ces 9,9 tonnes doivent donc devenir... pas loin de z\u00e9ro, et c'est aussi ce r\u00e9sultat qu'il faut viser pour l'empreinte carbone de tout autre habitant de la plan\u00e8te, quelle que soit la valeur de d\u00e9part. Avec des engagements de neutralit\u00e9 \u00e0 2050, cela doit se produire en l'espace de 30 ans.\n\nLa bonne question est alors de regarder comment, poste par poste, nous allons/pouvons faire pour amener les \u00e9missions du poste \u00e0 z\u00e9ro en 30 ans. A chaque fois nous devrons arbitrer entre baisser la consommation du poste (sobri\u00e9t\u00e9) et produire le r\u00e9siduel plus efficacement." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6886999770288726016,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6886999770863337473,urn:li:activity:6886999770863337473,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6886999770863337473,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6886999770863337473,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6886999770863337473", + "threadId": "activity:6886999770863337473", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6886999770863337473", + "urn": "urn:li:activity:6886999770863337473", + "numComments": 69, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6886999770863337473", + "reactionTypeCounts": [ + { + "count": 520, + "reactionType": "LIKE" + }, + { + "count": 71, + "reactionType": "INTEREST" + }, + { + "count": 37, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6886999770863337473", + "numLikes": 648, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6886999770863337473", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 648, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6886933750400249856,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6886933750400249856", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6886933750400249856)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6886933750400249856)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_global-risks-report-2022-what-you-need-to-activity-6886933750400249856-QpHT?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6886933749800456192", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6886933750400249856", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6886933750400249856,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6886933750400249856,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6886933749800456192", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "iOAIxNjMCSusuuwF1//waQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6886933750400249856,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9054767294635157785", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676229472244?e=1677240000&v=beta&t=5CtHbvyp2UwrnkIJcVhVTlj4TZJlVC163dlXigsnb58", + "expiresAt": 1677240000000, + "height": 538 + }, + { + "width": 1187, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676229472244?e=1677240000&v=beta&t=C6bSgdCkEQ0vc-w21Aj4ypf-AWqZ2QaAbZNhHfLIzXc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676229472244?e=1677240000&v=beta&t=4uF6kHaGVJib-Mof8KxJgniX9afMxmyj1pymCG-xz84", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676229472244?e=1677240000&v=beta&t=Qry4L09_RvrW83JXac_dPX6DvGPcLApDkphvJQgPEr8", + "expiresAt": 1677240000000, + "height": 323 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEZEWwh-wZNng/articleshare-shrink_" + }, + "displayAspectRatio": 0.6725 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Global Risks report 2022: A logo of the World Economic Forum (WEF) is seen as people attend the WEF annual meeting in Davos, 2018." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9054767294635157785)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9054767294635157785)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "weforum.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Global Risks Report 2022: what you need to know by weforum.org", + "actionTarget": "https://www.weforum.org/agenda/2022/01/global-risks-report-climate-change-covid19/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Global Risks Report 2022: what you need to know" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6886933749800456192,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Chaque ann\u00e9e (au moins depuis quelques ann\u00e9es !), le World Economic Forum (l'organisateur du forum de Davos entre autres choses) effectue une enqu\u00eate aupr\u00e8s de \"leaders globaux\" des domaines \u00e9conomique, politique, et de la soci\u00e9t\u00e9 civile, sur leur perception des principaux facteurs de risque dans le monde.\n\nCela fait d\u00e9sormais plusieurs \u00e9ditions que le changement climatique arrive en t\u00eate de liste, et il est suivi (de peu) cette ann\u00e9e par l'atteinte \u00e0 la biodiversit\u00e9.\n\nAu vu de ce r\u00e9sultat, une personne \"normale\" se dira que si le changement climatique est identifi\u00e9 comme un \u00e9l\u00e9ment susceptible de fortement porter atteinte \u00e0 l'\u00e9conomie mondiale, alors la lutte contre le changement climatique devrait arriver en t\u00eate des actions des entreprises, ce qui signifie que les personnes en charge du climat ont \u00e0 la fois beaucoup d'audience et beaucoup de moyens dans les activit\u00e9s \u00e9conomiques.\n\nCa, c'est la th\u00e9orie. En pratique, il semblerait bien que le premier risque contre lequel les dirigeants \u00e9conomiques souhaitent se couvrir est celui... de la baisse du cours de bourse. Les dividendes mondiaux vont peut-\u00eatre \u00e9tablir un nouveau record en 2021 (ils ont plus que doubl\u00e9 depuis la \"crise financi\u00e8re\" de 2008 : https://lnkd.in/eRSKbH-Y ), tout comme les rachats d'actions (https://lnkd.in/eEp4-fyN ). \n\nCes deux op\u00e9rations conjugu\u00e9es vont repr\u00e9senter en 2021 (dans le monde) plus que le PIB fran\u00e7ais... et 25 fois les montants qui devraient \u00eatre allou\u00e9es au climat au titre du \"Fonds Vert\" pr\u00e9vu dans le cadre de la Convention Climat.\n\nCet actionnaire qui a tant besoin d'\u00eatre rassur\u00e9, il s'appelle souvent un \u00e9pargnant. Les \"investisseurs\", ce sont avant tout les particuliers de la terre enti\u00e8re qui ont de l'\u00e9pargne financi\u00e8re, pour capitaliser en vue de leur retraite (les fameux \"fonds de pension\"), ou pour placer leurs \u00e9conomies (l'assurance vie par exemple). \n\nToute personne qui est \u00e0 la fois \"citoyen(ne) engag\u00e9(e)\" et \u00e9pargnante a donc un dilemme \u00e0 r\u00e9soudre : que privil\u00e9gier quand rendement et climat ne sont pas compatibles, ce qui sera tr\u00e8s souvent le cas avec la convention \u00e9conomique ignorant la contribution des ressources naturelles ? Tant que l'\u00e9pargnant dira \"rendement\" il ne faut pas s'attendre \u00e0 ce que les dirigeants r\u00e9pondent \"climat\". Le difficile probl\u00e8me de la coh\u00e9rence nous concerne tous..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6886933749800456192,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6886933750400249856,urn:li:activity:6886933750400249856,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 37, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6886933750400249856,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6886933750400249856,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6886933750400249856", + "threadId": "activity:6886933750400249856", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6886933750400249856", + "urn": "urn:li:activity:6886933750400249856", + "numComments": 66, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6886933750400249856", + "reactionTypeCounts": [ + { + "count": 417, + "reactionType": "LIKE" + }, + { + "count": 54, + "reactionType": "MAYBE" + }, + { + "count": 42, + "reactionType": "INTEREST" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6886933750400249856", + "numLikes": 536, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6886933750400249856", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 536, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6886627026086739968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6886627026086739968", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6886627026086739968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6886627026086739968)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_bourse-la-finance-durable-principale-priorit%C3%A9-activity-6886627026086739968-jKie?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6886627024862019584", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6886627026086739968", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6886627026086739968,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6886627026086739968,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6886627024862019584", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "o5X0jyjiXd+7QFzQi+4j8g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6886627026086739968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8011170330968942870", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675906906037?e=1677240000&v=beta&t=maZ0eTNe5GV9yLzjV1xBD8X6fz457rHQCMgL2xHtYIs", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675906906037?e=1677240000&v=beta&t=BzU7cGu_gSOwp0iutVpkLFyBh4lHLJblptI76qZcMBo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675906906037?e=1677240000&v=beta&t=kJ_CmGBrcrHW_5VDKLb-BRBuGxYmLxNAfjpaYO0XhPs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675906906037?e=1677240000&v=beta&t=yKwQltsjLdS5ovj_ooSO8RQStI6TqJ4j9KoOMvwyHgI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHPCJWjy9lImw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8011170330968942870)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8011170330968942870)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Bourse : la finance durable, principale priorit\u00e9 de l'AMF pour 2022 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/les-priorites-du-gendarme-boursier-pour-2022-1376833" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Bourse\u00a0: la finance durable, principale priorit\u00e9 de l'AMF pour 2022" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6886627024862019584,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Autorit\u00e9 des March\u00e9s Financiers a inscrit \u00e0 son agenda de 2022 de \"se mobiliser pour faire avancer la finance durable\". Dans le document directement publi\u00e9 par l'AMF (https://lnkd.in/eyyYBCUk ) on peut lire qu'un des objectifs est \"l'action de supervision de l\u2019AMF s\u2019intensifie, notamment pour pr\u00e9venir le risque de greenwashing\" et \"portera une attention particuli\u00e8re aux enjeux climatiques\".\n\nIl est heureux que l'AMF note dans son document que \"La transition vers une finance durable d\u00e9pend (...) de la mont\u00e9e en expertise de l\u2019ensemble de l\u2019\u00e9cosyst\u00e8me financier et de l\u2019appropriation par les \u00e9pargnants des concepts cl\u00e9s. C\u2019est pourquoi, l\u2019AMF a mis en place, en concertation avec le Haut conseil certificateur de Place, un nouveau module de v\u00e9rification des connaissances des professionnels portant sur la finance durable.\"\n\nLe Diable \u00e9tant dans les d\u00e9tails, il faudrait bien \u00e9videmment aller regarder d'un peu pr\u00e8s en quoi consistent les connaissances qui seront v\u00e9rifi\u00e9es, et notamment si elles incluent d'\u00eatre capable de comprendre le fonctionnement \"physique\" de l'\u00e9conomie (d\u00e9taill\u00e9 l\u00e0 par exemple, malgr\u00e9 le titre : https://lnkd.in/gPsGK-F ), la diff\u00e9rence entre responsabilit\u00e9 et d\u00e9pendance (sachant que le risque de transition est port\u00e9 par les \u00e9missions dont on d\u00e9pend - le fameux scope 3 : https://lnkd.in/eVSer7fm - et non les seules \u00e9missions dont on est juridiquement responsable), ou encore ce que signifie un \"alignement\" d'une entreprise avec une baisse globale des \u00e9missions plan\u00e9taires (probl\u00e8me qui n'est pas r\u00e9solu par une exclusion des portefeuilles d'investissement).\n\nLa question de savoir si la finance peut d'elle-m\u00eame r\u00e9orienter l'\u00e9conomie vers du d\u00e9carbon\u00e9 est un long d\u00e9bat, avec de bons arguments du c\u00f4t\u00e9 de ceux qui doutent que cela soit aussi simple que de le vouloir (https://lnkd.in/dRS9vNZ ). Mais il est par contre \u00e9vident que la finance doit mieux comprendre ce qu'elle fait, et que, plus important encore, le r\u00e9gulateur doit comprendre quel est l'impact climatique des r\u00e9gul\u00e9s pour agir en cons\u00e9quence.\n\nJe r\u00eave du jour o\u00f9 l'AMF suspendra la cotation d'une entreprise parce que ses documents de r\u00e9f\u00e9rence ne sont pas au bon niveau sur les obligations de reporting ou les actions pour se d\u00e9risquer en mati\u00e8re d'\u00e9missions de gaz \u00e0 effet de serre, ou retirera son agr\u00e9ment pour un v\u00e9hicule d'investissement pour les m\u00eames raisons. C'est probablement le prix \u00e0 payer pour faire monter d'un cran le s\u00e9rieux apport\u00e9 au sujet climat parmi les \"oblig\u00e9s\"." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6886627024862019584,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6886627026086739968,urn:li:activity:6886627026086739968,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6886627026086739968,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6886627026086739968,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6886627026086739968", + "threadId": "activity:6886627026086739968", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6886627026086739968", + "urn": "urn:li:activity:6886627026086739968", + "numComments": 44, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6886627026086739968", + "reactionTypeCounts": [ + { + "count": 542, + "reactionType": "LIKE" + }, + { + "count": 44, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "INTEREST" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6886627026086739968", + "numLikes": 653, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6886627026086739968", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 653, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6886215002915713024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6886215002915713024", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6886215002915713024)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6886215002915713024)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-interview-sur-le-site-du-jdd-sur-la-taxonomie-activity-6886215002915713024-OH_T?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6886215002404007936", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6886215002915713024", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6886215002915713024,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6886215002915713024,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6886215002404007936", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "RGt778C+z6G9xi75DC5Snw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6886215002915713024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6999798389272284256", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 707, + "fileIdentifyingUrlPathSegment": "800/0/1676558263840?e=1677240000&v=beta&t=CH7bdzWcnoG208ulm8tXmdufcf6nt7RO0FolNm4n738", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 707, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676558263840?e=1677240000&v=beta&t=cHWz6bGBrNxWMl-nbuSXNq2SxsptvxiSEDy-eYYJUFs", + "expiresAt": 1677240000000, + "height": 471 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676558263840?e=1677240000&v=beta&t=Xqw1er18fhEXac-9VMLXRnR_jYkG4qLX0imQu4UhSFk", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676558263841?e=1677240000&v=beta&t=CMWC-hv6m8LbCo676UBdyl_AQHGThtkBiKFIy-qZtpE", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFp4GlEu49YZQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.6661951909476662 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6999798389272284256)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6999798389272284256)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 8 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Une interview sur le site du JDD sur la taxonomie europ\u00e9enne by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/interviews/une-interview-sur-le-site-du-jdd-sur-la-taxonomie-europeenne/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Une interview sur le site du JDD sur la taxonomie europ\u00e9enne" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6886215002404007936,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est un des sujets du moment, alors j'y suis aussi all\u00e9 de mon petit couplet sur la fameuse \"taxonomie europ\u00e9enne\", dans cette interview publi\u00e9e sur le site du JDD, que je me suis permis de reproduire sur mon site maintenant que nous ne sommes plus Dimanche. \n\nEt comme la question qui a agit\u00e9 tout le monde \u00e9tait de savoir si le nucl\u00e9aire \u00e9tait vert ou pas vert, l'interview comporte aussi quelques questions qui portent sur cette \u00e9nergie, puis par extension sur les \"politiques \u00e9lectriques\" qui peuvent aider \u00e0 la d\u00e9carbonation.\n\nLa question n'a pas \u00e9t\u00e9 pos\u00e9e, donc je me la pose \u00e0 moi-m\u00eame avant d'y r\u00e9pondre :) : la question de la d\u00e9carbonation se r\u00e9sume-t-elle \u00e0 la question du nucl\u00e9aire ? A l'approche d'\u00e9lections pr\u00e9sidentielles, o\u00f9 il sera peut-\u00eatre question des deux, la r\u00e9ponse est \u00e9videmment non. La d\u00e9carbonation est un enjeu soci\u00e9tal ; le nucl\u00e9aire un sujet technique. \n\nLa d\u00e9carbonation suppose de changer notre logiciel \u00e9conomique, notre rapport \u00e0 la limite (voir par exemple cette pr\u00e9face que j'avais r\u00e9dig\u00e9e pour la traduction en fran\u00e7ais de \"The Thirty Year Update\", qui actualisait \"The Limits to Growth\" : https://lnkd.in/dc4MX67T ), nos r\u00e9gimes alimentaires, l'am\u00e9nagement de l'espace (avec le rapport ville/campagne mais aussi la taille des logements), l'\u00e9quilibre entre individualisme et collectif, le rapport au temps et \u00e0 la vitesse, la mani\u00e8re de faire de la g\u00e9opolitique...\n\nLe nucl\u00e9aire, c'est une partie facile dans l'affaire. C'est pour cela que de ne pas en faire est se compliquer inutilement la vie, mais en faire c'est r\u00e9soudre 5% du probl\u00e8me." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6886215002404007936,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6886215002915713024,urn:li:activity:6886215002915713024,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6886215002915713024,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6886215002915713024,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6886215002915713024", + "threadId": "activity:6886215002915713024", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6886215002915713024", + "urn": "urn:li:activity:6886215002915713024", + "numComments": 40, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6886215002915713024", + "reactionTypeCounts": [ + { + "count": 484, + "reactionType": "LIKE" + }, + { + "count": 37, + "reactionType": "INTEREST" + }, + { + "count": 31, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6886215002915713024", + "numLikes": 572, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6886215002915713024", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 572, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6885893809478152192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6885893809478152192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6885893809478152192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6885893809478152192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_dont-look-up-un-film-r%C3%A9aliste-qui-fait-activity-6885893809478152192-5M5D?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6885893809033543680", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6885893809478152192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6885893809478152192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6885893809478152192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6885893809033543680", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "gG2fYAI75Y3SY9PqqoJ9XA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6885893809478152192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9027712662217430119", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675693836945?e=1677240000&v=beta&t=GrEmGFCpm8hY_ysEUvFDnvtwEZZfLG6fYprSFHiQgys", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675693836945?e=1677240000&v=beta&t=p5AW9E24m9n6Be0xjXQUeUmqz9XbE8ZrZa6XRuAnh_Q", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675693836946?e=1677240000&v=beta&t=bFREVzakmN2DuVbBs23WlQBlemq9WnlgdxqqrZnupaI", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675693836946?e=1677240000&v=beta&t=SH8iTPQOVIRauHflHQHje57w0bRtfff6K3qQBbzrEJ0", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH8KJWJ9lMnGw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9027712662217430119)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9027712662217430119)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \"Don't Look Up\" : un film r\u00e9aliste qui fait \"vibrer\" le public dans le contexte de changement climatique by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900112569-don-t-look-up-un-film-realiste-qui-fait-vibrer-le-public-dans-le-contexte-de-changement-climatique" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\"Don't Look Up\" : un film r\u00e9aliste qui fait \"vibrer\" le public dans le contexte de changement climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6885893809033543680,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Encore un petit coup de \"Don't Look Up\", \u00e0 destination des matinaux du Samedi qui \u00e9coutent RTL. Je remercie (quand m\u00eame) la radio qui m'a laiss\u00e9 \u00e9voquer \u00e0 l'antenne la \"frivolit\u00e9 des media\" (due au besoin de ne pas faire fuir l'audience, c'est-\u00e0-dire les recettes de la publicit\u00e9), qui, dans le film, est identifi\u00e9e comme une des causes de l'\u00e9chec des scientifiques \u00e0 faire passer leur message.\n\nEn 3 minutes il n'\u00e9tait \u00e9videmment pas question de faire une analyse sociologique compl\u00e8te de la situation \u00e9voqu\u00e9e dans ce film (ni du monde r\u00e9el confront\u00e9 au changement climatique), mais juste de rappeler que, pour cette oeuvre, la fameuse maxime \"Les personnages et les situations de ce r\u00e9cit \u00e9tant purement fictifs, toute ressemblance avec des personnes ou des situations existantes ou ayant exist\u00e9 ne saurait \u00eatre que fortuite\" ne s'applique pas vraiment.\n\nIl convient \u00e9videment de ne pas s'attarder sur le doigt du sage qui montre la Lune, ce qui signifierait \u00e9carter le fond du message parce que la qualit\u00e9 artistique du film ne semble pas au rendez-vous, ou parce que les acteurs principaux ont par ailleurs un mode de vie en total d\u00e9calage avec ce qui est souhaitable pour limiter le r\u00e9chauffement climatique (remarque valable pour \u00e0 peu pr\u00e8s toutes les \"stars\" de cin\u00e9ma, et qui explique peut-\u00eatre pourquoi elles sont si peu nombreuses \u00e0 se mobiliser pour des causes environnementales). \n\nL'int\u00e9r\u00eat premier de ce film est bien de nous alerter sur notre \"somnambulisme\", et notre extraordinaire capacit\u00e9 collective \u00e0 mobiliser une tr\u00e8s large fraction de notre jus de cerveau \u00e0 am\u00e9liorer des gadgets anecdotiques alors que nous n\u00e9gligeons une partie de l'essentiel." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6885893809033543680,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6885893809478152192,urn:li:activity:6885893809478152192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 62, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6885893809478152192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6885893809478152192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6885893809478152192", + "threadId": "activity:6885893809478152192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6885893809478152192", + "urn": "urn:li:activity:6885893809478152192", + "numComments": 123, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6885893809478152192", + "reactionTypeCounts": [ + { + "count": 1945, + "reactionType": "LIKE" + }, + { + "count": 85, + "reactionType": "PRAISE" + }, + { + "count": 53, + "reactionType": "EMPATHY" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 20, + "reactionType": "MAYBE" + }, + { + "count": 16, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6885893809478152192", + "numLikes": 2142, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6885893809478152192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2142, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6885535941310627840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6885535941310627840", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6885535941310627840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6885535941310627840)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_hausse-des-prix-de-l%C3%A9lectricit%C3%A9-comment-activity-6885535941310627840-mtaV?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6885535940530507777", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6885535941310627840", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6885535941310627840,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6885535941310627840,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6885535940530507777", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "52rXXJsPjZiuH3SXtE+veQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6885535941310627840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7661439313599650628", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675767424364?e=1677240000&v=beta&t=1qPqpWnn4RXjmrV4qYYYZOyjz1XurfZJf34cwcJk32E", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675767424364?e=1677240000&v=beta&t=yoEsDlX-fMyGecCdWqmxqnLvT4xsiTfUx_PN8zI_pfo", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675767424364?e=1677240000&v=beta&t=D2wjEoqc6FhqfFyq7NleH3ndfy-X6gY7GRrEvEAl84s", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675767424364?e=1677240000&v=beta&t=qzTocDZHzvC8_3-nGmGnjaiGY9FKMkzFBuGjlz-5QFY", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFgY264T23xTg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7661439313599650628)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7661439313599650628)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "europe1.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Hausse des prix de l\u2019\u00e9lectricit\u00e9 : comment le gouvernement pr\u00e9pare un nouveau geste by europe1.fr", + "actionTarget": "https://www.europe1.fr/economie/hausse-des-prix-de-lelectricite-le-gouvernement-prepare-un-nouveau-geste-4085999" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Hausse des prix de l\u2019\u00e9lectricit\u00e9 : comment le gouvernement pr\u00e9pare un nouveau geste" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6885535940530507777,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s avoir cr\u00e9\u00e9 un \"march\u00e9 de l'\u00e9lectricit\u00e9\" qui n'avait aucune esp\u00e8ce de pertinence, les pouvoirs publics, mais aussi les consommateurs, se rendent compte que \"pas de march\u00e9\" est plus simple pour avoir des prix stables quand les facteurs de production font du yoyo (quelle d\u00e9couverte !).\n\nDans un syst\u00e8me int\u00e9gr\u00e9 et r\u00e9gul\u00e9, si le gaz se met \u00e0 valoir beaucoup plus cher, cela augmente le cout de production d'un peu moins de 5% de la production \u00e9lectrique fran\u00e7aise (celle qui est faite au gaz). 5% de la production qui passe de 40 \u00e0 400 euros le MWh, c'est 20 euros de plus en moyenne par MWh livr\u00e9 au consommateur, soit beaucoup moins que ce que le gouvernement a mis \u00e0 la charge des m\u00eames consommateurs avec les augmentations de prix dues au d\u00e9ploiement du solaire et de l'\u00e9olien (la fameuse CSPE). Pas de quoi en faire un fromage.\n\nMais dans un march\u00e9 ouvert, le prix de l'ensemble de ce qui est vendu s'ajuste sur le cout de production le plus \u00e9lev\u00e9 du moment. Et l\u00e0 cela signifie que l'ensemble de ce qui est produit se vend beaucoup plus cher, la hausse allant dans la poche des producteurs et des interm\u00e9diaires.\n\nOn en revient alors \u00e0 cette demande \u00e9ternelle des acteurs du priv\u00e9 : privatiser les profits (quand tout va bien) et socialiser les pertes (quand tout va mal). Le beurre et l'argent du beurre.... \n\nDans les demandes du priv\u00e9 (particuliers inclus) arrive l'id\u00e9e d'augmenter la part de l'\u00e9lectricit\u00e9 que EDF produit et est oblig\u00e9 de vendre \u00e0 perte (je dis bien \u00e0 perte) \u00e0 ses concurrents et aux gros consommateurs industriels, l'ARENH (acc\u00e8s r\u00e9gul\u00e9 \u00e0 l'\u00e9lectricit\u00e9 nucl\u00e9aire historique). Ce tarif est une invention des adorateurs du march\u00e9 qui a conduit, quand \"tout allait bien\", \u00e0 transf\u00e9rer de la rente d'EDF \u00e0 des acteurs priv\u00e9s (qui n'ont rien investi du tout avec cet argent qui leur est tomb\u00e9 du ciel) parce que ca allait cens\u00e9ment \u00eatre mieux pour tout le monde.\n\nPour tenter de \"r\u00e9parer\" les cons\u00e9quences de cette erreur (avoir cr\u00e9\u00e9 un syst\u00e8me \u00e9clat\u00e9 et complexe) on va en faire une deuxi\u00e8me : faire les poches du gestionnaire des centrales pour tenter de corriger \u00e0 la vol\u00e9e des prix excessifs n\u00e9s du syst\u00e8me d\u00e9faillant. Ca ne supprimera pas la volatilit\u00e9 mais appauvrira l'op\u00e9rateur \u00e0 qui on demande par ailleurs de garantir un syst\u00e8me stable et fiable (et, en plus, il n'est pas du tout sur que les \"concurrents\" qui ont acc\u00e8s \u00e0 plus d'arenh r\u00e9percutent \u00e0 leurs clients la totalit\u00e9 du gain pour eux !).\n\nIl y aurait beaucoup plus simple : constater que, dans un monde volatil parce que physiquement contraint (rappelons que la Mer du Nord a entam\u00e9 sa descente terminale sur sa production de gaz, et que les russes ne nous en fourniront pas \u00e9ternellement car leurs gisements s'\u00e9puiseront aussi), le march\u00e9 \u00e0 l'aval n'a pas d'utilit\u00e9, et revenir au syst\u00e8me int\u00e9gr\u00e9 d'avant (ce qui suppose \u00e9videmment de faire accepter \u00e0 la Commission que le march\u00e9 n'est pas l'alpha et l'om\u00e9ga en toutes circonstances). Une ambition pour la pr\u00e9sidence fran\u00e7aise de l'Union ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6885535940530507777,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6885535941310627840,urn:li:activity:6885535941310627840,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 131, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6885535941310627840,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6885535941310627840,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6885535941310627840", + "threadId": "activity:6885535941310627840", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6885535941310627840", + "urn": "urn:li:activity:6885535941310627840", + "numComments": 629, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6885535941310627840", + "reactionTypeCounts": [ + { + "count": 3656, + "reactionType": "LIKE" + }, + { + "count": 346, + "reactionType": "PRAISE" + }, + { + "count": 330, + "reactionType": "MAYBE" + }, + { + "count": 202, + "reactionType": "INTEREST" + }, + { + "count": 42, + "reactionType": "APPRECIATION" + }, + { + "count": 41, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6885535941310627840", + "numLikes": 4617, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6885535941310627840", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4617, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6885248709349691392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:member:183424051", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Julie", + "lastName": "Daunay", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "occupation": "Head of Net Zero Practice - Recruitment Manager - Carbone 4", + "objectUrn": "urn:li:member:183424051", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1650829686649?e=1681948800&v=beta&t=Rf2Y7qUU2TPTZ05cutAwcO2iqnMo6t4Hfdopndutc84", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1650829686649?e=1681948800&v=beta&t=iMzmvgrl1MTYYHJJfeJUuNR5zRI82Hu8yuJuHBtG3gY", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHpQSm2-ui2_A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "julie-daunay-21751851", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650545325320?e=1681948800&v=beta&t=BCTrL79EHAUp5-EdSbkqYTNDcxPc9AUMCI6h9gW-KX8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650545325320?e=1681948800&v=beta&t=6NtVaz_3C-PQ4tdvK-J5QjbsoLz-_d0DOhJGbRQ1Zaw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650545325320?e=1681948800&v=beta&t=e8ZXvJlwKgYItYuVoI7fOcTwGtuwzQpPTcuGOyuWsSM", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650545325320?e=1681948800&v=beta&t=sHGCLwwMDPrkr1x8b9A4SLdS5onZW3A7jviDYbg_ElY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQGS01GH3FEefQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "MPWjfOeIQmunRU6OrKE6Jg==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 3rd+" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 12, + "miniProfile": { + "firstName": "Julie", + "lastName": "Daunay", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "occupation": "Head of Net Zero Practice - Recruitment Manager - Carbone 4", + "objectUrn": "urn:li:member:183424051", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1650829686649?e=1681948800&v=beta&t=Rf2Y7qUU2TPTZ05cutAwcO2iqnMo6t4Hfdopndutc84", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1650829686649?e=1681948800&v=beta&t=iMzmvgrl1MTYYHJJfeJUuNR5zRI82Hu8yuJuHBtG3gY", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHpQSm2-ui2_A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "julie-daunay-21751851", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650545325320?e=1681948800&v=beta&t=BCTrL79EHAUp5-EdSbkqYTNDcxPc9AUMCI6h9gW-KX8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650545325320?e=1681948800&v=beta&t=6NtVaz_3C-PQ4tdvK-J5QjbsoLz-_d0DOhJGbRQ1Zaw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650545325320?e=1681948800&v=beta&t=e8ZXvJlwKgYItYuVoI7fOcTwGtuwzQpPTcuGOyuWsSM", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650545325320?e=1681948800&v=beta&t=sHGCLwwMDPrkr1x8b9A4SLdS5onZW3A7jviDYbg_ElY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQGS01GH3FEefQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "MPWjfOeIQmunRU6OrKE6Jg==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Julie Daunay" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Julie Daunay\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/julie-daunay-21751851?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Head of Net Zero Practice - Recruitment Manager - Carbone 4" + }, + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "following": false, + "trackingUrn": "urn:li:member:183424051" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followMember" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6885162940161384448,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6885162940161384448", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6885162940161384448)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6885162940161384448)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/activity-6885162940161384448-5DMC?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6885162939595161600", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "authorUrn": "urn:li:member:183424051", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6885162940161384448,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6885162940161384448,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6885162939595161600", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "F/mjPpmy1TDtUH3/iSz/fQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6885162940161384448,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8087299201223607359", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675850530569?e=1677240000&v=beta&t=QTM1-fIyGMOTP5x9wczkHD8pruHr6ZtBlsEV3erJdS4", + "expiresAt": 1677240000000, + "height": 1005 + }, + { + "width": 637, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675850530569?e=1677240000&v=beta&t=iddzTGn4h5oN7QHBqefwJ-1w2J4folQKEQxZyrtZW4w", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675850530569?e=1677240000&v=beta&t=iz9wsnLuSHozBvS3DI18xcubTjN6YUuUpHPuQoAaffk", + "expiresAt": 1677240000000, + "height": 201 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675850530569?e=1677240000&v=beta&t=kbrSwmwLBO0HQ1fsjnPxEPoP_sLd8Q9jxbbO1OWmO6w", + "expiresAt": 1677240000000, + "height": 603 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGmC1tNHfUKJw/articleshare-shrink_" + }, + "displayAspectRatio": 1.25625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8087299201223607359)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8087299201223607359)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carbone 4 - Nous rejoindre by carbone4.com", + "actionTarget": "https://www.carbone4.com/jobs" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carbone 4 - Nous rejoindre" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6885162939595161600,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\ud83d\udc32 Nouvelle ann\u00e9e, nouveaux d\u00e9fis ! \ud83c\udf0d\n\nOn n'en manque pas chez Carbone 4, nombreuses sont les entreprises qui sont sorties du \"d\u00e9ni cosmique\" ;) \u2604\ufe0f et qui toquent \u00e0 notre porte pour mettre en place des strat\u00e9gies climat ambitieuses \ud83e\uddd7\ud83c\udffd\u200d\u2640\ufe0f et incontournables !\n\n\ud83d\udd05 Nous avons toujours besoin d'\u00e2mes engag\u00e9es, curieuses, dynamiques pour les accompagner ! Alors consultez nos offres et postulez !\n\n\ud83d\udce2 Carbone 4 recrute \u2757\ufe0f\n\n- la Pratique \u00c9nergie \ud83d\udd06 cherche un\u00b7e Consultant\u00b7e ayant 1 \u00e0 2 ans d'exp\u00e9rience dans le Conseil et/ou le secteur de l'\u00e9nergie pour accompagner les \u00e9nerg\u00e9ticiens dans la d\u00e9carbonation de leur production !\n\n- la Pratique Agri-Agro \ud83c\udf3e cherche un\u00b7e Consultant Senior ayant 4 ans d'exp\u00e9rience dans un cabinet de conseil et/ou dans une entreprise du secteur de l\u2019agriculture ou de l\u2019agroalimentaire\n\n- la Pratique Finance \ud83d\udcb5 cherche un\u00b7e Consultant\u00b7e Senior ayant 3 \u00e0 5 ans\u00a0d\u2019exp\u00e9rience professionnelle, dont\u00a0au moins 2 ans en lien avec le secteur de la finance et/ou du conseil\u00a0(ou inspection g\u00e9n\u00e9rale) en vue d'aider les acteurs financiers \u00e0 aligner leurs investissements avec une trajectoire 1,5\u00b0C.\n\n- la Pratique Performance Climat cherche un\u00b7e Consultant\u00b7e ayant une exp\u00e9rience dans le secteur de l'IT pour adresser les enjeux climat du secteur \ud83d\udcbb\n\n\ud83c\udf0f Si l'un de ces postes vous int\u00e9resse, rendez-vous sur notre site pour postuler en fournissant votre CV et lettre de motivation :" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6885162939595161600,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6885162940161384448,urn:li:activity:6885162940161384448,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 4, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6885162940161384448,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6885162940161384448,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6885162940161384448", + "threadId": "activity:6885162940161384448", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6885162940161384448", + "urn": "urn:li:activity:6885162940161384448", + "numComments": 5, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6885162940161384448", + "reactionTypeCounts": [ + { + "count": 91, + "reactionType": "LIKE" + }, + { + "count": 3, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "INTEREST" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6885162940161384448", + "numLikes": 97, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6885162940161384448", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 97, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6885248709349691392", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6885248709349691392)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6885248709349691392)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carbone-4-nous-rejoindre-activity-6885248709349691392-efLS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6885248708938661888", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6885248709349691392", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6885248709349691392,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6885248709349691392,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6885248708938661888", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "F/mjPpmy1TDtUH3/iSz/fQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6885248709349691392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6885248708938661888,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Carbone 4 propose actuellement 12 offres d'emploi pour la branche conseil et 1 pour MyCO2. 4 sont d\u00e9taill\u00e9es ci-dessous et les autres sont disponibles sur https://lnkd.in/dxzysp75 (o\u00f9 se trouvent l'ensemble des descriptions d\u00e9taill\u00e9es)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6885248708938661888,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6885248709349691392,urn:li:activity:6885248709349691392,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6885248709349691392,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6885248709349691392,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6885248709349691392", + "threadId": "activity:6885248709349691392", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6885248709349691392", + "urn": "urn:li:activity:6885248709349691392", + "numComments": 35, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6885248709349691392", + "reactionTypeCounts": [ + { + "count": 332, + "reactionType": "LIKE" + }, + { + "count": 14, + "reactionType": "EMPATHY" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6885248709349691392", + "numLikes": 368, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6885248709349691392", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 368, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6885125442265763840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6885125442265763840", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6885125442265763840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6885125442265763840)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_r%C3%A9chauffement-climatique-lavenir-d%C3%A9pendra-activity-6885125442265763840-z8MX?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6885125441665990656", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6885125442265763840", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6885125442265763840,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6885125442265763840,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6885125441665990656", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "UzkFDox7Cmh/aluErsa94A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6885125442265763840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8322528355891137325", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675760846891?e=1677240000&v=beta&t=mG0wJnEXAUkLrgYPc6PfVoCroBgW3o4YBA4UdDAEYME", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675760846891?e=1677240000&v=beta&t=TuXHR6zrq72SqkUtu1FKdMzjipaaGa1V2edNUeNY4ao", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675760846891?e=1677240000&v=beta&t=NPPPnXZ28mEV2Cnacgi-cL4_55-mUJ3QjAuCNOSq8ls", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675760846891?e=1677240000&v=beta&t=9n1SS0YDyvBvYZpIFc_DzFdQ4r-fqjl9Bf1jH7lkbXI", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEzWGxaLmQiSw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8322528355891137325)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8322528355891137325)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: R\u00e9chauffement climatique : \u00ab L\u2019avenir d\u00e9pendra \u00e9troitement des d\u00e9cisions qui devront \u00eatre prises d\u00e8s cette ann\u00e9e \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/economie/article/2022/01/03/rechauffement-climatique-l-avenir-dependra-etroitement-des-decisions-qui-devront-etre-prises-des-cette-annee_6108022_3234.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "R\u00e9chauffement climatique : \u00ab\u00a0L\u2019avenir d\u00e9pendra \u00e9troitement des d\u00e9cisions qui devront \u00eatre prises d\u00e8s cette ann\u00e9e\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6885125441665990656,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un \u00e9ditorial publi\u00e9 d\u00e9but janvier dans Le Monde invoque Le Monde sans Fin et la le\u00e7on inaugurale de Christian Gollier au Coll\u00e8ge de France (que je confesse ne pas avoir regard\u00e9e mais c'est l\u00e0 : https://lnkd.in/eaG73nHk ) pour souligner que notre avenir ne peut pas se concevoir comme une simple continuation du pass\u00e9.\n\nLe propos n'a rien de r\u00e9volutionnaire en soi. Ce qui est d\u00e9j\u00e0 plus int\u00e9ressant, c'est que cet \u00e9ditorial rappelle que l'\u00e9conomie mondiale s'est formidablement d\u00e9velopp\u00e9e sur les deux derniers si\u00e8cles gr\u00e2ce \u00e0 une tr\u00e8s forte augmentation du parc de machines en service, permise par l'essor des combustibles fossiles. \n\nL'auteur fait donc sienne une lecture avant tout physique de nos activit\u00e9s productives, et mentionne m\u00eame au passage le nombre \"d'\u00e9quivalent esclave\" dont dispose un fran\u00e7ais moyen (gr\u00e2ce aux machines), issu de la BD pr\u00e9cit\u00e9e. Il en tire logiquement la conclusion qu'un monde qui se d\u00e9carbone - volontairement ou pas - est un monde plus sobre.\n\nIl conclut en \u00e9crivant : \"G\u00e9rer ce basculement in\u00e9vitable vers un monde plus cher, car plus \u00e9conome, mais aussi plus instable, devrait figurer en t\u00eate des pr\u00e9occupations des politiques en ce d\u00e9but 2022. Un plan \u00e0 dix ans. En auront-ils le courage\u00a0?\".\n\nJe ne sais pas si les politiques en auront le courage (je le souhaite, mais c'est une autre histoire !). Mais un plan, c'est tr\u00e8s exactement ce que nous allons essayer de leur fournir au travers du \"plan de transformation de l'\u00e9conomie fran\u00e7aise\", qui marie sobri\u00e9t\u00e9 et avanc\u00e9es techniques r\u00e9alistes : https://lnkd.in/dNARPrU\n\nCar en d\u00e9mocratie le courage politique est rarement une affaire de g\u00e9n\u00e9ration spontan\u00e9e. Il doit \u00eatre port\u00e9 par le \"courage\" des demandes de la soci\u00e9t\u00e9 civile." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6885125441665990656,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6885125442265763840,urn:li:activity:6885125442265763840,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 38, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6885125442265763840,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6885125442265763840,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6885125442265763840", + "threadId": "activity:6885125442265763840", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6885125442265763840", + "urn": "urn:li:activity:6885125442265763840", + "numComments": 45, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6885125442265763840", + "reactionTypeCounts": [ + { + "count": 1151, + "reactionType": "LIKE" + }, + { + "count": 72, + "reactionType": "PRAISE" + }, + { + "count": 65, + "reactionType": "INTEREST" + }, + { + "count": 27, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6885125442265763840", + "numLikes": 1342, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6885125442265763840", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1342, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6884771945993273344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6884771945993273344", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6884771945993273344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6884771945993273344)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-trois-d%C3%A9cennies-nous-allons-consommer-activity-6884771945993273344-Xeaa?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6884771945242484738", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6884771945993273344", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6884771945993273344,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6884771945993273344,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6884771945242484738", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "/HTjuCoJ52B7iaI4kGRgkg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6884771945993273344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8427785751131239560", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675781569209?e=1677240000&v=beta&t=6vV_eWnsajQmCtczlEtu-cN8vXP7MgFSDO1G9r2L1ng", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675781569209?e=1677240000&v=beta&t=41Ai5WaR38U-ptL-Jh2iCVygXmor4Ati_jK1Q7lJdT0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675781569209?e=1677240000&v=beta&t=DzbtyC5H71FNHAOu-L8qGj6dHhILPMcV5LyhMRwOTT8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675781569210?e=1677240000&v=beta&t=DtQObT9OH57UtrDeJmZaNqHmlfYlYQnVZ580Z4kfUJg", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQG-WyP1vyP2mA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8427785751131239560)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8427785751131239560)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab En trois d\u00e9cennies, nous allons consommer 60 % des ressources de cuivre connues \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/en-trois-decennies-nous-allons-consommer-60-des-ressources-de-cuivre-connues-1377059" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0En trois d\u00e9cennies, nous allons consommer 60\u00a0% des ressources de cuivre connues\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6884771945242484738,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A quelques nuances pr\u00e8s, cette interview - parue dans Les Echos - de \"quelqu'un\" \u00e0 l'IFPEN (il semble manquer le chap\u00f4, de telle sorte que l'on ne sait pas qui exactement est interrog\u00e9 !) aurait pu \u00e9maner du Shift Project.\n\nIl y est question de la disponibilit\u00e9 des m\u00e9taux pour assurer la transition vers un monde bas carbone dans un contexte d'opulence mat\u00e9rielle pr\u00e9serv\u00e9e (parce que sinon passer \u00e0 un monde bas carbone sans aucune production industrielle est assez facile :) )., et surtout de ce qui pourrait venir contrarier nos jolis plans de croissance verte.\n\nLa tension la plus importante ne viendra pas des terres rares, qui sont en fait des m\u00e9taux \"rarement utilis\u00e9s\", pour lesquels le probl\u00e8me \u00e0 court ou moyen terme est plus g\u00e9opolitique (la Chine concentre une tr\u00e8s large partie des capacit\u00e9s de production actuelles, mais il y a des ressources ailleurs) que physique.\n\nCe sont les m\u00e9taux non ferreux \"ordinaires\" qui risquent d'\u00eatre le plus limitants : cuivre, nickel, \u00e9ventuellement aluminium... Ces \u00e9l\u00e9ments sont bien sur disponibles en abondance dans la cro\u00fbte terrestre, mais pour pouvoir les exploiter il faut une concentration locale minimale (sinon l'\u00e9nergie d'extraction est trop \u00e9lev\u00e9e, car au bout du bout c'est toujours une question d'\u00e9nergie), et cela s'appelle alors... une mine. \n\nA titre d'exemple, les mines de cuivre actuellement en exploitation ont une teneur moyenne en m\u00e9tal de 0,5% en poids (sur le minerai), alors qu'il y a quelques si\u00e8cles les filons les plus riches pouvaient contenir plus de 10% en poids (il y a m\u00eame eu du cuivre natif exploit\u00e9 dans l'antiquit\u00e9). Plus la teneur baisse, plus il faut d'\u00e9nergie pour extraire le m\u00e9tal... qui doit justement servir au syst\u00e8me \u00e9nerg\u00e9tique.\n\nAujourd'hui, le raisonnement sur la disponibilit\u00e9 future est avant tout bas\u00e9 sur les prix. Si les prix ont baiss\u00e9 dans le pass\u00e9, ce qui est le cas, alors cela signifie que cette tendance va se poursuivre, ce que nous traduisons tous par \"il n'y aura pas de probl\u00e8me de disponibilit\u00e9\". Malheureusement l'histoire r\u00e9cente montre qu'il y a de plus en plus de cas de figure o\u00f9 la baisse des prix d'hier n'a pas \u00e9t\u00e9 pr\u00e9dictive de la disponibilit\u00e9 pour le lendemain. L'exemple le plus r\u00e9cent est celui des semi-conducteurs.\n\nIl est donc imp\u00e9ratif de ne pas raisonner uniquement \u00e0 partir de donn\u00e9es \u00e9conomiques quand on s'interroge sur la faisabilit\u00e9 \"physique\" d'un plan \"physique\" (et l'\u00e9nergie c'est physique !) pour l'avenir. Il faut \u00e0 ce titre saluer l'exercice que RTE a effectu\u00e9 dans ses derniers sc\u00e9narii, en consacrant 80 pages \u00e0 l'analyse \"environnementale\" des avenirs possibles, et en regardant justement la question des m\u00e9taux et mat\u00e9riaux n\u00e9cessaires, de l'espace, etc.\n\nDit autrement, les euros d'hier seront de moins en moins pr\u00e9dictifs de l'\u00e9conomie de demain. Il faudra syst\u00e9matiquement revenir aux flux physiques sous-jacents pour tenir un raisonnement opposable." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6884771945242484738,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6884771945993273344,urn:li:activity:6884771945993273344,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 76, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6884771945993273344,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6884771945993273344,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6884771945993273344", + "threadId": "activity:6884771945993273344", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6884771945993273344", + "urn": "urn:li:activity:6884771945993273344", + "numComments": 127, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6884771945993273344", + "reactionTypeCounts": [ + { + "count": 1349, + "reactionType": "LIKE" + }, + { + "count": 224, + "reactionType": "INTEREST" + }, + { + "count": 195, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6884771945993273344", + "numLikes": 1793, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6884771945993273344", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1793, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6884427364365864960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6884427364365864960", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6884427364365864960)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6884427364365864960)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_r%C3%A9chauffement-climatique-jean-marc-jancovici-activity-6884427364365864960-MgcA?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6884427363757690880", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6884427364365864960", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6884427364365864960,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6884427364365864960,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6884427363757690880", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "jBRAqarDJDODY9NLiN1JhA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6884427364365864960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7834911463379986964", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676373345145?e=1677240000&v=beta&t=tUbPLvx9oGLPAjmwZAq6WLfbZ1No4BMyOXsdqcMuwiU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676373345145?e=1677240000&v=beta&t=YjWNqRSVQvmpUzwFigUQkobrhKjxV9-DSIeJw2mi0dM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676373345145?e=1677240000&v=beta&t=DG95-zW76NbENbexv4_w3WyzOrAfZFaWBRUWMaazjH0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676373345145?e=1677240000&v=beta&t=lzbCBAVTdUbx_3L6jru5vaW8u500t3miLEoDvfzrL_w", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHI2zdUZt3YoA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7834911463379986964)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7834911463379986964)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: R\u00e9chauffement climatique : Jean-Marc Jancovici r\u00e9pond \u00e0 la question qu\u2019on se pose tous | Interview on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=69TV0hbSRwY" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Sommes-nous dans un monde r\u00e9git par des machines ? O\u00f9 en est le r\u00e9chauffement climatique ? Jean-Marc Jancovici r\u00e9pond \u00e0 la seule question qu\u2019on se pose tous : Sommes-nous foutus ? Retrouve les news et interview Konbini ! \u25ba Konbini : https://www.konbini." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "R\u00e9chauffement climatique : Jean-Marc Jancovici r\u00e9pond \u00e0 la question qu\u2019on se pose tous | Interview" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6884427363757690880,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce qu'il y a de bien avec les media, c'est le sens de la nuance dont ils font parfois preuve :). A l'occasion de la sortie du Monde sans Fin (r\u00e9approvisionn\u00e9 \u00e0 partir de mi-janvier) Konbini a souhait\u00e9 faire une vid\u00e9o dont le titre est, en toute simplicit\u00e9, \"sommes nous foutus ?\". \n\nSi l'on veut \u00e9viter la r\u00e9ponse \u00e0 la sauce Keynes (qui serait donc \"ce n'est qu'une question de temps\"), le but du jeu \u00e9tait d'essayer d'apporter, en 4 minutes et demie, un peu de nuance et de temporalit\u00e9 derri\u00e8re le oui ou non.\n\nRien de neuf sous le soleil pour celles et ceux qui ont lu la BD ou regard\u00e9 une vid\u00e9o plus longue de votre serviteur. Mais ce clip peut servir de \"teaser\" pour envoyer \u00e0 des gens press\u00e9s, qui, jusqu'\u00e0 maintenant, n'ont pas \u00e9t\u00e9 tr\u00e8s r\u00e9ceptifs sur ces sujets, avec l'espoir que cela servira \u00e0 quelque chose !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6884427363757690880,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6884427364365864960,urn:li:activity:6884427364365864960,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 121, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6884427364365864960,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6884427364365864960,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6884427364365864960", + "threadId": "activity:6884427364365864960", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6884427364365864960", + "urn": "urn:li:activity:6884427364365864960", + "numComments": 171, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6884427364365864960", + "reactionTypeCounts": [ + { + "count": 4341, + "reactionType": "LIKE" + }, + { + "count": 266, + "reactionType": "PRAISE" + }, + { + "count": 140, + "reactionType": "APPRECIATION" + }, + { + "count": 98, + "reactionType": "INTEREST" + }, + { + "count": 64, + "reactionType": "MAYBE" + }, + { + "count": 62, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6884427364365864960", + "numLikes": 4971, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6884427364365864960", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4971, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6884189180335857664,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6884189180335857664", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6884189180335857664)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6884189180335857664)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nucl%C3%A9aire-gaz-bruxelles-l%C3%A8ve-enfin-le-activity-6884189180335857664-tume?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6884189179568291841", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6884189180335857664", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6884189180335857664,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6884189180335857664,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6884189179568291841", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "NYlt75vZyqdi5IBrqvbT2w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6884189180335857664,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9136152313586905076", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675727545968?e=1677240000&v=beta&t=hEKsfLidvrluKTaLZq3vR_OkyA03aEA4f-5VXc0cjto", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675727545968?e=1677240000&v=beta&t=qe2I8ka-Soztqx0iWIbLg50W3jra7xmFrcXrv3m9-yA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675727545968?e=1677240000&v=beta&t=oZhLzgsr4XvhOP6Nhce3u2zqm9p8FvraRflk3pX2fa8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675727545968?e=1677240000&v=beta&t=ySpc88cO9qinmxsmzix9ZryXZRH5Y718O4dTmKi7hc8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGZLmbmf9HgMg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9136152313586905076)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9136152313586905076)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nucl\u00e9aire, gaz : Bruxelles l\u00e8ve enfin le voile sur son projet de label \u00ab vert \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/bruxelles-devoile-un-projet-de-label-vert-pour-le-gaz-et-le-nucleaire-1375922" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nucl\u00e9aire, gaz\u00a0: Bruxelles l\u00e8ve enfin le voile sur son projet de label \u00ab\u00a0vert\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6884189179568291841,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a quelques ann\u00e9es, la Commission europ\u00e9enne a d\u00e9cid\u00e9 de cr\u00e9er une nomenclature des \"investissements verts\". Cela s'appelle la \"taxonomie\" et est destin\u00e9 \u00e0 aider les financiers \u00e0 orienter leurs investissements en faveur d'une \u00e9conomie plus durable. \n\nDepuis le d\u00e9but cette initiative souffre de quelques faiblesses, notamment en voulant un peu trop marier les contraires. D'un c\u00f4t\u00e9 il est question de favoriser la r\u00e9volution (car contribuer \u00e0 une baisse de moiti\u00e9 des \u00e9missions de CO2 en 30 ans \u00e0 \"niveau de vie\" constant, c'est en pratique participer \u00e0 la r\u00e9volution), et de l'autre de ne pas cr\u00e9er une contrainte trop forte - y compris en mati\u00e8re de reporting - pour le monde financier. Pas \u00e9vident !\n\nCette initiative a aussi choisi une approche normative des activit\u00e9s \u00e9ligibles. On comprend ce que cela peut signifier d'\u00eatre \"vert\" - ou pas - quand on parle d'un camion ou d'une installation de traitement des d\u00e9chets organiques, mais c'est moins \u00e9vident pour d'autres activit\u00e9s : comment d\u00e9finir un fabriquant de peintures, un distributeur de produits pour la maison, ou un importateur de meubles qui soit \"vert\" ? \n\nQuoi qu'il en soit, dans cette affaire, il a fallu statuer sur deux sujets qui importaient chacun \u00e0 l'un des deux \"gros\" \u00e9tats de l'Union Europ\u00e9enne : le nucl\u00e9aire et le gaz.\n\nUne b\u00eate logique \"factuelle\" aurait conduit \u00e0 regarder ce que disent les faits. Le nucl\u00e9aire est tr\u00e8s bas carbone, peu dangereux par MWh produit, et g\u00e9n\u00e9rateur de peu de nuisances : il est donc \u00e9ligible. Le gaz est \u00e9metteur de CO2, ce qui suffit \u00e0 le disqualifier puisque le but du jeu est de se d\u00e9barrasser des \u00e9missions. Une taxonomie \"activit\u00e9\" aurait donc du dire oui au nucl\u00e9aire et non au gaz.\n\nMais cela ne correspond pas \u00e0 la mani\u00e8re dont les r\u00e9glementations se font, qui incorporent toujours les jeux de pouvoir et l'envie de conforter la situation existante. La France ne voulait pas d'une r\u00e9glementation qui disqualifie sa principale source de production \u00e9lectrique, ce que voulait au contraire l'Allemagne, pour ne pas se mettre en porte-\u00e0-faux au regard de son choix historique d'abandonner le nucl\u00e9aire pour conserver du charbon.\n\nLa France ne voulait pas de gaz (dont nous n'avons en pratique pas besoin de mani\u00e8re significative aujourd'hui), alors que l'Allemagne oui, pour compl\u00e9ter ses modes intermittents \u00e0 la place du charbon (qui \u00e9met plus).\n\nLa paix des braves a conduit \u00e0 mettre le nucl\u00e9aire et le gaz dans les investissements \u00e9ligibles \"sous condition\". Pour le nucl\u00e9aire, l'enjeu \u00e9tait important, car cette \u00e9nergie est tr\u00e8s sensible aux conditions de financement de l'investissement initial (beaucoup plus que le gaz). Pour un r\u00e9acteur coutant 10 milliards d'euros \u00e0 construire et produisant 60 ans, le passage de 2% \u00e0 10% du rendement exig\u00e9 par les actionnaires et pr\u00eateurs ajoute 90 milliards d'euros de frais financiers sur la dur\u00e9e de construction et de fonctionnement. Une paille !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6884189179568291841,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6884189180335857664,urn:li:activity:6884189180335857664,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 22, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6884189180335857664,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6884189180335857664,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6884189180335857664", + "threadId": "activity:6884189180335857664", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6884189180335857664", + "urn": "urn:li:activity:6884189180335857664", + "numComments": 47, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6884189180335857664", + "reactionTypeCounts": [ + { + "count": 480, + "reactionType": "LIKE" + }, + { + "count": 73, + "reactionType": "INTEREST" + }, + { + "count": 62, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6884189180335857664", + "numLikes": 627, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6884189180335857664", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 627, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6884065047631450113,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6884065047631450113", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6884065047631450113)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6884065047631450113)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-grand-plongeon-du-march%C3%A9-automobile-fran%C3%A7ais-activity-6884065047631450113-TK5Z?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6884065047241404416", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6884065047631450113", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6884065047631450113,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6884065047631450113,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6884065047241404416", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "0uq1Ado3wH6GHydgOLuyuA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6884065047631450113,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8979440872105466734", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676452261377?e=1677240000&v=beta&t=Wo42dkHFCYyOMcLGKWNvmVrOA22eqUfEM-eA0KbbmXo", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676452261378?e=1677240000&v=beta&t=5eOTuqv5CqRvsCU59Fw5MNIcKH3VuIwnCgWMAmr5PcQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676452261378?e=1677240000&v=beta&t=vKJMOepWLnnLBhB2zE6sj8fdUF3Mhvgwb80Su6sRnG0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676452261378?e=1677240000&v=beta&t=AtFgfpTnJFrkadoZMnHvd-NsLvVKxxMpfhNdsNdQplQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQG4ocR6R3XNwg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8979440872105466734)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8979440872105466734)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le grand plongeon du march\u00e9 automobile fran\u00e7ais by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/automobile/le-grand-plongeon-du-marche-automobile-francais-1375854" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le grand plongeon du march\u00e9 automobile fran\u00e7ais" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6884065047241404416,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il se vendait un peu plus de 2 millions de voitures particuli\u00e8res neuves par an en France jusqu'en 2019. En 2020 et 2021, ce m\u00eame segment a connu 25% de ventes en moins, soit 1,65 million par an.\n\nDans le monde fini, la baisse des ventes de voitures n'est qu'une question de temps. Ces objets de 1 \u00e0 2 tonnes faits de m\u00e9tal - essentiellement de l'acier mais aussi du cuivre, du nickel, du plomb, de l'\u00e9tain, de l'aluminium, de l'or m\u00eame (pour les composants \u00e9lectroniques), du platine (dans les pots catalytiques), etc, de d\u00e9riv\u00e9s p\u00e9troliers (plastiques, lubrifiants, textiles, pneus), de verre, et j'en passe, ne peuvent \u00eatre produits en quantit\u00e9s ind\u00e9finiment croissantes.\n\nLe covid est-il le \"d\u00e9but de la fin\" pour les ventes de ces grosses machines ? L'avenir le dira, mais le fait est que ce ralentissement est du \u00e0 des limites physiques : sur les semi-conducteurs, mais aussi sur des commodit\u00e9s de base comme l'acier ou le plastique. \n\nDans le plan de transformation de l'\u00e9conomie fran\u00e7aise du Shift Project, et plus pr\u00e9cis\u00e9ment son volet \"industrie automobile\" (https://lnkd.in/eqhr44uN ), nous pr\u00e9conisons de baisser d\u00e9lib\u00e9r\u00e9ment les volumes fabriqu\u00e9s, pour se concentrer sur les petits mod\u00e8les et les v\u00e9hicules \u00e9lectriques.\n\nDit autrement, apr\u00e8s avoir fortement cru, le secteur automobile devra un jour d\u00e9cro\u00eetre. C'est juste \"physique\" pour une industrie qui est tr\u00e8s d\u00e9pendante de ressources physiques non renouvelables, et ne pas l'envisager est juste opter pour une succession de corrections non planifi\u00e9es comme celle qui est en train de se produire." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6884065047241404416,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6884065047631450113,urn:li:activity:6884065047631450113,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 144, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6884065047631450113,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6884065047631450113,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6884065047631450113", + "threadId": "activity:6884065047631450113", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6884065047631450113", + "urn": "urn:li:activity:6884065047631450113", + "numComments": 303, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6884065047631450113", + "reactionTypeCounts": [ + { + "count": 1558, + "reactionType": "LIKE" + }, + { + "count": 195, + "reactionType": "MAYBE" + }, + { + "count": 159, + "reactionType": "INTEREST" + }, + { + "count": 31, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6884065047631450113", + "numLikes": 1965, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6884065047631450113", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1965, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6883732996420116480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6883732996420116480", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6883732996420116480)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6883732996420116480)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_m%C3%A9tiers-verts-et-verdissants-pr%C3%A8s-de-4-activity-6883732996420116480-xpTg?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6883732995652558848", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6883732996420116480", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6883732996420116480,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6883732996420116480,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6883732995652558848", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "YrzAT6GkRB68MmJBo73tMw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6883732996420116480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7100601575895526689", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676464583975?e=1677240000&v=beta&t=a2IXyP-fIKE3xtvF3fAHktlKBVDGyz_hp8yLZCpYzXc", + "expiresAt": 1677240000000, + "height": 382 + }, + { + "width": 961, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676464583976?e=1677240000&v=beta&t=IaGpgHbXnfCVxV0g2kpX8UwjRDuW1gBn72PI3qi0zHw", + "expiresAt": 1677240000000, + "height": 460 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676464583976?e=1677240000&v=beta&t=JUQQaZN1XliUchLMgliZQ0FtoDQt_MuTqjdmcmXTNe8", + "expiresAt": 1677240000000, + "height": 76 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676464583976?e=1677240000&v=beta&t=pua8I1QJx-bWv4WpmI_-hgfMDruRvlVQa8aKOu0Mt78", + "expiresAt": 1677240000000, + "height": 229 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGsbGHmSvHACw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7100601575895526689)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7100601575895526689)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "statistiques.developpement-durable.gouv.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: M\u00e9tiers verts et verdissants : pr\u00e8s de 4 millions de professionnels en 2018 by statistiques.developpement-durable.gouv.fr", + "actionTarget": "https://www.statistiques.developpement-durable.gouv.fr/metiers-verts-et-verdissants-pres-de-4-millions-de-professionnels-en-2018" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "M\u00e9tiers verts et verdissants : pr\u00e8s de 4 millions de professionnels en 2018" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6883732995652558848,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Une \u00e9tude du minist\u00e8re de la transition \u00e9cologique conclut qu'il y aurait dans notre pays 4 millions d'emplois verts et verdissants. Un emploi vert y est d\u00e9fini comme un emploi \"directement au service de l'environnement\". Les salari\u00e9s concern\u00e9s (140.000, soit 0,6% de l'emploi total) sont dans la distribution d'eau ou son \u00e9puration, le traitement des d\u00e9chets, et quelques sp\u00e9cialit\u00e9s dans le domaine de l'\u00e9nergie.\n\nParadoxe : ces emplois \"directement au service de l'environnement\" ne sont pas n\u00e9cessairement appel\u00e9s \u00e0 cro\u00eetre dans un monde plus \"vertueux\". Par exemple, si nous jetons moins d'emballages, les personnes qui s'occupent du traitement des d\u00e9chets sont moins nombreuses !\n\nPar ailleurs, ce n'est pas parce qu'ils \"servent l'environnement\" qu'ils \u00e9chappent \u00e0 toute logique \u00e9conomique. \n\nPourquoi tous les autres m\u00e9tiers ne pourraient-ils pas conjuguer \"au service de l'environnement\" et logique \u00e9conomique ? Si nous voulons respecter les limites plan\u00e9taires, il faudra bien que tout emploi se mette lui aussi \"au service de l'environnement\" d'une certaine mani\u00e8re ?\n\nPour essayer d'aller un cran plus loin, le minist\u00e8re a cr\u00e9\u00e9 les m\u00e9tiers \"verdissants\", c\u2019est-\u00e0-dire \"dont les comp\u00e9tences \u00e9voluent pour int\u00e9grer les enjeux environnementaux\". On y trouve 200.000 personnes du contr\u00f4le qualit\u00e9 dans l'industrie, 400.000 personnes travaillant dans le gros oeuvre du b\u00e2timent, ou encore 500.000 conducteurs d'un engin de transport, au sein d'un ensemble (voir graphique en commentaire) dont les contours restent discutables.\n\nEn effet, pourquoi un chauffeur routier serait-il plus \"verdissant\" qu'un enseignant (qui devra transmettre des connaissances et comp\u00e9tences essentielles pour changer l'\u00e9conomie), un restaurateur (qui peut proposer des menus avec moins de viande et plus de productions label avec le bon cahier des charges), ou un artiste (qui peut proposer des cr\u00e9ations invitant \u00e0 respecter l'environnement) ? Myst\u00e8re...\n\nEn fait la bonne question est probablement \u00e0 se poser dans l'autre sens : si nous voulons mettre l'\u00e9conomie fran\u00e7aise en coh\u00e9rence avec une baisse de 5% des \u00e9missions par an (dans le monde), qui doit faire quoi et de quelles comp\u00e9tences avons nous besoin ? Cela fera la part des choses entre les effectifs qui doivent augmenter tout en exer\u00e7ant diff\u00e9remment (par exemple les agriculteurs), ceux qui doivent exercer diff\u00e9remment mais n'ont pas n\u00e9cessairement besoin d'\u00eatre plus nombreux (par exemple les enseignants), et enfin ceux qui doivent diminuer parce que la reconversion intrasectorielle semble difficile (par exemple le transport a\u00e9rien ou la construction auto).\n\nC'est exactement l'angle qui a \u00e9t\u00e9 retenu pour le chantier \"emploi\" du plan de transformation de l'\u00e9conomie fran\u00e7aise du Shift Project : https://lnkd.in/e54-j6X3 Pour ce sujet essentiel qu'est l'emploi, il faut, comme ailleurs, bien d\u00e9finir ce que l'on compte et pourquoi pour ne pas se rater." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6883732995652558848,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6883732996420116480,urn:li:activity:6883732996420116480,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6883732996420116480,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6883732996420116480,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6883732996420116480", + "threadId": "activity:6883732996420116480", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6883732996420116480", + "urn": "urn:li:activity:6883732996420116480", + "numComments": 65, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6883732996420116480", + "reactionTypeCounts": [ + { + "count": 732, + "reactionType": "LIKE" + }, + { + "count": 79, + "reactionType": "INTEREST" + }, + { + "count": 64, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6883732996420116480", + "numLikes": 897, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6883732996420116480", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 897, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6883130680939732992,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6883130680939732992", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6883130680939732992)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6883130680939732992)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_environnement-2022-sera-t-elle-une-bonne-activity-6883130680939732992-DLMa?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6883130680465784832", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6883130680939732992", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6883130680939732992,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6883130680939732992,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6883130680465784832", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "Dw3/H3GCZJShIT0VGiQ2Mg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6883130680939732992,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8447113366748533559", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676328186388?e=1677240000&v=beta&t=VCP_54tPMIv82kZ3HnkGFQCG42rlEK9bQHPes2pdC5o", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676328186388?e=1677240000&v=beta&t=lQo10s4UltCqNeg6PkkGfdvvA2-irRB6gqVSWizD548", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676328186388?e=1677240000&v=beta&t=9znC2aIrzZke5N6lT9tI7K9nWl8q7iOvMfUmtEBAMHo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676328186388?e=1677240000&v=beta&t=MRzENuStG6-rjvnbJB8STks-Wr_yDySg5efXJJAkBqw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFWvYCwY1j4Zg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8447113366748533559)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8447113366748533559)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Environnement : 2022 sera-t-elle une bonne ann\u00e9e pour la plan\u00e8te ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900110242-environnement-2022-sera-t-elle-une-bonne-annee-pour-la-planete" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Environnement : 2022 sera-t-elle une bonne ann\u00e9e pour la plan\u00e8te ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6883130680465784832,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les anglais appellent cela \"crash the party\". C'est le comportement qui consiste \u00e0 venir g\u00e2cher une f\u00eate en y d\u00e9barquant expr\u00e8s pour cela. C'est peut-\u00eatre ce qu'ont ressenti les auditeurs matinaux de RTL (les pauvres ! d\u00e9j\u00e0 ils \u00e9taient debout \u00e0 l'heure o\u00f9 la France enti\u00e8re roupillait, et en plus ils ont du se farcir 3 minutes de mauvaises nouvelles) en \u00e9coutant cette premi\u00e8re manifestation \"travaill\u00e9e\" de l'ann\u00e9e (enregistr\u00e9e \u00e0 l'avance, quand m\u00eame :) ) en \u00e9coutant cette chronique leur expliquant que dans les bons voeux pour 2022 il y en a un qu'il vaut mieux ne pas faire : souhaiter que les \"ennuis climatiques\" s'en aillent comme par miracle. L'inertie du syst\u00e8me productif et l'inertie climatique l'interdisent.\n\nPour les amis du carbone (voire les ennemis, les seuls non concern\u00e9s \u00e9tant les neutres, puisque l'on ne peut pas \u00eatre neutre tout seul avec le carbone comme chacun sait) cette ann\u00e9e sera n\u00e9anmoins \u00e0 surveiller \u00e0 deux occasions au moins :\n\n- la France prend la pr\u00e9sidence de l'Union Europ\u00e9enne ce jour. 80% de la r\u00e9glementation environnementale applicable aux entreprises (ou aux exploitants agricoles) est d'origine europ\u00e9enne. La pr\u00e9sidence fran\u00e7aise est donc l'occasion de pousser des \"bons\" sujets... si tant est que l'on en ait.\n\n- nous allons changer de gouvernement au milieu de l'ann\u00e9e. Pour le moment, aucun(e) des candidat(e)s sur les rangs ne semble vraiment taill\u00e9(e) pour le d\u00e9fi que nous avons \u00e0 affronter, mais au bout du bout il faudra bien choisir, et d'ici l\u00e0 faire tout ce qui est possible pour que nos candidat(e)s soient un peu plus concern\u00e9s par les limites plan\u00e9taires que Meryl Streep dans \"Don't Look Up\". \n\nDe fait, il n'est pas tr\u00e8s rassurant que notre pr\u00e9sident d\u00e9marre l'ann\u00e9e par des voeux (https://lnkd.in/eHb7g_RP ) o\u00f9 le d\u00e9fi environnemental n'est pas mentionn\u00e9 mais l'accueil de youtubeurs \u00e0 l'Elys\u00e9e et l'exploration spatiale oui (deux points qui figurent dans le film Don't Look Up ; la co\u00efncidence est vraiment troublante...), et ait termin\u00e9e la pr\u00e9c\u00e9dente par une interview fleuve de 2 heures o\u00f9 il n'en \u00e9tait pas plus question.\n\nLa seule chose de certaine pour cette ann\u00e9e est que ce ne sera pas le calme plat. C'est d\u00e9j\u00e0 ca !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6883130680465784832,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6883130680939732992,urn:li:activity:6883130680939732992,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 63, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6883130680939732992,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6883130680939732992,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6883130680939732992", + "threadId": "activity:6883130680939732992", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6883130680939732992", + "urn": "urn:li:activity:6883130680939732992", + "numComments": 101, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6883130680939732992", + "reactionTypeCounts": [ + { + "count": 1493, + "reactionType": "LIKE" + }, + { + "count": 97, + "reactionType": "PRAISE" + }, + { + "count": 72, + "reactionType": "INTEREST" + }, + { + "count": 28, + "reactionType": "MAYBE" + }, + { + "count": 24, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6883130680939732992", + "numLikes": 1727, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6883130680939732992", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1727, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6882633190025043968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6882633190025043968", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6882633190025043968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6882633190025043968)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_im-a-climate-scientist-dont-look-up-captures-activity-6882633190025043968-tc8J?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6882633189316210688", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6882633190025043968", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6882633190025043968,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6882633190025043968,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6882633189316210688", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "owEXAzq8snSqnZMkgGiXtQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6882633190025043968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7442890471678209991", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675856328632?e=1677240000&v=beta&t=cLGjCMOCzEv8KtO0UgsZV-mZwVaDgxEfAZDykFcy5g4", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675856328632?e=1677240000&v=beta&t=OhbkBrjES0nGGNiGl42o-Ucy7y9511gwsF-ls8l1yNQ", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675856328632?e=1677240000&v=beta&t=tcMZdwTGg2ZEQC_75HwUMvAKW90p37P4ZWh3ch0Pwb4", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675856328632?e=1677240000&v=beta&t=wg74fOiUYrLMwkMlCDJAsC_aR57ffO8kp8XF7q8oc5Q", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQE_8fRUqWQ01g/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7442890471678209991)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7442890471678209991)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: I\u2019m a climate scientist. Don\u2019t Look Up captures the madness I see every day | Peter Kalmus by amp-theguardian-com.cdn.ampproject.org", + "actionTarget": "https://amp-theguardian-com.cdn.ampproject.org/c/s/amp.theguardian.com/commentisfree/2021/dec/29/climate-scientist-dont-look-up-madness" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "I\u2019m a climate scientist. Don\u2019t Look Up captures the madness I see every day | Peter Kalmus" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6882633189316210688,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a quelques semaines est sorti le film \"Don't Look Up\", avec toute une brochette de stars. Ce film relate - pour celles et ceux qui ne l'ont pas vu - la croisade d'un groupe de scientifiques qui tente d'alerter le monde politique et m\u00e9diatique apr\u00e8s avoir d\u00e9couvert une com\u00e8te qui s'appr\u00eate \u00e0 frapper la terre, tuant potentiellement toute vie humaine.\n\nIls vont \u00e9videmment chercher \u00e0 alerter la population, et en premier lieu les pouvoirs publics et la presse. En face d'eux, ils vont cependant rapidement trouver l'incapacit\u00e9 du politique \u00e0 changer ses priorit\u00e9s de court terme, la frivolit\u00e9 du monde m\u00e9diatique qui consid\u00e8re qu'il faut \"dire des choses positives\", et le lobbying du monde des affaires, qui se persuade que la catastrophe peut \u00eatre chang\u00e9e en opportunit\u00e9.\n\nToute ressemblance avec une situation r\u00e9elle n'est \u00e9videmment pas fortuite : le film est l\u00e0 pour nous rappeler qu'en mati\u00e8re de changement climatique, nous sommes exactement dans la m\u00eame situation. C'est ce qui conduit Peter Kalmus - un \"scientifique du climat\" - \u00e0 \u00e9crire dans cette tribune publi\u00e9e dans le Guardian que ce film est \"the most accurate film about society\u2019s terrifying non-response to climate breakdown I\u2019ve seen\", et qui y d\u00e9veloppe son \"spleen\" li\u00e9 \u00e0 une frustration profonde parce que la soci\u00e9t\u00e9 n'arrive pas \u00e0 modifier son comportement en tenant compte de cette nouvelle information. Je dois dire que je partage un peu de ce sentiment...\n\nCette satire \u00e9vite deux \u00e9cueils du \"Jour d'Apr\u00e8s\" (https://lnkd.in/e5XvPYX ), o\u00f9 le fond scientifique \u00e9tait plein d'invraisemblances, et qui se terminait par un \"happy end\", quittant \u00e0 la fin du film le message de d\u00e9part pour rejoindre le fil plus classique du h\u00e9ros qui triomphe de l'adversit\u00e9 (avec un paquet de morts au passage, mais peu importe).\n\nDans ce film, et sans spoiler la fin, la coh\u00e9rence et l'ironie cruelle restent jusqu'au bout. Le message est clair.\n\nPuisque nous approchons de l'\u00e9poque des voeux, peut-on souhaiter qu'en 2022 le monde politico-m\u00e9diatique - car c'est lui qui est vis\u00e9 en priorit\u00e9 dans ce film - re\u00e7oive le message tr\u00e8s explicite qui lui adress\u00e9 par cette fiction, qui n'en est qu'\u00e0 moiti\u00e9 une par bien des aspects ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6882633189316210688,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6882633190025043968,urn:li:activity:6882633190025043968,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 514, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6882633190025043968,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6882633190025043968,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6882633190025043968", + "threadId": "activity:6882633190025043968", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6882633190025043968", + "urn": "urn:li:activity:6882633190025043968", + "numComments": 769, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6882633190025043968", + "reactionTypeCounts": [ + { + "count": 17355, + "reactionType": "LIKE" + }, + { + "count": 914, + "reactionType": "PRAISE" + }, + { + "count": 829, + "reactionType": "EMPATHY" + }, + { + "count": 228, + "reactionType": "APPRECIATION" + }, + { + "count": 170, + "reactionType": "MAYBE" + }, + { + "count": 132, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6882633190025043968", + "numLikes": 19628, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6882633190025043968", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 19628, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6882377590368194560,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6882377590368194560", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6882377590368194560)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6882377590368194560)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_y-aura-t-il-assez-d%C3%A9lectricit%C3%A9-cet-hiver-activity-6882377590368194560-8dVP?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6882377589835526145", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6882377590368194560", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6882377590368194560,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6882377590368194560,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6882377589835526145", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "kJbSfY2ODYUQCNLkEZq0DQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6882377590368194560,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHuopIRxO1P5Q", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHuopIRxO1P5Q", + "artifacts": [ + { + "width": 2028, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1640886682772?e=1679529600&v=beta&t=R8qNZ1XrPZyX2GG61VREvhp8iMIYqWUIu_M_WaxKyAs", + "expiresAt": 1679529600000, + "height": 1100 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1640886685093?e=1679529600&v=beta&t=zgBb5pFg83MMMqKBUICDtf8FQIhLbtcbVflWPyDLGT8", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1640886685093?e=1679529600&v=beta&t=J8t7E5vb2MxtYn5VIu8_b37Y3jVR4XhkunnVPp_46aA", + "expiresAt": 1679529600000, + "height": 694 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1640886685093?e=1679529600&v=beta&t=Fp2VC5oTc9k4lo5HQ8Ehyfsz4yQjcPdzRFfiHDodv9M", + "expiresAt": 1679529600000, + "height": 260 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1640886685093?e=1679529600&v=beta&t=D-83Rf53QsGZZ1GC8jMcsWkN8mipBUKZbM5PcbKL9Ak", + "expiresAt": 1679529600000, + "height": 87 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1640886685093?e=1679529600&v=beta&t=KaU9uGcY4YhM4GKyM8OeD3z8_O0Pt4wmbuy73HjnKys", + "expiresAt": 1679529600000, + "height": 434 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHuopIRxO1P5Q/feedshare-shrink_" + }, + "displayAspectRatio": 0.5424063116370809 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6882377589835526145,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Y aura-t-il assez d'\u00e9lectricit\u00e9 cet hiver ? RTE publie une actualisation de ses \"perspectives d'offre-demande d'\u00e9lectricit\u00e9 pour l'hiver\" : https://lnkd.in/eiGpJTuz\n\nOn peut y lire \"\u00c0 ce jour, le diagnostic met en \u00e9vidence que le recours \u00e0 des moyens \u00ab post march\u00e9 \u00bb (interruption de grands consommateurs industriels, baisse de la tension sur les r\u00e9seaux de distribution) serait probable en cas de vague de froid (de l\u2019ordre de 4 \u00b0C en dessous des normales) ou de situation de tr\u00e8s faible production \u00e9olienne sur la plaque europ\u00e9enne, et quasi-certain si\nces deux facteurs se combinent.\n\nEn dernier ressort, le recours \u00e0 des coupures cibl\u00e9es de consommateurs demeure une solution \u00e0 laquelle RTE devra potentiellement recourir en cas de conditions m\u00e9t\u00e9orologiques\ndifficiles (vague de froid durant plusieurs jours coupl\u00e9e avec une absence de vent en France et dans les pays voisins) ou de nouvelle d\u00e9gradation des capacit\u00e9s de production, notamment\nnucl\u00e9aires.\"\n\nEn bref : c'est un peu tendu. Dans quelques ann\u00e9es, avec d'une part moins de nucl\u00e9aire en Europe (et moins de charbon/gaz potentiellement), d'autre part plus d'usages \u00e9lectrifi\u00e9s (transport, chauffage), et de troisi\u00e8me part pas beaucoup plus de capacit\u00e9s de stockage \u00e0 large \u00e9chelle, ca pourrait \u00eatre plus que tendu lors des anticyclones hivernaux." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6882377589835526145,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6882377590368194560,urn:li:activity:6882377590368194560,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 33, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6882377590368194560,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6882377590368194560,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6882377590368194560", + "threadId": "activity:6882377590368194560", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6882377590368194560", + "urn": "urn:li:activity:6882377590368194560", + "numComments": 77, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6882377590368194560", + "reactionTypeCounts": [ + { + "count": 313, + "reactionType": "LIKE" + }, + { + "count": 63, + "reactionType": "INTEREST" + }, + { + "count": 54, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6882377590368194560", + "numLikes": 434, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6882377590368194560", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 434, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6882281092817186816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6882281092817186816", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6882281092817186816)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6882281092817186816)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_logement-neuf-la-nouvelle-r%C3%A9glementation-activity-6882281092817186816-OmxO?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6882281092297109504", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6882281092817186816", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6882281092817186816,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6882281092817186816,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6882281092297109504", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "Mel/FrpiKpt1wKj2JT7Hww==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6882281092817186816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7567467979892357677", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676263617717?e=1677240000&v=beta&t=KgtzdC1bx4XF1W1Tnrj3S89HkLec5_V5NSQoFex1K1A", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676263617717?e=1677240000&v=beta&t=MSjQ6UlJn_iLv4VJYZ95RAULgSwEQ8wTOVjbYbQkOMs", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676263617717?e=1677240000&v=beta&t=07RxOP7XxTnY4YeYpWEEgma1Fwp246H8emfZSohUIGc", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676263617717?e=1677240000&v=beta&t=ihQBI1efB18SddpHu79EhKWWPXlqwC9FWtkce9EIgqs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFCMU7tyuSXFA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7567467979892357677)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7567467979892357677)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Logement neuf : la nouvelle r\u00e9glementation environnementale r\u00e9volutionne la construction by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/immobilier-btp/logement-neuf-la-nouvelle-reglementation-environnementale-revolutionne-la-construction-1375402" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Logement neuf\u00a0: la nouvelle r\u00e9glementation environnementale r\u00e9volutionne la construction" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6882281092297109504,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Au 1er janvier de la nouvelle ann\u00e9e, les demandes de permis de construire d\u00e9pos\u00e9es en France pour les logements neufs devront satisfaire \u00e0 un plafond maximal d'\u00e9missions de gaz \u00e0 effet de serre par m\u00e8tre carr\u00e9, en incluant \u00e0 la fois la phase de construction et celle d'utilisation sur une dur\u00e9e conventionnelle (50 ans).\n\nRien que pour la construction, le total d\u00e9passe actuellement 700 kilos \u00e9quivalent CO2 par m2 pour les logements (un peu plus en collectif qu'en individuel, voir graphique en commentaire). Le total admissible, utilisation du b\u00e2timent incluse, va descendre par paliers au fil des ann\u00e9es. En 2030, il ne faudra pas d\u00e9passer environ 400 pour les maisons et environ 500 pour le logement collectif pour avoir le droit de construire.\n\nC'est donc une inflexion tr\u00e8s forte qui est imprim\u00e9e au secteur du b\u00e2timent, qui va l'obliger \u00e0 modifier beaucoup de choses dans les techniques constructives. \n\nCette approche illustre un point majeur : pour r\u00e9pondre au d\u00e9fi climatique, vaut-il mieux un prix ou une norme ? Le prix, c'est la taxe carbone : taxons le carbone, et \"spontan\u00e9ment\" les constructeurs utiliseront moins de ciment, moins de bitume, moins de moquette, moins d'\u00e9lectronique dans le b\u00e2timent...\n\nCela suppose d'avoir partout des m\u00e9canismes de r\u00e9percussion des surcouts \u00e0 l'aval qui se fassent sans modifications des chaines de valeur, et notamment sans importations issues de pays ne taxant pas le carbone pour tout ce qui se transporte facilement.\n\nL'autre option est d'imposer un plafond en termes d'\u00e9missions (la norme). C'est finalement cette deuxi\u00e8me voie qui s'impose dans la construction, et dans les transports (sur les \u00e9missions des v\u00e9hicules neufs). Mais \u00e0 raison : elle rend l'avenir pr\u00e9visible en disant exactement quoi faire.\n\nApr\u00e8s le neuf (qui doit baisser parce qu'il artificialise les sols), le grand d\u00e9fi suivant sera le contenu carbone de la r\u00e9novation." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6882281092297109504,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6882281092817186816,urn:li:activity:6882281092817186816,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 127, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6882281092817186816,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6882281092817186816,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6882281092817186816", + "threadId": "activity:6882281092817186816", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6882281092817186816", + "urn": "urn:li:activity:6882281092817186816", + "numComments": 266, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6882281092817186816", + "reactionTypeCounts": [ + { + "count": 2183, + "reactionType": "LIKE" + }, + { + "count": 244, + "reactionType": "INTEREST" + }, + { + "count": 223, + "reactionType": "MAYBE" + }, + { + "count": 49, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6882281092817186816", + "numLikes": 2726, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6882281092817186816", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2726, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6881925665298399232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6881925665298399232", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6881925665298399232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6881925665298399232)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-minist%C3%A8re-de-la-transition-%C3%A9cologique-activity-6881925665298399232-NIED?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6881925664627331072", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6881925665298399232", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6881925665298399232,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6881925665298399232,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6881925664627331072", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "+TnMYLs31EOerqyBplhaKw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6881925665298399232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHEqc6LW8ccUg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHEqc6LW8ccUg", + "artifacts": [ + { + "width": 1528, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1640778935683?e=1679529600&v=beta&t=w6AX1dI__CRYmWJQJeZZcFNDZMrlO8FVoClP7eDTe1g", + "expiresAt": 1679529600000, + "height": 1044 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1640778937845?e=1679529600&v=beta&t=Qz1YyX71j9m7mTakEbvg30aXf6SHoOl151tlk97cfiA", + "expiresAt": 1679529600000, + "height": 14 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1640778937845?e=1679529600&v=beta&t=4bXbsT-i2vO_lWHbGiKehNrfViRVYoHnKOCC6m3nimI", + "expiresAt": 1679529600000, + "height": 875 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1640778937845?e=1679529600&v=beta&t=9DYCjbtjzXTy5pnoJZdlxprsuSMICiWa38345vYVjNk", + "expiresAt": 1679529600000, + "height": 328 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1640778937846?e=1679529600&v=beta&t=Rjb7CKKG0TeJDgD9QfN-q4jLbgl9q2kShUD9js4uWQA", + "expiresAt": 1679529600000, + "height": 109 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1640778937846?e=1679529600&v=beta&t=mllg5W23sWwuAcAeXsP2esgKbOCYRxXoh1s9sN2tvt0", + "expiresAt": 1679529600000, + "height": 547 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHEqc6LW8ccUg/feedshare-shrink_" + }, + "displayAspectRatio": 0.6832460732984293 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6881925664627331072,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le minist\u00e8re de la transition \u00e9cologique publie une \u00e9tude sur la marche et le v\u00e9lo dans les d\u00e9placements des fran\u00e7ais(es) : https://lnkd.in/em2qpTMy\n\nInformation importante \u00e0 garder en t\u00eate avant de regarder les r\u00e9sultats : ces derniers datent de... 2019. Or, il est probable que le covid a un peu chang\u00e9 la donne, que ce soit pour le total des trajets (t\u00e9l\u00e9travail), la part du v\u00e9lo (qui a du augmenter), et la part des transports en commun (qui a peut-\u00eatre baiss\u00e9 \u00e0 cause de la peur de la contamination).\n\nMais il n'en reste pas moins que la segmentation des pratiques par tranche d'\u00e2ge, sexe ou niveau de dipl\u00f4me est int\u00e9ressante. Les plus gros marcheurs sont les enfants (6-18 ans), suivis des... plus de 65 ans (un tiers des d\u00e9placements locaux dans chaque cas). Les 19-24 ans (un \u00e2ge auquel se prennent les bonnes - ou mauvaises - habitudes d'adulte) marchent beaucoup moins (moins d'un cinqui\u00e8me des d\u00e9placements locaux) et ne p\u00e9dalent pas plus que les plus de 65 ans !\n\nLa synth\u00e8se ne d\u00e9taille pas tous les r\u00e9sultats quantitatifs qui sont mis \u00e0 disposition dans un tableur en libre acc\u00e8s. On y d\u00e9couvre que (sans surprise) la marche est consid\u00e9rablement plus pratiqu\u00e9e s'il n'y a pas de v\u00e9hicule automobile \u00e0 disposition du m\u00e9nage, mais aussi qu'elle est plus pratiqu\u00e9e s'il n'y a pas de v\u00e9lo \u00e0 disposition ! (mais je soup\u00e7onne que c'est un effet revenu : avoir assez d'argent pour se payer une voiture va avec le fait d'en avoir assez pour se payer - et surtout avoir l'espace pour stocker - un v\u00e9lo...).\n\nSi l'on fait le total des modes actifs (marche et v\u00e9lo) par grande agglom\u00e9ration (le d\u00e9tail n'est pas fourni pour les zones rurales), il va de 7,8% pour Rouen \u00e0 14,5% pour Strasbourg, soit une variation du simple au double, qui ne s'explique pas compl\u00e8tement par le relief, m\u00eame si la synth\u00e8se note que \"Sur un trajet en pente, le nombre de cyclistes est deux fois plus faible que sur un trajet int\u00e9gralement plat, en 2019. Cet effet d\u00e9courageant du relief est plus fort pour les femmes.\"\n\nEn effet, Rouen est certes dans une vall\u00e9e avec la banlieue sur\u00e9lev\u00e9e, mais c'est aussi le cas de Nancy et de Grenoble ; cette derni\u00e8re \u00e9tant 2\u00e8 avec 13,8%. Par ailleurs cet inconv\u00e9nient devient bien moins fort avec des v\u00e9los \u00e0 assistance \u00e9lectrique.\n\nSans que les chiffres ne soient fournis dans le tableur, la note fournit une indication int\u00e9ressante : \"Quand la densit\u00e9 du r\u00e9seau cyclable d\u2019une commune d\u00e9passe 2500 m\u00e8tres par km\u00b2, la pratique du v\u00e9lo est, toutes choses \u00e9gales par ailleurs, presque trois plus importante que dans une commune qui ne compte aucun r\u00e9seau\".\n\nVoici probablement une indication \u00e0 m\u00e9diter pour les am\u00e9nageurs de l'espace..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6881925664627331072,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6881925665298399232,urn:li:activity:6881925665298399232,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 58, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6881925665298399232,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6881925665298399232,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6881925665298399232", + "threadId": "activity:6881925665298399232", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6881925665298399232", + "urn": "urn:li:activity:6881925665298399232", + "numComments": 87, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6881925665298399232", + "reactionTypeCounts": [ + { + "count": 644, + "reactionType": "LIKE" + }, + { + "count": 91, + "reactionType": "INTEREST" + }, + { + "count": 86, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6881925665298399232", + "numLikes": 832, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6881925665298399232", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 832, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6881552079073132544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6881552079073132544", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6881552079073132544)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6881552079073132544)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nucl%C3%A9aire-leur-choix-notre-probl%C3%A8me-activity-6881552079073132544-xhMP?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6881552078376890368", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6881552079073132544", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6881552079073132544,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6881552079073132544,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6881552078376890368", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "OgIUEUlRYaQ5Y1bifywH9g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6881552079073132544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7588105692799866015", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675966836708?e=1677240000&v=beta&t=s62acx1T_-Gz3_5UcbyBNG_Q30VjFX5hjbUznXfwqKo", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675966836708?e=1677240000&v=beta&t=rGY8BB7SPTFZrxcrKxDw895VoIKgOfY1tzYWuMW-GCc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675966836708?e=1677240000&v=beta&t=HCRiQgQe9pUnCPMnbtSfWrE8oFu8uQSBl89jYWQOaJE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675966836708?e=1677240000&v=beta&t=HaAykzA-UKS88eN-uETiVRfoYUOoeE8_RqNXYONUMQw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGa1U4cUqkwgg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7588105692799866015)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7588105692799866015)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nucl\u00e9aire : leur choix, notre probl\u00e8me by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/nucleaire-leur-choix-notre-probleme-1374613" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nucl\u00e9aire\u00a0: leur choix, notre probl\u00e8me" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6881552078376890368,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'ann\u00e9e qui s'ach\u00e8ve aura \u00e9t\u00e9 une ann\u00e9e de contrastes pour le nucl\u00e9aire en Europe, qui fait l'objet de positions de plus en plus \u00e9loign\u00e9es au sein des pays du Vieux Continent, ce qui conduit les Echos \u00e0 constater (\u00e0 raison) que les d\u00e9cisions de fermeture sont prises nationalement mais avec des impacts sur la s\u00e9curit\u00e9 d'approvisionnement hors des fronti\u00e8res : https://lnkd.in/ev4GyiTj\n\nL'Allemagne va fermer pr\u00e9matur\u00e9ment 4 GW au 31 d\u00e9cembre ; la Belgique n'en peut plus de d\u00e9cider de fermer pr\u00e9matur\u00e9ment ses capacit\u00e9s (https://lnkd.in/ekM4X-9Q ), ce qui va conduire soit \u00e0 un syst\u00e8me importateur fragile (voire des d\u00e9lestages), soit \u00e0 des centrales \u00e0 gaz fossile suppl\u00e9mentaires, en violation des engagements de baisse des \u00e9missions ; l'Espagne voudrait en sortir en 2035 sans bien savoir par quoi de d\u00e9carbon\u00e9 le remplacer (l'Espagne illustre tr\u00e8s bien la situation d'arriv\u00e9e de l'Allemagne : peu de charbon mais beaucoup de gaz pour \"backer\" l'\u00e9olien, ce \u00e0 quoi il faut rajouter des importations structurelles, qui demandent donc des capacit\u00e9s pilotables en dehors des fronti\u00e8res : https://lnkd.in/eHyARXCx) ; la Suisse est aussi partie pour ne pas renouveler ses capacit\u00e9s nucl\u00e9aires.\n\nDe l'autre c\u00f4t\u00e9, la France veut construire de nouveaux r\u00e9acteurs ; les Pays Bas viennent de d\u00e9cider de le faire (https://lnkd.in/eWmZDa_g ) ; la Pologne aussi (https://lnkd.in/eMYbVZxA ) ; La Finlande a un sixi\u00e8me r\u00e9acteur en construction apr\u00e8s Olkiluoto et les Verts y sont pronucl\u00e9aires (https://lnkd.in/epJ75pvj ), et enfin l'Italie montre des signes de revirement (https://lnkd.in/eJHZy62J). \n\nRTE a rappel\u00e9 dans son r\u00e9cent rapport qu'un syst\u00e8me \u00e9lectrique \"100% ENR\" en France demanderait un rythme d'\u00e9quipement en \u00e9oliennes et panneaux solaires d\u00e9passant tous les ans - pendant 30 ans - le maximum de ce qu'ont fait l'Allemagne ou la Grande Bretagne de 2009 \u00e0 2020 : https://lnkd.in/ePPhXAzg\n\nEt cela nous ram\u00e8ne \u00e0 cet \u00e9ditorial des Echos : quelle attitude adopter, au sein d'un ensemble europ\u00e9en cens\u00e9ment int\u00e9gr\u00e9 sur l'\u00e9nergie (il a m\u00eame \u00e9t\u00e9 fait pour cela : https://lnkd.in/eVRuWEtv ), envers des pays qui prennent unilat\u00e9ralement des d\u00e9cisions mettant un effort ou un risque \u00e0 la charge d'autrui sans leur demander leur avis ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6881552078376890368,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6881552079073132544,urn:li:activity:6881552079073132544,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 60, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6881552079073132544,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6881552079073132544,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6881552079073132544", + "threadId": "activity:6881552079073132544", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6881552079073132544", + "urn": "urn:li:activity:6881552079073132544", + "numComments": 146, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6881552079073132544", + "reactionTypeCounts": [ + { + "count": 1313, + "reactionType": "LIKE" + }, + { + "count": 174, + "reactionType": "INTEREST" + }, + { + "count": 171, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6881552079073132544", + "numLikes": 1688, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6881552079073132544", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1688, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6881185123056852992,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6881185123056852992", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6881185123056852992)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6881185123056852992)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_automobile-les-suv-poursuivent-leur-irr%C3%A9sistible-activity-6881185123056852992-wWIc?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6881185122629021696", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6881185123056852992", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6881185123056852992,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6881185123056852992,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6881185122629021696", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "0N4dz57g3fP5OZ08CrjdsA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6881185123056852992,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8869270676197156460", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676379375094?e=1677240000&v=beta&t=TMjMN83mCEBh9Q6eukO6xdDzgUD02Ozb4KuI6OaDvv0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676379375094?e=1677240000&v=beta&t=e_c_sStfToju_fuhSbw4PMCyLCLb18Y5VFapoY_Qly0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676379375094?e=1677240000&v=beta&t=7tHN_WDMFXZtd16NPlX2ImmTcRf2W8R4PWtM_B1wVow", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676379375094?e=1677240000&v=beta&t=QkVX4RlJxpySdbxAVaHJIRmo4zkLhs8lKkP0bomjY9E", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQG108bzbeUrew/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8869270676197156460)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8869270676197156460)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Automobile : les SUV poursuivent leur irr\u00e9sistible marche en avant by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/automobile/automobile-les-suv-poursuivent-leur-irresistible-marche-en-avant-1374923" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Automobile\u00a0: les SUV poursuivent leur irr\u00e9sistible marche en avant" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6881185122629021696,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En lisant que, sur les 10 premiers mois de 2021, les SUV ont fait une petite moiti\u00e9 des ventes en Europe, deux pens\u00e9es viennent \u00e0 l'esprit. \n\nLa premi\u00e8re est que, manifestement, l'acheteur de SUV neufs (le particulier acheteur de v\u00e9hicules neufs a 57 ans en moyenne : https://lnkd.in/eXDhm2FC ) a du mal \u00e0 se mettre d'accord avec le (grand-)parent inquiet pour l'avenir \"\u00e9cologique\" de ses (petits-)enfants.\n\nLa deuxi\u00e8me est que les pouvoirs publics ont aussi beaucoup de mal \u00e0 se mettre d'accord avec eux-m\u00eames. On veut bien de la neutralit\u00e9 carbone, mais quand m\u00eame pas au point de dissuader les acheteurs de v\u00e9hicules neufs de se procurer des mod\u00e8les lourds et gourmands en carburant. \n\nOn se retrouve ici avec deux conflits d'objectifs que nous sommes incapables d'arbitrer en faveur du long terme :\n- un conflit entre emploi/PIB et environnement : les mod\u00e8les concern\u00e9s sont des mod\u00e8les \u00e0 forte marge, et fabriqu\u00e9s en France ; ils sont donc particuli\u00e8rement \"pr\u00e9cieux\" pour les constructeurs fran\u00e7ais\n- un conflit entre \"s\u00e9curit\u00e9 \u00e0 court terme\" (les SUV procurent une impression de s\u00e9curit\u00e9 de conduite parce qu'ils sont sur\u00e9lev\u00e9s) et \"s\u00e9curit\u00e9 \u00e0 long terme\" (ces mod\u00e8les sont plus pr\u00e9dateurs de l'environnement : ils demandent plus de mat\u00e9riaux \u00e0 la construction - et cela reste vrai pour les mod\u00e8les \u00e9lectriques - et \u00e9mettent plus \u00e0 l'utilisation).\n\nPerp\u00e9tuant une d\u00e9pendance forte aux carburants (puisqu'une voiture neuve reste 20 ans en circulation ensuite), ils pr\u00e9parent aussi \"par construction\" de nouveaux \u00e9pisodes de type \"gilets jaunes\", \u00e0 chaque fois que le prix du p\u00e9trole fera un bond vers le haut (et cela va arriver plus d'une fois sur les 20 ans qui viennent, parce qu'une production de p\u00e9trole contrainte \u00e0 la baisse alors que nous ne sommes pas en cours de sevrage engendre un prix devenant tr\u00e8s volatil).\n\nPuisque c'est l'\u00e9poque des voeux qui arrivent, j'en ai un : que chaque acheteur potentiel de ce genre de voiture ait l'obligation de lire un document explicatif sur l'\u00e9nergie et le changement climatique (au hasard une BD faite pour cela :) ), suivie d'un test de connaissances r\u00e9ussi, avant de r\u00e9aliser l'achat. Et que le passage du permis comporte le m\u00eame genre d'acquisition de connaissances avec le m\u00eame genre de test. \n\nSi le gouvernement est s\u00e9rieux sur ses d\u00e9claration climatiques, je suis s\u00fbr qu'il ne verra aucune objection \u00e0 impl\u00e9menter cette mesure." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6881185122629021696,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6881185123056852992,urn:li:activity:6881185123056852992,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 280, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6881185123056852992,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6881185123056852992,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6881185123056852992", + "threadId": "activity:6881185123056852992", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6881185123056852992", + "urn": "urn:li:activity:6881185123056852992", + "numComments": 546, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6881185123056852992", + "reactionTypeCounts": [ + { + "count": 4035, + "reactionType": "LIKE" + }, + { + "count": 262, + "reactionType": "INTEREST" + }, + { + "count": 213, + "reactionType": "MAYBE" + }, + { + "count": 192, + "reactionType": "PRAISE" + }, + { + "count": 67, + "reactionType": "APPRECIATION" + }, + { + "count": 59, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6881185123056852992", + "numLikes": 4828, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6881185123056852992", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4828, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6880926496593117184,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6880926496593117184", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6880926496593117184)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6880926496593117184)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-plan-france-2030-se-heurtera-in%C3%A9vitablement-activity-6880926496593117184-M7LG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6880926496089796609", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6880926496593117184", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6880926496593117184,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6880926496593117184,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6880926496089796609", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "l7WgQDHhaBIC/ouzvIJILA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6880926496593117184,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7345380041435894402", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676277543400?e=1677240000&v=beta&t=jTd70O9zGMNI3XHdpDvSpNuJR87Z3DWOD4EVhR_5jmk", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676277543400?e=1677240000&v=beta&t=3Nei9mAllEidcC0Mb7Q-mWuiucItxSn55T-w0GEOcMU", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676277543400?e=1677240000&v=beta&t=j728Xe8JZowqjT2TNIFXbuQ-xj8Wa5v56qqsWuhVK0A", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676277543401?e=1677240000&v=beta&t=Q58TkcPGeYpM0XQQIcWqdP6_4ag2aVBkc1wpxflpa_g", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHFOwr9iVhoGg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7345380041435894402)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7345380041435894402)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab Le plan France 2030 se heurtera in\u00e9vitablement au mur des p\u00e9nuries de comp\u00e9tences \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/idees/article/2021/12/22/le-plan-france-2030-se-heurtera-inevitablement-au-mur-des-penuries-de-competences_6106981_3232.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0Le plan France 2030 se heurtera in\u00e9vitablement au mur des p\u00e9nuries de comp\u00e9tences\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6880926496089796609,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 17, + "length": 11, + "miniProfile": { + "firstName": "Maroun", + "lastName": "Edd\u00e9", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAC5t610BGxDC2dOsukiyYmfQ65q1kAXgvNs", + "occupation": "ENS Ulm | HEC Paris | Institut Montaigne | Essayiste, auteur de La m\u00e9moire coupable (Bouquins)", + "objectUrn": "urn:li:member:778955613", + "entityUrn": "urn:li:fs_miniProfile:ACoAAC5t610BGxDC2dOsukiyYmfQ65q1kAXgvNs", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1575251023468?e=1681948800&v=beta&t=Bzfd2vZomS7HAXB2LA3Rp5OeWKrgQJZ61-qyL2hG92k", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1575251023468?e=1681948800&v=beta&t=-8y6Rp1jmE1cYY0mnR3Wt2FeboiajMRYh0LjEuZdnT8", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQETd16DohZNfQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "maroun-edd\u00e9-5b9a54198", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1647159916257?e=1681948800&v=beta&t=7L8GMlFys-cnXsElAf9KAIdZrItU3YlFNdvzGlaexTQ", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1647159916257?e=1681948800&v=beta&t=r5P3YYBZ8nlovZ6S7dldT8rt4O7RSOVMHkrFIak33uU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1647159916257?e=1681948800&v=beta&t=POFzt9xyFcxE829lkkgmWjrDfI3i6S8R9HIAywDA4r8", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1647159916257?e=1681948800&v=beta&t=Cc6a8osJpjVE3PZdrWHNBeiNktZaBgR-bNu2jRBBkCY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQEUp5nrrR_6hQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "j9iH21hkQpOZseNlTe8tKA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Cette tribune de Maroun Edd\u00e9 concerne le plan France 2030, mais il n'y aurait pas grand chose \u00e0 y changer si elle devait s'appliquer au plan de transformation de l'\u00e9conomie fran\u00e7aise du Shift Project (https://lnkd.in/dNARPrU ). \n\nL'auteur y explique qu'il n'y a pas de grande vision qui tienne s'il n'y a pas les comp\u00e9tences pour la mette en oeuvre. De fait, qu'il s'agisse de r\u00e9industrialiser notre pays ou de le d\u00e9carboner, \u00e0 un moment nous aurons besoin de comp\u00e9tences \"physiques\", dans lesquelles on peut mettre \u00e0 la fois les ma\u00e7ons, les conducteurs de trains, les cultivateurs de lin, les forestiers, les r\u00e9parateurs de v\u00e9los, et bien d'autres encore, sans oublier des ing\u00e9nieurs de toute sorte.\n\nQue des grands dispositifs de formation soient n\u00e9cessaires aux grands dessins de l'\u00e9tat ne date pas d'hier : nos grands corps techniques, qui ont parfois tant fait jaser (les Mines, les Ponts, le G\u00e9nie Rural, les Eaux et For\u00eats...), sont n\u00e9s de la volont\u00e9 royale de doter le pays de voies de communications, de mines et d'industries, ou d'une agriculture performante et de for\u00eats pour disposer de bois. \n\nA l'heure o\u00f9 les grands d\u00e9fis s'appellent la prise en compte des limites plan\u00e9taires, il serait logique que notre appareil \u00e9ducatif s'oriente sans tarder dans la bonne direction. Une limite se g\u00e9rant quantitativement, il faut donc apprendre \u00e0 compter. Comme elle se rapporte \u00e0 notre environnement, il faut apprendre de quoi appr\u00e9hender ce dernier (physique, biologie, \u00e9cologie...). Et enfin il faut se former aux m\u00e9tiers de demain, qui demanderont de plus en plus de \"revenir \u00e0 ce qui se fabrique\" et non uniquement \u00e0 ce qui se g\u00e8re.\n\nL'\u00e9nergie abondante nous a \u00e9loign\u00e9 du physique. A l'\u00e8re de l'\u00e9nergie rare, la richesse \u00e9tait dans les ressources naturelles, et les comp\u00e9tences pr\u00e9cieuses dans ce qui permettait de les g\u00e9rer au mieux (agriculture, for\u00eats, mines). Puis la richesse et les comp\u00e9tences sont pass\u00e9es dans la transformation de ressources dont l'extraction a \u00e9t\u00e9 rendue facile par l'\u00e9nergie. Les fortunes sont devenues industrielles (et non fonci\u00e8res) et les m\u00e9tiers \"pr\u00e9cieux\" ceux de la transformation (de l'artisanat \u00e0 l'industrie).\n\nEncore un peu d'\u00e9nergie et de mondialisation et ce sont les services qui ont emport\u00e9 la mise. La richesse est pass\u00e9e dans la finance (la simple d\u00e9tention du capital) et l'aristocratie des m\u00e9tiers dans le \"management\" et la finance.\n\nLa contraction \u00e9nerg\u00e9tique imposera de revenir t\u00f4t ou tard \u00e0 une comp\u00e9tence du \"faire\" plut\u00f4t que du \"g\u00e9rer\" (ou plus exactement on ne pourra g\u00e9rer que si on sait faire). L'auteur a raison de d\u00e9plorer que pour le moment nous n'en prenions pas du tout le chemin. Il s'agit d'un angle mort majeur dans les plans gouvernementaux, et reconfigurer le syst\u00e8me \u00e9ducatif avec un objectif clair en t\u00eate devrait \u00eatre une de nos urgences nationales." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6880926496089796609,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6880926496593117184,urn:li:activity:6880926496593117184,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 82, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6880926496593117184,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6880926496593117184,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6880926496593117184", + "threadId": "activity:6880926496593117184", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6880926496593117184", + "urn": "urn:li:activity:6880926496593117184", + "numComments": 125, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6880926496593117184", + "reactionTypeCounts": [ + { + "count": 1710, + "reactionType": "LIKE" + }, + { + "count": 203, + "reactionType": "MAYBE" + }, + { + "count": 197, + "reactionType": "INTEREST" + }, + { + "count": 54, + "reactionType": "PRAISE" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + }, + { + "count": 18, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6880926496593117184", + "numLikes": 2202, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6880926496593117184", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2202, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6880159804292157440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6880159804292157440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6880159804292157440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6880159804292157440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-monde-sans-fin-activity-6880159804292157440-cJWG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6880159803595907072", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6880159804292157440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6880159804292157440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6880159804292157440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6880159803595907072", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "i2iTrsNBGHooaY3O1Kva6A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6880159804292157440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8780854401323608857", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 649, + "fileIdentifyingUrlPathSegment": "800/0/1676525617114?e=1677240000&v=beta&t=664eCy2QaXEhonDCjmacWpci5c7Ea3fQ9IDzIVscaxc", + "expiresAt": 1677240000000, + "height": 789 + }, + { + "width": 649, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676525617114?e=1677240000&v=beta&t=ZX71gUhS0qzKkk4onJTKb6_VVNRrzHdQKEGUukuzf3E", + "expiresAt": 1677240000000, + "height": 789 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676525617114?e=1677240000&v=beta&t=PhPyel20dEuTX_t8xKkiE-V6P_fA8zF4Wn2LPWzSdXg", + "expiresAt": 1677240000000, + "height": 194 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676525617115?e=1677240000&v=beta&t=5eYSuCFztThM1yZbP4xN4Za0ELWgUVpMDgUaplalsjw", + "expiresAt": 1677240000000, + "height": 583 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGTKmk0FJUWUg/articleshare-shrink_" + }, + "displayAspectRatio": 1.2157164869029276 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8780854401323608857)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8780854401323608857)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Monde Sans Fin by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/livres/le-monde-sans-fin/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Monde Sans Fin" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6880159803595907072,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En cette veille de No\u00ebl, je dois des excuses \u00e0 toutes celles et tous ceux qui n'ont pas pu trouver d'exemplaire du \"Monde sans fin\" pour le glisser sous le sapin auquel ils pensaient. La raison de cette \"p\u00e9nurie relative\" vient d'un d\u00e9calage entre ce que les libraires ont pressenti comme ventes au moment de la pr\u00e9sentation de l'album (ce \"sentiment\" des libraires permet \u00e0 l'\u00e9diteur de dimensionner le premier tirage et la mise en place) et le d\u00e9marrage effectif des ventes, qui est all\u00e9 bien plus vite que ce que les libraires avaient imagin\u00e9.\n\nDans un monde infini, l'\u00e9diteur se rattrape d\u00e8s qu'il voit le nombre d'albums \u00e9coul\u00e9s la premi\u00e8re semaine, en commandant imm\u00e9diatement une r\u00e9impression qui permet de ne pas \u00eatre en rupture de stock. Mais dans notre monde fini, il y a actuellement (effet conjugu\u00e9 du covid et de la \"reprise\" post-covid) une l\u00e9g\u00e8re p\u00e9nurie de papier et de carton. Ce dernier, en particulier, est tr\u00e8s demand\u00e9 par les op\u00e9rateurs de vente \u00e0 distance (Amazon en t\u00eate) pour les emballages.\n\nDu coup Dargaud n'a pas pu r\u00e9imprimer \u00e0 la vitesse \u00e0 laquelle les exemplaires \u00e9taient demand\u00e9s. Et du coup (bis) il y a des sapins qui resteront \"non garnis\" avec ce copieux (enfin raisonnablement copieux) ouvrage blainovicesque.\n\nJ'ai une bonne et une mauvaise nouvelle.\n\nLa mauvaise est qu'il y aura plein d'autres occasions de l'acheter. Mauvaise ? En effet, cet album n'existe que parce que nous avons un probl\u00e8me. Et tant que nous avons ce probl\u00e8me sur les bras, il sera quand m\u00eame utile de bien comprendre de quoi il retourne, ce qui \u00e9tait la modeste ambition de Christophe Blain et de votre serviteur en se mettant (au vrai sens du terme pour l'un des deux) \u00e0 la planche \u00e0 dessin.\n\nLa bonne est que d\u00e8s mi-janvier il y a deux r\u00e9impressions cons\u00e9quentes qui arrivent. Les voeux pouvant se souhaiter jusqu'au 31 janvier, et une bonne ann\u00e9e \u00e9tant \u00e9ventuellement une ann\u00e9e o\u00f9 nous devenons un peu plus s\u00e9rieux sur la question climatique, il y aura donc une premi\u00e8re occasion de se rattraper d'ici 3 semaines pour celles et ceux qui \u00e9taient fort chagrin d'avoir laiss\u00e9 la hotte du P\u00e8re Noel d\u00e9garnie.\n\nEt pour celles et ceux qui l'ont trouv\u00e9, l'ont offert, et ont \u00e9t\u00e9 content(e)s de l'effet produit, voici quelques suggestions pour r\u00e9\u00e9diter l'exp\u00e9rience \u00e0 l'occasion, puisqu'il n'y a aucune raison de se priver d'un peu de plaisir d'offrir, hein :\n- votre maire\n- votre d\u00e9put\u00e9(e)\n- votre patron(ne)\n- vos employ\u00e9(e)s\n- le/la responsable du supermarch\u00e9\n- les fonctionnaires de la direction des routes\n- les responsables des services d'urbanisme\n- le CDI du lyc\u00e9e\n- les tours op\u00e9rators\n- votre banquier (arf !)\n- et bien s\u00fbr vos beaux parents :)\n\nJe rappelle que cet ouvrage est \u00e0 conserver au moins un si\u00e8cle pour concourir efficacement \u00e0 la soustraction de CO2 de l'atmosph\u00e8re. Si vous n'en voulez plus, donnez le \u00e0 une biblioth\u00e8que !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6880159803595907072,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6880159804292157440,urn:li:activity:6880159804292157440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 441, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6880159804292157440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6880159804292157440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6880159804292157440", + "threadId": "activity:6880159804292157440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6880159804292157440", + "urn": "urn:li:activity:6880159804292157440", + "numComments": 559, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6880159804292157440", + "reactionTypeCounts": [ + { + "count": 5475, + "reactionType": "LIKE" + }, + { + "count": 335, + "reactionType": "PRAISE" + }, + { + "count": 328, + "reactionType": "EMPATHY" + }, + { + "count": 87, + "reactionType": "APPRECIATION" + }, + { + "count": 27, + "reactionType": "INTEREST" + }, + { + "count": 14, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6880159804292157440", + "numLikes": 6266, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6880159804292157440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6266, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6879841892465467393,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6879841892465467393", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6879841892465467393)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6879841892465467393)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-catastrophes-naturelles-ont-co%C3%BBt%C3%A9-105-activity-6879841892465467393-MJka?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6879841892004098048", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6879841892465467393", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6879841892465467393,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6879841892465467393,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6879841892004098048", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "X2Q5cyHVDzIFSvbG+BGKAg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6879841892465467393,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7653182707499158822", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676412002373?e=1677240000&v=beta&t=YBVks-P10jgatT1QD7jIEa6yg3BxJPWW-KNvLobXfxo", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676412002373?e=1677240000&v=beta&t=DqjwgzZuJeHEbmUMWXznaMaRQvmsAAgXeMXuJWAnJ2Y", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676412002374?e=1677240000&v=beta&t=8zUPr1mGsoQCd-xjYFC6Fnz8OdjFjPHwIlNAQl6bUWQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676412002374?e=1677240000&v=beta&t=NaMs80SWj5aYHiZSnabssX-xOq4HhvJzuZ2X_KJlhsk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGV2o8IKu_PZg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7653182707499158822)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7653182707499158822)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les catastrophes naturelles ont co\u00fbt\u00e9 105 milliards de dollars aux assureurs en 2021 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/banque-assurances/les-catastrophes-naturelles-ont-coute-105-milliards-de-dollars-aux-assureurs-en-2021-1372431" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les catastrophes naturelles ont co\u00fbt\u00e9 105\u00a0milliards de dollars aux assureurs en 2021" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6879841892004098048,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Selon Swiss Re, 2021 sera la 4\u00e8 ann\u00e9e la plus couteuse en termes de catastrophes naturelles, avec une facture de 105 milliards de dollars pour les assureurs.\n\n105 milliards de dollars, c'est assur\u00e9ment plus d'argent que tout lecteur de ce post n'en aura jamais (ce qui signifie que je renonce d\u00e9lib\u00e9r\u00e9ment \u00e0 \u00eatre lu par Bezos, Musk, Arnault et Gates ; j'esp\u00e8re que ce renoncement sera appr\u00e9ci\u00e9 \u00e0 sa juste valeur).\n\nMais face \u00e0 un PIB mondial qui se monte \u00e0 environ 80.000 milliards par an, c'est juste ri-di-cule. Pour une personne qui gagnerait 80.000 euros par an, cela signifierait une perte d'environ 100 euros \u00e0 cause du climat (car en 2021 il y a une toute petite partie qui vient de causes non climatiques). Ca ou rien, c'est pareil !\n\nRegarder le probl\u00e8me sous l'angle des pertes \u00e9conomiques actuelles est donc se condamner \u00e0 ne rien faire. Cette approche nous masque trois points essentiels :\n- tout d'abord la perte d'activit\u00e9 cons\u00e9cutive \u00e0 la destruction d'une infrastructure n'est pas toujours dans les dommages assur\u00e9s, et peut se monter \u00e0 bien plus que le cout de reconstruction de l'infrastructure,\n- ensuite la facilit\u00e9 \u00e0 reconstruire les infrastructures d\u00e9truites vient de l'abondance \u00e9nerg\u00e9tique. Plus cette derni\u00e8re sera affaiblie avec la baisse - d\u00e9lib\u00e9r\u00e9e ou subie - des combustibles fossiles, plus il sera difficile de r\u00e9tablir l'infrastructure d\u00e9truite, ou plus les cons\u00e9quences de sa destruction seront durables.\n- enfin et surtout les ressources naturelles dont d\u00e9pendent nos activit\u00e9s sont gratuites par convention. Si le changement climatique les d\u00e9truit, cela est invisible dans les dommages assur\u00e9s... mais pas du tout dans le niveau de \"prosp\u00e9rit\u00e9\" de l'humanit\u00e9.\n\nIl serait donc tr\u00e8s dangereux d'en rester aux dommages assur\u00e9s pour se rassurer \u00e0 bon compte. Ces chiffres ne sont pas pertinents pour jauger de l'ampleur du probl\u00e8me." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6879841892004098048,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6879841892465467393,urn:li:activity:6879841892465467393,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 33, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6879841892465467393,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6879841892465467393,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6879841892465467393", + "threadId": "activity:6879841892465467393", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6879841892465467393", + "urn": "urn:li:activity:6879841892465467393", + "numComments": 42, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6879841892465467393", + "reactionTypeCounts": [ + { + "count": 519, + "reactionType": "LIKE" + }, + { + "count": 107, + "reactionType": "INTEREST" + }, + { + "count": 62, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6879841892465467393", + "numLikes": 699, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6879841892465467393", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 699, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6879513626189844480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6879513626189844480", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6879513626189844480)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6879513626189844480)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-site-de-rte-qui-donne-les-prix-spot-de-activity-6879513626189844480-JuEl?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6879513625548136448", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6879513626189844480", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6879513626189844480,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6879513626189844480,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6879513625548136448", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "oKkwSFMas6rnRlQLHDb+VQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6879513626189844480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHRHUI19yxXdw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHRHUI19yxXdw", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1640203859960?e=1679529600&v=beta&t=zz4sungJyctGxexIljjyTlzyVCDSnvl77RQC_d32PCo", + "expiresAt": 1679529600000, + "height": 1148 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1640203863140?e=1679529600&v=beta&t=NSONdw9jLTyhdZoWoQD5lPuuRFLBU4t3-14g-IXf524", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1640203863140?e=1679529600&v=beta&t=GTRXu2m7zFC6IxcJvNOgJkghDv9guLSyzMOceisV0fA", + "expiresAt": 1679529600000, + "height": 718 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1640203863140?e=1679529600&v=beta&t=Jlge5n1gO4_MRzsrj8Lz9yw_2cA-W0xfG9ubDAaKI94", + "expiresAt": 1679529600000, + "height": 269 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1640203863140?e=1679529600&v=beta&t=4jT-VsqlZhxzbHOm5-R0CDjwotMEat5cHIFkJRzI0y8", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1640203863140?e=1679529600&v=beta&t=T82r5jj7iCYa0MOEAbPxXKjmCWy4Chz1w7eU_R5JkYM", + "expiresAt": 1679529600000, + "height": 449 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHRHUI19yxXdw/feedshare-shrink_" + }, + "displayAspectRatio": 0.560546875 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6879513625548136448,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le site de RTE qui donne les prix spot de l'\u00e9lectricit\u00e9 indique qu'en Belgique ce dernier a d\u00e9pass\u00e9 les 600 euros du MWh le 21 d\u00e9cembre (soit 60 centimes le kWh), refl\u00e9tant en cela une tendance tr\u00e8s marqu\u00e9e partout en Europe : https://lnkd.in/dfxe6pfH\n\nIl serait inexact d'y voir une seule cause, mais il y en a plusieurs qui s'empilent :\n- peu de vent sur l'Europe (parce que ca arrive de temps en temps...)\n- peu de soleil (logique, c'est l'hiver)\n- un prix du gaz tr\u00e8s \u00e9lev\u00e9 parce que les russes se font un peu tirer l'oreille pour nous en fournir (et donc cela tire vers le haut le kWh \u00e9lectrique au gaz)\n- un quota de CO2 dont le prix est \u00e9lev\u00e9 (logique, puisque nous voulons \"sortir du CO2\")\n- une demande \u00e9lev\u00e9e parce qu'il a fait froid (le chauffage n'est pas seul en cause : plein d'autres consommations augmentent aussi quand il fait froid).\n- et en France l'arr\u00eat de quelques r\u00e9acteurs, mais on voit que cela ne diff\u00e9rencie pas notre pays du reste de l'Europe.\n\nAucune de ces causes n'est v\u00e9ritablement une surprise (pas m\u00eame le fait que l'on arr\u00eate un r\u00e9acteur de temps en temps pour remplacer une pi\u00e8ce qui doit \u00eatre chang\u00e9e ; toute machine est p\u00e9riodiquement v\u00e9rifi\u00e9e et parfois arr\u00eat\u00e9e pour r\u00e9paration sans que ce soit n\u00e9cessairement une catastrophe qui vient d'\u00eatre \u00e9vit\u00e9e). \n\nAdmettons que l'on commence \u00e0 se dire que notre syst\u00e8me \u00e9lectrique est parti dans une mauvaise passe. Suffit-il, alors de demander \u00e0 EDF de \"prendre toutes les mesures pertinentes pour renforcer \u00e0 court terme la s\u00e9curit\u00e9 d\u2019approvisionnement\", comme l'a fait Mme Pompili au nom du gouvernement (https://lnkd.in/eDbEqzkG), pour que finalement les probl\u00e8mes soient r\u00e9gl\u00e9s ?\n\nPas n\u00e9cessairement. Le syst\u00e8me \u00e9lectrique est un syst\u00e8me lent. Il se pilote sur des d\u00e9cennies. La conjonction de cet hiver (un peu de froid, pas de vent, pas assez de gaz russe - \u00e0 terme parce qu'ils passeront leur pic de production, pas de soleil, et des moyens pilotables diminu\u00e9s) se reproduira \u00e0 l'avenir, et sera d'autant plus difficile \u00e0 g\u00e9rer que nous prenons des paris pas du tout assur\u00e9s de r\u00e9ussir. \n\nPour le moment la seule cons\u00e9quence est un prix tr\u00e8s \u00e9lev\u00e9 sur le march\u00e9 spot (sachant que l'essentiel des transaction se fait \u00e0 terme). Mais, au vu de la d\u00e9pendance totale du fonctionnement des soci\u00e9t\u00e9s modernes \u00e0 l'\u00e9lectricit\u00e9, si les d\u00e9fauts de fourniture commencent \u00e0 devenir fr\u00e9quents, ca sera une autre histoire !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6879513625548136448,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6879513626189844480,urn:li:activity:6879513626189844480,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 88, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6879513626189844480,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6879513626189844480,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6879513626189844480", + "threadId": "activity:6879513626189844480", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6879513626189844480", + "urn": "urn:li:activity:6879513626189844480", + "numComments": 193, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6879513626189844480", + "reactionTypeCounts": [ + { + "count": 1993, + "reactionType": "LIKE" + }, + { + "count": 243, + "reactionType": "INTEREST" + }, + { + "count": 228, + "reactionType": "MAYBE" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6879513626189844480", + "numLikes": 2491, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6879513626189844480", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2491, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6878984498646716416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6878984498646716416", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6878984498646716416)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6878984498646716416)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pour-atteindre-la-neutralit%C3%A9-carbone-faisons-activity-6878984498646716416-oA-7?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6878984498118213634", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6878984498646716416", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6878984498646716416,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6878984498646716416,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6878984498118213634", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "T8mDwsT8ZflwJKsBjbueSw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6878984498646716416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8648099232971058928", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 612, + "fileIdentifyingUrlPathSegment": "800/0/1676391003136?e=1677240000&v=beta&t=UFFSKP5n5trSIPIDg_GH4o6-Iir2q72fJ1iXTHiqLXM", + "expiresAt": 1677240000000, + "height": 306 + }, + { + "width": 612, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676391003136?e=1677240000&v=beta&t=8L7Gy9KeZssDQZy-UcNWrRXqKCGM8aLYL7K66Y_16jM", + "expiresAt": 1677240000000, + "height": 306 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676391003137?e=1677240000&v=beta&t=2QkXS6wk57UHxN52juJouMTF-gJeoC1PXrusOWU4AfA", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676391003137?e=1677240000&v=beta&t=M8xgdNgMr4f70V8Zw6Y-VZzJXpqR6P95UughlhmGTQc", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGl5Nd6ziuEzw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8648099232971058928)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8648099232971058928)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "latribune.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pour atteindre la neutralit\u00e9 carbone, faisons \u00e9voluer le syst\u00e8me garantissant l'origine de l'\u00e9lectricit\u00e9 by latribune.fr", + "actionTarget": "https://www.latribune.fr/opinions/tribunes/pour-atteindre-la-neutralite-carbone-faisons-evoluer-le-systeme-garantissant-l-origine-de-l-electricite-898755.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pour atteindre la neutralit\u00e9 carbone, faisons \u00e9voluer le syst\u00e8me garantissant l'origine de l'\u00e9lectricit\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6878984498118213634,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Connaissez vous \"l'\u00e9lectricit\u00e9 verte\" ? Cette d\u00e9nomination d\u00e9signe en pratique un contrat d'achat d'\u00e9lectricit\u00e9 par lequel le fournisseur vous vend en m\u00eame temps de l'\u00e9lectricit\u00e9 (qui physiquement vient en pratique du m\u00eame r\u00e9seau quel que soit le vendeur) et des certificats de garantie d'origine. \n\nCes derniers attestent simplement que \"un producteur a inject\u00e9 de l'\u00e9lectricit\u00e9 d'origine renouvelable dans le r\u00e9seau europ\u00e9en il y a moins d'un an\". Il n'y a aucun lien physique sp\u00e9cifique entre l'\u00e9lectricit\u00e9 qui franchit votre compteur et l'\u00e9lectricit\u00e9 d'origine renouvelable qui a \u00e9t\u00e9 inject\u00e9e dans le r\u00e9seau \u00e0 n'importe quel moment de l'ann\u00e9e \u00e9coul\u00e9e.\n\nDans cette tribune, les auteurs proposent que :\n- ces garanties d'origine ne puissent \u00eatre \u00e9chang\u00e9es entre pays au-del\u00e0 des capacit\u00e9s physiques d'interconnexion (alors que c'est le cas aujourd'hui),\n- et que ces garanties d'origine ne soient valables qu'une heure et pas une ann\u00e9e (\u00e0 ce moment votre fournisseur serait oblig\u00e9 de vous d\u00e9clarer de l'\u00e9lectricit\u00e9 \"pas verte\" quand il y a plus de clients de \"l'\u00e9lectricit\u00e9 verte\" que de fourniture physique d'\u00e9lectricit\u00e9 renouvelable pendant l'heure qui pr\u00e9c\u00e8de).\n\nIl s'agit donc de mieux faire coller la convention contractuelle \u00e0 la r\u00e9alit\u00e9 physique (m\u00eame si ca sera encore imparfait). La deuxi\u00e8me disposition, en particulier, mettrait des obligations de stockage \u00e0 la charge des producteurs non pilotables. En ce moment, o\u00f9 nait un d\u00e9bat sur \"le passage de l'hiver\", qui d\u00e9pend pr\u00e9cis\u00e9ment de ces capacit\u00e9s pilotables, on en comprend l'int\u00e9r\u00eat.\n\nPar exemple, hier \u00e0 19h, il y avait 4 GW de puissance effective sur 100 GW de puissance \u00e9olienne et solaire install\u00e9e (premier graphique en commentaire), et en France c'\u00e9tait 3 GW sur 30 GW install\u00e9s (deuxi\u00e8me graphique). La situation est identique ce matin, avec pour r\u00e9sultat que ce sont les moyens fossiles qui tournent \u00e0 plein r\u00e9gime (en Europe, la disponibilit\u00e9 des 4 r\u00e9acteurs d\u00e9coupl\u00e9s en France ne change pas grand chose). \n\nEn cas de pari sur un ensemble \"ENR intermittentes + back-up pilotable d\u00e9carbon\u00e9\", ce risque de \"d\u00e9faut de capacit\u00e9s de pilotage d\u00e9carbon\u00e9es\" a \u00e9t\u00e9 bien identifi\u00e9 par RTE dans son volumineux rapport r\u00e9cent. Il en r\u00e9sulterait l'une des deux cons\u00e9quences suivantes :\n- maintien de moyens fossiles et exc\u00e8s de CO2\n- d\u00e9faut d'approvisionnement en gaz (\u00e9puisable et dont le pic mondial n'attendra pas 2050) et d\u00e9lestages.\n\nPousser les pays favorisant les producteurs \"intermittents\" \u00e0 pr\u00e9voir et financer d\u00e8s \u00e0 pr\u00e9sent (et pas plus tard) le back up n'est donc pas compl\u00e8tement sans fondement..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6878984498118213634,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6878984498646716416,urn:li:activity:6878984498646716416,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 42, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6878984498646716416,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6878984498646716416,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6878984498646716416", + "threadId": "activity:6878984498646716416", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6878984498646716416", + "urn": "urn:li:activity:6878984498646716416", + "numComments": 111, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6878984498646716416", + "reactionTypeCounts": [ + { + "count": 930, + "reactionType": "LIKE" + }, + { + "count": 97, + "reactionType": "INTEREST" + }, + { + "count": 83, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6878984498646716416", + "numLikes": 1158, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6878984498646716416", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1158, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6878745459192594432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6878745459192594432", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6878745459192594432)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6878745459192594432)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_contournement-est-de-rouen-l%C3%A9tat-donne-activity-6878745459192594432-omo2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6878745458555052032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6878745459192594432", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6878745459192594432,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6878745459192594432,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6878745458555052032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "3vKDxAfcjS+LHcQmNquVIg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6878745459192594432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9198050361491953317", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676548269107?e=1677240000&v=beta&t=9XHuKG2ve8ERqVWGIUjpKMtgBYZhbmTRhVzKlsyaoWA", + "expiresAt": 1677240000000, + "height": 531 + }, + { + "width": 1142, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676548269107?e=1677240000&v=beta&t=ePsefa8Db3Tl8aBWavbLP7gF8ANjMGhzaUDdaPCRt6A", + "expiresAt": 1677240000000, + "height": 759 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676548269107?e=1677240000&v=beta&t=vscIlWpBTsPCDONRA6gr6eDRFZ88MX8VdqczbjhJ_VU", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676548269107?e=1677240000&v=beta&t=Pcmd3vtPsBQ1onvH5sRx5StWjBMQ7LMoAIIsRbLseJo", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHWFviwtvv1jw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66375 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Le contournement est de Rouen permettra de d\u00e9sengorger la m\u00e9tropole rouennaise, assure le Premier ministre Jean Castex \u00e0 Paris Normandie" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9198050361491953317)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9198050361491953317)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "paris-normandie.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Contournement Est de Rouen : l\u2019\u00c9tat donne son feu vert malgr\u00e9 l\u2019opposition de la M\u00e9tropole by paris-normandie.fr", + "actionTarget": "https://www.paris-normandie.fr/id260558/article/2021-12-15/contournement-est-de-rouen-letat-donne-son-feu-vert-malgre-lopposition-de-la" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Contournement Est de Rouen : l\u2019\u00c9tat donne son feu vert malgr\u00e9 l\u2019opposition de la M\u00e9tropole" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6878745458555052032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A intervalles r\u00e9guliers, l'ex\u00e9cutif fran\u00e7ais rappelle que la France est pleinement engag\u00e9e dans la lutte contre le changement climatique. Ca, ce sont les discours. Puis on passe aux actes... et beaucoup change. \n\nD'o\u00f9 viennent les \u00e9missions domestiques de gaz \u00e0 effet de serre en France ? Tout d'abord des transports. On devrait donc se dire que si le but est de faire baisser les \u00e9missions des transports, une des choses que nous allons faire est d'\u00e9viter de donner envie aux fran\u00e7ais de rouler encore plus en voiture \u00e0 p\u00e9trole.\n\nBen non. Selon Paris Normandie, Jean Castex vient de d\u00e9clarer que \"C\u2019est le r\u00f4le de l\u2019\u00c9tat de soutenir des infrastructures de transport qui ont un impact concret pour la vie quotidienne des Fran\u00e7aises et des Fran\u00e7ais. Je le fais pour les routes, partout en France (...)\". \n\nIl faut baisser les \u00e9missions de gaz \u00e0 effet de serre li\u00e9es aux transports, mais on va le faire en rajoutant des routes. Il faut baisser l'artificialisation, mais on va le faire en rajoutant des routes. L'Etat va proposer aux rouennais (et aux autres) de circuler plus facilement en voiture, pour ensuite leur expliquer que ca serait bien qu'ils utilisent moins de moyens individuels, gourmands en ressources et en \u00e9nergie (quelle qu'elle soit).\n\nMais en fait Matignon a tout pr\u00e9vu : \"La bascule des v\u00e9hicules thermiques vers l\u2019\u00e9lectrique change la donne. \u00c0 terme on sera sur des voitures d\u00e9carbon\u00e9es donc l\u2019impact d\u2019un projet routier est moindre que par le pass\u00e9\".\n\n\"moindre\" ce n'est malheureusement pas \"align\u00e9 avec les 5% de baisse des \u00e9missions qu'il faut enclencher demain matin pour ne pas franchir la limite des 2\u00b0C de r\u00e9chauffement plan\u00e9taire\". \n\nA quand une impossibilit\u00e9 de construire toute nouvelle infrastructure sans avoir fait la preuve que cette derni\u00e8re est bien compatible avec ce rythme de baisse des \u00e9missions ? D\u00e9sormais ne devrait-on pas conditionner la d\u00e9claration d'utilit\u00e9 publique \u00e0 la production d'une \u00e9tude s\u00e9rieuse (non critiqu\u00e9e par l'Autorit\u00e9 Environnementale) montrant que le projet est \"compatible accord de Paris\" ? Car des contournement routiers justifi\u00e9s par le gain de confort du aux automobilistes, il n'y en a pas qu'\u00e0 Rouen...\n\nL'autre alternative pour retrouver de la coh\u00e9rence est de faire comme Trump : acter une bonne fois pour toute que l'accord de Paris, l'Elys\u00e9e et Matignon s'en fichent. En fait, c'est la r\u00e9alit\u00e9 en mati\u00e8re de d\u00e9cisions concr\u00e8tes de l'Etat pour les infrastructures de transport. La justification de construire de nouveaux ouvrages se base sur la valorisation \u00e9conomique du gain th\u00e9orique sur le temps de d\u00e9placement procur\u00e9 par l'ouvrage. En face on tient compte aussi de la valorisation (n\u00e9gative) des externalit\u00e9s environnementales, mais les valeurs sont cal\u00e9es pour que cet aspect l\u00e0 soit n\u00e9gligeable. C'est un choix politique puisque ces valorisations sont conventionnelles.\n\nLe discours est donc celui de la d\u00e9carbonation. La m\u00e9thode pousse \u00e0 l'exact inverse." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6878745458555052032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6878745459192594432,urn:li:activity:6878745459192594432,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 116, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6878745459192594432,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6878745459192594432,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6878745459192594432", + "threadId": "activity:6878745459192594432", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6878745459192594432", + "urn": "urn:li:activity:6878745459192594432", + "numComments": 234, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6878745459192594432", + "reactionTypeCounts": [ + { + "count": 1912, + "reactionType": "LIKE" + }, + { + "count": 170, + "reactionType": "INTEREST" + }, + { + "count": 161, + "reactionType": "MAYBE" + }, + { + "count": 85, + "reactionType": "PRAISE" + }, + { + "count": 33, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6878745459192594432", + "numLikes": 2369, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6878745459192594432", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2369, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6878377740781834240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6878377740781834240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6878377740781834240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6878377740781834240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_environnement-les-vagues-de-froid-sont-elles-activity-6878377740781834240--EnQ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6878377740333068288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6878377740781834240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6878377740781834240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6878377740781834240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6878377740333068288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "ip1EFkSdbJEQ8ohObQdSoQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6878377740781834240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7252649831825558664", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675842757700?e=1677240000&v=beta&t=Z8w-jZG1dSp7iN-y46lyHX1eEHOrr2l3qX6JV_jXXHo", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675842757700?e=1677240000&v=beta&t=drYGn2mj2yKdK8PV4n7RWc9Ykn4hIEH1-MuMnE4aRxo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675842757700?e=1677240000&v=beta&t=bGUOD1gBRM1M5ynmlOP8BZwgQMu0dmpZ1QgZOOrnXP4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675842757700?e=1677240000&v=beta&t=aFqrTfc5IC0axn_SqpkWR5-GITdIr93Z8Gr4D-Ttt3o", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHvzymZIHe9Yw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7252649831825558664)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7252649831825558664)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Environnement : les vagues de froid sont-elles compatibles avec le r\u00e9chauffement climatique ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900107129-environnement-les-vagues-de-froid-sont-elles-compatibles-avec-le-rechauffement-climatique" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Environnement : les vagues de froid sont-elles compatibles avec le r\u00e9chauffement climatique ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6878377740333068288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a deux semaines environ, le Nord de la Scandinavie, la Russie et l'Alaska ont exp\u00e9riment\u00e9 des records de froid pour un mois de d\u00e9cembre (https://lnkd.in/eUVZ3iqG ). \n\nAlors quoi : le climat se r\u00e9chauffe et pourtant on se les g\u00e8le ? Dans cette livraison hebdomadaire pour RTL, j'essaie d'expliquer pourquoi ce paradoxe n'en est qu'en apparence. Le r\u00e9chauffement climatique va, au moins \"un certain temps\", favoriser des incursions d'air tr\u00e8s froid aux moyennes latitudes comme il y en a eu une r\u00e9cemment, ou comme il y en a eu une au Texas en f\u00e9vrier dernier. Et cela est parfaitement compatible avec des records de chaud \u00e0 d'autres moments.\n\nIl va aussi favoriser les d\u00e9g\u00e2ts dus aux gel\u00e9es tardives. Avec une v\u00e9g\u00e9tation qui se r\u00e9veille plus t\u00f4t en moyenne, un \u00e9pisode de gel survenant au m\u00eame moment qu'avant trouvera des plantes plus vuln\u00e9rables puisque tout aura bourgeonn\u00e9. M\u00e9t\u00e9o France revient sur l'\u00e9pisode de 2021 : https://lnkd.in/eJU9DAda \n\nUn climat qui se r\u00e9chauffe va donc parfois... nous donner des sueurs froides au vrai sens du terme." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6878377740333068288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6878377740781834240,urn:li:activity:6878377740781834240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 18, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6878377740781834240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6878377740781834240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6878377740781834240", + "threadId": "activity:6878377740781834240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6878377740781834240", + "urn": "urn:li:activity:6878377740781834240", + "numComments": 124, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6878377740781834240", + "reactionTypeCounts": [ + { + "count": 325, + "reactionType": "LIKE" + }, + { + "count": 50, + "reactionType": "INTEREST" + }, + { + "count": 31, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6878377740781834240", + "numLikes": 413, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6878377740781834240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 413, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6878039232267530240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6878039232267530240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6878039232267530240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6878039232267530240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_christophe-revelli-kedge-business-school-activity-6878039232267530240--Qn3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6878039231688704000", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6878039232267530240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6878039232267530240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6878039232267530240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6878039231688704000", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "XUw48BrcoFo0DGaORc6jDg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6878039232267530240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8474212334169838034", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 420, + "fileIdentifyingUrlPathSegment": "800/0/1675570996445?e=1677240000&v=beta&t=iKD5J7_Uy_WIgMSiK0kCtuvzD8eTol8u3XXUCQCBdlY", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 420, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675570996445?e=1677240000&v=beta&t=AZTropgGZH4S70PWFlQ9d1d5sb8B3emZcqNKKG4VHcU", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675570996445?e=1677240000&v=beta&t=UzdmOgIkGxXWWTmMs6_wUjz81dx_Rg3ngTCpqssU_jI", + "expiresAt": 1677240000000, + "height": 240 + }, + { + "width": 420, + "fileIdentifyingUrlPathSegment": "480/0/1675570996446?e=1677240000&v=beta&t=QhDDj_XuZHTSaJYhJ4zpAJMGwZUmjPMe1ZAMyWY0Tgo", + "expiresAt": 1677240000000, + "height": 630 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHw2aIVqRUSeQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.5 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8474212334169838034)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8474212334169838034)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "linfodurable.fr \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Christophe Revelli (Kedge Business School): \"Pas de bourgeons durables dans des racines financiaris\u00e9es\" by linfodurable.fr", + "actionTarget": "https://www.linfodurable.fr/investir-durable/entretiens/revelli-pas-de-bourgeons-durables-dans-des-racines-financiarisees-30009" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Christophe Revelli (Kedge Business School): \"Pas de bourgeons durables dans des racines financiaris\u00e9es\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6878039231688704000,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 163, + "length": 18, + "miniProfile": { + "firstName": "Christophe", + "lastName": "Revelli", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAbMbz8B72VtVtrc9HU7kCCqSFnRkVaoqu8", + "occupation": "Professor of Sustainable Finance and Impact Investing @Kedge BS", + "objectUrn": "urn:li:member:114061119", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAbMbz8B72VtVtrc9HU7kCCqSFnRkVaoqu8", + "publicIdentifier": "christophe-revelli-71324732", + "trackingId": "x0t8Q++iQBSNeyU0bk/OWw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans une interview pour L'Info Durable, un enseignant \u00e0 Kedge Business School (donc historiquement pas un repaire de d\u00e9croissantistes en partance pour le Larzac), Christophe Revelli, rappelle que la \"finance durable\" est malheureusement trop souvent un habillage de circonstance pour donner l'impression que la finance \"normale\" est devenue durable. On pourra discuter tel ou tel point technique \u00e9voqu\u00e9 dans cet interview, mais mon propos n'est pas l\u00e0. \n\nLe point int\u00e9ressant est que la personne qui critique les m\u00e9thodes trop souvent employ\u00e9es dans le monde financier pour se peindre en vert enseigne dans une \u00e9cole dite \"de commerce\". De ce fait, il est probable qu'il apprenne \u00e0 ses \u00e9tudiants \u00e0 d\u00e9velopper un sens critique, c'est-\u00e0-dire leur apprendre \u00e0 voir si le comportement des acteurs d'u secteur est concr\u00e8tement en phase avec les objectifs affich\u00e9s.\n\nPour la collectivit\u00e9, acqu\u00e9rir cette comp\u00e9tence est une excellente chose. Cela signifie que se multiplient les professionnels qui gardent en permanence du recul sur ce qu'ils font, \u00e9vitent de se leurrer eux-m\u00eames \u00e0 d\u00e9faut d'\u00eatre d\u00e9j\u00e0 parfaitement \"l\u00e0 o\u00f9 il faut\", et surtout sont aptes \u00e0 concevoir ou utiliser des outils et m\u00e9thodes qui permettent de comprendre o\u00f9 nous en sommes par rapport au probl\u00e8me et non juste de se rassurer \u00e0 bon compte.\n\nMais cette orientation a un inconv\u00e9nient potentiel : par construction, elle barre la route \u00e0 l'embauche (en tous cas pas sur la base de ce sens critique) chez les acteurs qui ne veulent surtout pas de la coh\u00e9rence, mais juste donner le change, avec des m\u00e9thodes faites pour laisser croire que tout est sous contr\u00f4le, alors que le probl\u00e8me reste inchang\u00e9.\n\nEt tant que l'\u00e9conomie restent \u00e0 dominante \"pas durable\", ces acteurs sont majoritaires. La quadrature du cercle se pr\u00e9sente donc ainsi : dans le domaine financier, comment faire pour former des \u00e9tudiants utilisant des m\u00e9thodes pertinentes, puis leur assurer un d\u00e9bouch\u00e9 sur ces bases quand l'essentiel du secteur n'en veut toujours pas ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6878039231688704000,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6878039232267530240,urn:li:activity:6878039232267530240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 28, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6878039232267530240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6878039232267530240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6878039232267530240", + "threadId": "activity:6878039232267530240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6878039232267530240", + "urn": "urn:li:activity:6878039232267530240", + "numComments": 38, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6878039232267530240", + "reactionTypeCounts": [ + { + "count": 353, + "reactionType": "LIKE" + }, + { + "count": 41, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "INTEREST" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6878039232267530240", + "numLikes": 436, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6878039232267530240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 436, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6877633035106340864,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6877633035106340864", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6877633035106340864)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6877633035106340864)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_coal-2021-analysis-iea-activity-6877633035106340864-U3Rb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6877633034506579968", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6877633035106340864", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6877633035106340864,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6877633035106340864,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6877633034506579968", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "DOHSkhmdlDQUFvOmakLkhw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6877633035106340864,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8910730432131405153", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676498329520?e=1677240000&v=beta&t=ySYcpKEd8CV94LnZVQYbbJegftqf_02IJ29I-6Y_Hck", + "expiresAt": 1677240000000, + "height": 799 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676498329520?e=1677240000&v=beta&t=oFHw_a-RXYBWGx_IJ8VVDvMKBBfwm1shugXwd3s2Mik", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676498329520?e=1677240000&v=beta&t=tlBOEZeWFBAm2Uf9uAofTHan8xBYKl2NxSMArikp-EY", + "expiresAt": 1677240000000, + "height": 159 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676498329521?e=1677240000&v=beta&t=Hx-R8dzgzFGruXyvqQa8-_3Tp0Ac1QV81oaU3sFypXE", + "expiresAt": 1677240000000, + "height": 479 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFMOq3xQ_HivA/articleshare-shrink_" + }, + "displayAspectRatio": 0.99875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8910730432131405153)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8910730432131405153)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "iea.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Coal 2021 \u2013 Analysis - IEA by iea.org", + "actionTarget": "https://www.iea.org/reports/coal-2021" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Coal 2021 \u2013 Analysis - IEA" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6877633034506579968,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La production \u00e9lectrique au charbon atteindra un record historique en 2021, indique l'Agence Internationale de l'Energie dans son rapport \"Coal 2021\".\n\nOn y lit que la Chine (50% de la production mondiale) pr\u00e9voit des augmentations de capacit\u00e9s mini\u00e8res et de production \u00e9lectrique au charbon pour les 4 ans \u00e0 venir, et que c'est aussi le cas de l'Inde.\n\nEt l'Agence Internationale de l'Energie de commenter en \u00e9crivant \"Global coal consumption is not on the Net Zero trajectory and is unlikely to be before 2024\". Il faudra probablement plus que des post linkedin pour inverser la donne. La bonne question est quoi faire..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6877633034506579968,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6877633035106340864,urn:li:activity:6877633035106340864,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 56, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6877633035106340864,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6877633035106340864,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6877633035106340864", + "threadId": "activity:6877633035106340864", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6877633035106340864", + "urn": "urn:li:activity:6877633035106340864", + "numComments": 89, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6877633035106340864", + "reactionTypeCounts": [ + { + "count": 421, + "reactionType": "LIKE" + }, + { + "count": 97, + "reactionType": "MAYBE" + }, + { + "count": 84, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6877633035106340864", + "numLikes": 611, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6877633035106340864", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 611, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6877523957164109824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6877523957164109824", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6877523957164109824)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6877523957164109824)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_a-quand-des-chief-impact-officers-dans-toutes-activity-6877523957164109824-2cgA?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6877523956518191104", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6877523957164109824", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6877523957164109824,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6877523957164109824,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6877523956518191104", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "q3BUT1l6sDmYMYAQIvo9KQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6877523957164109824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8031206960622419651", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676245831718?e=1677240000&v=beta&t=eqX0jKyYkhorXqzIT2tKBkGhIYREGWcyZ22iUdBW9D8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676245831718?e=1677240000&v=beta&t=Q1-O9QNrjTRersRztYqNcJJ0W0jqd71D84P0Soeftuw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676245831719?e=1677240000&v=beta&t=LtrQnYlfv2XyxD7qpJ871BIeyG6BqtfCX_vtt4OqEak", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676245831719?e=1677240000&v=beta&t=tG2ibuUkwoU8AawdJ6U2V40KHHZhMf69lsxvaXUqfM8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHvyyDC3lmN_A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8031206960622419651)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8031206960622419651)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: A quand des Chief Impact Officers dans toutes les entreprises ? by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/leadership-management/a-quand-des-chief-impact-officers-dans-toutes-les-entreprises-1372945" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "A quand des Chief Impact Officers dans toutes les entreprises\u00a0?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6877523956518191104,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'humanit\u00e9 a un probl\u00e8me avec les limites plan\u00e9taires. En r\u00e9ponse, les Nations Unies ont propos\u00e9 le concept de \"d\u00e9veloppement durable\", une esp\u00e8ce de baguette magique o\u00f9 nous pouvons \u00e0 la fois ne pas nous restreindre tout de suite (\"un d\u00e9veloppement qui satisfait les besoins de la g\u00e9n\u00e9ration actuelle\") sans ob\u00e9rer l'envie des g\u00e9n\u00e9rations futures de ne pas se restreindre (\"sans compromettre ceux des g\u00e9n\u00e9rations futures\"). A bien y regarder, c'est un oxymore : https://lnkd.in/e99RRmJ\n\nNous avons nomm\u00e9 des personnes en charge du d\u00e9veloppement durable dans toutes les grandes entreprises. Est-ce que cela a chang\u00e9 la trajectoire de ces derni\u00e8res ? Les \u00e9missions de gaz \u00e0 effet de serre ont progress\u00e9 \u00e0 la m\u00eame vitesse avant la cr\u00e9ation de ces fonctions qu'apr\u00e8s, de m\u00eame que pour la d\u00e9pl\u00e9tion p\u00e9troli\u00e8re, l'\u00e9rosion de la biodiversit\u00e9, la d\u00e9gradation des sols ou l'\u00e9talement urbain.\n\nIl est maintenant question de cr\u00e9er des \"chief impact officer\". Est-ce que le r\u00e9sultat sera diff\u00e9rent ? En fait, sans red\u00e9finition bien plus large de l'espace que doivent occuper nos activit\u00e9s productives mon\u00e9tis\u00e9es, cette fonction deviendra trop souvent celle de \"chief greenwashing officer\", comme une partie des responsables du d\u00e9veloppement durable en entreprise le sont devenus \u00e0 leur corps d\u00e9fendant.\n\nNous n'aimons pas nous remettre en question. Avant m\u00eame de savoir si c'est une bonne ou une mauvaise id\u00e9e, c'est un fait. D'exp\u00e9rience, lorsqu'une entreprise d\u00e9couvre, en r\u00e9alisant pour la premi\u00e8re fois un exercice de comptabilit\u00e9 environnementale, que son activit\u00e9 la met structurellement \u00e0 risque en cas de \"transition \u00e9cologique\", la r\u00e9action la plus courante n'est pas de d\u00e9cider s\u00e9ance tenante de changer de portefeuille de produits, de march\u00e9s, de comp\u00e9tences, quoi qu'il en coute sur le plan des performances \u00e9conomiques (et m\u00eame si le CA doit baisser), parce que \"c'est bon pour l'environnement\".\n\nLa r\u00e9action la plus courante est de continuer comme avant, en cherchant bien si on ne peut pas se dire que, au fond, l'activit\u00e9 est quand m\u00eame contributive \u00e0 la transition (le dernier secteur en date a avoir beaucoup communiqu\u00e9 sur ce th\u00e8me est le digital). CIO ou pas CIO...\n\nL'exemple de la personne en photo illustre bien le propos. Elle travaille dans une entreprise qui s'appelle Contentsquare. Cette derni\u00e8re a pour objet (cf leur site : https://contentsquare.com/ ) de \"helps companies understand hidden customer behaviors\". En gros ils font du ciblage marketing. Question : \u00e0 quoi sert un \"CIO\" dans une entreprise dont l'ADN est d'aider des entreprises qui vendent des produits \u00e0 en vendre plus ?\n\nLa seule mani\u00e8re d'avoir \"de l'impact\" au bon niveau est de mettre la totalit\u00e9 de l'entreprise en conformit\u00e9 avec un monde o\u00f9 les flux physiques baissent structurellement. Et cela demande que tout le comex y voit une limite non d\u00e9passable, \u00e0 commencer par le/la patron(ne). Pour le moment, nous n'y sommes pas." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6877523956518191104,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6877523957164109824,urn:li:activity:6877523957164109824,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 109, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6877523957164109824,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6877523957164109824,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6877523957164109824", + "threadId": "activity:6877523957164109824", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6877523957164109824", + "urn": "urn:li:activity:6877523957164109824", + "numComments": 159, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6877523957164109824", + "reactionTypeCounts": [ + { + "count": 1996, + "reactionType": "LIKE" + }, + { + "count": 188, + "reactionType": "MAYBE" + }, + { + "count": 160, + "reactionType": "INTEREST" + }, + { + "count": 90, + "reactionType": "PRAISE" + }, + { + "count": 30, + "reactionType": "APPRECIATION" + }, + { + "count": 28, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6877523957164109824", + "numLikes": 2492, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6877523957164109824", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2492, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6877151725782933504,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6877151725782933504", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6877151725782933504)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6877151725782933504)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cop26-implications-et-opportunit%C3%A9s-pour-activity-6877151725782933504-LQ9i?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6877151725258645504", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6877151725782933504", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6877151725782933504,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6877151725782933504,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6877151725258645504", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "6sNhL8d6muj5G/vpQlYGRg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6877151725782933504,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7959477678274251033", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676581370154?e=1677240000&v=beta&t=0PYl4xuUWU_80HN6shObnAS4X6yeoLMwCpW3BiRsN6Q", + "expiresAt": 1677240000000, + "height": 467 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676581370154?e=1677240000&v=beta&t=HL5Pc-criSzwnm8byrpdIyvOEWioZKtlj-4Z5v1Iubc", + "expiresAt": 1677240000000, + "height": 748 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676581370154?e=1677240000&v=beta&t=9WjjPQe5AI8dRLCLJFDOPyvs3xGU2--I9ffQ-RYlPME", + "expiresAt": 1677240000000, + "height": 93 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676581370154?e=1677240000&v=beta&t=P_h92LwtxC9MjeQ3joQfEr3HvE19075kF4-l5BZBclo", + "expiresAt": 1677240000000, + "height": 280 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFK_FlHc_KHng/articleshare-shrink_" + }, + "displayAspectRatio": 0.58375 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7959477678274251033)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7959477678274251033)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "hautconseilclimat.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: COP26 : Implications et opportunit\u00e9s pour la politique climatique de la France \u2014 Haut Conseil pour le Climat by hautconseilclimat.fr", + "actionTarget": "https://www.hautconseilclimat.fr/publications/cop26-implications-et-opportunites-pour-la-politique-climatique-de-la-france/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "COP26 : Implications et opportunit\u00e9s pour la politique climatique de la France \u2014 Haut Conseil pour le Climat" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6877151725258645504,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Haut conseil pour le climat propose une analyse du bilan de la COP 26. Au-del\u00e0 du fait de r\u00e9p\u00e9ter que nous ne sommes pas dans les clous question engagements pris par rapport \u00e0 ce qui permettrait de limiter le r\u00e9chauffement \u00e0 1,5 ou m\u00eame 2\u00b0C (\u00e9l\u00e9vation de temp\u00e9rature pour laquelle les canicules s\u00e9culaires deviennent d\u00e9cennales, une bonne partie de la for\u00eat fran\u00e7aise meurt, et les sols europ\u00e9ens perdent 20% d'humidit\u00e9), le document publi\u00e9 par le HCC fait un inventaire des \"initiatives\" sectorielles lanc\u00e9es pendant la COP.\n\nIl ne faut cependant pas se leurrer : de par son fonctionnement, une COP ne peut rien faire d'autre que d'ent\u00e9riner ce que les pays ont d\u00e9j\u00e0 d\u00e9cid\u00e9 de faire chez eux, pour des raisons d'int\u00e9r\u00eat domestique.\n\nAucune COP ne r\u00e8glera \"de l'ext\u00e9rieur\" un probl\u00e8me que nous ne voulons pas r\u00e9gler de l'int\u00e9rieur. Penser que la COP va \u00eatre un succ\u00e8s alors que les pays procrastinent sur le plan domestique, c'est penser que l'on peut faire une bonne \u00e9quipe de rugby avec des gens qui ne veulent pas jouer au rugby et ne s'entra\u00eenent pas \u00e0 ce jeu.\n\nPar ailleurs, les implications \u00e9conomiques de la r\u00e9duction massive des \u00e9missions (fin de la soci\u00e9t\u00e9 fossile = forte contraction de l'\u00e9conomie \"physique\") ne sont toujours pas comprises et/ou accept\u00e9es par l'essentiel des protagonistes. On se rappelle de cette r\u00e9plique c\u00e9l\u00e8bre : \"sur un malentendu, ca peut marcher\". Malheureusement pas avec la physique." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6877151725258645504,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6877151725782933504,urn:li:activity:6877151725782933504,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 22, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6877151725782933504,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6877151725782933504,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6877151725782933504", + "threadId": "activity:6877151725782933504", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6877151725782933504", + "urn": "urn:li:activity:6877151725782933504", + "numComments": 31, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6877151725782933504", + "reactionTypeCounts": [ + { + "count": 459, + "reactionType": "LIKE" + }, + { + "count": 30, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6877151725782933504", + "numLikes": 521, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6877151725782933504", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 521, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6876897155487981569,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6876897155487981569", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6876897155487981569)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6876897155487981569)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_ice-shelf-holding-back-keystone-antarctic-activity-6876897155487981569-2PSG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6876897154737209344", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6876897155487981569", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6876897155487981569,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6876897155487981569,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6876897154737209344", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "p4WBlVYlRMTJjqRBAyKbWQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6876897155487981569,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7427097562208306724", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676248339132?e=1677240000&v=beta&t=DUT-mr1Cw52A9Mb8bcMa0TOdrQkvRTZIloKlTLc2nqA", + "expiresAt": 1677240000000, + "height": 528 + }, + { + "width": 1209, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676248339133?e=1677240000&v=beta&t=xTyz-Vhe6_Rs1Fe74zYDMrA0FVGp-T4phZGkfXfMaus", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676248339133?e=1677240000&v=beta&t=sGwmUYyAHtxf1QfrfuVzWn-6Hp0_P6DXI9NL2P20-Fs", + "expiresAt": 1677240000000, + "height": 105 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676248339133?e=1677240000&v=beta&t=7mlkzltTYr5s36fYYBamj4A2sX9yY70KYUxdYSWNMHE", + "expiresAt": 1677240000000, + "height": 317 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFgrBpScIz4Pg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7427097562208306724)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7427097562208306724)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "science.org \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Ice shelf holding back keystone Antarctic glacier within years of failure by science.org", + "actionTarget": "https://www.science.org/content/article/ice-shelf-holding-back-keystone-antarctic-glacier-within-years-failure" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Ice shelf holding back keystone Antarctic glacier within years of failure" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6876897154737209344,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Une partie de la superficie future du continent europ\u00e9en est peut-\u00eatre en train de se joue en ce moment du c\u00f4t\u00e9 de l'Antarctique. En ce d\u00e9but d'hiver, o\u00f9 les temp\u00e9ratures (en France m\u00e9tropolitaine) sont de saison (ce qui n'est pas le cas aux USA o\u00f9 des \u00e9pisodes 20\u00b0C au-dessus des normales ont \u00e9t\u00e9 constat\u00e9s en d\u00e9cembre : https://lnkd.in/eC6MqmVq ), nous ne pensons plus spontan\u00e9ment aux cons\u00e9quences \"chaudes\" de la d\u00e9rive climatique.\n\nMalheureusement cela n'est pas suffisant pour les arr\u00eater. Un article (pas \"\u00e0 comit\u00e9 de lecture\") tout juste publi\u00e9 dans Science.org indique une faiblesse du glacier Twaites, situ\u00e9 en Antarctique de l'Ouest. Ce glacier, situ\u00e9 sur la partie de l'Antarctique qui fait face au Chili, et de la taille de la Floride, se termine par une langue flottant sur la mer. Il est par ailleurs pos\u00e9 sur un socle rocheux sous-marin, comme une large partie de l'Antarctique de l'Ouest et une partie de l'Antarctique de l'Est. \n\nSa taille et sa position en font une \"cl\u00e9 de voute\" de l'ensemble de la calotte antarctique de l'Ouest. Or, la langue terminale de ce glacier commence \u00e0 \u00eatre \"grignot\u00e9e par en dessous\" par une mer plus chaude. Cela acc\u00e9l\u00e8re le d\u00e9versement de glace dans la mer. Si l'ensemble de ce glacier venait \u00e0 se d\u00e9sagr\u00e9ger en icebergs (pas en une semaine, mais possiblement \u00e0 l'\u00e9chelle du si\u00e8cle), cela pourrait par contrecoup conduire \u00e0 la dislocation de l'ensemble de l'Antarctique de l'Est. \n\nUn article r\u00e9cemment paru dans Nature (https://lnkd.in/e2T9MYUa ) indique que, pendant la derni\u00e8re d\u00e9glaciation, les processus de retrait des glaciers de cette calotte devenaient irr\u00e9versibles pour plusieurs si\u00e8cles. Les points de bascule sont encore mal identifi\u00e9s, mais la conclusion de l'article est que nous pourrions \u00eatre en train de vivre l'un d'eux, auquel cas nous avons \"sign\u00e9\" pour une hausse de plusieurs m\u00e8tres du niveau de l'oc\u00e9an quoi que nous fassions. Du reste le dernier rapport du GIEC indiquait qu'une \u00e9l\u00e9vation de l'oc\u00e9an mondial sup\u00e9rieure \u00e0 15m ne pouvait \u00eatre exclue en 2300 \u00e0 cause de l'instabilit\u00e9 sur les calottes antarctique et groenlandaise.\n\nPour maximiser la probabilit\u00e9 que cela n'arrive pas, il n'y a qu'une seule chose \u00e0 faire : baisser massivement les \u00e9missions plan\u00e9taires \u00e0 partir de demain matin." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6876897154737209344,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6876897155487981569,urn:li:activity:6876897155487981569,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 42, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6876897155487981569,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6876897155487981569,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6876897155487981569", + "threadId": "activity:6876897155487981569", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6876897155487981569", + "urn": "urn:li:activity:6876897155487981569", + "numComments": 68, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6876897155487981569", + "reactionTypeCounts": [ + { + "count": 980, + "reactionType": "LIKE" + }, + { + "count": 221, + "reactionType": "INTEREST" + }, + { + "count": 124, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6876897155487981569", + "numLikes": 1353, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6876897155487981569", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1353, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6876553970488279040,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6876553970488279040", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6876553970488279040)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6876553970488279040)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-des-difficult%C3%A9s-des-enseignants-qui-souhaitent-activity-6876553970488279040-iGEV?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6876553969821380608", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6876553970488279040", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6876553970488279040,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6876553970488279040,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6876553969821380608", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "xgNAJXiJfoA3LXy4ueMuxQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6876553970488279040,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQFokNyQKfrUxg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQFokNyQKfrUxg", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1639498224776?e=1679529600&v=beta&t=JVcbqyy7BdREoktyqMVRZEFWMING5iNDoKMIBYMndZY", + "expiresAt": 1679529600000, + "height": 638 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1639498225454?e=1679529600&v=beta&t=Nas-RJbtRTfr5SSWLtvAaWewhny90fdy3vhVwGXE3Dw", + "expiresAt": 1679529600000, + "height": 6 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1639498225454?e=1679529600&v=beta&t=ZKa55wZcYTxPkPIJg1P2uszdAfq_KppzB8g43kUMPuA", + "expiresAt": 1679529600000, + "height": 399 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1639498225454?e=1679529600&v=beta&t=2DBHuZ9rzzwfywBWi7FFgCZfZzuxhHgXoDunhHjHX3w", + "expiresAt": 1679529600000, + "height": 150 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1639498225454?e=1679529600&v=beta&t=DYJ9F75qmdElEru0NIqg8KCzwqtVlM64WYECcPMwn44", + "expiresAt": 1679529600000, + "height": 50 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1639498225454?e=1679529600&v=beta&t=SH4Y9MJqonQ33zEZ19K8Ukd8SgTfAdk3kNtTJqSag6g", + "expiresAt": 1679529600000, + "height": 249 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQFokNyQKfrUxg/feedshare-shrink_" + }, + "displayAspectRatio": 0.3115234375 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, text, application" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6876553969821380608,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 616, + "length": 17, + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "zETy4wJiRca9j+einstONA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 637, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "GBrguf3nTaWjo2AaLD4k5w==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 681, + "length": 28, + "miniCompany": { + "objectUrn": "urn:li:company:68222602", + "entityUrn": "urn:li:fs_miniCompany:68222602", + "name": "Enseignants de la Transition", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1593597904507?e=1684972800&v=beta&t=-y6pR4-34Nn0oX5bCYu03n4C-7tVzeV7ee6SL7lfq2Q", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1593597904507?e=1684972800&v=beta&t=d4x0_hpmsDAUZhTdS0-74liQZ_AS5yXGGxfSvCe8mO0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1593597904507?e=1684972800&v=beta&t=gRJ7OV7oe9fHlumpGBLjHP25jduZ_9o9AEmm8Glopio", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQEociJm-6r2Eg/company-logo_" + } + }, + "universalName": "enseignants-de-la-transition", + "dashCompanyUrn": "urn:li:fsd_company:68222602", + "trackingId": "RtaqjHkpTwaoJvpzYtukRg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Une des difficult\u00e9s des enseignants qui souhaitent \"enseigner le climat\" \u00e0 leurs \u00e9l\u00e8ves est de trouver des ressources p\u00e9dagogiques. Dans quel ordre pr\u00e9senter le probl\u00e8me ? Que faire passer comme notions en fonction de l'\u00e2ge ? Combien de temps y passer ? O\u00f9 trouver de bons supports ? (\u00e0 part une BD que je ne nommerai pas puisqu'elle est introuvable \ud83d\ude01). \n\nCes questions trouvent rarement une r\u00e9ponse dans son entourage proche quand on est en phase de d\u00e9marrage d'un enseignement, puisque par d\u00e9finition les voisins n'ont pas plus fait que soi-m\u00eame, sauf exception.\n\nCeest justement pour \"mailler les exceptions\" que The Shift Project et Les Shifters ont initi\u00e9, avec le soutien de Enseignants de la Transition, le d\u00e9veloppement du site Enseigner le Climat (https://lnkd.in/d-2rc4fw), qui a vocation \u00e0 fournir des ressources et de la mise en r\u00e9seau aux enseignants qui veulent... enseigner le climat.\n\nLes ressources sont \u00e9videmment des contenus, mais aussi des individus : conf\u00e9renciers, vacataires... \n\nNous esp\u00e9rons que cette initiative permettra d'acc\u00e9l\u00e9rer la diffusion de l'information \"de d\u00e9part\", celle sur le probl\u00e8me \u00e0 traiter, pour que la r\u00e9flexion sur \"les solutions\" que les futurs actifs devront mener (car nous allons vivre avec le changement climatique pour quelques si\u00e8cles) soit la plus pertinente possible." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6876553969821380608,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6876553970488279040,urn:li:activity:6876553970488279040,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 73, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6876553970488279040,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6876553970488279040,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6876553970488279040", + "threadId": "activity:6876553970488279040", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6876553970488279040", + "urn": "urn:li:activity:6876553970488279040", + "numComments": 126, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6876553970488279040", + "reactionTypeCounts": [ + { + "count": 1400, + "reactionType": "LIKE" + }, + { + "count": 179, + "reactionType": "PRAISE" + }, + { + "count": 65, + "reactionType": "EMPATHY" + }, + { + "count": 36, + "reactionType": "APPRECIATION" + }, + { + "count": 23, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6876553970488279040", + "numLikes": 1724, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6876553970488279040", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1724, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6876408955933921280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6876408955933921280", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6876408955933921280)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6876408955933921280)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_r%C3%A9chauffement-climatique-la-technologie-activity-6876408955933921280-S2V4?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6876408955455750144", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6876408955933921280", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6876408955933921280,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6876408955933921280,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6876408955455750144", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "yLYyGyeSkdEEoA2t0x0iYA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6876408955933921280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8566777165281213960", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675918492897?e=1677240000&v=beta&t=36ao9sBuiRbKaMFG34hHW3unHnQTMuLQdo-c2ovJy8o", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675918492897?e=1677240000&v=beta&t=8RyEPU9XR_bbXFSqRMYyx2zaE4gPNHydqHFWv66Vmxc", + "expiresAt": 1677240000000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675918492897?e=1677240000&v=beta&t=71WPBfn4weeqkXKqHR429KGVupfI-R0SV5FcXtzAps4", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675918492898?e=1677240000&v=beta&t=vmm0tH6F8tX1uNqoXZ6KdqwiL8h8qjSM7A8Em8xw94c", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEW3Z0HluzKqg/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Pour \"r\u00e9parer\" le climat, beaucoup de responsables politiques misent sur l'innovation technologique." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8566777165281213960)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8566777165281213960)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "francetvinfo.fr \u2022 8 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: R\u00e9chauffement climatique : la technologie suffira-t-elle \u00e0 r\u00e9gler le probl\u00e8me ? by francetvinfo.fr", + "actionTarget": "https://www.francetvinfo.fr/meteo/climat/rechauffement-climatique-la-technologie-suffira-t-elle-a-regler-le-probleme_4866673.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "R\u00e9chauffement climatique : la technologie suffira-t-elle \u00e0 r\u00e9gler le probl\u00e8me ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6876408955455750144,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La \"technologie\" va-t-elle suffire \u00e0 nous \u00e9viter un r\u00e9chauffement climatique d\u00e9l\u00e9t\u00e8re, sans action sur le niveau de consommation ? Dans cet article le site de France Info rappelle \u00e0 sa mani\u00e8re l'\u00e9quation de Kaya (https://lnkd.in/gAthJhJ ), un raisonnement quantitatif - car en mati\u00e8re d'\u00e9missions il faut compter - qui met en perspective les vitesses de progression dans l'efficacit\u00e9 unitaire et l'augmentation des usages.\n\nLa conclusion est h\u00e9las n\u00e9gative. A la traditionnelle question \"pourquoi demain ne serait-il pas diff\u00e9rent d'hier ?\" on peut r\u00e9pondre que, depuis que nous avons identifi\u00e9 le r\u00e9chauffement climatique comme un probl\u00e8me (a minima la fin des ann\u00e9es 1980, date de la cr\u00e9ation du GIEC), les progr\u00e8s techniques ont \u00e9t\u00e9 importants et la hausse des \u00e9missions tout autant.\n\nFrance Info s'attarde un peu sur deux \"trouvailles\" r\u00e9centes, dont l'avion \u00e0 hydrog\u00e8ne et le \"direct air capture\" qui consiste \u00e0 essayer de pomper le CO2 directement dans l'air avec un proc\u00e9d\u00e9 technique (une alternative serait de planter des for\u00eats, mais en ce moment la couverture foresti\u00e8re baisse...).\n\nLa conclusion est h\u00e9las toujours la m\u00eame : sans sobri\u00e9t\u00e9, nous n'avons aucune chance de tenir la limite des 2\u00b0C de r\u00e9chauffement (nous sommes actuellement \u00e0 1,2). Et on pourrait en ajouter une autre (qui ne figure pas dans l'article) : la d\u00e9crue de la consommation mat\u00e9rielle, sur notre plan\u00e8te finie, est juste une question de temps et de conditions. Ca, ce n'est pas Kaya, c'est Meadows (https://lnkd.in/ev4N-EA )." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6876408955455750144,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6876408955933921280,urn:li:activity:6876408955933921280,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6876408955933921280,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6876408955933921280,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6876408955933921280", + "threadId": "activity:6876408955933921280", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6876408955933921280", + "urn": "urn:li:activity:6876408955933921280", + "numComments": 141, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6876408955933921280", + "reactionTypeCounts": [ + { + "count": 1224, + "reactionType": "LIKE" + }, + { + "count": 120, + "reactionType": "INTEREST" + }, + { + "count": 83, + "reactionType": "MAYBE" + }, + { + "count": 26, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6876408955933921280", + "numLikes": 1473, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6876408955933921280", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1473, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6876061296387747840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6876061296387747840", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6876061296387747840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6876061296387747840)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_dhabitude-les-publications-de-loffice-activity-6876061296387747840-NvGS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6876061295620190208", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6876061296387747840", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6876061296387747840,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6876061296387747840,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6876061295620190208", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "LviMGi38Y3eMKizPmC/WuQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6876061296387747840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQGZU5EvHCdMNQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQGZU5EvHCdMNQ", + "artifacts": [ + { + "width": 1398, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1639380759916?e=1679529600&v=beta&t=5ILZaXjtPl315ch9tD4p8z8YVXzwc2xxFHkhbrMZiaw", + "expiresAt": 1679529600000, + "height": 1308 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1639380762365?e=1679529600&v=beta&t=_WHWkrEfG0zsYNVMp5IrXGuP3eSXC9Z6xLlVibmc6Gs", + "expiresAt": 1679529600000, + "height": 19 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1639380762365?e=1679529600&v=beta&t=7EfR_ARaeqWEAcMO6eWUMfYgbckoIi1Xpr06EeBwCMk", + "expiresAt": 1679529600000, + "height": 1198 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1639380762365?e=1679529600&v=beta&t=wW4JTznKpu24rw8vqiff09d4aASefxJJkYkFAoKsBxg", + "expiresAt": 1679529600000, + "height": 449 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1639380762365?e=1679529600&v=beta&t=3PePrDKiveCr6cRexbFQp6pxPX7Q3Z-g2Xv9lFEhExY", + "expiresAt": 1679529600000, + "height": 150 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1639380762365?e=1679529600&v=beta&t=9X_vkQSSJVj5Sv2BHhQfk-7KbtBx2YmonZ3FkCSNmVU", + "expiresAt": 1679529600000, + "height": 748 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQGZU5EvHCdMNQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.9356223175965666 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6876061295620190208,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 2813, + "length": 14, + "miniProfile": { + "firstName": "C\u00e9dric", + "lastName": "Villani", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACwgi2EBdbX4IrBozglMb9vl1cZbfkIES6M", + "occupation": "Math\u00e9maticien et ancien d\u00e9put\u00e9", + "objectUrn": "urn:li:member:740330337", + "entityUrn": "urn:li:fs_miniProfile:ACoAACwgi2EBdbX4IrBozglMb9vl1cZbfkIES6M", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1655795547070?e=1681948800&v=beta&t=F9z__nGVI9eeK22vLZeBQLEGLfDFatNb8B7ebCciNWE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1655795547070?e=1681948800&v=beta&t=rWqT5r72tqcwGSdty8MKiLYgjvA22NlIg4-YUEfSqVg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHZPtOF_ZQOoA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "c\u00e9dric-villani", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1655325391254?e=1681948800&v=beta&t=V6FXulgH2mqEGaZrX6tfC2fk2cuF0RSMugjI_-kBtMk", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1655325391254?e=1681948800&v=beta&t=Q9n3drnq32gU3cbn26D-ZkcB9BZwIKglhRpOukAwsLM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1655325391254?e=1681948800&v=beta&t=4xEfaBIz5abmPfeIM4aEqCp8zM0jBvxnshh7dR9r1Jk", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1655325391254?e=1681948800&v=beta&t=TCLa7ZYW43sf-aRLyU1OBnGXS5MhVzWIPBS9JUDjT7o", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQEeGfUe43o1Jg/profile-displayphoto-shrink_" + } + }, + "trackingId": "gLGrX3nlSP6xiVFEoZf4XQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "D'habitude, les publications de l'Office Parlementaire d'Evaluation des Choix Scientifiques et Technologiques sont dans la droite ligne de l'appellation de cet organisme : elles \u00e9clairent les avantages et inconv\u00e9nients d'une technologie donn\u00e9e, par exemple la 5G ou l'intelligence artificielle, et font, comme beaucoup de rapports parlementaires, un nombre de pages trop \u00e9lev\u00e9 pour que leur lecture soit large.\n\nC'est donc une approche un peu inhabituelle qui a \u00e9t\u00e9 choisie pour une r\u00e9cente publication, qui ne concerne pas les avantages ou m\u00e9faits d'une trouvaille technique, mais qui d\u00e9crit en quelques pages l'\u00e9volution (inqui\u00e9tante) de la population d'insectes en France : https://lnkd.in/dEcP77_S\n\nToutes les personnes ayant d\u00e9pass\u00e9 le demi-si\u00e8cle (et parfois moins) se rappelleront sans peine que, lorsqu'elles \u00e9taient enfants, les voitures terminaient les voyages estivaux avec le pare-brise et les phares couverts d'impacts d'insectes volants en tout genre, et que les jardins p\u00e9ri-urbains (voire urbains) regorgeaient de papillons l'\u00e9t\u00e9.\n\nD\u00e9sormais, il faut aller dans des endroits pr\u00e9serv\u00e9s des diverses nuisances \u00e9voqu\u00e9es dans cette note (pesticides surtout, mais aussi m\u00e9taux lourds, pollution lumineuse...), par exemple les alpages l'\u00e9t\u00e9, pour d\u00e9ranger des sauterelles en marchant dans l'herbe ou observer des papillons en quantit\u00e9. Une partie du constat document\u00e9 dans cette note est donc accessible \u00e0 tout un chacun de pas trop jeune :).\n\nComportant plus de 100 r\u00e9f\u00e9rences pour 5 pages de note, cette publication de l'OPECST se termine en insistant sur l'urgence d'agir, principalement au niveau des pratiques agricoles. Elle souligne que la r\u00e9glementation europ\u00e9enne est en retard sur l'\u00e9tat de l'art scientifique (ce qui est malheureusement toujours le cas, une r\u00e9glementation pr\u00e9c\u00e8de rarement la connaissance d'un inconv\u00e9nient !), mais qu'il existe un levier d'action aujourd'hui insuffisamment employ\u00e9 : l'\u00e9co-conditionnalit\u00e9 des aides de la politique agricole commune.\n\nCette recommandation n'est pas nouvelle. Par contre, de voir sous la plume d'une s\u00e9natrice centriste (le S\u00e9nat, de par son mode d'\u00e9lection, est consid\u00e9r\u00e9 comme traditionnellement plus proche du monde rural, donc des agriculteurs, que l'Assembl\u00e9e) la phrase \"[La] conservation [des insectes]\u00a0doit donc \u00eatre une priorit\u00e9 politique sous peine de cons\u00e9quences dramatiques pour les \u00e9cosyst\u00e8mes et l\u2019humanit\u00e9.\", qui suppose que les agriculteurs doivent changer de pratiques, avec le soutien de la collectivit\u00e9, est un signe int\u00e9ressant. \n\nQue l'OPECST fasse - prioritairement \u00e0 destination des autres parlementaires - des notes courtes et digestes sur des enjeux environnementaux mal trait\u00e9s est une bonne nouvelle : la forme et le fond sont adapt\u00e9s au public vis\u00e9. Le m\u00e9rite en revient probablement pour partie \u00e0 son pr\u00e9sident, C\u00e9dric Villani, qui s'exprime de plus en plus sur des sujets environnementaux." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6876061295620190208,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6876061296387747840,urn:li:activity:6876061296387747840,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 91, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6876061296387747840,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6876061296387747840,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6876061296387747840", + "threadId": "activity:6876061296387747840", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6876061296387747840", + "urn": "urn:li:activity:6876061296387747840", + "numComments": 128, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6876061296387747840", + "reactionTypeCounts": [ + { + "count": 2028, + "reactionType": "LIKE" + }, + { + "count": 235, + "reactionType": "INTEREST" + }, + { + "count": 169, + "reactionType": "MAYBE" + }, + { + "count": 65, + "reactionType": "PRAISE" + }, + { + "count": 39, + "reactionType": "APPRECIATION" + }, + { + "count": 21, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6876061296387747840", + "numLikes": 2557, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6876061296387747840", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2557, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6875730823543345152,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6875730823543345152", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6875730823543345152)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6875730823543345152)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sustainable-investing-is-mostly-about-sustaining-activity-6875730823543345152-d9Rd?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6875730822868066304", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6875730823543345152", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6875730823543345152,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6875730823543345152,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6875730822868066304", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "WbEx/fouWOjLkqUorI7gxw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6875730823543345152,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7123942607431807173", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675691639284?e=1677240000&v=beta&t=tmdyr_R5eHHJLCkB94iY4LVUuSYPiqSpZwpp7Rcv-gM", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675691639284?e=1677240000&v=beta&t=uMlghKJg_AWW4pbZSAFv6cQGab8mpbzapkybHO4Q1Gc", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675691639285?e=1677240000&v=beta&t=TuKfz8itqN3mh4k_P4dm6Q301BUsoJadhje0D84TySM", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675691639285?e=1677240000&v=beta&t=DBbqCh-S7FFBdORJu7K9xSHb-6fAu0g6jo9ZXQf5l8s", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHm1wjGCh6snQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7123942607431807173)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7123942607431807173)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "bloomberg.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Sustainable Investing Is Mostly About Sustaining Corporations by bloomberg.com", + "actionTarget": "https://www.bloomberg.com/graphics/2021-what-is-esg-investing-msci-ratings-focus-on-corporate-bottom-line/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Sustainable Investing Is Mostly About Sustaining Corporations" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6875730822868066304,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 2827, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "OxRdcU73RPGQRl3IBd3nKA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Le site Bloomberg BusinessWeek se fend d'un article tr\u00e8s s\u00e9v\u00e8re sur les indices ESG (sigle d\u00e9signant des investissements comportant des crit\u00e8res environnementaux, sociaux ou de gouvernance) propos\u00e9s par MSCI. \n\nMSCI est le plus gros fournisseur d'indices dans le monde. Un indice d\u00e9signe une mani\u00e8re de constituer un portefeuille d'actions et/ou d'obligations qui ob\u00e9it \u00e0 des r\u00e8gles pr\u00e9cises. Par exemple le CAC 40 est un indice, et la r\u00e8gle est qu'il agr\u00e8ge les actions des 40 plus grosses capitalisations de la bourse de Paris. Ces indices sont achet\u00e9s par des gestionnaires d'actifs qui suivent les r\u00e8gles de constitution, en \u00e9change de quoi ils r\u00e9mun\u00e8rent le fournisseur d'indices.\n\nD'habitude, la presse sp\u00e9cialis\u00e9e du monde financier a plut\u00f4t tendance \u00e0 \"passer les plats\" en ce qui concerne le caract\u00e8re ESG des indices. Dit autrement, d\u00e8s qu'un gestionnaire d'actifs dit qu'il fait de l'ESG, la presse du secteur le r\u00e9p\u00e8te sans que personne n'aille mettre son nez dans les m\u00e9thodes.\n\nIl est donc tout \u00e0 fait inattendu de voir Bloomberg critiquer vertement MSCI en expliquant que ses m\u00e9thodes ESG ne sont pas du tout raccord avec la r\u00e9alit\u00e9 des probl\u00e8mes \u00e0 traiter.\n\nTout d'abord, Bloomberg explique que les indices ESG de MSCI ne rassemblent pas des entreprises qui ont un faible impact sur l'environnement, mais des entreprises qui sont faiblement \u00e0 risque r\u00e9glementaire pour leurs impacts. \n\nEnsuite, ces indices sont trop peu discriminants : 90% des entreprises du SP 500 se retrouvent dans un indice ESG de MSCI ! Cela laisse \u00e9videmment penser que ces indices sont avant tout destin\u00e9s \u00e0 peindre en vert une situation inchang\u00e9e...\n\nBloomberg explique \u00e9galement que MSCI a r\u00e9cemment am\u00e9lior\u00e9 la note ESG de 155 entreprises alors m\u00eame que ces derni\u00e8res n'ont rien chang\u00e9, ou ne reportent pas la totalit\u00e9 de leur empreinte carbone, ou ont une activit\u00e9 difficilement compatible avec un monde peu carbon\u00e9....\n\nBloomberg rel\u00e8ve aussi que, dans le risque cr\u00e9dit, les m\u00e9thodes des grandes agences de notation sont tr\u00e8s voisines, alors que dans le domaine de l'ESG les m\u00e9thodes diff\u00e8rent fortement d'un fournisseur de donn\u00e9es \u00e0 l'autre. Cela a une cons\u00e9quence \u00e9vidente : tout acteur financier trouvera toujours, en cherchant bien, une m\u00e9thode qui lui permettra de se proclamer \"dans les clous\".\n\nBloomberg plaide pour que, sur la partie climat, les analyses des entreprises :\n- soient bas\u00e9es sur les \u00e9missions sur l'ensemble de la chaine de valeur (le fameux scope 3 - voir https://lnkd.in/djQW4YAk )\n- permettent de quantifier l'impact d'une entreprise, et non juste si elle est \u00e0 risque r\u00e9glementaire \u00e0 br\u00e8ve \u00e9ch\u00e9ance (mais avec la bonne m\u00e9thode on peut faire impact et risque ; c'est ce que revendique Carbon Impact Analytics dont le guide m\u00e9thodo vient tout juste d'\u00eatre mis \u00e0 jour : https://lnkd.in/evXqpExr) \n\nPromis, Carbon4 Finance n'a rien souffl\u00e9 \u00e0 l'oreille de Bloomberg pour qu'il sugg\u00e8re exactement ce que nous faisons !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6875730822868066304,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6875730823543345152,urn:li:activity:6875730823543345152,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 58, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6875730823543345152,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6875730823543345152,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6875730823543345152", + "threadId": "activity:6875730823543345152", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6875730823543345152", + "urn": "urn:li:activity:6875730823543345152", + "numComments": 100, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6875730823543345152", + "reactionTypeCounts": [ + { + "count": 1191, + "reactionType": "LIKE" + }, + { + "count": 143, + "reactionType": "INTEREST" + }, + { + "count": 112, + "reactionType": "MAYBE" + }, + { + "count": 28, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6875730823543345152", + "numLikes": 1491, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6875730823543345152", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1491, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6875508733091418112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6875508733091418112", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6875508733091418112)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6875508733091418112)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-minist%C3%A8re-de-la-transition-%C3%A9cologique-activity-6875508733091418112-nwJ8?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6875508732344836096", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6875508733091418112", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6875508733091418112,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6875508733091418112,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6875508732344836096", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "pPLrWvZUdtJU6h2+Z8NCrg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6875508733091418112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C5622AQHI9o_I6ub-eg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C5622AQHI9o_I6ub-eg", + "artifacts": [ + { + "width": 1848, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1639249019364?e=1679529600&v=beta&t=YQIIbvTJdmnvdE22Npy14icUQzxs7xvakqyPfKXotTU", + "expiresAt": 1679529600000, + "height": 1092 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1639249021957?e=1679529600&v=beta&t=61nOGzvFcgfxnoV5dSUEYi6OFMDbccAcmX76ntFRhg0", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1639249021957?e=1679529600&v=beta&t=iJm0G5rcWRj3R0hxXqxtVpHMYkCvP7Hfl0VRaJRpJuI", + "expiresAt": 1679529600000, + "height": 756 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1639249021957?e=1679529600&v=beta&t=Nw-d_LSQkGf_j7t-cZ8c7jxI0K77D-UC4Q4LuuZ8bHE", + "expiresAt": 1679529600000, + "height": 284 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1639249021957?e=1679529600&v=beta&t=waCaOCibS7ZbNDZ5UhB62XnPLOzx2N815vgQm0199to", + "expiresAt": 1679529600000, + "height": 95 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1639249021957?e=1679529600&v=beta&t=lgSFFDrOg_fSpf72pfJ5TrNndutisJhUTNrWpTLOsAg", + "expiresAt": 1679529600000, + "height": 473 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5622AQHI9o_I6ub-eg/feedshare-shrink_" + }, + "displayAspectRatio": 0.5909090909090909 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6875508732344836096,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le minist\u00e8re de la transition \u00e9cologique vient de publier, en lien avec I4CE, l'\u00e9dition 2021 des \"chiffres cl\u00e9s du climat\" : https://lnkd.in/gbxPC4jp\n\nOn y trouve une foule de graphiques tr\u00e8s instructifs sur la d\u00e9composition des \u00e9missions en France et en Europe, leur \u00e9volution historique, etc.\n\nParmi ces graphiques, figure celui reproduit ci-dessous qui donne (en vert et violet) l'\u00e9volution des \"puits de carbone\" en France. Il s'agit des processus g\u00e9r\u00e9s par l'homme qui permettent de soustraire du CO2 \u00e0 l'atmosph\u00e8re. On va y trouver :\n- l'augmentation du stock de for\u00eats (parce que le carbone passe de l'air dans le bois et les racines via la photosynth\u00e8se)\n- la conversion de cultures en prairies (parce que l'arr\u00eat du labour augmente la quantit\u00e9 de carbone dans le sol).\n\nA l'inverse, la conversion des prairies en cultures diminue le stock de carbone dans le sol (et donc conduit \u00e0 des \u00e9missions, en moutarde sur le graphique ci-dessous), et l'urbanisation diminue aussi le stock de carbone dans le sol qui se trouve sous la surface imperm\u00e9abilis\u00e9e.\n\nDans la Strat\u00e9gie Nationale Bas Carbone, notre pays compte sur un doublement du puits de carbone d'ici \u00e0 2050 pour \"compenser\" les \u00e9missions territoriales r\u00e9siduelles. Cela suppose que le changement climatique ne va pas d\u00e9stocker le carbone des for\u00eats (mort des arbres par stress hydrique ou thermique, incendies) et que les sols agricoles deviennent globalement un puits aussi (arr\u00eat du labour, haies et agroforesterie).\n\nLe graphique ci-dessous nous dit que cela ne va pas se faire d'un claquement de doigts. La tendance depuis le milieu des ann\u00e9es 2000 est un affaiblissement significatif du puits forestier, et par ailleurs la contribution de l'ensemble des sols agricoles continue d'\u00eatre une \u00e9mission nette. \n\nAu total, le secteur UTCATF (Utilisation des Terres, Changement d\u2019Affectation des Terres et Foresterie) est pass\u00e9 d'une s\u00e9questration annuelle d'environ 45 millions de tonnes de CO2 par an en 2008 \u00e0 30 actuellement (les \u00e9missions territoriales sont d'environ 400 millions de tonnes de CO2 \u00e9quivalent actuellement).\n\nDans un monde soumis \u00e0 des injonctions \u00e9conomiques avant toute chose, augmenter fortement les puits n'est pas rentable. Cela ne pourra se faire que parce que la collectivit\u00e9 d\u00e9cide que c'est important et paye en cons\u00e9quence. Nous avons quelque part le m\u00eame sujet domestique que le Br\u00e9sil avec l'Amazonie : la for\u00eat coup\u00e9e rapporte plus que la for\u00eat sur pied, donc si le seul crit\u00e8re est \u00e9conomique on coupe.\n\nAugmenter les puits en France devra relever d'une injonction un peu plus forte qu'un simple chiffre dans un document de cadrage qui n'a aucune port\u00e9e contraignante." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6875508732344836096,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6875508733091418112,urn:li:activity:6875508733091418112,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 47, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6875508733091418112,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6875508733091418112,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6875508733091418112", + "threadId": "activity:6875508733091418112", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6875508733091418112", + "urn": "urn:li:activity:6875508733091418112", + "numComments": 93, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6875508733091418112", + "reactionTypeCounts": [ + { + "count": 749, + "reactionType": "LIKE" + }, + { + "count": 146, + "reactionType": "INTEREST" + }, + { + "count": 87, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6875508733091418112", + "numLikes": 1010, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6875508733091418112", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1010, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6874981375200546817,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6874981375200546817", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6874981375200546817)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6874981375200546817)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cest-devenu-un-secret-de-polichinelle-activity-6874981375200546817-YlHy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6874981374512693248", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6874981375200546817", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6874981375200546817,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6874981375200546817,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6874981374512693248", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "EPpPFx+yFW5cUWWIQx3llw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6874981375200546817,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQH61A0PVgq7Nw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQH61A0PVgq7Nw", + "artifacts": [ + { + "width": 1516, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1639123288676?e=1679529600&v=beta&t=lHq8abUIsNRgLVaQnldwTERO4up0rNIk6D95n9jKt1o", + "expiresAt": 1679529600000, + "height": 854 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1639123289866?e=1679529600&v=beta&t=i5xDv8A4s9w3X0JEvshh28F-_W8BpCca4Hb6A_2kRLI", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1639123289866?e=1679529600&v=beta&t=__C0yoBVtBf2bzuf-FPCySvVcxbkkC8Cb5_ze7QK9R8", + "expiresAt": 1679529600000, + "height": 721 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1639123289866?e=1679529600&v=beta&t=9hx-MXfkNxWjNBX_lXRmpTHHPJOplaeVD_mGsVtOr9Q", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1639123289866?e=1679529600&v=beta&t=5W9rsGR7e8l2fdyV1KeBP_0HImt5zT2AJcmS_adCFz0", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1639123289866?e=1679529600&v=beta&t=4icgNdZTj8cZ_OwxYM1Z6xbYh2eG3qiRebni4cHzY2s", + "expiresAt": 1679529600000, + "height": 451 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQH61A0PVgq7Nw/feedshare-shrink_" + }, + "displayAspectRatio": 0.5633245382585752 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "timeline" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6874981374512693248,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est devenu un secret de Polichinelle : l'ex\u00e9cutif s'appr\u00eate \u00e0 annoncer la mise en chantier d'EPR en France. Lors qu'un m\u00e9nage fait construire un logement, il se passe de l'ordre de l'ann\u00e9e (parfois un peu plus !) entre le moment o\u00f9 la d\u00e9cision est prise et le moment o\u00f9 les meubles peuvent \u00eatre install\u00e9s.\n\nPour une usine ou un h\u00f4pital le d\u00e9lai est parfois un peu plus long. Et pour une centrale nucl\u00e9aire ? Cet article de la SFEN explique pourquoi une d\u00e9cision prise aujourd'hui changera physiquement la donne... dans 10 \u00e0 13 ans : https://lnkd.in/e3JFD6Xq\n\nIl y a en effet plusieurs ann\u00e9es entre la d\u00e9cision et le premier \"coup de pioche\" : \u00e9tudes, consultations publiques, et processus d'autorisation demandent de 4 \u00e0 5 ans, sans lesquelles il n'y a pas de chantier qui d\u00e9marre.\n\nCe genre de d\u00e9lai n'est pas rare dans le domaine des grandes installations \u00e9lectriques. Entre la d\u00e9cision de construire le barrage de Serre-Pon\u00e7on et la premi\u00e8re \u00e9lectricit\u00e9, il s'est \u00e9coul\u00e9 12 ans, \u00e0 une \u00e9poque o\u00f9 le dirigisme d'Etat \u00e9tait un peu plus marqu\u00e9 qu'aujourd'hui, et les \u00e9tapes de \"d\u00e9bat pr\u00e9alable\" bien plus courtes.\n\nC'est pour cela que dans ce domaine de l'\u00e9lectricit\u00e9, devenu vital puisque sans \u00e9lectrons nous n'avons plus de monnaie (les transactions mon\u00e9taires sont pour l'essentiel des transactions \u00e9lectroniques) ou plus de communications, l'anticipation est le ma\u00eetre mot. Une situation de d\u00e9faut de l'appareil productif ne se corrige pas facilement \u00e0 bref d\u00e9lai.\n\nM\u00eame l'option \"on fera du gaz parce que ca va vite et tant pis pour le CO2\" ne sera pas \u00e9ternellement ouverte : le gaz - \u00e9nergie fossile donc \u00e9puisable - n'est pas perp\u00e9tuel. Notre continent en utilise - de mani\u00e8re forc\u00e9e - de moins en moins depuis que la mer du Nord a pass\u00e9 son pic, en 2005, et la Norv\u00e8ge en 2017. Cela nous promet une d\u00e9pendance croissante aux russes et \u00e0 d'autres pays extra-europ\u00e9ens avec - tant qu'il y aura un \"march\u00e9\" - des prix volatils et un approvisionnement incertain.\n\nC'est pour cela que les r\u00e9cents rapports publi\u00e9s par RTE soulignent l'urgence de cesser de procrastiner. Et en fait cette conclusion est applicable \u00e0 tout ce qui est concern\u00e9 par la d\u00e9carbonation : que ce soit la gestion des villes, celle de l'agriculture, de la for\u00eat, des r\u00e9seaux de transport, ou la cr\u00e9ation ou au contraire disparition de fili\u00e8res industrielles, le pas de temps qui s\u00e9pare d\u00e9but des grandes manoeuvres d'un r\u00e9sultat dans le bon ordre de grandeur se compte en d\u00e9cennies ou si\u00e8cles. Tr\u00e8s tr\u00e8s loin du pas de temps auquel raisonnent l'essentiel de nos politiques, dont ceux qui vont commencer \u00e0 se disputer la place actuellement occup\u00e9e par un certain Emmanuel Macron." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6874981374512693248,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6874981375200546817,urn:li:activity:6874981375200546817,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 64, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6874981375200546817,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6874981375200546817,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6874981375200546817", + "threadId": "activity:6874981375200546817", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6874981375200546817", + "urn": "urn:li:activity:6874981375200546817", + "numComments": 214, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6874981375200546817", + "reactionTypeCounts": [ + { + "count": 1199, + "reactionType": "LIKE" + }, + { + "count": 138, + "reactionType": "INTEREST" + }, + { + "count": 96, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6874981375200546817", + "numLikes": 1460, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6874981375200546817", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1460, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6874744465140051968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6874744465140051968", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6874744465140051968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6874744465140051968)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_%C3%A9lectricit%C3%A9-nucl%C3%A9aire-que-se-passe-t-il-activity-6874744465140051968-klNP?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6874744464691257344", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6874744465140051968", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6874744465140051968,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6874744465140051968,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6874744464691257344", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "EsWopXOUEmdw1FKAfhRqvg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6874744465140051968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6974185398541585852", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675506910435?e=1677240000&v=beta&t=vBffEbE6QKUFeQbAa5cWxxIoDyYHUojPUybtxoBpsmE", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675506910435?e=1677240000&v=beta&t=42fEvXKt0oLF-APq1kXONXqpqKp6EMED3svgsErjQCQ", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675506910435?e=1677240000&v=beta&t=ICfd77xTCK6c_4a7xOVzSbyBP8DGIF4oD5pZrPc3UcI", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675506910435?e=1677240000&v=beta&t=7Eet7sd0xlkoNUKEUZ97d-KIerslywIfUfEI3Bzu5tA", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF2eX5qHM80gw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6974185398541585852)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6974185398541585852)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 14 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00c9lectricit\u00e9 nucl\u00e9aire : que se passe-t-il en Asie et au Moyen-Orient ? by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/electricite-nucleaire-asie-moyen-orient/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00c9lectricit\u00e9 nucl\u00e9aire : que se passe-t-il en Asie et au Moyen-Orient ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6874744464691257344,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "64IPIRRsTWaL5kFrVrEHWQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Les Shifters terminent leur tour du monde en 80 centrales, si l'on peut dire. Le dernier opus de la s\u00e9rie \"\u00e9tat du nucl\u00e9aire dans le monde\" s'ach\u00e8ve au Moyen Orient et en Asie du Sud-Est (Inde comprise), avec un descriptif de l\u00e0 o\u00f9 en sont les pays concern\u00e9s.\n\nVous d\u00e9couvrirez ainsi que le pouvoir philippin, d\u00e9favorable au nucl\u00e9aire civil, envisage n\u00e9anmoins la cr\u00e9ation d'une autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire ; que l'Inde, avec 22 r\u00e9acteurs, produit... 2,6% de son \u00e9lectricit\u00e9 avec du nucl\u00e9aire ; que le Vietnam a envisag\u00e9 du nucl\u00e9aire avant de construire... du gaz et du charbon.\n\nCes fiches pays ne comportent ni recommandation ni souhait. C'est juste une description de la situation actuelle." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6874744464691257344,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6874744465140051968,urn:li:activity:6874744465140051968,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 10, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6874744465140051968,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6874744465140051968,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6874744465140051968", + "threadId": "activity:6874744465140051968", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6874744465140051968", + "urn": "urn:li:activity:6874744465140051968", + "numComments": 16, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6874744465140051968", + "reactionTypeCounts": [ + { + "count": 165, + "reactionType": "LIKE" + }, + { + "count": 26, + "reactionType": "INTEREST" + }, + { + "count": 14, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6874744465140051968", + "numLikes": 206, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6874744465140051968", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 206, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6874634173303275520,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6874634173303275520", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6874634173303275520)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6874634173303275520)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_christian-gollier-nous-vivons-sur-lutopie-activity-6874634173303275520-GXMX?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6874634172405690368", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6874634173303275520", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6874634173303275520,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6874634173303275520,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6874634172405690368", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "4APa3VRkJ9XyukQyugJGhQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6874634173303275520,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8994407807651838551", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675539708866?e=1677240000&v=beta&t=Eai8ptlOuDXmp-aSM8xnW6B0SWw_4lEd82PBAzJVAO0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675539708866?e=1677240000&v=beta&t=V1BKouhQ2PoS7tpkbxVBT5C2aaWJYGgeEAKJ5ZV8dpE", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675539708867?e=1677240000&v=beta&t=m6TSGoPSBSpxOFgq83_hjNZ87I6nQeg3YGPjTG0fOOQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675539708867?e=1677240000&v=beta&t=c6R9KD8NAbwGkY78-zJpza2m4umPU9P_U4hdoJUZM_0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGGtIqYuSgoSw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8994407807651838551)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8994407807651838551)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Christian Gollier : \u00ab Nous vivons sur l'utopie d'une transition \u00e9cologique heureuse \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/politique-societe/societe/christian-gollier-nous-vivons-sur-lutopie-dune-transition-ecologique-heureuse-1371086" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Christian Gollier\u00a0: \u00ab\u00a0Nous vivons sur l'utopie d'une transition \u00e9cologique heureuse\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6874634172405690368,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Directeur de la Toulouse School of Economics est interview\u00e9 dans Les Echos. La partie attendue de son propos est son plaidoyer en faveur de la taxe carbone, doubl\u00e9e d'une taxe carbone aux fronti\u00e8res.\n\nSur ce point, il a partiellement raison : une taxe est utile, mais ce n'est pas la totalit\u00e9 d'une politique. Et surtout la pertinence est tr\u00e8s diff\u00e9rente selon que l'on s'adresse aux particuliers ou aux entreprises.\n\nLes particuliers anticipent peu. Nous sommes rares \u00e0 calculer un cout total sur la dur\u00e9e de vie \u00e0 l'achat d'un v\u00e9hicule ou d'une chaudi\u00e8re, en int\u00e9grant un \"prix croissant du carbone\". C'est bien pour cela que les hausses rapides de prix du carbone provoquent des remous : nous faisons alors face \u00e0 des d\u00e9penses qui n'ont pas \u00e9t\u00e9 anticip\u00e9es.\n\nDe ce fait, la hausse du prix du carbone pour les particuliers ne peut \u00eatre que lente : seule une mont\u00e9e tr\u00e8s progressive du prix est socialement acceptable, pour laisser le temps aux individus d'avoir des alternatives (qui doivent par ailleurs \"arriver sur le march\u00e9\", ce qui prend du temps). C'est \u00e9videmment un probl\u00e8me quand nous sommes dans une course contre la montre.\n\nC'est diff\u00e9rent pour les entreprises : ces derni\u00e8res - surtout les grosses \u00e9mettrices, g\u00e9n\u00e9ralement des grandes entreprises - ont les moyens d'embaucher des arm\u00e9es de consultants, qui vont faire des calculs dans tous les sens pour savoir o\u00f9 se trouvent les points de bascule qui rendent telle ou telle alternative \u00e9conomiquement pertinente. \n\nPar ailleurs, pour ces m\u00eames gros \u00e9metteurs un \"prix du carbone\" va \u00eatre significatif dans leur compte de r\u00e9sultat, ce qui va les motiver fortement \u00e0 trouver des alternatives \"de rupture\". Un exemple classique est la taxe carbone appliqu\u00e9e aux centrales anglaises, qui a beaucoup jou\u00e9 dans le basculement du charbon au gaz outre-Manche.\n\nLa taxe carbone est donc un outil qui peut rapidement changer la donne pour certaines entreprises, mais c'est beaucoup moins vrai pour les particuliers, pour qui la r\u00e9glementation permet d'aller bien plus vite, parce qu'elle dit quoi faire au lieu de dire ce qu'il ne faut pas faire.\n\nIncidemment la \"taxe carbone aux fronti\u00e8res\" ne serait pas une fiscalit\u00e9 stricto sensu en Europe. La fiscalit\u00e9 est une comp\u00e9tence exclusive des Etats membres, et donc l'Union ne peut rien faire sans unanimit\u00e9 des membres (unanimit\u00e9 qui n'existe jamais). Le m\u00e9canisme serait une extension du syst\u00e8me de quotas (par exemple les importateurs devraient se procurer des quotas au prorata du \"contenu en carbone\" des importations).\n\nLa partie plus inattendue du discours de Gollier est l'affirmation que la transition ne sera pas \"que du bonheur sur tous les tableaux\". Cela rejoint un peu le propos de ceux qui disent qu'il n'y aura pas de croissance verte. L'argument n'est pas le m\u00eame - et Gollier ne dit rien sur la croissance - mais il y a un point commun : cette transition va nous demander de gros efforts. Qu'il y ait une grosse satisfaction \u00e0 la cl\u00e9 ne doit pas masquer cette r\u00e9alit\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6874634172405690368,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6874634173303275520,urn:li:activity:6874634173303275520,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 44, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6874634173303275520,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6874634173303275520,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6874634173303275520", + "threadId": "activity:6874634173303275520", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6874634173303275520", + "urn": "urn:li:activity:6874634173303275520", + "numComments": 79, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6874634173303275520", + "reactionTypeCounts": [ + { + "count": 882, + "reactionType": "LIKE" + }, + { + "count": 95, + "reactionType": "INTEREST" + }, + { + "count": 73, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6874634173303275520", + "numLikes": 1071, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6874634173303275520", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1071, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6874357328620068864,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6874357328620068864", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6874357328620068864)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6874357328620068864)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9carbonons-la-culture-le-shift-publie-activity-6874357328620068864-Whzd?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6874357328066424832", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6874357328620068864", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6874357328620068864,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6874357328620068864,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6874357328066424832", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "ArMhwc+i2lhNujyYCkH5cA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6874357328620068864,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7080181844464718394", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676521593883?e=1677240000&v=beta&t=sTe-WWz3A7ZsZpATsdpZkQYtEPSv5HzPMgm7pPLFGvE", + "expiresAt": 1677240000000, + "height": 599 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676521593883?e=1677240000&v=beta&t=-PgNDJzEXYwnTQuPwTvnLb5JXBKg_B87u-fqHIkdrQc", + "expiresAt": 1677240000000, + "height": 611 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676521593883?e=1677240000&v=beta&t=MvHwMn1gHMD7vYNEraNyKRHtOci5SwRkn48zue3Y54M", + "expiresAt": 1677240000000, + "height": 119 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676521593883?e=1677240000&v=beta&t=1bdnJg3ekNQSvG1MKVlnc72TE0iPx62_lSMsjHOMzgo", + "expiresAt": 1677240000000, + "height": 359 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEq4hPT0g43Kg/articleshare-shrink_" + }, + "displayAspectRatio": 0.74875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7080181844464718394)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7080181844464718394)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: D\u00e9carbonons la Culture ! : le Shift publie son rapport final by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/decarboner-culture-rapport-2021/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9carbonons la Culture ! : le Shift publie son rapport final" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6874357328066424832,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Qui ne se souvient de cette phrase mainte fois entendue, qui est que pour faire de la croissance d\u00e9mat\u00e9rialis\u00e9e, il faut favoriser les visites au mus\u00e9e ? Si cela est vrai, alors la culture ne saurait engendrer des \u00e9missions de gaz \u00e0 effet de serre.\n\nSauf que... pour aller au mus\u00e9e, au cin\u00e9ma, au th\u00e9\u00e2tre, au festival, il faut parfois - horreur ! - prendre une voiture, et parfois - comble de l'horreur ! - un avion. Une large partie des visiteurs du Louvre (hors covid) sont a\u00e9roport\u00e9s, et un Festival comme les Vieilles Charrues engendre aussi son lot de transport routier (pour les visiteurs ou le mat\u00e9riel) ou a\u00e9roport\u00e9 (pour une partie des artistes).\n\nLes visiteurs des mus\u00e9es comm\u00e9morant le d\u00e9barquement en Normandie sont par la force des choses des am\u00e9ricains ou des canadiens qui ne traversent pas l'Atlantique en pneumatique \u00e0 la d\u00e9rive comme Bombard, et les japonais crois\u00e9s au Mont Saint Michel ou \u00e0 la Tour Eiffel ne sont pas venus en Transsib\u00e9rien. \n\nDans la culture, il y a aussi l'audiovisuel. Historiquement c'\u00e9tait les tournages (d\u00e9placements, mat\u00e9riel, repas, location de lieux divers...) et surtout la diffusion (fabrication des salles de cin\u00e9ma puis des t\u00e9l\u00e9s ; d\u00e9placements des personnes pour le cin\u00e9ma), et d\u00e9sormais c'est un gros morceau du num\u00e9rique (la vid\u00e9o \u00e0 la demande - porno compris - fait les trois quarts du trafic internet en gros). Toute personne qui visionne un bout de s\u00e9rie ou qui joue \u00e0 un jeu sur son smartphone dans le bus utilise un \"service culturel\" au sens \u00e9conomique.\n\nCe secteur est donc truff\u00e9 (d'\u00e9missions) pire qu'un boudin blanc (du vrai champignon). C'est pour cela que, dans le cadre du plan de transformation de l'\u00e9conomie fran\u00e7aise, nous avons consacr\u00e9 un rapport entier \u00e0 la chose, rapport qui vient tout juste d'\u00eatre publi\u00e9.\n\nLisez le ! Ca \u00e9mettra un peu - fatalement - mais on esp\u00e8re que ca permettra de r\u00e9duire ensuite en se posant les bonnes questions.\n\nNB : en fin de page de pr\u00e9sentation du rapport il y a les mails des auteurs et des personnes qui peuvent faire une pr\u00e9sentation personnalis\u00e9e aux acteurs (c'est le cas de le dire) int\u00e9ress\u00e9s du secteur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6874357328066424832,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6874357328620068864,urn:li:activity:6874357328620068864,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6874357328620068864,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6874357328620068864,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6874357328620068864", + "threadId": "activity:6874357328620068864", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6874357328620068864", + "urn": "urn:li:activity:6874357328620068864", + "numComments": 55, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6874357328620068864", + "reactionTypeCounts": [ + { + "count": 548, + "reactionType": "LIKE" + }, + { + "count": 47, + "reactionType": "INTEREST" + }, + { + "count": 41, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6874357328620068864", + "numLikes": 666, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6874357328620068864", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 666, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6873986912357498880,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6873986912357498880", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6873986912357498880)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6873986912357498880)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_plus-de-la-moiti%C3%A9-des-travailleurs-des-%C3%A9nergies-activity-6873986912357498880-ZmVS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6873986911749320704", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6873986912357498880", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6873986912357498880,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6873986912357498880,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6873986911749320704", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "dLuGICVzMgqM8S8A5XrauQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6873986912357498880,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6934279982719130590", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675887550800?e=1677240000&v=beta&t=YoRNJzsvWTMG9fgriOcP9EiR5Q-0XJjTofabs8X-Z3M", + "expiresAt": 1677240000000, + "height": 419 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675887550800?e=1677240000&v=beta&t=dymVmRb6DDZzB8lIvAzqGMRpn6jsUPLzBTG-p654kbw", + "expiresAt": 1677240000000, + "height": 419 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675887550800?e=1677240000&v=beta&t=nT4_k7jWy4hV9jXOfORG2yulmdNsvPaNp7DWEotmMVg", + "expiresAt": 1677240000000, + "height": 83 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675887550800?e=1677240000&v=beta&t=q3NVe0xXvl4JgKUrYHo6-5bWol0-EldQ3kx-cvhajo0", + "expiresAt": 1677240000000, + "height": 251 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQF9qqsuPEGnsg/articleshare-shrink_" + }, + "displayAspectRatio": 0.52375 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6934279982719130590)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6934279982719130590)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "usbeketrica.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Plus de la moiti\u00e9 des travailleurs des \u00e9nergies fossiles veulent se reconvertir dans le renouvelable by usbeketrica.com", + "actionTarget": "https://usbeketrica.com/fr/article/plus-de-la-moitie-des-travailleurs-des-energies-fossiles-veulent-se-reconvertir-dans-le-renouvelable" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Plus de la moiti\u00e9 des travailleurs des \u00e9nergies fossiles veulent se reconvertir dans le renouvelable" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6873986911749320704,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Usbek & Rica relaie un sondage effectu\u00e9 aupr\u00e8s de salari\u00e9s du secteur \"p\u00e9trole et gaz\", qui indique que 56 % des personnes interrog\u00e9es souhaitent d\u00e9sormais travailler dans les \u00e9nergies renouvelables, soit quasiment 20% de plus qu'en 2020 (la valeur \u00e9tait alors de 38 %).\n\nA la question \"envisagez vous de quitter le secteur de l'\u00e9nergie dans les 5 ans ?\", 44% des salari\u00e9s du secteur p\u00e9trolier et gazier r\u00e9pondent oui, mais... 42% des salari\u00e9s des renouvelables font de m\u00eame ! Le taux de r\u00e9ponses positives le plus bas pour cette question se trouve dans le nucl\u00e9aire, qui est le secteur qui pr\u00e9sente donc le plus grand contraste entre l'opinion publique et l'avis des salari\u00e9s.\n\nCette envie d'aller voir ailleurs est-elle due avant tout \u00e0 une prise de conscience des r\u00e9alit\u00e9s environnementales ? Pas que. Si l'on regarde les plus jeunes, qui sont a priori les plus susceptibles d'\u00eatre sensibles \u00e0 cet aspect des choses, l'absence de reconnaissance sociale est invoqu\u00e9 par 20% de ceux qui veulent changer, mais le \"mode de vie\" (beaucoup de salari\u00e9s du secteur p\u00e9trolier travaillent loin de chez eux, et avec des rythmes de travail qui ressemblent parfois \u00e0 ceux de la marine marchande) est invoqu\u00e9 par 25%, et les \"salaires trop bas\" (\u00e9tonnant pour le p\u00e9trole ! Mais dans les pays producteurs il est possible qu'il y ait des cohortes de gens mal pay\u00e9s, ce qui n'est pas vraiment le cas chez Total...) par 21%.\n\nL'une des difficult\u00e9s de la transition est de maintenir dans les secteur qui doivent d\u00e9cro\u00eetre en douceur \"juste ce qu'il faut de comp\u00e9tences\" pour que ces secteurs continuent de fonctionner tout en diminuant. Alchimie complexe, et pas que pour l'\u00e9nergie, comme ce sondage vient le rappeler." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6873986911749320704,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6873986912357498880,urn:li:activity:6873986912357498880,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 16, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6873986912357498880,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6873986912357498880,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6873986912357498880", + "threadId": "activity:6873986912357498880", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6873986912357498880", + "urn": "urn:li:activity:6873986912357498880", + "numComments": 19, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6873986912357498880", + "reactionTypeCounts": [ + { + "count": 238, + "reactionType": "LIKE" + }, + { + "count": 38, + "reactionType": "INTEREST" + }, + { + "count": 37, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6873986912357498880", + "numLikes": 321, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6873986912357498880", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 321, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6873673072503734272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6873673072503734272", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6873673072503734272)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6873673072503734272)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_emploi-et-transformation-bas-carbone-le-activity-6873673072503734272-ZF8O?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6873673071958487040", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6873673072503734272", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6873673072503734272,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6873673072503734272,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6873673071958487040", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "T/wVXET3MWO7l8ggAkPzOg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6873673072503734272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7187428063926409992", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675604468068?e=1677240000&v=beta&t=FppW-UO4RU4DaBqfxl-EqeXfLwMVMdKaq_DIXXts4i4", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675604468068?e=1677240000&v=beta&t=B4rAzd9sX2Q6WZVvMemzYdWCT4vjNzAmujPe59fakWA", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675604468068?e=1677240000&v=beta&t=CPC7v62mtaeZddemaTXIISEkpDRwdc3xtRJwDg05pKs", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675604468068?e=1677240000&v=beta&t=cGVhsHTpen4fUsz2Txno5SZ_CQ80CDMIEJVMIwWQlRA", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGZEfwoCnu4og/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7187428063926409992)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7187428063926409992)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Emploi et transformation bas carbone : le Shift publie son rapport final by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-webinaire-emploi-transformation-bas-carbone-9-decembre-2021/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Emploi et transformation bas carbone : le Shift publie son rapport final" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6873673071958487040,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1039, + "length": 14, + "miniProfile": { + "firstName": "Patrick", + "lastName": "Martin", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACXEdJcB6C5x8cH0loW9Gd5x_sua1mXMQ74", + "occupation": "Pr\u00e9sident d\u00e9l\u00e9gu\u00e9 du MEDEF et Pr\u00e9sident du Groupe Martin Belaysoud Expansion", + "objectUrn": "urn:li:member:633631895", + "entityUrn": "urn:li:fs_miniProfile:ACoAACXEdJcB6C5x8cH0loW9Gd5x_sua1mXMQ74", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1673596829515?e=1681948800&v=beta&t=-dmw1ejJc4Anemf-UkZ9Z1FRJpvf2KwcWLWwBUd8PDc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1673596829515?e=1681948800&v=beta&t=pEoyKkCbFWZHkRemy10A9aheB4rQo9Zy0JrujbHVcJ4", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQF0gi47T-p5PQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "patrick-martin-medef", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1580224344945?e=1681948800&v=beta&t=av1Pn5K2QT_C6cdgTfjZzMdfioTx8QGH5xmHBnFP8-E", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1580224344945?e=1681948800&v=beta&t=wk33zY5SWPVr1RoQCPpG2DZexPLLJWkTPKBzugUPd1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1580224344945?e=1681948800&v=beta&t=vNal6JOMOIL0zIaCnfCUT-WZEbyThh8uDMSy5V8Jfc4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1580224344945?e=1681948800&v=beta&t=OOkemk5_8nvfSV-AxbMPIPnoXlYreENZmR-r6BgilQA", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHEuCuKNu7TWA/profile-displayphoto-shrink_" + } + }, + "trackingId": "jWEnxWm3S1yGVSuknnE/Zg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1109, + "length": 14, + "miniProfile": { + "firstName": "Angeline", + "lastName": "Barth", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACCgt18BBaZa_bz779JpXBDUOXdVFwbzx2g", + "occupation": "Secr\u00e9taire conf\u00e9d\u00e9rale CGT - d\u00e9mocratie sociale, n\u00e9gociation collective et formation professionnelle", + "objectUrn": "urn:li:member:547403615", + "entityUrn": "urn:li:fs_miniProfile:ACoAACCgt18BBaZa_bz779JpXBDUOXdVFwbzx2g", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1517052018860?e=1681948800&v=beta&t=KgGR6Ia9Ukz1yYh50srXtEcILVClCykqVV6EANDhl3M", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1517052018860?e=1681948800&v=beta&t=6zBkv9wGOvAFHrMjNC1a8f5BLc5OGZbhLo-Rfsd-sj8", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQGsW0Y8YAeBuw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "angeline-barth-5bb3a8133", + "trackingId": "E09E9/rTTjKdCnrOr6a3Rw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "D\u00e9carboner nos activit\u00e9s, est-ce bon pour l'emploi ? Ben... ca d\u00e9pend, mais le sujet est central. En effet, une des pr\u00e9occupations que nous avons tou(te)s, c'est bien de garder un emploi, voire de l'am\u00e9liorer. Si nous devons \u00eatre persuad\u00e9s que la d\u00e9carbonation du pays est une mauvaise affaire pour l'activit\u00e9, ca ne va \u00e9videmment pas simplifier les choses pour aller de l'avant.\n\nC'est pour cette raison que l'emploi est un sujet central dans le cadre du plan de transformation de l'\u00e9conomie fran\u00e7aise. Nous n'avons pas pris le probl\u00e8me sous l'angle \"aurons nous l'argent pour payer les gens si on fait diff\u00e9remment ?\" mais \"de quels emplois, prenant place dans quels secteurs, aurions nous besoin pour mener la d\u00e9carbonation au bon rythme ?\".\n\nC'est le r\u00e9sultat de cet exercice que nous vous proposons de d\u00e9couvrir le 9 d\u00e9cembre prochain, au cours d'un webinaire pendant lequel il y aura d'abord une pr\u00e9sentation du travail que nous avons fait sur les besoins en emplois, puis une table ronde associant les partenaires sociaux, \u00e0 savoir Patrick Martin (vice-pr\u00e9sident d\u00e9l\u00e9gu\u00e9 du MEDEF), V\u00e9ronique Martin et Angeline Barth,\u00a0Secr\u00e9taires conf\u00e9d\u00e9rales de la CGT, et Beatrice Clicq, Secr\u00e9taire conf\u00e9d\u00e9rale \u00e0 FO.\n\nIl s'agira non seulement de se demander de quels emplois nous avons besoin, mais aussi comment faire pour mettre en place et piloter le changement souhait\u00e9. \n\nA l'heure de la d\u00e9carbonation, comment revisiter la politique de l'emploi, vieux serpent de mer dans notre pays ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6873673071958487040,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6873673072503734272,urn:li:activity:6873673072503734272,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 10, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6873673072503734272,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6873673072503734272,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6873673072503734272", + "threadId": "activity:6873673072503734272", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6873673072503734272", + "urn": "urn:li:activity:6873673072503734272", + "numComments": 16, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6873673072503734272", + "reactionTypeCounts": [ + { + "count": 220, + "reactionType": "LIKE" + }, + { + "count": 20, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6873673072503734272", + "numLikes": 266, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6873673072503734272", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 266, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6873329452718276608,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6873329452718276608", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6873329452718276608)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6873329452718276608)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_papaonhungerstrike-activity-6873329452718276608-siPA?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6873329452173012992", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6873329452718276608", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6873329452718276608,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6873329452718276608,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6873329452173012992", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "g4Uc76K8CpWZkUKRz9J9IQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6873329452718276608,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8453875145931070581", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1664103260104?e=1677240000&v=beta&t=Y2mtrfKPWFZgCAhc7hR8NzJgSvzkNuL0Z0tV-4EtBNE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1664103260104?e=1677240000&v=beta&t=BctmQn4GLW4PumeM8zG0bCw7KjODfHKAPXb7Nfsx9as", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1664103260104?e=1677240000&v=beta&t=BhHPvi8e1t8Z-Lo-CkS0ovJXGdJmLM12I9r0om7dDXs", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1664103260104?e=1677240000&v=beta&t=8kSHkRqSDr5YAWnH4mM8as6yn9RnkjmbIAVKGtndRTA", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFgToWwCAH5Ug/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8453875145931070581)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8453875145931070581)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "sites.google.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: #PapaOnHungerStrike by sites.google.com", + "actionTarget": "https://sites.google.com/fernandez-guggisberg.name/terreur-climatique" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "#PapaOnHungerStrike" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6873329452173012992,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 194, + "length": 19, + "miniProfile": { + "firstName": "Guillermo", + "lastName": "Fernandez", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAAzT7ABXfhgNdYXZjS-NQxu0FbmdGFBwjw", + "occupation": "I've read the last IPCC report, I am a Terrified Dad.Tomorrow will be worse than today, always worse, forever and ever.Unless we realize SSP1-1.9 - It's impossible? then we'll have a miracle", + "objectUrn": "urn:li:member:3362736", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAAzT7ABXfhgNdYXZjS-NQxu0FbmdGFBwjw", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1574151727930?e=1681948800&v=beta&t=TLSBDxRhXx2EzAVzOn--z0S80D9OpCTCKribdKaaoO8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1574151727930?e=1681948800&v=beta&t=sFNQa3jv775a0VhFV9VcGsreCZJ17aR3rQn-NKeuDyg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQEwMMqaH6YUKQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "gfernand", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1632849738663?e=1681948800&v=beta&t=2xs4WshnpZL006SZ2fwYyJKa6SBia0FjYnjfMkUTbbE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1632849738663?e=1681948800&v=beta&t=7KE5M46yKizRDsq1dfXbwrumzhnOx7EbobrdBFs5qMc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1632849738663?e=1681948800&v=beta&t=8BbCK5L4XbfP_vQiCUTAXJMOWYgiBiEmllrUNAkEkCY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1632849738663?e=1681948800&v=beta&t=zKb7EeaJBf_tz-VpdJhzkj2MSiAZsXD3gj7YARE90RU", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEZjs_t4C-b7g/profile-displayphoto-shrink_" + } + }, + "trackingId": "TBYZBv09R7irGIB3QbSScw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Apr\u00e8s Greta Thunberg et sa \"gr\u00e8ve de l'\u00e9cole\", apr\u00e8s Extinction Rebellion bloquant les ponts, l'action climatique prend un nouveau visage : celui d'un p\u00e8re en gr\u00e8ve de la faim.\n\nDepuis 35 jours Guillermo Fernandez, citoyen suisse, ne s'alimente plus, et a fait le voeu de ne recommencer qu'\u00e0 une condition : que le parlement f\u00e9d\u00e9ral suisse re\u00e7oive une formation sur les enjeux climatiques et la biodiversit\u00e9 donn\u00e9e par des scientifiques et bas\u00e9e sur la documentation produite par le GIEC, l\u2019IPBES et l\u2019OMM. \n\nSa revendication inclut que la pr\u00e9sentation des faits \u00e0 l\u2019Assembl\u00e9e f\u00e9d\u00e9rale soit enregistr\u00e9e et rendue publique, \"afin que les citoyens soient au m\u00eame niveau d\u2019information que leurs repr\u00e9sentants\".\n\nD'aucun(e)s se diront probablement qu'il est \u00e9tonnant de risquer de mourir tout de suite pour \u00e9viter de risquer de mourir plus tard. Sauf que cet homme ne justifie pas son action par la peur de devoir affronter un avenir difficile : c'est celui de ses enfants qui est invoqu\u00e9 (d'o\u00f9 le slogan \"papa on hunger strike\").\n\nCe qui est fou, dans cette histoire, ce n'est pas son geste. C'est qu'il soit n\u00e9cessaire de mettre une vie en danger pour une demande qui ne rel\u00e8ve que du simple bon sens. \n\nQuand la mati\u00e8re existe, les vulgarisateurs aussi, et qu'il est question d'un sujet qui est consid\u00e9r\u00e9 comme central par le monde politique, o\u00f9 est le probl\u00e8me \u00e0 passer quelques heures \u00e0 comprendre de quoi il retourne exactement ? Est-ce infamant de reconna\u00eetre que le suffrage universel ou la nomination comme ministre n'est pas \u00e9quivalent \u00e0 r\u00e9ussir \u00e0 un test de connaissances sur un sujet technique ? \n\nCette remarque vaut \u00e9videmment tout aussi bien pour les \u00e9lus et le gouvernement de mon pays..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6873329452173012992,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6873329452718276608,urn:li:activity:6873329452718276608,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 118, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6873329452718276608,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6873329452718276608,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6873329452718276608", + "threadId": "activity:6873329452718276608", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6873329452718276608", + "urn": "urn:li:activity:6873329452718276608", + "numComments": 280, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6873329452718276608", + "reactionTypeCounts": [ + { + "count": 4336, + "reactionType": "LIKE" + }, + { + "count": 624, + "reactionType": "APPRECIATION" + }, + { + "count": 354, + "reactionType": "PRAISE" + }, + { + "count": 82, + "reactionType": "MAYBE" + }, + { + "count": 73, + "reactionType": "INTEREST" + }, + { + "count": 55, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6873329452718276608", + "numLikes": 5524, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6873329452718276608", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5524, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6873276669046599680,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6873276669046599680", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6873276669046599680)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6873276669046599680)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_energie-comment-leurope-a-b%C3%A2ti-sa-propre-activity-6873276669046599680-RdjU?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6873276668451028992", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6873276669046599680", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6873276669046599680,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6873276669046599680,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6873276668451028992", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "UdKw1mRZEdpCdkjxU5xmqg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6873276669046599680,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7296361535912415091", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 509, + "fileIdentifyingUrlPathSegment": "800/0/1675978151374?e=1677240000&v=beta&t=NnAO5Oz64ANMzq7AU07r1biWbZd-G9sRXkzUgiqCFL4", + "expiresAt": 1677240000000, + "height": 339 + }, + { + "width": 509, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675978151374?e=1677240000&v=beta&t=IU4ZCy2yoFVlJjAGGsbznLPq8Av4ci_3kgwsd99Z9t8", + "expiresAt": 1677240000000, + "height": 339 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675978151374?e=1677240000&v=beta&t=0IbR1Eih1PDwiJOG3eCGAcitra06gF3d9hc4uouBFmo", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675978151375?e=1677240000&v=beta&t=USAJZfUtwMGEXYg0gUJsikwWQW-7Bhb92niU0bxP_tA", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE3JiI65zTppA/articleshare-shrink_" + }, + "displayAspectRatio": 0.6660117878192534 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7296361535912415091)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7296361535912415091)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "telos-eu.com \u2022 8 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Energie: comment l\u2019Europe a b\u00e2ti sa propre d\u00e9pendance au gaz by telos-eu.com", + "actionTarget": "https://www.telos-eu.com/fr/energie-comment-leurope-a-bati-sa-propre-dependanc.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Energie: comment l\u2019Europe a b\u00e2ti sa propre d\u00e9pendance au gaz" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6873276668451028992,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans un article publi\u00e9 sur Telos, Etienne Beeker, en charge des questions \u00e9nerg\u00e9tiques \u00e0 France Strat\u00e9gie, revient sur 40 ans de politique \u00e9nerg\u00e9tique en Europe, et explique comment la conjonction de la \"lib\u00e9ralisation\" de l'\u00e9lectricit\u00e9 et du d\u00e9veloppement des modes intermittents a ouvert un espace pour le gaz russe que nous allons avoir les plus grandes difficult\u00e9s \u00e0 refermer. \n\nL'une des cons\u00e9quence de la situation que nous (nous les Etats europ\u00e9ens) avons d\u00e9lib\u00e9r\u00e9ment cr\u00e9\u00e9e en 40 ans est que nous n'avons pas fini de voir les prix du gaz et de l'\u00e9lectricit\u00e9 faire du yoyo. Seul le retour \u00e0 un syst\u00e8me beaucoup plus fortement r\u00e9gul\u00e9 qu'aujourd'hui - ce qui suppose d'abandonner le dogme de \"market is good for you anywhere and anytime\", et surtout prendra du temps, alors que le temps est ce qui nous manque - permettra de conjuguer prix stables (pas n\u00e9cessairement bas cependant !) et syst\u00e8me d\u00e9carbon\u00e9.\n\nL'auteur note non sans malice que les Grands Bretons, qui ont beaucoup oeuvr\u00e9 pour cr\u00e9er de la volatilit\u00e9 dans le syst\u00e8me (ils ont \u00e9t\u00e9 tr\u00e8s \"supportive\" de la d\u00e9r\u00e9gulation quand ils \u00e9taient dans l'Union sont paradoxalement ceux qui aujourd'hui ont la politique \u00e9lectrique d\u00e9carbonante la mieux construite, en acceptant de revenir \u00e0 une quasi-nationalisation de fait du syst\u00e8me avec les \"contracts for difference\".\n\nL'histoire est un perp\u00e9tuel recommencement !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6873276668451028992,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6873276669046599680,urn:li:activity:6873276669046599680,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 3, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6873276669046599680,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6873276669046599680,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6873276669046599680", + "threadId": "activity:6873276669046599680", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6873276669046599680", + "urn": "urn:li:activity:6873276669046599680", + "numComments": 3, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6873276669046599680", + "reactionTypeCounts": [ + { + "count": 157, + "reactionType": "LIKE" + }, + { + "count": 29, + "reactionType": "INTEREST" + }, + { + "count": 21, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6873276669046599680", + "numLikes": 214, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6873276669046599680", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 214, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6873201246270984192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6873201246270984192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6873201246270984192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6873201246270984192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_depuis-2-si%C3%A8cles-la-production-agricole-fran%C3%A7aise-activity-6873201246270984192-G1b-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6873201245587296256", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6873201246270984192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6873201246270984192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6873201246270984192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6873201245587296256", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "msu1wBez2hQiBY5Ona8rIA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6873201246270984192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFqmiZfO8JQwQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFqmiZfO8JQwQ", + "artifacts": [ + { + "width": 1666, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1638698872495?e=1679529600&v=beta&t=5g5ERfL12p54H-ppp0ilZY51Aqzzn_emj6uzH44eiek", + "expiresAt": 1679529600000, + "height": 900 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1638698874308?e=1679529600&v=beta&t=3wtl8vjk5oufNPNofJ14vQKH6Ohk9HgSRipp4Vk2ksc", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1638698874308?e=1679529600&v=beta&t=GKHF-EOrUx1oy27RhLXZ-kXTL3l-WGSOQ_Z_4tMD0Ds", + "expiresAt": 1679529600000, + "height": 691 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1638698874308?e=1679529600&v=beta&t=h16RQqjUaRT43SOxdP0LuBf0KP-5ilm9KhmGkWWATHY", + "expiresAt": 1679529600000, + "height": 259 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1638698874308?e=1679529600&v=beta&t=pMosLaRDjcf68OGd2H51OdpsM1sidJQhbcG7khkHyTw", + "expiresAt": 1679529600000, + "height": 86 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1638698874308?e=1679529600&v=beta&t=qANycer0kTn7hqYGtxoKnBgGKCguO4KinwyS00kM38g", + "expiresAt": 1679529600000, + "height": 432 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFqmiZfO8JQwQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.5402160864345739 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6873201245587296256,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis 2 si\u00e8cles la production agricole fran\u00e7aise a fortement augment\u00e9. D'abord doucement, puis un peu plus rapidement \u00e0 la fin du 19\u00e8 et au d\u00e9but du 20\u00e8 si\u00e8cle, puis de mani\u00e8re tr\u00e8s rapide apr\u00e8s la seconde guerre mondiale, avec l'arriv\u00e9e de la m\u00e9canisation et des engrais (azote, potasse, phosphates) et phytosanitaires. Mais ces auxiliaires demandent eux-m\u00eames de l'\u00e9nergie pour pouvoir \u00eatre fabriqu\u00e9s ou mis \u00e0 disposition. \n\nDans un tr\u00e8s int\u00e9ressant article publi\u00e9 il y a quelques ann\u00e9es, 2 chercheurs du Laboratoire Interdisciplinaire des \u00c9nergies de Demain (Paris Diderot) observent comment a \u00e9volu\u00e9 le bilan \u00e9nerg\u00e9tique de l'agriculture, quand on d\u00e9duit de la production l'\u00e9nergie des intrants (engrais et m\u00e9canisation) : https://lnkd.in/dBSDZcnH\n\nLe graphique ci-dessous en r\u00e9sume l'essentiel. On voit que les cultures, exprim\u00e9es en contenu \u00e9nerg\u00e9tique (petajoules) passent de 1000 \u00e0 presque 2000 en l'espace d'un si\u00e8cle (avec des rendements qui n'augmentent plus sur les derni\u00e8res d\u00e9cennies). \n\nIl y a un si\u00e8cle, une grosse partie de cette production sert aux exploitations agricoles elles-m\u00eames : elle nourrit les animaux de trait et le personnel de la ferme (zone orange). La ferme d\u00e9gage un surplus (trait rouge) qui repr\u00e9sente un quart de la production brute.\n\nArrivent les engrais et la m\u00e9canisation (l'\u00e9nergie amen\u00e9e est celle repr\u00e9sent\u00e9e par la zone bleue fonc\u00e9e sous le z\u00e9ro). A ce moment on voit le surplus fortement augmenter, ce qui permet de nourrir des tas de gens qui ne sont pas sur l'exploitation, et notamment dans des villes.\n\nLes auteurs ont regard\u00e9 la \"biomasse \u00e9quivalente\" qui serait n\u00e9cessaire pour fournir cette \u00e9nergie : c'est le trait bleu clair. Dit autrement, le surplus de production est \u00e9gale au surplus d'\u00e9nergie amen\u00e9 de l'ext\u00e9rieur. \n\nLa conclusion des auteurs est \u00e9videmment tr\u00e8s perturbante : dans un monde sans combustibles fossiles, soit l'apport externe \u00e0 l'agriculture s'arr\u00eate et les rendements retombent \u00e0 ceux d'un si\u00e8cle, ce qui emp\u00eache l'agriculture de fournir la moindre \u00e9nergie \u00e0 la soci\u00e9t\u00e9 (biocarburants, biogaz), soit une partie de la biomasse est utilis\u00e9e pour faire les intrants de l'agriculture, et \u00e0 ce moment la production reste \u00e9lev\u00e9e mais le surplus agricole s'effondre.\n\nCe point de la fourniture d'\u00e9nergie par l'agriculture dans un monde sans fossiles est un des postulats extr\u00eamement os\u00e9s de la strat\u00e9gie nationale bas carbone, laquelle suppose un maintien des rendements nets dans un monde sans fossiles. Ce que disent les auteurs est que cela semble un pari intenable, sans m\u00eame parler de l'effet fortement n\u00e9gatif qu'aura le changement climatique sur le vivant." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6873201245587296256,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6873201246270984192,urn:li:activity:6873201246270984192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 101, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6873201246270984192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6873201246270984192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6873201246270984192", + "threadId": "activity:6873201246270984192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6873201246270984192", + "urn": "urn:li:activity:6873201246270984192", + "numComments": 162, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6873201246270984192", + "reactionTypeCounts": [ + { + "count": 1143, + "reactionType": "LIKE" + }, + { + "count": 299, + "reactionType": "INTEREST" + }, + { + "count": 280, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6873201246270984192", + "numLikes": 1742, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6873201246270984192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1742, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6872973711369109504,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6872973711369109504", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6872973711369109504)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6872973711369109504)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lavenir-du-p%C3%A9trole-est-derri%C3%A8re-lui-activity-6872973711369109504-xjua?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6872973710643486720", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6872973711369109504", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6872973711369109504,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6872973711369109504,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6872973710643486720", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "p0BonZ1yr6FOpvGyGbbn8w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6872973711369109504,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7351293675328005407", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 345, + "fileIdentifyingUrlPathSegment": "800/0/1675682091522?e=1677240000&v=beta&t=IwkN7uDpI1X31lWerfxIGIJ1qyPCpswJheZQm4VyHvo", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 345, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675682091522?e=1677240000&v=beta&t=mGVLjuTPKoBb1txf4RDYd_alDdmnXvv9K1WF6GNwyvY", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675682091522?e=1677240000&v=beta&t=NOAeVOfH9CE_l5om3ihPexz0uzxQSDi384_IxJ_KPEA", + "expiresAt": 1677240000000, + "height": 278 + }, + { + "width": 345, + "fileIdentifyingUrlPathSegment": "480/0/1675682091522?e=1677240000&v=beta&t=AysCgZqgQteg_6ueKkQ-EVNmh4CPn71x0USVEHSlRKA", + "expiresAt": 1677240000000, + "height": 600 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFKtPBqxuT7nQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.7391304347826086 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7351293675328005407)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7351293675328005407)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L\u2019avenir du p\u00e9trole est derri\u00e8re lui by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/blog/huet/2021/11/23/lavenir-du-petrole-est-derriere-lui/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L\u2019avenir du p\u00e9trole est derri\u00e8re lui" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6872973710643486720,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Sylvestre Huet recense le livre \"P\u00e9trole le d\u00e9clin est proche\" de Matthieu Auzanneau, livre qui fait lui-m\u00eame suite au rapport du Shift Project sur les perspectives d'approvisionnement en p\u00e9trole de l'Europe sous le seul angle de la contrainte g\u00e9ologique : https://lnkd.in/dMFCWQFw\n\nCe sujet de la contrainte p\u00e9troli\u00e8re a \u00e9t\u00e9 largement ignor\u00e9 par le monde \u00e9conomique, qui n'y voit qu'un risque d'inflation, alors que l'essentiel du probl\u00e8me n'est pas l\u00e0.\n\nEn effet, le p\u00e9trole est encore aujourd'hui indispensable au transport, donc aux \u00e9changes \u00e9conomiques, y compris entre chaque client et chaque fournisseur. A ce titre, son d\u00e9faut est certes un sujet (transitoire) pour les prix, mais surtout une limitation du premier ordre sur l'activit\u00e9. Et pour notre plus grand malheur un d\u00e9faut de p\u00e9trole ne signifie pas des prix de plus en plus hauts : il signifie un PIB de plus en plus contraint.\n\nCela ne perturbe pas plus que cela le monde politique. La commissaire europ\u00e9enne \u00e0 l'\u00e9nergie n'a pas le mot \"p\u00e9trole\" dans sa lettre de mission (https://lnkd.in/dQNdX-Q ) ; notre gouvernement n'a aucune esp\u00e8ce de r\u00e9flexion avanc\u00e9e sur le comportement \u00e0 avoir en cas de d\u00e9faut subi et irr\u00e9m\u00e9diable de p\u00e9trole (ce qui est le cas de mani\u00e8re larv\u00e9e en Europe depuis 2007) ; le monde \u00e9conomique continue \u00e0 le voir comme un produit qui se consomme au lieu d'\u00eatre le premier de nos facteurs de production (https://lnkd.in/gTFCeG3 ).\n\nCela ne perturbe pas non plus les media. Encore aujourd'hui, expliquer \u00e0 un journaliste \u00e9conomique que c'est le d\u00e9faut - physique - de p\u00e9trole qui a emp\u00each\u00e9 l'\u00e9conomie europ\u00e9enne de \"repartir\" apr\u00e8s 2008 provoque souvent une grande crise d'hilarit\u00e9. \n\nEt se faire rendre raison quand le probl\u00e8me sera bien avanc\u00e9 ne sera la source que d'une satisfaction relative : l'inertie soci\u00e9tale est telle que c'est une forte anticipation dont nous avons besoin, l\u00e0 comme pour le climat. Attendre que les faits confirment le diagnostic signifie attendre une instabilit\u00e9 tr\u00e8s \u00e9lev\u00e9e, qui ne sera bonne pour aucun objectif (pas plus la d\u00e9carbonation planifi\u00e9e)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6872973710643486720,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6872973711369109504,urn:li:activity:6872973711369109504,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6872973711369109504,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6872973711369109504,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6872973711369109504", + "threadId": "activity:6872973711369109504", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6872973711369109504", + "urn": "urn:li:activity:6872973711369109504", + "numComments": 130, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6872973711369109504", + "reactionTypeCounts": [ + { + "count": 571, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 51, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6872973711369109504", + "numLikes": 713, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6872973711369109504", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 713, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6872573004698673152,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6872573004698673152", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6872573004698673152)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6872573004698673152)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_si-les-banques-centrales-ont-pu-sauver-activity-6872573004698673152-e5ug?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6872573004170186752", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6872573004698673152", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6872573004698673152,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6872573004698673152,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6872573004170186752", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "kFHJ2VQyVNtgqU9tCUjyGg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6872573004698673152,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6971498701023268514", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676235941077?e=1677240000&v=beta&t=8MnPEBKl6GA4q5NJDoFxmyqBrHgaURnTyd-jsm9JAno", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676235941078?e=1677240000&v=beta&t=opydvQZSkxrI-aThlOAcjxIlg4CHqptMlyzu0hBvU9Q", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676235941078?e=1677240000&v=beta&t=05XqGeiiu_rFvwuJMhCWP0SyYM7T1_ZmWSR10L7jNVY", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676235941078?e=1677240000&v=beta&t=Ws8REY9RYYsUHyHBO97H7FIs-mhkREuorSA-zXo-_A0", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGtKgwOYNaLBQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6971498701023268514)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6971498701023268514)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab Si les banques centrales ont pu sauver les \u00e9conomies, pourquoi ne le feraient-elles pas pour le r\u00e9chauffement climatique ? \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/idees/article/2021/11/30/si-les-banques-centrales-ont-pu-sauver-les-economies-pourquoi-ne-le-feraient-elles-pas-pour-le-rechauf-fement-climatique_6104115_3232.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0Si les banques centrales ont pu sauver les \u00e9conomies, pourquoi ne le feraient-elles pas pour le r\u00e9chauf\u00adfement climatique ?\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6872573004170186752,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est un slogan qui a \u00e9t\u00e9 souvent repris depuis la crise financi\u00e8re : si les banques centrales ont pu mettre des milliers de milliards de dollars \"sur la table\" pour sauver le syst\u00e8me bancaire, il n'y a pas de raison que l'on n'y arrive pas pour le climat.\n\nIl y a \u00e9videmment du vrai dans cette histoire. Le d\u00e9but du vrai, c'est qu'il serait tout aussi l\u00e9gitime de mettre dans le mandat des banques centrales de prot\u00e9ger l'environnement - sans lequel il n'y a pas d'\u00e9conomie et pas de syst\u00e8me financier - que de prot\u00e9ger la monnaie, c'est-\u00e0-dire lutter contre l'inflation.\n\nLa cons\u00e9quence de ce premier point de vue pourrait par exemple \u00eatre que les banques centrales mettent des obligations ou au contraire des restrictions aux op\u00e9rations qu'elles font avec les banques : \n- pas d'argent pr\u00eat\u00e9 \u00e0 une banque lorsque cette derni\u00e8re donne en garantie des titres (appel\u00e9s collat\u00e9raux) qui sont \"non compatibles avec un minimum de de d\u00e9carbonation\"\n- pas d'achat d'obligations souveraines en provenance d'\u00e9tats dont e rythme de d\u00e9carbonation n'est pas conforme aux engagements qu'il prend lui-m\u00eame\n- r\u00e9alisation de mod\u00e8les r\u00e9alistes de \"stress test\" des banques sur les risques climat (pour le moment ces \"stress tests\" sont con\u00e7us pour \u00eatre faciles \u00e0 passer et non pour \u00eatre r\u00e9alistes)\n\nMais il y a aussi une part d'illusion \u00e0 bon compte dans cette affaire. Car \"sauver le climat\" n'est pas qu'une affaire d'argent. Il ne suffit pas \"d'investir l\u00e0 o\u00f9 il faut\" pour que le boulot soit fait. D\u00e9carboner l'\u00e9conomie, c'est notamment la rendre \"physiquement plus petite\" (c'est exactement cela que l'on appelle sobri\u00e9t\u00e9). Et l\u00e0, la question de savoir comment une banque centrale concourt directement \u00e0 contracter en douceur la taille de l'\u00e9conomie est probablement plus vite pos\u00e9e que r\u00e9solue." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6872573004170186752,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6872573004698673152,urn:li:activity:6872573004698673152,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 30, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6872573004698673152,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6872573004698673152,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6872573004698673152", + "threadId": "activity:6872573004698673152", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6872573004698673152", + "urn": "urn:li:activity:6872573004698673152", + "numComments": 74, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6872573004698673152", + "reactionTypeCounts": [ + { + "count": 674, + "reactionType": "LIKE" + }, + { + "count": 58, + "reactionType": "MAYBE" + }, + { + "count": 56, + "reactionType": "INTEREST" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6872573004698673152", + "numLikes": 815, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6872573004698673152", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 815, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6872465620009525248,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6872465620009525248", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6872465620009525248)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6872465620009525248)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-strat%C3%A9gie-dentreprise-%C3%A0-lheure-de-l-activity-6872465620009525248-SxXG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6872465619426529281", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6872465620009525248", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6872465620009525248,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6872465620009525248,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6872465619426529281", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "yG+MwzJXJ1jgi1akcWstPg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6872465620009525248,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7874210865178151795", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676493834740?e=1677240000&v=beta&t=Iw731H10_-LqPPeSeobmwRTpXCuPUkuske7SZjP8GQs", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676493834740?e=1677240000&v=beta&t=7FPxdDMLXFzp2Qznj-6I7XXvy76ekrChlJdK2T23Cnc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676493834741?e=1677240000&v=beta&t=UZnoFIoDJ5Sv3lp8dRuLiZ-Q_Ys1MY5aKYHe0HoD2uY", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676493834741?e=1677240000&v=beta&t=Esih0K_vdi9XzZne4eYGjAEVxsXjQmSf5LKdVCX5NF8", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH4Eo0S9ZGYLQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7874210865178151795)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7874210865178151795)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La strat\u00e9gie d\u2019entreprise \u00e0 l\u2019heure de l\u2019urgence climatique : les vieilles recettes peuvent-elles (encore) suffire ? | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-strategie-analyse-par-scenario" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La strat\u00e9gie d\u2019entreprise \u00e0 l\u2019heure de l\u2019urgence climatique : les vieilles recettes peuvent-elles (encore) suffire ? | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6872465619426529281,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 892, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "PUNYDb8ySJeJEwrPDnNjBg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Toute entreprise est un projet de conqu\u00eate, et donc de croissance. La \"strat\u00e9gie d'entreprise\", dans le monde dont nous sortons, qui est caract\u00e9ris\u00e9 par une expansion globale semblant sans limites, a souvent \u00e9t\u00e9 pens\u00e9e par induction, dans un contexte \"continu\" g\u00e9n\u00e9ralement appel\u00e9e \"Business As Usual\", qui ne tient pas compte de possibles contraintes physiques majeures. Or, ces derni\u00e8res vont survenir, et multiplier les obstacles \u00e0 la poursuite des tendances. A ce moment, les prix d'hier ne nous renseignent plus sur la capacit\u00e9 \u00e0 op\u00e9rer demain (le covid est un exemple de contrainte physique et on voit bien ce que cela signifie !). \n\nDans un monde qui va \u00eatre de plus en plus caract\u00e9ris\u00e9 par des discontinuit\u00e9s issues du franchissement (transitoire) des limites plan\u00e9taires, comment repenser la strat\u00e9gie d'entreprise \u00e0 l'heure du \"business as unusual\" ?\n\nCette nouvelle publication de Carbone 4 (qui fait aussi de la strat\u00e9gie, oui oui !) d\u00e9crit comment ces limites physiques - et notamment celles issues de l'\u00e9nergie et du climat - demandent d'utiliser une nouvelle approche, bas\u00e9e sur l'analyse par sc\u00e9narios, pour appr\u00e9hender l'avenir. Cette approche a \u00e9videmment d\u00e9j\u00e0 \u00e9t\u00e9 test\u00e9e sur toute une palette de cas concrets, et on s'est rendus compte que, chose inou\u00efe, \u00e7a fonctionne !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6872465619426529281,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6872465620009525248,urn:li:activity:6872465620009525248,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 14, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6872465620009525248,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6872465620009525248,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6872465620009525248", + "threadId": "activity:6872465620009525248", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6872465620009525248", + "urn": "urn:li:activity:6872465620009525248", + "numComments": 35, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6872465620009525248", + "reactionTypeCounts": [ + { + "count": 303, + "reactionType": "LIKE" + }, + { + "count": 42, + "reactionType": "INTEREST" + }, + { + "count": 30, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6872465620009525248", + "numLikes": 380, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6872465620009525248", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 380, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6872171026701144064,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6872171026701144064", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6872171026701144064)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6872171026701144064)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9carboner-la-sant%C3%A9-pour-soigner-durablement-activity-6872171026701144064-RDpe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6872171025904234496", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6872171026701144064", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6872171026701144064,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6872171026701144064,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6872171025904234496", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "itWi7GiSu5NNHWaik87rfw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6872171026701144064,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7631076207547578889", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 570, + "fileIdentifyingUrlPathSegment": "800/0/1675444571509?e=1677240000&v=beta&t=nzzKCT6ZtcZR8qbzT4BJbOVuI2OUiATmrpiPKcYaUxo", + "expiresAt": 1677240000000, + "height": 285 + }, + { + "width": 570, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675444571509?e=1677240000&v=beta&t=JbLmEOo8iGz2nhtwzDMgtU0MPz7ruS-_wb7bZahJdeI", + "expiresAt": 1677240000000, + "height": 285 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675444571509?e=1677240000&v=beta&t=pQe9KPsoUKGusURtJs-sweP93rAEHW6YrFyY_5gUzuE", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675444571509?e=1677240000&v=beta&t=LDZwBQv4RDyqngFH9nDQ5p7pMwvbLDJTrW4ZQ9S49_c", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGLeHrww6jXRw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7631076207547578889)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7631076207547578889)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab D\u00e9carboner la Sant\u00e9 pour soigner durablement \u00bb : le rapport du Shift Project - The Shift Project by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/decarboner-sante-rapport-2021/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab D\u00e9carboner la Sant\u00e9 pour soigner durablement \u00bb : le rapport du Shift Project - The Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6872171025904234496,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Comment rester en bonne sant\u00e9 dans un monde qui se d\u00e9carbone ? Ce sera plus facile diront les uns : moins de combustibles fossiles, c'est moins de particules fines, de s\u00e9dentarit\u00e9 donc d'ob\u00e9sit\u00e9, de changement climatique et son cort\u00e8ge d'agressions sur les soci\u00e9t\u00e9s humaines, et j'en passe.\n\nPas si vite feront remarquer d'autres, qui noteront que l'esp\u00e9rance de vie a g\u00e9n\u00e9ralement fortement augment\u00e9 avec l'approvisionnement \u00e9nerg\u00e9tique fossile, lequel a amen\u00e9 s\u00e9curit\u00e9 alimentaire (productivit\u00e9 agricole, transports, et... relative stabilit\u00e9 politique), protection contre le froid, le chaud et l'humide (logements), et \u00e9galement un syst\u00e8me de soins sophistiqu\u00e9 (vaccins, m\u00e9dicaments, h\u00f4pital, etc).\n\nM\u00eame si c'est le deuxi\u00e8me effet qui l'a emport\u00e9 historiquement, la question de savoir comment maintenir un bon \u00e9tat de sant\u00e9 dans un monde moins dot\u00e9 de combustibles fossiles se pose, que ce soit pour des raisons climatiques, ou pour des raisons de d\u00e9crue subie des combustibles fossiles. \n\nApr\u00e8s un an et demi de travail, The Shift Project publie ses propositions pour le secteur de la sant\u00e9 dans le cadre du plan de transformation de l'\u00e9conomie fran\u00e7aise. \n\nCe secteur devra prendre sa part de mesures qui se retrouvent \"partout ailleurs\" : d\u00e9carbonation du confort thermique des b\u00e2timents et des transports ne sont en effet pas propres aux \u00e9tablissements de sant\u00e9. Mais il faudra aussi d'occuper des m\u00e9dicaments (qui font un tiers de l'empreinte du secteur), des \"dispositifs m\u00e9dicaux\" - seringues, poches, compresses, proth\u00e8ses, bref tout les consommables, qui en font 20%, des appareils d'imagerie ou encore de ce que mangent les personnes hospitalis\u00e9es.\n\nMais m\u00eame avec des mesures ambitieuses sur les aspects \"techniques et mat\u00e9riels\", cela ne suffira pas \u00e0 faire en sorte d'avoir une sant\u00e9 \"neutre en carbone\". Pour y arriver, il faudra diminuer la demande de soins, plus avoir un appareil curatif \"plus petit\". Cela signifie que la pr\u00e9vention deviendra le ma\u00eetre mot dans ce domaine. \n\nCela devrait \u00eatre facilit\u00e9 par le fait que le syst\u00e8me de soins ne d\u00e9termine que pour 10 \u00e0 20 % l\u2019\u00e9tat de sant\u00e9 de la population. Les autres d\u00e9terminants sont les comportements individuels, l\u2019environnement physique, le contexte socio-\u00e9conomique, et la constitution biologique. Il va donc falloir s'occuper s\u00e9rieusement de faire en sorte que la population n'ait pas envie de fumer ou de boire, puisse (et veuille) faire du sport, ait envie de marcher ou p\u00e9daler plut\u00f4t que conduire, ne respire pas de particules, etc. Cela sera la premi\u00e8re mesure pour concilier sobri\u00e9t\u00e9 de moyens (car il en restera \u00e9videmment) et bon \u00e9tat sanitaire." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6872171025904234496,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6872171026701144064,urn:li:activity:6872171026701144064,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 23, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6872171026701144064,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6872171026701144064,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6872171026701144064", + "threadId": "activity:6872171026701144064", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6872171026701144064", + "urn": "urn:li:activity:6872171026701144064", + "numComments": 33, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6872171026701144064", + "reactionTypeCounts": [ + { + "count": 249, + "reactionType": "LIKE" + }, + { + "count": 43, + "reactionType": "INTEREST" + }, + { + "count": 14, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6872171026701144064", + "numLikes": 326, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6872171026701144064", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 326, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6872083087937863682,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6872083087937863682", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6872083087937863682)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6872083087937863682)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-soci%C3%A9t%C3%A9s-fonci%C3%A8res-des-acteurs-financiers-activity-6872083087937863682-590w?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6872083087405199360", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6872083087937863682", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6872083087937863682,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6872083087937863682,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6872083087405199360", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "+MjQjIwObTfDgal35H4Itw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6872083087937863682,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7684676406021219412", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1637333876201?e=1677240000&v=beta&t=MfEKSgOqLkHNsCeHjLXIoau4xcP0dLiDgQlY01k3sfs", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1637333876201?e=1677240000&v=beta&t=HtFP5KgBwlsfZZdSJ1p2ER1b3VG1WCJLSqshUCNFq_E", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1637333876201?e=1677240000&v=beta&t=R-uj8Znzcd9C4Nw-BM1ehbOs8Ch_0h2XNtUYmP3hDxE", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1637333876201?e=1677240000&v=beta&t=ssgJjrSSVKYpQyDUlYdlKYSHzjK_6B9HU3Uf4Gicb28", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEssvi-FGMstA/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7684676406021219412)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7684676406021219412)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbon4finance.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les soci\u00e9t\u00e9s fonci\u00e8res, des acteurs financiers qui doivent se mettre au service de la transition \u00e9nerg\u00e9tique du b\u00e2timent by carbon4finance.com", + "actionTarget": "http://www.carbon4finance.com/publication-real-estate-2/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les soci\u00e9t\u00e9s fonci\u00e8res, des acteurs financiers qui doivent se mettre au service de la transition \u00e9nerg\u00e9tique du b\u00e2timent" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6872083087405199360,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 667, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "mC9g9EH6QRiZINY1faMh9g==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Si vous avez de l'\u00e9pargne financi\u00e8re, et que vous l'avez confi\u00e9e - par exemple via de l'assurance vie - \u00e0 des gestionnaires d'actifs, ces derniers vont le placer en achetant des actions ou des obligations.\n\nDans les placements, une partie va dans l'immobilier. En pratique, cela signifie d\u00e9tenir une partie du capital (actions) ou de la dette (obligations) de soci\u00e9t\u00e9s fonci\u00e8res, \u00e0 savoir des entreprises dont le m\u00e9tier est de d\u00e9tenir des immeubles. Ces derniers peuvent \u00eatre des bureaux, des centres commerciaux, ou encore d'autres b\u00e2timents, par exemple des \u00e9tablissements de soin ou sportifs.\n\nDans le cadre de l'application de sa m\u00e9thode Carbon Impact Analytics, Carbon4 Finance vient de publier une analyse sectorielle sur les fonci\u00e8res cot\u00e9es (c'est \u00e0 dire dont tout ou partie du capital est disponible \u00e0 la vente sur un march\u00e9, \u00e0 un prix qui est connu de tous).\n\n142 entreprises (dans le monde) ont ainsi \u00e9t\u00e9 pass\u00e9es au crible, et leurs performances \u00e9valu\u00e9es via une m\u00e9thode dont les principes sont explicit\u00e9s dans cette publication.\n\nTous types de b\u00e2timent existants, et en agr\u00e9geant construction et fonctionnement (dans le fonctionnement on compte \u00e0 la fois les \u00e9missions directes des chaudi\u00e8res des b\u00e2timents, et les \u00e9missions indirectes des centrales \u00e9lectriques au charbon, au gaz et au fioul qui alimentent les b\u00e2timents), l'immobilier repr\u00e9sente 37% des \u00e9missions mondiales de CO2. \n\nIl s'agit donc d'un enjeu majeur, sans compter les \u00e9missions des d\u00e9placements associ\u00e9s aux b\u00e2timents (domicile-travail pour les bureaux ; d\u00e9placements des clients pour les centres commerciaux...) qui d\u00e9pendent de la localisation de l'immeuble. La transition du secteur est donc une n\u00e9cessit\u00e9 : sont-ils au rendez-vous ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6872083087405199360,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6872083087937863682,urn:li:activity:6872083087937863682,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 23, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6872083087937863682,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6872083087937863682,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6872083087937863682", + "threadId": "activity:6872083087937863682", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6872083087937863682", + "urn": "urn:li:activity:6872083087937863682", + "numComments": 24, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6872083087937863682", + "reactionTypeCounts": [ + { + "count": 378, + "reactionType": "LIKE" + }, + { + "count": 46, + "reactionType": "INTEREST" + }, + { + "count": 36, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6872083087937863682", + "numLikes": 474, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6872083087937863682", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 474, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6871713175289503744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6871713175289503744", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6871713175289503744)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6871713175289503744)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-monde-sans-fin-la-bd-qui-alerte-sur-activity-6871713175289503744-pxrV?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6871713174878486528", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6871713175289503744", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6871713175289503744,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6871713175289503744,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6871713174878486528", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "kLpW42tCAO/BLOJfN6GpMA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6871713175289503744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7477378234454301239", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675968245588?e=1677240000&v=beta&t=5QxLIbIV4SzRrvWXZnsZgPpT2LWGbAFaLmPEdlMuco0", + "expiresAt": 1677240000000, + "height": 560 + }, + { + "width": 1098, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675968245588?e=1677240000&v=beta&t=m5SqQF0j_dlJJueFjoJERBzhsOFVqdf6G6KQHiPfuEU", + "expiresAt": 1677240000000, + "height": 768 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675968245588?e=1677240000&v=beta&t=P9tz-QOHzcIK71od8jT7NXZefmh0GXBt8ilfitWfF3g", + "expiresAt": 1677240000000, + "height": 112 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675968245588?e=1677240000&v=beta&t=RcFdciri7Tr9Z_z3rm1RRLhyouS9xFTz3TTSNhoVJQg", + "expiresAt": 1677240000000, + "height": 336 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHOmvzM_-yplw/articleshare-shrink_" + }, + "displayAspectRatio": 0.7 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7477378234454301239)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7477378234454301239)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "elle.fr \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab Le Monde sans fin \u00bb, la BD qui alerte sur l\u2019\u00e9tat de la plan\u00e8te - Elle by elle.fr", + "actionTarget": "https://www.elle.fr/Loisirs/Livres/News/Le-Monde-sans-fin-la-BD-qui-alerte-sur-l-etat-de-la-planete-3970272" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab Le Monde sans fin \u00bb, la BD qui alerte sur l\u2019\u00e9tat de la plan\u00e8te - Elle" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6871713174878486528,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Nous n'aurons pas remport\u00e9 le \"grand prix de la BD\" du magazine Elle (qui a cependant consacr\u00e9 2 pages \u00e0 la recension de notre ouvrage), mais nous avons d\u00e9couvert une vertu cardinale de notre livre pendant la c\u00e9r\u00e9monie de remise du prix qui a eu lieu hier (en dehors de la possibilit\u00e9 de caler un meuble avec bien sur) : il pacifie les couples !\n\nNous avons en effet (Christophe et moi) \u00e9t\u00e9 remerci\u00e9s par plusieurs femmes du jury parce que, en offrant cette BD \u00e0 leur Jules, ce dernier n'avait pas cess\u00e9 de leur manifester de la gratitude pendant une semaine.\n\nMesdames, n'h\u00e9sitez donc plus une seconde : pour la modique somme de 27 euros, offrez vous une semaine de calme, de reconnaissance et de d\u00e9votion, effet garanti ! Et si ca ne fonctionne pas vous pourrez toujours caler un meuble :)\n\nNB : plus s\u00e9rieusement, le r\u00e9approvisionnement est en imminent. Les libraires devraient \u00eatre livr\u00e9s avant la fin de la semaine." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6871713174878486528,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6871713175289503744,urn:li:activity:6871713175289503744,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 118, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6871713175289503744,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6871713175289503744,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6871713175289503744", + "threadId": "activity:6871713175289503744", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6871713175289503744", + "urn": "urn:li:activity:6871713175289503744", + "numComments": 152, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6871713175289503744", + "reactionTypeCounts": [ + { + "count": 1730, + "reactionType": "LIKE" + }, + { + "count": 129, + "reactionType": "PRAISE" + }, + { + "count": 125, + "reactionType": "EMPATHY" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6871713175289503744", + "numLikes": 2025, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6871713175289503744", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2025, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6871508708598284288,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6871508708598284288", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6871508708598284288)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6871508708598284288)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-strat%C3%A9gie-%C3%A9nerg%C3%A9tique-hasardeuse-activity-6871508708598284288-RFkK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6871508708090757120", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6871508708598284288", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6871508708598284288,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6871508708598284288,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6871508708090757120", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "CQ2wl6KoLQ864QsQbK8aDw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6871508708598284288,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9056170682735163742", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675819859411?e=1677240000&v=beta&t=jq5uE-iws4na8cSpdNZqgbF6lRkTB-qpECj8OPfYjW8", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1190, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675819859411?e=1677240000&v=beta&t=P7oqEdabwKVY0Co4rudCr3qhCarNLDFs11TiZWAgu-E", + "expiresAt": 1677240000000, + "height": 669 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675819859411?e=1677240000&v=beta&t=fZ5Gmpkrq0VRqF3HN3W3ij6Dmbwa8aw9xRKQ_5ITSYw", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675819859411?e=1677240000&v=beta&t=QCs54fnGWLodhC1nmsbKKKBNx_FEovw62a7y2uxwrCw", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHbC0rV2VKimA/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9056170682735163742)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9056170682735163742)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesoir.be \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Une strat\u00e9gie \u00e9nerg\u00e9tique hasardeuse by lesoir.be", + "actionTarget": "https://www.lesoir.be/409211/article/2021-11-29/une-strategie-energetique-hasardeuse" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Une strat\u00e9gie \u00e9nerg\u00e9tique hasardeuse" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6871508708090757120,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ca chauffe en Belgique. Le gouvernement devrait rendre de mani\u00e8re imminente une d\u00e9cision sur la fermeture pr\u00e9matur\u00e9e ou pas des r\u00e9acteurs nucl\u00e9aires.\n\nS'il acte la \"sortie du nucl\u00e9aire\", cela fera augmenter les \u00e9missions de la Belgique (du moins \u00e0 court terme), et cela est \u00e9videmment un poil \u00e0 rebours du sens de l'histoire, \u00e9crivent un collectif de signataires dans une lettre ouverte au gouvernement belge.\n\nIl est clair que la d\u00e9cision belge fera n\u00e9cessairement perdre sur un tableau, quel qu'il soit. Soit la sortie est act\u00e9e, et le pays se d\u00e9cr\u00e9dibilise sur le plan du climat. Soit elle est refus\u00e9e, et le gouvernement se d\u00e9cr\u00e9dibilise aupr\u00e8s de la fraction de ses \u00e9lecteurs qui tenait \u00e0 cette mesure. Nous sommes (enfin ils sont !) typiquement dans un cas de figure o\u00f9 il n'y a pas de martingale, juste une mesure moins mauvaise qu'une autre. Et c'est typiquement ce genre de d\u00e9cision sans \"r\u00e9ponse parfaite\" qui nous attend de plus en plus souvent \u00e0 l'avenir." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6871508708090757120,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6871508708598284288,urn:li:activity:6871508708598284288,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 28, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6871508708598284288,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6871508708598284288,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6871508708598284288", + "threadId": "activity:6871508708598284288", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6871508708598284288", + "urn": "urn:li:activity:6871508708598284288", + "numComments": 65, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6871508708598284288", + "reactionTypeCounts": [ + { + "count": 610, + "reactionType": "LIKE" + }, + { + "count": 64, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6871508708598284288", + "numLikes": 726, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6871508708598284288", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 726, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6871352120315006976,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6871352120315006976", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6871352120315006976)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6871352120315006976)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-xxiesi%C3%A8cle-sera-mat%C3%A9riel-avant-d%C3%AAtre-activity-6871352120315006976-sC2E?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6871352119660711936", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6871352120315006976", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6871352120315006976,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6871352120315006976,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6871352119660711936", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "EWArCsCQG2DRZYbjhzYyTA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6871352120315006976,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8548319716352858917", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676068515992?e=1677240000&v=beta&t=K8lyMVOS6OxATkMcIXQ4qnzS9ESP4VIiLKU4IKneH4g", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676068515992?e=1677240000&v=beta&t=-Em_aH58LM8Jomwf3YQm4vgOqoh6avL3Vc__aKma7Jg", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676068515992?e=1677240000&v=beta&t=zw0YunHDtBGXNK19rJ3rPEN5FWFbav09RN2e9SFVIoE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676068515992?e=1677240000&v=beta&t=RBjgIR7Nw3l6BsyO10ITsxp1fhX1t5KnmwCweYocpTo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE9y51VTw_t_w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8548319716352858917)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8548319716352858917)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le XXIe si\u00e8cle sera mat\u00e9riel avant d'\u00eatre virtuel by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/le-xxie-siecle-sera-materiel-avant-detre-virtuel-1368064" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le XXIe\u00a0si\u00e8cle sera mat\u00e9riel avant d'\u00eatre virtuel" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6871352119660711936,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans une int\u00e9ressante chronique publi\u00e9e dans Les Echos de ce matin, Jean-Marc Vittori revient sur des publications r\u00e9centes de l'Agence Internationale de l'Energie (notamment https://lnkd.in/dwaVnrSm ) qui quantifient la demande en m\u00e9taux non ferreux (cuivre, nickel, lithium, cobalt notamment) qui r\u00e9sulterait d'une \"transition\" conjuguant activit\u00e9 \u00e9conomique en hausse et \u00e9missions de CO2 en baisse (ce que l'on appelle la \"croissance verte\").\n\nLes Echos \u00e9tant un journal \u00e9conomique, mon homonyme de pr\u00e9nom conclut sa tribune en \u00e9voquant les milliers de milliards de dollars qui seraient n\u00e9cessaires pour que cette production soit possible.\n\nCette \"pr\u00e9vision\" laisse penser que cela va nous couter un peu cher, mais que ce n'est qu'une question de volont\u00e9. La r\u00e9alit\u00e9 pourrait ne pas \u00eatre si simple. En particulier, les prix d'aujourd'hui ne disent rien sur la possibilit\u00e9 de faire dans un monde d\u00e9pourvu de combustibles fossiles, parce que ce qui forme notre syst\u00e8me de prix est bien... la disponibilit\u00e9 de ces combustibles.\n\nSi le cuivre coute consid\u00e9rablement moins cher aujourd'hui qu'\u00e0 l'\u00e2ge de bronze (rappelons que le bronze est un alliage de cuivre), c'est parce que nous avons du charbon en masse pour faire l'acier des engins de mine, des trains, des camions et des bateaux, du p\u00e9trole pour faire fonctionner ces derniers (un gros dumper minier est aussi puissant que 3500 chevaux attel\u00e9s : https://lnkd.in/dt7ie9ky ), du charbon pour r\u00e9duire les minerais (qui sont des oxydes), du p\u00e9trole pour transporter massivement minerais et m\u00e9taux dans des vraquiers ou cargos (et pour faire toute la chimie organique - des plastiques et lubrifiants - que l'on retrouve aussi dans toutes ces machines), du charbon et du gaz pour produire l'\u00e9lectricit\u00e9 n\u00e9cessaire \u00e0 toutes ces machines, et j'en passe.\n\nDans un monde sans combustibles fossiles, tout cela s'en va. Avant les combustibles fossiles en masse, \u00e0 l'\u00e9poque des mineurs \u00e0 pioches, wagonnets de mine tir\u00e9s par des chevaux, et de la marine \u00e0 voile avec des bateaux en bois, il n'\u00e9tait \u00e9videmment pas question de produire les quantit\u00e9s actuelles de m\u00e9taux non ferreux, et a fortiori encore moins 20 \u00e0 40 fois plus, comme cela serait le cas dans cette transition d\u00e9crite par l'AIE.\n\nCertes notre ing\u00e9niosit\u00e9 technique nous conserverait quelque chose du progr\u00e8s moderne dans un monde sans fossiles, mais de l\u00e0 \u00e0 prendre pour argent comptant que nous allons fortement augmenter la production de m\u00e9taux non ferreux alors m\u00eame que ce qui a permis l'\u00e9mergence d'une m\u00e9tallurgie mondialis\u00e9e s'en ira (et que par ailleurs les mines se vident - l'AIE envisage un \"pic cuivre\" pour les ann\u00e9es \u00e0 venir), il y a un pari \"physique\" qui n'est m\u00eame pas une question de prix, et que nous avons toutes les chances de perdre.\n\nD'o\u00f9 le titre : le 21\u00e8 si\u00e8cle ne sera pas du tout celui o\u00f9 nous \u00e9chapperons aux r\u00e9alit\u00e9s mat\u00e9rielles. Nous y resterons plong\u00e9s, plus encore qu'au 20\u00e8." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6871352119660711936,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6871352120315006976,urn:li:activity:6871352120315006976,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 41, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6871352120315006976,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6871352120315006976,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6871352120315006976", + "threadId": "activity:6871352120315006976", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6871352120315006976", + "urn": "urn:li:activity:6871352120315006976", + "numComments": 91, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6871352120315006976", + "reactionTypeCounts": [ + { + "count": 883, + "reactionType": "LIKE" + }, + { + "count": 136, + "reactionType": "INTEREST" + }, + { + "count": 97, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6871352120315006976", + "numLikes": 1136, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6871352120315006976", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1136, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6871035855184662528,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6871035855184662528", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6871035855184662528)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6871035855184662528)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-sbti-lance-son-standard-net-zero-pour-activity-6871035855184662528-Zogc?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6871035854740062209", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6871035855184662528", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6871035855184662528,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6871035855184662528,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6871035854740062209", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "e3sRKr7Nu/6EQdNYKM3WxQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6871035855184662528,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7623358769287614905", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675383841552?e=1677240000&v=beta&t=-R5P36nQAN7-NC7ha0Hud4uB4Zsq2_-hgTbbiKTTub8", + "expiresAt": 1677240000000, + "height": 531 + }, + { + "width": 1203, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675383841552?e=1677240000&v=beta&t=yh7A55xvbvW3hUmvly3Lt27qiFadGcu4EQvZ7ERJNv0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675383841552?e=1677240000&v=beta&t=Kqpwxg105L-8M6LEcdckcAH4XSnSuz7_6UrcScHfZCE", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675383841552?e=1677240000&v=beta&t=_lbvwpum4swerIvTZJaMi2CRtpwGAUOCmT8dO1mmbNs", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQERTi4qMTkdBA/articleshare-shrink_" + }, + "displayAspectRatio": 0.66375 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7623358769287614905)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7623358769287614905)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le SBTi lance son standard \u2018Net Zero\u2019 pour les entreprises : d\u00e9cryptage et comparaison avec Net Zero Initiative | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/sbti-standard-net-zero-decryptage" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le SBTi lance son standard \u2018Net Zero\u2019 pour les entreprises : d\u00e9cryptage et comparaison avec Net Zero Initiative | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6871035854740062209,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 530, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "KMhkYM3kQ0+Y+3nx2wMTZA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "En 2015 s'est cr\u00e9\u00e9 un partenariat entre le CDP (anciennement Carbon Disclosure Project), le Global Compact des Nations Unies, le World Resources Institute (WRI) et le WWF appel\u00e9 Science Based Target Initiative (SBTi) : https://lnkd.in/duYRyZx8\n\nSon but est de proposer un cadre aux engagements pris par les entreprises lorsque ces derni\u00e8res souhaitent contribuer \u00e0 la baisse des \u00e9missions de gaz \u00e0 effet de serre. Il s'agit donc d'une initiative m\u00e9thodologique, qui se situe sur le m\u00eame plan que la Net Zero Initiative lanc\u00e9e par Carbone 4 (https://lnkd.in/db7JzB2q ). \n\nPour savoir si nous \u00e9tions raccord ou pas, nous avons compar\u00e9 les deux approches. Le r\u00e9sultat (ouf !) est que c'est \u00e0 peu pr\u00e8s raccord. \n\nCes points de m\u00e9thode peuvent sembler \u00e9sot\u00e9riques ou anecdotiques, la \"vraie vie\" \u00e9tant de passer \u00e0 l'action. Sauf que, pour passer \u00e0 l'action de mani\u00e8re pertinente (et non perdre son temps ou, pire, augmenter le probl\u00e8me), il faut savoir vers quoi aller et \u00e0 quel rythme. D\u00e9finir un cadre pour cela est donc crucial.\n\nNB : le SBTi certifie les objectifs que les entreprises se fixent sont du bon ordre de grandeur, mais absolument pas que les m\u00eames entreprises se sont dot\u00e9es des moyens humains et mat\u00e9riels d'atteindre l'objectif en question. Etre certifi\u00e9 SBTi ne signifie donc pas que l'entreprise est sur la bonne trajectoire, mais juste qu'elle a produit un document montrant que la d\u00e9finition de cette trajectoire a \u00e9t\u00e9 faite par une \u00e9quipe au sein de l'entreprise. Dans l'id\u00e9al, cette certification devrait \u00eatre annuelle, et renouvel\u00e9e uniquement en cas de respect de la trajectoire que l'entreprise s'est elle-m\u00eame fix\u00e9e. Nous n'y sommes pas encore !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6871035854740062209,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6871035855184662528,urn:li:activity:6871035855184662528,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 10, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6871035855184662528,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6871035855184662528,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6871035855184662528", + "threadId": "activity:6871035855184662528", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6871035855184662528", + "urn": "urn:li:activity:6871035855184662528", + "numComments": 12, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6871035855184662528", + "reactionTypeCounts": [ + { + "count": 152, + "reactionType": "LIKE" + }, + { + "count": 12, + "reactionType": "INTEREST" + }, + { + "count": 10, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6871035855184662528", + "numLikes": 178, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6871035855184662528", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 178, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6870986533877362688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6870986533877362688", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6870986533877362688)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6870986533877362688)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_tourisme-un-plan-%C3%A0-2milliards-pour-maintenir-activity-6870986533877362688-Hs_X?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6870986533294366721", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6870986533877362688", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6870986533877362688,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6870986533877362688,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6870986533294366721", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "Hch48tMTxxJycmEOew8yyA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6870986533877362688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7544829102647747718", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676507023970?e=1677240000&v=beta&t=gS4aqwKfqM5JnU-oF_caSy0NGDl4gJYFrn3JghKOcqM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676507023971?e=1677240000&v=beta&t=WXHd2PAZ6guARndVwOhnKkyQ_e_fc3qEq9MUIqvsyOU", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676507023971?e=1677240000&v=beta&t=w57d4-wX0CfZ4D9IIkiJZxOYi6LdMGGNAWk4unyc5So", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676507023971?e=1677240000&v=beta&t=L4tPPtqeaH02AGZU8dDWN4QL5i3MPqZXlgiWuYR2kxY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHKXV9Rr53Vpg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7544829102647747718)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7544829102647747718)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Tourisme : un plan \u00e0 2 milliards pour maintenir la France au sommet by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/tourisme-transport/tourisme-le-plan-a-2-milliards-pour-la-destination-france-1365469" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Tourisme\u00a0: un plan \u00e0 2\u00a0milliards pour maintenir la France au sommet" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6870986533294366721,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le tourisme international, version \"transport de personnes\" de la mondialisation \u00e9conomique (qui elle suppose du transport international de marchandises), est une activit\u00e9 qui repose massivement sur le p\u00e9trole (car l'essentiel du tourisme international c'est de l'avion et de la voiture, bien avant le train) et sur la \"civilisation des loisirs\", c'est \u00e0 dire... de l'\u00e9nergie abondante, qui permet de lib\u00e9rer du temps pour faire autre chose que des activit\u00e9s productives. Ce dernier point se manifeste notamment par le fait que, quand la conjoncture va mal - ce qui se produit quand il y a un d\u00e9faut d'approvisionnement \u00e9nerg\u00e9tique - le tourisme est une des premi\u00e8res choses qui ralentit fortement (on l'avait bien vu aussi au moment de la crise de 2008/2009).\n\nC'est donc une activit\u00e9 qui est \u00e0 la fois fragile (n'importe quel grain de sable - p\u00e9trole cher ou covid - vient enrayer la machine) et, dans sa forme actuelle, \"non durable\", puisque supposant du transport longue distance massivement assur\u00e9 par du p\u00e9trole. Le seul \"tourisme durable\" est r\u00e9gional et ferroviaire, en attendant d'avoir un peu - mais pas beaucoup - de bus et et voitures d\u00e9carbon\u00e9s.\n\nLe covid avait donn\u00e9 un coup d'arr\u00eat \u00e0 cette activit\u00e9. A quelque chose malheur aurait pu \u00eatre bon : nous aurions pu en profiter pour r\u00e9orienter le secteur vers un tourisme plus local et occupant une place moins importante dans le PIB fran\u00e7ais. Mais non : l\u00e0 comme ailleurs, le plan est d'essayer de revenir \"durablement\" \u00e0 la situation ant\u00e9rieure... alors m\u00eame que cette derni\u00e8re ne peut pas durer.\n\nLe plan veut en particulier \"revaloriser\" les m\u00e9tiers de l'h\u00f4tellerie et de la restauration, c'est \u00e0 dire d'annexes aux transports longue distance des personnes, alors m\u00eame que le d\u00e9clin p\u00e9trolier va progressivement rendre ces transports moins importants.\n\nC'est donc jouer un mauvais tour aux professionnels du secteur que de leur tenir ce discours. Il est vrai que pour leur en tenir un autre, il eut fallu y r\u00e9fl\u00e9chir avant, et donc envisager l'inenvisageable : que la croissance d'une activit\u00e9 ne soit physiquement plus possible." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6870986533294366721,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6870986533877362688,urn:li:activity:6870986533877362688,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 63, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6870986533877362688,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6870986533877362688,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6870986533877362688", + "threadId": "activity:6870986533877362688", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6870986533877362688", + "urn": "urn:li:activity:6870986533877362688", + "numComments": 188, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6870986533877362688", + "reactionTypeCounts": [ + { + "count": 777, + "reactionType": "LIKE" + }, + { + "count": 87, + "reactionType": "INTEREST" + }, + { + "count": 82, + "reactionType": "MAYBE" + }, + { + "count": 24, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6870986533877362688", + "numLikes": 977, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6870986533877362688", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 977, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6870683036334223360,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6870683036334223360", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6870683036334223360)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6870683036334223360)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-marc-jancovici-activity-6870683036334223360-o-3x?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6870683035696685056", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6870683036334223360", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6870683036334223360,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6870683036334223360,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6870683035696685056", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "hPwDtDHK+7lV2tUU7NCicw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6870683036334223360,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8990528164766718982", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 290, + "fileIdentifyingUrlPathSegment": "800/0/1675979383171?e=1677240000&v=beta&t=wqvI_IKX_pRBVQvzriP47YxTaz9uUd_pKhsPWqIQ_4A", + "expiresAt": 1677240000000, + "height": 193 + }, + { + "width": 290, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675979383172?e=1677240000&v=beta&t=0ATq_7yoJNc1NXYqp0Y8tR9R4Zv2JFv5n_qRHxLbIw4", + "expiresAt": 1677240000000, + "height": 193 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675979383172?e=1677240000&v=beta&t=7c_7MQC2amfXLc2kxSsxdECcKo-GF72N3NtGej7URgs", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 290, + "fileIdentifyingUrlPathSegment": "480/0/1675979383172?e=1677240000&v=beta&t=6i8duXOsZANa7yg9-C6fcQGuxE8J0TNnsmvi8ngN9gc", + "expiresAt": 1677240000000, + "height": 193 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE3scQ72n1Xnw/articleshare-shrink_" + }, + "displayAspectRatio": 0.6655172413793103 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Une vue sur la ville de Nice (illustration)" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8990528164766718982)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8990528164766718982)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean-Marc Jancovici by rtl.fr", + "actionTarget": "https://www.rtl.fr/auteur/jean-marc-jancovici" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6870683035696685056,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il faut changer la maxime \"aller au charbon\" par \"n'y allons plus\" : tel \u00e9tait le th\u00e8me de ma chronique d'hier sur RTL. Comme elle dure 3 minutes, je ne vais pas spoiler ici son contenu, mais par contre faire une rectification : j'y ai mentionn\u00e9 \"un petit quart\" pour la production \u00e9lectrique au charbon en Europe, ce qui est d\u00e9sormais inexact. C'\u00e9tait vrai il y a 5 ans mais plus aujourd'hui, puisque ce pourcentage est descendu \u00e0 14% en 2020. Les deux premi\u00e8res sources du Vieux continent sont d\u00e9sormais nucl\u00e9aire et gaz, \u00e0 20% chacune (voir graphique en commentaire).\n\nJ'en profite pour faire deux remarques sur la chronique elle-m\u00eame.\n\nLe Monde affirme dans un article r\u00e9cent (https://lnkd.in/dQH2vniP ) que j'aurais \u00e9t\u00e9 \"impos\u00e9 par M6\" \u00e0 RTL pour cette chronique. Si c'est vrai (Le Monde ne dit pas de qui il tient cette information), alors je l'apprends ! Je n'ai en effet eu aucun contact avec qui que ce soit \u00e0 M6 - et a fortiori je n'ai fait aucune d\u00e9marche pour demander quoi que ce soit, ni \u00e0 M6 ni \u00e0 RTL - avant d'\u00eatre contact\u00e9 l'\u00e9t\u00e9 dernier par le directeur de la r\u00e9daction de RTL qui m'a propos\u00e9 de faire cette chronique.\n\nLa deuxi\u00e8me remarque concerne un enseignement que je crois pouvoir tirer de cet exercice : c'est qu'il touche des gens qui ne font pas du tout partie de mon \"public habituel\". Quand je m'exprime dans un media qui fait partie de ceux qui sont \u00e9cout\u00e9s - directement ou via internet - par les gens de mon \u00e9cosyst\u00e8me professionnel au sens large (je mets par exemple dedans le monde de l'enseignement sup\u00e9rieur scientifique), je re\u00e7ois facilement ensuite quelques mails ou sms \"d\u00e9clench\u00e9s\" par ce passage. \n\nApr\u00e8s une chronique sur RTL, c'est, de ce point de vue, le calme plat (pas un mot !). Loin de m'en plaindre, j'en suis ravi : cela signifie que ce media permet bien d'\u00e9voquer le sujet de l'\u00e9nergie et du climat \u00e0 des personnes que je n'avais jamais \"crois\u00e9es\" avant." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6870683035696685056,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6870683036334223360,urn:li:activity:6870683036334223360,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 20, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6870683036334223360,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6870683036334223360,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6870683036334223360", + "threadId": "activity:6870683036334223360", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6870683036334223360", + "urn": "urn:li:activity:6870683036334223360", + "numComments": 36, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6870683036334223360", + "reactionTypeCounts": [ + { + "count": 299, + "reactionType": "LIKE" + }, + { + "count": 12, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6870683036334223360", + "numLikes": 332, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6870683036334223360", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 332, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6870674349498626048,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6870674349498626048", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6870674349498626048)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6870674349498626048)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_77-la-fin-de-la-croissance-dennis-activity-6870674349498626048-Wiv0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6870674348722675712", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6870674349498626048", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6870674349498626048,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6870674349498626048,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6870674348722675712", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "NHzce5p6Eq+Arhyky93yNQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6870674349498626048,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8916790231675794431", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676498427616?e=1677240000&v=beta&t=GTBL2FxCLHWAwwchRwmi60fGmCnkSEkHUb38kj2WDO4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676498427616?e=1677240000&v=beta&t=A1fu1euIeK9r9iT4heqTrMeidm0aTTEp8rnwj7VHTZE", + "expiresAt": 1677240000000, + "height": 562 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676498427616?e=1677240000&v=beta&t=fUUB9c5eQOSmlmRGKYPR2Nr4D9MrshDMNdXV3QW47EY", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676498427616?e=1677240000&v=beta&t=mC8uClePKArLlaUkuFa0OjDpXGmpRklHCPH8ilXMXos", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQH-aflZvki2kg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8916790231675794431)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8916790231675794431)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "sismique.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: #77 - La fin de la croissance ? - DENNIS MEADOWS by sismique.fr", + "actionTarget": "https://www.sismique.fr/post/77-la-fin-de-la-croissance-dennis-meadows" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "#77 - La fin de la croissance ? - DENNIS MEADOWS" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6870674348722675712,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 789, + "length": 16, + "miniProfile": { + "firstName": "Julien", + "lastName": "Devaureix", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAABz5JEBzZKaUsSkX_TvLckoW6jqhbMq03A", + "occupation": "Podcast host | Published Author | Speaker | Consultant", + "objectUrn": "urn:li:member:7595153", + "entityUrn": "urn:li:fs_miniProfile:ACoAAABz5JEBzZKaUsSkX_TvLckoW6jqhbMq03A", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1673353365876?e=1681948800&v=beta&t=orYZviRYBXbrcwx1Mh4RFVIIcGLAzLc5TsgJxYyAqIY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1673353365876?e=1681948800&v=beta&t=sVmDiMvXtkso0R__IBLhWlHjCSmilA6K2Wn5oTOotR8", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4D16AQEgwXd-JCuImA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "devaureix", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1618562268845?e=1681948800&v=beta&t=V_GHbxxmKOnpZGUF4KTRPxL_5TEo4Vq3vI5E4KgH2EM", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1618562268845?e=1681948800&v=beta&t=jPgPjWZdFKEs3BmksNykUUcbetZcGxkqdeu1Y1WVR-I", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1618562268845?e=1681948800&v=beta&t=jD0ZI6mT2G4etpRCGVHsblqu2lLfxO8QfVohtM6QuFs", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1618562268845?e=1681948800&v=beta&t=jZiTQ0X-iuwbSAklE_VcnOUuW_R8GIW2qYr54YkdZYs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQGj1cF59TOQtw/profile-displayphoto-shrink_" + } + }, + "trackingId": "gQiRINX+Qj6+AnbAEDAI1Q==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Il y a quasiment 50 ans - en 1972 - \u00e9tait publi\u00e9 le livre \"The Limits to Growth\" (https://lnkd.in/ev4N-EA ), dont un des auteurs \u00e9tait Dennis Meadows (le premier auteur \u00e9tait Donella Meadows, par ailleurs sa femme, qui est morte en 2001).\n\nDeannis Meadows approche aujourd'hui les quatre cinqui\u00e8mes de si\u00e8cle. Apr\u00e8s une tr\u00e8s forte exposition aux media quand \"The Limits to Growth\" est sorti, il s'exprime d\u00e9sormais tr\u00e8s peu dans l'espace public. Peut-\u00eatre parce qu'il a une tendresse pour notre pays (il poss\u00e8de ou a poss\u00e9d\u00e9 une maison dans le sud de la France, qu'il a voulu un temps transformer en lieu de s\u00e9minaire pour \"groupes de r\u00e9flexion voulant participer \u00e0 la refondation du monde\" - dans l'esprit), il a accept\u00e9 de donner une longue interview au podcast Sismique (belle p\u00eache de Julien Devaureix !)\n\nMalgr\u00e9 ses presque 80 printemps, l'homme reste tr\u00e8s vif sur le plan de la pens\u00e9e. Dans ce podcast (en anglais) il revient sur ce travail qui lui a valu une notori\u00e9t\u00e9 mondiale, fait part de ses craintes et de ses espoirs pour l'avenir, et indique - lui aussi - que nous sommes ainsi faits que nous avons beaucoup de difficult\u00e9 \u00e0 agir pour le long terme si cela doit contrarier nos d\u00e9sirs de court terme.\n\nMeadows rappelle que le scientifique (qu'il a \u00e9t\u00e9) fournit un constat, pas une solution. Inutile, donc, de consid\u00e9rer que la profession qui est comp\u00e9tente pour dire ce qui ne va pas est aussi comp\u00e9tente pour dire ce qu'il faut faire pour que ca aille \"mieux\", alors que nous avons tous le r\u00e9flexe de penser que les physiciens et biologistes sont les m\u00e9decins de la plan\u00e8te : s'ils identifient la \"maladie\", ils ont n\u00e9cessairement le rem\u00e8de \u00e0 nous conseiller \u00e0 la suite !\n\nEn effet, la mani\u00e8re de poser le probl\u00e8me s'applique \u00e0 tou(te)s, alors que l'action d\u00e9pend des moyens, de la situation de d\u00e9part, des alli\u00e9s... C'est pour cela que les gens qui viennent le voir en lui demandant \"que puis-je faire\" s'entendent r\u00e9pondre \"y passer du temps\" :) (r\u00e9ponse que je fais aussi quand je re\u00e7ois un mail avec la m\u00eame question !).\n\nAutre enseignement majeur contenu dans cette interview : alors m\u00eame la d\u00e9croissance des flux physiques est la seule mani\u00e8re de rendre le monde \"soutenable\" (puisque les flux actuels nous m\u00e8nent \u00e0 l'effondrement - \"collapse\" en anglais), Meadows explique qu'il ne faut pas promouvoir la d\u00e9croissance en tant que telle, car nous ne savons pas bien d\u00e9sirer moins. \n\n\"Moins\" (de pression sur l'environnement) doit donc \u00eatre le codicille de \"plus\" (de bonheur \u00e0 relativement court terme) associ\u00e9 \u00e0 la m\u00eame action, et c'est ce \"plus\" qui doit \u00eatre promu, pas le moins. C'est notamment pour cela que toute action demande une r\u00e9flexion pr\u00e9alable qui est tr\u00e8s importante.\n\nMeadows reste un remarquable p\u00e9dagogue (The Limits to Growth \u00e9tait aussi un monument de p\u00e9dagogie). Le propos est pr\u00e9cis, et l'interview s'\u00e9coute avec plaisir. Un must !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6870674348722675712,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6870674349498626048,urn:li:activity:6870674349498626048,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6870674349498626048,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6870674349498626048,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6870674349498626048", + "threadId": "activity:6870674349498626048", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6870674349498626048", + "urn": "urn:li:activity:6870674349498626048", + "numComments": 61, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6870674349498626048", + "reactionTypeCounts": [ + { + "count": 1959, + "reactionType": "LIKE" + }, + { + "count": 158, + "reactionType": "INTEREST" + }, + { + "count": 117, + "reactionType": "MAYBE" + }, + { + "count": 50, + "reactionType": "EMPATHY" + }, + { + "count": 49, + "reactionType": "PRAISE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6870674349498626048", + "numLikes": 2364, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6870674349498626048", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2364, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6870385111758598144,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6870385111758598144", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6870385111758598144)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6870385111758598144)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-norv%C3%A8ge-manque-de-voitures-thermiques-activity-6870385111758598144-XZKM?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6870385111150419968", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6870385111758598144", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6870385111758598144,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6870385111758598144,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6870385111150419968", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "tS04Dy75NzGq6A4rxKnFqw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6870385111758598144,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7933753304392393367", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675792609431?e=1677240000&v=beta&t=K93FDQQN6rGEMXmwUw2wYwDuFN-dSMMz6kzxRpuW8ns", + "expiresAt": 1677240000000, + "height": 333 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675792609431?e=1677240000&v=beta&t=dgWVbRhfOy5w3imXzDerzbVhp60lDl_uS_toKyhhr6A", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675792609431?e=1677240000&v=beta&t=njn8hBzzpE9J4AtDXZN_-axCaoTsjTQp2xTgHlCc8ks", + "expiresAt": 1677240000000, + "height": 66 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675792609432?e=1677240000&v=beta&t=RH6BfceC2h4Ua8RsyYGhCIgB4l76flU4Y327fs-5MPg", + "expiresAt": 1677240000000, + "height": 200 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQG-jXCl_9RYKg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7933753304392393367)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7933753304392393367)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "korii.slate.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La Norv\u00e8ge manque de voitures thermiques \u00e0 taxer by korii.slate.fr", + "actionTarget": "https://korii.slate.fr/biz/automobile-norvege-manque-voitures-thermiques-taxer-electriques-impots-finances-publiques" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La Norv\u00e8ge manque de voitures thermiques \u00e0 taxer" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6870385111150419968,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est un point que nous avions d\u00e9j\u00e0 identifi\u00e9 dans Le Plein s'il Vous Plait (https://lnkd.in/gkcMgu5 ), qui \u00e9tait pourtant un plaidoyer en faveur de la mise en place d'une taxe carbone : le but de cette fiscalit\u00e9 est paradoxalement... de faire dispara\u00eetre son assiette. \n\nSi une taxe carbone s'applique aux carburants, c'est bien pour dissuader nos contemporains d'en consommer trop, et m\u00eame faire en sorte qu'ils en consomment de moins en moins, jusqu'\u00e0 plus du tout. A ce moment les recettes fiscales li\u00e9es \u00e0 la taxe carbone... deviennent nulles.\n\nC'est tr\u00e8s exactement ce qui est en train d'arriver - \u00e0 petite \u00e9chelle pour le moment - aux Norv\u00e9giens, donc le parc thermique ne se renouvelle quasiment plus. Dans ce cas pr\u00e9cis, il y a \u00e0 la fois des recettes fiscales qui baissent (la consommation de carburant baisse) et des d\u00e9penses fiscales qui augmentent (les subventions aux v\u00e9hicules \u00e9lectriques).\n\nOn ne va pas pleurer sur le sort d'un \u00e9tat qui s'est consid\u00e9rablement enrichi en vendant son p\u00e9trole \u00e0 l'exportation (un mod\u00e8le \u00e9conomique que l'on peut difficilement qualifier de vertueux sur le plan du climat !), par contre ce qui s'y passe nous invite \u00e0 bien r\u00e9fl\u00e9chir \u00e0 la fa\u00e7on dont nous voyons la fin de l'histoire (fiscale) si nous voyons dans la taxe carbone le principal levier d'action contre le changement climatique (ce qui n'est pas mon cas sinon on ne ferait pas le plan de transformation de l'\u00e9conomie fran\u00e7aise au Shift Project - https://lnkd.in/dNARPrU ).\n\nCela signifie qu'une taxe carbone ne doit pas \u00eatre vue comme une recette fiscale p\u00e9renne : elle n'est l\u00e0 que le temps de contraindre la consommation des combustibles fossiles \u00e0 la baisse, mais ensuite elle ne contribuera plus \u00e0 l'\u00e9quilibre budg\u00e9taire du pays. C'est une des raisons pour lesquelles il est pertinent de la relier, dans le plan d'ensemble, \u00e0 des d\u00e9penses qui seront elles aussi transitoires.\n\nSinon, il se passe ce qui se passe classiquement en pareil cas : devenant un imp\u00f4t de rendement, elle devient indispensable \u00e0 l'\u00e9quilibre (ou ce qu'il en reste) budg\u00e9taire, et l'Etat lui-m\u00eame n'a aucun int\u00e9r\u00eat \u00e0 la faire baisser, donc aucun int\u00e9r\u00eat \u00e0 limiter la consommation de combustibles fossiles.... \n\nLe m\u00e9canisme fiscal qui \u00e9tait cens\u00e9 faire baisser une nuisance se transforme alors en garant de la p\u00e9rennit\u00e9 de la nuisance en question ! Cela ne signifie pas que la taxation du carbone soit sans int\u00e9r\u00eat. Mais il faut se garder d'en faire l'axe unique, voire principal, d'une politique climatique (notamment parce qu'elle ne dit pas quoi faire en remplacement aux consommateurs finaux, alors que l'exp\u00e9rience montre que ces derniers doivent avoir acc\u00e8s \u00e0 des alternatives qui se pr\u00e9parent). Cela ne peut pas \u00eatre autre chose qu'une mesure parmi d'autres, avec son int\u00e9r\u00eat et ses limites." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6870385111150419968,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6870385111758598144,urn:li:activity:6870385111758598144,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 72, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6870385111758598144,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6870385111758598144,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6870385111758598144", + "threadId": "activity:6870385111758598144", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6870385111758598144", + "urn": "urn:li:activity:6870385111758598144", + "numComments": 132, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6870385111758598144", + "reactionTypeCounts": [ + { + "count": 1355, + "reactionType": "LIKE" + }, + { + "count": 248, + "reactionType": "INTEREST" + }, + { + "count": 236, + "reactionType": "MAYBE" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6870385111758598144", + "numLikes": 1865, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6870385111758598144", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1865, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6870317183247884288,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6870317183247884288", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6870317183247884288)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6870317183247884288)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_epargne-3-outils-ludiques-pour-mesurer-activity-6870317183247884288-WeVa?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6870317182811684864", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6870317183247884288", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6870317183247884288,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6870317183247884288,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6870317182811684864", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "0JWt8KDBNvqeqzpSIsEv3w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6870317183247884288,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6933092502632556139", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675459835326?e=1677240000&v=beta&t=DDgxx2QotkgQLxUSg1qIlq6cQHouFWaYr8yOG0lK_M0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675459835326?e=1677240000&v=beta&t=r4yWpBllgP4r7XXYWBL6KpSrSmMf9QROT64nJF_KYfE", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675459835326?e=1677240000&v=beta&t=as79uwAn0k28lNf0_fvBbAu1SXFDS7jLbAS1Ji7Omqw", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675459835326?e=1677240000&v=beta&t=zxjgukBvHxzCS-4QRwbhEonA1F24Zd8pPKFeGzfVcDI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHNKc7OTbLcJA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6933092502632556139)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6933092502632556139)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Epargne : 3 outils ludiques pour mesurer l'empreinte carbone de vos placements by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/patrimoine/placement/epargne-3-outils-ludiques-pour-mesurer-lempreinte-carbone-de-vos-placements-1367250" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Epargne\u00a0: 3 outils ludiques pour mesurer l'empreinte carbone de vos placements" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6870317182811684864,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 868, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "zhDvIDwTR6azLv5FBZKI2g==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Si vous avez de l'\u00e9pargne plac\u00e9e en obligations ou en actions, il y a toutes les chances que vous ne sachiez pas exactement quels sont les \u00e9tats ou les entreprises que cela finance. Par exemple, l'argent plac\u00e9 via un contrat d'assurance vie (qui regroupe pas loin de 70% de l'\u00e9pargne financi\u00e8re des fran\u00e7ais) est ensuite utilis\u00e9 pour acheter des actions (donc une partie du capital) ou des obligations (donc de la dette) de plusieurs milliers d'\u00e9metteurs.\n\nIl est donc impossible \u00e0 l'\u00e9pargnant de savoir si son \u00e9pargne finance des entreprises ou \u00e9tats qui sont sur la bonne trajectoire ou pas pour \u00eatre en accord avec une limitation du r\u00e9chauffement climatique \u00e0 2\u00b0C (ou \u00e0 3, ou \u00e0 2,8...).\n\n3 outils vous proposent de faire le calcul pour vous. Les donn\u00e9es utilis\u00e9es et m\u00e9thodes employ\u00e9es ne sont pas les m\u00eames, mais je peux au moins parler du 2\u00e8, Rift, puisque c'est Carbon4 Finance qui fournit les donn\u00e9es qui permettent de faire les calculs d'empreinte carbone de l'\u00e9pargne.\n\nLe monde de la finance est suiviste. Au sens physique, il \"suit\" l'\u00e9conomie sous-jacente : il n'est pas possible au monde financier \"d'inventer\" de l'\u00e9pargne bas carbone si l'\u00e9conomie sous-jacente ne l'est pas.\n\nEt il est aussi suiviste au sens commercial : pour qu'il commence \u00e0 comprendre ce qu'il faut pour \u00e9ventuellement faire diff\u00e9remment, il faut que les \u00e9pargnants, particuliers ou entreprises - d'o\u00f9 vient l'argent des gestionnaires d'actifs - tiennent compte \"pour de vrai\" de l'aspect climat dans les placements op\u00e9r\u00e9s, en allant \u00e9ventuellement jusqu'\u00e0 pr\u00e9f\u00e9rer quelque chose qui rapporte moins mais qui est moins carbon\u00e9 vs. quelque chose qui rapporte plus mais qui est plus carbon\u00e9.\n\nCes applications qui permettent de \"r\u00e9v\u00e9ler\" l'aspect climat des placements sont donc utiles pour alimenter la deuxi\u00e8me motivation. La premi\u00e8re rel\u00e8ve de la puissance publique et des consommateurs des entreprises sous-jacentes (m\u00eame pendant le Black Friday...)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6870317182811684864,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6870317183247884288,urn:li:activity:6870317183247884288,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 39, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6870317183247884288,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6870317183247884288,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6870317183247884288", + "threadId": "activity:6870317183247884288", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6870317183247884288", + "urn": "urn:li:activity:6870317183247884288", + "numComments": 98, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6870317183247884288", + "reactionTypeCounts": [ + { + "count": 481, + "reactionType": "LIKE" + }, + { + "count": 54, + "reactionType": "INTEREST" + }, + { + "count": 45, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6870317183247884288", + "numLikes": 598, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6870317183247884288", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 598, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6869902818325602304,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6869902818325602304", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6869902818325602304)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6869902818325602304)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-marc-jancovici-ing%C3%A9nieur-la-d%C3%A9croissance-activity-6869902818325602304-ln1D?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6869902817855852544", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6869902818325602304", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6869902818325602304,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6869902818325602304,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6869902817855852544", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "+BhygsNspCQBB6ykTbJ1Uw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6869902818325602304,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6963859169358621565", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 707, + "fileIdentifyingUrlPathSegment": "800/0/1675698108109?e=1677240000&v=beta&t=JSkegK9BPiZ7rnOY16iaP4U5KTaWUYjzJrX3aWUUCdw", + "expiresAt": 1677240000000, + "height": 470 + }, + { + "width": 707, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675698108109?e=1677240000&v=beta&t=-Ur8UWgKL46FKheOXh9c0lsj4USDcKcVDQd_ThB4-oQ", + "expiresAt": 1677240000000, + "height": 470 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675698108110?e=1677240000&v=beta&t=1diPmnbTvpLnGNUaUjZkeR1FYwkAWWkTpzAPg9uaM-g", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675698108110?e=1677240000&v=beta&t=wFReEkAPXcHkpG4tMmcgqtYrZ62qlLcDD-KOSk9nkOI", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGrv5MvNtjzWg/articleshare-shrink_" + }, + "displayAspectRatio": 0.6647807637906648 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6963859169358621565)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6963859169358621565)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "novethic.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean-Marc Jancovici, ing\u00e9nieur : \"La d\u00e9croissance a commenc\u00e9, de mani\u00e8re larv\u00e9e\" by novethic.fr", + "actionTarget": "https://www.novethic.fr/actualite/economie/isr-rse/jean-marc-jancovici-ingenieur-la-decroissance-a-commence-de-maniere-larvee-150341.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici, ing\u00e9nieur : \"La d\u00e9croissance a commenc\u00e9, de mani\u00e8re larv\u00e9e\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6869902817855852544,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans le monde politique, l'arbitrage entre croissance et d\u00e9croissance (\u00e9conomique) est souvent pr\u00e9sent\u00e9 comme relevant uniquement de notre choix. \"Il est impensable de ne pas avoir de la croissance\" disent les un(e)s, car cela est n\u00e9cessaire pour maintenir le progr\u00e8s social et r\u00e9duire les in\u00e9galit\u00e9s.\n\nIl est n\u00e9cessaire d'avoir de la d\u00e9croissance, disent les autres, car il est imp\u00e9ratif de revenir dans les limites plan\u00e9taires, et cela ne peut se faire en augmentant la taille du PIB.\n\nCroissance ou d\u00e9croissance, alors ? Dans cette courte interview publi\u00e9e sur Novethic, je tente d'expliquer que si l'on regarde les flux physiques, et leur \"marqueur agr\u00e9g\u00e9\" qu'est l'\u00e9nergie, le d\u00e9bat semble h\u00e9las tranch\u00e9 : la d\u00e9croissance est d\u00e9j\u00e0 bien l\u00e0, de mani\u00e8re larv\u00e9e. Et, les m\u00eames causes produisant les m\u00eames effets, il y a toutes les chances pour qu'elle s'amplifie dans les d\u00e9cennies \u00e0 venir.\n\nRien de tout cela n'est tr\u00e8s neuf sous le soleil. Il y a d\u00e9sormais quasiment 50 ans, une \u00e9quipe de dynamiciens des syst\u00e8mes du MIT avait montr\u00e9 en quoi des flux productifs ne pouvaient pas augmenter ind\u00e9finiment sur une plan\u00e8te finie : https://lnkd.in/ev4N-EA, et, apr\u00e8s une phase d'expansion, notre humanit\u00e9 industrielle \u00e9tait inexorablement vou\u00e9e \u00e0 se contracter.\n\nRien n'est tr\u00e8s neuf non plus en ce qui concerne notre difficult\u00e9 \u00e0 nous faire \u00e0 cette id\u00e9e, parce que nous ne sommes pas c\u00e2bl\u00e9s pour appr\u00e9hender une limite globale, mais juste une limite locale, toujours consid\u00e9r\u00e9e comme d\u00e9passable : https://lnkd.in/dc4MX67T\n\nUne des choses qui n'aide pas, c'est que m\u00eame dans le domaine environnemental les visions de l'avenir consid\u00e8rent la croissance comme une \u00e9vidence, les seules marges de manoeuvre relevant alors de mesures strictement techniques. C'est notamment le cas des sc\u00e9narios d'\u00e9mission de gaz \u00e0 effet de serre utilis\u00e9s dans les mod\u00e9lisations du GIEC, qui sont faits par des \u00e9conomistes, et qui supposent tous un PIB croissant d'ici \u00e0 2100 (https://lnkd.in/dM4AQhVd ).\n\nCe \"renversement des priorit\u00e9s\" (la physique passe avant nos souhaits et non apr\u00e8s) va nous couter cher. Il est d\u00e9sormais de la responsabilit\u00e9 de ceux qui aspirent \u00e0 g\u00e9rer les affaires communes d'int\u00e9grer cet \u00e9l\u00e9ment dans leur raisonnement. Cela passe par le fait d'avoir une boite \u00e0 outils adapt\u00e9e, et cela est du ressort de tous ceux qui th\u00e9orisent l'\u00e9conomie. Il est urgent de mettre un peu de \"jus de cerveau\" dans la r\u00e9ponse \u00e0 la question suivante : comment g\u00e9rer au mieux une soci\u00e9t\u00e9 \u00e0 moyens physiques d\u00e9croissants ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6869902817855852544,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6869902818325602304,urn:li:activity:6869902818325602304,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 107, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6869902818325602304,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6869902818325602304,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6869902818325602304", + "threadId": "activity:6869902818325602304", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6869902818325602304", + "urn": "urn:li:activity:6869902818325602304", + "numComments": 285, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6869902818325602304", + "reactionTypeCounts": [ + { + "count": 2194, + "reactionType": "LIKE" + }, + { + "count": 241, + "reactionType": "INTEREST" + }, + { + "count": 217, + "reactionType": "MAYBE" + }, + { + "count": 67, + "reactionType": "PRAISE" + }, + { + "count": 34, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6869902818325602304", + "numLikes": 2769, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6869902818325602304", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2769, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6869557998675615744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6869557998675615744", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6869557998675615744)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6869557998675615744)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_temoignages-face-%C3%A0-la-crise-climatique-activity-6869557998675615744-VJ_7?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6869557998109368320", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6869557998675615744", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6869557998675615744,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6869557998675615744,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6869557998109368320", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "OYzU8vGGDy+GDjsbCJSudg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6869557998675615744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8182658657224171031", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676576298466?e=1677240000&v=beta&t=2bbGRkSp8RaaGVKPd-rijmnBaSKHKsLZ-YlZAxglxFk", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676576298466?e=1677240000&v=beta&t=4gJyxFAw1_322HkC74puD6VurvdxTzyMBAKO4Dl6Y_g", + "expiresAt": 1677240000000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676576298466?e=1677240000&v=beta&t=gq7JhMhyCtP-WBbFR51MMoABlam3VVHJN5ZTt7lJi_4", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676576298466?e=1677240000&v=beta&t=B4vIj-U10G7yhQqVtcgW6yMc2lBNI3xIIC4LVtaqf9A", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEZxMkYmmYtRw/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Face au r\u00e9chauffement climatique, de plus en plus d'\u00e9tudiants quittent les fili\u00e8res li\u00e9es \u00e0 des secteurs gros \u00e9metteurs de gaz \u00e0 effet de serre pour se r\u00e9orienter vers des m\u00e9tiers plus en phase avec leurs pr\u00e9occupations \u00e9cologiques." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8182658657224171031)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8182658657224171031)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "francetvinfo.fr \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: TEMOIGNAGES. Face \u00e0 la crise climatique, ces \u00e9tudiants changent de carri\u00e8re : \"Produire des avions \u00e0 la cha\u00eene pour le tourisme, cela ne m'attire plus du tout\" by francetvinfo.fr", + "actionTarget": "https://www.francetvinfo.fr/meteo/climat/temoignages-face-a-la-crise-climatique-ces-etudiants-changent-de-carriere-produire-des-avions-a-la-chaine-pour-le-tourisme-cela-ne-m-attire-plus-du-tout_4832783.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "TEMOIGNAGES. Face \u00e0 la crise climatique, ces \u00e9tudiants changent de carri\u00e8re : \"Produire des avions \u00e0 la cha\u00eene pour le tourisme, cela ne m'attire plus du tout\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6869557998109368320,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Du sens plut\u00f4t que des sous : cet arbitrage n'est pas nouveau chez les jeunes dipl\u00f4m\u00e9s du sup\u00e9rieur, sinon pas un seul d'entre eux ne serait all\u00e9 dans la recherche ! \n\nCe qui est nouveau, par contre, c'est que dans \"le sens\" on trouve d\u00e9sormais, de mani\u00e8re croissante, la question du climat, ou plus exactement l'envie de contribuer \u00e0 ce que la d\u00e9rive climatique ne nous fasse pas trop mal.\n\nC'est \u00e9videmment une tr\u00e8s bonne nouvelle qu'une partie de la jeune g\u00e9n\u00e9ration ait cette \"envie d'en d\u00e9coudre\", et c'est l'essentiel du propos de cet article (assez bien fait). Mais il mentionne aussi un \u00e9l\u00e9ment qui est lui bien moins \"positif\" : le fait que l'enseignement des \u00e9tablissements du sup\u00e9rieur continue \u00e0 pr\u00e9parer ces jeunes adultes au monde d'hier au lieu de les pr\u00e9parer au monde de demain.\n\nCette situation est contraire non seulement aux aspirations d'une fraction croissante des \u00e9l\u00e8ves, mais aussi aux int\u00e9r\u00eats de notre pays. Tout le monde va devoir se d\u00e9carboner un jour ou l'autre, climat ou pas climat, parce que les combustibles fossiles sont \u00e9puisables. \n\nEn Europe, la baisse subie pour causes g\u00e9ologiques de l'approvisionnement en p\u00e9trole, gaz et charbon a d\u00e9j\u00e0 commenc\u00e9. Dans ce contexte, d\u00e9layer plus outre la mise en ordre de marche de nos ressources - l'intelligence et les comp\u00e9tences - est aussi une erreur manag\u00e9riale, et un affaiblissement de notre position sur la sc\u00e8ne internationale. \n\nIl serait temps que les directeurs d'\u00e9tablissements (\u00e0 commencer par celui de Polytechnique !) comprennent que plus ils tardent \u00e0 mettre dans l'enseignement de quoi rendre mes vid\u00e9os inutiles, moins ils sont au rendez vous de l'histoire." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6869557998109368320,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6869557998675615744,urn:li:activity:6869557998675615744,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 57, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6869557998675615744,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6869557998675615744,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6869557998675615744", + "threadId": "activity:6869557998675615744", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6869557998675615744", + "urn": "urn:li:activity:6869557998675615744", + "numComments": 87, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6869557998675615744", + "reactionTypeCounts": [ + { + "count": 1563, + "reactionType": "LIKE" + }, + { + "count": 141, + "reactionType": "PRAISE" + }, + { + "count": 70, + "reactionType": "MAYBE" + }, + { + "count": 38, + "reactionType": "APPRECIATION" + }, + { + "count": 28, + "reactionType": "EMPATHY" + }, + { + "count": 28, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6869557998675615744", + "numLikes": 1868, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6869557998675615744", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1868, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6869350697268195328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6869350697268195328", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6869350697268195328)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6869350697268195328)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_a-une-semaine-de-d%C3%A9cembre-apr%C3%A8s-plus-de-activity-6869350697268195328-QUp3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6869350696752300032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6869350697268195328", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6869350697268195328,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6869350697268195328,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6869350696752300032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "2vAN0nGcs+I2MXVy0E1ZOw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6869350697268195328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFXXZxjgjMreQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFXXZxjgjMreQ", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1637780829231?e=1679529600&v=beta&t=RwL3Mq-NueZ7jjCKmZbCtvj2cxbWkAdrZ7HBWT-cync", + "expiresAt": 1679529600000, + "height": 1189 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1637780831172?e=1679529600&v=beta&t=k1ejLwDA5ARyU37ptx8-GYQzwwuHLWwu9idhnbeetB8", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1637780831172?e=1679529600&v=beta&t=VW2MJDsWFKIW6fW6Wj_9GLJOCjJ6Sq0x37KdC9GfMdc", + "expiresAt": 1679529600000, + "height": 743 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1637780831172?e=1679529600&v=beta&t=_bQXnppiOzxIdB1qCIv-2QeXkF8QDGIXRDXRXghszhs", + "expiresAt": 1679529600000, + "height": 279 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1637780831172?e=1679529600&v=beta&t=jztnVol5wkKojUA5mQIYMejm-WeL4atS0s_TUCEXLQA", + "expiresAt": 1679529600000, + "height": 93 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1637780831172?e=1679529600&v=beta&t=DON-RL66pE6j6Ox1G4jACwHMEHFs6EbmCfPqe_pU9hY", + "expiresAt": 1679529600000, + "height": 465 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFXXZxjgjMreQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.58056640625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "map" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6869350696752300032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A une semaine de d\u00e9cembre, apr\u00e8s plus de 2 mois d'automne - avec un temps normalement plus pluvieux que l'\u00e9t\u00e9 - on pourrait se dire que l'\u00e9tat de s\u00e9cheresse n'est - heureusement - plus qu'un lointain souvenir, au moins en attendant la suivante.\n\nSur tout l'ouest am\u00e9ricain, il n'est est rien : https://lnkd.in/dQVN83A L'\u00e9tat de s\u00e9cheresse reste \"exceptionnel\" sur une large partie du pays, m\u00eame si ca va un peu mieux. \n\nLa situation europ\u00e9enne n'est pas aussi critique mais il reste des zones \u00e0 l'est et au sud qui auraient bien besoin d'un bon bain... dont une large partie de la Corse, et de l'Italie : https://lnkd.in/dVSFZAgX\n\nLa d\u00e9rive climatique est un processus au long cours. Si les sols s\u00e8chent un peu plus vite (voire beaucoup plus vite) l'\u00e9t\u00e9, avec des pr\u00e9cipitations d'hiver simplement constantes (sans m\u00eame parler de baisse), on se retrouve \u00e0 l'arriv\u00e9e avec une humidit\u00e9 de la terre qui baisse structurellement.\n\nLes pluies intenses en 24h ne sont malheureusement pas \u00e9quivalentes \u00e0 des pluies moins intenses et plus fr\u00e9quentes : les trombes d'eau ne s'infiltrent que tr\u00e8s partiellement, et alimentent directement les rivi\u00e8res et s'\u00e9vacuent vers la mer, plut\u00f4t que les sols et les nappes.\n\nRappelons que, malheureusement, l'ass\u00e8chement des sols sera une des cons\u00e9quences importantes du changement climatique, et s'effectuera notamment dans des zones tr\u00e8s cultiv\u00e9es, ou bien recelant des \u00e9cosyst\u00e8mes riches (Amazonie) ; voir graphique en commentaire. L'adaptation aux moyennes latitudes, on sait d\u00e9j\u00e0 que ce sera g\u00e9rer des sols plus secs en moyenne." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6869350696752300032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6869350697268195328,urn:li:activity:6869350697268195328,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 13, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6869350697268195328,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6869350697268195328,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6869350697268195328", + "threadId": "activity:6869350697268195328", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6869350697268195328", + "urn": "urn:li:activity:6869350697268195328", + "numComments": 26, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6869350697268195328", + "reactionTypeCounts": [ + { + "count": 357, + "reactionType": "LIKE" + }, + { + "count": 92, + "reactionType": "INTEREST" + }, + { + "count": 48, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6869350697268195328", + "numLikes": 505, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6869350697268195328", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 505, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6869172635750694912,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6869172635750694912", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6869172635750694912)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6869172635750694912)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_toutes-et-tous-accros-%C3%A0-l%C3%A9nergie-zoom-activity-6869172635750694912-IIh5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6869172635180244992", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6869172635750694912", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6869172635750694912,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6869172635750694912,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6869172635180244992", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "ZUp598hu7xvFTUo9VLzpUg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6869172635750694912,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:9079542924631204191", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675359801719?e=1677240000&v=beta&t=DQ4YAI20vdSIgQ-6LL3bGt53Y5V-8POWDoEK1YVCzrY", + "expiresAt": 1677240000000, + "height": 1000 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675359801719?e=1677240000&v=beta&t=vQq3xwxCUE97aEvBKCP_yE1vQKn0WsniF7JdyPEvhcQ", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675359801719?e=1677240000&v=beta&t=YoacbkjxYTUdeVBaby078QYjenOvku5AGI_8O4Fm-Go", + "expiresAt": 1677240000000, + "height": 200 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675359801719?e=1677240000&v=beta&t=G6V1c-gdWZJP4JJTtxKv7k751zh60JS6VmafsoznvlI", + "expiresAt": 1677240000000, + "height": 600 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHeXyLMEkrOrw/articleshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9079542924631204191)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9079542924631204191)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "facebook.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Toutes et tous accros \u00e0 l\u2019\u00e9nergie ? / ZOOM ZEN - Chroniques Philosophiques on facebook.com", + "actionTarget": "https://www.facebook.com/watch/?v=598937637917336" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\"L'individualisme est renforc\u00e9 par la technologie moderne.\" Notre consommation d\u2019\u00e9nergie est irrationnelle. D\u00e8s qu\u2019elle vient \u00e0 manquer, c\u2019est tout..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Toutes et tous accros \u00e0 l\u2019\u00e9nergie ? / ZOOM ZEN - Chroniques Philosophiques" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6869172635180244992,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'\u00e9mission Zoom Zen de la RTS (Radio T\u00e9l\u00e9vision Suisse) s'int\u00e9resse \u00e0 l'\u00e9nergie et \u00e0 une certaine BD qui en parle.\n\nJe ne sais pas o\u00f9 en est l'approvisionnement des librairies suisses,\nmais en France on tanne un peu l'\u00e9diteur pour qu'il s'occupe de la chose !\n\nNB : le contenu carbone d'un livre - car la question m'a \u00e9t\u00e9 pos\u00e9e - est significativement inf\u00e9rieur \u00e0 celui de tout objet \u00e9lectronique, d'un v\u00eatement, d'un bijou, et m\u00eame d'un repas au restaurant avec de la viande de boeuf. Je n'ai pas le calcul pour une BD, mais pour un livre broch\u00e9 ordinaire c'est environ 1 kg de CO2. On peut donc, \u00e0 la condition d'\u00eatre un asc\u00e8te parfait, qui ni ne mange, ni ne se d\u00e9place, ni ne se chauffe, ni n'ach\u00e8te quoi que ce soit d'autre, en lire 2000 dans l'ann\u00e9e et \u00eatre toujours compatible avec la cible \u00e0 2040 :)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6869172635180244992,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6869172635750694912,urn:li:activity:6869172635750694912,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 27, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6869172635750694912,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6869172635750694912,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6869172635750694912", + "threadId": "activity:6869172635750694912", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6869172635750694912", + "urn": "urn:li:activity:6869172635750694912", + "numComments": 45, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6869172635750694912", + "reactionTypeCounts": [ + { + "count": 359, + "reactionType": "LIKE" + }, + { + "count": 25, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6869172635750694912", + "numLikes": 419, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6869172635750694912", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 419, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6868978880414273536,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6868978880414273536", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6868978880414273536)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6868978880414273536)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_invitation-d%C3%A9carbonons-la-sant%C3%A9-pour-activity-6868978880414273536-zjbP?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6868978879944527872", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6868978880414273536", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6868978880414273536,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6868978880414273536,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6868978879944527872", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "MTX9XPY69ePeZb0jBRKW/Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6868978880414273536,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9010071829000451614", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 600, + "fileIdentifyingUrlPathSegment": "800/0/1675351302644?e=1677240000&v=beta&t=DXZ4jRxvOJTswq0gunRPuM0ZD53reLIYJxLwKZ465ho", + "expiresAt": 1677240000000, + "height": 300 + }, + { + "width": 600, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675351302644?e=1677240000&v=beta&t=_Ia_ADkEwWft0-SIC6KQfyo7U9931hkgFmub-0ki4D4", + "expiresAt": 1677240000000, + "height": 300 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675351302644?e=1677240000&v=beta&t=LkMEzfV8uNaiEpZVn-0R_n3tbJAjNX4TYCKVVc_X_QI", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675351302644?e=1677240000&v=beta&t=4GfFUMBUb0ppPjhJEfQenlLsjKdJUjCxWESk1qAbFBQ", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFFKZLFlreYOw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9010071829000451614)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9010071829000451614)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [Invitation] \u00ab D\u00e9carbonons la Sant\u00e9 pour soigner durablement ! \u00bb : pr\u00e9sentation du rapport final (Jeudi 25 novembre \u00e0 18h) - The Shift Project by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-decarboner-sante-webinaire-25-nov/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[Invitation] \u00ab D\u00e9carbonons la Sant\u00e9 pour soigner durablement ! \u00bb : pr\u00e9sentation du rapport final (Jeudi 25 novembre \u00e0 18h) - The Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6868978879944527872,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Du changement climatique dans l'appareil de soins ? Meuh non, le syst\u00e8me de sant\u00e9 est fait pour nous garder... en bonne sant\u00e9, et ne saurait donc, directement ou indirectement, porter atteinte \u00e0 cette derni\u00e8re en allant sournoisement aggraver la d\u00e9rive climatique pendant que nous avons le dos tourn\u00e9.\n\nC'est pourtant un peu ce qui se passe, au corps d\u00e9fendant (ou ignorant plut\u00f4t) des entit\u00e9s concern\u00e9es, quand on sait qu'environ 8% de l'empreinte carbone du pays vient de l'ensemble des \u00e9tablissements - et de leurs fournisseurs - qui s'occupent de nos plaies et bosses.\n\nMauvaise nouvelle donc : comme le reste de nos activit\u00e9s, celles qui visent \u00e0 nous pr\u00e9munir des petites b\u00eates et des grosses tuiles sont aujourd'hui massivement d\u00e9pendantes des combustibles fossiles.\n\nCar fabriquer (puis transporter) un scanner, un antibiotique, une seringue ou un bloc op\u00e9ratoire, transporter un malade ou sa famille, chauffer un \u00e9tablissement de soins ou nettoyer des draps, sans parler de nourrir les personnes hospitalis\u00e9es et celles qui en prennent soin, cela demande aujourd'hui force p\u00e9trole, gaz et charbon, et engendre des \u00e9missions de gaz \u00e0 effet de serre.\n\nComment se pr\u00e9sente la situation dans le d\u00e9tail ? Et comment \"aligner\" le secteur sanitaire avec la baisse de 5% par an des \u00e9missions que nous devons respecter pour ne pas franchir 2\u00b0C de r\u00e9chauffement climatique ?\n\nThe Shift Project vous convie \u00e0 un webinaire de pr\u00e9sentation, Jeudi 25 novembre \u00e0 18h, de nos propositions sur ce secteur majeur, \u00e0 la fois sous l'angle \"humain\" et \u00e9conomique.\n\nPour les journalistes, nous proposons une conf\u00e9rence de presse le 25 novembre \u00e0 9h30 (modalit\u00e9s d'inscription sur la page en lien associ\u00e9 \u00e0 l'image).\n\nSi vous faites partie du secteur et souhaitez une pr\u00e9sentation \"personnalis\u00e9e\" (essentiellement pour pouvoir discuter en d\u00e9tail les propositions), vous pouvez contacter l\u2019\u00e9quipe du projet \u00e0 sante@theshiftproject.org\n\nD\u00e9sormais vous saurez que m\u00eame l'expression \"va te faire soigner\" est une invitation \u00e0 \u00e9mettre !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6868978879944527872,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6868978880414273536,urn:li:activity:6868978880414273536,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 20, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6868978880414273536,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6868978880414273536,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6868978880414273536", + "threadId": "activity:6868978880414273536", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6868978880414273536", + "urn": "urn:li:activity:6868978880414273536", + "numComments": 30, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6868978880414273536", + "reactionTypeCounts": [ + { + "count": 167, + "reactionType": "LIKE" + }, + { + "count": 19, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6868978880414273536", + "numLikes": 201, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6868978880414273536", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 201, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6868816258180116480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6868816258180116480", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6868816258180116480)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6868816258180116480)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-anti-black-friday-haussent-le-ton-activity-6868816258180116480-0Bf6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6868816257550958593", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6868816258180116480", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6868816258180116480,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6868816258180116480,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6868816257550958593", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "mSVdo9hKnE8MUzRCvez5cg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6868816258180116480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8468657517621802894", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675623189599?e=1677240000&v=beta&t=uTcvn1nVjrCxmb3x8KOKK5NXDSJNylDVP07BJDXVjU0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675623189599?e=1677240000&v=beta&t=w2Dkvna5U18T0WNmRz55O1OOCRI6fsRw7NxDVDjg97g", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675623189599?e=1677240000&v=beta&t=5Una1U0GcEkL-7_kMKkvFeKUYT32MSDwVQP4mz5LfDs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675623189599?e=1677240000&v=beta&t=7hmF2y9CUIM4d6M2opJu4ZSnhoxscWlXPdO0b_d4bCk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHkKlzv9ofv0g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8468657517621802894)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8468657517621802894)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les anti-Black Friday haussent le ton by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/conso-distribution/les-anti-black-friday-haussent-le-ton-1271067" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les anti-Black Friday haussent le ton" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6868816257550958593,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans quelques jours aura lieu le Black Friday. Apr\u00e8s la \"marchandisation\" - tr\u00e8s ancienne - de Noel, des m\u00e8res, des p\u00e8res, des grands-m\u00e8res (\u00e0 quand la f\u00eate des beaux-fr\u00e8res et celle des oncles par alliance ?), des amoureux (la Saint Valentin) ; apr\u00e8s les soldes, voici donc le \"Vendredi noir\", o\u00f9 si vous ne vous pr\u00e9cipitez pas sur tout ce qui peut s'acheter c'est que vous n'avez rien compris \u00e0 la vie ou presque.\n\nLes Echos \u00e9voquent la cr\u00e9ation d'un collectif de marques qui consid\u00e8rent que le meilleur Black Friday est... pas de Black Friday. C'est une \u00e9vidence que, si nous voulons baisser de mani\u00e8re g\u00e9r\u00e9e la pression sur l'environnement (l'autre alternative \u00e9tant qu'elle baisse \"toute seule\" \u00e0 l'occasion de crises d\u00e9coulant du franchissement temporaire des limites plan\u00e9taires), il va falloir consommer moins. \n\nSi nous voulons vraiment \"make the planet great again\", il ne serait pas d\u00e9plac\u00e9 que ce jour l\u00e0 nous ayons un discours pr\u00e9sidentiel nous invitant \u00e0 la mod\u00e9ration, nous expliquant o\u00f9 nous en sommes par rapport aux limites plan\u00e9taires (car c'est le job d'un pr\u00e9sident de faire cela, et pas celui d'une ministre de l'environnement) et nous poussant \u00e0 nous demander ce qu'est un vrai besoin. \n\nL'essentiel du temps, nous nous rendrons compte que, \u00e0 notre petite \u00e9chelle, nous sommes tous des Elon Musk. Nous voulons tous \"un peu plus\" que ce que nous avions, un truc nouveau, et qui, l'essentiel du temps, ne correspond pas vraiment \u00e0 un besoin vital, mais juste \u00e0 un d\u00e9sir solvable. La derni\u00e8re t\u00e9l\u00e9 4K ou un petit tour dans l'espace ob\u00e9issent aux m\u00eames pulsions.\n\nEst-ce \u00e0 dire que ce serait la fin de l'\u00e9conomie ? Bien sur que non. L'inverse de l'exc\u00e8s consum\u00e9riste n'est pas \"rien du tout\". Il est heureux que quelques entit\u00e9s \u00e9conomiques acceptent \u00e0 tout le moins de tenir ce discours." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6868816257550958593,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6868816258180116480,urn:li:activity:6868816258180116480,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 233, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6868816258180116480,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6868816258180116480,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6868816258180116480", + "threadId": "activity:6868816258180116480", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6868816258180116480", + "urn": "urn:li:activity:6868816258180116480", + "numComments": 321, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6868816258180116480", + "reactionTypeCounts": [ + { + "count": 7155, + "reactionType": "LIKE" + }, + { + "count": 783, + "reactionType": "PRAISE" + }, + { + "count": 304, + "reactionType": "APPRECIATION" + }, + { + "count": 92, + "reactionType": "MAYBE" + }, + { + "count": 88, + "reactionType": "EMPATHY" + }, + { + "count": 52, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6868816258180116480", + "numLikes": 8474, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6868816258180116480", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 8474, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6868460367480160256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6868460367480160256", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6868460367480160256)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6868460367480160256)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jusqu%C3%A0-maintenant-nous-pensions-tous-que-activity-6868460367480160256-pAPW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6868460366918115328", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6868460367480160256", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6868460367480160256,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6868460367480160256,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6868460366918115328", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "28mcPVLGFpyRlDkzyLeuPw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6868460367480160256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEqaAg3FW-Q8g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEqaAg3FW-Q8g", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1637568558862?e=1679529600&v=beta&t=epKySOgsnrql531WZZSxLAfVV_ZiHgS3fkI1u487oNc", + "expiresAt": 1679529600000, + "height": 1273 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1637568560637?e=1679529600&v=beta&t=ABF8GLstXriVP2haJxNCjS1F5jPKWBLMUXvm8oQDAec", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1637568560637?e=1679529600&v=beta&t=JbAG56OIFWa5K2erFumr1_bJ702gurndvOl0lIYEfpg", + "expiresAt": 1679529600000, + "height": 795 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1637568560637?e=1679529600&v=beta&t=42t8nirW8JvfsQ7K9_uFO9Oa3TytasABoZ51fN82X50", + "expiresAt": 1679529600000, + "height": 298 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1637568560637?e=1679529600&v=beta&t=e-JDvLMXb_JtJF1hxfa7xrNpSshadOz5QxR_Am4XtgQ", + "expiresAt": 1679529600000, + "height": 99 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1637568560637?e=1679529600&v=beta&t=Vf3uMCaHRIQEmKFKVnHNcI5P8Jx_SSPeqxRHiMTzPWY", + "expiresAt": 1679529600000, + "height": 497 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEqaAg3FW-Q8g/feedshare-shrink_" + }, + "displayAspectRatio": 0.62158203125 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "a screenshot of a tree" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6868460366918115328,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 177, + "length": 15, + "miniCompany": { + "objectUrn": "urn:li:company:70381358", + "entityUrn": "urn:li:fs_miniCompany:70381358", + "name": "Fuel For Planet", + "showcase": true, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1607068353604?e=1684972800&v=beta&t=zEihn3xWYvC69g-s5i7lPQpkykrdy3b5wQ4lEvxrKsI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1607068353604?e=1684972800&v=beta&t=9b64QkShO5jRJAgULUMVCIu9dmSCZRvMdjIXi4fWgAY", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1607068353604?e=1684972800&v=beta&t=ts_xEtqGcxbErrMOCHGEUqJaog3q9-JlG75KddHzpwg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGh_3d8lboW5Q/company-logo_" + } + }, + "universalName": "fuel-for-planet", + "dashCompanyUrn": "urn:li:fsd_company:70381358", + "trackingId": "xgE1YvFmRW+J2DzoRXnUKQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Jusqu'\u00e0 maintenant, nous pensions tous que de rouler en voiture \u00e0 essence n'\u00e9tait pas bon pour l'environnement. Mal inform\u00e9s que nous \u00e9tions, nous nous trompions ! Heureusement Fuel For Planet est arriv\u00e9 pour r\u00e9tablir la v\u00e9rit\u00e9 : en fait plus nous roulons en voiture \u00e0 essence, plus nous sauvons la plan\u00e8te !\n\nCe distributeur de carburant \u00e9crit ainsi sur son site (https://fuelforplanet.com/ ) :\n\n\"Parce que la majorit\u00e9 des v\u00e9hicules en circulation fonctionne \u00e0 l'\u00e9nergie fossile, et pour encore longtemps, se d\u00e9placer contribue inexorablement au r\u00e9chauffement climatique (...) Nous, on a d\u00e9cid\u00e9 d'innover pour concilier libert\u00e9 de d\u00e9placement et impact positif sur l'environnement. Alors, on s'est mis \u00e0 r\u00eaver : et si nous nous engagions \u00e0 lutter contre le r\u00e9chauffement climatique en faisant notre plein d'essence ?\" (c'est beau non ? j'en ai presque les larmes aux yeux).\n\n\"Choisir Fuel For Planet (...) c'est continuer \u00e0 assurer ses d\u00e9placements essentiels tout en luttant au quotidien contre le r\u00e9chauffement climatique\".\n\nTransformer le plein en action contre le changement climatique, il fallait oser. Pr\u00e9tendre que payer un centime de plus au litre permet \"d'annuler\" son impact sur l'environnement, il fallait oser aussi. \n\nBien \u00e9videmment, le d\u00e9but de l'affirmation inexacte est la notion m\u00eame de \"compensation\". Cette derni\u00e8re n'a pas de fondement scientifique : https://lnkd.in/db7JzB2q\n\nIl est \u00e9videmment souhaitable de financer des actions qui visent \u00e0 augmenter les puits terrestres de carbone (agroforesterie, plantations, etc) mais en aucun cas cela ne \"compense\" les \u00e9missions qui ont lieu par ailleurs. \n\nL'affirmation de fuel for planet est du m\u00eame tonneau (c'est de circonstance) que si on disait \"buvez en toute tranquillit\u00e9, car plus vous buvez, plus on pourra collecter d'argent pour soigner les malades de la cirrhose\". \n\nSi les propri\u00e9taires de jets priv\u00e9s vont faire le plein chez eux, ce seront alors - de tr\u00e8s loin - les plus gros bienfaiteurs de l'environnement : est-il pr\u00e9vu de faire une piste d'atterrissage \u00e0 c\u00f4t\u00e9 de chaque pompe de ce distributeur ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6868460366918115328,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6868460367480160256,urn:li:activity:6868460367480160256,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 168, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6868460367480160256,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6868460367480160256,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6868460367480160256", + "threadId": "activity:6868460367480160256", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6868460367480160256", + "urn": "urn:li:activity:6868460367480160256", + "numComments": 360, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6868460367480160256", + "reactionTypeCounts": [ + { + "count": 2608, + "reactionType": "LIKE" + }, + { + "count": 284, + "reactionType": "MAYBE" + }, + { + "count": 248, + "reactionType": "PRAISE" + }, + { + "count": 110, + "reactionType": "INTEREST" + }, + { + "count": 41, + "reactionType": "EMPATHY" + }, + { + "count": 33, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6868460367480160256", + "numLikes": 3324, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6868460367480160256", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3324, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6868149591280234496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6868149591280234496", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6868149591280234496)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6868149591280234496)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_%C3%A9lectricit%C3%A9-nucl%C3%A9aire-que-font-les-usa-activity-6868149591280234496-z6Yn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6868149590739193856", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6868149591280234496", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6868149591280234496,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6868149591280234496,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6868149590739193856", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "po3WUj4Ydt2cb2ae8j/Lkg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6868149591280234496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7597380425250377469", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675769990586?e=1677240000&v=beta&t=boPVRHANwfL4VkUzp00hMA_Z4aEEVkwXEAhsbev7Aps", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675769990587?e=1677240000&v=beta&t=cTngmLodHIC0AqnQmbNunAPcSWytnxG33SnNFr4CDZE", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675769990587?e=1677240000&v=beta&t=VJJAoKS3MroRXTWR79PMQSxfDBIme5by1lSCxpg5WvM", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675769990587?e=1677240000&v=beta&t=Ga8eRwHqYhUlHSxDMx9NaE4BkKJrSHD9QL1GoUfUeNE", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEE1QIVLtj5Jg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7597380425250377469)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7597380425250377469)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 10 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00c9lectricit\u00e9 nucl\u00e9aire : que font les USA, le Canada et l'Am\u00e9rique du Sud ? by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/electricite-nucleaire-amerique-nord-sud/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00c9lectricit\u00e9 nucl\u00e9aire : que font les USA, le Canada et l'Am\u00e9rique du Sud ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6868149590739193856,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 842, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "9WVRhZL3TJSEpWrUT0eBdg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Chez nous, la situation sur le nucl\u00e9aire a r\u00e9cemment \u00e9volu\u00e9 : de \"b\u00eate \u00e0 abattre partiellement\" (situation incarn\u00e9e par l'objectif de limiter le nucl\u00e9aire \u00e0 50% de la production \u00e9lectrique, la fermeture de Fessenheim et l'arr\u00eat d'Astrid), ce mode de production de l'\u00e9lectricit\u00e9 (et dans certains pays, de chaleur, au travers de la cog\u00e9n\u00e9ration qui peut aussi se faire avec du nucl\u00e9aire) redevient \"dans le vent\" (sans mauvais jeu de mots !).\n\nNous avons souvent tendance \u00e0 raisonner sur le nucl\u00e9aire comme s'il n'y en avait que chez nous. Si Flamanville coute cher, alors le nucl\u00e9aire est cher. Si nous avons moins de centrales, alors il y en a moins dans le monde. Si nous n'en construisons pas, alors les autres n'en construisent pas.\n\nMais en fait la situation n'est pas du tout homog\u00e8ne dans le monde. Pour nous permettre d'y voir clair, Les Shifters proposent un panorama de ce qui se passe ailleurs sur la plan\u00e8te.\n\nL'\u00e9pisode du jour concerne le continent am\u00e9ricain, du nord au sud. Au nord, royaume du march\u00e9, c'est l'\u00e9conomie qui commande. Cela rend tr\u00e8s compliqu\u00e9e la (sur)vie d'un syst\u00e8me qui demande un pilotage stable sur le long terme. \n\nLorsque le p\u00e9trole \u00e9tait cher (et que l'on pensait que ca serait durablement le cas), des r\u00e9acteurs ont \u00e9t\u00e9 construits en masse. Maintenant que le gaz ne vaut rien (et le CO2 non plus), le renouvellement du parc - sans parler de son accroissement - est tout sauf assur\u00e9 (la note des shifters ne prend pas position sur le fait que ce soit souhaitable ou pas : elle d\u00e9crit juste ce que l'on observe aujourd'hui).\n\nLe sud se partage en deux sous-ensembles qui ont des ambitions oppos\u00e9es. \n\nVous pouvez retrouver les trois \u00e9pisodes pr\u00e9c\u00e9dents de ce panorama du nucl\u00e9aire dans le monde (Europe - URSS + Asie de l'Est - Afrique et Oc\u00e9anie) ici : https://lnkd.in/d_PBUBSd\n\nBonne lecture !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6868149590739193856,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6868149591280234496,urn:li:activity:6868149591280234496,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 20, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6868149591280234496,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6868149591280234496,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6868149591280234496", + "threadId": "activity:6868149591280234496", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6868149591280234496", + "urn": "urn:li:activity:6868149591280234496", + "numComments": 67, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6868149591280234496", + "reactionTypeCounts": [ + { + "count": 517, + "reactionType": "LIKE" + }, + { + "count": 81, + "reactionType": "INTEREST" + }, + { + "count": 47, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6868149591280234496", + "numLikes": 655, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6868149591280234496", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 655, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6867850682314088448,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6867850682314088448", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6867850682314088448)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6867850682314088448)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_chaque-ann%C3%A9e-20-%C3%A0-30-millions-dhectares-activity-6867850682314088448-Btw9?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6867850681601064960", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6867850682314088448", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6867850682314088448,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6867850682314088448,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6867850681601064960", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "LVHnFpPLAuzKt05EFbgwsw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6867850682314088448,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEEPFBLnPNUog", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEEPFBLnPNUog", + "artifacts": [ + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1637423200523?e=1679529600&v=beta&t=FrHZfG4qaCWbjslaW7sY-eIHQfImzTrCJZCE2PaVMMo", + "expiresAt": 1679529600000, + "height": 1088 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1637423200519?e=1679529600&v=beta&t=YcYGezbl-gu-7YwBCNtB9ZK7An2V1N0qeLTuSpcLPsY", + "expiresAt": 1679529600000, + "height": 21 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280/0/1637423200519?e=1679529600&v=beta&t=tj5GDOOgGmKEMPBQnxa-qQjpXWxhKlW1z0OxnRms1-Q", + "expiresAt": 1679529600000, + "height": 1088 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1637423200519?e=1679529600&v=beta&t=BMAHDpTk7_0qd58sdIGA7vWCP_-8fiy-V9jwkrIvEQw", + "expiresAt": 1679529600000, + "height": 522 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1637423200519?e=1679529600&v=beta&t=DISe27ef6PlwNIUKlwI-bqtP8NpW1B2ZUqbPPYIcQSI", + "expiresAt": 1679529600000, + "height": 174 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1637423200519?e=1679529600&v=beta&t=oVYWR6R1C9wt20_jxwCeQkIbnkQkMCKqTMr-sU9pvRI", + "expiresAt": 1679529600000, + "height": 870 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEEPFBLnPNUog/feedshare-shrink_" + }, + "displayAspectRatio": 1.088 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6867850681601064960,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Chaque ann\u00e9e, 20 \u00e0 30 millions d'hectares de couvert arbor\u00e9 disparaissent de la surface de la plan\u00e8te, si l'on en croit ce graphique r\u00e9alis\u00e9 par Les Echos \u00e0 partir des donn\u00e9es de Global Forest Watch (https://lnkd.in/eK_PcByY ). \n\nCette mani\u00e8re de compter, qui donne un r\u00e9sultat 4 \u00e0 5 fois sup\u00e9rieur \u00e0 celui de la d\u00e9forestation seule, inclut aussi les arbres qui sont coup\u00e9s lors de l'exploitation normale des for\u00eats, ceux qui br\u00fblent, et ceux qui sont supprim\u00e9s lors de cultures itin\u00e9rantes (mais qui peuvent \u00e9ventuellement repousser ensuite). Cela explique pourquoi la Russie arrive avant le Br\u00e9sil : les incendies majeurs y sont d\u00e9sormais fr\u00e9quents \u00e0 cause du r\u00e9chauffement climatique.\n\nL'Union Europ\u00e9enne discute actuellement d'un r\u00e8glement qui a pour objet d'interdire l'importation de certains produits agricoles ou forestiers (soja, bois, cacao, caf\u00e9, huile de palme, boeuf) ou d\u00e9riv\u00e9s (cuir et ameublement) s'ils sont issus de surfaces r\u00e9cemment d\u00e9forest\u00e9es (apr\u00e8s d\u00e9cembre 2020) : https://lnkd.in/edaCPm4w (rappelons qu'un r\u00e8glement est d'application imm\u00e9diate apr\u00e8s adoption par le parlement et le conseil et n'a pas besoin d'une transposition dans le droit national des Etats membres).\n\nPour cela il faut une tra\u00e7abilit\u00e9 depuis la parcelle, et de la visibilit\u00e9 sur l'\u00e9volution de cette derni\u00e8re. Avec les observations par satellite (pour lesquelles l'Europe dispose de son propre syst\u00e8me) ce dernier point est devenu relativement \"facile\", car l'observation depuis l'espace permet d\u00e9sormais de se faire une bonne id\u00e9e de l'\u00e9volution du couvert forestier.\n\nLa tra\u00e7abilit\u00e9 des produits agricoles depuis l'exploitation - donc la parcelle - est normalement aussi d\u00e9j\u00e0 effectu\u00e9e, mais cela posera peut-\u00eatre quelques probl\u00e8mes (et de multiples tentatives de fraude) dans les pays qui sont directement vis\u00e9s, o\u00f9 la d\u00e9forestation est malheureusement trop souvent encourag\u00e9e, ou tol\u00e9r\u00e9e, par les autorit\u00e9s.\n\nIl n'en reste pas moins que ce premier pas est une bonne nouvelle. Rappelons que la d\u00e9forestation cause 10% des \u00e9missions de gaz \u00e0 effet de serre dans le monde (la moiti\u00e9 des \u00e9missions des centrales \u00e0 charbon ; autant que voitures et camions r\u00e9unis), sans parler de la perte de biodiversit\u00e9.\n\nEsp\u00e9rons que d'autres importateurs nous emboiterons rapidement le pas !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6867850681601064960,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6867850682314088448,urn:li:activity:6867850682314088448,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 61, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6867850682314088448,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6867850682314088448,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6867850682314088448", + "threadId": "activity:6867850682314088448", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6867850682314088448", + "urn": "urn:li:activity:6867850682314088448", + "numComments": 75, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6867850682314088448", + "reactionTypeCounts": [ + { + "count": 921, + "reactionType": "LIKE" + }, + { + "count": 168, + "reactionType": "INTEREST" + }, + { + "count": 96, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6867850682314088448", + "numLikes": 1209, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6867850682314088448", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1209, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6867356676182294528,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6867356676182294528", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6867356676182294528)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6867356676182294528)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nouveau-rapport-du-shift-project-sur-la-d%C3%A9carbonation-activity-6867356676182294528-Q5TQ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6867356675637055489", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6867356676182294528", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6867356676182294528,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6867356676182294528,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6867356675637055489", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "UzFQNY78GKPfbx717KiECQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6867356676182294528,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8580256090645488392", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676370913334?e=1677240000&v=beta&t=acalkcThrNRRhv4oQrcmSVS78v6mVEsfJIhGnta1_CM", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676370913335?e=1677240000&v=beta&t=BJOLuPYhg44QzhrwlcUnmI_aVZkawNM7Q_PyLHfO7U4", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676370913335?e=1677240000&v=beta&t=QF5MabIQUidcRR8BsldUpdHpP7B1oQyN51RbNAErJn0", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676370913335?e=1677240000&v=beta&t=CNZ-nNAOu2Cpp1Do0fxA1CMf9F9UcCFrqF95PRM9LJk", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGLzCTZ9DTPhg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8580256090645488392)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8580256090645488392)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nouveau rapport du Shift Project sur la d\u00e9carbonation de l'industrie auto by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/la-transition-bas-carbone-une-opportunite-pour-lindustrie-automobile-francaise-rapport-final-18-novembre/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nouveau rapport du Shift Project sur la d\u00e9carbonation de l'industrie auto" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6867356675637055489,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Que faut-il fabriquer comme voitures dans un monde bas carbone, et combien ?\n\nRien du tout diront les uns. La voiture ca pue, ca pollue, ca occupe trop d'espace, ca nous rend inactifs donc en mauvaise sant\u00e9, c'est trop lourd et consomme trop de mat\u00e9riaux, et tout cela la condamne \u00e0 terme,\u00a0\u00e9lectrique ou pas, dans un monde neutre en carbone et sobre en ressources non renouvelables.\n\nAutant qu'aujourd'hui diront les autres : pensez donc aux emplois, aux familles loin de tout qui n'ont ni transport en commun ni la possibilit\u00e9 d'utiliser des v\u00e9los, aux progr\u00e8s technologiques qui vont permettre de \"neutraliser\" tout ca question CO2, au recyclage qui nous all\u00e8gera la contrainte m\u00e9taux, et \u00e0 la pr\u00e9f\u00e9rence de nos concitoyens pour le pavillon de banlieue qui demande du transport individuel.\n\nConcilier ces deux points de vue est-il possible ? Compl\u00e8tement, s\u00fbrement pas. Dans le cadre du plan de transformation de l'\u00e9conomie fran\u00e7aise, The Shift Project vous pr\u00e9sente le compromis que nous proposons pour cette fili\u00e8re industrielle qui est l'une des principales que nous avons encore sur notre sol. \n\nCe travail a \u00e9t\u00e9 men\u00e9, comme les autres propositions sectorielles du PTEF, par des personnes qui ont longtemps travaill\u00e9 dans le secteur, et qui connaissent bien ce dernier de l'int\u00e9rieur. Il boucle \u00e9videmment avec les autres travaux men\u00e9s dans le cadre du PTEF, sur l'industrie lourde ou l'\u00e9nergie. Enfin il s'agit bien de propositions, non d'une pr\u00e9vision ou d'un travail de pure analyse prospective.\n\n9 pages de synth\u00e8se ou 148 pages de rapport vous attendent, selon votre degr\u00e9 de curiosit\u00e9 et le temps dont vous disposez. En voiture !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6867356675637055489,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6867356676182294528,urn:li:activity:6867356676182294528,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 69, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6867356676182294528,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6867356676182294528,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6867356676182294528", + "threadId": "activity:6867356676182294528", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6867356676182294528", + "urn": "urn:li:activity:6867356676182294528", + "numComments": 87, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6867356676182294528", + "reactionTypeCounts": [ + { + "count": 1130, + "reactionType": "LIKE" + }, + { + "count": 127, + "reactionType": "MAYBE" + }, + { + "count": 126, + "reactionType": "INTEREST" + }, + { + "count": 47, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6867356676182294528", + "numLikes": 1442, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6867356676182294528", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1442, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6867006623953494016,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6867006623953494016", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6867006623953494016)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6867006623953494016)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-monde-sans-fin-editions-dargaud-activity-6867006623953494016-EW20?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6867006623429222401", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6867006623953494016", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6867006623953494016,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6867006623953494016,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6867006623429222401", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "cb93aInQhrr3WZNLpcdy0g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6867006623953494016,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7809570977392879308", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 770, + "fileIdentifyingUrlPathSegment": "800/0/1675570934901?e=1677240000&v=beta&t=brSA-L2eoIYwHU7ueXVGZ50EM-CLigV4ONX0SeOWuDs", + "expiresAt": 1677240000000, + "height": 433 + }, + { + "width": 770, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675570934901?e=1677240000&v=beta&t=tseWr5IO-jDvgjomlkhw2jYhojf367zV6TLcFhfZ2_Y", + "expiresAt": 1677240000000, + "height": 433 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675570934901?e=1677240000&v=beta&t=h_wRJnqYQ8g_gE1gBsMhDOVwaG8k1187F1CJO2wcM0I", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675570934902?e=1677240000&v=beta&t=IOJ4wd5hK7HuOb25My5SmGeuwF1ry-01EJKEUiSKC9Y", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEF1Gr9qJr3iw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5623376623376624 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7809570977392879308)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7809570977392879308)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtbf.be" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Le monde sans fin (Editions Dargaud) on rtbf.be", + "actionTarget": "https://www.rtbf.be/auvio/detail_le-monde-sans-fin-editions-dargaud?id=2827586" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Le monde sans fin (Editions Dargaud)" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Le monde sans fin (Editions Dargaud)" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6867006623429222401,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Christophe Blain superstar au pays d'Herg\u00e9 et de Geluck : c'est ce qui s'est produit il y a une grosse semaine, avec notre BD qui a non seulement \u00e9t\u00e9 pr\u00e9sent\u00e9e en d\u00e9tail \u00e0 la RTBF (sans les auteurs, ce qui est plus une exception que la r\u00e8gle \u00e0 la t\u00e9l\u00e9vision), mais qui en plus \u00e9tait \u00e0 gagner lors de l'\u00e9mission. \n\nAvec auteur(s), par contre, voici quelques passages media r\u00e9cents :\n- Christophe Blain sur France Inter dans l'\u00e9mission Popopop d'Antoine de Caunes : https://lnkd.in/dw6b9FH2\n- votre serviteur sur Europe 1 \u00e0 la matinale week-end de Fr\u00e9d\u00e9ric Tadde\u00ef : https://lnkd.in/dKMj_uBZ\n- votre serviteur sur France Bleu dans l'\u00e9mission Plan\u00e8te Bleu : https://lnkd.in/dCG6brPy\n\nSi vous envisagez d'en offrir pour No\u00ebl un exemplaire \u00e0 vos clients (qui resteront vos clients apr\u00e8s, j'ai test\u00e9), vos salari\u00e9s (qui normalement ne d\u00e9missionneront pas dans l'heure apr\u00e8s ca), ou tout autre sous-ensemble de la population mondiale, les r\u00e9impressions sont en cours. Pensez au besoin \u00e0 mettre 1 tablette de chocolat dans le paquet cadeau (le chocolat est un antid\u00e9presseur reconnu :) )." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6867006623429222401,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6867006623953494016,urn:li:activity:6867006623953494016,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6867006623953494016,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6867006623953494016,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6867006623953494016", + "threadId": "activity:6867006623953494016", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6867006623953494016", + "urn": "urn:li:activity:6867006623953494016", + "numComments": 117, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6867006623953494016", + "reactionTypeCounts": [ + { + "count": 557, + "reactionType": "LIKE" + }, + { + "count": 39, + "reactionType": "PRAISE" + }, + { + "count": 32, + "reactionType": "EMPATHY" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6867006623953494016", + "numLikes": 638, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6867006623953494016", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 638, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6866804146943623168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6866804146943623168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6866804146943623168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6866804146943623168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-chants-des-oiseaux-en-voie-de-dispara%C3%AEtre-activity-6866804146943623168-HC17?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6866804146486427648", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6866804146943623168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6866804146943623168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6866804146943623168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6866804146486427648", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "OHeQn85PZ/01WafhXRETGA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6866804146943623168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8635406058144972910", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676028981210?e=1677240000&v=beta&t=Zja_2Dakxd9C01clnID8ucdf4TYtbig9B3LnvuThyD4", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676028981210?e=1677240000&v=beta&t=rqlfFkootuV2c--C0NPeiVQMGjI_xvt452yaoqfuZ_w", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676028981210?e=1677240000&v=beta&t=qISQ3wDwFTMUqAkcw4PuodMko0WiCXzkpi7YjvA4CbU", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676028981210?e=1677240000&v=beta&t=j6r0wlcHKZpfrIGpj1qDg41oY1Tz4Ni9xmODdjSk0ko", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF0-Lb_wMAREg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8635406058144972910)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8635406058144972910)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les chants des oiseaux en voie de dispara\u00eetre de nos paysages sonores by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/sciences/article/2021/11/09/les-chants-des-oiseaux-en-voie-de-disparaitre-de-nos-paysages-sonores_6101436_1650684.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les chants des oiseaux en voie de dispara\u00eetre de nos paysages sonores" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6866804146486427648,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 1962 la biologiste am\u00e9ricaine Rachel Carson \u00e9crivait le livre \"Silent Spring\", o\u00f9 elle s'inqui\u00e9tait (et plus encore) de la disparition possible des oiseaux \u00e0 cause de l'usage du DDT qui fragilisait les coquilles de leurs oeufs.\n\n60 ans apr\u00e8s, sa \"proph\u00e9tie\" s'est malheureusement concr\u00e9tis\u00e9e. Certes le DDT fut interdit en 1972 et ce n'est pas cette mol\u00e9cule qui a commenc\u00e9 \u00e0 causer l'effondrement des populations, mais, dans les pays des moyennes latitudes, d'autres mol\u00e9cules utilis\u00e9es contre les insectes s'en sont charg\u00e9es, en privant les b\u00eates \u00e0 plumes de nourriture (les insectes). \n\nD'autres pressions sont venues se rajouter (les chats domestiques, les chasseurs, et la perte d'habitats). Une \u00e9tude (de plus ; lien dans l'article du Monde), bas\u00e9e sur des centaines de milliers d'enregistrements de chants, vient en attester. \n\nSachant que les insecticides sont utilis\u00e9s pour augmenter le rendement des cultures, donc avoir des aliments moins chers, la question est de savoir ce que p\u00e8se un loriot ou un roitelet face au prix des produits agricoles. La r\u00e9ponse aujourd'hui est pas bezef..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6866804146486427648,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6866804146943623168,urn:li:activity:6866804146943623168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6866804146943623168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6866804146943623168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6866804146943623168", + "threadId": "activity:6866804146943623168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6866804146943623168", + "urn": "urn:li:activity:6866804146943623168", + "numComments": 138, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6866804146943623168", + "reactionTypeCounts": [ + { + "count": 1194, + "reactionType": "LIKE" + }, + { + "count": 192, + "reactionType": "MAYBE" + }, + { + "count": 191, + "reactionType": "INTEREST" + }, + { + "count": 53, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6866804146943623168", + "numLikes": 1642, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6866804146943623168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1642, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6866790732204658688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6866790732204658688", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6866790732204658688)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6866790732204658688)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_toulouse-projection-transition-un-festival-activity-6866790732204658688-Yrlr?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6866790731797798913", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6866790732204658688", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6866790732204658688,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6866790732204658688,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6866790731797798913", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "XSTf3GAi4C4ORfs/rEXwUA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6866790732204658688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7452606324360132202", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675701109303?e=1677240000&v=beta&t=yoVLNKRwT-lv17onDXz08qQbsIbz6UjUgfO-cIznzPs", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 930, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675701109303?e=1677240000&v=beta&t=TnRT66fI_yqPy1ujI4hEzjjg_VIt5aY_LblPylwJge0", + "expiresAt": 1677240000000, + "height": 620 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675701109303?e=1677240000&v=beta&t=i_HKJ-QP3pLryEABlY0I2ex2GcpqVsCIlJS7hmv2YY8", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675701109303?e=1677240000&v=beta&t=BhHadDe1P2hlaIgqWE9Cc-7ZmwR83Tej4C-8YIJGrO4", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHg-_h0sjjeEg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7452606324360132202)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7452606324360132202)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "france3-regions.francetvinfo.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Toulouse : \"Projection transition\" un festival de cin\u00e9ma sur la transition bas-carbone by france3-regions.francetvinfo.fr", + "actionTarget": "https://france3-regions.francetvinfo.fr/occitanie/haute-garonne/toulouse/toulouse-projection-transition-un-festival-de-cinema-sur-la-transition-bas-carbone-2337493.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Toulouse : \"Projection transition\" un festival de cin\u00e9ma sur la transition bas-carbone" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6866790731797798913,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 77, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "czVuughoR7mm37MAENKq5w==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 609, + "length": 15, + "miniProfile": { + "firstName": "alexandre", + "lastName": "barr\u00e9", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAcwDYYB_v_wNhVhfmy2US04rKJKKYpqjBQ", + "occupation": "Ing\u00e9nieur", + "objectUrn": "urn:li:member:120589702", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAcwDYYB_v_wNhVhfmy2US04rKJKKYpqjBQ", + "publicIdentifier": "alexandre-barr\u00e9-85a47534", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516559795403?e=1681948800&v=beta&t=mJ0FpvkHHBCGWc-ZNOMOfKWzJ_vw2IrZELs8AUCaVjw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516559795403?e=1681948800&v=beta&t=NDoawNISkSIkmPa99Z5Cb454txAUBiRsJ9P1AtiAE5o", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516559795403?e=1681948800&v=beta&t=NSMJkT9I8xkHKcxj23OPTwviTaQN4fPgPp4PFJGB-XU", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516559795403?e=1681948800&v=beta&t=sGU_Dm0hel7tBfX1ZI9uzkQNpRCGn4Mrp9iIO9aoz78", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHQA2tTf8EaxA/profile-displayphoto-shrink_" + } + }, + "trackingId": "URDIPaXOQySDeZLBjHJTeA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans le cadre du Festival Projection Transition - https://lnkd.in/d8_mb48m - Les Shifters de Toulouse ont eu les honneurs de France 3.\n\nRappelons que l'\u00e9dition toulousaine de ce festival (organis\u00e9 simultan\u00e9ment sur Paris, Nantes et Toulouse) consiste \u00e0 offrir aux salari\u00e9s de la fili\u00e8re a\u00e9ronautique - euh pardon aux habitants de Toulouse :) - 3 jours de projections de films suivies de d\u00e9bats avec des personnes ayant une activit\u00e9 en rapport avec le th\u00e8me trait\u00e9 (qui est n\u00e9cessairement un peu li\u00e9 au sujet climat).\n\nToute la programmation et les noms des intervenant(e)s sont l\u00e0 : https://lnkd.in/dpTCZRPh\n\nalexandre barr\u00e9, le pr\u00e9sident des Shifters, participera \u00e0 un des d\u00e9bats (mais je ne vous dis pas lequel, on va faire P\u00e2ques hors saison et vous laisse chercher dans quel oeuf il se cache !)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6866790731797798913,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6866790732204658688,urn:li:activity:6866790732204658688,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 5, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6866790732204658688,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6866790732204658688,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6866790732204658688", + "threadId": "activity:6866790732204658688", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6866790732204658688", + "urn": "urn:li:activity:6866790732204658688", + "numComments": 8, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6866790732204658688", + "reactionTypeCounts": [ + { + "count": 99, + "reactionType": "LIKE" + }, + { + "count": 5, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6866790732204658688", + "numLikes": 115, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6866790732204658688", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 115, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6866677973567713280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6866677973567713280", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6866677973567713280)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6866677973567713280)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_festival-de-cin%C3%A9-d%C3%A9bat-projection-transition-activity-6866677973567713280-_myL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6866677973005676545", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6866677973567713280", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6866677973567713280,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6866677973567713280,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6866677973005676545", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "wMpzdHF5uvKJJDSZddEtyg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6866677973567713280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8693847587453954528", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1634046812664?e=1677240000&v=beta&t=lhg8XP44d02RLxBAddz3gjvZ5EHxNUqBrEqGCT-jLrk", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1634046812664?e=1677240000&v=beta&t=gw_lupVJrOzR6XF_OEO9j8aVyjnF5aXYpJfMfl4jcek", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1634046812664?e=1677240000&v=beta&t=DHPJPXanMngp_lSAH0ZDh8_EYXtrl5LL78S6wYBAGcg", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1634046812664?e=1677240000&v=beta&t=n9lgrlC19saU36fn--3W-MkEzvGPIExrKCX1YYzbTVU", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHJ-8Aj8fNc1Q/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8693847587453954528)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8693847587453954528)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "projectiontransition.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Festival de cin\u00e9-d\u00e9bat Projection Transition \u00e0 Nantes - tous les films et les d\u00e9bats de l\u2019\u00e9dition 2021. by projectiontransition.fr", + "actionTarget": "https://projectiontransition.fr/programmation/nantes" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Festival de cin\u00e9-d\u00e9bat Projection Transition \u00e0 Nantes - tous les films et les d\u00e9bats de l\u2019\u00e9dition 2021." + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6866677973005676545,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 366, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "mN8i3jb8QE2xFXJLCAuHaQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Si vous \u00eates int\u00e9ress\u00e9 par le rapport de l'humain \u00e0 la nature, l'\u00e9tat de l'oc\u00e9an, l'engagement de la jeunesse en mati\u00e8re d'environnement, la responsabilit\u00e9 des entreprises dans l'action collective, la pertinence de l'\u00e9cologie radicale ou le r\u00f4le des media dans l'information environnementale, que vous aimez le cin\u00e9ma, et que vous avez la chance d'habiter \u00e0 Nantes, Les Shifters ont pens\u00e9 \u00e0 vous.\n\nDu 19 au 21 novembre prochains, ils ont organis\u00e9 un festival de \"cin\u00e9-d\u00e9bats\" intitul\u00e9 \"Projection Transition\", o\u00f9 chaque film projet\u00e9 - qui se rapporte \u00e0 un des th\u00e8mes ci-dessus - est suivi d'un d\u00e9bat avec des intervenant(e)s qui sont \u00e9videmment pertinent(e)s pour le th\u00e8me trait\u00e9.\n\nLe lien pour la description des films, s\u00e9ances et intervenant(e)s est dans l'image ci-dessous ; la billetterie (car il faut quand m\u00eame r\u00e9server la salle et payer la location de la copie !) est l\u00e0 : https://lnkd.in/dFvxCZ4Z\n\nA vos v\u00e9los ! (pour y aller \u00e9videmment ; la m\u00e9t\u00e9o dit qu'il ne pleuvra pas :) )" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6866677973005676545,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6866677973567713280,urn:li:activity:6866677973567713280,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 8, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6866677973567713280,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6866677973567713280,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6866677973567713280", + "threadId": "activity:6866677973567713280", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6866677973567713280", + "urn": "urn:li:activity:6866677973567713280", + "numComments": 11, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6866677973567713280", + "reactionTypeCounts": [ + { + "count": 173, + "reactionType": "LIKE" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6866677973567713280", + "numLikes": 198, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6866677973567713280", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 198, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6866331964144660480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:member:183424051", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Julie", + "lastName": "Daunay", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "occupation": "Head of Net Zero Practice - Recruitment Manager - Carbone 4", + "objectUrn": "urn:li:member:183424051", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1650829686649?e=1681948800&v=beta&t=Rf2Y7qUU2TPTZ05cutAwcO2iqnMo6t4Hfdopndutc84", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1650829686649?e=1681948800&v=beta&t=iMzmvgrl1MTYYHJJfeJUuNR5zRI82Hu8yuJuHBtG3gY", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHpQSm2-ui2_A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "julie-daunay-21751851", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650545325320?e=1681948800&v=beta&t=BCTrL79EHAUp5-EdSbkqYTNDcxPc9AUMCI6h9gW-KX8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650545325320?e=1681948800&v=beta&t=6NtVaz_3C-PQ4tdvK-J5QjbsoLz-_d0DOhJGbRQ1Zaw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650545325320?e=1681948800&v=beta&t=e8ZXvJlwKgYItYuVoI7fOcTwGtuwzQpPTcuGOyuWsSM", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650545325320?e=1681948800&v=beta&t=sHGCLwwMDPrkr1x8b9A4SLdS5onZW3A7jviDYbg_ElY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQGS01GH3FEefQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "MPWjfOeIQmunRU6OrKE6Jg==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 3rd+" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 12, + "miniProfile": { + "firstName": "Julie", + "lastName": "Daunay", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "occupation": "Head of Net Zero Practice - Recruitment Manager - Carbone 4", + "objectUrn": "urn:li:member:183424051", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1650829686649?e=1681948800&v=beta&t=Rf2Y7qUU2TPTZ05cutAwcO2iqnMo6t4Hfdopndutc84", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1650829686649?e=1681948800&v=beta&t=iMzmvgrl1MTYYHJJfeJUuNR5zRI82Hu8yuJuHBtG3gY", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHpQSm2-ui2_A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "julie-daunay-21751851", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650545325320?e=1681948800&v=beta&t=BCTrL79EHAUp5-EdSbkqYTNDcxPc9AUMCI6h9gW-KX8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650545325320?e=1681948800&v=beta&t=6NtVaz_3C-PQ4tdvK-J5QjbsoLz-_d0DOhJGbRQ1Zaw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650545325320?e=1681948800&v=beta&t=e8ZXvJlwKgYItYuVoI7fOcTwGtuwzQpPTcuGOyuWsSM", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650545325320?e=1681948800&v=beta&t=sHGCLwwMDPrkr1x8b9A4SLdS5onZW3A7jviDYbg_ElY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQGS01GH3FEefQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "MPWjfOeIQmunRU6OrKE6Jg==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Julie Daunay" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Julie Daunay\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/julie-daunay-21751851?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Head of Net Zero Practice - Recruitment Manager - Carbone 4" + }, + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "following": false, + "trackingUrn": "urn:li:member:183424051" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followMember" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6866080449932877824,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6866080449932877824", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6866080449932877824)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6866080449932877824)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/activity-6866080449932877824-OjtC?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6866080449488281600", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "authorUrn": "urn:li:member:183424051", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6866080449932877824,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6866080449932877824,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6866080449488281600", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "mvSmsr5HM7jFAH/r/ZRoVw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6866080449932877824,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8087299201223607359", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675850530569?e=1677240000&v=beta&t=QTM1-fIyGMOTP5x9wczkHD8pruHr6ZtBlsEV3erJdS4", + "expiresAt": 1677240000000, + "height": 1005 + }, + { + "width": 637, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675850530569?e=1677240000&v=beta&t=iddzTGn4h5oN7QHBqefwJ-1w2J4folQKEQxZyrtZW4w", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675850530569?e=1677240000&v=beta&t=iz9wsnLuSHozBvS3DI18xcubTjN6YUuUpHPuQoAaffk", + "expiresAt": 1677240000000, + "height": 201 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675850530569?e=1677240000&v=beta&t=kbrSwmwLBO0HQ1fsjnPxEPoP_sLd8Q9jxbbO1OWmO6w", + "expiresAt": 1677240000000, + "height": 603 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGmC1tNHfUKJw/articleshare-shrink_" + }, + "displayAspectRatio": 1.25625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8087299201223607359)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8087299201223607359)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carbone 4 - Nous rejoindre by carbone4.com", + "actionTarget": "https://www.carbone4.com/jobs" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carbone 4 - Nous rejoindre" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6866080449488281600,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\ud83d\udce2 Carbone 4 recrute \u2757\ufe0f\n\n- la Pratique \u00c9nergie \ud83d\udd06 cherche un\u00b7e Consultant\u00b7e ayant 1 \u00e0 2 ans d'exp\u00e9rience dans le Conseil et/ou le secteur de l'\u00e9nergie pour accompagner les \u00e9nerg\u00e9ticiens dans la d\u00e9carbonation de leur production !\n\n- la Pratique Adaptation \ud83c\udf0a cherche un\u00b7e Consultant\u00b7e Senior ayant au moins 4 ans d'exp\u00e9rience professionnelle, notamment en gestion de projet, d\u00e9veloppement commercial et m\u00e9thodes d'analyse des risques en vue d'accompagner les entreprises \u00e0 renforcer la r\u00e9silience de leurs activit\u00e9s face aux changements climatiques.\n\n- la Pratique Finance \ud83d\udcb5 cherche un\u00b7e Consultant\u00b7e Senior ayant 3 \u00e0 5 ans\u00a0d\u2019exp\u00e9rience professionnelle, dont\u00a0au moins 2 ans en lien avec le secteur de la finance et/ou du conseil\u00a0(ou inspection g\u00e9n\u00e9rale) en vue d'aider les acteurs financiers \u00e0 aligner leurs investissements avec une trajectoire 1,5\u00b0C.\n\n- la Pratique Neutralit\u00e9 \ud83c\udf33 cherche un\u00b7e Consultant\u00b7e Senior \"puits de carbone\" qui, apr\u00e8s au moins 3 ans d'exp\u00e9rience, dispose d'une tr\u00e8s connaissance des m\u00e9thodologies de quantification des flux et stocks de carbone, conna\u00eet bien les enjeux relatifs au secteur des terres et les labels de certification carbone.\n\n\ud83c\udf0f Si l'un de ces postes vous int\u00e9resse, rendez-vous sur notre site pour postuler en fournissant votre CV et lettre de motivation :" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6866080449488281600,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6866080449932877824,urn:li:activity:6866080449932877824,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 3, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6866080449932877824,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6866080449932877824,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6866080449932877824", + "threadId": "activity:6866080449932877824", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6866080449932877824", + "urn": "urn:li:activity:6866080449932877824", + "numComments": 3, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6866080449932877824", + "reactionTypeCounts": [ + { + "count": 50, + "reactionType": "LIKE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6866080449932877824", + "numLikes": 53, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6866080449932877824", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 53, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6866331964144660480", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6866331964144660480)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6866331964144660480)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carbone-4-nous-rejoindre-activity-6866331964144660480-R3Id?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6866331963817508864", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6866331964144660480", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6866331964144660480,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6866331964144660480,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6866331963817508864", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "mvSmsr5HM7jFAH/r/ZRoVw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6866331964144660480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6866331963817508864,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 181, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "FBKNWrKqQJ6eziz6VqCn+Q==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "75% des fran\u00e7ais font de la question climatique un enjeu politique prioritaire selon un sondage publi\u00e9 aujourd'hui par Les Echos (nonobstant le titre) : https://lnkd.in/dRxEhx-X\n\nA Carbone 4 nous ne faisons pas de politique, mais nous faisons assur\u00e9ment du climat. 16 offres sont actuellement \u00e0 pourvoir chez nous (dont 4 sont d\u00e9taill\u00e9es ci-dessous) si vous vous sentez en phase avec ce sentiment g\u00e9n\u00e9ral de nos concitoyen(ne)s (ce qui est plut\u00f4t notre cas, on va dire...). A vos CV si cela vous int\u00e9resse !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6866331963817508864,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6866331964144660480,urn:li:activity:6866331964144660480,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 12, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6866331964144660480,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6866331964144660480,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6866331964144660480", + "threadId": "activity:6866331964144660480", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6866331964144660480", + "urn": "urn:li:activity:6866331964144660480", + "numComments": 20, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6866331964144660480", + "reactionTypeCounts": [ + { + "count": 169, + "reactionType": "LIKE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6866331964144660480", + "numLikes": 181, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6866331964144660480", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 181, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6866304251199574016,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6866304251199574016", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6866304251199574016)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6866304251199574016)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_assessing-global-long-term-eroi-of-gas-a-activity-6866304251199574016-1bAS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6866304250645934080", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6866304251199574016", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6866304251199574016,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6866304251199574016,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6866304250645934080", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "FfK+90Rvw1yQOleU7PtGGg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6866304251199574016,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8608942605798018238", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 550, + "fileIdentifyingUrlPathSegment": "800/0/1675966080144?e=1677240000&v=beta&t=ud3CsACCty25jQQ5MI1Za7thclPRCQQGTub4GFfPY_U", + "expiresAt": 1677240000000, + "height": 303 + }, + { + "width": 550, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675966080144?e=1677240000&v=beta&t=Aaq-X0E4dHs1vgFGX6gvQ4JfVuXUVuBE01XRLhcepsI", + "expiresAt": 1677240000000, + "height": 303 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675966080145?e=1677240000&v=beta&t=QihhqZRkAT99ssWajng7fFdV8m5vwwKnvZXWN_flGdE", + "expiresAt": 1677240000000, + "height": 88 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675966080145?e=1677240000&v=beta&t=ognzT3sZXRC06t832qSHmqGdPhmfUX94lBZ1Z2ELuyE", + "expiresAt": 1677240000000, + "height": 264 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQENPb7ndXryow/articleshare-shrink_" + }, + "displayAspectRatio": 0.5509090909090909 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8608942605798018238)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8608942605798018238)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "mdpi.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Assessing Global Long-Term EROI of Gas: A Net-Energy Perspective on the Energy Transition by mdpi.com", + "actionTarget": "https://www.mdpi.com/1996-1073/14/16/5112" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Assessing Global Long-Term EROI of Gas: A Net-Energy Perspective on the Energy Transition" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6866304250645934080,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Belgique a d\u00e9cid\u00e9 de remplacer ses r\u00e9acteurs nucl\u00e9aires par un m\u00e9lange de renouvelables et de centrales \u00e0 gaz. L'Espagne a construit un parc de production comportant, pour des capacit\u00e9s install\u00e9es \u00e0 peu pr\u00e8s \u00e9quivalentes, de l'\u00e9olien et des centrales \u00e0 gaz. L'Allemagne veut sortir du nucl\u00e9aire avec en face une augmentation du parc de centrales \u00e0 gaz, pour garder une puissance pilotable \u00e0 peu pr\u00e8s constante.\n\nCes d\u00e9cisions sont \u00e0 l'\u00e9vidence contre-productives sur les \u00e9missions de CO2, qui augmentent (Espagne, Belgique \u00e0 venir) ou ne baissent pas vite (Allemagne), parce que le gaz est une \u00e9nergie fossile.\n\nMais une question que personne ne semble se poser est : y aura-t-il du gaz ? Car cette ressource n'est pas plus renouvelable que le p\u00e9trole, et fera donc l'objet, comme pour le p\u00e9trole, d'un pic de production dans le monde. \n\nLa production mondiale, explique un article publi\u00e9 en ao\u00fbt dernier, passerait par un maximum peu apr\u00e8s celle de p\u00e9trole (c'est ce que j'ai toujours entendu depuis que je m'int\u00e9resse au sujet). Mais, comme pour le p\u00e9trole, il faut aussi utiliser de l'\u00e9nergie pour exploiter un gisement de gaz. \n\nSelon les auteurs de cet article, cette \"\u00e9nergie n\u00e9cessaire pour extraire l'\u00e9nergie\" passerait de 5% \u00e0 23% du gaz extrait entre 2020 et 2050. Cela avance le pic de 5 \u00e0 10 ans, et surtout le met significativement plus bas. C'est en effet ce qu'il reste apr\u00e8s d\u00e9duction de l'\u00e9nergie d'extraction qui est disponible pour faire tourner les \"machines \u00e0 gaz\" (dont les centrales \u00e9lectriques).\n\nApr\u00e8s l'extraction, vient le transport. Comme le gaz est gazeux (merci La Palisse) \u00e0 temp\u00e9rature et pression ordinaires, il contient sous cette forme mille fois moins d'\u00e9nergie par unit\u00e9 de volume que le p\u00e9trole. Or, le transport du gaz ou du p\u00e9trole, c'est consacrer de l'\u00e9nergie (celle du transport) \u00e0 transporter... de l'\u00e9nergie. Avec le p\u00e9trole on perd 2% au passage (en p\u00e9trolier ou oleoduc), avec le gaz c'est plut\u00f4t 10% \u00e0 15% par gazoduc et plus encore par m\u00e9thanier. Du coup, alors que le p\u00e9trole est une \u00e9nergie mondiale (parce que la d\u00e9perdition due au transport est faible), le gaz est une \u00e9nergie r\u00e9gionale \u00e0 locale.\n\nEn Europe, il faut donc s'int\u00e9resser \u00e0 2 ou 3 sources de gaz dominantes dans l'approvisionnement :\n- celle de la mer du Nord, qui est en d\u00e9clin depuis 2005 (et la Norv\u00e8ge vient de passer son pic a priori, donc le d\u00e9clin va s'acc\u00e9l\u00e9rer dans les d\u00e9cennies \u00e0 venir)\n- la Russie, qui exportait des quantit\u00e9s \u00e0 peu pr\u00e8s constantes depuis 30 ans (et les gisements \u00e0 d\u00e9velopper sont situ\u00e9s \u00e0 mi-chemin de l'Europe - qui aime bien dire aux Russes qu'ils font des choses pas bien - et de la Chine)\n- l'Afrique du Nord, dont les capacit\u00e9s d'exportation sont en d\u00e9clin depuis 10 ans (la production croit l\u00e9g\u00e8rement mais la consommation domestique croit plus vite).\n\nUne centrale \u00e0 gaz dure 40 ans. Donc la question est repos\u00e9e : y aura-t-il suffisamment de gaz... assez longtemps ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6866304250645934080,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6866304251199574016,urn:li:activity:6866304251199574016,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 111, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6866304251199574016,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6866304251199574016,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6866304251199574016", + "threadId": "activity:6866304251199574016", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6866304251199574016", + "urn": "urn:li:activity:6866304251199574016", + "numComments": 169, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6866304251199574016", + "reactionTypeCounts": [ + { + "count": 1751, + "reactionType": "LIKE" + }, + { + "count": 334, + "reactionType": "INTEREST" + }, + { + "count": 265, + "reactionType": "MAYBE" + }, + { + "count": 29, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6866304251199574016", + "numLikes": 2390, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6866304251199574016", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2390, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6865918570879090688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6865918570879090688", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6865918570879090688)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6865918570879090688)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-les-cop-sont-condamn%C3%A9es-%C3%A0-ne-jamais-activity-6865918570879090688-Gnun?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6865918570174431232", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6865918570879090688", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6865918570879090688,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6865918570879090688,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6865918570174431232", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "yXSsJav18qOz+ti7BSpGfQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6865918570879090688,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8387922488211708008", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675902666297?e=1677240000&v=beta&t=KGGBf7u7xsd5-7sPbnIAfT58ySIkS1zOcEB8Ti-ciU8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675902666297?e=1677240000&v=beta&t=sK8-dXx2eb0DKL5CNx9YVsX8-mVgixBiImnPEJtfGGI", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675902666298?e=1677240000&v=beta&t=Jex1Fct1n6hVCOuleqA9075BAH9OCV41lBoV5d8Suls", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675902666298?e=1677240000&v=beta&t=PxdpBpTihTQwDbngUqCqU2BKyKc7QTPifUU7N1C4n8M", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG91P9gyj7wLg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8387922488211708008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8387922488211708008)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : \u00ab Les COP sont condamn\u00e9es \u00e0 ne jamais se terminer \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/enjeux-internationaux/climat-les-cop-sont-condamnees-a-ne-jamais-se-terminer-1363466" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat\u00a0: \u00ab\u00a0Les COP sont condamn\u00e9es \u00e0 ne jamais se terminer\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6865918570174431232,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 16, + "miniProfile": { + "firstName": "Fran\u00e7ois", + "lastName": "Gemenne", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAU1JmMBC5eIMZhcozNk-Dm7Dgp3J7OVYAI", + "occupation": "Director, The Hugo Observatory", + "objectUrn": "urn:li:member:87369315", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAU1JmMBC5eIMZhcozNk-Dm7Dgp3J7OVYAI", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1656694539328?e=1681948800&v=beta&t=X_i-iSP7s5tAKLxxMDA-PWXaLlVCn-o0vqoAXgqDVJs", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1656694539328?e=1681948800&v=beta&t=Fhs8CQucxZ9u6giITAxNKzME_SE0MUCSik80kTA0OAI", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHtRHM6pV9Iwg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "fran\u00e7ois-gemenne-b4331425", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1656694854714?e=1681948800&v=beta&t=48a2kUL2aDPXT-6yK14Q1F6Vjq-nje9F6E7Zdnkgrtw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1656694854714?e=1681948800&v=beta&t=J8VpugEHmSMAzQk-T13Oy5BrOihj6zLXSyf5nrOWXcQ", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1656694854714?e=1681948800&v=beta&t=gaIVUkbvO6lDGbnLmPZKa9Gt6Ii5ZBG608q5DwJLq6k", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1656694854714?e=1681948800&v=beta&t=aKCQRiWdG5mjyMhaHg9SQweD1OUclP-ydA3a-RIsKvA", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFuzHRMS1VQ2w/profile-displayphoto-shrink_" + } + }, + "trackingId": "zB3mpRHTQAC8yI1Q3vU9Zw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Fran\u00e7ois Gemenne propose, dans cette interview aux Echos, un point de vue sur les COP qui peut para\u00eetre d\u00e9sesp\u00e9rant, mais qui est en fait une invitation \u00e0 l'action.\n\nA quoi servent les COP selon lui ? A beaucoup de de choses, mais pas... \u00e0 avoir un impact sur le climat, alors que la croyance populaire - trop souvent entretenue par les media - est justement que c'est \"l\u00e0 que ca se passe\" (je l'ai cru aussi avant d'aller y faire un tour, \u00e0 Poznan en 2008 pour la premi\u00e8re fois). De ce fait, il serait illusoire de consid\u00e9rer qu'il y aura un jour une \"COP finale\", apr\u00e8s laquelle on pourrait poser le crayon et consid\u00e9rer que le probl\u00e8me climatique est r\u00e9solu.\n\nFran\u00e7ois Gemenne a malheureusement raison.\n\nTout d'abord, la Convention climat, plac\u00e9e sous l'\u00e9gide des Nations Unies, ne cr\u00e9e pas un \"chef du monde\" apte \u00e0 imposer ses d\u00e9cisions aux pays. Ces derniers sont souverains, et ne peuvent changer que par la force ou leur propre volont\u00e9. Le seul \"chef du monde\" des Nations Unies est le Conseil de S\u00e9curit\u00e9, qui n'a pas de comp\u00e9tences sur la question climatique (mais ca serait peut-\u00eatre une bonne id\u00e9e qu'il en ait...).\n\nIl se trouve que les plus gros \u00e9metteurs sont aussi les plus puissants - avec la plus grosse \u00e9conomie ou la plus grosse arm\u00e9e (\u00e0 cause du r\u00f4le de l'\u00e9nergie), et donc ceux-l\u00e0 m\u00eame qu'il est difficile ou impossible de faire plier par la force, celle des armes ou celle de l'\u00e9conomie. \n\nNe reste donc que leur propre volont\u00e9, qui est ce qu'elle est et est dict\u00e9e par leur int\u00e9r\u00eat propre : une COP ent\u00e9rine donc ce que les \u00e9metteurs significatifs ont d\u00e9j\u00e0 d\u00e9cid\u00e9 de faire par int\u00e9r\u00eat propre, mais rien de plus. Comme les \u00e9nergies fossiles sont une drogue dure, ce cercle des carboniques anonymes va durer \"un certain temps\", comme disait Fernand Reynaud.\n\nEnsuite, certains compartiments du syst\u00e8me climatique vont continuer \u00e0 d\u00e9river pendant des milliers d'ann\u00e9es apr\u00e8s arr\u00eat des \u00e9missions (lequel arr\u00eat n'est pas pour demain \u00e0 15h26). C'est notamment le cas pour l'oc\u00e9an et la cryosph\u00e8re, et probablement aussi pour l'\u00e9volution de certains \u00e9cosyst\u00e8me qui r\u00e9pondent avec retard aux conditions ambiantes. A mesure que le temps passera, la question de \"l'adaptation\" (terme impropre car plus le temps passera et plus l'adaptation s'appellera en fait subir) montera en puissance, et pourra n\u00e9cessiter aussi un forum de discussion.\n\nIl ne faut donc rien attendre d'autre des COP que des d\u00e9clarations d'intention. Sauf pand\u00e9mie bien plus m\u00e9chante que le COVID ou chute d'un ast\u00e9ro\u00efde (qui \"d\u00e9truirait\" notre \u00e9conomie), le maintien de l'\u00e9l\u00e9vation de la moyenne plan\u00e9taire sous 1,5 \u00b0C \u00e9tait d\u00e9j\u00e0 perdu avant la COP 26. On peut - et doit - \u00e9videmment le regretter, mais ce n'\u00e9tait pas \u00e0 la COP de changer cela. C'est \u00e0 nous, les citoyens-consommateurs, aux aux instances \"proches\" que constituent les repr\u00e9sentations \u00e9conomiques, les collectivit\u00e9s locales et les \u00e9tats." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6865918570174431232,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6865918570879090688,urn:li:activity:6865918570879090688,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 38, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6865918570879090688,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6865918570879090688,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6865918570879090688", + "threadId": "activity:6865918570879090688", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6865918570879090688", + "urn": "urn:li:activity:6865918570879090688", + "numComments": 80, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6865918570879090688", + "reactionTypeCounts": [ + { + "count": 627, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 50, + "reactionType": "MAYBE" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6865918570879090688", + "numLikes": 774, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6865918570879090688", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 774, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "UAUHJf2bSXKf452QGjtWCQ==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6865700558230036480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6865700558230036480", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6865700558230036480)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6865700558230036480)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cop26-les-engagements-climatiques-a-minima-activity-6865700558230036480-6ItY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6865700557693181952", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6865700558230036480", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6865700558230036480,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6865700558230036480,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6865700557693181952", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5d6864c0-a0d9-4f24-aefd-470344998d19", + "trackingId": "ri0suCePlFCRANoulhCp8w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6865700558230036480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7097568852470504826", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676419187469?e=1677240000&v=beta&t=k7NvWak58VvCIFhaAdkkPPlzPQBJByRc-lNnZ6ZUQOU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676419187469?e=1677240000&v=beta&t=Eky2eQwxAas-LUg-0ddWsjfTk0Wdiav-el2fgqz2vVE", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676419187470?e=1677240000&v=beta&t=-3bZ_ZEG4U0cdq4G_trwoquXOvYb1EVUcjof5M86nmg", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676419187470?e=1677240000&v=beta&t=aV9qrIBIyH0fkCy8uWmY44ABVf07XUeHrsIh6Au5BVE", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFlQS6pONxCHA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7097568852470504826)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7097568852470504826)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: COP26 : les engagements climatiques a minima des gestionnaires d'actifs by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/gestion-actifs/cop26-les-engagements-climatiques-a-minima-des-gestionnaires-dactifs-1362121" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "COP26\u00a0: les engagements climatiques a minima des gestionnaires d'actifs" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6865700557693181952,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Mark Carney (ancien gouverneur de la banque centrale de Grande Bretagne) a initi\u00e9 en avril dernier la Glasgow Financial Alliance for Net Zero (GFANZ), pour \"financer la transition\".\n\nCette \"alliance\" a publi\u00e9 le 3 novembre dernier un communiqu\u00e9 de presse affirmant que \"le montant du financement engag\u00e9 pour atteindre 1,5\u00b0C est maintenant \u00e0 l'\u00e9chelle n\u00e9cessaire pour assurer la transition\" (https://lnkd.in/dCVRCCxf ), avec 130.000 milliards d'actifs g\u00e9r\u00e9s par les entit\u00e9s (investisseurs, gestionnaires d'actifs, etc) qui participent \u00e0 l'Alliance.\n\nSuper ! Le monde financier va donc s'organiser pour ne financer que les projets compatibles avec une trajectoire 1,5\u00b0C et pas les autres ?\n\nEn fait c'est un peu plus compliqu\u00e9 que cela : le monde financier d\u00e9clare qu'il veut bien financer... l'action des gouvernements ! En effet, dans un \"appel aux gouvernements du G20 pour passer \u00e0 l'action\" publi\u00e9 il y a peu (https://lnkd.in/d9-ngaux ), la GFANZ donne sa liste de courses en mati\u00e8re de cadre \u00e0 mettre en place pour que la finance joue son r\u00f4le. \n\nIl y en a pour tout le monde : les entreprises doivent publier des indicateurs, les gouvernements arr\u00eater tel type de subventions, les banques centrales et r\u00e9gulateurs mettre un cadre clair, etc. Donc un premier codicille est que la finance veut bien financer... une action qui n'est pas d\u00e9cid\u00e9e par elle. \n\nEnsuite, explique (assez bien) cet article des Echos, les 130 trillions correspondent \u00e0 des investissements dans l'\u00e9conomie actuelle, et non align\u00e9s avec 1,5\u00b0C. Rien ne dit que les membres de l'alliance pourront trouver de quoi les (d\u00e9)placer dans des projets compatibles 1,5 \u00b0C. \n\nEn fait c'est m\u00eame l'inverse qui est certain : tant que l'\u00e9conomie mondiale est \u00e0 3\u00b0C, les actifs de cette \u00e9conomie sont en moyenne \u00e0 la m\u00eame temp\u00e9rature ! Et 130.000 milliards c'est beaucoup trop, compar\u00e9 \u00e0 la taille de l'\u00e9conomie, pour pouvoir trouver de quoi tout mettre sur du 1,5 \u00b0C. Et c'est bien parce que les investisseurs ne sont pas \u00e0 m\u00eame de changer la donne tous seuls que la GFANZ a commenc\u00e9 par demander un gros coup de main aux Etats...\n\n\"Les gestionnaires d'actifs rejoignent tr\u00e8s vite ces alliances mais il n'est pas certain qu'ils comprennent ce que cela implique\" fait remarquer une personne interview\u00e9e dans l'article. Cette phrase rejoint une tribune \u00e9crite il y a d\u00e9sormais quasiment 2 ans sur la validit\u00e9 des d\u00e9clarations des acteurs du secteur financier : https://lnkd.in/gdEjKji\n\nJ'y plaidais pour que ces coalitions (\u00e0 l'\u00e9poque les Principles for Responsible Investing des Nations Unies) refusent tout signataire qui n'aurait pas pris pour lui-m\u00eame un engagement v\u00e9rifi\u00e9 de formation massive et de comptabilit\u00e9 carbone \"au quotidien\" d\u00e9ploy\u00e9e \u00e0 large \u00e9chelle. Cette demande est toujours d'actualit\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6865700557693181952,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6865700558230036480,urn:li:activity:6865700558230036480,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 15, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6865700558230036480,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6865700558230036480,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6865700558230036480", + "threadId": "activity:6865700558230036480", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6865700558230036480", + "urn": "urn:li:activity:6865700558230036480", + "numComments": 18, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6865700558230036480", + "reactionTypeCounts": [ + { + "count": 185, + "reactionType": "LIKE" + }, + { + "count": 26, + "reactionType": "INTEREST" + }, + { + "count": 21, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6865700558230036480", + "numLikes": 237, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6865700558230036480", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 237, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6865600689633038336,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6865600689633038336", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6865600689633038336)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6865600689633038336)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-marc-jancovici-explique-pourquoi-le-activity-6865600689633038336-4ysg?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6865600689058406400", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6865600689633038336", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6865600689633038336,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6865600689633038336,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6865600689058406400", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "nNW5kDXr/48q0dT1EJMAtA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6865600689633038336,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7633765427604485380", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676053332340?e=1677240000&v=beta&t=Iik6lciA_Bk6ErmFf_bla_rPpKiW_l2arWv404pEuBk", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676053332340?e=1677240000&v=beta&t=Q5kGG54otvRcYZ_eMj0VHxVAWDrRLRe7e6WMgg1tk7Q", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676053332340?e=1677240000&v=beta&t=du9_ImNoCCehpWIKQNpYIGbpb2OekRxWNN6VzltCV0A", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676053332340?e=1677240000&v=beta&t=_BfkP30oahFCzg_TAB4fi2i0drUjGEymYLnNwjby2HM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHXagva30sm1w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7633765427604485380)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7633765427604485380)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean-Marc Jancovici explique pourquoi le num\u00e9rique est mauvais pour la plan\u00e8te by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900096069-jean-marc-jancovici-explique-pourquoi-le-numerique-est-mauvais-pour-la-planete" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici explique pourquoi le num\u00e9rique est mauvais pour la plan\u00e8te" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6865600689058406400,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ils sont sympas chez RTL : ils m'ont laiss\u00e9 dire qu'il y avait un petit sujet climat avec le m\u00e9tier... de RTL :). Plus pr\u00e9cis\u00e9ment, ma chronique d'hier a \u00e9t\u00e9 consacr\u00e9e \u00e0 l'empreinte carbone du num\u00e9rique (sujet sur lequel ceux qui ont suivi les travaux du Shift Project n'apprendront rien, mais je me suis dit que la totalit\u00e9 des auditeurs de Calvi et Ruquier n'\u00e9taient pas n\u00e9cessairement dans ce cas).\n\nRTL fait d\u00e9sormais partie, aujourd'hui, de cette galaxie num\u00e9rique : tout ce qui permet \u00e0 un studio de radio de fonctionner, c'est du num\u00e9rique. Tout ce qui permet aux auditeurs d'\u00e9couter (radios, t\u00e9l\u00e9phones, ordinateurs...), c'est du num\u00e9rique ; tout ce qui permet \u00e0 la voix et \u00e0 l'image de transiter entre le studio et les auditeurs (r\u00e9seau de t\u00e9l\u00e9com) c'est du num\u00e9rique ; toute la publicit\u00e9 affich\u00e9e sur le site Internet de RTL qui lui fournit une partie de son financement, c'est du num\u00e9rique.\n\nEt donc, je suis d\u00e9j\u00e0 content d'avoir pu dire sur une radio qui vit de la publicit\u00e9 (notamment pay\u00e9e par les op\u00e9rateurs de t\u00e9l\u00e9phonie) qu'il fallait acheter le moins d'\u00e9lectronique possible. Ca ne p\u00e8sera pas lourd face au message inverse qui sera r\u00e9p\u00e9t\u00e9 bien plus souvent, mais on va dire que c'est mieux que rien !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6865600689058406400,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6865600689633038336,urn:li:activity:6865600689633038336,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 54, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6865600689633038336,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6865600689633038336,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6865600689633038336", + "threadId": "activity:6865600689633038336", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6865600689633038336", + "urn": "urn:li:activity:6865600689633038336", + "numComments": 110, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6865600689633038336", + "reactionTypeCounts": [ + { + "count": 1234, + "reactionType": "LIKE" + }, + { + "count": 60, + "reactionType": "PRAISE" + }, + { + "count": 44, + "reactionType": "MAYBE" + }, + { + "count": 27, + "reactionType": "INTEREST" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 20, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6865600689633038336", + "numLikes": 1408, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6865600689633038336", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1408, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6865324307174715392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6865324307174715392", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6865324307174715392)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6865324307174715392)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_prenez-aujourdhui-lavion-tranquilles-activity-6865324307174715392-k0zb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6865324306709135360", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6865324307174715392", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6865324307174715392,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6865324307174715392,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6865324306709135360", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "c688Pn4i/VCISpyGm6s0ww==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6865324307174715392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFtcG8u7yF9YQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFtcG8u7yF9YQ", + "artifacts": [ + { + "width": 972, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1636820864325?e=1679529600&v=beta&t=iT5S3octx02jakbzd-Men5aQmbXg8fj4TpsI72cRVuk", + "expiresAt": 1679529600000, + "height": 1456 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1636820865626?e=1679529600&v=beta&t=DgZLbRS5xySCTNOopJOlP4mfszEJ0UZdGsEZOX_Ct4E", + "expiresAt": 1679529600000, + "height": 30 + }, + { + "width": 972, + "fileIdentifyingUrlPathSegment": "1280/0/1636820865626?e=1679529600&v=beta&t=Sy_nBokHB-jejw8NcR4MMW0rc9pGYFPtkZjEw1ArEfc", + "expiresAt": 1679529600000, + "height": 1456 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1636820865626?e=1679529600&v=beta&t=sqn4Uu0poH580E_mve2xO5U8EDD3ie1uXnLf7IPEkWg", + "expiresAt": 1679529600000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1636820865626?e=1679529600&v=beta&t=eynxPnXk7nymm2SX4KiXiVG76PCpskY1pK5kiVO7mHk", + "expiresAt": 1679529600000, + "height": 240 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1636820865626?e=1679529600&v=beta&t=9NHKzdrNz5e7J9cLur-UAwei-VByNKVKK6oZtI5mEx8", + "expiresAt": 1679529600000, + "height": 1198 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFtcG8u7yF9YQ/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "a person holding a sign posing for the camera" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6865324306709135360,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 247, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:164716", + "entityUrn": "urn:li:fs_miniCompany:164716", + "name": "Les Echos", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1614596361150?e=1684972800&v=beta&t=1mOk7v0jlnCgcIswWyYHmIJewK7-gk_r177j-Dwp4tM", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1614596361150?e=1684972800&v=beta&t=rpDGHIGtA_4yGaFUdh9VuXSkC5Jf7cl29bRNg1rsCiA", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1614596361150?e=1684972800&v=beta&t=SZO0sBQXbxYynz8dd9fVa-Jtq8ZS209SRpqIEXlQ3Os", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGU2tYAtnGruQ/company-logo_" + } + }, + "universalName": "les-echos", + "dashCompanyUrn": "urn:li:fsd_company:164716", + "trackingId": "zVwxhzw7RPiNlY6vYNlimA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Prenez (aujourd'hui) l'avion tranquilles, puisque (en 2050) ils s(er)ont neutres ! Easyjet s'engage donc \u00e0 vous accueillir \u00e0 bord d'avions sans CO2 d\u00e8s que ces derniers existeront. Alors ca c'est une promesse qui engage !\n\nCette pub rep\u00e9r\u00e9e dans Les Echos me conduit \u00e0 vous faire les promesses suivantes, et que le Diable m'emporte en enfer si je ne les respecte pas :\n- d\u00e8s que je cours plus vite qu'Ushain Bolt je m'engage \u00e0 participer aux jeux olympiques,\n- d\u00e8s que j'ai autant d'argent qu'Elon Musk je m'engage \u00e0 acheter l'Amazonie pour la pr\u00e9server,\n- d\u00e8s que je suis re\u00e7u \u00e0 l'Acad\u00e9mie fran\u00e7aise je m'engage \u00e0 ne plus faire de fautes d'orthographe,\n- et d\u00e8s que j'ai les d\u00e9put\u00e9s LREM au t\u00e9l\u00e9phone je leur demande pourquoi ils \u00e9taient contre interdire ce genre de pub dans la loi \u00e9nergie-climat !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6865324306709135360,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6865324307174715392,urn:li:activity:6865324307174715392,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 537, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6865324307174715392,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6865324307174715392,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6865324307174715392", + "threadId": "activity:6865324307174715392", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6865324307174715392", + "urn": "urn:li:activity:6865324307174715392", + "numComments": 944, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6865324307174715392", + "reactionTypeCounts": [ + { + "count": 14044, + "reactionType": "LIKE" + }, + { + "count": 1380, + "reactionType": "PRAISE" + }, + { + "count": 707, + "reactionType": "EMPATHY" + }, + { + "count": 299, + "reactionType": "MAYBE" + }, + { + "count": 153, + "reactionType": "APPRECIATION" + }, + { + "count": 123, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6865324307174715392", + "reacted": "LIKE", + "numLikes": 16706, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6865324307174715392", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 16706, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6865265054388887552,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6865265054388887552", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6865265054388887552)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6865265054388887552)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cop26-comment-lasie-tente-de-vaincre-son-activity-6865265054388887552-i2rZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6865265053868810240", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6865265054388887552", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6865265054388887552,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6865265054388887552,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6865265053868810240", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "/YgVsi6UTo6MsZ3c6zPWXw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6865265054388887552,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7269650541893218201", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675705643420?e=1677240000&v=beta&t=0yZnxjYgUc-tT3WhtP0cTZcI6snCS8hsmkPNEWI6dt0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675705643421?e=1677240000&v=beta&t=IOYcP8wE9gGcZrHyEUsgnAq8Q1mMs-VzVSkgHxOTtCI", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675705643421?e=1677240000&v=beta&t=L7fxB4HGyDSksnEFsKDWqVjZRzprd5F5l1AF2DL5Nj8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675705643421?e=1677240000&v=beta&t=dFaUupuBUlvyX2HoJI6fZ9w1B05TIfxN6I9w1jjqor0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHAaeATZNIvXg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7269650541893218201)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7269650541893218201)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: COP26 : comment l'Asie tente de vaincre son addiction au charbon by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/asie-pacifique/cop26-comment-lasie-tente-de-vaincre-son-addiction-au-charbon-1362500" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "COP26\u00a0: comment l'Asie tente de vaincre son addiction au charbon" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6865265053868810240,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pendant longtemps le charbon a \u00e9t\u00e9 consid\u00e9r\u00e9, \u00e0 tort, comme une \u00e9nergie du pass\u00e9 dans le discours public hexagonal. Cela \u00e9tait en fait plut\u00f4t logique si l'on se basait sur le cas de la France, o\u00f9 la derni\u00e8re mine a \u00e9t\u00e9 ferm\u00e9e en 2004, apr\u00e8s une production qui a culmin\u00e9 \u00e0 la fin des ann\u00e9es 1950. \n\nMais cela n'a jamais \u00e9t\u00e9 le cas pour l'humanit\u00e9 dans son ensemble, puisque la production mondiale a augment\u00e9 de 60% entre 2000 et 2019 (en 2020 elle a baiss\u00e9). Ce ph\u00e9nom\u00e8ne a essentiellement pris place en Asie (qui utilise les 3/4 du charbon mondial), et plus encore en Chine, qui consomme \u00e0 elle seule la moiti\u00e9 de ce combustible solide (qui provient pour l'essentiel de ses mines, mais la Chine est aussi le premier importateur mondial de charbon, aux 2/3 en provenance d'Australie et d'Indon\u00e9sie).\n\nM\u00eame si cela n'a toujours pas permis d'inverser la tendance, il faut au moins saluer le fait que d\u00e9sormais la presse a remis cette \u00e9nergie \u00e0 sa juste place, c'est \u00e0 dire au centre du syst\u00e8me \u00e9lectrique mondial (plus d'un tiers de la production \u00e9lectrique).\n\nCe combustible est aussi au centre de nos \u00e9missions de CO2, que ce soit dans les \u00e9missions annuelles (il contribue actuellement \u00e0 plus d'\u00e9missions que le p\u00e9trole) ou en vision cumul\u00e9e depuis 1860 (o\u00f9 il arrive juste devant... la d\u00e9forestation).\n\nIl est enfin au centre de la hausse des \u00e9missions, puisque de 2000 \u00e0 2020 les \u00e9missions de CO2 dues au charbon ont augment\u00e9 - en valeur absolue - deux fois plus que celles du suiveur imm\u00e9diat, le gaz (dont les \u00e9missions ont par ailleurs augment\u00e9 de 60% dans le monde).\n\nPetit probl\u00e8me : une centrale \u00e0 charbon vit 40 ans. Donc si nous voulons viser la neutralit\u00e9 mondiale en 2050, non seulement il ne faut plus ouvrir une seule centrale \u00e0 charbon aujourd'hui, mais nous avons 30 ans pour envoyer \u00e0 la ferraille toutes celles qui existent. \n\nCes derni\u00e8res repr\u00e9sentent une puissance install\u00e9e de plus de 2000 GW, soit environ un tiers de la puissance \u00e9lectrique mondiale. Sachant que le monde moderne est incapable de se passer d'\u00e9lectricit\u00e9 pour fonctionner \"normalement\" (sans \u00e9lectrons, adieu argent, communications, justice, forces de l'ordre, fonctionnement des b\u00e2timents et des transports, et j'en passe) et que l'imm\u00e9diat prime toujours sur l'avenir, il va falloir plus que des d\u00e9clarations d'intention pour arriver \u00e0 s'en d\u00e9barrasser dans les d\u00e9lais. \n\nEt nous n'avons aucune chance d'y arriver dans les d\u00e9lais en nous bouchant le nez sur le nucl\u00e9aire. En prenant position contre la possibilit\u00e9 de d\u00e9velopper en Europe une fili\u00e8re nucl\u00e9aire vigoureuse, l'Allemagne, le Luxembourg, l'Autriche, le Danemark, et le Portugal (https://lnkd.in/dd7N9heR ) viennent de se faire avant tout les alli\u00e9s du charbon, et non avant tout des ENR. Ne nous y trompons pas." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6865265053868810240,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6865265054388887552,urn:li:activity:6865265054388887552,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 42, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6865265054388887552,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6865265054388887552,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6865265054388887552", + "threadId": "activity:6865265054388887552", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6865265054388887552", + "urn": "urn:li:activity:6865265054388887552", + "numComments": 171, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6865265054388887552", + "reactionTypeCounts": [ + { + "count": 981, + "reactionType": "LIKE" + }, + { + "count": 108, + "reactionType": "INTEREST" + }, + { + "count": 69, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6865265054388887552", + "numLikes": 1187, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6865265054388887552", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1187, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6865224567254745088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6865224567254745088", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6865224567254745088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6865224567254745088)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_chronique-bd-interview-de-christophe-blain-activity-6865224567254745088-u6Qu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6865224566881447936", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6865224567254745088", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6865224567254745088,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6865224567254745088,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6865224566881447936", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "0TvgUK5a5F/mxotTq1vIQg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6865224567254745088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7500875421514338937", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676614247802?e=1677240000&v=beta&t=oBAr4BOwkZ_exQopPSdBHGUjo9hPP6zibhxNgwyM_Eo", + "expiresAt": 1677240000000, + "height": 532 + }, + { + "width": 1141, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676614247802?e=1677240000&v=beta&t=yYmWDMRV02FEHs-pKIA4Uw2y-lmjCe7hewBhD8p4Rpo", + "expiresAt": 1677240000000, + "height": 759 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676614247802?e=1677240000&v=beta&t=rEVKJqUiJb74V4WohMQgMicp1P2d7NNxfmisgkGjXNk", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676614247802?e=1677240000&v=beta&t=LFnVrZZd5VZVQecGCDVJQUOPWvZfijU8aZc0GASBKCY", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGro7NIgBLjOA/articleshare-shrink_" + }, + "displayAspectRatio": 0.665 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7500875421514338937)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7500875421514338937)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "paris-normandie.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Chronique BD. Interview de Christophe Blain, auteur de \u00ab Le monde sans fin \u00bb by paris-normandie.fr", + "actionTarget": "https://www.paris-normandie.fr/id249381/article/2021-11-11/chronique-bd-interview-de-christophe-blain-auteur-de-le-monde-sans-fin" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Chronique BD. Interview de Christophe Blain, auteur de \u00ab Le monde sans fin \u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6865224566881447936,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Chacun son tour : Christophe Blain c\u00e9l\u00e8bre \u00e0 sa mani\u00e8re le 11 novembre en donnant une interview \u00e0 Paris Normandie \u00e0 propos du \"Monde sans Fin\". La r\u00e9ponse \u00e0 la premi\u00e8re question vous permettra de comprendre que c'est \u00e0 lui que l'on doit le titre et pourquoi !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6865224566881447936,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6865224567254745088,urn:li:activity:6865224567254745088,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 23, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6865224567254745088,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6865224567254745088,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6865224567254745088", + "threadId": "activity:6865224567254745088", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6865224567254745088", + "urn": "urn:li:activity:6865224567254745088", + "numComments": 36, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6865224567254745088", + "reactionTypeCounts": [ + { + "count": 284, + "reactionType": "LIKE" + }, + { + "count": 13, + "reactionType": "EMPATHY" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6865224567254745088", + "numLikes": 318, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6865224567254745088", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 318, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6864940565331492864,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6864940565331492864", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6864940565331492864)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6864940565331492864)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-cop-26-sengage-%C3%A0-recycler-les-promesses-activity-6864940565331492864-Yjri?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6864940564912066560", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6864940565331492864", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6864940565331492864,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6864940565331492864,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6864940564912066560", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "icQJRgu/jEbIMBg7O1bEog==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6864940565331492864,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8917572681172699343", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675853891228?e=1677240000&v=beta&t=nk2FJIt9q-F9R5pUUwFqgV2fqeeyRN6MpVRG4vCdKPY", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1199, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675853891228?e=1677240000&v=beta&t=g6u57T3rhNpn0DiHtgt7S6gxDLYerBFRi7_T2pFlvOw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675853891228?e=1677240000&v=beta&t=0cdDD_FVvZeTrEgF2kySbrDhzfns-ykgydc5euGohfQ", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675853891228?e=1677240000&v=beta&t=sB_B3tM632R4dF-sMhhAp3abzwrNF4Kg2TZ4x3KPfo8", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGDOsmx5VcnYw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8917572681172699343)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8917572681172699343)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "legorafi.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La COP 26 s\u2019engage \u00e0 recycler les promesses des autres COP by legorafi.fr", + "actionTarget": "https://www.legorafi.fr/2021/11/08/la-cop-26-sengage-a-recycler-les-promesses-des-autres-cop/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La COP 26 s\u2019engage \u00e0 recycler les promesses des autres COP" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6864940564912066560,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans la s\u00e9rie \"il vaut parfois mieux en rire qu'en pleurer\", le Gorafi propose un bilan de la COP qui en vaut bien un autre... et qui, h\u00e9las, est en plus relativement exact.\n\nRappelons que la seule COP qui ait vraiment produit des r\u00e9sultats est celle de Copenhague, o\u00f9 sont n\u00e9s les 2\u00b0C de limitation de la temp\u00e9rature, le fonds vert, la clause de dommages, et en fait toutes les dispositions de l'accord de Paris. Et ces r\u00e9sultats ont \u00e9t\u00e9 obtenus parce que cette COP tr\u00e8s particuli\u00e8re a \u00e9t\u00e9 le th\u00e9\u00e2tre d'une esp\u00e8ce d'OPA du G20 sur les Nations Unies pendant la nuit du Jeudi au Vendredi de la 2\u00e8 semaine.\n\nIronie de l'histoire, cette COP unanimement qualifi\u00e9e d'\u00e9chec a \u00e9t\u00e9 en fait la seule disruptive. L'avis du Gorafi sur la COP 26 en vaut donc bien un autre, et n'est peut-\u00eatre pas le plus inappropri\u00e9 qui soit !\n\nSi nous voulons que cela change, c'est devant notre porte qu'il faut commencer \u00e0 agir, car le processus onusien de la Convention Climat n'est en fait pas pilot\u00e9 par un chef (le pr\u00e9sident de la COP distribue la parole, mais ne propose pas de projets de r\u00e9solutions r\u00e9dig\u00e9s de son propre chef, un peu comme le ferait un syndic de copropri\u00e9t\u00e9). La COP ent\u00e9rine ce que les \u00e9tats adh\u00e9rents au trait\u00e9 disent \u00eatre pr\u00eats \u00e0 faire.\n\nLa COP sera donc r\u00e9ussie le jour o\u00f9 les Etats participants auront l'absolue certitude que le probl\u00e8me est en train de se r\u00e9gler chez eux \u00e0 la bonne vitesse. D'ici l\u00e0, il serait dangereux de faire d'une \"COP r\u00e9ussie\" le seul signal qui d\u00e9clenche le passage \u00e0 l'action." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6864940564912066560,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6864940565331492864,urn:li:activity:6864940565331492864,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 31, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6864940565331492864,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6864940565331492864,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6864940565331492864", + "threadId": "activity:6864940565331492864", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6864940565331492864", + "urn": "urn:li:activity:6864940565331492864", + "numComments": 36, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6864940565331492864", + "reactionTypeCounts": [ + { + "count": 1023, + "reactionType": "LIKE" + }, + { + "count": 55, + "reactionType": "PRAISE" + }, + { + "count": 54, + "reactionType": "INTEREST" + }, + { + "count": 26, + "reactionType": "EMPATHY" + }, + { + "count": 21, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6864940565331492864", + "numLikes": 1188, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6864940565331492864", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1188, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6864864107334537216,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6864864107334537216", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6864864107334537216)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6864864107334537216)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_depuis-maintenant-plusieurs-ann%C3%A9es-carbon4-activity-6864864107334537216-ypBH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6864864106743140352", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6864864107334537216", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6864864107334537216,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6864864107334537216,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6864864106743140352", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "AORnTzMeydcfvv3qTpwL3w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6864864107334537216,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQGgsSXtgS1Svw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQGgsSXtgS1Svw", + "artifacts": [ + { + "width": 1766, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1636711142587?e=1679529600&v=beta&t=65mJb9VF6PxoA1k4cq2kiOhyvpPIlvpzpi_HEjH3xik", + "expiresAt": 1679529600000, + "height": 1286 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1636711144948?e=1679529600&v=beta&t=PlpgFlkR8gSZU57WVtns2-MhzuG3NYv8keCAnztqGdM", + "expiresAt": 1679529600000, + "height": 15 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1636711144948?e=1679529600&v=beta&t=enHWgCXZUtvgkFu3KIw_zCRRk0vFmRH6Sb4p8i7X-Pk", + "expiresAt": 1679529600000, + "height": 932 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1636711144948?e=1679529600&v=beta&t=MqmckU6YMd8uls41bwKPJx37M7r-IfwbxGzRSCMHNI8", + "expiresAt": 1679529600000, + "height": 350 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1636711144948?e=1679529600&v=beta&t=U3WtoTXKdwDTiGnGCbq2NDgEA_GDRse9o6MqbtjEfKU", + "expiresAt": 1679529600000, + "height": 117 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1636711144948?e=1679529600&v=beta&t=nJlYncNdhPZi4CbO6pT1yUcF0IxMH2SyxJ0UDptAexI", + "expiresAt": 1679529600000, + "height": 583 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQGgsSXtgS1Svw/feedshare-shrink_" + }, + "displayAspectRatio": 0.7281993204983013 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6864864106743140352,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 36, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "bA3H/y6jTO+04wy0sH5JUA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 388, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "zTCWuhjsSCiTqAz57VDFWA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Depuis maintenant plusieurs ann\u00e9es, Carbon4 Finance impl\u00e9mente une m\u00e9thode d\u00e9nomm\u00e9e Carbon Impact Analytics, qui permet d'analyser, une par une, des milliers d'entreprises et de pays pour \u00e9valuer leur d\u00e9pendance aux \u00e9missions de gaz \u00e0 effet de serre et leur contribution \u00e0 la d\u00e9carbonation de l'\u00e9conomie.\n\nDepuis l'origine, cette m\u00e9thode est coh\u00e9rente avec un autre r\u00e9f\u00e9rentiel port\u00e9 par Carbone 4 : Net Zero Initiative (https://lnkd.in/db7JzB2q ), en tenant compte, de mani\u00e8re non fongible, \u00e0 la fois des \u00e9missions induites sur l'ensemble de la chaine de valeur (donc en ne se limitant pas aux \u00e9missions directes des entreprises, qui ne disent pas grand chose sur leur viabilit\u00e9 dans un monde bas carbone : https://lnkd.in/djQW4YAk ) et des \u00e9missions \u00e9vit\u00e9es, qui d\u00e9signent, lorsqu'elles existent, les baisses d'\u00e9missions \u00e0 l'aval quand l'entreprise consid\u00e9r\u00e9e vend un produit. \n\nUn exemple typique est un fabriquant de v\u00e9los qui vend \u00e0 des particuliers qui mettent leur voiture \u00e0 la casse : apr\u00e8s vente, les \u00e9missions du particulier consid\u00e9r\u00e9 sont plus basses qu'avant. \n\nLe guide d\u00e9crivant cette m\u00e9thode vient d'\u00eatre mis \u00e0 jour : https://lnkd.in/gZX5wkJ\n\nOn va dire que c'est une de nos contributions \u00e0 la COP 26 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6864864106743140352,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6864864107334537216,urn:li:activity:6864864107334537216,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 12, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6864864107334537216,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6864864107334537216,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6864864107334537216", + "threadId": "activity:6864864107334537216", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6864864107334537216", + "urn": "urn:li:activity:6864864107334537216", + "numComments": 29, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6864864107334537216", + "reactionTypeCounts": [ + { + "count": 305, + "reactionType": "LIKE" + }, + { + "count": 26, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6864864107334537216", + "numLikes": 365, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6864864107334537216", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 365, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6864615561486180352,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6864615561486180352", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6864615561486180352)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6864615561486180352)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-pr%C3%A9sente-son-rapport-final-sur-lavenir-activity-6864615561486180352-0qGj?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6864615560878006272", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6864615561486180352", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6864615561486180352,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6864615561486180352,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6864615560878006272", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "/J7qGS8PpGKBxtisjlWmxw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6864615561486180352,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7715518176700838575", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676282012189?e=1677240000&v=beta&t=fwJuEmix-DeEDyYQ-B3o_9tGQea0ff4TKoKNodD2_zY", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676282012189?e=1677240000&v=beta&t=mwu7xA4wfC65HUnAco0NwuFyZQpAP694abbuYqEOcWo", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676282012189?e=1677240000&v=beta&t=ydEGQ9lutWhxxiAu55rBrYItbXKkv6-itaiT4bE6ltg", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676282012189?e=1677240000&v=beta&t=wWrKm8zzKRS7uhH8N1JxBVv4UiUqyYrVtBsSzAM_d74", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFYGD94Uao2qQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7715518176700838575)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7715518176700838575)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift pr\u00e9sente son rapport final sur l'avenir de l'industrie automobile by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-transition-opportunite-industrie-automobile-rapport-final-jeudi-18-novembre-18h/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift pr\u00e9sente son rapport final sur l'avenir de l'industrie automobile" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6864615560878006272,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Que doit devenir l'industrie automobile dans une \u00e9conomie qui se d\u00e9carbone ? La voiture, c'est plus de 2 millions d'emplois dans l'Hexagone si l'on compte \"au sens large\", en incluant les garagistes, distributeurs, am\u00e9nageurs d'infrastructures, etc. \n\nDu reste, la \"fili\u00e8re auto\" a toujours largement fait valoir sa part dans l'emploi pour r\u00e9sister aux contraintes qu'il serait souhaitable de lui imposer au regard de la lutte contre le changement climatique.\n\nL'\u00e9lectrification n'\u00e9vacue pas le d\u00e9bat, puisqu'elle demande moins de main d'oeuvre pour la construction (une voiture \u00e9lectrique est plus simple qu'une thermique) et beaucoup moins pour l'entretien. Du coup, quel avenir peut-on imaginer pour cette fili\u00e8re avec de moins en moins de combustibles fossiles en g\u00e9n\u00e9ral et de p\u00e9trole en particulier ?\n\nDans le cadre du plan de transformation de l'\u00e9conomie fran\u00e7aise, The Shift Project vous convie \u00e0 la pr\u00e9sentation du volet \"industrie automobile\" Jeudi 18 novembre \u00e0 18h.\n\nInscription libre et gratuite (mais inscription quand m\u00eame !)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6864615560878006272,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6864615561486180352,urn:li:activity:6864615561486180352,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 20, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6864615561486180352,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6864615561486180352,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6864615561486180352", + "threadId": "activity:6864615561486180352", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6864615561486180352", + "urn": "urn:li:activity:6864615561486180352", + "numComments": 31, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6864615561486180352", + "reactionTypeCounts": [ + { + "count": 356, + "reactionType": "LIKE" + }, + { + "count": 56, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6864615561486180352", + "numLikes": 445, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6864615561486180352", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 445, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6864513383119523840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6864513383119523840", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6864513383119523840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6864513383119523840)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_earths-value-is-being-left-off-the-balance-activity-6864513383119523840-SJmU?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6864513382616199168", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6864513383119523840", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6864513383119523840,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6864513383119523840,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6864513382616199168", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "sqhu8XmK4d/0EZSejnqtzw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6864513383119523840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7473676761585842444", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675709926630?e=1677240000&v=beta&t=a029v7PPWkdnEVpjBggiCPon2XmnpxMhkyknHM_SQkk", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675709926631?e=1677240000&v=beta&t=Gh6OiMemRTrAQOhXhwxwLiLKRjB7Ms412iwiWawsP34", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675709926631?e=1677240000&v=beta&t=PCtqOi7DaUmfhfiMaLOcxzffS4L8y1PeFj3P0vPaBPs", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675709926631?e=1677240000&v=beta&t=xTRiZkGfl70TtDvBEnjJ6Ds5iByEhco2-bTyfkgCDtg", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGDJoPGdq0nyQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7473676761585842444)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7473676761585842444)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "bloomberg.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Earth\u2019s Value Is Being Left Off the Balance Sheet by bloomberg.com", + "actionTarget": "https://www.bloomberg.com/opinion/articles/2021-11-04/cop26-climate-change-accounting-leaves-out-natural-capital" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Earth\u2019s Value Is Being Left Off the Balance Sheet" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6864513382616199168,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 2624, + "length": 14, + "miniProfile": { + "firstName": "Bruno", + "lastName": "Le Maire", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "occupation": "Ministre de l\u2019\u00c9conomie, des Finances et de la Souverainet\u00e9 industrielle et num\u00e9rique", + "objectUrn": "urn:li:member:489338904", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB0quBgBbD-YPVqV3eIbZW3czb1DM7B8eQc", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1615820384690?e=1681948800&v=beta&t=1lSONwEqNZ6YCfsSa_SSdMyy3lRIBlt7HnIa8FhbD_0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1615820384690?e=1681948800&v=beta&t=mXrkcvswYDvA5nxrWnHwv0uRHbVbSrbb-YTCHNh3hZs", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFtlzemSILDlQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "brunolemaire", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650470576103?e=1681948800&v=beta&t=grYiuKFOw0Vps9r0gskTHNlsABqKydJY1BD9PqrCOZE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650470576103?e=1681948800&v=beta&t=_dq5B-XcARKywCPZ39sHI46v2wiioUaRLXHB6EjQEZA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650470576103?e=1681948800&v=beta&t=hpGqyzWjIXtO01PmwOzhVATdVIHajDaeNdSiiN6I2KY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650470576103?e=1681948800&v=beta&t=sDT3g5ZnR6kL5Ks0S37qtLS2Z-UNhM119fiXH0t1h8I", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQH2hSTPjrAuKw/profile-displayphoto-shrink_" + } + }, + "trackingId": "yU5YuHeFReKUui/2IDOeqA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Si Bloomberg commence \u00e0 dire que les chiffres financiers n'ont qu'un int\u00e9r\u00eat limit\u00e9, o\u00f9 allons nous :) ?\n\nCette tribune - sign\u00e9e d'un physicien, donc moins \u00e9tonnante que si elle l'\u00e9tait d'un financier pur jus - rappelle que si nous appliquions \u00e0 un m\u00e9nage les conventions comptables en vigueur, nous consid\u00e9rerions que tout va de mieux en mieux pour lui parce que son compte en banque se remplit plus vite qu'il ne d\u00e9pense tout simplement parce qu'il vend le toit, les fen\u00eatres et la plomberie de son logement.\n\nDe fait, la convention comptable ne compte pour rien l'environnement sans lequel il n'y a pas d'activit\u00e9s \u00e9conomiques qui tiennent (voir https://lnkd.in/gPsGK-F , ou https://lnkd.in/dtHn5pbD pour la m\u00eame explication illustr\u00e9e par Christophe Blain !).\n\nApr\u00e8s, il ne faut pas \u00eatre grand clerc pour comprendre que si un actif est valoris\u00e9 \u00e0 z\u00e9ro, sa destruction vaut par convention... z\u00e9ro. C'est la raison pour laquelle il sera \u00e0 tout jamais impossible de justifier de la pertinence d'agir pour pr\u00e9server l'environnement au nom d'un b\u00e9n\u00e9fice \u00e9conomique. \n\nSi nous voulons agir, il faut accepter que le raisonnement \"s'inverse\" entre \u00e9conomie et environnement : d'abord nous nous donnons des objectifs physiques - en terme d'\u00e9missions maximales, d'espace maximal consomm\u00e9, de ressources consomm\u00e9es (m\u00e9taux, bois...), et ensuite seulement nous regardons quelle \"\u00e9conomie\" peut tenir dans cette boite physique. C'est incidemment cette d\u00e9marche que nous avons tent\u00e9 de commencer \u00e0 conceptualiser dans le plan de transformation de l'\u00e9conomie fran\u00e7aise (https://lnkd.in/dNARPrU ).\n\nTant que nous ferons l'inverse, nous irons tout droit non vers le monde infini, qui n'existe pas, mais vers la r\u00e9gulation involontaire. Cette derni\u00e8re porte de vilains noms : contraction involontaire de la population (famines ou maladies) ou de l'\u00e9conomie (crise), et menacera la paix (qui est un bien pr\u00e9cieux - ce 11 novembre est l\u00e0 pour le rappeler) et la d\u00e9mocratie.\n\nDans les mesures qui seraient donc utiles pour avancer, il y a notamment de former la totalit\u00e9 des gens qui \"pensent \u00e9conomie\" aux enjeux \u00e9nergie climat. Cela ne prend que 20h par personne ; les outils existent (vid\u00e9os, Fresque du Climat, livres...), et c'est une des conditions non contournables d'une politique pertinente de pr\u00e9servation du substrat physique et biologique sur lequel l'humanit\u00e9, telle une colonie de bact\u00e9ries, prosp\u00e8re.\n\nDans les personnes qui \"pensent \u00e9conomie\" il y a certes les gestionnaires d'entreprises, qui devraient s'y mettre un peu plus s\u00e9rieusement qu'aujourd'hui (https://lnkd.in/ea7CrktT ) mais aussi... leur minist\u00e8re de tutelle. \n\nBruno Le Maire, partant pour mettre en oeuvre un programme de formation massif \u00e0 Bercy :) ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6864513382616199168,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6864513383119523840,urn:li:activity:6864513383119523840,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 43, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6864513383119523840,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6864513383119523840,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6864513383119523840", + "threadId": "activity:6864513383119523840", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6864513383119523840", + "urn": "urn:li:activity:6864513383119523840", + "numComments": 65, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6864513383119523840", + "reactionTypeCounts": [ + { + "count": 1129, + "reactionType": "LIKE" + }, + { + "count": 91, + "reactionType": "PRAISE" + }, + { + "count": 87, + "reactionType": "INTEREST" + }, + { + "count": 25, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "APPRECIATION" + }, + { + "count": 17, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6864513383119523840", + "numLikes": 1371, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6864513383119523840", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1371, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6864258987521531904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6864258987521531904", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6864258987521531904)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6864258987521531904)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_ma-chronique-de-samedi-dernier-sur-rtl-a-activity-6864258987521531904-7Qvi?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6864258986783322113", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6864258987521531904", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6864258987521531904,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6864258987521531904,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6864258986783322113", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "tGA555UvSYYwtf4DG/1wwA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6864258987521531904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHTHlXOP0sYvA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHTHlXOP0sYvA", + "artifacts": [ + { + "width": 1220, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1636566872975?e=1679529600&v=beta&t=A2mAimG0kaxFkUG2bTSMc-XTcP3-pqpBRP9m8ir6OBA", + "expiresAt": 1679529600000, + "height": 916 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1636566872978?e=1679529600&v=beta&t=WqR6j4Gx343u7AHmvQUacr2qWIAbls2DBb7ZEFRKq_w", + "expiresAt": 1679529600000, + "height": 15 + }, + { + "width": 1220, + "fileIdentifyingUrlPathSegment": "1280/0/1636566872978?e=1679529600&v=beta&t=wAaNjjtxJR4IIKd-oQ0MWU4NeFadh3XJxk8zM0nAkRc", + "expiresAt": 1679529600000, + "height": 916 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1636566872978?e=1679529600&v=beta&t=y6ltg-ExXIXxY4d2zn8uKaVbK1UvpvxuHezdXDcHJos", + "expiresAt": 1679529600000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1636566872978?e=1679529600&v=beta&t=jOT-a6xJgUecKPORNwPLmw0H9YpuvRx0W7YXHwMGi6w", + "expiresAt": 1679529600000, + "height": 120 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1636566872978?e=1679529600&v=beta&t=92vAxDbgNP5vIq15gbl26KoJDR6_wuaYyZk9oKxcDi0", + "expiresAt": 1679529600000, + "height": 600 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHTHlXOP0sYvA/feedshare-shrink_" + }, + "displayAspectRatio": 0.7508196721311475 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "a dirt path in a wooded area" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6864258986783322113,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ma chronique de Samedi dernier sur RTL a \u00e9t\u00e9 consacr\u00e9e \u00e0 la for\u00eat : https://lnkd.in/dFnEg_mW\n\nPourquoi maintenant ? Parce que viennent de s'ouvrir dans notre pays les \"assises de la for\u00eat et du bois\", au cours desquelles 4 groupes de travail vont devoir formuler des propositions concernant le r\u00f4le de la for\u00eat et du bois comme puits de carbone, comme r\u00e9servoir de biodiversit\u00e9, comme ressource \u00e9conomique, et comme \"objet territorial\" : https://lnkd.in/dKhMREVn\n\nCouvrant 25% du territoire m\u00e9tropolitain, les arbres pont longtemps repr\u00e9sent\u00e9, avec la pierre et un peu de fer, la seule ressource \u00e0 notre disposition pour b\u00e2tir, nous d\u00e9placer (charrettes, navires...), fa\u00e7onner notre mobilier et nombre d'outils.\n\nL'arriv\u00e9e du charbon (qui a permis de produire de l'acier en masse et d'alimenter les po\u00eales), du p\u00e9trole (qui nous a donn\u00e9 le plastique) puis du gaz (chauffage) les a ensuite rel\u00e9gu\u00e9s au second plan comme mat\u00e9riau de construction ou comme combustible. \n\nIl restait cependant une fonction r\u00e9cr\u00e9ative, qui a pris de plus en plus d'importance au 20\u00e8 si\u00e8cle. Cette fonction - qui demande que les arbres restent debout - est d\u00e9sormais antagoniste avec la production de bois d'oeuvre, qui a retrouv\u00e9 un second souffle avec le souhait de d\u00e9carboner la construction, puisqu'il faut bien couper les arbres pour en faire des poutres !\n\nVient se rajouter \u00e0 cela une difficult\u00e9 majeure : le changement climatique. Ce dernier va mettre \u00e0 mal nombre d'esp\u00e8ces (voir \u00e0 ce propos le tr\u00e8s bon site https://climessences.fr/ qui permet de voir comment se d\u00e9placeront les zones favorables \u00e0 une esp\u00e8ce donn\u00e9e), ce qui pose un cas de conscience : faut-il couper pr\u00e9matur\u00e9ment des arbres qui vont mourir de toute fa\u00e7on pour planter \u00e0 la place des esp\u00e8ces qui r\u00e9sisteront au climat futur ? \n\nEn 3 minutes, il n'\u00e9tait \u00e9videmment pas question de donner des r\u00e9ponses. Je me suis content\u00e9 de lister (une partie) des questions, qui n'int\u00e9ressent malheureusement pas suffisamment les pouvoirs publics pour que nous puissions arbitrer au mieux ce que nous faisons du 2\u00e8 massif europ\u00e9en (et probablement le plus diversifi\u00e9). On ne sait malheureusement pas faire une licorne \u00e0 un milliard avec un ch\u00eane ou un \u00e9pic\u00e9a 1.0 ..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6864258986783322113,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6864258987521531904,urn:li:activity:6864258987521531904,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6864258987521531904,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6864258987521531904,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6864258987521531904", + "threadId": "activity:6864258987521531904", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6864258987521531904", + "urn": "urn:li:activity:6864258987521531904", + "numComments": 47, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6864258987521531904", + "reactionTypeCounts": [ + { + "count": 506, + "reactionType": "LIKE" + }, + { + "count": 39, + "reactionType": "INTEREST" + }, + { + "count": 36, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6864258987521531904", + "numLikes": 595, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6864258987521531904", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 595, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6864163018092097536,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6864163018092097536", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6864163018092097536)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6864163018092097536)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-interview-dans-die-welt-allemagne-en-activity-6864163018092097536-xnpU?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6864163017743982592", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6864163018092097536", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6864163018092097536,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6864163018092097536,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6864163017743982592", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "8zD6m7yAjozAMyOBTvNIuw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6864163018092097536,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7261623223250877143", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676005642054?e=1677240000&v=beta&t=4wqXBeZ9EhezeRz3_yHJvUj3fOYbrlrUd0reoe9ubbQ", + "expiresAt": 1677240000000, + "height": 464 + }, + { + "width": 818, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676005642054?e=1677240000&v=beta&t=ak5vdW-G1QE_9Q8AuX5jWbyo7NYWH0OHcLmK60-PasY", + "expiresAt": 1677240000000, + "height": 474 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676005642054?e=1677240000&v=beta&t=Dk4gLvhbFWjpSla2JZJzoqyqQ-KUMb3oMSbRap6L7oQ", + "expiresAt": 1677240000000, + "height": 93 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676005642054?e=1677240000&v=beta&t=h9K-mtTYdSW5R3VmAgz9tWTpjirEUQaf3ki3jTJbh2Q", + "expiresAt": 1677240000000, + "height": 278 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEaLgM7k5OyNg/articleshare-shrink_" + }, + "displayAspectRatio": 0.58 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7261623223250877143)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7261623223250877143)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 9 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Une interview dans Die Welt (Allemagne) en novembre 2021 by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/interviews/une-interview-dans-die-welt-allemagne-en-novembre-2021/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Une interview dans Die Welt (Allemagne) en novembre 2021" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6864163017743982592,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "ll n'y a d\u00e9cid\u00e9ment aucune morale en ce bas monde : \u00e0 force de critiquer la strat\u00e9gie allemande sur le nucl\u00e9aire, cela me vaut... la possibilit\u00e9 de franchir virtuellement le Rhin, avec une interview dans Die Welt, un des 3 grands quotidiens allemands.\n\nCette interview est, \u00e9tonnamment puisque la BD n'est pas disponible dans la langue de Goethe, une cons\u00e9quence de la parution du \"Monde sans Fin\", o\u00f9 il est certes question de nucl\u00e9aire, mais sur une vingtaine de pages sur 200, en gros. \n\nL'interview elle-m\u00eame concerne beaucoup l'atome, mais pas que. Et j'ai mis en ligne le texte en fran\u00e7ais que j'ai envoy\u00e9 au journal, pas la version allemande, qui a \u00e9t\u00e9 r\u00e9alis\u00e9e par le journal. J'esp\u00e8re qu'elle ne diff\u00e8re pas trop de ce que j'ai r\u00e9pondu !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6864163017743982592,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6864163018092097536,urn:li:activity:6864163018092097536,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 31, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6864163018092097536,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6864163018092097536,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6864163018092097536", + "threadId": "activity:6864163018092097536", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6864163018092097536", + "urn": "urn:li:activity:6864163018092097536", + "numComments": 45, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6864163018092097536", + "reactionTypeCounts": [ + { + "count": 609, + "reactionType": "LIKE" + }, + { + "count": 62, + "reactionType": "INTEREST" + }, + { + "count": 47, + "reactionType": "MAYBE" + }, + { + "count": 24, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6864163018092097536", + "numLikes": 756, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6864163018092097536", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 756, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6863873826669789184,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6863873826669789184", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6863873826669789184)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6863873826669789184)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sortie-du-nucl%C3%A9aire-les-centrales-%C3%A0-gaz-activity-6863873826669789184-U6mh?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6863873825902219264", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6863873826669789184", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6863873826669789184,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6863873826669789184,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6863873825902219264", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "RuLOwlAwyA0alxH1/dliVQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6863873826669789184,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7121957494098150162", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675528835194?e=1677240000&v=beta&t=F_QffJnqrEyQDtIr5OEH4ifjZhvX6WkRSmzw598osj0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1248, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675528835194?e=1677240000&v=beta&t=fKa8hccMJMKf6xrlrQX15ftWtcIHSujGAIi7ktwS7GU", + "expiresAt": 1677240000000, + "height": 702 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675528835194?e=1677240000&v=beta&t=0lU86jl4eDlJhADvxeJneX2yOednebsosFPflWZdwGA", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675528835194?e=1677240000&v=beta&t=rtflaCZS03JUyZaHL8Ve4M_5JJQzHFaB8iz0MRYyhCY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGJFlpiTIIdyg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7121957494098150162)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7121957494098150162)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtbf.be \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Sortie du nucl\u00e9aire : les centrales \u00e0 gaz des Awirs et de Vilvorde vont recevoir des subsides by rtbf.be", + "actionTarget": "https://www.rtbf.be/info/belgique/detail_sortie-du-nucleaire-les-centrales-a-gaz-des-awirs-et-de-vilvorde-vont-recevoir-des-subsides?id=10870819" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Sortie du nucl\u00e9aire\u00a0: les centrales \u00e0 gaz des Awirs et de Vilvorde vont recevoir des subsides" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6863873825902219264,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A la veille de la COP, la Belgique a annonc\u00e9 qu'elle allait subventionner 10 \u00e0 30 Mt de CO2 suppl\u00e9mentaires par an en aidant des centrales \u00e0 gaz pour prendre le relais d'un nucl\u00e9aire ferm\u00e9 pr\u00e9matur\u00e9ment pour cause \"non technique\" : https://lnkd.in/dJpxXF9N\n\nTout comme Hollande avait fait pr\u00e9c\u00e9der la loi de transition de 2015 d'un \"d\u00e9bat\" dont la conclusion sur le nucl\u00e9aire (il faut le baisser \u00e0 50%) \u00e9tait \u00e9crite d'avance (c'\u00e9tait une promesse de campagne), le gouvernement belge a fait pr\u00e9c\u00e9der sa d\u00e9cision - elle aussi promise politiquement - d'un rapport rendu par le Conseil Sup\u00e9rieur de la Sant\u00e9 qui conclut que \"(...) sur le plan environnemental, \u00e9thique et sanitaire, l\u2019\u00e9nergie nucl\u00e9aire de fission, telle que d\u00e9ploy\u00e9e actuellement, ne peut pas pr\u00e9tendre satisfaire aux principes du d\u00e9veloppement durable.\" : https://lnkd.in/dByJZQyT\n\nLa lecture de cet \"avis scientifique\" est cependant une grande source d'\u00e9tonnement. Tout d'abord une profession enti\u00e8re est explicitement accus\u00e9e de collusion sans preuves, au sein du \u00a7 1.5 (sur les risques sur la sant\u00e9). Il est \u00e9crit que \"L\u2019\u00e9valuation des effets des radiations ionisantes sur la sant\u00e9 humaine est en pratique concentr\u00e9e dans deux organismes internationaux (...) Une telle concentration dans des groupes \u00e0 la composition tr\u00e8s r\u00e9duite (moins de 30 membres \u00e0 l\u2019UNSCEAR et une douzaine dans l\u2019ICRP) pr\u00e9sente le risque de g\u00e9n\u00e9rer une sorte d\u2019effet club (...) l\u2019expertise concernant la sant\u00e9 et l\u2019environnement pr\u00e9sente, dans le monde nucl\u00e9aire, de s\u00e9rieux probl\u00e8mes d\u2019ind\u00e9pendance\".\n\nCes affirmations sont d'une part factuellement fausses (il existe des - dizaines de ? - milliers de m\u00e9decins \u00e9tudiant les effets des rayonnements ionisants sur la sant\u00e9 dans des centaines de labos dans le monde), et d'autre part pour mettre \u00e0 l'index un organisme des Nations Unies (l'UNSCEAR) qui a le m\u00eame mandat que le GIEC (il synth\u00e9tise et non \u00e9tudie) il faut des faits opposables qui ne figurent nulle part dans le document. Incidemment les climatosceptiques sont aussi les champions de la th\u00e9orie du complot chez les chercheurs...\n\nEnsuite, l'information de cet \"avis\" n'est g\u00e9n\u00e9ralement pas sourc\u00e9e. Rares sont les affirmations \u00e0 caract\u00e8re technique ou scientifique dans le corps du texte qui renvoient \u00e0 des r\u00e9f\u00e9rences pr\u00e9cises (en fin de document ou via des notes en bas de page), alors qu'il y a une tr\u00e8s abondante litt\u00e9rature scientifique sur la question (voir commentaire). La liste de r\u00e9f\u00e9rences \u00e0 la fin du document n'est pas num\u00e9rot\u00e9e, et le corps du rapport ne s'y r\u00e9f\u00e8re pas.\n\nQuoi qu'il en soit la Belgique va \u00e9mettre plus avec de l'argent public. Dommage que les r\u00e8gles europ\u00e9ennes ne conduisent pas en pareil cas \u00e0 des amendes bien plus s\u00e9v\u00e8res qu'en cas de d\u00e9passement du d\u00e9ficit budg\u00e9taire..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6863873825902219264,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6863873826669789184,urn:li:activity:6863873826669789184,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 58, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6863873826669789184,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6863873826669789184,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6863873826669789184", + "threadId": "activity:6863873826669789184", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6863873826669789184", + "urn": "urn:li:activity:6863873826669789184", + "numComments": 84, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6863873826669789184", + "reactionTypeCounts": [ + { + "count": 839, + "reactionType": "LIKE" + }, + { + "count": 129, + "reactionType": "MAYBE" + }, + { + "count": 123, + "reactionType": "INTEREST" + }, + { + "count": 22, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6863873826669789184", + "numLikes": 1128, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6863873826669789184", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1128, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6863757883293609984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6863757883293609984", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6863757883293609984)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6863757883293609984)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-le-parlement-fran%C3%A7ais-adopte-un-activity-6863757883293609984-UqWd?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6863757882614132737", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6863757883293609984", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6863757883293609984,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6863757883293609984,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6863757882614132737", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "0OdPPaQYQqlbSmiUPwkqhw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6863757883293609984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7749234555666412632", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675941913713?e=1677240000&v=beta&t=5DofzhtJ5ZA8kQAlf9n3snaLt6D-6XdTpNrh-zR1mcc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675941913714?e=1677240000&v=beta&t=73o7oW9DEQLxUzMFWYkWT10IiatHXxHJHj-ZZ73zFE4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675941913714?e=1677240000&v=beta&t=MgevEBKpzuikmSG21dZP252vKN8ETP8h4cS3jiDsKOI", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675941913714?e=1677240000&v=beta&t=qMJ0-a3cVpreeYPZ0k1_DH_cgnmSII7DciYQLtebsVs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFF33nglLTa_w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7749234555666412632)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7749234555666412632)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : le parlement fran\u00e7ais adopte un texte pour verdir le num\u00e9rique by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/tech-medias/hightech/climat-le-parlement-francais-adopte-un-texte-pour-verdir-le-numerique-1360481" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat\u00a0: le parlement fran\u00e7ais adopte un texte pour verdir le num\u00e9rique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6863757882614132737,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le parlement vient d'adopter une loi pour r\u00e9duire l'empreinte environnementale du num\u00e9rique (pour les curieux, le texte est l\u00e0 : https://lnkd.in/dYN7ZuTM ; le descriptif et l'expos\u00e9 des motifs sur le site du S\u00e9nat sont l\u00e0 : https://lnkd.in/dxmNxGw8 ).\n\nLe verre \u00e0 moiti\u00e9 vide est \u00e9videmment que cette loi, sur laquelle il est peu probable que l'on revienne avant quelques ann\u00e9es, n'est pas suffisante pour limiter l'inflation de l'empreinte carbone de ce secteur, tir\u00e9e par l'augmentation de la vid\u00e9o en ligne, surtout juste apr\u00e8s que l'Etat ait d\u00e9cid\u00e9 de \"pousser au crime\" en lan\u00e7ant la 5G.\n\nEn effet, les \"grosses\" mesures sur le num\u00e9rique consistent \u00e0 limiter la rotation du parc de terminaux, \u00e0 pousser le consommateur \u00e0 acheter les plus petits possibles (diagonale d'\u00e9cran r\u00e9duite, m\u00e9moire et processeur limit\u00e9s au minimum), et \u00e0 limiter les d\u00e9bits (sachant que 75% du trafic environ est de la vid\u00e9o), donc le nombre d'heures de visionnage et la d\u00e9finition de l'image.\n\nCette loi se limite souvent \u00e0 des mesures d'information ou de \"sensibilisation\". Quelques dispositions r\u00e9ellement contraignantes y figurent quand m\u00eame, comme par exemple la possibilit\u00e9 (qui s'impose aux fournisseurs d'\u00e9quipements) pour les utilisateurs de terminaux de refuser les mises \u00e0 jour logicielles automatiques (qui souvent conduisent \u00e0 une \"inflation\" logicielle, ralentissent les performances et du coup incitent \u00e0 prendre un nouveau terminal).\n\nMais il n'en reste pas moins que c'est une premi\u00e8re dans notre pays, et probablement une premi\u00e8re (ou une des premi\u00e8res) au monde. Et ce texte poss\u00e8de d'autres caract\u00e9ristiques int\u00e9ressantes :\n- il a \u00e9t\u00e9 vot\u00e9 \u00e0 l'initiative du S\u00e9nat, non de l'Assembl\u00e9e ou du gouvernement, ce qui est rare,\n- il a \u00e9t\u00e9 propos\u00e9 par un s\u00e9nateur LR, et non un EELV (ou un LREM) ; il montre donc qu'il est parfois possible d'avoir un accord de la gauche \u00e0 la droite de l'\u00e9chiquier politique sur des sujets environnementaux,\n- il fait suite \u00e0 une mission d'information du S\u00e9nat, qui avait \u00e9t\u00e9 pilot\u00e9e par le s\u00e9nateur qui a propos\u00e9 le projet de loi, et cette mission d'information... a elle-m\u00eame fait suite aux travaux du Shift Project sur le sujet (https://lnkd.in/ggXYjrX ). Il est donc possible (bigre !) que notre modeste think tank ait jou\u00e9 un petit r\u00f4le dans l'\u00e9mergence de cette loi.\n \nIl fallait une premi\u00e8re fois, ce qui est donc chose faite. Mais il faudra y revenir, id\u00e9alement le plus vite possible. En effet, ce num\u00e9rique, d\u00e9sormais indispensable aux fonctions les plus essentielles du pays (coordonner, alimenter, payer...), est totalement d\u00e9pendant de mines et d'acteurs situ\u00e9s hors du pays, et induit des \u00e9missions qui augmentent au lieu de baisser. Cela devrait nous interroger un peu plus que nous ne le faisons aujourd'hui." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6863757882614132737,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6863757883293609984,urn:li:activity:6863757883293609984,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 80, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6863757883293609984,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6863757883293609984,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6863757883293609984", + "threadId": "activity:6863757883293609984", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6863757883293609984", + "urn": "urn:li:activity:6863757883293609984", + "numComments": 135, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6863757883293609984", + "reactionTypeCounts": [ + { + "count": 1514, + "reactionType": "LIKE" + }, + { + "count": 165, + "reactionType": "INTEREST" + }, + { + "count": 141, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6863757883293609984", + "numLikes": 1885, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6863757883293609984", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1885, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6863385752131145728,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6863385752131145728", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6863385752131145728)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6863385752131145728)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_projection-transition-le-festival-cin%C3%A9-d%C3%A9bat-activity-6863385752131145728-YCcU?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6863385751661379584", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6863385752131145728", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6863385752131145728,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6863385752131145728,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6863385751661379584", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "sYvmr0lvbVP5JcvDUc1v9Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6863385752131145728,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8562280486872677759", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1634890023031?e=1677240000&v=beta&t=2osgaPk9ZVDChmO3PDey0ENxo26qqvB1oItlPBwvqWw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1634890023031?e=1677240000&v=beta&t=0KGLxhA3t5LyOTYujKMUWaM5FlfZ6LH5RSnsR17vxas", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1634890023031?e=1677240000&v=beta&t=zlJpteJ7CK_AmXyQyU4vtJCd6CdjBU3gjdwmX6nTiqI", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1634890023031?e=1677240000&v=beta&t=KkhZqpH2vGWnMYqsO740f-tp_yNjQjw1nJzJue6jYis", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGcArUJtqEAxA/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8562280486872677759)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8562280486872677759)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "projectiontransition.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Projection Transition, le festival cin\u00e9-d\u00e9bat en faveur de la transition \u00e9cologique et d'une soci\u00e9t\u00e9 bas carbone. by projectiontransition.fr", + "actionTarget": "https://projectiontransition.fr" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Projection Transition, le festival cin\u00e9-d\u00e9bat en faveur de la transition \u00e9cologique et d'une soci\u00e9t\u00e9 bas carbone." + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6863385751661379584,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 27, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "S4pA83HvTOSWm0p6RSKVOw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 674, + "length": 17, + "miniProfile": { + "firstName": "Cl\u00e9mentine", + "lastName": "Baldon", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAflhW8B0Y2eLDGuQOHsHbAH2IO54BboLUA", + "occupation": "Impact Lawyer \ud83d\udd39 I help NGOs and companies to challenge the status quo through legal action, to obtain concrete victories in favour of the ecological, economic & social transition.", + "objectUrn": "urn:li:member:132482415", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAflhW8B0Y2eLDGuQOHsHbAH2IO54BboLUA", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1673266266041?e=1681948800&v=beta&t=a4Nm2ZfupgliG7Lf8c00djwq2hs62MVsXTK5xxW1hpo", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1673266266041?e=1681948800&v=beta&t=B4R1k16oTdEwm6joPj14JSk4PVKDhHqOFXOTLZ1a9Gc", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQGsIqLLlwKgoA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "clementine-baldon", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1632755294624?e=1681948800&v=beta&t=QB2s0Lum4HRFOKxEXa5gQzXoGBjBNGLs949viZLXR4Q", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1632755294624?e=1681948800&v=beta&t=txba4urDgDiFWxSD-F3-i2yPu4gdgptLt22SG-BZj0s", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1632755294624?e=1681948800&v=beta&t=T1Rw-RRi31391PcL7wXDSR8AyBtsymmkUe1d-b3BWyo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1632755294624?e=1681948800&v=beta&t=d29yrNBRIx5R56sTIv-By6GA1SLDFkKY_NExeIN0yV4", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQFw6ESW5CZNhA/profile-displayphoto-shrink_" + } + }, + "trackingId": "WJcBKxhASEGT6SoO5S8voQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 693, + "length": 14, + "miniProfile": { + "firstName": "Delphine", + "lastName": "Batho", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACHB96EBfsFiHImD4mNe0OzvTsZGanKpHas", + "occupation": "D\u00e9put\u00e9e, Assembl\u00e9e nationale", + "objectUrn": "urn:li:member:566359969", + "entityUrn": "urn:li:fs_miniProfile:ACoAACHB96EBfsFiHImD4mNe0OzvTsZGanKpHas", + "publicIdentifier": "delphine-batho-74180a139", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517566751469?e=1681948800&v=beta&t=CLEJgUV5MExGZCeVhQfIYydSyqwemQID5TR1L_tIlTo", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517566751469?e=1681948800&v=beta&t=zSbPdWVfNHU07IKX5N__sqHL3XGsP2779t-FQGSHGWk", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517566751469?e=1681948800&v=beta&t=GH5kJ8X1xzIcAsh3sIdxGH8hScD41vX3BEnRNxAb8Js", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517566751469?e=1681948800&v=beta&t=370a1ULgu_D_bUnsrAfBnCfvQ4D8V6XrD6WdM4lFRxY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEoK9ntp-cFzw/profile-displayphoto-shrink_" + } + }, + "trackingId": "wyLCxukeT6ahhVY3jgsAEg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 709, + "length": 16, + "miniProfile": { + "firstName": "Fabrice", + "lastName": "Bonnifet", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAADsgnkBiwbuU2HeCNEafM22ZFEvQP1RYvM", + "occupation": "LinkedIn TopVoices - Sustainable Development & Quality, Security, Environment Group Director Bouygues - President C3D", + "objectUrn": "urn:li:member:15499897", + "entityUrn": "urn:li:fs_miniProfile:ACoAAADsgnkBiwbuU2HeCNEafM22ZFEvQP1RYvM", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1652374952897?e=1681948800&v=beta&t=cu3kwZZhrB3xvn650_PCl1yctE05X-fWsFGppOXAqn0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1652374952897?e=1681948800&v=beta&t=CKjdjmlQ0NEehX0AtWPWpNs1SOqCna3rZS5WrFC30jw", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQEHLAqXRcgS7w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "fabricebonnifet", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1613566863941?e=1681948800&v=beta&t=jF27yQ5DojqqCMOWvonF-hV0z7Lm6zVFV3zdYJkfgbk", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1613566863941?e=1681948800&v=beta&t=uMnXgbQjXao8uCOSxf4zLKLNrk4kSY8Xq2R7r9ChaSY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1613566863941?e=1681948800&v=beta&t=_LxGB6AT_x6T3yNF4q-RYBSFAYuL-d9ewoW2j0q9cp4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1613566863941?e=1681948800&v=beta&t=GXjjixEy7MAtiejznM5LNnAhHiKnabKZY1Z_CVs790U", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFjJ6B90r_sug/profile-displayphoto-shrink_" + } + }, + "trackingId": "e7Q0iTy1TWCBWsfsmyGcMQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Du 19 au 21 novembre 2021, Les Shifters organisent la 2\u00e8me \u00e9dition de Projection Transition, un festival de \"cin\u00e9-d\u00e9bat\" qui aura lieu \u00e0 Nantes, Paris et Toulouse.\n\nL'id\u00e9e est de se servir du 7\u00e8 art pour \u00e9voquer\u00a0des enjeux de la transition bas carbone, en organisant des projections de films \u00e0 th\u00e8me suivies de tables rondes pour d\u00e9battre autour du th\u00e8me \u00e9voqu\u00e9. \n\nJe participerai pour ma part au d\u00e9bat intitul\u00e9 \"Le droit, issue ou impasse pour responsabiliser les entreprises ?\" qui suivra la projection, le 19 novembre \u00e0 20h \u00e0 Paris, du film Dark Waters. Les autres intervenantes (vu qu'il y a une majorit\u00e9 de femmes, je fais un f\u00e9minin global, d\u00e9sol\u00e9 Fabrice :) ) seront Cl\u00e9mentine Baldon, Delphine Batho, Fabrice Bonnifet, et Ang\u00e8le Pr\u00e9ville, S\u00e9natrice du Lot.\n\nTous les d\u00e9tails de toutes les s\u00e9ances, et la billetterie pour s'inscrire (pour pas trop cher, parce que les organisatrices - allez hop, encore un f\u00e9minin global, vu que l'organisatrice en chef est une femme - et les participant(e)s aux d\u00e9bats sont tous b\u00e9n\u00e9voles, mais il faut quand m\u00eame payer le cin\u00e9ma !) sont accessibles via le site." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6863385751661379584,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6863385752131145728,urn:li:activity:6863385752131145728,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 12, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6863385752131145728,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6863385752131145728,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6863385752131145728", + "threadId": "activity:6863385752131145728", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6863385752131145728", + "urn": "urn:li:activity:6863385752131145728", + "numComments": 13, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6863385752131145728", + "reactionTypeCounts": [ + { + "count": 222, + "reactionType": "LIKE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "INTEREST" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6863385752131145728", + "numLikes": 245, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6863385752131145728", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 245, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6863181549693624320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6863181549693624320", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6863181549693624320)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6863181549693624320)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_oil-sands-pathways-to-net-zero-activity-6863181549693624320-wQFI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6863181549114818560", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6863181549693624320", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6863181549693624320,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6863181549693624320,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6863181549114818560", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "B5U+Fox3WhwPXPu2tAIJJw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6863181549693624320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7400065424237670694", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1623258466919?e=1677240000&v=beta&t=otAYWyJu95LgYZT-Z2QXUQ_PmBsaEzU8RmcV2-veJeY", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1623258466919?e=1677240000&v=beta&t=Vh62rL_jQm9Nd-9M3riqi_cJ8SnpoiflCHdocpzB5x4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1623258466919?e=1677240000&v=beta&t=_KE5OV4clA9KCzpE6yaVv4wL2YyBwtyPcKfRmgRuXT8", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1623258466919?e=1677240000&v=beta&t=lh7bQt0axTDiAsiTJvGoGbMB_EvGVucRiWrXVNtfD1U", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEVMxNri-junw/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7400065424237670694)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7400065424237670694)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "oilsandspathways.ca \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Oil Sands Pathways to Net Zero by oilsandspathways.ca", + "actionTarget": "https://www.oilsandspathways.ca/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Oil Sands Pathways to Net Zero" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6863181549114818560,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Avez vous entendu parler des sables bitumineux du Canada ? Il s'agit, comme leur nom l'indique, d'un m\u00e9lange de bitume (du p\u00e9trole qui a perdu ses \u00e9l\u00e9ments volatils) et de sable, que l'on trouve dans l'Athabasca, au Canada (\u00e9tat de l'Alberta).\n\nA partir de ce m\u00e9lange solide et p\u00e2teux, on tire du p\u00e9trole de synth\u00e8se en passant par les op\u00e9rations suivantes :\n- historiquement, on rasait la for\u00eat pour ensuite cr\u00e9er une mine \u00e0 ciel ouvert, avec des \u00e9normes pelleteuses venant extraire le m\u00e9lange sable-bitume,\n- ce dernier est ensuite \"upgrad\u00e9\" dans des esp\u00e8ces de raffineries, o\u00f9 il est trait\u00e9 avec de la vapeur qui extrait le bitume en le fluidifiant, lequel bitume est ensuite transform\u00e9 en p\u00e9trole de synth\u00e8se en enlevant du carbone en exc\u00e8s et en rajoutant de l'hydrog\u00e8ne (https://lnkd.in/dAMVmbGk ). \n\nCes op\u00e9rations sont tr\u00e8s \u00e9nergivores, puisque de l'ordre du cinqui\u00e8me au quart de l'\u00e9nergie contenue dans le bitume extrait est perdue pendant ces transformations.\n\nD\u00e9sormais on ne rase plus la for\u00eat pour les nouveaux gisements : la vapeur est inject\u00e9e dans le sable, et le bitume fluidifi\u00e9 est remont\u00e9 en surface. Mais cela reste un \"p\u00e9trole\" o\u00f9 l'\u00e9nergie d'extraction et de traitement est tr\u00e8s \u00e9lev\u00e9e. L'\u00e9nergie de traitement est fournie avec du gaz. \n\nEn 2020, le Canada a produit 250 millions de tonnes de p\u00e9trole, dont l'essentiel vient de ces sables bitumineux. Ce p\u00e9trole va donner environ 750 millions de tonnes de CO2 lors de sa combustion (en fait un peu moins parce qu'une partie sert \u00e0 faire du plastique mais l'ordre de grandeur y est).\n\nL'industrie canadienne des sables bitumineux explique sur un site d\u00e9di\u00e9 qu'elle va atteindre le \"net zero\" en 2050. Ah, se dira le profane, ca veut dire qu'ils ont trouv\u00e9 un truc pour que leur p\u00e9trole soit br\u00fbl\u00e9 sans CO2 ? Ou bien qu'ils mettent la cl\u00e9 sous la porte ?\n\nQue nenni, cela signifie qu'ils veulent capturer et s\u00e9questrer le CO2 \u00e9mis pour l'extraction et le traitement des sables, voire une partie seulement. Le communiqu\u00e9 de presse - https://lnkd.in/dkpbayqa - mentionne en effet 68 millions de tonnes de CO2 qui seront captur\u00e9es puis s\u00e9questr\u00e9es, soit environ 10% de ce qui est \u00e9mis par la combustion (mais comme l'\u00e9nergie utilis\u00e9e sur place est du gaz il est possible que l'essentiel y soit).\n\nC'est toujours bon \u00e0 prendre. Mais de l\u00e0 \u00e0 dire implicitement que cela rend cette extraction inoffensive pour le climat, il y a une marge ! D'une mani\u00e8re g\u00e9n\u00e9rale, ne regarder que les \u00e9missions directes pour r\u00e9fl\u00e9chir \u00e0 sa trajectoire de neutralt\u00e9 est ne pas bien d\u00e9finir le probl\u00e8me. Des mauvaises langues pourraient m\u00eame parler de greenwashing :)\n\nQue faire si lire cela vous h\u00e9risse le poil ? Contribuer comme vous pouvez pour que l'humanit\u00e9 consomme de moins en moins de p\u00e9trole. Rousp\u00e9ter ne p\u00e8sera pas lourd tant qu'il y aura de la demande..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6863181549114818560,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6863181549693624320,urn:li:activity:6863181549693624320,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6863181549693624320,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6863181549693624320,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6863181549693624320", + "threadId": "activity:6863181549693624320", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6863181549693624320", + "urn": "urn:li:activity:6863181549693624320", + "numComments": 35, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6863181549693624320", + "reactionTypeCounts": [ + { + "count": 571, + "reactionType": "LIKE" + }, + { + "count": 80, + "reactionType": "INTEREST" + }, + { + "count": 46, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6863181549693624320", + "numLikes": 711, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6863181549693624320", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 711, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6863076053338886144,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6863076053338886144", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6863076053338886144)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6863076053338886144)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_entracte-bd-le-monde-sans-fin-de-jancovici-activity-6863076053338886144-yGyx?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6863076052835569664", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6863076053338886144", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6863076053338886144,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6863076053338886144,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6863076052835569664", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "y0hQJLrS450/iSDBaJKGBg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6863076053338886144,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7420773877284123661", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 624, + "fileIdentifyingUrlPathSegment": "800/0/1676511553560?e=1677240000&v=beta&t=RuoBflIRRohplBXsln-8xMerFzNBUgK64i3Fd22rosw", + "expiresAt": 1677240000000, + "height": 337 + }, + { + "width": 624, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676511553560?e=1677240000&v=beta&t=VQDnV9WhChw4OerrSdbI2wGjIEpT4f8knyDXec_3mzw", + "expiresAt": 1677240000000, + "height": 337 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676511553560?e=1677240000&v=beta&t=pGYOjQTIurGwyvD8I1t9JUX6pcxUnwzjAO7KyBsN-5A", + "expiresAt": 1677240000000, + "height": 86 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676511553560?e=1677240000&v=beta&t=bueENt4RFgixZ0C9lJ4VWyJ-fsSnIvDiO6gpttu2IqU", + "expiresAt": 1677240000000, + "height": 259 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHknVgxLSwVBQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5400641025641025 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7420773877284123661)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7420773877284123661)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "usinenouvelle.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [Entracte - BD] Le monde sans fin de Jancovici et Blain, la BD \u00e0 offrir aux participants de la COP26 et aux autres by usinenouvelle.com", + "actionTarget": "https://www.usinenouvelle.com/article/entracte-bd-le-monde-sans-fin-de-jancovici-et-blain-la-bd-a-offrir-aux-participants-de-la-cop26-et-aux-autres.N1155572" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[Entracte - BD] Le monde sans fin de Jancovici et Blain, la BD \u00e0 offrir aux participants de la COP26 et aux autres" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6863076052835569664,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Usine Nouvelle, media qui, comme son nom l'indique, s'adresse au monde industriel, nous fait le plaisir de qualifier \"Le Monde sans Fin\" de \"oeuvre de salubrit\u00e9 publique\", dans une recension qui contient cette phrase \u00f4 combien opportune en pleine COP : \"La science n'est rien sans des relais politiques.\".\n\nEn fait il s'agit bien l\u00e0 de la science qui d\u00e9crit l'\u00e9tat de l'environnement, non celle qui est le pr\u00e9alable \u00e0 une nouvelle innovation technique, car, comme je l'avais not\u00e9 dans une ancienne chronique, les deux n'ont pas le m\u00eame statut aupr\u00e8s des gouvernant(e)s : https://lnkd.in/gH3DgcH\n\nLa recension se termine par cette phrase : \"Quel consensus peut-on construire, quand la mont\u00e9e des p\u00e9rils risque de renforcer le chacun pour soi et la zizanie plut\u00f4t que la solidarit\u00e9 ?\". C'est tr\u00e8s exactement \u00e0 cette question que nous nous sommes attaqu\u00e9s au sein du Shift Project quand nous avons d\u00e9marr\u00e9 le \"plan de transformation de l'\u00e9conomie fran\u00e7aise\" : https://lnkd.in/dNARPrU\n\nEntre COP, pr\u00e9sidence fran\u00e7aise \u00e0 venir de l'Union, et \u00e9lections pr\u00e9sidentielles et l\u00e9gislatives chez nous, les occasions ne vont pas manquer de d\u00e9battre des sujets climatiques et \u00e9nerg\u00e9tiques (qui ont un lien avec tout, y compris avec l'immigration qui est par ailleurs tr\u00e8s pr\u00e9sente dans le d\u00e9bat public en ce moment).\n\nNotre modeste ambition est de permettre que ce d\u00e9bat se fasse avec \"les yeux en face des trous\" sur le probl\u00e8me \u00e0 traiter. Les malentendus sur les processus \u00e0 l'oeuvre et les ordres de grandeur nous ont d\u00e9j\u00e0 fait perdre trop de temps." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6863076052835569664,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6863076053338886144,urn:li:activity:6863076053338886144,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 71, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6863076053338886144,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6863076053338886144,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6863076053338886144", + "threadId": "activity:6863076053338886144", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6863076053338886144", + "urn": "urn:li:activity:6863076053338886144", + "numComments": 93, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6863076053338886144", + "reactionTypeCounts": [ + { + "count": 1230, + "reactionType": "LIKE" + }, + { + "count": 86, + "reactionType": "PRAISE" + }, + { + "count": 47, + "reactionType": "EMPATHY" + }, + { + "count": 19, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "INTEREST" + }, + { + "count": 8, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6863076053338886144", + "numLikes": 1401, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6863076053338886144", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1401, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6862705286675750912,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6862705286675750912", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6862705286675750912)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6862705286675750912)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cest-un-article-scientifique-paru-dans-une-activity-6862705286675750912-RBuD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6862705285983678464", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6862705286675750912", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6862705286675750912,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6862705286675750912,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6862705285983678464", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "mCDsOGUI3r5BIlKuOIDzzA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6862705286675750912,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEXunCF7LLevA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEXunCF7LLevA", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1636196439709?e=1679529600&v=beta&t=BSM9RzjlfFl773aURQ3IvSsWKXcS5YfOqBbE6D9G-VU", + "expiresAt": 1679529600000, + "height": 1019 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1636196442168?e=1679529600&v=beta&t=6elkAgEKEL1wg_Wqg68ynY_caAiShsEuMdI0GfxVgI0", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1636196442168?e=1679529600&v=beta&t=bzFcMEAJtxVZmq31eLHtUq65rZmVJEU4TtMKZ6EhIvo", + "expiresAt": 1679529600000, + "height": 637 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1636196442168?e=1679529600&v=beta&t=k7neJXyfotUcwRrNK4rLHJzZWCHzPPNBp2N7QOcmJLw", + "expiresAt": 1679529600000, + "height": 239 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1636196442168?e=1679529600&v=beta&t=xijLCo__ygsLVYS9r5kfYMCc4RijGPPoOb6qqwAWIto", + "expiresAt": 1679529600000, + "height": 80 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1636196442168?e=1679529600&v=beta&t=xVAnYwvXCAIMa493rm6kld5tLx543CCCLcSBHBLyNfk", + "expiresAt": 1679529600000, + "height": 398 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEXunCF7LLevA/feedshare-shrink_" + }, + "displayAspectRatio": 0.49755859375 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6862705285983678464,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est un article scientifique paru dans une revue - Applied Energy - dont peu de lectrices et de lecteurs de ce post connaissent le nom : https://lnkd.in/deRkk_5h\n\nC'est un article qui parle d'un sujet tr\u00e8s souvent balay\u00e9 d'un revers de la main par la communaut\u00e9 des \"\u00e9cologistes\" : le pic de production du p\u00e9trole. Du p\u00e9trole, mais il y en a bien assez pour faire \"p\u00e9ter le climat\", non ?\n\nC'est un article qui s'attaque \u00e0 LA bonne question quand il s'agit d'\u00e9nergie. Cette question n'est pas de savoir combien il sort des gisements (de p\u00e9trole, de gaz et de charbon), mais quelle fraction de ce qui sort de ces gisements est effectivement disponible pour alimenter le grand costume d'Ironman qui d\u00e9sormais travaille pour nous. \n\nCar, pour \"produire\" de l'\u00e9nergie, il faut... de l'\u00e9nergie. Extraire du p\u00e9trole demande des puits, plates-formes en mer, ol\u00e9oducs, bateaux pour le transport... qu'il faut construire puis faire fonctionner (\u00e9nergie de pompage, d'injection d'eau, de gaz ou de CO2 pour mieux \"racler\" les gisements, etc). Pour transformer le bitume des sables canadiens en \"p\u00e9trole\" fluide, il faut casser de longues chaines carbon\u00e9es en plus petites, ce qui demande beaucoup de chaleur, etc.\n\nL'\u00e9nergie qu'il faut utiliser pour extraire de l'\u00e9nergie de l'environnement poss\u00e8de son acronyme : EROEI (Energy Return On Energy Invested). Il y a m\u00eame quelques planches sur le sujet dans https://lnkd.in/dtHn5pbD !\n\nPlus ce terme est \u00e9lev\u00e9, plus il reste d'\u00e9nergie apr\u00e8s extraction pour mettre dans les camions, filatures, usines d'engrais, centrales \u00e9lectriques ou engins de mine. Si ce terme s'approche de 1, cela signifie que toute l'\u00e9nergie extraite sert... \u00e0 faire fonctionner le dispositif d'extraction. A ce moment il ne reste rien pour faire fonctionner notre costume d'Ironman. \n\nDans cet article, les auteurs ont calcul\u00e9 le p\u00e9trole \"net\" qui reste pour la soci\u00e9t\u00e9 apr\u00e8s que l'on ait d\u00e9duit l'\u00e9nergie utilis\u00e9 pour son extraction. Cela donne le graphique ci-dessous, qui dit une chose majeure : en net, nous ne retrouverons plus jamais le niveau de 2019, m\u00eame si la production brute augmente. En 2050, le net ne repr\u00e9senterait que la moiti\u00e9 du brut.\n\nCertes, l'\u00e9nergie d'extraction peut ne pas \u00eatre du p\u00e9trole. Les canadiens envisagent par exemple d'utiliser du nucl\u00e9aire pour produire la chaleur pour fluidifier le bitume in situ, et l'extraire plus facilement (utiliser du nucl\u00e9aire pour r\u00e9cup\u00e9rer plus d'\u00e9nergie fossile est \u00e9videmment totalement contreproductif pour le climat). Cette \u00e9nergie d'extraction peut aussi \u00eatre du gaz.\n\nNB : ce graphique ne tient pas compte du raffinage (qui consomme 10% \u00e0 15% du p\u00e9trole extrait).\n\nConvergent avec l'analyse du Shift Project (https://lnkd.in/dqWtnMPi ), cet article nous rappelle une dure r\u00e9alit\u00e9 : la transition va s'op\u00e9rer en contraction de moyens, car le p\u00e9trole reste le sang du monde moderne." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6862705285983678464,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6862705286675750912,urn:li:activity:6862705286675750912,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 68, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6862705286675750912,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6862705286675750912,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6862705286675750912", + "threadId": "activity:6862705286675750912", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6862705286675750912", + "urn": "urn:li:activity:6862705286675750912", + "numComments": 130, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6862705286675750912", + "reactionTypeCounts": [ + { + "count": 1953, + "reactionType": "LIKE" + }, + { + "count": 493, + "reactionType": "INTEREST" + }, + { + "count": 288, + "reactionType": "MAYBE" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6862705286675750912", + "numLikes": 2762, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6862705286675750912", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2762, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6862439830723276800,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6862439830723276800", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6862439830723276800)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6862439830723276800)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_top-climate-scientists-are-sceptical-that-activity-6862439830723276800--c3q?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6862439830194810880", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6862439830723276800", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6862439830723276800,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6862439830723276800,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6862439830194810880", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "tepSN0ljoEiDKYYxo/2HPw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6862439830723276800,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7625057764119187811", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676282663600?e=1677240000&v=beta&t=YsdqIzBGLdcSfu-DN3Atzpl5aUtmTSOSMO_242GygNo", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676282663600?e=1677240000&v=beta&t=OvkMsDG7mwqZidf54AvmXlr7hAYMamVhdNrOe0gx-a8", + "expiresAt": 1677240000000, + "height": 576 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676282663600?e=1677240000&v=beta&t=PVJUZX4bh7UjwdnZlmNmYZq5zP--aaJJ26K5V5fDY2Q", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676282663600?e=1677240000&v=beta&t=wQAZ_ho5z41-DhRxbzPCCCQghmR2DD3un_dLhZDGiLE", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGHUmeLaQzi8w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7625057764119187811)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7625057764119187811)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "nature.com \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Top climate scientists are sceptical that nations will rein in global warming by nature.com", + "actionTarget": "https://www.nature.com/articles/d41586-021-02990-w" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Top climate scientists are sceptical that nations will rein in global warming" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6862439830194810880,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Malheur \u00e0 ceux qui savent, pourrait-on penser en lisant cet article de Nature, qui donne les conclusions d'une enqu\u00eate effectu\u00e9e aupr\u00e8s des 234 auteurs du dernier rapport du GIEC sur leur degr\u00e9 d'optimisme pour l'avenir.\n\n90 d'entre eux ont r\u00e9pondu aux questions que la revue leur a pos\u00e9es. L'\u00e9chantillon n'est peut-\u00eatre pas repr\u00e9sentatif, par contre la tendance qui se d\u00e9gage des r\u00e9ponses fournies est au moins repr\u00e9sentative d'une vraie \"crise de d\u00e9fiance\" en ce qui concerne la capacit\u00e9 des soci\u00e9t\u00e9s humaines \u00e0 infl\u00e9chir la tendance \u00e0 temps.\n\nPremi\u00e8re question pos\u00e9e aux scientifiques : \u00e0 votre avis, quel est le r\u00e9chauffement que nous allons r\u00e9ellement avoir en 2100 ? Seuls 5 sur 90 ont r\u00e9pondu 1,5 \u00b0C, et 18 (sur 90 toujours) 2\u00b0C. La moiti\u00e9 opte m\u00eame pour 3\u00b0C. 3\u00b0C, soit en gros la \"ligne de pente\" vers laquelle nous sommes entra\u00een\u00e9s si la seule limite \u00e0 l'utilisation des combustibles fossiles est g\u00e9ologique.\n\nDit autrement, plus des 2/3 des scientifiques ayant r\u00e9pondu ne croient pas que nous allons tenir l'accord de Paris. Quand on sait que ces personnes l\u00e0 sont g\u00e9n\u00e9ralement des gens prudents, cela signifie que le doute s'est profond\u00e9ment empar\u00e9 de l'\u00e9chantillon qui a r\u00e9pondu. \n\nDeuxi\u00e8me question : \u00e9prouvez vous de l'anxi\u00e9t\u00e9, de la tristesse, ou une autre \"d\u00e9tresse\" \u00e0 cause de vos pr\u00e9occupations concernant le changement climatique ? 2/3 des r\u00e9pondant disent oui, ce qui est l\u00e0 aussi la marque d'une absence de confiance dans notre capacit\u00e9 collective \u00e0 redresser la barre \u00e0 temps.\n\nCeci allant avec cela, 80% des r\u00e9pondants ont indiqu\u00e9 que les scientifiques devaient plus s'investir dans des actions militantes, la premi\u00e8re d'entre elles \u00e9tant de diffuser le savoir. Mais les m\u00eames consid\u00e8rent \u00e0 16% seulement que le GIEC - qui est justement l\u00e0 pour diffuser le savoir, et qui est une superbe r\u00e9ussite en la mati\u00e8re - a aid\u00e9 \u00e0 faire \u00e9merger des politiques publiques tenant mieux compte du probl\u00e8me.\n\nQuand on voit l'absence d'inflexion dans les \u00e9missions depuis la cr\u00e9ation de cet organisme, il faut malheureusement admettre que jusqu'\u00e0 maintenant les faits leur donnent raison...\n\nCette analyse illustre de mani\u00e8re \u00e9vidente que l'information disponible change la mani\u00e8re de voir l'avenir, et dans le cas pr\u00e9sent pas pour le meilleur. Peut-\u00eatre que pour secouer les d\u00e9cideurs de tout poil il faut les faire participer \u00e0 la r\u00e9daction d'un rapport du GIEC ? Car on reste saisi par le d\u00e9calage entre l'optimisme b\u00e9at de nombre d'entre eux compar\u00e9 au pessimisme de \"ceux qui savent\"..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6862439830194810880,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6862439830723276800,urn:li:activity:6862439830723276800,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 65, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6862439830723276800,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6862439830723276800,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6862439830723276800", + "threadId": "activity:6862439830723276800", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6862439830723276800", + "urn": "urn:li:activity:6862439830723276800", + "numComments": 109, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6862439830723276800", + "reactionTypeCounts": [ + { + "count": 1039, + "reactionType": "LIKE" + }, + { + "count": 175, + "reactionType": "MAYBE" + }, + { + "count": 131, + "reactionType": "INTEREST" + }, + { + "count": 84, + "reactionType": "APPRECIATION" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6862439830723276800", + "numLikes": 1453, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6862439830723276800", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1453, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6862376686189588480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1024481", + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "fTEcqZiFQe63B3ynAn6uCQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "fTEcqZiFQe63B3ynAn6uCQ==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Carbone 4", + "actionTarget": "https://www.linkedin.com/company/carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1024481" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "118,673 followers" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6862302850651865088,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6862302850651865088", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6862302850651865088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6862302850651865088)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/carbone-4_pavillon-france-de-la-cop26-de-glasgow-activity-6862302850651865088-R4c2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6862302850085638144", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1024481", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6862302850651865088,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6862302850651865088,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6862302850085638144", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "PqMK+139FxO6EOit/+nETg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6862302850651865088,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7600159668122794382", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 945, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1636100319702?e=1679529600&v=beta&t=Dyuk3pCOERfu4_sQa0YZl0ZD_20tQDGYZzE1M7mSK4A", + "expiresAt": 1679529600000, + "height": 532 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1636100319701?e=1679529600&v=beta&t=g1sdqxu4dlwNcjFDKZK0SjbjAlmLefWsaPIQZqAHSBg", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 945, + "fileIdentifyingUrlPathSegment": "1280/0/1636100319701?e=1679529600&v=beta&t=AHDZnhpfEPa0ut_5mT5jtdpo9eyZlzZmS5lBpY-vw-k", + "expiresAt": 1679529600000, + "height": 532 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1636100319701?e=1679529600&v=beta&t=88gFeMVZStZ0SWUv2eBJ4N3OukcSkS5hk8RGHRj_-Ic", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1636100319701?e=1679529600&v=beta&t=m5GdqGPjbDsavkfGarqG13Er8PVMuDGS__SNxFJo6rg", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1636100319701?e=1679529600&v=beta&t=ZKzBOe9jdw9DxKKoYkVwNPdqYiAxWCSJUaJjYlyoxDg", + "expiresAt": 1679529600000, + "height": 450 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E22AQHojvlCyCJpxQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.562962962962963 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7600159668122794382)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7600159668122794382)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pavillon France de la COP26 de Glasgow - Objectif Net Z\u00e9ro du secteur priv\u00e9 | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/sideevent-cop26-netzero" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pavillon France de la COP26 de Glasgow - Objectif Net Z\u00e9ro du secteur priv\u00e9 | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6862302850085638144,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 86, + "length": 5, + "miniCompany": { + "objectUrn": "urn:li:company:25739", + "entityUrn": "urn:li:fs_miniCompany:25739", + "name": "ADEME", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1585329330514?e=1684972800&v=beta&t=Jo5Z26A4h9a4pwnzJuT6V66mHZ2phVtISTlgW-JvpQc", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1585329330514?e=1684972800&v=beta&t=jDsoRzAHGOZrsOlhot-rkNKuWkLKrzH2ysN5atTddyM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1585329330514?e=1684972800&v=beta&t=jTZ3ngyiTdST1d32J_HKbe6Vf0v-ED3ccYxogNtLDZ8", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQGyXOiwGuc0hA/company-logo_" + } + }, + "universalName": "ademe", + "dashCompanyUrn": "urn:li:fsd_company:25739", + "trackingId": "y/w8ZMmxTvyhohi5Yomgvw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 672, + "length": 5, + "miniCompany": { + "objectUrn": "urn:li:company:25739", + "entityUrn": "urn:li:fs_miniCompany:25739", + "name": "ADEME", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1585329330514?e=1684972800&v=beta&t=Jo5Z26A4h9a4pwnzJuT6V66mHZ2phVtISTlgW-JvpQc", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1585329330514?e=1684972800&v=beta&t=jDsoRzAHGOZrsOlhot-rkNKuWkLKrzH2ysN5atTddyM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1585329330514?e=1684972800&v=beta&t=jTZ3ngyiTdST1d32J_HKbe6Vf0v-ED3ccYxogNtLDZ8", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQGyXOiwGuc0hA/company-logo_" + } + }, + "universalName": "ademe", + "dashCompanyUrn": "urn:li:fsd_company:25739", + "trackingId": "IP8KCexgSWO06ovC6E35Cw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 684, + "length": 3, + "miniCompany": { + "objectUrn": "urn:li:company:112576", + "entityUrn": "urn:li:fs_miniCompany:112576", + "name": "CDP", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1661448126934?e=1684972800&v=beta&t=PbGWLWVCtb5gYddgjAequIgnlbY44DAuZtx4t8K3bPU", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1661448126934?e=1684972800&v=beta&t=3Fn1tsvGfSYuiQAMnghCd3KkrkaNCGc9VbvGm3NC2J0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1661448126934?e=1684972800&v=beta&t=W21Bb9eUzJvXBRaAEUv8GA9ArRkeT8SKuO15bQuYAF8", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQEbB3JtkhfmJA/company-logo_" + } + }, + "universalName": "cdp-worldwide", + "dashCompanyUrn": "urn:li:fsd_company:112576", + "trackingId": "ozESWdMZT26kFY/X7HumDA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 733, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "TnZ/62/ZRw6mMGTx+C18rA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 1309, + "length": 23, + "type": "BOLD" + }, + { + "start": 1451, + "length": 25, + "miniProfile": { + "firstName": "Rodrigo", + "lastName": "Baranna Fernandes", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAc_4d8BI2OaPEaDJo0X1SCrz-zutZkPYnE", + "occupation": "Consultor Senior em Mudan\u00e7as Clim\u00e1ticas", + "objectUrn": "urn:li:member:121627103", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAc_4d8BI2OaPEaDJo0X1SCrz-zutZkPYnE", + "publicIdentifier": "rodrigo-baranna-fernandes-07b89634", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1549460140428?e=1681948800&v=beta&t=IH7adVXcegWuXD3Dr1LNZY_NDluKQYubAvyNaGEzUP8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1549460140428?e=1681948800&v=beta&t=VppfDJxVVDEg7vTjyxtRCO1jBMozzwXfBFjOjnEWIgs", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1549460140428?e=1681948800&v=beta&t=eCQCSbAnqpq2G97lpBhXdm2Cw4asKplhE16ASHGN_1g", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1549460140428?e=1681948800&v=beta&t=UxZ8_sODnSx-UxruyX4D7ebo3lWBQSKmrevqwtYT_Cw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQF6HMJ0vB_KbA/profile-displayphoto-shrink_" + } + }, + "trackingId": "Klc67HTzS3u7INdCiGk+AQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1515, + "length": 16, + "miniProfile": { + "firstName": "Edouard", + "lastName": "Fourdrin", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACcNsDwBsMoZeNzlyAZIkmXBdADzhGv581g", + "occupation": "Ing\u00e9nieur chez ADEME", + "objectUrn": "urn:li:member:655208508", + "entityUrn": "urn:li:fs_miniProfile:ACoAACcNsDwBsMoZeNzlyAZIkmXBdADzhGv581g", + "publicIdentifier": "edouard-fourdrin-710517163", + "trackingId": "sLshVQslRGCBrV0hkSEWIw==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1614, + "length": 12, + "miniProfile": { + "firstName": "C\u00e9sar", + "lastName": "Dugast", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAA1ZS_ABnsyn7tmycYSFFLUD-d6oDwIxYcQ", + "occupation": "Manager at Carbone 4 | Co-lead of Net Zero Initiative", + "objectUrn": "urn:li:member:223955952", + "entityUrn": "urn:li:fs_miniProfile:ACoAAA1ZS_ABnsyn7tmycYSFFLUD-d6oDwIxYcQ", + "publicIdentifier": "c\u00e9sar-dugast-18000463", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517584651425?e=1681948800&v=beta&t=qKJ4g1s5S8umXnxGc1uvHfEL569PoxOX8b6TNZ7XSBE", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517584651425?e=1681948800&v=beta&t=4S-RMccv5SEzY7XMNnwfLFvGw_XYPrQVD49WjW7QrGM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517584651425?e=1681948800&v=beta&t=0-t9Wwing0koXZkF5P2QCHg9R1LHl8xrNrihdVodt40", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517584651425?e=1681948800&v=beta&t=uWBHniaVDhNVFz8MQShVD9fGpjH_fcN_VEZ81O2gfs0", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQGZbQhRN50igw/profile-displayphoto-shrink_" + } + }, + "trackingId": "xDeoja83RSCw10y7gkskRg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1681, + "length": 13, + "miniProfile": { + "firstName": "Romain", + "lastName": "Poivet", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACE8G0cBJIIs9PQ-r28_9lKMthI4mjX9w-Y", + "occupation": "Climate and energy engagement lead", + "objectUrn": "urn:li:member:557587271", + "entityUrn": "urn:li:fs_miniProfile:ACoAACE8G0cBJIIs9PQ-r28_9lKMthI4mjX9w-Y", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1672829659826?e=1681948800&v=beta&t=5Lpw0b9uxyUcWRewMhcx69WL_l35ql_t_oY7c6ZBYFs", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1672829659826?e=1681948800&v=beta&t=-a0iBXfih2e5TraPKedL_t_ipwLQn6sxmlpkDeRzPy8", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQGriJz4fyNRkA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "romain-poivet-99b899136", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517435835420?e=1681948800&v=beta&t=dufZTq1NvJms5-Ric0hN5wvdEczkUlrA3ZGbbEZOKKk", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517435835420?e=1681948800&v=beta&t=7P-_22aHANZVYtfBhJfzT9nLk5zF9OrkuhWVpxsmZ3U", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517435835420?e=1681948800&v=beta&t=DvyB8-wlw6NUCF2S8jpeKH7vpVavQqDEdCB29KaOF20", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517435835420?e=1681948800&v=beta&t=Mk36HI3-Z7-g6dbQ9KkoefZYKr6ZSFNxwVxXVSi-sws", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQECZriMk7YDXA/profile-displayphoto-shrink_" + } + }, + "trackingId": "zCgV0bOLRyC9d6yW8yssHA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1759, + "length": 13, + "miniProfile": { + "firstName": "David", + "lastName": "LAURENT", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAVTRVcBYvfr9lR05o8YFDghstIxEzCBgok", + "occupation": "Directeur Transformation \u00e9cologique chez Entreprises pour l'Environnement (EpE)", + "objectUrn": "urn:li:member:89343319", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAVTRVcBYvfr9lR05o8YFDghstIxEzCBgok", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1625559788559?e=1681948800&v=beta&t=KaWtBKJtXLVoqSvfgsMY8aVxgOCzxoZHMSmONPqy7tE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1625559788559?e=1681948800&v=beta&t=IvcuC3Db61hFreyp55QnnqpnLuRXkVJsVwxF7nk4U7c", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFtnErtff3gCQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "david-laurent-387b0725", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1636718485393?e=1681948800&v=beta&t=_gFYjt3E2OhHXnB38v3uLdXMGlFH1tWuIzF2ngzbV-8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1636718485393?e=1681948800&v=beta&t=ewirUwn-ZYQo6VUoSLYsl4wFaNuyUztRT9DfKbSw3FU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1636718485393?e=1681948800&v=beta&t=G6e985QW5i5PuHqpECb066s748cYpFnmupOT_OwsnCU", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1636718485393?e=1681948800&v=beta&t=jXYWY8-cInmKRrm-0wfPMmufpUVSL7yiHUnvoQpd54Y", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQE_oOSWukc_uQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "vFuuL9irR0KYffCoZFYduA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1816, + "length": 38, + "miniCompany": { + "objectUrn": "urn:li:company:28829590", + "entityUrn": "urn:li:fs_miniCompany:28829590", + "name": "Entreprises pour l'Environnement (EpE)", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1643826757134?e=1684972800&v=beta&t=z2Uo-S9kq97VdKrxuwPQXXqDzSmnj6z_On-Sfkp6H-w", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1643826757134?e=1684972800&v=beta&t=lPpKB9YkhnB9cjDHq9PMzbskXt2z1Fx4OEztw_x5qWo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1643826757134?e=1684972800&v=beta&t=MBcTWV9D001u0FPU3XqtNOxNOZrl1Cc64onuRfzscAw", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQEi3nu1Eemu1Q/company-logo_" + } + }, + "universalName": "entreprises-pour-lenvironnement-epe", + "dashCompanyUrn": "urn:li:fsd_company:28829590", + "trackingId": "IIg+SsXhQKmw2p84SAxRZw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 1858, + "length": 19, + "miniProfile": { + "firstName": "Carine", + "lastName": "de Boissezon", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAMRCGgB5EfMn1m8Vk3s8YbVNELqz0oMaA8", + "occupation": "Chief Impact Officer at EDF \u2502 Born in 331.5ppm CO2 \u2502 Facilitator - Climate Fresk \u2502 Associate - Time for the Planet \u2502 Co-Chair of STOA's Purpose Committee", + "objectUrn": "urn:li:member:51447912", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAMRCGgB5EfMn1m8Vk3s8YbVNELqz0oMaA8", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1671785648771?e=1681948800&v=beta&t=cpkdO2JiJ93qnX26R2dloW5E-MlazRBAS3HCtgIf914", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1671785648771?e=1681948800&v=beta&t=7IftSc3bZGbqwFyxWz6O7I6QyttTO5dVoptwN3KZTB0", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQF31I7RMBc-pA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "carine-de-boissezon", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1671785531665?e=1681948800&v=beta&t=PP01wozeEq8xz-KNxacyTQn04ZEZuG4LLz4-XSXBtGU", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1671785531665?e=1681948800&v=beta&t=tlZcy6XtXlB6T_hWmeb9XPMa49XNFQPxj5KDO2MspX4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1671785531665?e=1681948800&v=beta&t=7p2Al7IRqFFYcwkm94WKPTVTWy7mLGKadbb0ksQybHU", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1671785531665?e=1681948800&v=beta&t=xT3IVDjVhKJBHsgycqvMOfuf0KalER5BSGU3MXrQAF4", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQGoOmuSLZ2q2w/profile-displayphoto-shrink_" + } + }, + "trackingId": "35/YsoxgTeeAw4CJ24ebxw==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1916, + "length": 3, + "miniCompany": { + "objectUrn": "urn:li:company:4249", + "entityUrn": "urn:li:fs_miniCompany:4249", + "name": "EDF", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1519855919046?e=1684972800&v=beta&t=5VSBj6vegEsnRnmzYgWuZcF6IT9RMPyt66WR7tGH8u8", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1519855919046?e=1684972800&v=beta&t=uGtzifNP-sZ8OWd5wh3y3TE5L4V-hov0dieWDi3hmAo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1519855919046?e=1684972800&v=beta&t=VPx_6r5ABhvzfeh1WAU3HqD2WlCJtn3FoMfwccMsbiI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQEUXtrGCgAHtg/company-logo_" + } + }, + "universalName": "edf", + "dashCompanyUrn": "urn:li:fsd_company:4249", + "trackingId": "SYPkFJyKR7S/WjtFW/jTVQ==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 1923, + "length": 13, + "miniProfile": { + "firstName": "H\u00e9l\u00e8ne", + "lastName": "VALADE", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACBU1SYB1HNcQZhf1WIXEH2KxSELFiEqr-U", + "occupation": "Directrice D\u00e9veloppement Environnement du Groupe LVMH", + "objectUrn": "urn:li:member:542430502", + "entityUrn": "urn:li:fs_miniProfile:ACoAACBU1SYB1HNcQZhf1WIXEH2KxSELFiEqr-U", + "publicIdentifier": "h\u00e9l\u00e8ne-valade-65a7aa131", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516978199763?e=1681948800&v=beta&t=DMunRjcS06dsDq6VCpptYVYowrI360aFIQtfX5C83ug", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516978199763?e=1681948800&v=beta&t=P_REtlR5mqw-MFwOQVhZUtarrmXrqSkJHaRwxLYKPOo", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516978199763?e=1681948800&v=beta&t=aQiB8boa1JPG5syl3LUT_NLv_FYxjM0BEpwaDHqIhOA", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516978199763?e=1681948800&v=beta&t=JmBZP5R8KMISEV0gFIEVc1uE_EUbBdy_Y_bmf7U3AtY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGbh7ABxjW4Xg/profile-displayphoto-shrink_" + } + }, + "trackingId": "YDDa/aPBSbymQEq4gaD+sQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1978, + "length": 4, + "miniCompany": { + "objectUrn": "urn:li:company:164788", + "entityUrn": "urn:li:fs_miniCompany:164788", + "name": "LVMH", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1519912354470?e=1684972800&v=beta&t=aIC8w728JPC-CFn9doMuYVTSHx4ZyCD7pOcRzzHM3uY", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1519912354470?e=1684972800&v=beta&t=shSi7pKoS5Gp-OnDj2fNT3tMpHT-n2P4_3Kem7a7I40", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1519912354470?e=1684972800&v=beta&t=v2WHR71o8xEDI0jGAaMs4cyfIMT6oJSl8lSJGjhvfjo", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQHmAWqRnuqKfw/company-logo_" + } + }, + "universalName": "lvmh", + "dashCompanyUrn": "urn:li:fsd_company:164788", + "trackingId": "tYu9tD7dS0CakUSVfnMoyA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 2013, + "length": 13, + "miniProfile": { + "firstName": "Cecile", + "lastName": "Texier", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAqe_KIBfVg1X0svCtIExcugWfOPaeCuszI", + "occupation": "Sustainability & CSR Vice President at Alstom - Member of Board", + "objectUrn": "urn:li:member:178191522", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAqe_KIBfVg1X0svCtIExcugWfOPaeCuszI", + "publicIdentifier": "cecile-texier-1168144b", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517574805093?e=1681948800&v=beta&t=IzN60JtIGDN17XFQJOlcZZwn12M7YKwLmh4jbVW3Igw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517574805093?e=1681948800&v=beta&t=taWxlmOK9can3hXvphbu6GSbIN9QCWImy87MeEiy0CY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517574805093?e=1681948800&v=beta&t=aygplyMM8V5amcqpQLDyxpfCiy9vB2MtqnXI0A3TSY4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517574805093?e=1681948800&v=beta&t=FldMZxxqjMxpAsuiPJPU_nI4g7zWL3fU5md0Wkxz63Q", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQE9jnBV_Y5-uA/profile-displayphoto-shrink_" + } + }, + "trackingId": "UGSkT900Sj+RfPjWY1et1g==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2095, + "length": 6, + "miniCompany": { + "objectUrn": "urn:li:company:2443", + "entityUrn": "urn:li:fs_miniCompany:2443", + "name": "Alstom", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1569914981715?e=1684972800&v=beta&t=FtqV6_6jeEDunkb9i0V83gQr-qHAzg6NVoSoStlR9-w", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1569914981715?e=1684972800&v=beta&t=BQrhkMXiLcInFTcInmhXrqcv8DrmJbv2Wu24OVpNBNI", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1569914981715?e=1684972800&v=beta&t=LW9PjILSK4eSEzIdISlIgJiVmOcdTnhHpoaU-c7B9UI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQHeGrabdKRiig/company-logo_" + } + }, + "universalName": "alstom", + "dashCompanyUrn": "urn:li:fsd_company:2443", + "trackingId": "XQVIKZ4kSlaUKRvnu5ljKQ==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 2105, + "length": 23, + "miniProfile": { + "firstName": "Gilles", + "lastName": "Vermot Desroches", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAALGfc0BU-jjIqyxOFfLQXfWdERgheEQ6Ms", + "occupation": "Corporate Activist - Chief corporate Citizenship Officer - Schneider Electric // CESE", + "objectUrn": "urn:li:member:46562765", + "entityUrn": "urn:li:fs_miniProfile:ACoAAALGfc0BU-jjIqyxOFfLQXfWdERgheEQ6Ms", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1588084364568?e=1681948800&v=beta&t=O1-tlfbY0--4xxPdj1wNk57UyILe2xZmJy3bX3FmHm4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1588084364568?e=1681948800&v=beta&t=340qdYXCH88spqETJ3H7rQ1HpyRWjN7hqYIT2OzCC9U", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQFOdKZXofERfw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "gilles-vermot-desroches-06571613", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1671724962128?e=1681948800&v=beta&t=GuL-KJAcJYo5BhCDQTdCpFyVVKBpN0iymBSudPMXB-w", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1671724962128?e=1681948800&v=beta&t=ay1rWf7yz0VZX1blb2fFZaM8a-260BBsCGZmwEgCjik", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1671724962128?e=1681948800&v=beta&t=z9UolCHe4KgcCLsAwEwvQDA71W0-0Zgk-ZLKtG7Jn8s", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1671724962128?e=1681948800&v=beta&t=WyXQtaOS0uZQ22P0MznHlR62JeWTZMt5XSRiGTUvtTw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQERBNMAsb7IcA/profile-displayphoto-shrink_" + } + }, + "trackingId": "IOwZHgnPSA63MPkEmwkPpQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2195, + "length": 18, + "miniCompany": { + "objectUrn": "urn:li:company:2329", + "entityUrn": "urn:li:fs_miniCompany:2329", + "name": "Schneider Electric", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1519855876125?e=1684972800&v=beta&t=afgOYG9AFMOXQdHDhd2Bx_A2RbTHYosl_bkoYDjUB8o", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1519855876125?e=1684972800&v=beta&t=V9xcN7tuMJt75j24gOsuNFaTdcrn_Cc5qLDrOxKGYrs", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1519855876125?e=1684972800&v=beta&t=lbQZ3UOn2EXJTSK5tey1UQYix7NpnP8pPccGcYeRWoI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGNfeTPCu6Z-w/company-logo_" + } + }, + "universalName": "schneider-electric", + "dashCompanyUrn": "urn:li:fsd_company:2329", + "trackingId": "9jV9CzmXQI+gxuKmrR+yAQ==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 2241, + "length": 14, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Cibla", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAACmi54B8K3urLV0EYNQge1k3kYJV60oQ_8", + "occupation": "Environmental Sustainability Strategy Leader at Decathlon", + "objectUrn": "urn:li:member:10914718", + "entityUrn": "urn:li:fs_miniProfile:ACoAAACmi54B8K3urLV0EYNQge1k3kYJV60oQ_8", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1605799170931?e=1681948800&v=beta&t=Ofue791bqeP3GxstCZTiqXtcbkTsExD5V8o-dFIQmlg", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1605799170931?e=1681948800&v=beta&t=QRFIKlyfQawB0bnX50LzNa7GcnlNd71ajayfO9m5VhM", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2_jbeGWyDlA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuel-cibla", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1637494521103?e=1681948800&v=beta&t=t6GIyqAvJVoAtFIQVpSCtKLztn4OYlw1_eb1-zdf6l4", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1637494521103?e=1681948800&v=beta&t=zKbSPdsGxCLCr6P557q_CfZ_iNrl2Rk7L7yECrLedys", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1637494521103?e=1681948800&v=beta&t=_86_5Utwkv2SrrtYaQdDPeESh1KwmBhgt3cyuMfCdv0", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1637494521103?e=1681948800&v=beta&t=RJ-Bd2RoUfCwbkD1zapjzVI-LfXA8Ns_RwYLc5JzZS8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQHIrY4lM8B4eg/profile-displayphoto-shrink_" + } + }, + "trackingId": "eg+v24+LTWmkcAYRYb727g==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2282, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:26190890", + "entityUrn": "urn:li:fs_miniCompany:26190890", + "name": "Decathlon ", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1647505722028?e=1684972800&v=beta&t=zklaSm4zJ00AHTYuC6fAoZwUoIJHVeKiS3RiKVhRzww", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1647505722028?e=1684972800&v=beta&t=E55UxanamaKC3AsQy45ZASK-zP0RgqKASEG-VG0fekk", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1647505722028?e=1684972800&v=beta&t=5EEM2PrQ5alwaRhb6N2aS2A0NH9WAEoqz_EjwG3mrok", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG2fodLiON37A/company-logo_" + } + }, + "universalName": "decathlon-group", + "dashCompanyUrn": "urn:li:fsd_company:26190890", + "trackingId": "04oG98F8SAW4jFiODtxb3A==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 2346, + "length": 6, + "miniCompany": { + "objectUrn": "urn:li:company:1110", + "entityUrn": "urn:li:fs_miniCompany:1110", + "name": "Orange", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1574431121488?e=1684972800&v=beta&t=sABgGAEY7xCg1ZLiXYW7VXWIr7GulyPUg4418s9yPTQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1574431121488?e=1684972800&v=beta&t=u1KJ2vqGtuXTEzH1T9G8c-TT-1rEVCz27mmDDEYrNKY", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1574431121488?e=1684972800&v=beta&t=6SiEmi16DYaJWhDr6Ohhb9YIgem5dIZqXbREZ9g9i8A", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQEIG5RkDRNPvg/company-logo_" + } + }, + "universalName": "orange", + "dashCompanyUrn": "urn:li:fsd_company:1110", + "trackingId": "swuw8t1KS2Owwva+lFtXhw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 2356, + "length": 16, + "miniProfile": { + "firstName": "Lucas", + "lastName": "Winkelmann", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABcvDHABt0s5G3A4rFhpCCV74LIb70tTl-U", + "occupation": "Charg\u00e9 de programme climat et carbone chez Geres", + "objectUrn": "urn:li:member:388959344", + "entityUrn": "urn:li:fs_miniProfile:ACoAABcvDHABt0s5G3A4rFhpCCV74LIb70tTl-U", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1517564371056?e=1681948800&v=beta&t=8SkfdovXG2Wmt5Y4aK0IS6VIkBnGefMdmxnACtKICOo", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1517564371056?e=1681948800&v=beta&t=LTUsdnXr5lXlXHqAS85rkG3uOA-jsawG8ScTssTaj6w", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQGASUzek782JQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "lucas-winkelmann-268318aa", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1582657010360?e=1681948800&v=beta&t=7LbrpBPIMvufpWwpXVBObqeTKR-Q1yI2cOrQ1B_KMO0", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1582657010360?e=1681948800&v=beta&t=ZFBCVvj1jwkCsohkEQntaWihmedEqdZ-IsFKlmc__iA", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1582657010360?e=1681948800&v=beta&t=g3o51FjYdFdqsStJ0_c7cR36kcW-yJhRjVrGxj1Ts1I", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1582657010360?e=1681948800&v=beta&t=HSyEHiC3KBxx2jrejkWTcGnsGAmYKGyIEF53W7-xc5k", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGE2OorcTouCQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "71s2Yb0qQEmClg5lJM7VYA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2413, + "length": 5, + "miniCompany": { + "objectUrn": "urn:li:company:614266", + "entityUrn": "urn:li:fs_miniCompany:614266", + "name": "Geres", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1568217612259?e=1684972800&v=beta&t=2a3-aBVM1ifjP38brhRfqwnKGgDZFxuCapVtgP8DX7M", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1568217612259?e=1684972800&v=beta&t=50uNEW9EhIEf_w4Publ_PGEKkMT2jYPDA1O9ZuGc8Nk", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1568217612259?e=1684972800&v=beta&t=CAdosaybe-76JV0H7od0PTi7nfhAksIKei7PuWZuhd0", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQFq0Axqp-NQ7g/company-logo_" + } + }, + "universalName": "geres", + "dashCompanyUrn": "urn:li:fsd_company:614266", + "trackingId": "G8hOOW1cSFCyLwPwH08qfA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 2433, + "length": 14, + "miniProfile": { + "firstName": "Michael", + "lastName": "Hugman", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACkcJlUBqeJZVJDx1uU8ZtZQpMsvAyCJ3Sw", + "occupation": "Director, Climate Finance at Children's Investment Fund Foundation (CIFF)", + "objectUrn": "urn:li:member:689710677", + "entityUrn": "urn:li:fs_miniProfile:ACoAACkcJlUBqeJZVJDx1uU8ZtZQpMsvAyCJ3Sw", + "publicIdentifier": "michael-hugman-159b96172", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1540641292895?e=1681948800&v=beta&t=Abz1Uszi0J-vpHxi5WWIEj_YFb8gkGJzCHDypzfo2X0", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1540641292895?e=1681948800&v=beta&t=UYoQPx2YWXPLZwaWbqj1HeuBu26QldSfF_hcWoyWFD8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1540641292895?e=1681948800&v=beta&t=E4tFC7O9YxMJ1KfHq1CS2v3IKAeTbefZUlksSBBqw_U", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1540641292895?e=1681948800&v=beta&t=lBiwqSpLh1OIs0a4Odmk1mdeEVAUfW4ML3laKYG5vKU", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQEilrylUOvzOg/profile-displayphoto-shrink_" + } + }, + "trackingId": "/h8yeazVQZOfwVaBQ2DzOQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2475, + "length": 44, + "miniCompany": { + "objectUrn": "urn:li:company:511273", + "entityUrn": "urn:li:fs_miniCompany:511273", + "name": "Children's Investment Fund Foundation (CIFF)", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1527846368418?e=1684972800&v=beta&t=h7Nwo40tQfLvac2WhvUKP_jnaVfNsHDpkp9pdWlFMp0", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1527846368418?e=1684972800&v=beta&t=OLx0jAgMQuPB1PzoQnJVebMlRCJxLkQgC8QfDRAZZzw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1527846368418?e=1684972800&v=beta&t=W7SS0hJNlPKZbXo_WEB9oHoesMHRg-4lf_WanOo85xs", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQHJ382WSwh8gw/company-logo_" + } + }, + "universalName": "children's-investment-fund-foundation-ciff-", + "dashCompanyUrn": "urn:li:fsd_company:511273", + "trackingId": "Rx9XlQkISkaoCgmyblzJSA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "[Objectif Net Z\u00e9ro du secteur priv\u00e9] Nous sommes tr\u00e8s heureux de co-organiser avec l' ADEME - ACT Initiative un side event sur le Pavillon France de la #COP26 de Glasgow, qui se tiendra lundi 8/11 \u00e0 14h30 avec un panel d'intervenant\u00b7es de haut vol. \n\n\u27a1\ufe0f Comment les entreprises peuvent-elles contribuer \u00e0 l\u2019atteinte de la neutralit\u00e9 carbone plan\u00e9taire, et rendre compte de leurs strat\u00e9gies ?\n\nStimul\u00e9 par de nombreuses initiatives internationales comme la r\u00e9cente campagne Race to Zero, le concept de neutralit\u00e9 carbone s\u2019est largement diffus\u00e9 depuis la COP21, mais sa compr\u00e9hension et son appropriation diff\u00e8rent d\u2019un acteur \u00e0 l\u2019autre. \n\nL\u2019initiative\u00a0ACT\u00a0co-port\u00e9e par l\u2019ADEME et le CDP, ainsi que la\u00a0Net Zero initiative\u00a0port\u00e9e par Carbone 4, visent \u00e0 cadrer l\u2019action et la communication des entreprises en vue de faciliter et rendre compte de leurs alignements vis-\u00e0-vis de trajectoires de d\u00e9carbonation respectant l\u2019Accord de Paris. \n\n\u2753 Quels sont les points cl\u00e9s d\u2019une appropriation r\u00e9ussie et ambitieuse de l\u2019objectif de neutralit\u00e9 carbone par les entreprises\u00a0?\n\u2753 Quelles contributions des entreprises \u00e0 l\u2019atteinte de la neutralit\u00e9 carbone plan\u00e9taire\u00a0?\n\u2753 Quelle redevabilit\u00e9 climatique des entreprises vis-\u00e0-vis de leurs engagements en mati\u00e8re de neutralit\u00e9 carbone\u00a0?\n\n\u2705 Programme \n\n- Mise en contexte\u00a0: Val\u00e9rie Masson-Delmotte, directrice de recherche au CEA et copr\u00e9sidente du groupe n\u1d52 1 du GIEC\n- Pr\u00e9sentation de Net Zero Initiative et ACT\u00a0- Rodrigo Baranna Fernandes, Consultant senior chez Carbone 4, et Edouard Fourdrin, Coordinateur ACT en France, ADEME\n- T\u00e9moignages d'entreprises -\u00a0panel mod\u00e9r\u00e9 par C\u00e9sar Dugast, Co-responsable du p\u00f4le Neutralit\u00e9 chez Carbone 4, et Romain Poivet, Coordinateur ACT Initiative.\n\u00a0\nD\u00e9carbonation des activit\u00e9s :\n- David LAURENT, Responsable du p\u00f4le Climat et Ressources, Entreprises pour l'Environnement (EpE)\u00a0\n- Carine de Boissezon, Directrice du d\u00e9veloppement durable, EDF\u00a0\n- H\u00e9l\u00e8ne VALADE, Directrice D\u00e9veloppement Environnement, LVMH \n\nSolutions d\u00e9carbonantes :\n- Cecile Texier, Vice President Sustainability and Corporate Social Responsibility, Alstom\u00a0\n- Gilles Vermot Desroches, Senior Vice-President Citoyennet\u00e9 et Relations Institutionnelle, Schneider Electric\n\nS\u00e9questration carbone :\n- Emmanuel Cibla, Climate Strategy Leader, Decathlon United\n- Philippe Tuzzolino, Directeur environnement, Orange\u00a0\n- Lucas Winkelmann, Charg\u00e9 de Programme Climat et Carbone, Geres\u00a0\nConclusion :\u00a0Michael Hugman, Directeur Finance Climat, Children's Investment Fund Foundation (CIFF)\n\n\ud83c\udfa5 L'\u00e9v\u00e9nement sera diffus\u00e9 en direct sur YouTube via le lien : https://lnkd.in/ehBgrQbF" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6862302850085638144,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6862302850651865088,urn:li:activity:6862302850651865088,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 0, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6862302850651865088,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6862302850651865088,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6862302850651865088", + "threadId": "activity:6862302850651865088", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6862302850651865088", + "urn": "urn:li:activity:6862302850651865088", + "numComments": 0, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6862302850651865088", + "reactionTypeCounts": [ + { + "count": 118, + "reactionType": "LIKE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6862302850651865088", + "numLikes": 128, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6862302850651865088", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 128, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6862376686189588480", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6862376686189588480)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6862376686189588480)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pavillon-france-de-la-cop26-de-glasgow-activity-6862376686189588480-vlsI?utm_source=share&utm_medium=member_desktop" + }, + { + "subActionsMenu": { + "title": "Who would you like to unfollow?", + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + } + ] + }, + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_ACTIONS", + "text": "Unfollow" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6862376685724045313", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6862376686189588480", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6862376686189588480,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6862376686189588480,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6862376685724045313", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "PqMK+139FxO6EOit/+nETg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6862376686189588480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6862376685724045313,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est dans 15 minutes pour celles et ceux que cela int\u00e9resse !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6862376685724045313,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6862376686189588480,urn:li:activity:6862376686189588480,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 8, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6862376686189588480,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6862376686189588480,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6862376686189588480", + "threadId": "activity:6862376686189588480", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6862376686189588480", + "urn": "urn:li:activity:6862376686189588480", + "numComments": 13, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6862376686189588480", + "reactionTypeCounts": [ + { + "count": 113, + "reactionType": "LIKE" + }, + { + "count": 3, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6862376686189588480", + "numLikes": 120, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6862376686189588480", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 120, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6862300869128404992,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6862300869128404992", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6862300869128404992)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6862300869128404992)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-fresque-du-climat-et-ses-fresqueurs-activity-6862300869128404992-j3cK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6862300868637691904", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6862300869128404992", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6862300869128404992,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6862300869128404992,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6862300868637691904", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "snX+ncsdzD1/kVfU76BZEg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6862300869128404992,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8523861717939767084", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676486823860?e=1677240000&v=beta&t=DSnq2j9_nRwG3nMhMBOYnrZrsN-xuucdvB-pmWzrZ5I", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676486823860?e=1677240000&v=beta&t=-JFK2G67GY2IkmtW2X_asqXvCUXbgBdnanj6NRqYaAk", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676486823860?e=1677240000&v=beta&t=iMBMH_9R7hI_pyVYAyFEizDLJ865DL_V2qTOwN_6WDY", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676486823861?e=1677240000&v=beta&t=MYvbQlCyTtKVkUQ5jcJIGKnn_AnaN3H1SOwtsijvbO8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHuNr9uiOsJfg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8523861717939767084)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8523861717939767084)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "start.lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La Fresque du climat et ses \u00ab fresqueurs \u00bb professionnels, enqu\u00eate sur ceux qui sensibilisent \u00e0 grande \u00e9chelle by start.lesechos.fr", + "actionTarget": "https://start.lesechos.fr/societe/environnement/la-fresque-du-climat-et-ses-fresqueurs-professionnels-enquete-sur-ceux-qui-sensibilisent-a-grande-echelle-1359897" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La Fresque du climat et ses \u00ab\u00a0fresqueurs\u00a0\u00bb professionnels, enqu\u00eate sur ceux qui sensibilisent \u00e0 grande \u00e9chelle" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6862300868637691904,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 598, + "length": 20, + "miniCompany": { + "objectUrn": "urn:li:company:29014288", + "entityUrn": "urn:li:fs_miniCompany:29014288", + "name": "La Fresque du Climat", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1606741293232?e=1684972800&v=beta&t=DuZLmkQnTwPRxbxoqXB9stJSA0S3kOD4-nbMbyzB25I", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1606741293232?e=1684972800&v=beta&t=efDmUfhURfn8iWvetkNpsIgnICebJeKkVSGwHpV71PI", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1606741293232?e=1684972800&v=beta&t=fPnte7Q2kxbsayYybcm9wJqBUUjCesND8I5OcFmaAWg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQEjlFO0qGG8JA/company-logo_" + } + }, + "universalName": "la-fresque-du-climat", + "dashCompanyUrn": "urn:li:fsd_company:29014288", + "trackingId": "43EfAJ5SQ7S8frWz8SnNGw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Quand il est question de s'activer contre le changement climatique, d'aucuns pensent \"hydrog\u00e8ne\", \"solaire\", \"train\", \"v\u00e9g\u00e9tarisme\", \"isolation\" ou encore \"nucl\u00e9aire\" (horreur !).\n\nMais le d\u00e9but de l'histoire, l\u00e0 comme ailleurs, c'est de bien comprendre le probl\u00e8me \u00e0 traiter, faute de quoi la \"solution\" a de grandes chances de tomber \u00e0 plat, voire d'en rajouter au probl\u00e8me.\n\nIl faut donc saluer la r\u00e9ussite d'une initiative de plus partie de notre Hexagone (apr\u00e8s le bilan carbone et la premi\u00e8re loi obligeant les entreprises \u00e0 publier un inventaire de leurs \u00e9missions de gaz \u00e0 effet de serre), La Fresque du Climat, due \u00e0... un ancien directeur du Shift Project :).\n\nDans le monde de l'initiative priv\u00e9e, il n'y a pas de myst\u00e8re : pour que quelque chose fonctionne, il faut que le produit ou le service soit bon. Le succ\u00e8s de la Fresque est partie de l\u00e0 : le produit coche beaucoup de cases.\n\nC'est un jeu simple (il suffit des cartes imprim\u00e9es, de grandes feuilles de papier, d'un peu de ruban adh\u00e9sif et de feutres), collaboratif (donc on ne reste pas \"seul face au probl\u00e8me\"), qui demande aux participants de chercher (et on retient bien mieux ce que l'on a trouv\u00e9 en cherchant que ce que l'on a entendu dans une conf\u00e9rence), \"viral\" (apr\u00e8s avoir en avoir fait un ou deux on peut se former pour animer des s\u00e9ances pour d'autres, et donc une communaut\u00e9 se forme), et qui dure suffisamment de temps pour que l'on \"rentre dedans\", mais o\u00f9 tout tient en une s\u00e9ance.\n\nLe succ\u00e8s est donc bien m\u00e9rit\u00e9. Et l'id\u00e9e d'aller \u00e0 la COP est excellente. Car figurez vous que l'essentiel des personnes sur place n'ont pas en t\u00eate le probl\u00e8me physique \u00e0 traiter dans ses d\u00e9tails. Cela peut para\u00eetre \u00e9tonnant, mais c'est la r\u00e9alit\u00e9 que j'ai constat\u00e9e quand je suis moi-m\u00eame all\u00e9 \u00e0 des COP pour voir par moi-m\u00eame ce qui s'y passait (la derni\u00e8re fois \u00e0 Paris).\n\nSch\u00e9matiquement le lieu est \"habit\u00e9\" par trois gros bataillons :\n- les fonctionnaires, \u00e9lus, ou repr\u00e9sentants des pays qui viennent discuter le bout de gras. Il y a \u00e9galement des observateurs (des d\u00e9put\u00e9s fran\u00e7ais par exemple, ou des personnalit\u00e9s invit\u00e9es par l'Etat),\n- la presse,\n- les repr\u00e9sentants d'ONG.\n\nDans ces populations, il y a une large part qui, en fait, ne dispose pas d'une vue d'ensemble du probl\u00e8me \u00e0 traiter, alors m\u00eame que c'est \u00e0 l'\u00e9vidence utile pour leur activit\u00e9. Si ces personnes repartent de Glasgow avec une id\u00e9e plus pr\u00e9cise du d\u00e9fi, ils ne seront pas venus pour rien !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6862300868637691904,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6862300869128404992,urn:li:activity:6862300869128404992,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 144, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6862300869128404992,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6862300869128404992,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6862300869128404992", + "threadId": "activity:6862300869128404992", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6862300869128404992", + "urn": "urn:li:activity:6862300869128404992", + "numComments": 223, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6862300869128404992", + "reactionTypeCounts": [ + { + "count": 3341, + "reactionType": "LIKE" + }, + { + "count": 296, + "reactionType": "PRAISE" + }, + { + "count": 127, + "reactionType": "EMPATHY" + }, + { + "count": 56, + "reactionType": "MAYBE" + }, + { + "count": 52, + "reactionType": "APPRECIATION" + }, + { + "count": 17, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6862300869128404992", + "numLikes": 3889, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6862300869128404992", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3889, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6861916070417096704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6861916070417096704", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6861916070417096704)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6861916070417096704)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_a-loccasion-de-la-cop-26-meteo-france-propose-activity-6861916070417096704-nIzi?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6861916069674721281", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6861916070417096704", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6861916070417096704,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6861916070417096704,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6861916069674721281", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "511JBtZsa6kBHTWcDh4r8Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6861916070417096704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQHXObkf15v_oQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQHXObkf15v_oQ", + "artifacts": [ + { + "width": 1430, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1636008277328?e=1679529600&v=beta&t=o4lbKvsZVxwd0SLMjrOFGv1DhebuqMbFaXJJb1XLHF8", + "expiresAt": 1679529600000, + "height": 796 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1636008278417?e=1679529600&v=beta&t=I5Kea5F8rdbpgg23Lswwcq88YwAtzKB2AAV0WviMwK0", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1636008278417?e=1679529600&v=beta&t=0727OpBJb5_REUvzrZ0jQV0rUG-lbaN1wie56-KNhLE", + "expiresAt": 1679529600000, + "height": 713 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1636008278417?e=1679529600&v=beta&t=ZhFdhJVb2o9tN-22-T5I15ClO6Q04cfSmHEk2oatbfY", + "expiresAt": 1679529600000, + "height": 267 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1636008278417?e=1679529600&v=beta&t=IoJbQV4ftezpXgRKtl_0C3oeRgK9yMqcgcTYAHgDVD8", + "expiresAt": 1679529600000, + "height": 89 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1636008278417?e=1679529600&v=beta&t=_Fi76hKumiemavVZ7F7kyhCmSffw232G5LfY2rCS6Mk", + "expiresAt": 1679529600000, + "height": 445 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQHXObkf15v_oQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.5566433566433566 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6861916069674721281,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A l'occasion de la COP 26, Meteo France propose une s\u00e9rie de petites vid\u00e9os p\u00e9dagogiques pour rappeler les bases du dossier scientifique du changement climatique provoqu\u00e9 par notre esp\u00e8ce : https://lnkd.in/ecrRVrJP\n\nMeteo France rappelle que l'\u00e9volution en cours ne sera pas homog\u00e8ne : l'\u00e9l\u00e9vation de temp\u00e9rature moyenne sera ainsi plus forte dans le sud de la France, et plus forte encore dans les zones de montagne, ou encore que les s\u00e9cheresses vont augmenter, ainsi que la variabilit\u00e9 des pr\u00e9cipitations, entre autres joyeuset\u00e9s.\n\nEvidemment, ce qui va nous arriver ne d\u00e9pend que marginalement de l'\u00e9volution des \u00e9missions fran\u00e7aises, puisque le climat r\u00e9pond aux \u00e9missions plan\u00e9taires (pour tout comprendre merci de se rapporter \u00e0 une certaine BD tout juste parue chez Dargaud :) : https://lnkd.in/dtHn5pbD). Mais notre pays a historiquement jou\u00e9 un r\u00f4le \"cr\u00e9atif\" dans l'\u00e9volution du monde qui est all\u00e9 bien au del\u00e0 de sa part dans la population ou dans l'\u00e9conomie mondiale. \n\nVouloir retrouver cette ambition dans le domaine climatique - ce qui suppose notamment de ne pas chercher \u00e0 imiter les am\u00e9ricains ou les chinois - ou les allemands dans l'\u00e9nergie - \u00e0 tout prix sans r\u00e9fl\u00e9chir plus avant - serait-il une si mauvaise id\u00e9e que cela ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6861916069674721281,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6861916070417096704,urn:li:activity:6861916070417096704,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 44, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6861916070417096704,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6861916070417096704,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6861916070417096704", + "threadId": "activity:6861916070417096704", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6861916070417096704", + "urn": "urn:li:activity:6861916070417096704", + "numComments": 75, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6861916070417096704", + "reactionTypeCounts": [ + { + "count": 1237, + "reactionType": "LIKE" + }, + { + "count": 104, + "reactionType": "INTEREST" + }, + { + "count": 82, + "reactionType": "MAYBE" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6861916070417096704", + "numLikes": 1450, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6861916070417096704", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1450, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6861741508630982656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6861741508630982656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6861741508630982656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6861741508630982656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-ce-d%C3%A9but-de-cop-le-world-economic-forum-activity-6861741508630982656-9GN9?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6861741507859251200", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6861741508630982656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6861741508630982656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6861741508630982656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6861741507859251200", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "WdIFjUIF07bTn4JJTMeFew==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6861741508630982656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQGOU6WB4ALngA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQGOU6WB4ALngA", + "artifacts": [ + { + "width": 1832, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1635966657308?e=1679529600&v=beta&t=PbvfDlvZebd_sW1bhXoQRVnIVAnp8vdPv1LXt8aiznw", + "expiresAt": 1679529600000, + "height": 1072 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1635966659895?e=1679529600&v=beta&t=Qi8GxeAgOcH2P2g4p1F0snolf52PyyvdSGKvZW_XaqI", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1635966659895?e=1679529600&v=beta&t=sODXo9XVIyEr2ko9JKdurvDvM9poU5avXo8JverttNE", + "expiresAt": 1679529600000, + "height": 749 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1635966659895?e=1679529600&v=beta&t=iNS0HEF-LrzoP3Xn0FYyFfj1hN6kZwt3eMhTXw3-Y0c", + "expiresAt": 1679529600000, + "height": 281 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1635966659895?e=1679529600&v=beta&t=3RerOhM68X4nxF2OH7k5fWFgPLT3HMgwegpXWF1899s", + "expiresAt": 1679529600000, + "height": 94 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1635966659895?e=1679529600&v=beta&t=ntZnEpZAQoQuWchL4twrfJ45I_Kp0H1PcNbQ7uG6gvE", + "expiresAt": 1679529600000, + "height": 468 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQGOU6WB4ALngA/feedshare-shrink_" + }, + "displayAspectRatio": 0.5851528384279476 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, bar chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6861741507859251200,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En ce d\u00e9but de COP, le World Economic Forum a fait r\u00e9aliszer un sondage sur le \"ressenti\" de divers publics (particuliers et \"business\") et de divers pays sur des questions concernant essentiellement le changement climatique : https://lnkd.in/deF2Majg\n\nOn y d\u00e9couvre que les plus proches des am\u00e9ricains, en terme de sensibilit\u00e9, sont... les asiatiques de l'Est, ce qui inclut la Chine, l'Indon\u00e9sie et le Japon (beaucoup de charbon l\u00e0-dedans). Ce sont les plus confiants dans les bienfaits de la technique, ceux qui ont la plus forte minorit\u00e9 de gens consid\u00e9rant que le changement climatique en cours n'est pas d'origine humaine (et qui n'ont pas confiance dans la science), parmi les plus optimistes sur le fait que les r\u00e9ductions d'\u00e9mission vont arriver facilement...\n\nOn pourrait donc voir comme un paradoxe que ce soit aussi ceux qui pensent le plus (\u00e0 l'exception des africains du nord) que la priorit\u00e9 doit \u00eatre donn\u00e9e \u00e0 l'environnement sur l'\u00e9conomie (graphique ci-dessous). Sauf que... le WEF a aussi propos\u00e9, avec la m\u00eame question (entre \u00e9conomie et environnement, qu'est-ce qui est prioritaire), l'option \"croissance verte\", qui consiste \u00e0 pouvoir r\u00e9pondre \"les deux sont aussi importants\" ! \n\nEt en fait ce paradoxe ne l'est qu'en apparence : \u00e0 partir du moment o\u00f9 l'on est convaincu que la technique va nous sauver, il suffit de voir la technique faire l'objet de gros investissements (ce qui est le cas en Asie) pour devenir optimiste...\n\nC'est aussi dans cette zone que l'on trouve une majorit\u00e9 de gens (oui une majorit\u00e9) qui consid\u00e8rent que les progr\u00e8s du monde \u00e9conomique pour lutter contre le changement climatique sont trop rapides ou vont \u00e0 la bonne vitesse (graphique ci-dessous). \n\nSachant que la r\u00e9alit\u00e9 des chiffres est que nous n'y sommes pas du tout, mais alors pas du tout, et que l'Asie repr\u00e9sente 80% du charbon consomm\u00e9 dans le monde, voil\u00e0 un r\u00e9sultat pas rassurant du tout..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6861741507859251200,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6861741508630982656,urn:li:activity:6861741508630982656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 13, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6861741508630982656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6861741508630982656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6861741508630982656", + "threadId": "activity:6861741508630982656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6861741508630982656", + "urn": "urn:li:activity:6861741508630982656", + "numComments": 15, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6861741508630982656", + "reactionTypeCounts": [ + { + "count": 214, + "reactionType": "LIKE" + }, + { + "count": 51, + "reactionType": "INTEREST" + }, + { + "count": 38, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6861741508630982656", + "numLikes": 310, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6861741508630982656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 310, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6861583754981326848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6861583754981326848", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6861583754981326848)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6861583754981326848)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_septante-minutes-avec-jean-marc-jancovici-activity-6861583754981326848-VUKl?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6861583754419290112", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6861583754981326848", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6861583754981326848,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6861583754981326848,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6861583754419290112", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "WsAtWvRwPr7KGmsGQHFolw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6861583754981326848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7041862959030378171", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676284021599?e=1677240000&v=beta&t=0CDrWEZeUgaOGVwMGtlekNIMrN7wYEzzZ1hkc44dE6s", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676284021600?e=1677240000&v=beta&t=kkzSmD22VuMn7ZQXm2RFbg9MgdA1DabnzcGI8RQWspM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676284021600?e=1677240000&v=beta&t=b4-2WPwNhSAYMwP29gfw3aAzK0Ur5h0kJp5f-UJ-deY", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676284021600?e=1677240000&v=beta&t=ymSnQrn4E3OR5M42_Yl-6409-k9rGshrlHN4Ye6Crtk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFq6ZB4GD4wMQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7041862959030378171)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7041862959030378171)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Septante Minutes Avec Jean-Marc Jancovici \u2013 La d\u00e9rive climatique on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=-_6efOL_3dI" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Pour \u00e9couter sur notre site : https://bit.ly/SeptanteMinutes50 On parle avec Jean-Marc Jancovici de transition \u00e9nerg\u00e9tique d'\u00e9nergie renouvelables, de nucl\u00e9aire, de politique europ\u00e9enne, ... Le capitalisme est-il le syst\u00e8me qui nous permettra..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Septante Minutes Avec Jean-Marc Jancovici \u2013 La d\u00e9rive climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6861583754419290112,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Septante minutes : c'est ce qu'a dur\u00e9 (ou presque) une petite vir\u00e9e - \u00e9lectronique - au plat pays qui n'est pas le mien, le temps de parler (sans images, que du son !) de quelques sujets qui me sont habituels.\n\nA lire les commentaires il semblerait que le propos reste intelligible pour des francophones non belges :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6861583754419290112,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6861583754981326848,urn:li:activity:6861583754981326848,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 9, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6861583754981326848,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6861583754981326848,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6861583754981326848", + "threadId": "activity:6861583754981326848", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6861583754981326848", + "urn": "urn:li:activity:6861583754981326848", + "numComments": 22, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6861583754981326848", + "reactionTypeCounts": [ + { + "count": 285, + "reactionType": "LIKE" + }, + { + "count": 13, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6861583754981326848", + "numLikes": 316, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6861583754981326848", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 316, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6861334731569545217,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6861334731569545217", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6861334731569545217)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6861334731569545217)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_christophe-blain-jean-marc-jancovici-activity-6861334731569545217-KuI-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6861334731087204352", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6861334731569545217", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6861334731569545217,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6861334731569545217,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6861334731087204352", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "RD5LeYYnY4lZ3azun8EdHQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6861334731569545217,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7955112980343928497", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676071665277?e=1677240000&v=beta&t=Zgryw0Sb-WW7qX_Q5yb-bkTKokCGZURxh6b8InC60uU", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676071665277?e=1677240000&v=beta&t=AnvmOBGrUUL_qWOu2zf5mjbTFcYntkm88ngD1NJ4344", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676071665277?e=1677240000&v=beta&t=HM1nq-N2Oe98UdJ1iAVcxvvXUMa-8pSCIEdmdxpUBHc", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676071665277?e=1677240000&v=beta&t=iVTEUKHZl40_7saGODtTEQREP-lmDzK2RgllaFZswBo", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHsW-X9dEX33Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7955112980343928497)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7955112980343928497)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Christophe Blain & Jean-Marc Jancovici : BD \"Le Monde sans fin\" - FNAC - 26/10/2021 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=irCUYaD-QFQ" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Christophe Blain, auteur de bande dessin\u00e9e, et Jean-Marc Jancovici, sp\u00e9cialiste des \u00e9nergies et du climat pour une rencontre exceptionnelle autour de leur collaboration sur la BD \"Le Monde sans fin\" (\u00e9ditions Dargaud) qui sort le 29 octobre 2021...." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Christophe Blain & Jean-Marc Jancovici : BD \"Le Monde sans fin\" - FNAC - 26/10/2021" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6861334731087204352,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 821, + "length": 17, + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "tByWcB4zT/aaiqSYEmpNrg==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 968, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "JMx+aMUJThuji5uAOfQQcA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 1191, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "XkjgHjxcTYCJTrGrHk7Nsw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Si vous voulez savoir \u00e0 qui ressemble, en chair, en os, et surtout en paroles, le co-auteur et dessinateur du Monde sans Fin, la FNAC (qui a quelque int\u00e9r\u00eat dans l'affaire !) vous propose cela pour le prix modique d'un terminal num\u00e9rique et d'une connexion \u00e0 Internet.\n\nJe corrige ici une petite injustice faite \u00e0 la fin, lorsque l'animateur demande que l'on cite une association que l'on soutient. J'aurais pu (du ?) en citer des dizaines qui font un travail de terrain besogneux et remarquable, de l'\u00e9ducation dans les prisons \u00e0 la distribution alimentaire dans la rue, de l'accueil des sans-abri \u00e0 la sauvegarde d'une zone \"naturelle\", de la plantation d'arbres \u00e0 la reconversion professionnelle, et cette demande de choisir une entit\u00e9 au d\u00e9triment de toute autre me g\u00eane toujours un peu. \n\nAlors j'ai choisi de citer The Shift Project, en pr\u00e9cisant que sans eux je ne serais pas o\u00f9 je suis. Mais m\u00eame l\u00e0 j'ai fait deux omissions. D'abord j'aurais aussi du inclure Les Shifters, d\u00e9sormais la deuxi\u00e8me jambe sur laquelle avance - bien plus rapidement - la \"galaxie Shift\". Deuxi\u00e8me oubli, qui n'en est pas vraiment un puisque ce n'est pas vraiment une association, j'aurais aussi du citer Carbone 4.\n\nEn effet, notre modeste entreprise a \u00e9norm\u00e9ment d\u00e9frich\u00e9 (nouvelles m\u00e9thodes, nouveaux calculs) depuis sa cr\u00e9ation, et une large partie de ce que j'ai appris ces 15 derni\u00e8res ann\u00e9es, je ne le saurais pas sans le travail de l'\u00e9quipe que j'ai eu le plaisir d'accompagner depuis la naissance de mon employeur. Cette BD n'aurait donc pas comport\u00e9 tout ce qui y est inclus sans le recyclage (de circonstance) de travaux effectu\u00e9s dans ces entit\u00e9s.\n\nCet oubli \u00e9tant r\u00e9par\u00e9, bon visionnage en UUBD (ultra-ultra basse d\u00e9finition) ; ca supporte tr\u00e8s bien le 144p puisque nous ne faisons que causer !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6861334731087204352,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6861334731569545217,urn:li:activity:6861334731569545217,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 19, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6861334731569545217,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6861334731569545217,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6861334731569545217", + "threadId": "activity:6861334731569545217", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6861334731569545217", + "urn": "urn:li:activity:6861334731569545217", + "numComments": 29, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6861334731569545217", + "reactionTypeCounts": [ + { + "count": 178, + "reactionType": "LIKE" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6861334731569545217", + "numLikes": 206, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6861334731569545217", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 206, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6861204972487368704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6861204972487368704", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6861204972487368704)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6861204972487368704)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-le-constat-accablant-de-jean-marc-activity-6861204972487368704-olKY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6861204971862405120", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6861204972487368704", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6861204972487368704,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6861204972487368704,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6861204971862405120", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "uMML7GXL6pziDWu3PEJrxg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6861204972487368704,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8536902747987326915", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676029055284?e=1677240000&v=beta&t=bfYiqX68iG1K8FxsA75WYbWxmAaDPzkAvI9CsHubWos", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676029055284?e=1677240000&v=beta&t=6754iBlZByq_9yz-q3Bwat81MN2s01Pccp8UELssB9A", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676029055284?e=1677240000&v=beta&t=3Yw8yRTWnJpILcrIaMrBU1Gwh0svxk1mhlA-EO8JcZI", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676029055284?e=1677240000&v=beta&t=MZUug5sdKkmqMC5fmrpaLpEyN95Us6QrfeXD6ACYChI", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGkrK7VJFFLbw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8536902747987326915)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8536902747987326915)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : le constat accablant de Jean-Marc Jancovici sur l'int\u00e9r\u00eat des COP by rtl.fr", + "actionTarget": "https://www.rtl.fr/actu/debats-societe/climat-le-constat-accablant-de-jean-marc-jancovici-sur-l-interet-des-cop-7900091902" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat : le constat accablant de Jean-Marc Jancovici sur l'int\u00e9r\u00eat des COP" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6861204971862405120,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1410, + "length": 15, + "miniProfile": { + "firstName": "Guillaume", + "lastName": "Faury", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACRg6LoBr8yX2EKCcEtSkZvpgrBtWy9khMQ", + "occupation": "CEO", + "objectUrn": "urn:li:member:610330810", + "entityUrn": "urn:li:fs_miniProfile:ACoAACRg6LoBr8yX2EKCcEtSkZvpgrBtWy9khMQ", + "publicIdentifier": "guillaume-faury-84a494150", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517879612959?e=1681948800&v=beta&t=9gpOSmyXO8p0m-AO5AOWu1Cu0iCmXOL7uU7ozQs-Sqs", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517879612959?e=1681948800&v=beta&t=6bGAPYsBMqly3MmP0vWxhYRHXbzLp_1_raiUCmjsZBE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517879612959?e=1681948800&v=beta&t=qWV_2OpvsZxWXghu2osCygfbeyDCCUaAkzbeLHirP0w", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517879612959?e=1681948800&v=beta&t=NqnHDBRvc2eZusmoTSqCo29pR8mGKzJZIoMBEP3bRos", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQExrfPkNinmFg/profile-displayphoto-shrink_" + } + }, + "trackingId": "FQv+4+fCTiS2cVKUgHlPHw==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1431, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:164716", + "entityUrn": "urn:li:fs_miniCompany:164716", + "name": "Les Echos", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1614596361150?e=1684972800&v=beta&t=1mOk7v0jlnCgcIswWyYHmIJewK7-gk_r177j-Dwp4tM", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1614596361150?e=1684972800&v=beta&t=rpDGHIGtA_4yGaFUdh9VuXSkC5Jf7cl29bRNg1rsCiA", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1614596361150?e=1684972800&v=beta&t=SZO0sBQXbxYynz8dd9fVa-Jtq8ZS209SRpqIEXlQ3Os", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGU2tYAtnGruQ/company-logo_" + } + }, + "universalName": "les-echos", + "dashCompanyUrn": "urn:li:fsd_company:164716", + "trackingId": "Eo5AUaUlSTasAg6DEU3shA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "A l'heure o\u00f9 d\u00e9marre celle de Glasgow, qui comme bien d'autres avant est qualifi\u00e9e de la \"derni\u00e8re chance\" (ce qui n'aide pas beaucoup, remarque \u00e0 raison Fran\u00e7ois Gemmene : https://lnkd.in/dZDib-rJ) \u00e0 quoi servent les COP ?\n\nEn 3 minutes chrono, ma petite vir\u00e9e sur les ondes de RTL rappelle que malheureusement elles ne servent \u00e0 rien de plus qu'\u00e0 ent\u00e9riner ce que nous faisons d\u00e9j\u00e0, et que c'est normal compte tenu du mode de fonctionnement des Nations Unies. \n\nL'action climatique de terrain ne suivra pas les d\u00e9cisions prises dans les COP. Les COP \u00e9tant des processus \"remontants\", c'est l'exact inverse qui peut se passer : les d\u00e9cisions des COP seront suivies d'effets quand... l'effet sera d\u00e9j\u00e0 l\u00e0 !\n\nEn pratique, cela signifie que les acteurs \"de base\" (consommateurs, citoyens, entreprises, \u00e9lus locaux) seront convaincus durs comme fer que leur premi\u00e8re priorit\u00e9 est de maintenir la stabilit\u00e9 climatique parce que la paix et l'espoir en d\u00e9pendent, et, via leurs achats, votes, prises de position, emplois, ils exerceront une pression \"de malade\" sur les instances dirigeantes pour que, de fait, la r\u00e9solution du probl\u00e8me soit prioritaire sur toute autre chose d\u00e8s qu'il y a un conflit d'objectifs.\n\nAujourd'hui, la r\u00e9alit\u00e9 de terrain est que l'expansion d'une entreprise industrielle, l'ajout d'un tron\u00e7on autoroutier, la reprise du trafic a\u00e9rien (voir par exemple cette interview du patron d'Airbus Guillaume Faury dans Les Echos, o\u00f9 ne figurent ni le mot climat, ni le mot CO2, ni le mot p\u00e9trole : https://lnkd.in/dr-kbzb9), l'augmentation de la construction (donc de la production d'acier et de ciment), le d\u00e9ploiement d'une nouvelle technologie num\u00e9rique (qui va augmenter les \u00e9missions, mais c'est pas grave, on fera des licornes \u00e0 un milliard :) ), bref l'accroissement de tout flux physique est prioritaire sur la pr\u00e9servation du climat.\n\nDans ces conditions, les COP ne \"servent \u00e0 presque rien\". Elles pourraient m\u00eame donner l'impression que, ailleurs, les puissants de ce monde sont en train de faire ce qu'il faut pour que le probl\u00e8me climatique soit r\u00e9solu sans que nous, \u00e0 la base, ayons besoin de nous impliquer. Rien ne serait plus faux." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6861204971862405120,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6861204972487368704,urn:li:activity:6861204972487368704,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 73, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6861204972487368704,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6861204972487368704,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6861204972487368704", + "threadId": "activity:6861204972487368704", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6861204972487368704", + "urn": "urn:li:activity:6861204972487368704", + "numComments": 112, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6861204972487368704", + "reactionTypeCounts": [ + { + "count": 1323, + "reactionType": "LIKE" + }, + { + "count": 112, + "reactionType": "INTEREST" + }, + { + "count": 109, + "reactionType": "MAYBE" + }, + { + "count": 45, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6861204972487368704", + "numLikes": 1619, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6861204972487368704", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1619, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6860866549431975936,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6860866549431975936", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6860866549431975936)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6860866549431975936)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_au-micro-de-france-inter-il-y-a-une-semaine-activity-6860866549431975936-bSFl?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6860866548970602496", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6860866549431975936", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6860866549431975936,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6860866549431975936,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6860866548970602496", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "Lht9SwKz1PRiItsg7OWcew==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6860866549431975936,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEY5OO1LspBAw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEY5OO1LspBAw", + "artifacts": [ + { + "width": 480, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1635758053399?e=1679529600&v=beta&t=r0U6p484CW4NWNza4NsVWEf-MeSdYbbtRuKqpZZr_zw", + "expiresAt": 1679529600000, + "height": 640 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1635758053401?e=1679529600&v=beta&t=o4vnWpkSF5un-gn1itTkhWWKzqha8-OvwCV4IdKwO9w", + "expiresAt": 1679529600000, + "height": 26 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "1280/0/1635758053401?e=1679529600&v=beta&t=E77yFdxYlRdhNyZqtZqrd04Z7rLQSeqQXIm5itAPsV8", + "expiresAt": 1679529600000, + "height": 640 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1635758053401?e=1679529600&v=beta&t=TqmxFstyUg2ltJOVS3kybtb0QQTzAZmvDxmnx3HH3sU", + "expiresAt": 1679529600000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1635758053401?e=1679529600&v=beta&t=cpIiJATb0dDkUQ-s83EanatmhHDd7OjbQEBvshuwyEI", + "expiresAt": 1679529600000, + "height": 213 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "800/0/1635758053401?e=1679529600&v=beta&t=bcdi4gHbeAhfE5ZDQvKAFL3eKb4XMGL3zeL5dDIPVUo", + "expiresAt": 1679529600000, + "height": 640 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEY5OO1LspBAw/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "text" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6860866548970602496,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 152, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "AGKI5A4lRLuaU5bU5RHung==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Au micro de France Inter, il y a une semaine, j'avais indiqu\u00e9 qu'un exemplaire du Monde sans Fin (https://lnkd.in/dtHn5pbD ) serait envoy\u00e9 \u00e0 un certain Emmanuel Macron avec une d\u00e9dicace des auteurs. Tant promis, tant tenu : voici la d\u00e9dicace en question. Le personnage \u00e9tant public, la d\u00e9dicace l'est aussi ! \n\nAvec Christophe, nous avons longuement h\u00e9sit\u00e9 \u00e0 faire des d\u00e9dicaces \u00e0 d'autres personnages politiques. Ce n'aurait pas \u00e9t\u00e9 tr\u00e8s difficile de trouver quelque chose d'amusant et d'un peu taquin pour les ministres de l'\u00e9conomie, de l'environnement ou des transports, sans parler de l'agriculture ou de l'enseignement.\n\nEt puis nous nous sommes dits qu'en fait, au travers de cette d\u00e9dicace, c'est \u00e0 l'Etat que nous parlions, et l'Etat n'a qu'un seul repr\u00e9sentant \"ultime\" : le pr\u00e9sident. Donc il n'y aura qu'une seule d\u00e9dicace de faite, et par voie de cons\u00e9quence de publi\u00e9e ici. Elle s'adresse en fait \u00e0 tout le gouvernement." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6860866548970602496,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6860866549431975936,urn:li:activity:6860866549431975936,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 101, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6860866549431975936,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6860866549431975936,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6860866549431975936", + "threadId": "activity:6860866549431975936", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6860866549431975936", + "urn": "urn:li:activity:6860866549431975936", + "numComments": 170, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6860866549431975936", + "reactionTypeCounts": [ + { + "count": 3739, + "reactionType": "LIKE" + }, + { + "count": 295, + "reactionType": "PRAISE" + }, + { + "count": 224, + "reactionType": "EMPATHY" + }, + { + "count": 35, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6860866549431975936", + "numLikes": 4313, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6860866549431975936", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4313, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6860639253974523904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6860639253974523904", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6860639253974523904)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6860639253974523904)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cop26-%C3%A0-glasgow-le-sommet-de-la-derni%C3%A8re-activity-6860639253974523904-EBdH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6860639253425094656", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6860639253974523904", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6860639253974523904,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6860639253974523904,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6860639253425094656", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "mI1XAKOTPYRErxp5+RwYsA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6860639253974523904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7396312017321898228", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675878148147?e=1677240000&v=beta&t=lF2Hgk22OPiDQiLPLnXG4HOYJO9Ic3qgizh-cYY56lI", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675878148148?e=1677240000&v=beta&t=9Ya_5dte58C1AZfKi0v7X3ExyxgR8DnVj9coW6d8Dc0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675878148148?e=1677240000&v=beta&t=qIlNnlD9OQzHNNhZ2vg2sb16giIGr4vaMEIPr_s3wOc", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675878148148?e=1677240000&v=beta&t=zbdtWuXfHh4dA15Jmb8oZd9ZP9rS0XoqBDnbjft68Jg", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGOwF8QIXGQDA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7396312017321898228)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7396312017321898228)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: COP26 : \u00e0 Glasgow, le sommet de la derni\u00e8re chance pour limiter l'ampleur du r\u00e9chauffement by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/enjeux-internationaux/cop26-a-glasgow-le-sommet-de-la-derniere-chance-pour-limiter-lampleur-du-rechauffement-1359481" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "COP26\u00a0: \u00e0 Glasgow, le sommet de la derni\u00e8re chance pour limiter l'ampleur du r\u00e9chauffement" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6860639253425094656,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Glasgow est-il le sommet de la derni\u00e8re chance pour limiter l'ampleur du r\u00e9chauffement climatique, comme le titrent Les Echos ? Surement, penseront nombre de personnes qui se disent que la situation commence \u00e0 sentir le roussi. Mais... un peu de plong\u00e9e dans les archives montre que cette expression a \u00e9t\u00e9 utilis\u00e9e pour de nombreuses COP depuis au moins 2009, c'est \u00e0 dire la COP 15 \u00e0 Copenhague.\n\nEn effet, cette derni\u00e8re a aussi \u00e9t\u00e9 qualifi\u00e9e de \"COP de la derni\u00e8re chance\" (https://lnkd.in/d8crrt68 ), tout comme Cancun en 2010 (https://lnkd.in/dZUBFP_d ), Durban en 2011 (https://lnkd.in/dFanGtrA ), Paris en 2015 (https://lnkd.in/dNg76R8S ) ou encore Marrakech en 2016 (https://lnkd.in/dp_yNYrR )...\n\nEn fait, toutes les COP depuis celle de 1995 (la COP 1, qui s'est tenue en Allemagne, organis\u00e9e par une certaine... Angela Merkel : https://lnkd.in/dMj9aU8X) auraient m\u00e9rit\u00e9 ce superlatif. Car, d\u00e8s cette ann\u00e9e l\u00e0, il \u00e9tait facile de comprendre que, avec l'inertie des soci\u00e9t\u00e9s humaines, et celle du syst\u00e8me climatique, sans action imm\u00e9diate nous ne pourrions pas \u00e9viter les ennuis. \n\nMalheureusement la COP 26 n'est plus la COP de la derni\u00e8re chance, du moins pour limiter la hausse \u00e0 1,5 \u00b0C ou m\u00eame \u00e0 2\u00b0C. Pour ces deux objectifs il faudrait baisser les \u00e9missions de 5% \u00e0 8% par an dans les d\u00e9cennies \u00e0 venir, c'est-\u00e0-dire - entre autres choses - d\u00e9lib\u00e9r\u00e9ment accepter une r\u00e9cession du PIB \"historique\" de 4% \u00e0 6% par an (tous les ans) pour les d\u00e9cennies \u00e0 venir (https://lnkd.in/gAthJhJ ). \n\nPeut-\u00eatre que cela arrivera. Mais la seule chose de certaine est que cela n'arrivera pas par une d\u00e9cision unanime dans l'enceinte des Nations Unies : c'est juste impossible. Ce lieu n'est pas fait pour montrer la direction au monde. Il ne sert qu'\u00e0 ent\u00e9riner des d\u00e9cisions d\u00e9j\u00e0 prises par les pays pour des raisons domestiques. Il serait temps que la presse comprenne ce qu'est vraiment une COP !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6860639253425094656,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6860639253974523904,urn:li:activity:6860639253974523904,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 44, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6860639253974523904,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6860639253974523904,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6860639253974523904", + "threadId": "activity:6860639253974523904", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6860639253974523904", + "urn": "urn:li:activity:6860639253974523904", + "numComments": 88, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6860639253974523904", + "reactionTypeCounts": [ + { + "count": 832, + "reactionType": "LIKE" + }, + { + "count": 81, + "reactionType": "INTEREST" + }, + { + "count": 61, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6860639253974523904", + "numLikes": 1002, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6860639253974523904", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1002, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6860165318917021696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6860165318917021696", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6860165318917021696)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6860165318917021696)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_the-water-used-to-be-up-to-your-armpits-activity-6860165318917021696-QKCG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6860165318489214976", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6860165318917021696", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6860165318917021696,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6860165318917021696,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6860165318489214976", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "wJpUA4wokQATjBlr9zMT1g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6860165318917021696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8150057032499576351", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676053380273?e=1677240000&v=beta&t=GaGbPl4UmiEsZ6azFCRoRwwA6uQXcE2odDS_EOMN3_s", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676053380273?e=1677240000&v=beta&t=svHGvISRb4n3kGiUc0ANiIJs0F9kz9rhF_jVqpDRQds", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676053380273?e=1677240000&v=beta&t=1Wf_9Br9ILpZq7Ui98JesPZOtp_ZR5hUtQutuD8S9pg", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676053380274?e=1677240000&v=beta&t=3tnXEIiEiENtj7XeV3hdrQsXs0pLmBBnqw45QlQN9Rk", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHgbY7NSJli9g/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8150057032499576351)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8150057032499576351)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u2018The water used to be up to your armpits\u2019: birds starve as Turkey\u2019s lakes dry up by theguardian.com", + "actionTarget": "https://www.theguardian.com/environment/2021/oct/07/water-used-to-be-up-to-your-armpits-birds-starve-as-turkeys-lakes-dry-up-aoe" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u2018The water used to be up to your armpits\u2019: birds starve as Turkey\u2019s lakes dry up" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6860165318489214976,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un des lacs turcs (le lac Tuz) a r\u00e9cemment \"fait l'actualit\u00e9\"... parce que ce n'est plus un lac (il est compl\u00e8tement \u00e0 sec).\n\nEn fait, c'est malheureusement le point d'orgue d'un processus plus large qui a vu les lacs turcs s'ass\u00e9cher progressivement sur les 50 derni\u00e8res ann\u00e9es, avec un effet d'amplification qui est le suivant : \u00e0 cause du r\u00e9chauffement climatique, il pleut moins et l'\u00e9vaporation augmente. Les lacs sont d'une part moins aliment\u00e9s, et par ailleurs plus pr\u00e9lev\u00e9s, \u00e0 la fois par l'\u00e9vaporation, et par l'irrigation qui augmente aussi pour compenser la baisse des pr\u00e9cipitations sur les surfaces cultivables.\n\nLa Turquie a par ailleurs connu un \u00e9pisode caniculaire s\u00e9v\u00e8re cet \u00e9t\u00e9 (avec des feux de for\u00eats in\u00e9dits), qui a suffisamment amplifi\u00e9 ce processus pour mettre \u00e0 sec le 2\u00e8 lac du pays, d'o\u00f9 \"l'actu\". En fait ce n'est pas une \"actu\" au sens o\u00f9 c'est \"nors norme\". C'est malheureusement la nouvelle norme. \n\nL'adaptation du Proche et de Moyen Orient \u00e0 la s\u00e9cheresse croissante (https://lnkd.in/dt4kZjdf ) risque fort de ne pas vraiment en \u00eatre une au sens o\u00f9 \"on fait ce qu'il faut et tout se passe bien\". Le stress alimentaire qui en d\u00e9coulera va provoquer de nouveaux remous, \u00e0 la fois sur place et chez nous. \n\nEsp\u00e9rons que Glasgow sera aussi (et avant tout) l'occasion de se remettre les yeux en face des trous, et de comprendre que l'ordre des priorit\u00e9s du monde de demain ne sera plus celui du monde d'hier. Pour le moment, nous n'y sommes pas vraiment." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6860165318489214976,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6860165318917021696,urn:li:activity:6860165318917021696,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 23, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6860165318917021696,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6860165318917021696,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6860165318917021696", + "threadId": "activity:6860165318917021696", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6860165318917021696", + "urn": "urn:li:activity:6860165318917021696", + "numComments": 65, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6860165318917021696", + "reactionTypeCounts": [ + { + "count": 541, + "reactionType": "LIKE" + }, + { + "count": 91, + "reactionType": "INTEREST" + }, + { + "count": 56, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6860165318917021696", + "numLikes": 713, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6860165318917021696", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 713, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6859900072381964288,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6859900072381964288", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6859900072381964288)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6859900072381964288)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9couvrez-les-%C3%A9v%C3%A9nements-de-carbone-4-%C3%A0-la-activity-6859900072381964288-V9JT?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6859900071941554176", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6859900072381964288", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6859900072381964288,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6859900072381964288,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6859900071941554176", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "jML17sift8bl98gVERs9hw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6859900072381964288,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9088094864099878836", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676074518543?e=1677240000&v=beta&t=YHlyzmV9Ihf59vZECNvntUqX_zzjSwRmawmoG2rKgTA", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676074518543?e=1677240000&v=beta&t=IR8oFTR1jPJd9m2UsQNTxmK31qhDxqymQktStUP1od8", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676074518543?e=1677240000&v=beta&t=cpqNZgJXKSf7qG7hEV57fVTjEImDTFTVTGA6FX5raeo", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676074518543?e=1677240000&v=beta&t=RaiqAduDS4MKSlDyFvoqrXz845izQFnEia_Vahf73Is", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH0R2BXnv6i-Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9088094864099878836)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9088094864099878836)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: D\u00e9couvrez les \u00e9v\u00e9nements de Carbone 4 \u00e0 la COP26 de Glasgow | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/cop26-nzi" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9couvrez les \u00e9v\u00e9nements de Carbone 4 \u00e0 la COP26 de Glasgow | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6859900071941554176,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "ntfvuLG+QwCDbTlMBKqaXw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4 sera pr\u00e9sent \u00e0 Glasgow, \u00e0 la fois physiquement et virtuellement, pour y pr\u00e9senter la Net Zero Initiative (https://lnkd.in/db7JzB2q ), sur le Pavillon France et sur le Pavillon de l'Union Europ\u00e9enne (un Pavillon est le nom consacr\u00e9 pour le stand officiel).\n\nC'est un signe encourageant pour la reconnaissance de ce r\u00e9f\u00e9rentiel, alors que la \"bataille\" autour de la notion de neutralit\u00e9 reste vive. L'enjeu est \u00e9videmment d'\u00e9viter d'accoucher d'un cadre mondial qui favorise le greenwashing." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6859900071941554176,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6859900072381964288,urn:li:activity:6859900072381964288,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 12, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6859900072381964288,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6859900072381964288,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6859900072381964288", + "threadId": "activity:6859900072381964288", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6859900072381964288", + "urn": "urn:li:activity:6859900072381964288", + "numComments": 18, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6859900072381964288", + "reactionTypeCounts": [ + { + "count": 396, + "reactionType": "LIKE" + }, + { + "count": 43, + "reactionType": "PRAISE" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6859900072381964288", + "numLikes": 467, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6859900072381964288", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 467, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6859785110091268096,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6859785110091268096", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6859785110091268096)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6859785110091268096)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-monde-sans-fin-activity-6859785110091268096-i-Dw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6859785109617295360", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6859785110091268096", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6859785110091268096,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6859785110091268096,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6859785109617295360", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "5ta15FpIMRn3rdiuAG80sg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6859785110091268096,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8780854401323608857", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 649, + "fileIdentifyingUrlPathSegment": "800/0/1676525617114?e=1677240000&v=beta&t=664eCy2QaXEhonDCjmacWpci5c7Ea3fQ9IDzIVscaxc", + "expiresAt": 1677240000000, + "height": 789 + }, + { + "width": 649, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676525617114?e=1677240000&v=beta&t=ZX71gUhS0qzKkk4onJTKb6_VVNRrzHdQKEGUukuzf3E", + "expiresAt": 1677240000000, + "height": 789 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676525617114?e=1677240000&v=beta&t=PhPyel20dEuTX_t8xKkiE-V6P_fA8zF4Wn2LPWzSdXg", + "expiresAt": 1677240000000, + "height": 194 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676525617115?e=1677240000&v=beta&t=5eYSuCFztThM1yZbP4xN4Za0ELWgUVpMDgUaplalsjw", + "expiresAt": 1677240000000, + "height": 583 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGTKmk0FJUWUg/articleshare-shrink_" + }, + "displayAspectRatio": 1.2157164869029276 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8780854401323608857)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8780854401323608857)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Monde Sans Fin by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/livres/le-monde-sans-fin/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Monde Sans Fin" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6859785109617295360,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s 2 ans de gestation, Christophe Blain et votre serviteur sont heureux de vous annoncer la naissance du \"Monde sans Fin\" \u00e0 la maternit\u00e9 Dargaud. L'accouchement s'est d\u00e9roul\u00e9 presque sans douleur et le b\u00e9b\u00e9 de 1,4 kg se porte bien.\n\nLe titre de cet album aurait \u00e9ventuellement pu \u00eatre \"tout ce que vous avez toujours voulu savoir sur le climat et l'\u00e9nergie sans avoir jamais eu le courage de vous y attaquer\". Nous esp\u00e9rons que la forme - les images, c'est quand m\u00eame plus digeste que les mots, surtout quand elles sont issues du talent de Christophe - et l'humour - que nous avons privil\u00e9gi\u00e9 partout o\u00f9 c'\u00e9tait possible, et m\u00eame parfois quand ca ne l'\u00e9tait pas - permettra au propos de s'aventurer en dehors de la sph\u00e8re des initi\u00e9(e)s. \n\nBonne lecture pour celles et ceux qui s'y risqueront !\n\nNB1 : au risque de me r\u00e9p\u00e9ter, si vous pouvez vous procurer ces images en couleurs en \u00e9vitant les gafa, je ne m'en plaindrai pas, on va dire :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6859785109617295360,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6859785110091268096,urn:li:activity:6859785110091268096,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 161, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6859785110091268096,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6859785110091268096,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6859785110091268096", + "threadId": "activity:6859785110091268096", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6859785110091268096", + "urn": "urn:li:activity:6859785110091268096", + "numComments": 217, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6859785110091268096", + "reactionTypeCounts": [ + { + "count": 3113, + "reactionType": "LIKE" + }, + { + "count": 365, + "reactionType": "PRAISE" + }, + { + "count": 163, + "reactionType": "EMPATHY" + }, + { + "count": 39, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6859785110091268096", + "numLikes": 3725, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6859785110091268096", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3725, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6859556270790201344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6859556270790201344", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6859556270790201344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6859556270790201344)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_opinion-climat-ne-soyons-pas-des-tartuffe-activity-6859556270790201344-6buN?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6859556269187993600", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6859556270790201344", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6859556270790201344,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6859556270790201344,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6859556269187993600", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "xfKRUTEMsU4eR770BNzpsA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6859556270790201344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8752472338184977375", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675476509210?e=1677240000&v=beta&t=4GLM9pkIpQ7l-cxikYJg5wEjMJ5E0ehsHVOLQHn999I", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675476509210?e=1677240000&v=beta&t=rFoaYtncdrid9B882FtGfv2IsQXYaZTiLePKTiNG1QE", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675476509210?e=1677240000&v=beta&t=fORzCp736pjwblP99Zo2QYoIgXYY4ep6ly2INT-HANE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675476509210?e=1677240000&v=beta&t=trsk6r8bob4p32jiP4sKxfT5p3iq4vozKtqgxLQ5IiA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGtuOOsd0u0mw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8752472338184977375)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8752472338184977375)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Opinion | Climat : ne soyons pas des Tartuffe attendant Godot by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/cercle/opinion-climat-ne-soyons-pas-des-tartuffe-attendant-godot-1358513" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Opinion | Climat\u00a0: ne soyons pas des Tartuffe attendant Godot" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6859556269187993600,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 89, + "length": 15, + "miniProfile": { + "firstName": "Antoine", + "lastName": "Foucher", + "dashEntityUrn": "urn:li:fsd_profile:ACoAADK6wocBcMJC821YgdjLGDZNHbMh3q9RoEo", + "occupation": "Pr\u00e9sident de Quintet", + "objectUrn": "urn:li:member:851100295", + "entityUrn": "urn:li:fs_miniProfile:ACoAADK6wocBcMJC821YgdjLGDZNHbMh3q9RoEo", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1602492974873?e=1681948800&v=beta&t=z-f23aCLGMVmxGiTWXRfX8w1XpfaQ6-hUglq1-NgAfs", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1602492974873?e=1681948800&v=beta&t=1A97kS7qxekZSWCgYeLUQyHr9QvIsixQ81cUIRu8qP0", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQEqYWAk547JHg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "antoine-foucher-a870461b9", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1602492552153?e=1681948800&v=beta&t=e13EdxSKLhZA0Wn9KRtZQYo9NY9Ekhy8llJQ5VJ2W1c", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1602492552153?e=1681948800&v=beta&t=mXUxz5YiAXjY9ww0484GOHgCD5uGGpI4-eXL7Ruv5qo", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1602492552153?e=1681948800&v=beta&t=Hs2nG6HHBRUlAqgxagMfIRooT1QqW4-WkxO07SnJDoU", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1602492552153?e=1681948800&v=beta&t=y1losZO9AChjRRDkURsQ8lagSTekfpl_kv_j8Bt_G8U", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQHOG47U2WlO_A/profile-displayphoto-shrink_" + } + }, + "trackingId": "lHDDeDA+TZWmlyK0VQ3NJg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "A l'occasion de la condamnation de l'Etat fran\u00e7ais dans le cadre de l'Affaire du Si\u00e8cle, Antoine Foucher rappelle dans une tribune publi\u00e9e dans Les Echos que le vrai marqueur de notre \"niveau de vie\" n'est pas les \u00e9missions territoriales de la France, mais son empreinte carbone.\n\nOr cette derni\u00e8re a fortement augment\u00e9 de 1990 \u00e0 2010, dans la foul\u00e9e de l'augmentation de la consommation fran\u00e7aise. Dans cette empreinte il y a des \u00e9missions import\u00e9es, qui ne font l'objet d'aucun engagement de notre pays. Par ailleurs, elles vont avec un alourdissement de notre d\u00e9ficit commercial. \n\nSi nous arrivions \u00e0 relocaliser une partie de la fabrication en France, avec une \u00e9nergie moins carbon\u00e9e que celle de l'ancien pays de fabrication, nous gagnerions sur le plan de l'empreinte carbone et sur celui de la balance commerciale. \n\nUne telle relocalisation peut parfaitement se marier avec de la sobri\u00e9t\u00e9 : nous consommons moins, proportionnellement plus local. Un exemple parmi d'autres serait d'arr\u00eater d'acheter des voitures import\u00e9es (c'est le cas de beaucoup de mod\u00e8les) pour acheter des v\u00e9los \u00e9lectriques que nous nous mettrions \u00e0 fabriquer en France (ainsi que les pi\u00e8ces \u00e0 l'amont : cadres, jantes, d\u00e9railleurs...).\n\nDu reste, dans ses sc\u00e9narios publi\u00e9s r\u00e9cemment, RTE explore la voie d'une \"r\u00e9industrialisation profonde\" du pays. La production \u00e9lectrique devrait \u00eatre plus importante, mais si elle est bien d\u00e9carbon\u00e9e l'empreinte du pays baisse plus vite que dans le sc\u00e9nario de r\u00e9f\u00e9rence.\n\nIl serait donc souhaitable que d\u00e9sormais chaque politique publique \"pour le climat\" regarde les choses \u00e0 la fois sous l'angle des \u00e9missions domestiques et sous l'angle de l'empreinte carbone." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6859556269187993600,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6859556270790201344,urn:li:activity:6859556270790201344,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 64, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6859556270790201344,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6859556270790201344,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6859556270790201344", + "threadId": "activity:6859556270790201344", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6859556270790201344", + "urn": "urn:li:activity:6859556270790201344", + "numComments": 165, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6859556270790201344", + "reactionTypeCounts": [ + { + "count": 1572, + "reactionType": "LIKE" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 88, + "reactionType": "PRAISE" + }, + { + "count": 65, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "EMPATHY" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6859556270790201344", + "numLikes": 1856, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6859556270790201344", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1856, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6859414649356468224,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6859414649356468224", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6859414649356468224)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6859414649356468224)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_medias-en-seine-une-esp%C3%A8ce-de-festival-activity-6859414649356468224-2JwI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6859414648916086784", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6859414649356468224", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6859414649356468224,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6859414649356468224,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6859414648916086784", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "+b/SgzKgSHKnCs6yGT7V/g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6859414649356468224,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHo2z784DI6Ow", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHo2z784DI6Ow", + "artifacts": [ + { + "width": 1782, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1635411891862?e=1679529600&v=beta&t=_FrNjGKy9Uj-GJMQHG9CXY1-I8Fhb-aHoz4rXHMgM3E", + "expiresAt": 1679529600000, + "height": 1008 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1635411893611?e=1679529600&v=beta&t=q1qwBW-JBZT4bMdRMi4b5M6q0MKAKMD0gzqZlrezsCA", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1635411893611?e=1679529600&v=beta&t=QbDfw9xS9XFTgLP2W-49FbrjbQjUzrupIl4pfACSz8Q", + "expiresAt": 1679529600000, + "height": 724 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1635411893611?e=1679529600&v=beta&t=Dl0B53R-NQX9qfceC5zOGsyn7HGZ-30kIHy40Xc0NwM", + "expiresAt": 1679529600000, + "height": 272 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1635411893611?e=1679529600&v=beta&t=eSt8UG8FN_ehJwQSkkDntb6crErJhTLlE0UO3buHg_w", + "expiresAt": 1679529600000, + "height": 91 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1635411893611?e=1679529600&v=beta&t=l6asAApTj1dn_z5nz9EAKH-jEkoPQFXSt30uiX-LE2I", + "expiresAt": 1679529600000, + "height": 453 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHo2z784DI6Ow/feedshare-shrink_" + }, + "displayAspectRatio": 0.5656565656565656 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "a group of people posing for the camera" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6859414648916086784,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Medias en Seine, une esp\u00e8ce de \"festival\" consacr\u00e9 aux medias, et qui a eu lieu le 12 octobre dernier, avait organis\u00e9 en ouverture une \"discussion\" entre plusieurs patrons de r\u00e9daction (TF1, Les Echos, l'AFP) et votre serviteur : https://lnkd.in/dndkcXEe\n\nLe th\u00e8me de la \"table ronde\" \u00e9tait : \"Climat, biodiversit\u00e9 : un d\u00e9fi syst\u00e9mique pour les grandes r\u00e9dactions d'information\". J'ai \u00e9t\u00e9 autoris\u00e9 \u00e0 faire 10 minutes d'expos\u00e9 introductif sur le d\u00e9fi \u00e9nergie climat (rien que du tr\u00e8s classique), suivi d'une discussion sur le th\u00e8me \"comment les r\u00e9dactions s'emparent du probl\u00e8me\". \n\nC'est dans ce cadre que j'ai \u00e9voqu\u00e9 \"7 p\u00e9ch\u00e9s environnementaux des medias\" (remis en commentaire) en proposant \u00e0 mes interlocuteurs de r\u00e9agir sur le sujet.\n\nEn une heure nous n'avons fait qu'effleurer le sujet. Il faudrait y revenir !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6859414648916086784,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6859414649356468224,urn:li:activity:6859414649356468224,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 27, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6859414649356468224,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6859414649356468224,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6859414649356468224", + "threadId": "activity:6859414649356468224", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6859414649356468224", + "urn": "urn:li:activity:6859414649356468224", + "numComments": 48, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6859414649356468224", + "reactionTypeCounts": [ + { + "count": 355, + "reactionType": "LIKE" + }, + { + "count": 28, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6859414649356468224", + "numLikes": 407, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6859414649356468224", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 407, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6859162370594365442,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6859162370594365442", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6859162370594365442)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6859162370594365442)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_quand-le-r%C3%A9chauffement-climatique-se-traduit-activity-6859162370594365442-biZ2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6859162370103619584", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6859162370594365442", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6859162370594365442,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6859162370594365442,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6859162370103619584", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "Sa4xaFuxWPH1UrZTIMOM9g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6859162370594365442,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9218287662931018837", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675898064216?e=1677240000&v=beta&t=SXEq5NYJYtuGTwz7sU4MCpBxFCPveLyzus0QwYqp4mc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675898064216?e=1677240000&v=beta&t=E9GN9aLNkA7yLkazlKzyiHK3_1eDXbYmRjlk8g9F2Lo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675898064216?e=1677240000&v=beta&t=IEaCX3K7NDAkJ8Jos_kTpv-0yhScQaL0Z3TBNAfKLLg", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675898064216?e=1677240000&v=beta&t=hhGlf9e0yZocoXpG1MOVCWaR34uSyDCCxXHyUPjANqk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFaXsfzYDGd1w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9218287662931018837)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9218287662931018837)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Quand le r\u00e9chauffement climatique se traduit en catastrophes by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/sciences-prospective/quand-le-rechauffement-climatique-se-traduit-en-catastrophes-1357605" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Quand le r\u00e9chauffement climatique se traduit en catastrophes" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6859162370103619584,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'inondation en Allemagne de cet \u00e9t\u00e9 aurait-elle eu lieu sans changement climatique ? Quid pour le \"d\u00f4me de chaleur\" canadien de cet \u00e9t\u00e9 ? Pour l'ouragan Ida qui a engendr\u00e9 des records de pr\u00e9cipitations dans l'Est des USA ?\n\nLes chercheurs utilisent d\u00e9sormais les mod\u00e8les pour simuler la fr\u00e9quence d'occurrence de ce genre de ph\u00e9nom\u00e8ne dans un climat non modifi\u00e9 par les \u00e9missions humaines, et dans le climat modifi\u00e9. \n\nLa limite est la r\u00e9solution du mod\u00e8le. Ainsi, une vague de chaleur qui couvre une zone qui fait plus de mille km de diam\u00e8tre est un ph\u00e9nom\u00e8ne bien au-dessus de la maille (typiquement de l'ordre de la centaine de km pour un mod\u00e8le o\u00f9 la r\u00e9solution est la m\u00eame en tout point du globe) et donc peut faire l'objet d'une d\u00e9tection dans un mod\u00e8le. \n\nPour un ouragan, il faut plut\u00f4t une maille de 25 km pour pouvoir mod\u00e9liser correctement ce qui se passe et donc faire une \u00e9tude d'attribution. \n\nC'est la raison pour laquelle le monde scientifique est parfois r\u00e9ticent \u00e0 affirmer que \"c'est \u00e0 cause du r\u00e9chauffement climatique\". Ce n'est pas que ce n'est pas le cas, c'est juste que de le d\u00e9montrer formellement avec les outils num\u00e9riques disponibles reste impossible. Mais ca ne doit pas nous inciter \u00e0 rester les bras crois\u00e9s, \u00e9videmment !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6859162370103619584,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6859162370594365442,urn:li:activity:6859162370594365442,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6859162370594365442,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6859162370594365442,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6859162370594365442", + "threadId": "activity:6859162370594365442", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6859162370594365442", + "urn": "urn:li:activity:6859162370594365442", + "numComments": 42, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6859162370594365442", + "reactionTypeCounts": [ + { + "count": 275, + "reactionType": "LIKE" + }, + { + "count": 32, + "reactionType": "INTEREST" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6859162370594365442", + "numLikes": 331, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6859162370594365442", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 331, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6859029714347012097,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6859029714347012097", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6859029714347012097)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6859029714347012097)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sp%C3%A9cial-classement-des-grandes-%C3%A9coles-mobilis%C3%A9es-activity-6859029714347012097-6V43?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6859029713650774016", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6859029714347012097", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6859029714347012097,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6859029714347012097,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6859029713650774016", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "yTf5sVKNN33/dTakpFw2nQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6859029714347012097,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7424456745820084895", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676425378632?e=1677240000&v=beta&t=-WMLaMPZk8ghxP4iHLH1p0p2ViWHGNOgO5xHtnDoqK4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676425378632?e=1677240000&v=beta&t=nzU7ARyXxPKWI7HPw-RDvx__o2EbcVC-EYnatnI0F_I", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676425378632?e=1677240000&v=beta&t=M2glKatTMutwdnnzyKAXzAmtmSuV1gGdjNLEXndnbrQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676425378632?e=1677240000&v=beta&t=DhEmaqU3G1GAK1aUPuSW34s9Cwdq0uPSmjg0g4b_fhU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHZgUvvx3F3yw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7424456745820084895)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7424456745820084895)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "start.lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: SP\u00c9CIAL CLASSEMENT des grandes \u00e9coles mobilis\u00e9es sur la transition \u00e9cologique by start.lesechos.fr", + "actionTarget": "https://start.lesechos.fr/apprendre/universites-ecoles/special-classement-des-grandes-ecoles-mobilisees-sur-la-transition-ecologique-1358079" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "SP\u00c9CIAL CLASSEMENT des grandes \u00e9coles mobilis\u00e9es sur la transition \u00e9cologique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6859029713650774016,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 821, + "length": 16, + "miniProfile": { + "firstName": "Vincent", + "lastName": "Lafleche", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAJeVlcB-l99cQS5dumr0-fI4ZYe3usR0rk", + "occupation": "Directeur Mines ParisTech", + "objectUrn": "urn:li:member:39736919", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAJeVlcB-l99cQS5dumr0-fI4ZYe3usR0rk", + "publicIdentifier": "vincent-lafleche-a9b38311", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517753533896?e=1681948800&v=beta&t=NjWmU83ouDrEphlN3sVk3DWR-7Aaf3YAzqr3gqK-9Jw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517753533896?e=1681948800&v=beta&t=4j-EPq_S3DzM0YH1DYPxO-XfhdX9RsjUnwo2tzct__8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517753533896?e=1681948800&v=beta&t=P8azWpK8fuvDi_J0UhoWIEAdzdZibOWGn2LSmaOT0g0", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517753533896?e=1681948800&v=beta&t=W3QkU_4RvX1yj7zHrbqqR4iWSuOfA0PwaLVC4vdv-aU", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHa8GrQhk68DQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "VCj7xnmaSlqLnNa7gYbARA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Les Echos Start (le suppl\u00e9ment des Echos consacr\u00e9 \u00e0 la formation) publie un dossier complet sur la mobilisation (ou pas) des grandes \u00e9coles sur la transition \u00e9cologique. \n\nOn y trouve un \"classement 2021 des \u00e9coles les plus engag\u00e9es dans la transition \u00e9cologique\". La m\u00e9thode est s\u00fbrement am\u00e9liorable (parce que ce classement se base pour partie sur des notions qui ne sont pas d\u00e9finies, comme \"impact\", ou parce que certains crit\u00e8res portent sur la \"transition \u00e9cologique et sociale\", ce qui peut se limiter \u00e0 aborder le c\u00f4t\u00e9 social), mais il est int\u00e9ressant de voir le premier quotidien \u00e9conomique du pays venir chercher les grandes \u00e9coles sur ce terrain, de plus en plus demand\u00e9 par les \u00e9tudiant(e)s.\n\nDans ce m\u00eame dossier on trouve une interview de 6 directeurs d'\u00e9tablissements (dont mon \"patron\" \u00e0 Mines ParisTech, Vincent Lafleche) r\u00e9alis\u00e9e conjointement par la r\u00e9daction des Echos et un \"responsable r\u00e9gional de la COP2 Etudiante\" : https://lnkd.in/djXEChnD\n\nA la question \"Diriez-vous que les grandes \u00e9coles font assez pour r\u00e9pondre \u00e0 l'urgence climatique\u00a0?\" la r\u00e9ponse du directeur de Centrale Nantes, pourtant arriv\u00e9 apr\u00e8s que les \u00e9l\u00e8ves aient sign\u00e9 une p\u00e9tition demandant \u00e0 ce que le/la titulaire du poste soit choisi pour mettre en oeuvre un projet au service de la transition, est tout simplement\u00a0: \"Clairement non. (Rires.)\".\n\nIl est \u00e9vident que nos \u00e9tablissements d'enseignement sup\u00e9rieur ont tout \u00e0 gagner \u00e0 fournir un enseignement permettant aux \u00e9tudiant(e)s d'\u00eatre mieux arm\u00e9 face aux d\u00e9fis redoutables que posent les limites plan\u00e9taires. La notori\u00e9t\u00e9 que ces \u00e9tablissements ont acquise aujourd'hui, ils la doivent au fait qu'ils se sont mis hier au service des grands d\u00e9fis soci\u00e9taux du moment. Il est temps de recommencer, mais avec un objectif que les limites plan\u00e9taires obligent \u00e0 formuler diff\u00e9remment." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6859029713650774016,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6859029714347012097,urn:li:activity:6859029714347012097,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 49, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6859029714347012097,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6859029714347012097,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6859029714347012097", + "threadId": "activity:6859029714347012097", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6859029714347012097", + "urn": "urn:li:activity:6859029714347012097", + "numComments": 70, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6859029714347012097", + "reactionTypeCounts": [ + { + "count": 823, + "reactionType": "LIKE" + }, + { + "count": 41, + "reactionType": "PRAISE" + }, + { + "count": 33, + "reactionType": "INTEREST" + }, + { + "count": 28, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "EMPATHY" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6859029714347012097", + "numLikes": 944, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6859029714347012097", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 944, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6858703352524505088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6858703352524505088", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6858703352524505088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6858703352524505088)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rencontre-digitale-avec-christophe-blain-activity-6858703352524505088-z7bW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6858703352058916864", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6858703352524505088", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6858703352524505088,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6858703352524505088,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6858703352058916864", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "afx17oEJfbhaOpLO0anQvw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6858703352524505088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6944969526170421256", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1635241626522?e=1677240000&v=beta&t=C5j-VOtw3WkFQZ2DN_rS6pRbbkOSgG11HjCcsCmdGBQ", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1635241626522?e=1677240000&v=beta&t=68s6S1OwpPga37fzqBSSb8w8wt-vCOKuGAf0OVRZVFg", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1635241626522?e=1677240000&v=beta&t=mGQt6evkEo4BpULpSc6QZC67UNTsapRrZPvnT5brHVk", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1635241626522?e=1677240000&v=beta&t=BSAZz7ukbbSxxMjGIQIm1yGDIarfXhU1fSknPnG_rSY", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQG6QDrSz5HhEQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6944969526170421256)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6944969526170421256)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "facebook.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Rencontre Digitale avec Christophe Blain et Jean-Marc Jancovici by facebook.com", + "actionTarget": "https://www.facebook.com/events/204706948443582/?ref=newsfeed" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Rencontre Digitale avec Christophe Blain et Jean-Marc Jancovici" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6858703352058916864,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Aujourd'hui \u00e0 19h il y aura une petite \"causerie au coin de l'\u00e9cran\" de Christophe Blain et de votre serviteur dans le cadre de la sortie du Monde Sans Fin (disponible en librairie Vendredi 29)\n\nOn peut suivre sur la page FB de la FNAC mais aussi, si j'ai tout bien compris, sur celle qui porte mon nom :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6858703352058916864,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6858703352524505088,urn:li:activity:6858703352524505088,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 8, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6858703352524505088,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6858703352524505088,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6858703352524505088", + "threadId": "activity:6858703352524505088", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6858703352524505088", + "urn": "urn:li:activity:6858703352524505088", + "numComments": 10, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6858703352524505088", + "reactionTypeCounts": [ + { + "count": 130, + "reactionType": "LIKE" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6858703352524505088", + "numLikes": 144, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6858703352524505088", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 144, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6858450025203146752,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6858450025203146752", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6858450025203146752)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6858450025203146752)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-prix-du-p%C3%A9trole-et-par-cons%C3%A9quent-du-activity-6858450025203146752-gbiY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6858450024834064384", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6858450025203146752", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6858450025203146752,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6858450025203146752,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6858450024834064384", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "OonlcKxIyBM1asa+iLCk0Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6858450025203146752,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8115711697495406112", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675524175388?e=1677240000&v=beta&t=WUMJtz7-uSqxpua90hO4OMHWA28X6S-SISTh5-g1c9M", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675524175388?e=1677240000&v=beta&t=Nt0Yri-NerQtf_JXmYSzdrr0dusyotphYaU9H6FalaQ", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675524175388?e=1677240000&v=beta&t=woYDSb39hcnD3zIlPLTJx24Uys2bb2nyhgy7n1_7EDM", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675524175388?e=1677240000&v=beta&t=BvHS_nIV3PhW00Ehlj9u2BfjeVVxnm1PQJWIZJTFD0E", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGkMGEGA2kjpg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8115711697495406112)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8115711697495406112)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le prix du p\u00e9trole, et par cons\u00e9quent du carburant, va-t-il continuer de grimper ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/programmes/c-est-notre-planete/7900089302-le-prix-du-petrole-et-par-consequent-du-carburant-va-t-il-continuer-de-grimper" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le prix du p\u00e9trole, et par cons\u00e9quent du carburant, va-t-il continuer de grimper ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6858450024834064384,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ma chronique de Samedi dernier sur RTL portait sur... le pic de production du p\u00e9trole conventionnel. La question d'entr\u00e9e \u00e9tait bien s\u00fbr celle du prix des carburants. J'en ai profit\u00e9 pour essayer d'expliquer 3 choses :\n- que le pic pour le conventionnel \u00e9tait pass\u00e9 depuis plus de 10 ans,\n- qu'il se pourrait bien que le pic tous p\u00e9troles ait \u00e9t\u00e9 pass\u00e9 juste avant le covid,\n- et que, pour autant, cela ne conduira pas le prix du p\u00e9trole \u00e0 \u00eatre ind\u00e9finiment croissant, ce qui est \u00e9videmment tr\u00e8s perturbant pour le consommateur \"ordinaire\" (et \u00e0 mon avis tr\u00e8s perturbant aussi pour le politique ordinaire !).\n\nIl est vraisemblable que j'aurai un peu besoin d'y revenir avant que les auditeurs de la radio ne soient familiers avec cette affaire de pic..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6858450024834064384,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6858450025203146752,urn:li:activity:6858450025203146752,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 27, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6858450025203146752,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6858450025203146752,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6858450025203146752", + "threadId": "activity:6858450025203146752", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6858450025203146752", + "urn": "urn:li:activity:6858450025203146752", + "numComments": 50, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6858450025203146752", + "reactionTypeCounts": [ + { + "count": 340, + "reactionType": "LIKE" + }, + { + "count": 24, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6858450025203146752", + "numLikes": 386, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6858450025203146752", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 386, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6857952066808107008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6857952066808107008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6857952066808107008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6857952066808107008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_peut-on-vraiment-produire-plus-avec-moins-activity-6857952066808107008-BoJO?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6857952066371887104", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6857952066808107008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6857952066808107008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6857952066808107008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6857952066371887104", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "xVx56DfwZ+d7f2B21L2caw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6857952066808107008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7279177382171086061", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675655039696?e=1677240000&v=beta&t=nFqaYndsIldLI6Ck5Oo95jotoLCmSXln816lyNOZCro", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675655039696?e=1677240000&v=beta&t=yV8F5pN6hHLbdTyhMRR6i5mPARFDBsHDIS7j0nFo1FM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675655039697?e=1677240000&v=beta&t=sFAWMy3LsyAJr4ZmHtlGROCLGspwFxs2KXtv3gV-73M", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675655039697?e=1677240000&v=beta&t=Q8wgGJYYafMHFUO2xECV4u_Q31lCxS3MDdmzk-OfK1I", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGZga-1VFoHZA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7279177382171086061)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7279177382171086061)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Peut-on vraiment produire plus avec moins de CO2 ? by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/peut-on-vraiment-produire-plus-avec-moins-de-co2-1357412" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Peut-on vraiment produire plus avec moins de CO2\u00a0?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6857952066371887104,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 17, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Vittori", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAABMMHABybLIGbKxz3mYY-HDiuQyThsIgvg", + "occupation": "\u00e9ditorialiste at Les Echos", + "objectUrn": "urn:li:member:4993136", + "entityUrn": "urn:li:fs_miniProfile:ACoAAABMMHABybLIGbKxz3mYY-HDiuQyThsIgvg", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1516322127622?e=1681948800&v=beta&t=l9mVGWJwnAwzhaz_aELE3d061cItApqXaYFhVRdmGlo", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1516322127622?e=1681948800&v=beta&t=X1nxSNeALTQHBcOcKOoLMmA9TiVW-9xBUgdxm2_jtKA", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5116AQH58AGS4Kx5Ew/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-vittori-6688091", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1627577164056?e=1681948800&v=beta&t=5m8Ns0KZydMifld6M0l-6nsLq3qPgXmxjZjUlXHtGMg", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1627577164056?e=1681948800&v=beta&t=e2fbzhOgn_y53tJNTcpaQCj_Br8J4EOYyGIS5XixWdQ", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1627577164056?e=1681948800&v=beta&t=uqH-kOow02cCJ-IYtY7WlXQrnZcn4kvZqAnb2cZOuyc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1627577164056?e=1681948800&v=beta&t=tMARCi9zRvkfMLRfUYQ_WT3ZVJqMoN8G7UWnXpq005o", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFd7DrjKwvLKg/profile-displayphoto-shrink_" + } + }, + "trackingId": "qzduODQVTOGh/fKkjR2tyg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Jean-Marc Vittori se penche sur la question du d\u00e9couplage entre PIB et CO2. Ce d\u00e9couplage, ce serait le graal pour l'\u00e9conomie : il signifierait qu'il est possible d'avoir de plus en plus de PIB tout en faisant plonger les \u00e9missions de gaz \u00e0 effet de serre vers z\u00e9ro.\n\nLas, on sent que l'ami Vittori a quelques doutes. Il cite un document de l'Agence Europ\u00e9enne de l'Environnement (une instance officielle de l'Union, comme la Cour de Justice ou la Commission) qui dit explicitement que ce d\u00e9couplage semble \"hautement improbable\" : https://lnkd.in/dRbK9jZb\n\nIl constate que jusqu'\u00e0 maintenant le CO2 est certes mont\u00e9 moins vite que le PIB, mais qu'il n'est pas descendu. Et il se risque m\u00eame \u00e0 conclure son \u00e9ditorial de la mani\u00e8re suivante : \"Si nous voulons vraiment cesser les \u00e9missions de gaz \u00e0 effet de serre induites par l'activit\u00e9 humaine pour sauver la plan\u00e8te, nous devrons investir \u00e9norm\u00e9ment, innover \u00e9norm\u00e9ment, changer \u00e9norm\u00e9ment de mode de vie. Est-ce possible\u00a0? La charge de la preuve n'incombe pas aux tenants de la d\u00e9croissance, mais au camp d'en face.\".\n\nOn ne saurait mieux inviter les concepteurs de sc\u00e9narios de \"croissance verte\" \u00e0 faire la preuve de la vraisemblance de leur proposition." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6857952066371887104,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6857952066808107008,urn:li:activity:6857952066808107008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6857952066808107008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6857952066808107008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6857952066808107008", + "threadId": "activity:6857952066808107008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6857952066808107008", + "urn": "urn:li:activity:6857952066808107008", + "numComments": 118, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6857952066808107008", + "reactionTypeCounts": [ + { + "count": 1171, + "reactionType": "LIKE" + }, + { + "count": 103, + "reactionType": "INTEREST" + }, + { + "count": 99, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6857952066808107008", + "numLikes": 1420, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6857952066808107008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1420, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6857577045224919040,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6857577045224919040", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6857577045224919040)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6857577045224919040)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_taxe-auto-sur-le-poids-interview-de-nicolas-activity-6857577045224919040-kvyk?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6857577044771909632", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6857577045224919040", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6857577045224919040,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6857577045224919040,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6857577044771909632", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "xTYywq/ZVNvptplywOpMqA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6857577045224919040,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7256565561117789206", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676464425326?e=1677240000&v=beta&t=LIDUj6tVBPlcINDoaxvnUJgEVceJSbXNcLOBs89xR3Y", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676464425327?e=1677240000&v=beta&t=BfYRVbjPhUEHzT7JUCJCVZfoULHZrZ5-IQJDhw9W8Qo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676464425327?e=1677240000&v=beta&t=Z5Qt_Pm1JfmT7Agm2MkX15JO6iNE6Cl3v5WOOZOFE9A", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676464425327?e=1677240000&v=beta&t=SjjxGBNve8XPcJhqMU0cMqCfMLhmr1yRIPEe17I6oI8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH6fQCAA061NQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7256565561117789206)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7256565561117789206)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 9 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Taxe auto sur le poids - Interview de Nicolas Meilhan | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/taxe-auto-poids-interview-de-nicolas-meilhan" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Taxe auto sur le poids - Interview de Nicolas Meilhan | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6857577044771909632,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 280, + "length": 15, + "miniProfile": { + "firstName": "Nicolas", + "lastName": "Meilhan", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAEd8wwBDi4w_-XSYJtrS7sR1R-5jaDUa5A", + "occupation": "Ing\u00e9nieur sur les sujets du transport et de l'\u00e9nergie - Conf\u00e9rencier", + "objectUrn": "urn:li:member:18739980", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAEd8wwBDi4w_-XSYJtrS7sR1R-5jaDUa5A", + "publicIdentifier": "nicolasmeilhan", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1631074239811?e=1681948800&v=beta&t=_kNmxneVczHlnubCGljAwMUH0N_wXSPOAgAA6X-JHTo", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1631074239811?e=1681948800&v=beta&t=R0emV_T0S8KiZUvbNBagfaPYOKeyEI7FfAVajXaJ6VI", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1631074239811?e=1681948800&v=beta&t=TjnvQemcnwmaxhmioCQYoZM6PkrHd4EbiEVuH-npq7Q", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1631074239811?e=1681948800&v=beta&t=WYLYREEUSz9G2WLpEjit9zxVUPpCUFnrI6CN1SpYEkk", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQHhTqlH9MaJXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "7i5xHGLfRhSg8OcGli+p3A==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Les voitures vendues en Europe ont pris en moyenne 10 kg par an depuis 50 ans. Certes le renforcement de la s\u00e9curit\u00e9 passive a jou\u00e9 un r\u00f4le, mais le confort et l\u2019automatisation aussi, sans parler de l\u2019augmentation de la taille et de la puissance.\n\nDans une interview \u00e0 Carbone 4, Nicolas Meilhan plaide en faveur d'une fiscalit\u00e9 bas\u00e9e sur poids des v\u00e9hicules, et qui vient s'ajouter au bonus-malus bas\u00e9 sur le CO2. Questionn\u00e9 sur la redondance (un v\u00e9hicule plus lourd est normalement aussi plus \u00e9missif), il r\u00e9pond ceci : \n\n- Le malus au poids, qui entre en vigueur en 2022, a \u00e9t\u00e9 un pr\u00e9texte pour moins durcir le malus CO2. Du coup il devient d'autant plus n\u00e9cessaire.\n\n- Au niveau europ\u00e9en, les obligations \u00e0 respecter par les constructeurs sur les \u00e9missions \u00e0 l\u2019\u00e9chappement sont d\u00e9finies pour partie par kg de masse, encouragent ces derniers\u00a0\u00e0 faire des grosses voitures ! De plus, la r\u00e9glementation europ\u00e9enne ne prend pas en compte les \u00e9missions de fabrication, en gros proportionnelles \u00e0 la masse du v\u00e9hicule. Le malus au poids vient l\u00e0 aussi corriger ce biais.\n\n- Pour les \u00e9missions d'utilisation, le nouveau protocole d\u2019homologation (WLTP) est plus r\u00e9aliste que l\u2019ancien (NEDC), mais minore encore - de l\u2019ordre de 20 \u00e0 25 % - la r\u00e9alit\u00e9. Il est moins facile de \"s'arranger\" sur le poids.\n\n- Enfin un tel malus au poids s'appliquant aussi aux v\u00e9hicules \u00e9lectriques, cela aidera \u00e0 dissuader les constructeurs de faire des tanks \u00e9lectriques, ce qui est la tendance actuelle." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6857577044771909632,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6857577045224919040,urn:li:activity:6857577045224919040,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 129, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6857577045224919040,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6857577045224919040,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6857577045224919040", + "threadId": "activity:6857577045224919040", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6857577045224919040", + "urn": "urn:li:activity:6857577045224919040", + "numComments": 235, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6857577045224919040", + "reactionTypeCounts": [ + { + "count": 1511, + "reactionType": "LIKE" + }, + { + "count": 105, + "reactionType": "INTEREST" + }, + { + "count": 93, + "reactionType": "PRAISE" + }, + { + "count": 65, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "EMPATHY" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6857577045224919040", + "numLikes": 1800, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6857577045224919040", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1800, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6857218227194347521,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6857218227194347521", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6857218227194347521)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6857218227194347521)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_the-climate-disaster-is-here-this-is-what-activity-6857218227194347521-hJRw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6857218226607165440", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6857218227194347521", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6857218227194347521,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6857218227194347521,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6857218226607165440", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "OA3z0xVgurxqA0vJ97wb6A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6857218227194347521,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7513627094060280517", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676514546617?e=1677240000&v=beta&t=qjbmUb2zjw5PIruNgwLF2DUQI1N_UIga6W185BOuqBc", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676514546617?e=1677240000&v=beta&t=4zu4Wd3huwwef9hqwSaF9E2iQTFRobup11T8y__W-hc", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676514546617?e=1677240000&v=beta&t=_FSFEO_Y4k84Ig7I1tDCljcqMK8pC6eq5f90JmQYzYM", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676514546617?e=1677240000&v=beta&t=Jif9xTQ2FfimG0Fu8ZXPBg8YKEHn6sIiLts97kED2og", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGu91mJZk_PRw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7513627094060280517)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7513627094060280517)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: The climate disaster is here \u2013 this is what the future looks like by theguardian.com", + "actionTarget": "https://www.theguardian.com/environment/ng-interactive/2021/oct/14/climate-change-happening-now-stats-graphs-maps-cop26" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "The climate disaster is here \u2013 this is what the future looks like" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6857218226607165440,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Guardian, qui est probablement le quotidien le plus engag\u00e9 sur la question du climat de toute la presse occidentale, publie - juste avant Glasgow - des infographies tr\u00e8s p\u00e9dagogiques bas\u00e9es sur le dernier rapport du GIEC. \n\nIl y figure notamment une cartographie interactive qui illustre les cons\u00e9quences en Europe en mati\u00e8re de vagues de chaleur, pr\u00e9cipitations intenses, incendies, en fonction de l'\u00e9l\u00e9vation de temp\u00e9rature et donc d'horizon temporel sur un sc\u00e9nario \"ligne de pente\".\n\nJusqu'\u00e0 maintenant, les mauvaises surprises ont eu tendance \u00e0 arriver plut\u00f4t plus vite (par exemple le Canada et l'ouest am\u00e9ricain cet \u00e9t\u00e9) que ce qui est \"pr\u00e9vu par les mod\u00e8les\". Prenons donc ces cartes plut\u00f4t comme une borne inf\u00e9rieure que comme une borne sup\u00e9rieure...\n\nCes derniers jours, de nombreuses voix se sont indign\u00e9es parce que \"les p\u00e9troliers savaient et ont fait ce qu'il fallait pour semer le doute\". Mais posons nous un instant la question suivante : qu'avons nous fait de plus depuis que le doute n'est plus que l'apanage d'une faible minorit\u00e9 de d\u00e9cideurs y compris en Europe ? Nous avons lanc\u00e9 la 5G, augment\u00e9 la fraction de SUV dans les ventes, d\u00e9cid\u00e9 de baisser le nucl\u00e9aire au profit du gaz, aid\u00e9 les compagnies a\u00e9riennes, multipli\u00e9 les entrep\u00f4ts desservis par camion et les zones pavillonnaires desservies par la voiture, et j'en passe. \n\nLorsque la \"vertu climatique\" s'est empar\u00e9e de nous, cela a \u00e9t\u00e9 pour d'autres raisons que le climat (insuffisance d'approvisionnement en p\u00e9trole et gaz, notamment ; un sujet compl\u00e8tement hors du radar des politiques et des media, dont quasiment pas un n'\u00e9voque ce d\u00e9terminant de la hausse des prix !). \n\nNous n'avons toujours pas souhait\u00e9, collectivement, que l'environnement passe avant les euros, lesquels ignorent justement l'environnement par construction (puisque l'\u00e9conomie postule que l'environnement est gratuit parce que infini). La r\u00e9volution intellectuelle qui nous reste \u00e0 faire est l\u00e0. A cause de l'inertie du syst\u00e8me, elle arrivera de toute fa\u00e7on trop tard pour \u00e9viter une (large) partie des baffes. Mais elle reste plus n\u00e9cessaire que jamais.\n\nGlasgow ne sera pas un succ\u00e8s si nous faisons de grandes d\u00e9clarations. Glasgow sera un succ\u00e8s si elle amplifie l'envie de chaque maire, chaque d\u00e9put\u00e9, chaque chef d'entreprise, chaque vendeur, chaque conducteur de bus ou de camion, chaque agriculteur, chaque enseignant, chaque plombier, chaque ing\u00e9nieur, et j'en passe, de mobiliser tous ses neurones et toutes ses tripes sur la r\u00e9solution du formidable d\u00e9fi qui se pose \u00e0 nous. Il n'y a rien \u00e0 attendre des Nations Unies si nous n'attendons rien de nous-m\u00eames." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6857218226607165440,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6857218227194347521,urn:li:activity:6857218227194347521,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 128, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6857218227194347521,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6857218227194347521,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6857218227194347521", + "threadId": "activity:6857218227194347521", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6857218227194347521", + "urn": "urn:li:activity:6857218227194347521", + "numComments": 193, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6857218227194347521", + "reactionTypeCounts": [ + { + "count": 5171, + "reactionType": "LIKE" + }, + { + "count": 505, + "reactionType": "PRAISE" + }, + { + "count": 472, + "reactionType": "INTEREST" + }, + { + "count": 122, + "reactionType": "MAYBE" + }, + { + "count": 95, + "reactionType": "APPRECIATION" + }, + { + "count": 53, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6857218227194347521", + "numLikes": 6418, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6857218227194347521", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6418, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6856913943756054528,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6856913943756054528", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6856913943756054528)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6856913943756054528)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-marc-jancovici-pour-le-moment-cest-activity-6856913943756054528-pf6V?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6856913943298895873", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6856913943756054528", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6856913943756054528,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6856913943756054528,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6856913943298895873", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "S02mgT12a2wMw+jLT8u4xA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6856913943756054528,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7391241230598386425", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675633420304?e=1677240000&v=beta&t=EC_K4ZKitWD8WxJhA50dWloKxX-RTAdNdob9eIyFBl8", + "expiresAt": 1677240000000, + "height": 453 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675633420304?e=1677240000&v=beta&t=kM0pRzMleYvj7SlGhvdP_V1B_PaNzFDCPwj0DqFhHo4", + "expiresAt": 1677240000000, + "height": 680 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675633420304?e=1677240000&v=beta&t=Pk23_mSMF0OFEuPdRWjxdwyJuSjas-8O8UiF9F189Go", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675633420304?e=1677240000&v=beta&t=3QdfiVnFw3lY1s6X0PLO45XBDOLvT0yUIeFmmmtsYb0", + "expiresAt": 1677240000000, + "height": 272 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEwnL11uHSWUQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.56625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7391241230598386425)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7391241230598386425)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "franceinter.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean-Marc Jancovici : \"Pour le moment, c'est clair que nous ne sommes pas au niveau\" by franceinter.fr", + "actionTarget": "https://www.franceinter.fr/emissions/l-invite-de-8h20-le-grand-entretien/l-invite-de-8h20-le-grand-entretien-du-jeudi-21-octobre-2021" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici : \"Pour le moment, c'est clair que nous ne sommes pas au niveau\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6856913943298895873,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Malgr\u00e9 les arbres abattus cette nuit en travers des voies du RER, j'ai r\u00e9ussi \u00e0 \u00eatre \u00e0 l'heure dans les studios de Radio France pour pr\u00e9senter la BD que j'ai l'honneur d'avoir co-sign\u00e9 avec Christophe Blain, et qui sort la semaine prochaine (le 29 octobre normalement) : Le Monde sans Fin (https://lnkd.in/dWyJRasj ).\n\nIl y sera question de Clint Eastwood, de Ma\u00eetre Yoda, de Jimini Cricket, d'un parachutiste qui tricote en mangeant du chocolat, de striatum, de marins ayant le mal de mer, de dinosaures et d'enfants qui se battent en vacances, d'un ap\u00f4tre radioactif (normal !), et tr\u00e8s accessoirement d'\u00e9nergie, de climat, et pourquoi le monde est fait comme il est fait. Malgr\u00e9 les efforts de Christophe pour me limiter, de nombreuses blagues de plus ou moins bon gout ont surv\u00e9cu.\n\nMerci de passer prioritairement par votre libraire de quartier et non par un gafa que je ne nommerai pas pour acqu\u00e9rir cet ouvrage qui a demand\u00e9 2 ans de travail (mais on s'est bien marr\u00e9s). Cela soutiendra le petit commerce au lieu d'un gafa, et par voie de cons\u00e9quence \u00e9vitera peut-\u00eatre un tout petit bout d'entrep\u00f4t suppl\u00e9mentaire !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6856913943298895873,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6856913943756054528,urn:li:activity:6856913943756054528,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 152, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6856913943756054528,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6856913943756054528,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6856913943756054528", + "threadId": "activity:6856913943756054528", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6856913943756054528", + "urn": "urn:li:activity:6856913943756054528", + "numComments": 194, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6856913943756054528", + "reactionTypeCounts": [ + { + "count": 4547, + "reactionType": "LIKE" + }, + { + "count": 394, + "reactionType": "PRAISE" + }, + { + "count": 177, + "reactionType": "EMPATHY" + }, + { + "count": 94, + "reactionType": "APPRECIATION" + }, + { + "count": 37, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6856913943756054528", + "numLikes": 5272, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6856913943756054528", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5272, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6856823099413819392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6856823099413819392", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6856823099413819392)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6856823099413819392)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_sondage-r%C3%A9concilier-transport-de-marchandises-activity-6856823099413819392-5942?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6856823098864345088", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6856823099413819392", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6856823099413819392,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6856823099413819392,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6856823098864345088", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "4uLEJ1wqax0cpHvTeGl+gQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6856823099413819392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7528933029957173459", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676535682880?e=1677240000&v=beta&t=sWtMZpKoOkvvtRhMYsqZRaDjK-I6iVqhcJ2nc06WA9w", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676535682881?e=1677240000&v=beta&t=EycwUtqy-inXh5SyZypQpUQ_f_JxY0KpaPV16f7g_mA", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676535682881?e=1677240000&v=beta&t=chK94rtlwTOjCwU8FqDdZx-RqIgQdSMAl_TlJ4TOw0I", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676535682881?e=1677240000&v=beta&t=aF341ETU6mIJRZNMTenzp6ytTGIzr8BvOmaRgm9A-Lc", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHq6WJH9KFscw/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7528933029957173459)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7528933029957173459)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Sondage (r\u00e9)Concilier transport de marchandises et d\u00e9carbonation | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/sondage-transport-marchandises-decarbonation" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Sondage (r\u00e9)Concilier transport de marchandises et d\u00e9carbonation | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6856823098864345088,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "p4t6TNZTTHekx5iNHzPtaQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4 publie un de ses premiers sondages. En l'esp\u00e8ce, ce dernier a \u00e9t\u00e9 r\u00e9alis\u00e9 avec BP2R, un cabinet de conseil sp\u00e9cialis\u00e9 dans l'optimisation du fret.\n\nCe sondage a \u00e9t\u00e9 effectu\u00e9 aupr\u00e8s de 130 professionnels en poste au sein du service transport, achats indirects ou supply chain d\u2019une entreprise donneuse d\u2019ordres.\n\nLes questions ont port\u00e9, de mani\u00e8re assez d\u00e9taill\u00e9e, sur les moyens et l'organisation interne de l'entreprise en ce qui concerne la gestion de son empreinte carbone pour la part li\u00e9e au transport de marchandises. Quel est le budget du transport ? L'entreprise a-t-elle un objectif de baisse de ses \u00e9missions ? Si oui, le transport a-t-il un objectif sp\u00e9cifique ? Quels sont les moyens budg\u00e9taires et techniques allou\u00e9s \u00e0 cet objectif ? Etc.\n\nSans grande surprise, on constate que pour le moment les d\u00e9clarations restent trop souvent \"sup\u00e9rieures aux moyens\". Par exemple, 80% des entreprises interrog\u00e9es ont un objectif de r\u00e9duction des \u00e9missions, mais, dans le domaine du fret, seules un quart ont un budget pour mettre en oeuvre cette d\u00e9carbonation.\n\nOr, le passage \u00e0 l'acte est certes une affaire de compr\u00e9hension du probl\u00e8me et de m\u00e9trique pour en appr\u00e9cier l'ampleur, mais aussi, \u00e0 un moment ou \u00e0 un autre, une affaire de moyens.\n\nOn y apprend aussi que la r\u00e9duction des volumes transport\u00e9s est la derni\u00e8re marge de manoeuvre envisag\u00e9e par les personnes interrog\u00e9es. Mais, pour mettre une entreprise sur la trajectoire des 2\u00b0C, ce qui suppose que son empreinte carbone baisse d'environ 5% par an, il n'est pas sur que l'on puisse y \u00e9chapper ! Avant l'\u00e9nergie abondante, la limitation des volumes transport\u00e9s \u00e9tait souvent le premier crit\u00e8re d'optimisation d'une organisation..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6856823098864345088,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6856823099413819392,urn:li:activity:6856823099413819392,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 15, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6856823099413819392,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6856823099413819392,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6856823099413819392", + "threadId": "activity:6856823099413819392", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6856823099413819392", + "urn": "urn:li:activity:6856823099413819392", + "numComments": 44, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6856823099413819392", + "reactionTypeCounts": [ + { + "count": 87, + "reactionType": "LIKE" + }, + { + "count": 13, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6856823099413819392", + "numLikes": 108, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6856823099413819392", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 108, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6856817059821600768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6856817059821600768", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6856817059821600768)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6856817059821600768)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_trains-ou-vols-int%C3%A9rieurs-uaf-et-aci-en-activity-6856817059821600768-NGIC?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6856817059192459264", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6856817059821600768", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6856817059821600768,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6856817059821600768,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6856817059192459264", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "b8lR73SbHgRqKLfHHrGgDg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6856817059821600768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8877315018457123517", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676314743716?e=1677240000&v=beta&t=6J6fQ7qxm2QAuICl1HRaBIBnbYY0iBBf2eOQ8f_NtpU", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676314743716?e=1677240000&v=beta&t=-yS-8X8DxfWU5I6XUMKcljjJhHZyelQhJPTULONwolo", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676314743716?e=1677240000&v=beta&t=hMzLh0YXOqorNlZ4AVCPKW6csXX8p6urRq20KOGG6IA", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676314743716?e=1677240000&v=beta&t=QEhYnvZik310slGFhkxeTfKVeym95dXmjMDw0mQDqgc", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEvLyR8azwfjQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8877315018457123517)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8877315018457123517)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "air-journal.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Trains ou vols int\u00e9rieurs : UAF et ACI en appellent \u00e0 l\u2019Europe | Air Journal by air-journal.fr", + "actionTarget": "https://www.air-journal.fr/2021-10-20-trains-ou-vols-interieurs-uaf-et-aci-en-appellent-a-leurope-5231117.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Trains ou vols int\u00e9rieurs : UAF et ACI en appellent \u00e0 l\u2019Europe | Air Journal" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6856817059192459264,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Union des a\u00e9roports fran\u00e7ais et Airports Council International Europe ont introduit un recours aupr\u00e8s de la Commission Europ\u00e9enne pour invalider la loi disposition de la loi Climat qui oblige les compagnies a\u00e9riennes \u00e0 supprimer les lignes int\u00e9rieures quand le m\u00eame trajet peut \u00eatre r\u00e9alis\u00e9 en train en moins de 2h30.\n\nIl se trouve, explique l'article, que les liaisons concern\u00e9es, au nombre de 4 (Paris-Bordeaux, Paris-Lyon, Paris-Nantes et Marseille-Lyon) sont toutes exploit\u00e9es par Air France, qui avait d\u00e9j\u00e0 pris l'engagement de supprimer ses vols int\u00e9rieurs quand le temps de trajet en train est inf\u00e9rieur \u00e0 2h30, en \u00e9change de l'aide \"covid\".\n\nCertes, les a\u00e9roports ne sont pas Air France, et ces derniers n'avaient pris aucun engagement. Mais est-ce vraiment ramer dans le sens du courant que de livrer ce combat, au surplus au moment o\u00f9 le secteur a\u00e9rien r\u00e9p\u00e8te \u00e0 qui veut l'entendre que le climat est sa grande affaire ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6856817059192459264,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6856817059821600768,urn:li:activity:6856817059821600768,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6856817059821600768,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6856817059821600768,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6856817059821600768", + "threadId": "activity:6856817059821600768", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6856817059821600768", + "urn": "urn:li:activity:6856817059821600768", + "numComments": 259, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6856817059821600768", + "reactionTypeCounts": [ + { + "count": 665, + "reactionType": "LIKE" + }, + { + "count": 71, + "reactionType": "MAYBE" + }, + { + "count": 61, + "reactionType": "INTEREST" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6856817059821600768", + "numLikes": 824, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6856817059821600768", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 824, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6856482207494660096,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6856482207494660096", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6856482207494660096)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6856482207494660096)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-grandes-entreprises-face-au-casse-t%C3%AAte-activity-6856482207494660096-yYJs?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6856482206861340672", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6856482207494660096", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6856482207494660096,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6856482207494660096,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6856482206861340672", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "JH9gg3AcZwMj7OgluTvBGw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6856482207494660096,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7121508703472638346", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676341885217?e=1677240000&v=beta&t=PstaJ9_JQCyAktU3dsG3PV5cKGB_C6jqUWjYD1gX0qY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676341885217?e=1677240000&v=beta&t=hYoXRrFl2mGANRdydvjdf6q9ehJEVS11-SE9F5xW3Ms", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676341885217?e=1677240000&v=beta&t=U9KulPjaA2yxwJ-cGrosTVV6WZwGSlOzugc_COaiotE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676341885217?e=1677240000&v=beta&t=N3N9yL16RVsFsOEokWiNS1vIO9om8QtS8IeKhjARv2U", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQExygBzLEJ6CQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7121508703472638346)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7121508703472638346)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les grandes entreprises face au casse-t\u00eate de la mesure de leurs \u00e9missions de CO2 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/enjeux-internationaux/les-grandes-entreprises-face-au-casse-tete-de-la-mesure-de-leurs-emissions-de-co2-1354687" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les grandes entreprises face au casse-t\u00eate de la mesure de leurs \u00e9missions de CO2" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6856482206861340672,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "D'apr\u00e8s une \u00e9tude d'Oxford (dont le lien n'est pas donn\u00e9 dans l'article des Echos), 20% des entreprises (mondiales je suppose) se sont engag\u00e9es \u00e0 atteindre la neutralit\u00e9 carbone (nonobstant le fait que cette notion n'a pas de sens \u00e0 l'\u00e9chelle d'une entreprise). \n\nMais selon une analyse du BCG relay\u00e9e par cet article des Echos, 9% seulement des grandes entreprises (chez les petites c'est \u00e9videmment inf\u00e9rieur) ont effectu\u00e9 un bilan carbone complet, incluant les \u00e9missions indirectes dont d\u00e9pend leur activit\u00e9 (dites de scope 3 dans le jargon). Peut-on s'engager \u00e0 passer l'\u00e9ponge derri\u00e8re des \u00e9missions que l'on ne mesure pas ? Apparemment oui ! \n\n\"Le principal frein \u00e0 la r\u00e9duction des \u00e9missions est l'absence d'outils de mesure\" indique l'auteur de l'analyse du BCG en citant les entreprises interrog\u00e9es. Sans viser sp\u00e9cifiquement l'auteur de la citation, qui ne fait que relayer ce que disent ces clients, il faut arr\u00eater de propager cette id\u00e9e - largement relay\u00e9e par les \"r\u00e9sistants\" au sein du monde des entreprises - selon laquelle mesurer les \u00e9missions dont on d\u00e9pend serait impossible ou ruineux. \n\nCe n'est ni l'un ni l'autre : faire un bilan carbone coute le prix du salaire annuel d'un seul contr\u00f4leur de gestion, que chaque grande entreprise embauche par centaines. Il y a des m\u00e9thodes \u00e9prouv\u00e9es (pour lesquelles la France est en avance, alors que je suppose que cette \u00e9tude est mondiale) pour ce faire, qui n'ont absolument pas besoin de \"l'intelligence artificielle\" comme il est \u00e9voqu\u00e9 en fin d'article, mais juste de gens comp\u00e9tents pour s'attaquer \u00e0 la question. Pour mettre le pied \u00e0 l'\u00e9trier et avoir une premi\u00e8re estimation de \"l\u00e0 o\u00f9 ca fait mal\", un simple tableur est suffisant. Enfin l'incertitude sur les r\u00e9sultats n'est pas plus \u00e9lev\u00e9e que celle sur les provisions dans le bilan de n'importe quelle banque.\n\nTous ceux qui veulent procrastiner invoquent ces excuses. Mais il ne faut pas s'y laisser prendre. Et surtout, comme il \u00e9tait \u00e9voqu\u00e9 dans cette tribune - https://lnkd.in/ea7CrktT - il ne faut relayer aucune annonce sur l'\u00e9volution des \u00e9missions venant d'une entreprise qui n'a pas commenc\u00e9 par former son ex\u00e9cutif au probl\u00e8me (physique) \u00e0 traiter, et calcul\u00e9 son empreinte carbone, ce qui ne pose aucun probl\u00e8me majeur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6856482206861340672,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6856482207494660096,urn:li:activity:6856482207494660096,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6856482207494660096,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6856482207494660096,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6856482207494660096", + "threadId": "activity:6856482207494660096", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6856482207494660096", + "urn": "urn:li:activity:6856482207494660096", + "numComments": 92, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6856482207494660096", + "reactionTypeCounts": [ + { + "count": 983, + "reactionType": "LIKE" + }, + { + "count": 75, + "reactionType": "INTEREST" + }, + { + "count": 62, + "reactionType": "PRAISE" + }, + { + "count": 28, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6856482207494660096", + "numLikes": 1160, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6856482207494660096", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1160, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6856285453914562560,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6856285453914562560", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6856285453914562560)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6856285453914562560)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_entreprises-et-neutralite-carbone-premieres-conclusions-et-enjeux-identifies-activity-6856285453914562560-MfPx?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6856285453394489344", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6856285453914562560", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6856285453914562560,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6856285453914562560,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6856285453394489344", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "JnfZEalXXcTK1XdH81wmuw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6856285453914562560,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8305891846870967081", + "swapTitleAndSubtitle": false, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8305891846870967081)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8305891846870967081)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "amf-france.org \u2022 33 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: entreprises-et-neutralite-carbone-premieres-conclusions-et-enjeux-identifies_2.pdf by amf-france.org", + "actionTarget": "https://www.amf-france.org/sites/default/files/private/2021-10/entreprises-et-neutralite-carbone-premieres-conclusions-et-enjeux-identifies_2.pdf" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "- 2 - Ce document est le r\u00e9sultat des discussions, recherches et entretiens avec des experts men\u00e9s par un groupe de travail constitu\u00e9 en ..." + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "entreprises-et-neutralite-carbone-premieres-conclusions-et-enjeux-identifies_2.pdf" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6856285453394489344,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"Afin de refl\u00e9ter la r\u00e9alit\u00e9 physique des flux de GES et de faciliter le pilotage, l\u2019entreprise doit se fixer des objectifs et rendre compte s\u00e9par\u00e9ment des diff\u00e9rentes actions men\u00e9es (r\u00e9duction de ses \u00e9missions, augmentation des puits de carbone et des \u00e9missions \u00e9vit\u00e9es dans sa cha\u00eene de valeur, contribution financi\u00e8re).\n\nAinsi parla non pas Zarathoustra, mais l'Autorit\u00e9 des March\u00e9s Financiers dans un avis qu'elle vient de rendre sur la neutralit\u00e9 et les entreprises (https://lnkd.in/eH6Q3U3v ).\n\nOn peut trouver dans le m\u00eame document quelques paragraphes plus haut : \"Elle passe avant tout et principalement par une diminution en valeur absolue des \u00e9missions de gaz \u00e0 effet de \nserre (GES) de l\u2019entreprise sur l\u2019ensemble de sa cha\u00eene de valeur, \u00e0 partir d\u2019objectifs align\u00e9s sur les connaissances scientifiques, r\u00e9vis\u00e9s r\u00e9guli\u00e8rement, avec une premi\u00e8re \u00e9tape \u00e0 2030 ou avant\".\n\nDit autrement : une entreprise ne peut pas se revendiquer neutre en faisant \"\u00e9missions - compensation = z\u00e9ro et je communique juste sur le z\u00e9ro\". Elle doit communiquer, puis agir, sur chacun des trois plans que sont \u00e9missions induites sur la chaine de valeur, \u00e9missions \u00e9vit\u00e9es sur la cha\u00eene de valeur, et \u00e9missions \u00e9vit\u00e9es ou carbone s\u00e9questr\u00e9 (en faisant bien la diff\u00e9rence entre les deux) hors de la chaine de valeur, par financement de projets.\n\nElle doit aussi ne pas botter en touche en se donnant uniquement un objectif \u00e0 2050 - donc quand l'ensemble de l'ex\u00e9cutif en place ne sera plus l\u00e0 - sans \u00e9ch\u00e9ances plus courtes, qui id\u00e9alement n'attendront m\u00eame pas 2030.\n\nApr\u00e8s l'Ademe, un autre organisme important - et tr\u00e8s important dans la gouvernance des entreprises cot\u00e9es - se prononce donc en faveur d'une approche rigoureuse de la neutralit\u00e9, incitant les entreprises \u00e0 l'effort et non \u00e0 une forme de paresse, qui est malheureusement ce qui s'observe quand elle se d\u00e9clare neutre d\u00e8s \u00e0 pr\u00e9sent (car alors tous les collaborateurs sont incit\u00e9s \u00e0 ne plus se mobiliser puisque le probl\u00e8me est r\u00e9gl\u00e9 !).\n\nCe qui serait l'id\u00e9al, ce serait de voir l'AMF rejeter un document de r\u00e9f\u00e9rence d'une soci\u00e9t\u00e9 cot\u00e9e parce que ce dernier pr\u00e9sente abusivement l'entreprise comme ayant r\u00e9gl\u00e9 son probl\u00e8me avec le climat via l'affichage d'une \"neutralit\u00e9 individuelle\" qui n'a pas de fondement. \n\nNous n'en sommes pas encore l\u00e0, mais \u00e0 l'heure o\u00f9 l'all\u00e9gation de neutralit\u00e9 devient un motif pour se faire tra\u00eener en justice (https://lnkd.in/ecjahPE8 ), qui peut dire que ce ne sera jamais le cas ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6856285453394489344,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6856285453914562560,urn:li:activity:6856285453914562560,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 13, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6856285453914562560,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6856285453914562560,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6856285453914562560", + "threadId": "activity:6856285453914562560", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6856285453914562560", + "urn": "urn:li:activity:6856285453914562560", + "numComments": 17, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6856285453914562560", + "reactionTypeCounts": [ + { + "count": 316, + "reactionType": "LIKE" + }, + { + "count": 28, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "INTEREST" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6856285453914562560", + "numLikes": 379, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6856285453914562560", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 379, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6856115828975308800,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6856115828975308800", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6856115828975308800)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6856115828975308800)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lhydrog%C3%A8ne-commercial-fait-ses-d%C3%A9buts-%C3%A0-activity-6856115828975308800-fi2V?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6856115828467785728", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6856115828975308800", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6856115828975308800,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6856115828975308800,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6856115828467785728", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "//qSQHNkt40YVX+3Cv8wkg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6856115828975308800,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8382130979287746695", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676292216319?e=1677240000&v=beta&t=zhAWd-rqogRcskHPImOG0Da0tqZ8oKB8yr8jk82vR0U", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676292216319?e=1677240000&v=beta&t=1ETRhLTFKZaEUdb54hNw_RH__XfYbYjbK5zTZNVMs-0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676292216319?e=1677240000&v=beta&t=cgPv5MJwCUJmAmwEMILbX93Xu9M1qAsFWYv39gqI0BI", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676292216319?e=1677240000&v=beta&t=spvD9gZMYEUdQPDxUt-xINZUGIaClRi-YAqiWHIUNd8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHbTTUINXFKxA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8382130979287746695)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8382130979287746695)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'hydrog\u00e8ne commercial fait ses d\u00e9buts \u00e0 Auxerre by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/pme-regions/bourgogne-franche-comte/lhydrogene-commercial-fait-ses-debuts-a-auxerre-1355502#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'hydrog\u00e8ne commercial fait ses d\u00e9buts \u00e0 Auxerre" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6856115828467785728,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 23, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:164716", + "entityUrn": "urn:li:fs_miniCompany:164716", + "name": "Les Echos", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1614596361150?e=1684972800&v=beta&t=1mOk7v0jlnCgcIswWyYHmIJewK7-gk_r177j-Dwp4tM", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1614596361150?e=1684972800&v=beta&t=rpDGHIGtA_4yGaFUdh9VuXSkC5Jf7cl29bRNg1rsCiA", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1614596361150?e=1684972800&v=beta&t=SZO0sBQXbxYynz8dd9fVa-Jtq8ZS209SRpqIEXlQ3Os", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGU2tYAtnGruQ/company-logo_" + } + }, + "universalName": "les-echos", + "dashCompanyUrn": "urn:li:fsd_company:164716", + "trackingId": "anvn3pNXRqK1MqkoJL519g==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Cet article publi\u00e9 par Les Echos met en avant une initiative d'Auxerre qui consiste \u00e0 faire rouler les bus \u00e0 l'hydrog\u00e8ne d\u00e9carbon\u00e9, dit vert. Malheureusement, il contient des affirmations inexactes, probablement dues au fait que l'auteure de l'article a du recopier le communiqu\u00e9 de presse sans avoir la capacit\u00e9 de r\u00e9futer ce qui y \u00e9tait \u00e9crit.\n\nL'hydrog\u00e8ne est d\u00e9carbon\u00e9 parce que la collectivit\u00e9 \"a achet\u00e9 de l'\u00e9lectricit\u00e9 verte\". Co\u00efncidence, ma chronique de Samedi dernier sur RTL explique en quoi \"acheter de l'\u00e9lectricit\u00e9 verte\" ne change physiquement rien \u00e0 ce qui se passe (https://lnkd.in/eCHxtijb ). Un \u00e9lectrolyseur qui est branch\u00e9 sur le r\u00e9seau utilise physiquement l'\u00e9lectricit\u00e9 du r\u00e9seau, quelle que soit la convention commerciale utilis\u00e9e par ailleurs. Acheter de l'\u00e9lectricit\u00e9 verte ou pas, c'est indiff\u00e9rent pour ce qui a lieu en pratique.\n\nEn France, le contenu carbone de cet \u00e9lectricit\u00e9 de r\u00e9seau est de l'ordre de 40 \u00e0 50 grammes de CO2 par kWh \u00e9lectrique (https://lnkd.in/embwmgu4 ). C'est beaucoup mieux que nos voisins (https://lnkd.in/eX9Z8Yhf ), mais pas z\u00e9ro.\n\nL'hydrog\u00e8ne qui est produit par \u00e9lectrolyse est \u00e0 presque 100 grammes de CO2 par kWh thermique, soit 40% des \u00e9missions du gaz. \n\nC'est donc mieux que du fossile, mais n'autorise pas \u00e0 \u00e9crire \"[les bus] transportent d\u00e9sormais les usagers de la ligne 1 de l'agglom\u00e9ration sans \u00e9mettre le moindre gramme de CO2\".\n\nEnfin l'article indique que l'\u00e9lectrolyseur fait 1 MW pour alimenter 5 bus \u00e0 hydrog\u00e8ne. Si ces donn\u00e9es sont exactes, cela signifie que pour convertir les 100.000 bus et cars de France (https://lnkd.in/e5g7Hqkv ) il faudrait donc 100 GW d'\u00e9lectrolyseurs, et donc affecter \u00e0 ce seul usage la totalit\u00e9 de la puissance \u00e9lectrique fran\u00e7aise. \n\nNous ne ferons donc pas beaucoup de bus \u00e0 hydrog\u00e8ne et ce n'est pas prioritaire pour d\u00e9carboner la mobilit\u00e9 du quotidien des fran\u00e7ais. Du reste la RATP a choisi non pas l'hydrog\u00e8ne mais l'\u00e9lectricit\u00e9 pour d\u00e9carboner sa flotte de bus. \n\nIl est probable que si Auxerre investissait la m\u00eame somme dans des bus \u00e9lectriques, cela \u00e9viterait plus de CO2 pour le m\u00eame prix. Mais ca ne ferait pas autant le buzz !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6856115828467785728,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6856115828975308800,urn:li:activity:6856115828975308800,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 127, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6856115828975308800,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6856115828975308800,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6856115828975308800", + "threadId": "activity:6856115828975308800", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6856115828975308800", + "urn": "urn:li:activity:6856115828975308800", + "numComments": 279, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6856115828975308800", + "reactionTypeCounts": [ + { + "count": 2096, + "reactionType": "LIKE" + }, + { + "count": 266, + "reactionType": "INTEREST" + }, + { + "count": 188, + "reactionType": "MAYBE" + }, + { + "count": 71, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "EMPATHY" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6856115828975308800", + "numLikes": 2647, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6856115828975308800", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2647, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6856107185060024320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6856107185060024320", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6856107185060024320)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6856107185060024320)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-marc-jancovici-activity-6856107185060024320-ir0F?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6856107184565100544", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6856107185060024320", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6856107185060024320,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6856107185060024320,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6856107184565100544", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "JHiO2uIgLrAdaENTYA2nag==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6856107185060024320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8990528164766718982", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 290, + "fileIdentifyingUrlPathSegment": "800/0/1675979383171?e=1677240000&v=beta&t=wqvI_IKX_pRBVQvzriP47YxTaz9uUd_pKhsPWqIQ_4A", + "expiresAt": 1677240000000, + "height": 193 + }, + { + "width": 290, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675979383172?e=1677240000&v=beta&t=0ATq_7yoJNc1NXYqp0Y8tR9R4Zv2JFv5n_qRHxLbIw4", + "expiresAt": 1677240000000, + "height": 193 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675979383172?e=1677240000&v=beta&t=7c_7MQC2amfXLc2kxSsxdECcKo-GF72N3NtGej7URgs", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 290, + "fileIdentifyingUrlPathSegment": "480/0/1675979383172?e=1677240000&v=beta&t=6i8duXOsZANa7yg9-C6fcQGuxE8J0TNnsmvi8ngN9gc", + "expiresAt": 1677240000000, + "height": 193 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE3scQ72n1Xnw/articleshare-shrink_" + }, + "displayAspectRatio": 0.6655172413793103 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Une vue sur la ville de Nice (illustration)" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8990528164766718982)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8990528164766718982)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean-Marc Jancovici by rtl.fr", + "actionTarget": "https://www.rtl.fr/auteur/jean-marc-jancovici" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6856107184565100544,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'\u00e9lectricit\u00e9 verte est-elle... plus verte que les autres ? Telle \u00e9tait la question de ma chronique sur RTL Samedi dernier.\n\nLa r\u00e9ponse n'\u00e9tonnera pas beaucoup ceux qui connaissent un peu le m\u00e9canisme des garanties d'origine : physiquement, pas plus que l'\u00e9lectricit\u00e9 \"non verte\" qui \u00e9tait utilis\u00e9e juste avant.\n\nC'est du reste pour cette raison que, lors d'un bilan carbone, les certificats de garantie d'origine ne changent rien \u00e0 la mani\u00e8re de compter les \u00e9missions de l'\u00e9lectricit\u00e9 : https://lnkd.in/eybUiFEA\n\nVendre au consommateur de l'\u00e9lectricit\u00e9 \"verte\" n'influe que tr\u00e8s tr\u00e8s marginalement , voire pas du tout, sur la situation pour diminuer la part fossile dans la production \u00e9lectrique, qui est le but \u00e0 atteindre. J'esp\u00e8re que les explications de la chronique sont \u00e0 peu pr\u00e8s claires !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6856107184565100544,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6856107185060024320,urn:li:activity:6856107185060024320,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 18, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6856107185060024320,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6856107185060024320,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6856107185060024320", + "threadId": "activity:6856107185060024320", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6856107185060024320", + "urn": "urn:li:activity:6856107185060024320", + "numComments": 32, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6856107185060024320", + "reactionTypeCounts": [ + { + "count": 117, + "reactionType": "LIKE" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6856107185060024320", + "numLikes": 142, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6856107185060024320", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 142, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6855754582941806592,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6855754582941806592", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6855754582941806592)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6855754582941806592)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cela-date-de-septembre-dernier-mais-nen-activity-6855754582941806592-UAu_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6855754582455287808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6855754582941806592", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6855754582941806592,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6855754582941806592,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6855754582455287808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "bNFg0vgaUIyTbwa6NYydlA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6855754582941806592,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQGArbtRZhKIZw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQGArbtRZhKIZw", + "artifacts": [ + { + "width": 1749, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1634539264887?e=1679529600&v=beta&t=ka2JvnTsvvSFuLOliSNbcVXEwa3WXdLqQsCG0rTQ5kI", + "expiresAt": 1679529600000, + "height": 612 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1634539264920?e=1679529600&v=beta&t=6DPWXZRf4xAt7lpsgWv1ZJ7RfdgrgnpbVonXLn6yOoc", + "expiresAt": 1679529600000, + "height": 6 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1634539264920?e=1679529600&v=beta&t=oYpJbUs9VfAiOC3jOP_M9DnMn6qcyEKNyHpRjK6lD1Y", + "expiresAt": 1679529600000, + "height": 447 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1634539264920?e=1679529600&v=beta&t=caISGEMqUyzx6UB5mX_OOkK-t_pZXJj3aXX9tDvl_EY", + "expiresAt": 1679529600000, + "height": 167 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1634539264920?e=1679529600&v=beta&t=Ksb7iscMCtj1_f3XNClAnexPU9HpdQFAks9sS2O4DHk", + "expiresAt": 1679529600000, + "height": 55 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1634539264920?e=1679529600&v=beta&t=MS3ZUyFV7vSqCy_fTn1vnpFmKVg8YD0LMEfRtIORoDQ", + "expiresAt": 1679529600000, + "height": 279 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQGArbtRZhKIZw/feedshare-shrink_" + }, + "displayAspectRatio": 0.34991423670668953 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "table" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6855754582455287808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Cela date de septembre dernier, mais n'en reste pas moins tr\u00e8s int\u00e9ressant : les r\u00e9sultats de l'enqu\u00eate sur la mobilit\u00e9 des fran\u00e7ais ont \u00e9t\u00e9 publi\u00e9s pour ce qui concerne les voyages \"longue distance\", c'est-\u00e0-dire lorsque la destination se trouve \u00e0 plus de 80 km du domicile. \n\nC'est l\u00e0 : https://lnkd.in/dK4eTyur\n\nOn y apprend que ces d\u00e9placements sont \u00e0 80% pour des motifs personnels (visites \u00e0 des amis ou de la famille, vacances, loisirs), et que dans cette cat\u00e9gorie la part de l'avion a quasiment doubl\u00e9 de 2008 \u00e0 2019. Ce sont les 25-34 ans qui choisissent, en proportion, le plus souvent ce mode de transport dans leurs d\u00e9placements (suivis des 19-24 ans). Le plus gros recours \u00e0 la voiture a lieu chez les 45-54 ans.\n\nLes voyages \u00e0 l'\u00e9tranger sont pass\u00e9s de 11% \u00e0 14% du total sur la p\u00e9riode, et les voyages \u00e0 plus de 500 km du domicile de 16,3% \u00e0 20,6%.\n\nPar contre, le nombre de nuit\u00e9es par voyage a l\u00e9g\u00e8rement augment\u00e9 et le nombre de voyages par personne et par an l\u00e9g\u00e8rement baiss\u00e9. Mais nous sommes plus nombreux, d'o\u00f9 l'augmentation des totaux pour le nombre de voyages.\n\nUn peu moins souvent par personne, mais un peu plus loin, et donc plus souvent en avion : voici comment on pourrait r\u00e9sumer l'\u00e9volution sur 11 ans. \n\nLa disponibilit\u00e9 p\u00e9troli\u00e8re \u00e0 la baisse - pour des raisons de climat ou pour des raisons de disponibilit\u00e9 de l'offre - va nous demander de d\u00e9sirer l'exact inverse de tout cela. Certes le covid a mis un grand coup de frein \u00e0 l'avion, mais cela n'est pas vraiment vu comme une \u00e9volution souhaitable : il va encore falloir un peu de p\u00e9dagogie avant que l'on se dise que c'est le sens de l'histoire de bouger moins loin !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6855754582455287808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6855754582941806592,urn:li:activity:6855754582941806592,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6855754582941806592,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6855754582941806592,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6855754582941806592", + "threadId": "activity:6855754582941806592", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6855754582941806592", + "urn": "urn:li:activity:6855754582941806592", + "numComments": 104, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6855754582941806592", + "reactionTypeCounts": [ + { + "count": 569, + "reactionType": "LIKE" + }, + { + "count": 110, + "reactionType": "INTEREST" + }, + { + "count": 72, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6855754582941806592", + "numLikes": 768, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6855754582941806592", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 768, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6855441910014734336,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6855441910014734336", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6855441910014734336)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6855441910014734336)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-centrale-nucl%C3%A9aire-de-flamanville-a-d%C3%A9pass%C3%A9-activity-6855441910014734336-WPMr?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6855441909465264128", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6855441910014734336", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6855441910014734336,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6855441910014734336,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6855441909465264128", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "IU6Ut8kaHGU0QZCubs+Hkg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6855441910014734336,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7898716412561596474", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675720276934?e=1677240000&v=beta&t=kQpsH-GFiEsXnHi1qncunyv0JnoIcerZYe03hE6AURo", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1260, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675720276934?e=1677240000&v=beta&t=LIYx7rvIKTFvpjwEtHyqoj6OGiCIPbxHMX8CDBlrupY", + "expiresAt": 1677240000000, + "height": 708 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675720276934?e=1677240000&v=beta&t=XTZFOL86KMwWfoMyJCOD_k3024XH7G0Lawr2hdnxrCU", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675720276934?e=1677240000&v=beta&t=OHUAs9K9QLjWq62p88kv6uNWlFyzD1C5ni-fAqaUl7s", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFeA2e6H1cJug/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7898716412561596474)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7898716412561596474)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ouest-france.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La centrale nucl\u00e9aire de Flamanville a d\u00e9pass\u00e9 le seuil de rejet d\u2019un puissant gaz \u00e0 effet de serre by ouest-france.fr", + "actionTarget": "https://www.ouest-france.fr/normandie/flamanville-50340/la-centrale-nucleaire-de-flamanville-a-depasse-le-seuil-de-rejet-d-un-puissant-gaz-a-effet-de-serre-4ef83064-2cdc-11ec-9285-f388b2ea32b0" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La centrale nucl\u00e9aire de Flamanville a d\u00e9pass\u00e9 le seuil de rejet d\u2019un puissant gaz \u00e0 effet de serre" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6855441909465264128,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:76738", + "entityUrn": "urn:li:fs_miniCompany:76738", + "name": "Ouest-France", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1519896743014?e=1684972800&v=beta&t=lgoYcrMm4XKlpUlIa5a1ktJWVu19mNf3mK4kY39NtFQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1519896743014?e=1684972800&v=beta&t=kAJNI7SsyiFaVpLVOLDnO7k6EFeD9JPQfvhaBWCMs6E", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1519896743014?e=1684972800&v=beta&t=suCS96dqfs5hn-ZNBheW5TAyB6ZL5ZtGQdmtHt3HFv0", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQG4pF-AoxTm7w/company-logo_" + } + }, + "universalName": "ouest-france", + "dashCompanyUrn": "urn:li:fsd_company:76738", + "trackingId": "khLflWU8T5myv3OqWbMbAg==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 187, + "length": 3, + "miniCompany": { + "objectUrn": "urn:li:company:8423", + "entityUrn": "urn:li:fs_miniCompany:8423", + "name": "AFP", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1592286892096?e=1684972800&v=beta&t=KdQnt77azs_5aCxGbM6BLm4FO6epNofW4kGpyizThzk", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1592286892096?e=1684972800&v=beta&t=BbP2mQmuW5HHOpNSyeamsi9OFkOdj1YZYp-TgC5hqd8", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1592286892096?e=1684972800&v=beta&t=uare2BZLnCsIsE2zpTEDGSh6AnoLWjeFHsUxezUTvE0", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQEWveiL9GSong/company-logo_" + } + }, + "universalName": "afp", + "dashCompanyUrn": "urn:li:fsd_company:8423", + "trackingId": "lXkp/zhlQQynniATN48MuA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 1684, + "length": 3, + "miniCompany": { + "objectUrn": "urn:li:company:8423", + "entityUrn": "urn:li:fs_miniCompany:8423", + "name": "AFP", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1592286892096?e=1684972800&v=beta&t=KdQnt77azs_5aCxGbM6BLm4FO6epNofW4kGpyizThzk", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1592286892096?e=1684972800&v=beta&t=BbP2mQmuW5HHOpNSyeamsi9OFkOdj1YZYp-TgC5hqd8", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1592286892096?e=1684972800&v=beta&t=uare2BZLnCsIsE2zpTEDGSh6AnoLWjeFHsUxezUTvE0", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQEWveiL9GSong/company-logo_" + } + }, + "universalName": "afp", + "dashCompanyUrn": "urn:li:fsd_company:8423", + "trackingId": "0eqLu7R+SimdInaf/mwP+A==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 2206, + "length": 3, + "miniCompany": { + "objectUrn": "urn:li:company:8423", + "entityUrn": "urn:li:fs_miniCompany:8423", + "name": "AFP", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1592286892096?e=1684972800&v=beta&t=KdQnt77azs_5aCxGbM6BLm4FO6epNofW4kGpyizThzk", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1592286892096?e=1684972800&v=beta&t=BbP2mQmuW5HHOpNSyeamsi9OFkOdj1YZYp-TgC5hqd8", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1592286892096?e=1684972800&v=beta&t=uare2BZLnCsIsE2zpTEDGSh6AnoLWjeFHsUxezUTvE0", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQEWveiL9GSong/company-logo_" + } + }, + "universalName": "afp", + "dashCompanyUrn": "urn:li:fsd_company:8423", + "trackingId": "QKwK2eqYTQuXeCCTflqgiA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 2492, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:76738", + "entityUrn": "urn:li:fs_miniCompany:76738", + "name": "Ouest-France", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1519896743014?e=1684972800&v=beta&t=lgoYcrMm4XKlpUlIa5a1ktJWVu19mNf3mK4kY39NtFQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1519896743014?e=1684972800&v=beta&t=kAJNI7SsyiFaVpLVOLDnO7k6EFeD9JPQfvhaBWCMs6E", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1519896743014?e=1684972800&v=beta&t=suCS96dqfs5hn-ZNBheW5TAyB6ZL5ZtGQdmtHt3HFv0", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQG4pF-AoxTm7w/company-logo_" + } + }, + "universalName": "ouest-france", + "dashCompanyUrn": "urn:li:fsd_company:76738", + "trackingId": "X9GzFsMqQtuEs/1zgERTzA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 2517, + "length": 3, + "miniCompany": { + "objectUrn": "urn:li:company:8423", + "entityUrn": "urn:li:fs_miniCompany:8423", + "name": "AFP", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1592286892096?e=1684972800&v=beta&t=KdQnt77azs_5aCxGbM6BLm4FO6epNofW4kGpyizThzk", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1592286892096?e=1684972800&v=beta&t=BbP2mQmuW5HHOpNSyeamsi9OFkOdj1YZYp-TgC5hqd8", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1592286892096?e=1684972800&v=beta&t=uare2BZLnCsIsE2zpTEDGSh6AnoLWjeFHsUxezUTvE0", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQEWveiL9GSong/company-logo_" + } + }, + "universalName": "afp", + "dashCompanyUrn": "urn:li:fsd_company:8423", + "trackingId": "pean4WEcTx68ep5lveEo9w==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Ouest-France publie un article \"sensationnaliste\" sur des rejets de SF6 de la centrale de Flamanville. Le site pr\u00e9cise \"avec AFP\". Cela signifie que le journal reproduit une d\u00e9p\u00eache de l'AFP qui a aussi jug\u00e9 utile de consacrer une partie de ses ressources \u00e0 ce qui est en fait un non-\u00e9v\u00e9nement.\n\nExplication : Flamanville produit chaque ann\u00e9e de l'ordre de 16 milliards de kWh \u00e9lectriques. Ces fuites de SF6 repr\u00e9sentent donc 0,1 gramme de CO2-\u00e9quivalent par kWh. Les \u00e9missions de CO2-\u00e9quivalent associ\u00e9s \u00e0 la production d'un kWh \u00e9lectrique (en englobant tout le cycle de vie d'un dispositif de production, de sa construction \u00e0 son d\u00e9mant\u00e8lement, en passant bien sur par les \u00e9missions directes quand le mode est fossile) vont de 6 g par kWh (nucl\u00e9aire) \u00e0 1000 (charbon). L'\u00e9olien est \u00e0 10-12 (hors stockage ; le stockage sur batterie est \u00e0 50 environ) ; le PV \u00e0 30-50 (hors stockage), le gaz \u00e0 400 et l'hydro \u00e0 10. Ces fuites de SF6 sont donc dans l'\u00e9paisseur du trait par rapport au fonctionnement normal de la centrale.\n\nPar ailleurs le SF6 est certes un tr\u00e8s puissant gaz \u00e0 effet de serre par unit\u00e9 de poids, mais il n'a aucune esp\u00e8ce de toxicit\u00e9 environnementale, et ces fuites n'ont donc aucun impact direct sur la sant\u00e9 ou l'environnement (ce gaz est totalement inerte, et c'est justement cette inertie chimique qui engendre un temps de r\u00e9sidence tr\u00e8s long dans l'atmosph\u00e8re, ce qui contribue \u00e0 en faire un gaz \u00e0 effet de serre bien plus puissant que le CO2).\n\nCe gaz est utilis\u00e9 dans des \u00e9quipements \u00e9lectriques (disjoncteurs de puissance, transformateurs de puissance) qui ne sont pas du tout sp\u00e9cifiques au nucl\u00e9aire. Il y a de tels \u00e9quipements partout dans le r\u00e9seau.\n\nSi l'AFP souhaite faire une d\u00e9p\u00eache d\u00e8s que 2000 tonnes de CO2-\u00e9quivalent (pourquoi utiliser des millions de kg tout d'un coup ? Pourquoi pas des milliards de grammes, ce qui serait encore plus impressionnant ?) sont \u00e9mises quelque part dans le monde, voici une suggestion. \n\nLa centrale au charbon de Cordemais (https://lnkd.in/drafkKY4), d'une puissance de 1200 MW, \u00e9met de l'ordre de 5 millions de tonnes de CO2 par an si elle fonctionne 50% du temps (sinon faire une r\u00e8gle de trois !), soit 2500 fois 2000 tonnes de CO2. L'AFP pourrait donc publier 2500 d\u00e9p\u00eaches par an sur les \u00e9missions de cette centrale, soit 7 par jour. Qu'est-ce qu'ils attendent :) ?\n\nIl me semble que nous sommes pile dans l'illustration de ce qui est \u00e9voqu\u00e9 sur https://lnkd.in/d3RNdnpe (2\u00e8 ligne pour \u00eatre pr\u00e9cis). Puis-je sugg\u00e9rer \u00e0 Ouest-France France et l'AFP d'arr\u00eater de mobiliser un quart de page d\u00e8s qu'un employ\u00e9 d'une centrale nucl\u00e9aire se laisse tomber un marteau sur le pied ou que les toilettes y sont bouch\u00e9es ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6855441909465264128,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6855441910014734336,urn:li:activity:6855441910014734336,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 223, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6855441910014734336,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6855441910014734336,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6855441910014734336", + "threadId": "activity:6855441910014734336", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6855441910014734336", + "urn": "urn:li:activity:6855441910014734336", + "numComments": 571, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6855441910014734336", + "reactionTypeCounts": [ + { + "count": 6654, + "reactionType": "LIKE" + }, + { + "count": 760, + "reactionType": "PRAISE" + }, + { + "count": 618, + "reactionType": "INTEREST" + }, + { + "count": 226, + "reactionType": "MAYBE" + }, + { + "count": 100, + "reactionType": "EMPATHY" + }, + { + "count": 49, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6855441910014734336", + "numLikes": 8407, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6855441910014734336", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 8407, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6855423618524971008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6855423618524971008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6855423618524971008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6855423618524971008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_hedge-funds-cash-in-as-green-investors-dump-activity-6855423618524971008-dfeG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6855423617992298496", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6855423618524971008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6855423618524971008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6855423618524971008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6855423617992298496", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "2LJluHqiUh3lGujP9Y3dxA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6855423618524971008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8890281684591165991", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676387498324?e=1677240000&v=beta&t=xq9XXaNHz50X6zOkQRPIkdd2Qv5pFtBYA3N8MVJEGMQ", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 900, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676387498324?e=1677240000&v=beta&t=asqE-0NID17EVF9ug6xMmEuiLSklAmiLtwmMJVoofdo", + "expiresAt": 1677240000000, + "height": 506 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676387498324?e=1677240000&v=beta&t=L9afkADtXXqJ7G8_kgGyO-tu8neACjmin9IhWP2hXPs", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676387498325?e=1677240000&v=beta&t=QmTJTt-69Cv9mXLer2ZurD1IZxlLv6T31eOZCPaa5l8", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEvByGr5NPmDQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8890281684591165991)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8890281684591165991)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ft.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Hedge funds cash in as green investors dump energy stocks by ft.com", + "actionTarget": "https://www.ft.com/content/ed11c971-be02-47dc-875b-90762b35080e" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Hedge funds cash in as green investors dump energy stocks" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6855423617992298496,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Au sein du monde financier, une des \"strat\u00e9gies\" pour d\u00e9carboner un portefeuille est de se s\u00e9parer de ce qui s'appelle les \"actifs bruns\". Ces derniers consistent en les actions et obligations \u00e9mises par des entreprises ayant des activit\u00e9s significatives dans les combustibles fossiles (extraction, transformation et vente de charbon, p\u00e9trole et gaz).\n\nQuestion : est-ce que le monde se porte mieux apr\u00e8s cette op\u00e9ration ? Non, r\u00e9pond le tr\u00e8s s\u00e9rieux Financial Times, qui explique que cela peut par exemple avoir comme seule cons\u00e9quence d'enrichir des fonds d'investissement peu soucieux de cet aspect des choses. L'activit\u00e9 sous-jacente ne dispara\u00eet pas parce que son capital ou sa dette change de propri\u00e9taire. Pour faire dispara\u00eetre l'activit\u00e9 sous-jacente, il faut que ce soit la r\u00e9glementation qui change, ou que l'actionnaire d\u00e9cide de lui-m\u00eame de la fermer ou transformer.\n\nDans nombre de cas de figure, il peut donc \u00eatre plus efficace de rester investi sur une entreprise qui ne fait pas ce qu'il faut pour l'influencer de l'int\u00e9rieur. Question \u00e0 nouveau : est-ce que l'entreprise apr\u00e8s transformation est aussi rentable qu'avant ? Malheureusement la r\u00e9ponse n'est pas n\u00e9cessairement positive. \n\nLe climat va donc souvent mettre l'actionnaire ou le pr\u00eateur en demeure de devoir choisir entre le rendement et sa conscience. Et, souvent, l'actionnaire ou le pr\u00eateur en bout de chaine c'est... nous. Toutes celles et tous ceux qui ont de l'assurance vie, un PEA, une retraite par capitalisation (ce qui est la norme dans de tr\u00e8s nombreux pays, soit en r\u00e9gime principal, soit en r\u00e9gime compl\u00e9mentaire), un compte \u00e9pargne en actions, un fonds commun de placement, et encore quelques instruments financiers sont en pratique les actionnaires et les pr\u00eateurs des soci\u00e9t\u00e9s qui doivent se transformer. \n\nLa bonne question est donc de savoir qui est pr\u00eat \u00e0 prendre le risque de voir le rendement de son assurance vie baisser parce que le gestionnaire de notre \u00e9pargne tanne le monde de l'entreprise pour qu'elle agisse contre le changement climatique, f\u00fbt-ce au d\u00e9triment de ses performances financi\u00e8res.\n\nIl reste encore beaucoup de malentendus dans l'univers de l'\u00e9pargne et de la finance sur la compatibilit\u00e9 de cette activit\u00e9 avec la baisse des \u00e9missions. Il serait utile que tous ses protagonistes (jusqu'aux \u00e9pargnants finaux) comprennent un peu mieux de quoi il retourne, pour ne pas croire que des mesures simples - voire simplistes - suffisent pour traiter la question." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6855423617992298496,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6855423618524971008,urn:li:activity:6855423618524971008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 44, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6855423618524971008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6855423618524971008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6855423618524971008", + "threadId": "activity:6855423618524971008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6855423618524971008", + "urn": "urn:li:activity:6855423618524971008", + "numComments": 56, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6855423618524971008", + "reactionTypeCounts": [ + { + "count": 586, + "reactionType": "LIKE" + }, + { + "count": 90, + "reactionType": "INTEREST" + }, + { + "count": 63, + "reactionType": "MAYBE" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6855423618524971008", + "numLikes": 760, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6855423618524971008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 760, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6855166401926193153,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6855166401926193153", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6855166401926193153)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6855166401926193153)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_france-2030-activity-6855166401926193153-RiEH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6855166401250902016", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6855166401926193153", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6855166401926193153,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6855166401926193153,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6855166401250902016", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "RDHk+iFj73GyHPKKiJ0Xag==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6855166401926193153,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9001727798693683550", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675944068515?e=1677240000&v=beta&t=dZ0FBdXUAJHaHAnWrofscMSIR5c8prBY0flbvU2rks4", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675944068515?e=1677240000&v=beta&t=zL8bNIGOB-l0HjoZX2Z1UimElzgMTxvGHl1tdaYP8Kk", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675944068515?e=1677240000&v=beta&t=dAn-utxFp3wQHZYMNIudrjugn12AKI7KXQCx-7KfJ_w", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675944068515?e=1677240000&v=beta&t=g_phGTIG56PtOZV6diusHUDoJtdZmmAT-WK5cM_Ks9o", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGh4xaPVOZEIg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9001727798693683550)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9001727798693683550)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "elysee.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: France 2030 by elysee.fr", + "actionTarget": "https://www.elysee.fr/emmanuel-macron/france2030" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "France 2030" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6855166401250902016,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'objectif 3 de France 2030 consiste \u00e0 baisser les \u00e9missions de gaz \u00e0 effet de serre de l'industrie de 35 % de 2015 \u00e0 2030. Dans l'industrie, 75% des \u00e9missions directes viennent de la production de l'acier, du ciment, et des produits chimiques de base.\n\nLe discours pr\u00e9sidentiel mentionne effectivement ces trois secteurs, mais ne dit pas ce qui sera fait en pratique. Sur l'acier, l'enjeu majeur est de passer \u00e0 l'hydrog\u00e8ne pour r\u00e9duire le minerai de fer en lieu et place du coke (voir explications sur https://lnkd.in/dm9ZzP5u ), mais \u00e0 raison d'un r\u00e9acteur nucl\u00e9aire par haut fourneau- il y en a 5 en France - \u00e0 remplacer par un dispositif \u00e0 l'hydrog\u00e8ne, ca va demander un peu plus de 2 milliards d'investissements d'y arriver ! (disons 30 \u00e0 40 pour la partie nucl\u00e9aire, et il faut probablement en ajouter de l'ordre de 10 \u00e0 20 pour les dispositifs de production chez l'aci\u00e9riste, en ce inclus l'\u00e9lectrolyseur, l'usine de pellets, etc).\n\nL'essentiel de l'investissement devra donc \u00eatre port\u00e9 par la fili\u00e8re elle-m\u00eame. La barri\u00e8re n'est pas tant technologique que r\u00e9glementaire, avec un cadre stable et p\u00e9renne permettant de \"r\u00e9risquer\" l'investissement. \n\nCe cadre est en gros un prix du carbone \u00e9lev\u00e9 de mani\u00e8re pr\u00e9visible (ce qui ne d\u00e9pend pas de la France mais de l'Europe puisque les hauts fourneaux sont dans le syst\u00e8me de quotas) et d'un m\u00e9canisme d'ajustement aux fronti\u00e8res (qui ne d\u00e9pend pas de la France mais de l'Europe), car l'acier voyage pas mal.\n\nDans le ciment, les 2/3 des \u00e9missions venant de la calcination du calcaire (l'op\u00e9ration qui, \u00e0 haute temp\u00e9rature, casse en deux la mol\u00e9cule de carbonate de calcium - CaCO3 - pour en faire de la chaux vive - CaO - et du CO2), on est coinc\u00e9s pour diminuer les \u00e9missions d'un facteur 5 \u00e0 production constante, sauf \u00e0 d\u00e9ployer massivement de la capture et s\u00e9questration du CO2 (https://lnkd.in/eJGC-w5 ). Macron ne dit pas si c'est cela qu'il a en t\u00eate, ni quel cadre permettrait \u00e0 ce proc\u00e9d\u00e9 de se d\u00e9ployer. Il reste certes des barri\u00e8res technologiques \u00e0 franchir, mais dans l'ensemble c'est \u00e0 nouveau un sujet de cadre dans lequel mettre les cimentiers plus que de R&D, sachant que le ciment voyage moins que l'acier.\n\nDans la chimie, ce secteur a mang\u00e9 l'essentiel de son pain blanc avec l'\u00e9radication quasi-totale des \u00e9missions de protoxyde d'azote. L\u00e0 aussi il est peu probable que l'on puisse atteindre les niveau de r\u00e9duction souhait\u00e9s sans se passer d'une partie du plastique. La chimie est tr\u00e8s ouverte \u00e0 la mondialisation, et donc si les contraintes conduisent \u00e0 diminuer les volumes ou augmenter les prix, il faudra aussi un m\u00e9canisme pour \u00e9viter que des importations ne prennent le relais. A nouveau, cela peut \u00eatre un m\u00e9canisme d'ajustement aux fronti\u00e8res, mais aussi une r\u00e9glementation sur le contenu carbone maximum de ce qui est vendu en Europe." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6855166401250902016,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6855166401926193153,urn:li:activity:6855166401926193153,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 4, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6855166401926193153,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6855166401926193153,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6855166401926193153", + "threadId": "activity:6855166401926193153", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6855166401926193153", + "urn": "urn:li:activity:6855166401926193153", + "numComments": 10, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6855166401926193153", + "reactionTypeCounts": [ + { + "count": 91, + "reactionType": "LIKE" + }, + { + "count": 11, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6855166401926193153", + "numLikes": 114, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6855166401926193153", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 114, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6855073650740097024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6855073650740097024", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6855073650740097024)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6855073650740097024)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-semaine-derni%C3%A8re-dans-le-cadre-de-m%C3%A9dias-activity-6855073650740097024-ww6D?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6855073649867669504", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6855073650740097024", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6855073650740097024,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6855073650740097024,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6855073649867669504", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "MDiJ8SqjJEVhNK1X07s94Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6855073650740097024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFu63QMBPegGQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFu63QMBPegGQ", + "artifacts": [ + { + "width": 1602, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1634376915799?e=1679529600&v=beta&t=HX7Ly4_xBnYdpp9nJEIeLfexDjYin7RgF37Gmv92Lw0", + "expiresAt": 1679529600000, + "height": 1078 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1634376918090?e=1679529600&v=beta&t=ILyRcEs8usm9BCpZ9g9hVNkj_vmSCwcjXeOK1dAxv0I", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1634376918090?e=1679529600&v=beta&t=s4vr6D4NX0Q1gL-LttIq4mn5OlYy08mi5zv1NuVJuCc", + "expiresAt": 1679529600000, + "height": 861 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1634376918090?e=1679529600&v=beta&t=R9Nl9aksroFLOIeb49F0tsk9QXqCT2EF7O4U40NPNoE", + "expiresAt": 1679529600000, + "height": 323 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1634376918090?e=1679529600&v=beta&t=shXrDZlBgB5SMMznTVlbvthTZp0SFpPP3Syy8ASLxhA", + "expiresAt": 1679529600000, + "height": 108 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1634376918090?e=1679529600&v=beta&t=Uz1C7o8kkB4RP8TuGUudf9P4Z-jYwkR5ySur-WaSOb0", + "expiresAt": 1679529600000, + "height": 538 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFu63QMBPegGQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.6729088639200999 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "text, letter" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6855073649867669504,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La semaine derni\u00e8re, dans le cadre de \"M\u00e9dias en Seine\" j'ai \u00e9t\u00e9 invit\u00e9 \u00e0 d\u00e9battre avec les patron(ne)s des r\u00e9dactions de TF1, Les Echos et l'AFP de la mani\u00e8re dont leurs organisations traitent du sujet climat-\u00e9nergie : https://lnkd.in/d_EMZikW (j'esp\u00e8re que le replay sera un jour sur une plateforme sans besoin d'inscription).\n\n1h \u00e0 4 (plus l'animatrice, plus une pastille vid\u00e9o) ca laisse 10 minutes par personne, mais j'ai eu droit \u00e0 un traitement de faveur en projetant en d\u00e9but de session quelques planches - classiques - sur l'enjeu soci\u00e9tal tel que je le vois.\n\nJe reproduis ci-dessous la derni\u00e8re planche projet\u00e9e, qui r\u00e9sume pour moi les 7 difficult\u00e9s que doivent affronter les r\u00e9dactions quand elles nous informent - ou pas - sur ces sujets.\n\nIl me semble que la premi\u00e8re des choses \u00e0 faire pour am\u00e9liorer la situation serait que ces 7 points fassent l'objet d'un traitement appropri\u00e9 dans les \u00e9coles de journalisme. Car une fois que la vie active d\u00e9marre sans savoir comment \u00e9viter ces \u00e9cueils, il est g\u00e9n\u00e9ralement trop tard pour traiter correctement du sujet." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6855073649867669504,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6855073650740097024,urn:li:activity:6855073650740097024,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 134, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6855073650740097024,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6855073650740097024,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6855073650740097024", + "threadId": "activity:6855073650740097024", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6855073650740097024", + "urn": "urn:li:activity:6855073650740097024", + "numComments": 186, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6855073650740097024", + "reactionTypeCounts": [ + { + "count": 3836, + "reactionType": "LIKE" + }, + { + "count": 329, + "reactionType": "PRAISE" + }, + { + "count": 130, + "reactionType": "EMPATHY" + }, + { + "count": 49, + "reactionType": "INTEREST" + }, + { + "count": 40, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6855073650740097024", + "numLikes": 4415, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6855073650740097024", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4415, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6854303453036986368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6854303453036986368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6854303453036986368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6854303453036986368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_vers-une-%C3%A9conomie-des-services-et-de-limmat%C3%A9riel-activity-6854303453036986368-CAis?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6854303452479148032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6854303453036986368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6854303453036986368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6854303453036986368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6854303452479148032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "XSySpSZj/UBkyku++Ig94w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6854303453036986368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8485151211128089400", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676466828187?e=1677240000&v=beta&t=qGg0aaRafE-nHa8RtIFu-piUXM7NfCOleHdRkOrps5s", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 868, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676466828187?e=1677240000&v=beta&t=xl23FrZrPR3CBh-A33gTasR33cJF58ePBhRfQ_1Jwx8", + "expiresAt": 1677240000000, + "height": 489 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676466828187?e=1677240000&v=beta&t=m9rA0rcrSc_FJ5Rmiqg44h6KAbdE6FcNwwcdvEt-_-U", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676466828187?e=1677240000&v=beta&t=eEQoyyy0H3cFufqwxnhikhl_e-vLtbO_zEl9uSyIlF0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEuJ0M4KGZUTA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8485151211128089400)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8485151211128089400)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "xerficanal.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Vers une \u00e9conomie des services et de l'immat\u00e9riel : c'est faux ! by xerficanal.com", + "actionTarget": "https://www.xerficanal.com/economie/emission/Olivier-Passet-Vers-une-economie-des-services-et-de-l-immateriel-c-est-faux--306348536_3750076.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Vers une \u00e9conomie des services et de l'immat\u00e9riel : c'est faux !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6854303452479148032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Xerfi Canal prend conscience (ou rappelle ?) que la \"d\u00e9mat\u00e9rialisation\" de l'\u00e9conomie parce que nous avons num\u00e9ris\u00e9 tout partout - et continuons de le faire - n'est qu'un mot vide de sens. L'internet est bien mat\u00e9riel (terminaux, r\u00e9seaux) et mobilise une fraction croissante de l'\u00e9lectricit\u00e9, qui est quasiment aux 2/3 fossile dans le monde - et particuli\u00e8rement l\u00e0 o\u00f9 sont fabriqu\u00e9s terminaux connect\u00e9s et \u00e9l\u00e9ments de r\u00e9seaux, qui sont \u00e0 l'origine de la moiti\u00e9 de l'empreinte carbone du syst\u00e8me.\n\nCet \"\u00e9ditorial\" souligne aussi que la r\u00e9gulation du syst\u00e8me par des taxes ou taxes aux fronti\u00e8res sera difficile. De fait, au Shift Project, la baisse des \u00e9missions associ\u00e9es au syst\u00e8me nous semble plus facile \u00e0 obtenir avec des mesures r\u00e9glementaires (interdiction des forfaits illimit\u00e9s, allongement de la dur\u00e9e l\u00e9gale de garantie sur les terminaux, fr\u00e9quences octroy\u00e9es aux op\u00e9rateurs sous condition de baisse de leur empreinte carbone) qu'avec des taxes.\n\nOlivier Passet indique \u00e0 la fin que de limiter le syst\u00e8me fait craindre l'embolie, tellement nous en sommes d\u00e9pendants. C'est vrai et faux \u00e0 la fois. L'essentiel du trafic aujourd'hui est du flux vid\u00e9o (Youtube, streaming, porno, et vid\u00e9os \"perso\" des enfants ou du chat), et baisser ce flux ne provoquera aucune thrombose pour les services essentiels.\n\nUne large partie du flux est aussi li\u00e9 aux transactions financi\u00e8res (il y a quelques ann\u00e9es la moiti\u00e9 du chiffre d'affaires des SSII se faisait avec le secteur banques-assurances). L\u00e0 aussi, on peut tr\u00e8s certainement le diminuer sans toucher \u00e0 des choses essentielles \u00e0 court terme. Et du reste on ferait bien d'y penser avant que ce ne soit des p\u00e9nuries mat\u00e9rielles (comme par exemple celle r\u00e9cente de semi-conducteurs \u00e0 Ta\u00efwan, au surplus pour une raison partiellement climatique - s\u00e9cheresse) qui se chargent de venir \"calmer\" la croissance du syst\u00e8me, qui, comme pour tout syst\u00e8me mat\u00e9riel, ne pourra pas \u00eatre ind\u00e9finie." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6854303452479148032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6854303453036986368,urn:li:activity:6854303453036986368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6854303453036986368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6854303453036986368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6854303453036986368", + "threadId": "activity:6854303453036986368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6854303453036986368", + "urn": "urn:li:activity:6854303453036986368", + "numComments": 38, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6854303453036986368", + "reactionTypeCounts": [ + { + "count": 561, + "reactionType": "LIKE" + }, + { + "count": 78, + "reactionType": "INTEREST" + }, + { + "count": 69, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6854303453036986368", + "numLikes": 730, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6854303453036986368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 730, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6853998770116403200,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6853998770116403200", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6853998770116403200)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6853998770116403200)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_france-2030-activity-6853998770116403200-yCYe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6853998769357238272", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6853998770116403200", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6853998770116403200,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6853998770116403200,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6853998769357238272", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "7j+wHtmM8SXufO2iAy8r7Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6853998770116403200,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9001727798693683550", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675944068515?e=1677240000&v=beta&t=dZ0FBdXUAJHaHAnWrofscMSIR5c8prBY0flbvU2rks4", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675944068515?e=1677240000&v=beta&t=zL8bNIGOB-l0HjoZX2Z1UimElzgMTxvGHl1tdaYP8Kk", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675944068515?e=1677240000&v=beta&t=dAn-utxFp3wQHZYMNIudrjugn12AKI7KXQCx-7KfJ_w", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675944068515?e=1677240000&v=beta&t=g_phGTIG56PtOZV6diusHUDoJtdZmmAT-WK5cM_Ks9o", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGh4xaPVOZEIg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9001727798693683550)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9001727798693683550)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "elysee.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: France 2030 by elysee.fr", + "actionTarget": "https://www.elysee.fr/emmanuel-macron/france2030" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "France 2030" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6853998769357238272,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Elys\u00e9e pr\u00e9cise aujourd'hui sur son site les 10 objectifs de France Relance. Br\u00e8ve mise en perspective, qui sera faite en plusieurs posts.\n\nL'objectif 1 est un soutien aux r\u00e9acteurs nucl\u00e9aires de petite taille, innovants et avec une meilleure gestion des d\u00e9chets : 1 Md \u20ac sur 9 ans, soit 110 m\u20ac/an.\n\nLa fili\u00e8re nucl\u00e9aire, en France, c'est environ 50 Mds \u20ac de CA par an. A 5% (ordre de grandeur) de R&D ca fait 2,5 Mds \u20ac de R&D par an (toutes entreprises confondues). 110 millions, c'est 4% de cette somme. En fait, ce dont la fili\u00e8re a avant tout besoin pour \"acc\u00e9l\u00e9rer\", c'est d'un cadre politique - fran\u00e7ais et europ\u00e9en - qui ne soit pas du stop and go, et qui a cout\u00e9 beaucoup plus cher que le milliard promis. \n\nL'arr\u00eat, pour des raisons \u00e9lectorales et non de politique industrielle avis\u00e9e, de Superph\u00e9nix, d'Astrid et de Fessenheim, repr\u00e9sente plus de 10 Mds \u20ac. L'AREHN, qui est un transfert de rente d'EDF vers des \"concurrents\" qui sont juste des entit\u00e9s commerciales et financi\u00e8res, a aussi \"consomm\u00e9\" des milliards sans valeur ajout\u00e9e. Le soutien aux ENR \u00e9lectrog\u00e8nes intermittentes a d\u00e9j\u00e0 cout\u00e9 des dizaines de Mds \u20ac sans am\u00e9liorer quoi que ce soit.\n\nLa vraie novation de cette annonce n'est donc pas financi\u00e8re, mais politique. Elle marque le volte face de Macron - et dans la foul\u00e9e de Pompili - sur le sujet, apr\u00e8s Fessenheim et \"l'endossement\" des 50% de nucl\u00e9aire issus de Hollande.\n\nMais le d\u00e9fi reste de fournir un cadre clair et cr\u00e9dible \u00e0 long terme. Ce cadre ferait par exemple baisser le cout de l'argent dont elle a besoin, et l'impact est un ordre de grandeur au-dessus. Une baisse de 10% \u00e0 2% du cout du capital sur le nouveau nucl\u00e9aire, c'est une \u00e9conomie de 80 milliards d'euros par EPR (sur 60 ans), s'il est construit pour 10 milliards pi\u00e8ce. \n\nOn attend donc la publication d'un cadre stabilis\u00e9 qui nous emm\u00e8ne jusqu'\u00e0 la fin du si\u00e8cle. C'est cela qui d\u00e9gagera l'horizon pour cette fili\u00e8re.\n\nL'objectif 2 consiste \u00e0 avoir au moins deux gigafactories d\u2019\u00e9lectrolyseurs pour avoir de l\u2019hydrog\u00e8ne \"vert\" (en fait d\u00e9carbon\u00e9).\n\nProduire de l'hydrog\u00e8ne renvoie au probl\u00e8me pr\u00e9c\u00e9dent. Il faut 50 TWh (milliards de kWh) - soit 5 gros r\u00e9acteurs nucl\u00e9aires actuels - pour faire le million de tonnes d'H2 que nous produisons d\u00e9j\u00e0 en France par reformage du m\u00e9thane. Il faut un r\u00e9acteur nucl\u00e9aire par haut fourneau que l'on voudrait remplacer par une r\u00e9duction du minerai de fer \u00e0 l'hydrog\u00e8ne. Il faut une heure de r\u00e9acteur nucl\u00e9aire pour faire voler un avion qui part de Roissy (et il en part 400 \u00e0 500 par jour ; il faudrait donc 15 r\u00e9acteurs rien que pour \"d\u00e9carboner\" le trafic a\u00e9rien au d\u00e9part de cet a\u00e9roport). \n\nProduire beaucoup de courant d\u00e9carbon\u00e9 sera plus limitant que savoir faire l'\u00e9lectrolyseur en bout de chaine. Cela renvoie \u00e0 une planification cr\u00e9dible de la production \u00e9lectrique d\u00e9carbon\u00e9e envisageable. Dans un monde qui doit devenir plus \u00e9lectrique, il n'est pas \u00e9tonnant que ce soit le d\u00e9but de tout." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6853998769357238272,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6853998770116403200,urn:li:activity:6853998770116403200,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 94, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6853998770116403200,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6853998770116403200,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6853998770116403200", + "threadId": "activity:6853998770116403200", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6853998770116403200", + "urn": "urn:li:activity:6853998770116403200", + "numComments": 204, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6853998770116403200", + "reactionTypeCounts": [ + { + "count": 1855, + "reactionType": "LIKE" + }, + { + "count": 325, + "reactionType": "INTEREST" + }, + { + "count": 124, + "reactionType": "PRAISE" + }, + { + "count": 101, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "EMPATHY" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6853998770116403200", + "numLikes": 2431, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6853998770116403200", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2431, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6853939340918214656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6853939340918214656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6853939340918214656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6853939340918214656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_un-transport-a%C3%A9rien-vert-vrai-de-vrai-activity-6853939340918214656-rnrn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6853939340213571584", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6853939340918214656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6853939340918214656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6853939340918214656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6853939340213571584", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "POTEXVydMgzDtx4rdKWRVw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6853939340918214656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7542818230697550162", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675447595714?e=1677240000&v=beta&t=pIqDbiMaOaOyg70QskPL3QazdOtr0-4IZFFL4nTvC9o", + "expiresAt": 1677240000000, + "height": 453 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675447595714?e=1677240000&v=beta&t=Y87boftGJD8nn9w3_4TJeoW_ZRRs1MubbVsdtTKTlPk", + "expiresAt": 1677240000000, + "height": 680 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675447595714?e=1677240000&v=beta&t=GBMIGr9ofnBC8ZAruAWo83t_IwcQrP8f4NMktltOW0E", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675447595714?e=1677240000&v=beta&t=VpzwggmsaGklym7aUQ5_Ikna8BiGYgddobKYhZxxzXg", + "expiresAt": 1677240000000, + "height": 272 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQELgleqswrj1Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.56625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7542818230697550162)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7542818230697550162)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "franceinter.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Un transport a\u00e9rien vert, vrai de vrai ? by franceinter.fr", + "actionTarget": "https://www.franceinter.fr/emissions/l-edito-eco/l-edito-eco-du-lundi-11-octobre-2021" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Un transport a\u00e9rien vert, vrai de vrai ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6853939340213571584,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 79, + "length": 14, + "miniProfile": { + "firstName": "Dominique", + "lastName": "SEUX", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAfXSjUBqNiCZeV2V61HptyNIrl6XdyPmhg", + "occupation": "Editorialiste \u00e9conomique sur France Inter, Directeur d\u00e9l\u00e9gu\u00e9 de la r\u00e9daction, Les Echos,", + "objectUrn": "urn:li:member:131549749", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAfXSjUBqNiCZeV2V61HptyNIrl6XdyPmhg", + "publicIdentifier": "dominique-seux-3b108038", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516781596477?e=1681948800&v=beta&t=jygmhbFjlXoRan620vxdibMStbO_MaYlMHDKhF1JimQ", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516781596477?e=1681948800&v=beta&t=oELzSJvF946fB_AdAWiPYj3wbSt8V1cyXlToDsbi3Vc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516781596477?e=1681948800&v=beta&t=6IXRypCVVlYwoJUiEyYWTJEDyrM75zmeNzTCXvw4dUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516781596477?e=1681948800&v=beta&t=CT2l79L9Gi5_6IF_CZRTv9ZDQcx0oG4C1I4Y7-Nkhb0", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHof9uacrt2Rg/profile-displayphoto-shrink_" + } + }, + "trackingId": "nrnndKq0ShK3zYq82j3Wrw==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 500, + "length": 17, + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "MHKB2FxSQ1yQoumr/adiIw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 521, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:65525487", + "entityUrn": "urn:li:fs_miniCompany:65525487", + "name": "A\u00c9RO D\u00c9CARBO", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1632124851859?e=1684972800&v=beta&t=mPqBCEHb8iWqELNJG9bQXVELZNC4XCApGrlaId7_ixQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1632124851859?e=1684972800&v=beta&t=ZehY4fC1JjRd8Rcq1YPXQ0PFm_KemKatzCP-zEdqn64", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1632124851859?e=1684972800&v=beta&t=7KzqdHv_8SjezUgJiOMjgi4PXApGI-2VqJjBzgOxGYo", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGeJYGC8wwvNw/company-logo_" + } + }, + "universalName": "aero-decarbo", + "dashCompanyUrn": "urn:li:fsd_company:65525487", + "trackingId": "NmFMEvvUQ6SQcTkGGp0GWA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "C'est probablement un de ces signaux faibles montrant que les temps changent : Dominique SEUX, N\u00b02 de la r\u00e9daction des Echos (donc peu suspect de vouloir le malheur des entreprises pour le simple plaisir), se moque gentiment (en fait pas tant que \u00e7a) sur France Inter de l'annonce, par le secteur du transport a\u00e9rien, de son objectif de neutralit\u00e9 en 2050 tout en continuant \u00e0 faire cro\u00eetre le trafic.\n\nDans une analyse qui avait \u00e9t\u00e9 men\u00e9e par des ing\u00e9nieurs du secteur, et pilot\u00e9e conjointement par The Shift Project et A\u00c9RO D\u00c9CARBO (des anciens de Supaero, d\u00e9sormais l'ISAE), un r\u00e9sultat essentiel \u00e9tait ressorti : impossible pour l'a\u00e9rien de respecter l'objectif d'une baisse des \u00e9missions de 5% par an sans baisse du trafic, m\u00eame en \u00e9tant tr\u00e8s optimiste sur le rythme de p\u00e9n\u00e9tration des innovations techniques dans le secteur.\n\nC'est une excellente nouvelle que la presse puisse \u00eatre de plus en plus en capacit\u00e9 de r\u00e9futer de mani\u00e8re pertinente les annonces de verdissement de ceci ou cela. Le d\u00e9bat public en a besoin." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6853939340213571584,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6853939340918214656,urn:li:activity:6853939340918214656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 89, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6853939340918214656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6853939340918214656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6853939340918214656", + "threadId": "activity:6853939340918214656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6853939340918214656", + "urn": "urn:li:activity:6853939340918214656", + "numComments": 169, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6853939340918214656", + "reactionTypeCounts": [ + { + "count": 3941, + "reactionType": "LIKE" + }, + { + "count": 193, + "reactionType": "INTEREST" + }, + { + "count": 189, + "reactionType": "MAYBE" + }, + { + "count": 114, + "reactionType": "PRAISE" + }, + { + "count": 24, + "reactionType": "EMPATHY" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6853939340918214656", + "numLikes": 4477, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6853939340918214656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4477, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6853577524002230272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6853577524002230272", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6853577524002230272)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6853577524002230272)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_acier-vert-le-d%C3%A9fi-du-si%C3%A8cle-de-la-activity-6853577524002230272-M8Sq?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6853577523473719298", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6853577524002230272", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6853577524002230272,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6853577524002230272,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6853577523473719298", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "yerta5pSx9pgssehNIa7AQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6853577524002230272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7690124439941332023", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676289943086?e=1677240000&v=beta&t=MEoq9V51Dx_6gt1XBlKgLvnd09umxWeK4abVIU5Sig8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676289943086?e=1677240000&v=beta&t=ygnEALFHKDRL4ojHYkeButCVEqWF3yELKRumBFyKADc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676289943086?e=1677240000&v=beta&t=oUMOD-iSeBun1dC7FenztDeWll0h4_scgdvGjI5x0mU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676289943086?e=1677240000&v=beta&t=Opx5OC0rqvdHwc96D8zEuh8baiYE12HJqmx_-kDl068", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHF_FDBVj6Otw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7690124439941332023)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7690124439941332023)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab Acier vert \u00bb : le d\u00e9fi du si\u00e8cle de la sid\u00e9rurgie by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/industrie-lourde/acier-vert-le-defi-du-siecle-de-la-siderurgie-1353705" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0Acier vert\u00a0\u00bb\u00a0: le d\u00e9fi du si\u00e8cle de la sid\u00e9rurgie" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6853577523473719298,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il n'y a pas que les combustibles fossiles dont notre civilisation soit totalement d\u00e9pendante. Il y a aussi l'acier. Sans lui, pas de construction moderne (les armatures), pas de moyens de transport (v\u00e9hicules de toute nature), pas d'\u00e9lectricit\u00e9 (pour faire \u00e0 la fois les dispositifs de production et les pyl\u00f4nes du r\u00e9seau), pas de p\u00e9trole (!) puisque qu'il est difficile de faire une plate-forme de forage en bambou et en bois, pas de machines industrielles (et donc par ricochet pas d'industrie), pas de travaux public, etc. \n\nLa production d'acier \u00e0 partir de minerai de fer d\u00e9marre par une op\u00e9ration chimique indispensable : s\u00e9parer le fer de l'oxyg\u00e8ne dans le minerai, compos\u00e9 d'oxydes de fer. Cette op\u00e9ration, qui s'appelle une r\u00e9duction, se fait aujourd'hui avec du charbon purifi\u00e9 et poreux, le coke. Ce carbone presque pur, m\u00e9lang\u00e9 \u00e0 du minerai dans un haut fourneau, vient s'associer \u00e0 l'oxyg\u00e8ne de l'oxyde de fer, et permet d'obtenir du fer et... du CO2.\n\n4% environ des \u00e9missions mondiales de gaz \u00e0 effet de serre, soit les 2/3 des \u00e9missions des voitures (mondiales) provient de la production d'acier \u00e0 cause de cette r\u00e9action. La solution pour faire autrement ? R\u00e9duire le minerai de fer \u00e0 l'hydrog\u00e8ne, ce dernier d\u00e9barrassant alors l'oxyde de fer de son oxyg\u00e8ne en ne produisant que de la vapeur d'eau. \n\nMais pour cela il faut de l'hydrog\u00e8ne, et produit de mani\u00e8re d\u00e9carbon\u00e9e s'il vous plait. L'ordre de grandeur est qu'il faut un r\u00e9acteur nucl\u00e9aire d\u00e9di\u00e9 pour d\u00e9carboner un haut fourneau. Les Echos indiquent qu'\u00e0 production identique \u00e0 l'actuelle il faudrait augmenter la production \u00e9lectrique mondiale de 25% (en d\u00e9carbon\u00e9) rien que pour \"verdir\" la production d'acier (je n'ai pas fait le calcul mais cet ordre de grandeur ne me surprend pas). \n\nLa conclusion est doublement \u00e9vidente : d'une part le premier hydrog\u00e8ne d\u00e9carbon\u00e9 sera plus utile pour faire de l'acier - indispensable et non substituable m\u00eame dans plein d'usages \"low tech\" - que pour remplacer le p\u00e9trole dans des voitures (qui peuvent \u00eatre elles-m\u00eames remplac\u00e9es par des v\u00e9los \u00e9lectriques ou des petites voitures \u00e9lectriques), et d'autre part il n'y aura pas autant d'acier qu'aujourd'hui dans un monde d\u00e9carbon\u00e9. Une limite de plus \u00e0 int\u00e9grer dans nos r\u00e9flexions !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6853577523473719298,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6853577524002230272,urn:li:activity:6853577524002230272,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 115, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6853577524002230272,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6853577524002230272,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6853577524002230272", + "threadId": "activity:6853577524002230272", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6853577524002230272", + "urn": "urn:li:activity:6853577524002230272", + "numComments": 188, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6853577524002230272", + "reactionTypeCounts": [ + { + "count": 2814, + "reactionType": "LIKE" + }, + { + "count": 626, + "reactionType": "INTEREST" + }, + { + "count": 447, + "reactionType": "MAYBE" + }, + { + "count": 42, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6853577524002230272", + "numLikes": 3953, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6853577524002230272", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3953, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6853574511250419712,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6853574511250419712", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6853574511250419712)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6853574511250419712)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nearly-25-of-world-population-exposed-to-activity-6853574511250419712-7jcR?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6853574509799211008", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6853574511250419712", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6853574511250419712,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6853574511250419712,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6853574509799211008", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "qUMAOUTNfMofInaijPIlMQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6853574511250419712,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8853485412513367216", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676021047390?e=1677240000&v=beta&t=8eTyeSzByOBL-Q_UfNjmKWYaEvieNOCfXdR9uGQrdWs", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676021047390?e=1677240000&v=beta&t=vbXT_hgOCUWM_OSorEWNgv1u75NHSIWN314l_xFCJVk", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676021047390?e=1677240000&v=beta&t=pHYvlYjV8f79oWuUAJ6kAdU3BDx57GdWL_qLpD8KMQ8", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676021047391?e=1677240000&v=beta&t=hj31m3NG13uZWSFjk2My-Ya-Ia_SyWXzyfbRpPxBsAg", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFDkTnUUm-jAw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8853485412513367216)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8853485412513367216)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "www.theguardian.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nearly 25% of world population exposed to deadly city heat by www.theguardian.com", + "actionTarget": "https://www.theguardian.com/world/2021/oct/04/nearly-25-of-world-population-exposed-to-deadly-city-heat?" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nearly 25% of world population exposed to deadly city heat" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6853574509799211008,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Avec la concentration urbaine et le changement climatique (dans des proportions variables selon le lieu), une fraction croissante de la population mondiale s'expose \u00e0 des chaleurs humides extr\u00eames, qui deviennent particuli\u00e8rement dangereuses pour la sant\u00e9 (cela concerne avant tout les villes situ\u00e9es dans la bande \u00e9quatoriale). \n\nEn effet, si la temp\u00e9rature ext\u00e9rieure devient sup\u00e9rieure \u00e0 la temp\u00e9rature de la peau (environ 35 \u00b0C), et que l'air est satur\u00e9 d'humidit\u00e9, le corps ne peut plus se refroidir par transfert de chaleur de la peau vers l'air, et ne peut plus se refroidir en \u00e9vaporant de l'eau (la transpiration), avec un risque vital \u00e0 relativement bref d\u00e9lai.\n\nD'ores et d\u00e9j\u00e0, dans certaines villes (Dhaka, Shanghai, Guangzhou, Yangon, Bangkok, Dubai...) il y a eu une augmentation de l'exposition de la population aux chaleurs \"mortelles\", et cela va s'amplifier avec la croissance d\u00e9mographique et le r\u00e9chauffement climatique. Question : que vont faire les habitants de ces villes ?\n\nNB : Sur le climat, The Guardian est un des meilleurs journaux de la presse occidentale (bien meilleur sur ce sujet que la presse g\u00e9n\u00e9raliste fran\u00e7aise prise dans son ensemble), et parmi les choses pertinentes qu'ils font il y a le lien syst\u00e9matique vers les articles scientifiques utilis\u00e9s comme source, ce qui permet \u00e0 tous ceux qui ont le temps d'aller regarder l'information primaire. Nos media hexagonaux devraient en prendre de la graine !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6853574509799211008,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6853574511250419712,urn:li:activity:6853574511250419712,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6853574511250419712,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6853574511250419712,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6853574511250419712", + "threadId": "activity:6853574511250419712", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6853574511250419712", + "urn": "urn:li:activity:6853574511250419712", + "numComments": 49, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6853574511250419712", + "reactionTypeCounts": [ + { + "count": 694, + "reactionType": "LIKE" + }, + { + "count": 92, + "reactionType": "INTEREST" + }, + { + "count": 72, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6853574511250419712", + "numLikes": 876, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6853574511250419712", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 876, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6853365481160642560,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6853365481160642560", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6853365481160642560)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6853365481160642560)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_importations-de-gaz-naturel-tous-les-crus-activity-6853365481160642560-4RqR?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6853365480573440000", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6853365481160642560", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6853365481160642560,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6853365481160642560,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6853365480573440000", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "owWdDR54U2WXZITPmLiYQQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6853365481160642560,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8546086840450315415", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675691041801?e=1677240000&v=beta&t=OmUOQHspY6H25LAzg72egKK7Ly40E8_cbVxKhfY9ivo", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675691041801?e=1677240000&v=beta&t=fRH8PWJENNyqbJ5BLhMMaG3Fy4eKqj5r3O_PPuLOtTw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675691041801?e=1677240000&v=beta&t=8k5K1FLbWjyUI1jCyJ6zaKlkcja-PE6K7wPpk65ilTs", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675691041802?e=1677240000&v=beta&t=SvYc-ptayg6MpTYofiuXzyWZ1uTDAeufFflYoy4NOVY", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGkW5gUy5zl2Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8546086840450315415)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8546086840450315415)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Importations de gaz naturel : tous les crus ne se valent pas | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-importation-gaz" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Importations de gaz naturel : tous les crus ne se valent pas | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6853365480573440000,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Compte tenu des fuites, le gaz de schiste est-il pire que le charbon ? De combien notre empreinte carbone va-t-elle augmenter avec le recours croissant \u00e0 du gaz liqu\u00e9fi\u00e9 import\u00e9 des USA ? Sans aller \u00e0 cet extr\u00eame, comment les \u00e9missions d'extraction, de purification et de transport du gaz varient-elles en fonction de son origine ?\n\nCarbone 4 vous propose de mettre fin \u00e0 cet insoutenable suspens avec une publication intitul\u00e9e \"importations de gaz : tous les crus ne se valent pas\", d'o\u00f9 il ressort qu'entre du gaz import\u00e9 des Pays Bas par gazoduc (mais c'est du pass\u00e9, ou quasi, parce que la production de ce pays est en phase terminale) et du gaz import\u00e9 des USA par m\u00e9thanier, il y a un facteur 12 dans les \u00e9missions \"amont\", c'est \u00e0 dire hors combustion du gaz.\n\nAvec le gaz de schiste liqu\u00e9fi\u00e9, on rajoute en effet 40% aux \u00e9missions de combustion pour tenir compte de tout le reste. Ca n'am\u00e8ne pas le gaz au niveau du charbon (il faudrait multiplier par 2) mais ca n'est quand m\u00eame pas anodin. \n\nCes \u00e9missions sont bien sur hors inventaire national. Le fait de passer de la Mer du Nord \u00e0 l'Alg\u00e9rie par m\u00e9thanier (ce qui multiplie les \u00e9missions amont par 10) est donc invisible dans les \u00e9missions compt\u00e9es au titre de notre engagement dans l'accord de Paris." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6853365480573440000,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6853365481160642560,urn:li:activity:6853365481160642560,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 9, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6853365481160642560,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6853365481160642560,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6853365481160642560", + "threadId": "activity:6853365481160642560", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6853365481160642560", + "urn": "urn:li:activity:6853365481160642560", + "numComments": 19, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6853365481160642560", + "reactionTypeCounts": [ + { + "count": 166, + "reactionType": "LIKE" + }, + { + "count": 41, + "reactionType": "INTEREST" + }, + { + "count": 25, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6853365481160642560", + "numLikes": 234, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6853365481160642560", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 234, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6853214275159306240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6853214275159306240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6853214275159306240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6853214275159306240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-la-chine-relance-sa-production-de-activity-6853214275159306240-SmF1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6853214274567892992", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6853214275159306240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6853214275159306240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6853214275159306240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6853214274567892992", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "7a83Ql45HTHK0fMA5FfWWA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6853214275159306240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8304003836160139679", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675821636633?e=1677240000&v=beta&t=q-z4PASSqDlJ57sdbXlvA7kqMcHeIBzVJtEwYzzL6A0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675821636633?e=1677240000&v=beta&t=-mVnO5M1f0rVGL2QouZHDQpjh8nSaVbNJ7gBnCQz_yY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675821636633?e=1677240000&v=beta&t=4MKdchoFqHjUoFDUOH3F8cP6cuYteYeX5WZme2nVjfo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675821636634?e=1677240000&v=beta&t=ENTqE_PIC_HaXYPdXZVvy5pge6DNQ19BkDlZ0laPshY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHwUggnC5FoPw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8304003836160139679)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8304003836160139679)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : La Chine relance sa production de charbon \u00e0 un mois de la COP26 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/enjeux-internationaux/climat-la-chine-relance-sa-production-de-charbon-a-un-mois-de-la-cop-26-1353621" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat\u00a0: La Chine relance sa production de charbon \u00e0 un mois de la COP26" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6853214274567892992,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Repr\u00e9sentant 35% de la production \u00e9lectrique mondiale en 2020, le charbon n'est malheureusement pas mort demain matin. Il a beau \u00e9mettre 150 fois plus de CO2 par kWh \u00e9lectrique que le nucl\u00e9aire, ou 2,5 fois plus que le gaz, il continue d'\u00eatre une \u00e9nergie \"d'avenir\" pour de nombreux pays qui continuent de construire des centrales utilisant ce combustible. \n\nIl y a plusieurs raisons \u00e0 cela : son extraction est assez peu on\u00e9reuse, et la technologie pour en faire de l'\u00e9lectricit\u00e9 bien ma\u00eetris\u00e9e. Le transport est l'\u00e9tape qui peut \u00eatre limitante car le charbon est un pond\u00e9reux solide, mais d\u00e8s lors que la centrale est sur le carreau de la mine, ou bien accessible par voie d'eau, ce point cesse d'\u00eatre limitant. \n\nCela explique pourquoi il n'existe pas un pays ayant des r\u00e9serves domestiques de charbon significatives qui se soit abstenu de l'utiliser pour son \u00e9lectricit\u00e9. La d\u00e9crue de ce combustible est toujours all\u00e9e avec un \u00e9puisement des mines (Europe) ou une alternative domestique moins ch\u00e8re (gaz aux USA ; hydro\u00e9lectricit\u00e9 en Norv\u00e8ge...). Les anglais ont \"bascul\u00e9\" notamment parce qu'ils n'avaient plus de charbon domestique (leur pic de production date de 1914 !) et qu'ils \u00e9taient producteurs de gaz.\n\nPar ailleurs, dans tous les pays du monde, la production \u00e9lectrique est une composante indispensable de la production \u00e9conomique, consid\u00e9r\u00e9e comme le premier objectif soci\u00e9tal \u00e0 atteindre. Il ne va donc pas \u00eatre si simple de s'en d\u00e9barrasser. \n\nIl ne va en particulier pas \u00eatre simple de le remplacer par des ENR et du stockage, comme le rappelle cet article (en anglais) qui montre que tous les pays qui s'engagent dans cette voie avancent plus lentement que \"pr\u00e9vu\", mais pour des raisons qui \u00e9taient malheureusement pas si difficiles que cela \u00e0 identifier d\u00e8s le d\u00e9part : https://lnkd.in/e4u3iWCs\n\nLa presse ne devrait-elle pas demander plus souvent aux opposants au nucl\u00e9aire s'ils acceptent d'\u00eatre pour partie \u00e0 l'origine d'un rythme trop lent de \"sortie du charbon\" ? Car en jouant ce r\u00f4le d'alli\u00e9s objectifs du charbon, ou m\u00eame du gaz, ils seront h\u00e9las comptables d'une partie des malheurs du monde dus \u00e0 la d\u00e9rive climatique. Ca m\u00e9rite \u00e0 tout le moins de soulever le sujet." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6853214274567892992,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6853214275159306240,urn:li:activity:6853214275159306240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6853214275159306240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6853214275159306240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6853214275159306240", + "threadId": "activity:6853214275159306240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6853214275159306240", + "urn": "urn:li:activity:6853214275159306240", + "numComments": 115, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6853214275159306240", + "reactionTypeCounts": [ + { + "count": 895, + "reactionType": "LIKE" + }, + { + "count": 136, + "reactionType": "MAYBE" + }, + { + "count": 126, + "reactionType": "INTEREST" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6853214275159306240", + "numLikes": 1180, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6853214275159306240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1180, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6852893999699640320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6852893999699640320", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6852893999699640320)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6852893999699640320)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_y-aurait-il-assez-de-m%C3%A9taux-pour-passer-massivement-activity-6852893999699640320-Q2qs?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6852893998990794752", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6852893999699640320", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6852893999699640320,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6852893999699640320,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6852893998990794752", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "+UnUEVj8hFIdcvBTxn8QWg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6852893999699640320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFWdnDRwv0Diw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFWdnDRwv0Diw", + "artifacts": [ + { + "width": 2032, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1633857246462?e=1679529600&v=beta&t=eF9lJpKUCvaDvbd-Jtu3YWCC-_5K-8jvvmHvozOYDOo", + "expiresAt": 1679529600000, + "height": 1418 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1633857249741?e=1679529600&v=beta&t=H_jHcBHDH7-qIM-jpzpnJ6INLvnOjme_7PSud5uiUEc", + "expiresAt": 1679529600000, + "height": 14 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1633857249741?e=1679529600&v=beta&t=WQ8GcY-sfXLqv_MuE7EfKXI0sHL0_GgwO7VkACt47vA", + "expiresAt": 1679529600000, + "height": 893 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1633857249741?e=1679529600&v=beta&t=dtqHw04ibEb-_O6O3cthP96E2kkCDVslgWBDY69Z_q8", + "expiresAt": 1679529600000, + "height": 335 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1633857249741?e=1679529600&v=beta&t=LrZPWYXhhoeR1c6HwCVMptDOKK4s2a_eDtOpv_xhDnA", + "expiresAt": 1679529600000, + "height": 112 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1633857249741?e=1679529600&v=beta&t=vigikz8E4sUKnnz5hFmy4D0bPCwDcZiTuqpU8NQk_68", + "expiresAt": 1679529600000, + "height": 558 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFWdnDRwv0Diw/feedshare-shrink_" + }, + "displayAspectRatio": 0.6978346456692913 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6852893998990794752,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Y aurait-il assez de m\u00e9taux pour passer massivement aux \u00e9nergies renouvelables \u00e9lectriques diffuses que sont le vent et le soleil ? Ces derni\u00e8res sont en effet plus consommatrices de m\u00e9tal (et aussi de b\u00e9ton et d'espace) que les sources concentr\u00e9es - c'est juste une affaire de physique - et leur d\u00e9ploiement massif suppose donc qu'il n'y ait pas de limite physique de ce c\u00f4t\u00e9 l\u00e0.\n\nL'Agence Internationale de l'Energie a r\u00e9cemment publi\u00e9 un rapport sur le r\u00f4le des \"min\u00e9raux critiques\" dans la transition : https://lnkd.in/ddbi8z7 \nOn peut y lire page 133 la phrase suivante concernant le cuivre : \"Mines currently in operation are nearing their peak due to declining ore quality and reserves exhaustion\", et ce alors que la production devrait passer de 25 \u00e0 35 millions de tonnes par an pour suivre le sc\u00e9nario \"sustainable development\".\n\nBien cach\u00e9e dans le corps d'un document qui passera sous les \u00e9crans radar de la presse, cette petite phrase repr\u00e9sente pourtant une menace majeure pour les plans de nombre de pays occidentaux, qui misent massivement sur les \"nouvelles ENR\" pour d\u00e9carboner nos activit\u00e9s sans avoir \u00e0 chambouler toute l'organisation spatiale, sociale, \u00e9conomique et culturelle des pays en question.\n\nIl faut rappeler que les limites physiques de demain ne sont en rien refl\u00e9t\u00e9es par les couts d'hier. Les prix ne sont que la contrepartie de revenus (salaires et rentes) pay\u00e9s \u00e0 des hommes, pas \u00e0 la nature qui ne nous envoie pas de facture. On peut donc tr\u00e8s facilement avoir aujourd'hui des couts bas pour une production qui sera pourtant limit\u00e9e \u00e0 l'avenir.\n\nPour savoir si quelque chose sera physiquement possible demain, il faut commencer par un raisonnement physique de bout en bout. Cela passe par une comptabilit\u00e9 elle aussi physique (le CO2 en est une, mais on peut aussi faire avec des surfaces, ou... des tonnes de mat\u00e9riaux), impossible \u00e0 d\u00e9river de la comptabilit\u00e9 mon\u00e9taire, mais seule \u00e0 m\u00eame de nous permettre de trier \u00e0 l'avance entre vains espoirs et plans r\u00e9alistes." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6852893998990794752,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6852893999699640320,urn:li:activity:6852893999699640320,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 80, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6852893999699640320,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6852893999699640320,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6852893999699640320", + "threadId": "activity:6852893999699640320", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6852893999699640320", + "urn": "urn:li:activity:6852893999699640320", + "numComments": 190, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6852893999699640320", + "reactionTypeCounts": [ + { + "count": 1464, + "reactionType": "LIKE" + }, + { + "count": 227, + "reactionType": "INTEREST" + }, + { + "count": 162, + "reactionType": "MAYBE" + }, + { + "count": 26, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6852893999699640320", + "numLikes": 1892, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6852893999699640320", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1892, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6852885692284973056,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6852885692284973056", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6852885692284973056)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6852885692284973056)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-marc-jancovici-activity-6852885692284973056-Sn4y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6852885691878133760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6852885692284973056", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6852885692284973056,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6852885692284973056,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6852885691878133760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "kCmtj16oAwJ8VSHPcp7cRA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6852885692284973056,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8990528164766718982", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 290, + "fileIdentifyingUrlPathSegment": "800/0/1675979383171?e=1677240000&v=beta&t=wqvI_IKX_pRBVQvzriP47YxTaz9uUd_pKhsPWqIQ_4A", + "expiresAt": 1677240000000, + "height": 193 + }, + { + "width": 290, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675979383172?e=1677240000&v=beta&t=0ATq_7yoJNc1NXYqp0Y8tR9R4Zv2JFv5n_qRHxLbIw4", + "expiresAt": 1677240000000, + "height": 193 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675979383172?e=1677240000&v=beta&t=7c_7MQC2amfXLc2kxSsxdECcKo-GF72N3NtGej7URgs", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 290, + "fileIdentifyingUrlPathSegment": "480/0/1675979383172?e=1677240000&v=beta&t=6i8duXOsZANa7yg9-C6fcQGuxE8J0TNnsmvi8ngN9gc", + "expiresAt": 1677240000000, + "height": 193 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE3scQ72n1Xnw/articleshare-shrink_" + }, + "displayAspectRatio": 0.6655172413793103 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Une vue sur la ville de Nice (illustration)" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8990528164766718982)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8990528164766718982)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean-Marc Jancovici by rtl.fr", + "actionTarget": "https://www.rtl.fr/auteur/jean-marc-jancovici" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6852885691878133760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La chronique d'hier sur RTL concernait la mont\u00e9e du niveau de la mer dans le cadre du r\u00e9chauffement climatique, pour laquelle le dernier rapport du GIEC mentionne que, \u00e0 l'horizon 2300, \"on ne peut pas exclure qu'elle d\u00e9passe 15 m\u00e8tres\". \n\nJ'ai essay\u00e9 d'expliquer en quoi une mont\u00e9e aussi ample du niveau de l'oc\u00e9an impacterait le quotidien de chaque habitant de notre pays, parce que tout(e) fran\u00e7ais(e) d\u00e9pend, pour sa consommation (du moins sous sa forme actuelle), de l'existence de ports, et que ces derniers seraient fatalement rendus inop\u00e9rants un jour ou l'autre par une telle \u00e9volution. \n\nEt comme d\u00e9placer toutes les villes portuaires du monde, \u00e0 une \u00e9poque o\u00f9 l'\u00e9nergie abondante ne sera plus disponible, n'est pas une option, il n'en reste qu'une : baisser suffisamment vite les \u00e9missions pour que ce genre de plaisanterie n'arrive pas \u00e0 nos descendants." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6852885691878133760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6852885692284973056,urn:li:activity:6852885692284973056,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 19, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6852885692284973056,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6852885692284973056,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6852885692284973056", + "threadId": "activity:6852885692284973056", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6852885692284973056", + "urn": "urn:li:activity:6852885692284973056", + "numComments": 39, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6852885692284973056", + "reactionTypeCounts": [ + { + "count": 393, + "reactionType": "LIKE" + }, + { + "count": 41, + "reactionType": "INTEREST" + }, + { + "count": 38, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6852885692284973056", + "numLikes": 490, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6852885692284973056", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 490, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6852542267102662656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6852542267102662656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6852542267102662656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6852542267102662656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_conf%C3%A9rence-de-jean-marc-jancovici-%C3%A0-lecole-activity-6852542267102662656-BOFA?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6852542266574176256", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6852542267102662656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6852542267102662656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6852542267102662656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6852542266574176256", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "bvrh7mr6Ef8F2xqVLYXnhg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6852542267102662656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7674643504321220387", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676035977144?e=1677240000&v=beta&t=Z2Y4Fz-obwB4L8gfKv-ZuaiiVW8bKOBjGkfJY6jAj18", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676035977144?e=1677240000&v=beta&t=g5L0vB4tX1P4mqUmdm2WNAUEExPEiD17xvMq4JUdUHs", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676035977144?e=1677240000&v=beta&t=uVBkcwKE-aiF7asBm32cQhIFyT4eJej-eMZ7KwhSyvM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676035977144?e=1677240000&v=beta&t=BWw03ujinoBtdLufszjpiquOiOtai2D1FbwzC7QP98g", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGndB5jq7XTbA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7674643504321220387)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7674643504321220387)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Conf\u00e9rence de Jean-Marc Jancovici \u00e0 l'Ecole Polytechnique on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=M2wI25p_7GA" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Dans le cadre de la Semaine du R\u00e9veil Ecologique \u00e0 l'X, Monsieur Jancovici est venu \u00e0 l'Ecole Polytechnique pour intervenir sous le titre : \"Bien plus dur que rentrer \u00e0 l'X : r\u00e9soudre le d\u00e9fi \u00e9nergie climat\". 0:00:00 : Introduction 0:02:20 :..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Conf\u00e9rence de Jean-Marc Jancovici \u00e0 l'Ecole Polytechnique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6852542266574176256,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Revenir dans un lieu o\u00f9 vous avez pass\u00e9 quelques ann\u00e9es de votre vie de jeune adulte est rarement un moment qui vous laisse totalement indiff\u00e9rent. Je n'y ai pas fait exception quand, il y a 15 jours, je suis all\u00e9 \u00e0 l'X pour une intervention (classique) aupr\u00e8s des \u00e9l\u00e8ves.\n\nCe qui m'a surtout marqu\u00e9 est que, pour la premi\u00e8re fois, je suis intervenu dans le plus grand amphi de l'Ecole (car j'ai d\u00e9j\u00e0 fait des conf\u00e9rences pour les \u00e9l\u00e8ves de l'X), qui \u00e9tait plein, alors que c'\u00e9tait l'heure du diner (puisqu'elle a eu lieu de 18h30 \u00e0 21h), et qu'elle \u00e9tait organis\u00e9e par les \u00e9l\u00e8ves (donc c'est un peu moins obligatoire que si c'est la direction des \u00e9tudes qui demande).\n\nJe me souviens tr\u00e8s bien des heures pass\u00e9es dans cet amphi o\u00f9, \u00e0 l'\u00e9poque, intervenaient des figures de la soci\u00e9t\u00e9 civile (et une ou deux fois militaires), dans une ambiance toujours un peu solennelle. Envoyer les \u00e9l\u00e8ves dans ce lieu, c'\u00e9tait le signe que le th\u00e8me \u00e9tait consid\u00e9r\u00e9 comme d'importance.\n\nJamais je n'aurais imagin\u00e9, \u00e0 l'\u00e9poque toujours, qu'un jour ce serait \u00e0 mon tour d'y porter un message pour les promotions pr\u00e9sentes sur le plateau. Celles-ci ont une \u00e9norme chance : entrer \u00e0 l'X, ca reste l'assurance d'avoir ensuite un \u00e9norme univers de choix, et de pouvoir, si on le souhaite, mettre ses neurones au service d'\u00e0 peu pr\u00e8s n'importe quel d\u00e9fi. \n\nCette chance les oblige, aussi. Si j'ai pu donner envie \u00e0 une petite partie des promos qui m'ont \u00e9cout\u00e9 d'aider notre pays \u00e0 se trouver un destin - le plus enthousiasmant possible - dans le respect des limites plan\u00e9taires, ce que ma g\u00e9n\u00e9ration - moi compris - n'a pas souvent r\u00e9ussi \u00e0 faire, eh bien je n'aurai pas compl\u00e8tement perdu mon temps. Comme le titre de l'intervention le sugg\u00e8re, il y a de quoi se challenger les neurones, et donc ne pas s'ennuyer, pendant toute une vie !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6852542266574176256,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6852542267102662656,urn:li:activity:6852542267102662656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 44, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6852542267102662656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6852542267102662656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6852542267102662656", + "threadId": "activity:6852542267102662656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6852542267102662656", + "urn": "urn:li:activity:6852542267102662656", + "numComments": 68, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6852542267102662656", + "reactionTypeCounts": [ + { + "count": 1759, + "reactionType": "LIKE" + }, + { + "count": 211, + "reactionType": "PRAISE" + }, + { + "count": 96, + "reactionType": "EMPATHY" + }, + { + "count": 19, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6852542267102662656", + "numLikes": 2118, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6852542267102662656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2118, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6852228060863832064,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6852228060863832064", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6852228060863832064)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6852228060863832064)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_google-youtube-to-prohibit-ads-and-monetization-activity-6852228060863832064-rgip?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6852228060410863616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6852228060863832064", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6852228060863832064,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6852228060863832064,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6852228060410863616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "nsl2RThDdh/5Swc2DmAfRA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6852228060863832064,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6950025231999139715", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675732368564?e=1677240000&v=beta&t=7J1PLg28OpQ0SC16Y6iTzONRc1pTXLyEuG5_-8UIwn0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675732368564?e=1677240000&v=beta&t=fjl6EJvErU8NBj9vqyqhB2zw_LmLAeoo8ncDXyyM7S4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675732368564?e=1677240000&v=beta&t=CO30nMYPFPBDnj1uL3BC7byUd_r8xYkpD05XJwSmZiI", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675732368564?e=1677240000&v=beta&t=raL_NA5mu8SrNbGb-zliPMbXaPOCxfysnbGn1LkKWTU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGOnFzP4C6sXg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6950025231999139715)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6950025231999139715)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "axios.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Google, YouTube to prohibit ads and monetization on climate denial content by axios.com", + "actionTarget": "https://www.axios.com/google-youtube-climate-change-734f2b05-40e2-4e05-9100-39de589b3b0a.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Google, YouTube to prohibit ads and monetization on climate denial content" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6852228060410863616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Google et Youtube viennent d'indiquer qu'ils n'accepteront plus de traiter des publicit\u00e9s contenant du \"climatoscepticisme\". Victoire... ou pas tant que cela ?\n\nEn France, le probl\u00e8me est presque r\u00e9gl\u00e9 : il n'y quasiment plus une figure publique qui professe ouvertement que le changement climatique d'origine humaine n'existe pas, et nous en sommes - fort heureusement - \u00e0 discuter sur la mani\u00e8re de s'y attaquer. Il y a encore moins de publicit\u00e9s s'appuyant sur le \"n\u00e9gationnisme climatique\".\n\nMais le probl\u00e8me s'est d\u00e9plac\u00e9 ailleurs, \u00e0 savoir dans les d\u00e9clarations excessivement rassurantes qui expliquent que nous allons facilement r\u00e9gler le probl\u00e8me, en ne changeant qu'\u00e0 la marge l'organisation g\u00e9n\u00e9rale du monde qui nous entoure.\n\nDans cette cat\u00e9gorie l\u00e0 foisonnent les confusions dans les ordres de grandeur et les \u00e9chelles de temps (par exemple UN avion \u00e0 hydrog\u00e8ne en 2035 qui va significativement contribuer \u00e0 la baisse des \u00e9missions du transport a\u00e9rien d'ici 2050), les m\u00e9thodes faites pour se rassurer et non attaquer le probl\u00e8me de mani\u00e8re exhaustive et syst\u00e9mique (par exemple limiter les \u00e9missions prises en compte au \"scope 1\", ou limiter la politique d'investissement \"bas carbone\" \u00e0 l'exclusion du charbon), ou encore les d\u00e9clarations de \"neutralit\u00e9\" des entreprises alors que les produits, march\u00e9s, organisations restent essentiellement les m\u00eames, ce qui est \u00e9videmment physiquement impossible.\n\nL'engagement de Google et Youtube serait donc autrement plus s\u00e9rieux s'ils s'engageaient \u00e0 bannir tout greenwashing de leurs pubs, et \u00e0 n'en prendre aucune qui \u00e9voque un produit ou service neutre en carbone. Chiche ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6852228060410863616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6852228060863832064,urn:li:activity:6852228060863832064,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 49, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6852228060863832064,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6852228060863832064,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6852228060863832064", + "threadId": "activity:6852228060863832064", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6852228060863832064", + "urn": "urn:li:activity:6852228060863832064", + "numComments": 116, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6852228060863832064", + "reactionTypeCounts": [ + { + "count": 649, + "reactionType": "LIKE" + }, + { + "count": 35, + "reactionType": "INTEREST" + }, + { + "count": 29, + "reactionType": "MAYBE" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6852228060863832064", + "numLikes": 743, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6852228060863832064", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 743, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6852131271091490816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6852131271091490816", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6852131271091490816)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6852131271091490816)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_majority-of-us-teens-dont-expect-businesses-activity-6852131271091490816--Zgw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6852131270613340160", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6852131271091490816", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6852131271091490816,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6852131271091490816,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6852131270613340160", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "qiJw4Yzi1CZii5R0ndgC+w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6852131271091490816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8275843504142689069", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 594, + "fileIdentifyingUrlPathSegment": "800/0/1676054329224?e=1677240000&v=beta&t=KBhhu8Ik86odRUrak8ooMbpr1nOuw7OwJOm5XgCsrDw", + "expiresAt": 1677240000000, + "height": 396 + }, + { + "width": 594, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676054329224?e=1677240000&v=beta&t=biyak7hozGOj4ifQlVVFzwp23NgZ8G-QuSDJpTawThw", + "expiresAt": 1677240000000, + "height": 396 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676054329224?e=1677240000&v=beta&t=Jh3vMwIjCmF4D02L-wCPL8nqxDySjjqxzUVNj2FztnY", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676054329224?e=1677240000&v=beta&t=kXNAuzNxozohzsfI_rHGege4GgaZDOddyD8YzJtvlEw", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHLyVMFGAZaEg/articleshare-shrink_" + }, + "displayAspectRatio": 0.6666666666666666 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8275843504142689069)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8275843504142689069)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "cnbc.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Majority of U.S. teens don't expect businesses alone to fix global warming, survey finds by cnbc.com", + "actionTarget": "https://www.cnbc.com/2021/10/07/majority-of-us-teens-dont-expect-businesses-alone-to-fix-global-warming.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Majority of U.S. teens don't expect businesses alone to fix global warming, survey finds" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6852131270613340160,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un sondage vient d'\u00eatre effectu\u00e9 aupr\u00e8s des adolescents am\u00e9ricains. Il faut se garder de penser que les r\u00e9sultats seraient identiques dans d'autres pays occidentaux, car les Etats Unis dont le royaume de l'individualisme et du \"d\u00e9brouille toi toi-m\u00eame\", mais il est int\u00e9ressant de constater que les 13-17 ans de ce pays consid\u00e8rent que la responsabilit\u00e9 premi\u00e8re des \u00e9missions est avant tout celle des individus, et non des entreprises, ou m\u00eame des politiques, m\u00eame s'ils comptent beaucoup sur l'innovation des entreprises pour r\u00e9soudre une partie du probl\u00e8me.\n\nLes 2/3 des adolescents am\u00e9ricains indiquent par ailleurs qu'ils sont inquiets pour leur future qualit\u00e9 de vie \u00e0 cause du changement climatique.\n\nDe fait, dans cette histoire il y a une question de poule et d'oeuf qui reste un \u00e9ternel d\u00e9bat. Les entreprises n'existent pas sans clients. Ces derniers n'ont g\u00e9n\u00e9ralement pas un revolver sur la tempe quand ils ach\u00e8tent un v\u00eatement suppl\u00e9mentaire, le logement le plus grand possible pour leur budget ou la voiture la plus grosse possible pour leur budget, une t\u00e9l\u00e9 suppl\u00e9mentaire ou un abonnement \u00e0 Netflix, et un steak plut\u00f4t que oeufs ou des pommes de terre. Mais sym\u00e9triquement, comme aurait pu dire Coluche, il suffit de ne pas faire quelque chose pour que ca ne se vende pas ! \n\nIl en va de m\u00eame pour la politique : les \u00e9lus sont... \u00e9lus. Ils ont donc, par construction dans le syst\u00e8me d\u00e9mocratique, un r\u00f4le d'ex\u00e9cuteur testamentaire, et souvent ils ne font que refl\u00e9ter les contradictions propres de la population, ou entre ses structures constitu\u00e9es (religions, entreprises, syndicats...), car nous avons trop souvent envie d'avoir le beurre et l'argent du beurre. \n\nMais ils ont aussi leur libre arbitre propre, car il est de nombreux sujets sur lesquels ils peuvent (doivent !) prendre le temps de \"r\u00e9fl\u00e9chir pour nous\", puis prendre des d\u00e9cisions en apparence difficiles mais qui finiront par ne plus l'\u00eatre un peu plus tard.\n\nIl est clair que ce genre de sondage ne tranche pas ce d\u00e9bat. Mais il a le m\u00e9rite de le relancer, et se poser des questions est quand m\u00eame le premier pas pour trouver des r\u00e9ponses !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6852131270613340160,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6852131271091490816,urn:li:activity:6852131271091490816,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 19, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6852131271091490816,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6852131271091490816,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6852131271091490816", + "threadId": "activity:6852131271091490816", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6852131271091490816", + "urn": "urn:li:activity:6852131271091490816", + "numComments": 58, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6852131271091490816", + "reactionTypeCounts": [ + { + "count": 190, + "reactionType": "LIKE" + }, + { + "count": 32, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6852131271091490816", + "numLikes": 238, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6852131271091490816", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 238, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6852125740196995072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6852125740196995072", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6852125740196995072)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6852125740196995072)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_dans-les-cons%C3%A9quences-du-changement-climatique-activity-6852125740196995072-Zm5S?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6852125739756605440", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6852125740196995072", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6852125740196995072,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6852125740196995072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6852125739756605440", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "FhF/MO53lRteeqcPfQYiEQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6852125740196995072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQGHbMl93UmB1g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQGHbMl93UmB1g", + "artifacts": [ + { + "width": 780, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1633674082112?e=1679529600&v=beta&t=EvlbSrYGSXSoTE1hqIKrET-XEWsvZ5d2qJHBNPnbHQ0", + "expiresAt": 1679529600000, + "height": 439 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1633674082115?e=1679529600&v=beta&t=c3Eao1Sy6t-FsB1vJzCLI2DUoz1tBL5hOAeF31T0z2g", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 780, + "fileIdentifyingUrlPathSegment": "1280/0/1633674082115?e=1679529600&v=beta&t=SU3VtRP1lBWmyO6TjHE1-QfaEjZrqJPrb5IsjxYuHmg", + "expiresAt": 1679529600000, + "height": 439 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1633674082115?e=1679529600&v=beta&t=TPIkyTdU8eEjmr7lNcXunGDeXa2Kd6SAoidXvO4V428", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1633674082115?e=1679529600&v=beta&t=Leyj2k_TbuXOOqi79j2MWKFIqC5wNFIMKMz0bCuCm_4", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 780, + "fileIdentifyingUrlPathSegment": "800/0/1633674082115?e=1679529600&v=beta&t=VX1aMvnrTPHYTbnqWsYSdXsBK0ahQKciEhbrOsJZitU", + "expiresAt": 1679529600000, + "height": 439 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQGHbMl93UmB1g/feedshare-shrink_" + }, + "displayAspectRatio": 0.5628205128205128 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "a little girl sitting in front of a window" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6852125739756605440,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans les cons\u00e9quences du changement climatique, l'une d'elles concerne la sant\u00e9, et cela affecte d\u00e8s \u00e0 pr\u00e9sent un nombre croissant de pays. Un article tout juste publi\u00e9 sur le site de la World Bank \u00e9voque le cas du Bangladesh : https://lnkd.in/dNsavkub. La mousson y est devenue plus longue, et la temp\u00e9rature les mois d'hiver a augment\u00e9 plus vite que celle des mois d'\u00e9t\u00e9 (qui sont les mois de mousson).\n\nCela a augment\u00e9 les maladies respiratoires, par contre diminu\u00e9 le chol\u00e9ra, et augment\u00e9 la dengue. Plus inattendu, les troubles de l'anxi\u00e9t\u00e9 augmentent avec la temp\u00e9rature et l'humidit\u00e9, alors que cela diminue la propension \u00e0 la d\u00e9pression. Tout cela arrive actuellement dans des proportions qui ne sont pas massives, mais d\u00e9j\u00e0 tangibles.\n\nEt \u00e0 l'avenir, \u00e0 savoir d'ici 2050 (o\u00f9 les d\u00e9s sont jet\u00e9s \u00e0 cause de l'inertie climatique), le r\u00e9chauffement va intensifier la propagation des maladies infectieuses et des probl\u00e8mes de sant\u00e9 mentale.\n\nPr\u00e9parer, chez eux comme chez nous, la population \u00e0 g\u00e9rer des affections suppl\u00e9mentaires, dans un monde qui aura moins d'\u00e9nergie facile pour y faire face, sera un challenge, qui pour l'heure fait partie des nombreux sujets qui restent, au moins chez nous, assez absents des politiques publiques." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6852125739756605440,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6852125740196995072,urn:li:activity:6852125740196995072,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 19, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6852125740196995072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6852125740196995072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6852125740196995072", + "threadId": "activity:6852125740196995072", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6852125740196995072", + "urn": "urn:li:activity:6852125740196995072", + "numComments": 32, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6852125740196995072", + "reactionTypeCounts": [ + { + "count": 256, + "reactionType": "LIKE" + }, + { + "count": 55, + "reactionType": "INTEREST" + }, + { + "count": 47, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6852125740196995072", + "numLikes": 366, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6852125740196995072", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 366, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6851905437147643904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6851905437147643904", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6851905437147643904)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6851905437147643904)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_assessing-infrastructure-portfolios-exposure-activity-6851905437147643904-xj72?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6851905436602376192", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6851905437147643904", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6851905437147643904,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6851905437147643904,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6851905436602376192", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "QBeKScOvYcQ4I369xNQhfA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6851905437147643904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9080200969097342075", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676071678056?e=1677240000&v=beta&t=reoVOaWpYQifjeuEQKtJv-AZ7c36MdczZinANlGCCP0", + "expiresAt": 1677240000000, + "height": 599 + }, + { + "width": 1067, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676071678056?e=1677240000&v=beta&t=5UFD9xId3pda1Hoy78F9TL8_HxXD6LUgfCQyK-98j4Y", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676071678056?e=1677240000&v=beta&t=26yNPTrG8ezUUJDQFa4-su_hVKAQ_aUJYwfzj7YZ-F4", + "expiresAt": 1677240000000, + "height": 119 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676071678056?e=1677240000&v=beta&t=ptfsVut2LNoCF6wIZWnsINprrGSO32vJpqOb0VmZYAw", + "expiresAt": 1677240000000, + "height": 359 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFAX_S0vgzNPA/articleshare-shrink_" + }, + "displayAspectRatio": 0.74875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9080200969097342075)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9080200969097342075)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Assessing infrastructure portfolio's exposure to climate change | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/assessing-infrastructure-portfolios-exposure-climate-change" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Assessing infrastructure portfolio's exposure to climate change | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6851905436602376192,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Par quels risques physiques li\u00e9s au changement climatique votre pont, votre tunnel, votre antenne t\u00e9l\u00e9com, votre pyl\u00f4ne \u00e9lectrique, votre voie de chemin de fer ou votre centrale \u00e9lectrique sont-ils menac\u00e9s, maintenant et plus tard ?\n\nLa m\u00e9thode CIARA s'enrichit d'un module risques physiques (elle avait d\u00e9j\u00e0 une fonction risque de transition) pour 98 types d'actifs, pouvant \u00eatre situ\u00e9s dans 42 pays (Europe et pourtour du bassin m\u00e9diterran\u00e9en), et 9 al\u00e9as climatiques (vagues de chaleur, feux de for\u00eat, inondations, cyclones...).\n\nCette m\u00e9thode est directement destin\u00e9e aux propri\u00e9taires et gestionnaires d'infrastructures, qu'il n'est pas tr\u00e8s simple de d\u00e9placer au gr\u00e9 des modifications du climat !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6851905436602376192,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6851905437147643904,urn:li:activity:6851905437147643904,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 4, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6851905437147643904,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6851905437147643904,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6851905437147643904", + "threadId": "activity:6851905437147643904", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851905437147643904", + "urn": "urn:li:activity:6851905437147643904", + "numComments": 4, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6851905437147643904", + "reactionTypeCounts": [ + { + "count": 126, + "reactionType": "LIKE" + }, + { + "count": 14, + "reactionType": "INTEREST" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6851905437147643904", + "numLikes": 157, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851905437147643904", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 157, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6851774296843399168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6851774296843399168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6851774296843399168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6851774296843399168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-s%C3%A9curit%C3%A9-alimentaire-%C3%A0-l%C3%A9preuve-du-d%C3%A9r%C3%A8glement-activity-6851774296843399168-WC9Q?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6851774295765467136", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6851774296843399168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6851774296843399168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6851774296843399168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6851774295765467136", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "pwQnJRYaRzZ3VUp3GWAAZg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6851774296843399168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7236905137942958534", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676460852665?e=1677240000&v=beta&t=ZK3o-KT5lmtw5z0Bd5MEyz7AhHMQY3Dcq6ibUmAruIA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676460852666?e=1677240000&v=beta&t=TLqGKUd-V-8_Jw2OZO_OsOROMF1lVC2eUkvMg923QHk", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676460852666?e=1677240000&v=beta&t=AKV0Rv6COtLVvhUG2scCNLkPpb5L_quWCFVNNY6GW9M", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676460852666?e=1677240000&v=beta&t=tlMSz5gP7iT948E7yehBXQP_diCYEsGncLxKaRYHRKw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEyqvygPicosw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7236905137942958534)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7236905137942958534)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La s\u00e9curit\u00e9 alimentaire \u00e0 l'\u00e9preuve du d\u00e9r\u00e8glement climatique by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/la-securite-alimentaire-a-lepreuve-du-dereglement-climatique-1352359" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La s\u00e9curit\u00e9 alimentaire \u00e0 l'\u00e9preuve du d\u00e9r\u00e8glement climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6851774295765467136,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"La flamb\u00e9e des cours du bl\u00e9 [en 2010]\u00a0a particip\u00e9 au soul\u00e8vement des printemps arabes, un \u00e9v\u00e9nement qui a d\u00e9stabilis\u00e9 toute la r\u00e9gion\" est-il \u00e9crit dans cet article des Echos, qui rappelle que la d\u00e9rive climatique ne sera pas une bonne affaire pour les rendements agricoles, et qu'une situation de disette ou d'inflation alimentaire f\u00e9roce est un d\u00e9stabilisant politique majeur. Incidemment c'\u00e9tait le th\u00e8me central d'une conf\u00e9rence intitul\u00e9e \"de Daesh \u00e0 la COP 21\" que j'avais faite \u00e0 l'ESPCI en 2015 (https://lnkd.in/gaY7nrE ).\n\nSeule information qui me semble discutable dans cet article : \u00e9crire que \"(...) un r\u00e9chauffement non ma\u00eetris\u00e9 peut entra\u00eener une baisse de 30\u00a0% des rendements agricoles. La population mondiale est, elle, vou\u00e9e \u00e0 augmenter encore, si bien que les prix des c\u00e9r\u00e9ales pourraient grimper de quasiment 30\u00a0% d'ici \u00e0 2050, selon les mod\u00e8les \u00e9conomiques du GIEC (...)\".\n\nEvaluer une baisse de rendement des cultures est un exercice difficile, mais qui rel\u00e8ve essentiellement de la biologie et de la physique. Une fois que l'\u00e9volution des conditions climatiques (temp\u00e9ratures, pr\u00e9cipitations, humidit\u00e9 des sols, etc) est \u00e0 peu pr\u00e8s cern\u00e9e - et d'ici \u00e0 2050 elle est raisonnablement ind\u00e9pendante de nos \u00e9missions \u00e0 cause de l'inertie du syst\u00e8me - il est possible d'\u00e9valuer comment les plantes cultiv\u00e9es - dont le comportement en fonction des conditions est observ\u00e9 exp\u00e9rimentalement - vont y r\u00e9sister ou pas. \n\nDisserter sur l'\u00e9volution des rendements reste donc un exercice qui a du sens (et les informations sur ce th\u00e8me font partie de ce qui est publi\u00e9 par le groupe 2 du GIEC, qui traite des impacts du changement climatique). Mais disserter sur des prix \u00e0 30 ans, l\u00e0 il me semble que nous nous rapprochons un peu trop de l'art divinatoire pour que cela m\u00e9rite d'\u00eatre mentionn\u00e9 dans un article.\n\n\"mais c'est le GIEC\" ! Oui, mais le groupe 3, celui qui rend compte des travaux d'\u00e9conomistes sur la question. Ses conclusions n'ont pas de force plus probante que la mati\u00e8re premi\u00e8re qui est publi\u00e9e dans les revues d'\u00e9conomie : en mati\u00e8re de pr\u00e9vision de prix \u00e0 30 ans, ca ou rien, c'est pareil :).\n\nLa conclusion qu'il faut garder en t\u00eate, c'est qu'un d\u00e9faut de production de 30% c'est des pans entiers de la population qui vont fortement remuer, avec des migrations qui d\u00e9stabiliseront les r\u00e9gimes politiques au-del\u00e0 de ce que l'on peut imaginer. Ecrire que ce probl\u00e8me se r\u00e9duit \u00e0 une pr\u00e9vision - aussi peu inqui\u00e9tante qu'elle est impossible \u00e0 faire - sur les prix est nous rendre un mauvais service." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6851774295765467136,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6851774296843399168,urn:li:activity:6851774296843399168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6851774296843399168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6851774296843399168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6851774296843399168", + "threadId": "activity:6851774296843399168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851774296843399168", + "urn": "urn:li:activity:6851774296843399168", + "numComments": 51, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6851774296843399168", + "reactionTypeCounts": [ + { + "count": 289, + "reactionType": "LIKE" + }, + { + "count": 58, + "reactionType": "INTEREST" + }, + { + "count": 43, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6851774296843399168", + "numLikes": 399, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851774296843399168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 399, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6851767322013650946,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6851767322013650946", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6851767322013650946)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6851767322013650946)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_comment-la-crise-%C3%A9nerg%C3%A9tique-mondiale-donne-activity-6851767322013650946-HozW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6851767321288048640", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6851767322013650946", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6851767322013650946,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6851767322013650946,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6851767321288048640", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "xAxvgDgkOe74b5ofTGpfXg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6851767322013650946,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8806876337699495350", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675425242084?e=1677240000&v=beta&t=bQzZRlMP4ETA_pG4atYIdrf9zwKTros7KKl-9MzYtuQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675425242084?e=1677240000&v=beta&t=tdYBpu8f_ZWaOxkb6W2RY-UgjvM8TGQsLoKwWlVd0YM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675425242084?e=1677240000&v=beta&t=4IFwOsKhfZARjQlkfATz_LpVX-Wv-EbmfBmYRBZ-_zs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675425242084?e=1677240000&v=beta&t=c4ew0WyvIKFDTPRdrRqTbYdASzN14jOer9eR9DE0oTQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF3HCgdRLxztg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8806876337699495350)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8806876337699495350)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Comment la crise \u00e9nerg\u00e9tique mondiale donne une seconde vie au charbon by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/comment-la-crise-energetique-mondiale-redonne-une-seconde-vie-au-charbon-1351879" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Comment la crise \u00e9nerg\u00e9tique mondiale donne une seconde vie au charbon" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6851767321288048640,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les combustibles fossiles utilis\u00e9s par les machines qui ont fait la civilisation industrielle, dont les centrales \u00e9lectriques, se composent de p\u00e9trole, gaz et charbon. Le p\u00e9trole est peu utilis\u00e9 pour l'\u00e9lectricit\u00e9 (quelques % de la production mondiale), mais ce n'est pas le cas du gaz (environ 25% de la production mondiale) et du charbon (environ 35%). \n\nL'essentiel des centrales fossiles dans le monde ont un facteur de charge bien inf\u00e9rieur \u00e0 100%, souvent plus proche de 50% (sauf les centrales \u00e0 lignite, qui elles tournent g\u00e9n\u00e9ralement \u00e0 pleine capacit\u00e9 en permanence). D\u00e8s lors qu'un pays poss\u00e8de \u00e0 la fois du gaz et du charbon dans son parc de centrales (cas de l'Allemagne par exemple), alors, en fonction du prix de chaque combustible, et \u00e9ventuellement du prix du CO2 l\u00e0 o\u00f9 il existe, les \u00e9lectriciens arbitrent entre ces deux modes.\n\nDerni\u00e8rement, le prix du gaz a beaucoup augment\u00e9. Par effet d'entra\u00eenement, la consommation de charbon repart \u00e0 la hausse, puisque c'est le combustible \"de report\" si le gaz devient trop cher. Et, toujours par effet d'entra\u00eenement, le prix du charbon aussi.\n\nIl faut y ajouter que ces derni\u00e8res ann\u00e9es la production chinoise (la Chine utilise \u00e0 peu pr\u00e8s a moiti\u00e9 du charbon mondial) a baiss\u00e9 (difficile d'en conna\u00eetre la raison \"comme ca\", toutes les explications circulant entre le \"peak charbon\" qui approche et la volont\u00e9 du pays de diminuer sa consommation \u00e0 cause de la pollution), et que les importations de ce pays sont proches de leur plus haut historique. \n\nA production \u00e9lectrique identique, le charbon est 2 \u00e0 3 fois plus \u00e9missif que le gaz, et 100 fois plus \u00e9missif que le nucl\u00e9aire (la comparaison avec l'\u00e9olien et le solaire est plus difficile, car il est explicitement dit par RTE que l'on ne peut pas comparer \"comme ca\" un mode pilotable et un mode non pilotable, qui ne rendent pas le m\u00eame service). Il est par ailleurs le plus destructeur pour l'environnement, de loin (https://lnkd.in/ghDXmyh ). \n\nVoir un report sur le charbon - qui est abondant - fait malheureusement partie des choses \"normales\" si on laisse les prix de march\u00e9 g\u00e9rer le manque de p\u00e9trole (qui va s'accentuer dans les ann\u00e9es \u00e0 venir, voir https://lnkd.in/dW3FREk ) ou de gaz (qui est \"structurel\" dans les pays importateurs d'Asie). Pour \u00e9viter cela, il faut piloter la d\u00e9carbonation de mani\u00e8re volontaire et planifi\u00e9e." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6851767321288048640,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6851767322013650946,urn:li:activity:6851767322013650946,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 27, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6851767322013650946,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6851767322013650946,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6851767322013650946", + "threadId": "activity:6851767322013650946", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851767322013650946", + "urn": "urn:li:activity:6851767322013650946", + "numComments": 42, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6851767322013650946", + "reactionTypeCounts": [ + { + "count": 676, + "reactionType": "LIKE" + }, + { + "count": 143, + "reactionType": "INTEREST" + }, + { + "count": 99, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6851767322013650946", + "numLikes": 941, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851767322013650946", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 941, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6851562976613294080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6851562976613294080", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6851562976613294080)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6851562976613294080)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_free-le-plus-grand-r%C3%A9seau-5g-au-prix-de-activity-6851562976613294080-KAx0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6851562976168693760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6851562976613294080", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6851562976613294080,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6851562976613294080,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6851562976168693760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "RRk2rsLpiIozfHmQiLBIYw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6851562976613294080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:6972555863121425630", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676372045573?e=1677240000&v=beta&t=wdcQKIDwgHCUs2_DviqM027K2dcEIPQbLlAootv_-yM", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676372045573?e=1677240000&v=beta&t=N63HGK1gmxCzFE9DJBDUM0FRZlpetbyj31hrOA_PYnw", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676372045574?e=1677240000&v=beta&t=GqYwF-ZVkZD92i5kHvd2t8IAJ2mYMUlmNq-HUiTrPmI", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676372045574?e=1677240000&v=beta&t=ABXVzjd0sAfU7HlbPfy6OlOA3AvpUBteQuBlYidSBK4", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG0qKl3Y6TU_A/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6972555863121425630)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6972555863121425630)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Free - Le plus grand r\u00e9seau 5G, au prix de ce que vous en faites vraiment on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=WboufBhDqag" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "C'est votre data : vous pouvez l'utiliser comme vous voulez \ud83d\ude0a" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Free - Le plus grand r\u00e9seau 5G, au prix de ce que vous en faites vraiment" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6851562976168693760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans cette pub pour la 5G, Free dit explicitement que le surplus de bande passante servira essentiellement \u00e0 jouer en ligne (idem dans celle ci : https://lnkd.in/dc3kYDea et dans celle-ci : https://lnkd.in/djtENqPB) ou \u00e0 des applications de rencontre (dans celle ci : https://lnkd.in/dZMYA-G3 ).\n\nBref, on oublie la chirurgie \u00e0 distance et l'optimisation de la consommation \u00e9nerg\u00e9tique, tr\u00e8s pr\u00e9sentes dans les propos des promoteurs de cette novation lors des d\u00e9bats initiaux : l'augmentation des d\u00e9bits va bien servir pour l'essentiel \u00e0 des choses aussi essentielles que de jouer \u00e0 Candy Crush et regarder de la vid\u00e9o sur son smartphone. Ce sera d'autant plus le cas que l'invitation \u00e0 le faire a d\u00e9j\u00e0 d\u00e9marr\u00e9 !\n\nEst-ce vraiment l\u00e0 qu'il est le plus urgent de mettre nos moyens ? \"Notre maison br\u00fble et nous jouons \u00e0 Mario Kart\"..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6851562976168693760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6851562976613294080,urn:li:activity:6851562976613294080,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 108, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6851562976613294080,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6851562976613294080,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6851562976613294080", + "threadId": "activity:6851562976613294080", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851562976613294080", + "urn": "urn:li:activity:6851562976613294080", + "numComments": 181, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6851562976613294080", + "reactionTypeCounts": [ + { + "count": 2431, + "reactionType": "LIKE" + }, + { + "count": 208, + "reactionType": "MAYBE" + }, + { + "count": 151, + "reactionType": "INTEREST" + }, + { + "count": 109, + "reactionType": "PRAISE" + }, + { + "count": 53, + "reactionType": "APPRECIATION" + }, + { + "count": 20, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6851562976613294080", + "numLikes": 2972, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851562976613294080", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2972, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6851561270429130752,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6851561270429130752", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6851561270429130752)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6851561270429130752)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_etes-vous-pr%C3%AAt-%C3%A0-changer-votre-consommation-activity-6851561270429130752-k__W?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6851561269682552832", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6851561270429130752", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6851561270429130752,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6851561270429130752,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6851561269682552832", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "ROkwNbECd4eZm3h0Cn5OxQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6851561270429130752,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9192517982407850427", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675871369220?e=1677240000&v=beta&t=axyBkQhCxZ93oRRXaHJBnBV1jL8mzQ_TMoJLph3OsjE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 868, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675871369220?e=1677240000&v=beta&t=80ag-XhIz4mDXFDPXyDdf-QkYAw1MKvWnZsRwbBy8zQ", + "expiresAt": 1677240000000, + "height": 489 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675871369221?e=1677240000&v=beta&t=hvRPa0_THR5MJDkSHnygwHxW2TZumgAzBq5NJJ7FoGM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675871369221?e=1677240000&v=beta&t=Sc8az04MhzpQDkPyd0cTCFXKItRj1fQmc_NILbOsXsc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE7tcFEsEKJAA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Benoit-Heilbrunn-Etes-vous-pret-a-changer-votre-consommation-pour-sauver-la-planete-Oui-mais--306348468.jpg" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9192517982407850427)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9192517982407850427)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "xerficanal.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Etes-vous pr\u00eat \u00e0 changer votre consommation pour sauver la plan\u00e8te ? Oui, mais... by xerficanal.com", + "actionTarget": "https://www.xerficanal.com/strategie-management/emission/Benoit-Heilbrunn-Etes-vous-pret-a-changer-votre-consommation-pour-sauver-la-planete-Oui-mais-_3750010.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Etes-vous pr\u00eat \u00e0 changer votre consommation pour sauver la plan\u00e8te ? Oui, mais..." + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6851561269682552832,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans ce petit \u00e9ditorial diffus\u00e9 par Xerfi Canal, Benoit Heilbrunn sugg\u00e8re de pousser les gens \u00e0 agir contre le r\u00e9chauffement climatique en s'appuyant non point sur l'altruisme, mais... sur l'\u00e9go\u00efsme.\n\nSa proposition est donc de faire reposer le changement des mod\u00e8les de consommation en vantant avant tout la satisfaction imm\u00e9diate et personnelle \u00e0 le faire, et non en s'appuyant sur la culpabilit\u00e9 vis-\u00e0-vis des gens qui nous suivront \u00e0 ne pas le faire. \n\nMalheureusement ou pas, son propos est loin d'\u00eatre infond\u00e9. Dans le monde \u00e9conomique, par exemple, je n'ai jamais trouv\u00e9 autre chose qu'une entreprise qui s'empare du climat parce qu'en tenir compte am\u00e8ne un b\u00e9n\u00e9fice \u00e9go\u00efste de court terme (mieux satisfaire les clients, \u00eatre plus attractif pour les candidat(e)s, \u00e9conomiser des charges...). Le sacrifice pour la collectivit\u00e9 n'est que tr\u00e8s rarement de ce monde l\u00e0.\n\nDans les comportements personnels, il y a de nombreuses raisons aussi de changer \"en bien\" qui rel\u00e8vent en fait de l'avantage personnel de court terme : moins de charges, meilleure sant\u00e9, meilleure int\u00e9gration sociale... Rendre ces motivations explicites et les accepter comme motivations principales n'est, de fait, pas n\u00e9cessairement desservir la cause, puisqu'elles existent !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6851561269682552832,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6851561270429130752,urn:li:activity:6851561270429130752,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 43, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6851561270429130752,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6851561270429130752,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6851561270429130752", + "threadId": "activity:6851561270429130752", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851561270429130752", + "urn": "urn:li:activity:6851561270429130752", + "numComments": 67, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6851561270429130752", + "reactionTypeCounts": [ + { + "count": 464, + "reactionType": "LIKE" + }, + { + "count": 95, + "reactionType": "MAYBE" + }, + { + "count": 50, + "reactionType": "INTEREST" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6851561270429130752", + "numLikes": 620, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851561270429130752", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 620, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6851399246579556352,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6851399246579556352", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6851399246579556352)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6851399246579556352)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-coraux-diminuent-rapidement-presque-partout-activity-6851399246579556352-_X1-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6851399246189494272", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6851399246579556352", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6851399246579556352,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6851399246579556352,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6851399246189494272", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "25kR1BPd1zQ4cPsntUJxHA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6851399246579556352,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9028788313996166844", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675719050862?e=1677240000&v=beta&t=7L3t0ceQkPi3bA_UrzAHvkwInJEcSCHWWyR69ZYu8Rs", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675719050862?e=1677240000&v=beta&t=VPq-jmcbgs0S39DDujblURi6O87qmRIcivIMsjAy4KA", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675719050862?e=1677240000&v=beta&t=PgITiqzsTrQXxpXNkCH-tA1lyvJdLzRlql3N4DnmGOU", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675719050862?e=1677240000&v=beta&t=FDJ6snUGpnbU0YodmwCpE9_wDsP4pdEUohnG4vTSFi8", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQH567gh-fZlFQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9028788313996166844)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9028788313996166844)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les coraux diminuent rapidement presque partout dans le monde by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/planete/article/2021/10/05/les-coraux-diminuent-rapidement-presque-partout-dans-le-monde_6097132_3244.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les coraux diminuent rapidement presque partout dans le monde" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6851399246189494272,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Global Coral Reef Monitoring Network, cr\u00e9\u00e9 en 1995, publie la sixi\u00e8me \u00e9dition du \"Status of Coral Reefs of the World\". Il se base sur quasiment 2 millions d'observations, effectu\u00e9es de 1978 \u00e0 2019, sur 12.000 sites situ\u00e9s dans 73 pays ayant des esp\u00e8ces coralliennes dans leurs eaux.\n\nAlors que la temp\u00e9rature plan\u00e9taire n'est mont\u00e9e que de 1,2\u00b0C, les oc\u00e9ans tropicaux ont perdu environ 14% de leurs coraux entre 2009 et 2018. Occupant 0,2% des fonds oc\u00e9aniques seulement (ils sont par construction absents d\u00e8s qu'il n'y a plus de lumi\u00e8re, car ce sont des \u00eatre symbiotiques comportant des algues, et ces derni\u00e8res ont besoin de lumi\u00e8re), les coraux ne sont pas seulement jolis, ils abritent aussi un quart des esp\u00e8ces marines environ.\n\nA 1,5\u00b0C de r\u00e9chauffement, les trois quarts disparaitraient, selon le rapport du GIEC sur 1,5 \u00b0C. Il est difficile de pr\u00e9dire les cons\u00e9quences de l'acidification de l'oc\u00e9an, qui augmentera \u00e9galement \u00e0 l'avenir, et qui ne va pas aider.\n\nRappelons que notre pays, qui dispose du 2\u00e8 domaine maritime au monde, est un peu concern\u00e9 par le probl\u00e8me..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6851399246189494272,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6851399246579556352,urn:li:activity:6851399246579556352,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 18, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6851399246579556352,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6851399246579556352,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6851399246579556352", + "threadId": "activity:6851399246579556352", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851399246579556352", + "urn": "urn:li:activity:6851399246579556352", + "numComments": 21, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6851399246579556352", + "reactionTypeCounts": [ + { + "count": 221, + "reactionType": "LIKE" + }, + { + "count": 54, + "reactionType": "INTEREST" + }, + { + "count": 31, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6851399246579556352", + "numLikes": 316, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851399246579556352", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 316, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6851396695146684416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6851396695146684416", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6851396695146684416)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6851396695146684416)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-pr%C3%A9sente-son-rapport-final-habiter-activity-6851396695146684416-GHCB?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6851396694664331264", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6851396695146684416", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6851396695146684416,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6851396695146684416,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6851396694664331264", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "j5okybIkVoKtIijFRsStkQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6851396695146684416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8234093057285861776", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675768480272?e=1677240000&v=beta&t=7Gx0EjpxAuSnCrlor-2xLGkKSzn8TL3MaZ5sA8jXPDc", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675768480272?e=1677240000&v=beta&t=ztDvJF5tu50OfnCZJCzSFXstEHLlMwSQKqpdokf0jck", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675768480273?e=1677240000&v=beta&t=u3t0Rpps2hRNT1_eKey-P1vgoaH7_md1Yjky9O_z5ck", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675768480273?e=1677240000&v=beta&t=mYhE5yruEAuFVQjlasV-rNX7iqZTJ7crCYYLIKyI2iw", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHRGTaBq5eZLw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8234093057285861776)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8234093057285861776)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift pr\u00e9sente son rapport final | Habiter dans une soci\u00e9t\u00e9 bas carbone by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-habiter-societe-bas-carbone-presentation-du-rapport-final-jeudi-7-octobre-a-18h/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift pr\u00e9sente son rapport final | Habiter dans une soci\u00e9t\u00e9 bas carbone" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6851396694664331264,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Jeudi 7 octobre \u00e0 18h, The Shift Project pr\u00e9sentera le rapport final du chantier \"logement\" du plan de transformation de l'\u00e9conomie fran\u00e7aise : \"Habiter dans une soci\u00e9t\u00e9 bas carbone\".\n\nComment acc\u00e9l\u00e9rer le rythme des r\u00e9novations dans les d\u00e9cennies \u00e0 venir ? Quels sont les volumes souhaitables en termes de constructions neuves ? Sur quelles sources d\u2019\u00e9nergie pourront-nous compter pour chauffer ou rafra\u00eechir nos logements face \u00e0 un climat de plus en plus incertain ? \n\nC\u2019est pr\u00e9cis\u00e9ment l\u2019objet de ce rapport, et pour voir les modalit\u00e9s d'inscription au webinaire de pr\u00e9sentation, il suffit de cliquer sur le lien associ\u00e9 \u00e0 l'image ci-dessous." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6851396694664331264,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6851396695146684416,urn:li:activity:6851396695146684416,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 5, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6851396695146684416,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6851396695146684416,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6851396695146684416", + "threadId": "activity:6851396695146684416", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851396695146684416", + "urn": "urn:li:activity:6851396695146684416", + "numComments": 5, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6851396695146684416", + "reactionTypeCounts": [ + { + "count": 187, + "reactionType": "LIKE" + }, + { + "count": 12, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6851396695146684416", + "numLikes": 208, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851396695146684416", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 208, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6851158162590973952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6851158162590973952", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6851158162590973952)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6851158162590973952)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-trois-alertes-de-la-flamb%C3%A9e-de-l%C3%A9nergie-activity-6851158162590973952-K0j6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6851158162129608705", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6851158162590973952", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6851158162590973952,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6851158162590973952,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6851158162129608705", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "cDRXy4rCUHlbwwWSxStdkQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6851158162590973952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7861319222939853766", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675482373718?e=1677240000&v=beta&t=ZnEt7-8ujiTLDn_xx9BmIuhyZudFVC3OOkxtBpjL_p0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675482373718?e=1677240000&v=beta&t=mUSJ23y-8mGR2ZrSuSo6E3kzY3a7gQ0t21cf2Y0Nr9w", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675482373719?e=1677240000&v=beta&t=iaGLXxAouRGTnaNyrSkJUeGWOPqvD3O8jMeY63O4EqA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675482373719?e=1677240000&v=beta&t=k3s0-gzczwyLiA9ruR7tAoqIKjIj9HQWrws3Uk8w6I4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFKhrOJs4-GEg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7861319222939853766)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7861319222939853766)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les trois alertes de la flamb\u00e9e de l'\u00e9nergie by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/les-trois-alertes-de-la-flambee-de-lenergie-1351998" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les trois alertes de la flamb\u00e9e de l'\u00e9nergie" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6851158162129608705,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 187, + "length": 17, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Vittori", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAABMMHABybLIGbKxz3mYY-HDiuQyThsIgvg", + "occupation": "\u00e9ditorialiste at Les Echos", + "objectUrn": "urn:li:member:4993136", + "entityUrn": "urn:li:fs_miniProfile:ACoAAABMMHABybLIGbKxz3mYY-HDiuQyThsIgvg", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1516322127622?e=1681948800&v=beta&t=l9mVGWJwnAwzhaz_aELE3d061cItApqXaYFhVRdmGlo", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1516322127622?e=1681948800&v=beta&t=X1nxSNeALTQHBcOcKOoLMmA9TiVW-9xBUgdxm2_jtKA", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5116AQH58AGS4Kx5Ew/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-vittori-6688091", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1627577164056?e=1681948800&v=beta&t=5m8Ns0KZydMifld6M0l-6nsLq3qPgXmxjZjUlXHtGMg", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1627577164056?e=1681948800&v=beta&t=e2fbzhOgn_y53tJNTcpaQCj_Br8J4EOYyGIS5XixWdQ", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1627577164056?e=1681948800&v=beta&t=uqH-kOow02cCJ-IYtY7WlXQrnZcn4kvZqAnb2cZOuyc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1627577164056?e=1681948800&v=beta&t=tMARCi9zRvkfMLRfUYQ_WT3ZVJqMoN8G7UWnXpq005o", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQFd7DrjKwvLKg/profile-displayphoto-shrink_" + } + }, + "trackingId": "qzduODQVTOGh/fKkjR2tyg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans un \u00e9ditorial publi\u00e9 aujourd'hui dans Les Echos (et o\u00f9 The Shift Project est cit\u00e9 pour son travail sur l'approvisionnement p\u00e9trolier possible pour l'Europe : https://lnkd.in/dwPcgve )Jean-Marc Vittori rappelle que la rustine que le gouvernement vient d'appliquer aux prix de l'\u00e9nergie ne peut pas \u00eatre vue autrement que... comme une rustine.\n\nDe fait, avec un approvisionnement p\u00e9trolier et gazier qui sera de plus en plus contraint, il faut s'attendre \u00e0 des prix faisant de plus en plus \"n'importe quoi\", et surtout \u00e0 une \u00e9conomie de plus en plus vacillante, puisque l'\u00e9nergie est le sang des machines qui produisent \u00e0 notre place.\n\nA l'heure o\u00f9 s'\u00e9laborent les programmes des candidat(e)s, avec d\u00e9j\u00e0 des d\u00e9clarations qui semblent plus emprunter au slogan d\u00e9magogique qu'au \"lent cheminement de l'\u00e2me\", comme disait Tocqueville, peut-\u00eatre faut-il enfin comprendre que l'\u00e9conomie n'est qu'une mesure conventionnelle de la physique ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6851158162129608705,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6851158162590973952,urn:li:activity:6851158162590973952,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 16, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6851158162590973952,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6851158162590973952,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6851158162590973952", + "threadId": "activity:6851158162590973952", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851158162590973952", + "urn": "urn:li:activity:6851158162590973952", + "numComments": 57, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6851158162590973952", + "reactionTypeCounts": [ + { + "count": 405, + "reactionType": "LIKE" + }, + { + "count": 30, + "reactionType": "INTEREST" + }, + { + "count": 21, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6851158162590973952", + "numLikes": 478, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851158162590973952", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 478, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6851050615993311233,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6851050615993311233", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6851050615993311233)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6851050615993311233)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_food-prices-poised-to-surge-with-fertilizer-activity-6851050615993311233-6H0F?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6851050615276093440", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6851050615993311233", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6851050615993311233,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6851050615993311233,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6851050615276093440", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "NVu7+LPA4e/4KZyGkdj4uw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6851050615993311233,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6957491916841562698", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676607354079?e=1677240000&v=beta&t=Jb5a1hE-Loy4cdqOc5ZXFns0kWNt3a1yTFApoEI9Wn4", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676607354080?e=1677240000&v=beta&t=NJc7waoqx7iKFJYr62DIZDjsDIhsyk-hqo7BxSL4o_c", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676607354080?e=1677240000&v=beta&t=QcU2j8eRGyudrhHcp9h-O4Oqlee7w6EB0-qebc5VwqI", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676607354080?e=1677240000&v=beta&t=Sl2pdd8t-gvQSTfrvbPnUAR2j7gfn7XxSJZZCjJzWp8", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFcPBPjLOMyhQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6957491916841562698)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6957491916841562698)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "bloomberg.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Food Prices Poised to Surge With Fertilizer at Highest in Years by bloomberg.com", + "actionTarget": "https://www.bloomberg.com/news/articles/2021-09-20/surging-fertilizer-costs-risk-making-food-even-pricier-next-year" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Food Prices Poised to Surge With Fertilizer at Highest in Years" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6851050615276093440,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un prix du gaz qui augmente n'aura pas que des cons\u00e9quences dans le chauffage et l'\u00e9lectricit\u00e9. Dans les autres r\u00e9percussions, il y a aussi l'impact (\u00e0 la hausse) sur le prix des engrais azot\u00e9s. En effet, ces derniers sont fabriqu\u00e9s avec de l'ammoniac, lui-m\u00eame produit avec de l'hydrog\u00e8ne, ce dernier \u00e9tant issu du reformage du gaz (op\u00e9ration qui consiste \u00e0 chauffer tr\u00e8s fort un m\u00e9lange de gaz - CH4 - et de vapeur d'eau - H2O - pour obtenir H2 et CO2).\n\nUn prix du gaz qui augmente fortement, c'est donc un prix des engrais qui augmente aussi : il a doubl\u00e9 en l'espace d'un an. C'est aussi ce qui s'est produit avec le prix du p\u00e9trole, qui lui pilote le cout du transport, mais aussi le prix de la nourriture sur \"les march\u00e9s\". R\u00e9sultat des courses : le prix de la nourriture s'approche de ce qu'il \u00e9tait en 2011 (https://lnkd.in/dPSxXhQJ ), ann\u00e9e o\u00f9 se sont d\u00e9clench\u00e9es des \u00e9meutes de la faim dans les pays d'Afrique du Nord fortement importateurs de nourriture et priv\u00e9s de recettes \u00e0 l'exportation par d\u00e9faut de touristes (on \u00e9tait apr\u00e8s 2009...).\n\nM\u00eames causes dans ces m\u00eames pays (prix de la nourriture \u00e9lev\u00e9, d\u00e9faut de recettes \u00e0 l'exportation \u00e0 cause du covid cette fois), m\u00eames effets ? L'histoire dira." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6851050615276093440,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6851050615993311233,urn:li:activity:6851050615993311233,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 18, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6851050615993311233,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6851050615993311233,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6851050615993311233", + "threadId": "activity:6851050615993311233", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851050615993311233", + "urn": "urn:li:activity:6851050615993311233", + "numComments": 32, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6851050615993311233", + "reactionTypeCounts": [ + { + "count": 408, + "reactionType": "LIKE" + }, + { + "count": 117, + "reactionType": "MAYBE" + }, + { + "count": 108, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6851050615993311233", + "numLikes": 640, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851050615993311233", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 640, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6851047091083472896,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6851047091083472896", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6851047091083472896)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6851047091083472896)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_philippe-val-je-suis-coupable-du-d%C3%A9r%C3%A8glement-activity-6851047091083472896-lVIq?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6851047090479497216", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6851047091083472896", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6851047091083472896,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6851047091083472896,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6851047090479497216", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "BhenatrBvDB/jnDynrYS1A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6851047091083472896,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:9133104224846993131", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676368866908?e=1677240000&v=beta&t=HjHpKmwl-2fTPy6z0TC9H0g-ylZpN-N9pExQz0viM6g", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676368866908?e=1677240000&v=beta&t=J9OWffy9g-muNIuxi-VqCASFOAgAIu2uB55pD9R3xqA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676368866909?e=1677240000&v=beta&t=E_3AYiN-5ML2_IYLxbMQxQBudNRU5KB3S8uKcTN1sxI", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676368866909?e=1677240000&v=beta&t=UOJ06MsDBR1ljNCIsTAlTJP18TzF6O6p_L5nVizl85U", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHJPNACwc9_IA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9133104224846993131)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9133104224846993131)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Philippe Val : \"Je suis coupable du d\u00e9r\u00e8glement climatique et de la hausse des prix du p\u00e9trole\" on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=6Lu6RHSEOSo" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Chaque vendredi, Philippe Val nous livre son regard affut\u00e9 sur un sujet d'actualit\u00e9. Aujourd'hui, il revient sur le d\u00e9r\u00e8glement climatique. ABONNEZ-VOUS pour plus de vid\u00e9os : http://bit.ly/radioE1 LE DIRECT : http://www.europe1.fr/direct-video..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Philippe Val : \"Je suis coupable du d\u00e9r\u00e8glement climatique et de la hausse des prix du p\u00e9trole\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6851047090479497216,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans la s\u00e9rie \"je ne l'aurais vraiment pas pari\u00e9\", l'ancien r\u00e9dacteur en chef de Charlie Hebdo, que l'on n'imagine pas vraiment \u00eatre un supp\u00f4t de l'establishment, ni des partis de droite, fait un \"coming out pronucl\u00e9aire\" au micro d'Europe 1.\n\nCar, et c'est malheureux de mon point de vue, le nucl\u00e9aire est devenu un \u00e9l\u00e9ment de clivage g\u00e9n\u00e9rationnel, et partisan. Les \"vieux\" y sont nettement plus favorables que les jeunes, et les gens de droite bien plus que les gens de gauche, m\u00eame si le soutien \u00e0 cette \u00e9nergie a beaucoup progress\u00e9 depuis 2 ans (https://lnkd.in/dYr8kT9u ).\n\nEn fait, le soutien au nucl\u00e9aire est d'autant plus faible que les gens se disent pr\u00e9occup\u00e9s par les probl\u00e8mes d'environnement, ce qui, pour qui essaie d'appuyer ses conclusions sur les faits opposables, est paradoxal. Le nucl\u00e9aire est en effet bien plus \"propre\" que toute alternative pour la production \u00e9lectrique : il \u00e9met moins de CO2 que les modes fossiles, et consomme (beaucoup) moins d'espace et de mat\u00e9riaux que les modes ENR diffus (solaire et vent).\n\nIl y a cependant des cartes qui commencent \u00e0 \u00eatre rebattues ici et l\u00e0. A la primaire des Verts, une candidate avait d\u00e9clar\u00e9 ne pas vouloir fermer pr\u00e9matur\u00e9ment de r\u00e9acteurs si elle \u00e9tait \u00e9lue. Alors que, statistiquement, les jeunes femmes sont les plus hostiles \u00e0 cette \u00e9nergie, de tr\u00e8s nombreuses associations qui soutiennent le nucl\u00e9aire (Voix du Nucl\u00e9aire, la SFEN, Mothers for Nuclear, Energy for Hymanity, etc) sont dirig\u00e9es par... des femmes plut\u00f4t jeunes.\n\nLa situation souhaitable, c'est \u00e9videmment celle o\u00f9 le d\u00e9bat politique arrive \u00e0 s\u00e9parer les faits des opinions, pour s'accorder sur les premiers, et \u00e9ventuellement s'opposer sur les conclusions qu'il convient d'en tirer pour la gestion au mieux de notre avenir commun. Esp\u00e9rons que nous y arriverons un jour !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6851047090479497216,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6851047091083472896,urn:li:activity:6851047091083472896,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 57, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6851047091083472896,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6851047091083472896,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6851047091083472896", + "threadId": "activity:6851047091083472896", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851047091083472896", + "urn": "urn:li:activity:6851047091083472896", + "numComments": 114, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6851047091083472896", + "reactionTypeCounts": [ + { + "count": 1067, + "reactionType": "LIKE" + }, + { + "count": 76, + "reactionType": "PRAISE" + }, + { + "count": 52, + "reactionType": "MAYBE" + }, + { + "count": 29, + "reactionType": "INTEREST" + }, + { + "count": 11, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6851047091083472896", + "numLikes": 1240, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6851047091083472896", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1240, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6850682804867489792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6850682804867489792", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6850682804867489792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6850682804867489792)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lenvironnement-en-politique-un-sujet-r%C3%A9serv%C3%A9-activity-6850682804867489792-JuyP?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6850682804221566976", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6850682804867489792", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6850682804867489792,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6850682804867489792,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6850682804221566976", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "p0eCRAY3zczt5Cu6FaqpMw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6850682804867489792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7718248051436942750", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676093859591?e=1677240000&v=beta&t=lNaa7yw-sjINlgnvFUHK9OJEKlEhbDnHzxu-Ef4gEb4", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676093859592?e=1677240000&v=beta&t=Jxe6t2dqW5RygdEXpZ85Z_U9RenWbIGJogqQi5tRs5s", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676093859592?e=1677240000&v=beta&t=j1Plni6BJaHzH39faSZBEubvDoeBUpeICjxzyy_GaVk", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676093859592?e=1677240000&v=beta&t=4B1fJ4VE3xh9YmwS-MwjD8UAf_GyaU3qBFNgBcKoT3c", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGXYCkSYww_0w/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7718248051436942750)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7718248051436942750)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtl.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'environnement en politique : un sujet r\u00e9serv\u00e9 aux Verts ? by rtl.fr", + "actionTarget": "https://www.rtl.fr/actu/politique/l-environnement-en-politique-un-sujet-reserve-aux-verts-7900080334" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'environnement en politique : un sujet r\u00e9serv\u00e9 aux Verts ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6850682804221566976,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Alors que les Verts viennent de d\u00e9signer leur candidat \u00e0 la pr\u00e9sidentielle, ma chronique de Samedi dernier sur RTL portait sur la question suivante : l'environnement doit-il \u00eatre le marqueur d'un parti particulier ? Et la r\u00e9ponse (en 3 minutes) est que id\u00e9alement non. \n\nLa finitude de la terre, et le fait que l'\u00e9conomie soit dans l'environnement et non l'inverse, devraient faire partie des \u00e9vidences pour la totalit\u00e9 des partis politiques. C'est tout le sujet des faits et des opinions : ces derni\u00e8res devraient id\u00e9alement se limiter \u00e0 proposer des modes de gestion propres \u00e0 chaque parti en se basant sur des faits qui sont les m\u00eames pour tous.\n\nIl reste un peu de travail avant d'en arriver l\u00e0, et la deuxi\u00e8me partie de cette courte chronique souligne le r\u00f4le des media dans l'affaire. Car les premiers \u00e0 pouvoir faire quelque chose pour que la prise en compte de l'environnement - c'est \u00e0 dire la physique, la chimie et la biologie - soit int\u00e9gr\u00e9e de mani\u00e8re homog\u00e8ne dans tous les programmes, ce sont celles et ceux qui posent des questions quand ils ont un(e) politique en face d'eux. Et l\u00e0 aussi il reste du boulot !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6850682804221566976,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6850682804867489792,urn:li:activity:6850682804867489792,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6850682804867489792,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6850682804867489792,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6850682804867489792", + "threadId": "activity:6850682804867489792", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6850682804867489792", + "urn": "urn:li:activity:6850682804867489792", + "numComments": 78, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6850682804867489792", + "reactionTypeCounts": [ + { + "count": 702, + "reactionType": "LIKE" + }, + { + "count": 43, + "reactionType": "PRAISE" + }, + { + "count": 29, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6850682804867489792", + "numLikes": 802, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6850682804867489792", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 802, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6850680105786720256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6850680105786720256", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6850680105786720256)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6850680105786720256)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_us-shale-drillers-cannot-contain-oil-price-activity-6850680105786720256-1Yg0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6850680105249853440", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6850680105786720256", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6850680105786720256,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6850680105786720256,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6850680105249853440", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "8o7JaRcxoDfgVDI0SbEDrg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6850680105786720256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9206552277223484743", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676612291135?e=1677240000&v=beta&t=p6TTWZV4zjQZ506287oQNpawVtSe2r8afDqIDnfRxF0", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 900, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676612291135?e=1677240000&v=beta&t=9ahVTFdWhHdZ67FzYsYBYOhAz2N99UrZVJCWeuhY95w", + "expiresAt": 1677240000000, + "height": 506 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676612291135?e=1677240000&v=beta&t=Y60B8q_CYIe4vcOxq3AJpQlb0ff0T81B-kvSq6l6LCY", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676612291135?e=1677240000&v=beta&t=DHBhrC4QZDvQz90b3EiWf7w8jv8T7Jn467ByQjM0ZJM", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEQhUsQiHne6Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9206552277223484743)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9206552277223484743)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ft.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: US shale drillers cannot contain oil price rise, Pioneer boss says by ft.com", + "actionTarget": "https://www.ft.com/content/c21eb656-8d09-45ce-a13a-7d8419426b05" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "US shale drillers cannot contain oil price rise, Pioneer boss says" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6850680105249853440,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le patron de Pioneer Natural Resources, qui est le plus gros op\u00e9rateur dans le shale oil am\u00e9ricain, d\u00e9clare au Financial Times que les producteurs US ne sont pas capables d'augmenter suffisamment leur production pour calmer le prix du baril, qui vient de d\u00e9passer 80 dollars. \n\nLa production US est en effet 1,5 million de barils sous son niveau maximum atteint en novembre 2019, et surtout le shale oil a la particularit\u00e9 de n'\u00eatre rentable que si la production n'augmente pas, voire baisse.\n\nEn effet, la production d'un puits de shale oil est tr\u00e8s rapidement d\u00e9clinante (bien plus que pour un puits de p\u00e9trole \"conventionnel\"), et pour qu'un bassin produise une quantit\u00e9 croissante il faut forer de mani\u00e8re croissante aussi et cela repr\u00e9sente des couts d'investissement tels que les op\u00e9rateurs perdent de l'argent (car il faut aussi r\u00e9mun\u00e9rer le capital et payer les frais d'exploitation).\n\nL'arr\u00eat des forages signifie instantan\u00e9ment le d\u00e9clin de la production mais aussi l'arr\u00eat du premier poste de d\u00e9penses et donc... une affaire qui devient rentable.\n\nLe patron de Pioneer ne dit du reste pas autre chose quand il affirme que \"shale producers would keep using their burgeoning cash piles to pay shareholders, not fund new drilling\". \n\nAux prix du gaz qui se payent un petit coup de chaud, il se pourrait bien que s'ajoute rapidement la m\u00eame chose pour le baril. En fait c'est juste une question de temps avant qu'un nouveau choc ne se produise pour un monde d\u00e9pendant toujours du p\u00e9trole de mani\u00e8re massive." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6850680105249853440,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6850680105786720256,urn:li:activity:6850680105786720256,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 16, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6850680105786720256,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6850680105786720256,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6850680105786720256", + "threadId": "activity:6850680105786720256", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6850680105786720256", + "urn": "urn:li:activity:6850680105786720256", + "numComments": 30, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6850680105786720256", + "reactionTypeCounts": [ + { + "count": 197, + "reactionType": "LIKE" + }, + { + "count": 55, + "reactionType": "MAYBE" + }, + { + "count": 54, + "reactionType": "INTEREST" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6850680105786720256", + "numLikes": 307, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6850680105786720256", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 307, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6850361903827427328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6850361903827427328", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6850361903827427328)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6850361903827427328)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_fili%C3%A8re-v%C3%A9lo-le-gouvernement-lance-une-mission-activity-6850361903827427328-RoNJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6850361903181508608", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6850361903827427328", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6850361903827427328,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6850361903827427328,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6850361903181508608", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "u2uj4FXyOyNwGbKif1/muQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6850361903827427328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7559902696829077850", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676438871248?e=1677240000&v=beta&t=AqA8RBLbBjHHBBbDGdLHIy6x4ge9qFX5xChJ7hemVRA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676438871248?e=1677240000&v=beta&t=oWA78vFI9LpAb-_1b2RaEfZnMT5OnsGytIvu_8H0Lwc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676438871248?e=1677240000&v=beta&t=T_Pk1aHi_yk9KRWgA68O8EDEPu1XNE1Fwwt3SRoiMJI", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676438871248?e=1677240000&v=beta&t=EBQyPTR3SOVK3Z1UqdHJNEa2WHRPSKl4Au85RDaRkqA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGYIKbg90Z41g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7559902696829077850)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7559902696829077850)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "bfmtv.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Fili\u00e8re v\u00e9lo: le gouvernement lance une mission parlementaire by bfmtv.com", + "actionTarget": "https://www.bfmtv.com/economie/entreprises/transports/filiere-velo-le-gouvernement-lance-une-mission-parlementaire_AD-202109300244.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Fili\u00e8re v\u00e9lo: le gouvernement lance une mission parlementaire" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6850361903181508608,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Presque 300.000 emplois vis\u00e9s dans la \"fili\u00e8re v\u00e9lo\" \u00e0 l'horizon 2030 : ce sont les chiffres \"des minist\u00e8res\" selon BFM TV (il serait int\u00e9ressant d'avoir la source exacte !) si on acc\u00e9l\u00e9rait sur cette fili\u00e8re, et cela est du m\u00eame ordre de grandeur que ce que The Shift Project voit comme emplois associ\u00e9s au d\u00e9veloppement de ce mode de transport (https://lnkd.in/dGQyXmGX ). \n\nEn effet, plus de monde \u00e0 v\u00e9lo, notamment \u00e0 assistance \u00e9lectrique, pour remplacer des d\u00e9placements du quotidien, souvent seul en voiture, cela signifie des v\u00e9los \u00e0 assembler, des pi\u00e8ces (jantes, cadres - dont cadres sp\u00e9ciaux pour v\u00e9los cargo, cassettes, p\u00e9dales, d\u00e9railleurs, chaines, batteries, moteurs \u00e9lectriques, pneus...) \u00e0 fabriquer, des accessoires et du textile (\u00e0 commencer par des v\u00eatements de pluie !), des v\u00e9los \u00e0 entretenir, etc, et quand on calcule ce que cela peut repr\u00e9senter en partant du temps n\u00e9cessaire \u00e0 chaque op\u00e9ration (et non de l'argent disponible), cela finit par faire du monde.\n\nCela peut aussi faire du monde dans le BTP, puisqu'il faut am\u00e9nager la voirie (passer des voies pour voiture \u00e0 des voies pour v\u00e9lo, installer des parkings \u00e0 v\u00e9lo, des bornes de recharge pour VAE), et tout cela pourrait servir \u00e0 r\u00e9sorber une partie de notre d\u00e9ficit commercial, puisqu'aujourd'hui nous importons une large partie de nos voitures, mais aussi la totalit\u00e9 du p\u00e9trole, et bien sur l'essentiel des v\u00e9los, pi\u00e8ces de rechange, batteries, etc.\n\nPendant longtemps le v\u00e9lo a \u00e9t\u00e9 consid\u00e9r\u00e9 comme un gadget par les pouvoirs publics (\u00e0 preuve le montant croupion consacr\u00e9 au plan v\u00e9lo sur 7 ans : 350 millions, soit 50 par an, l'aum\u00f4ne quoi). Ca serait une tr\u00e8s bonne nouvelle si cela pouvait changer d'ordre de grandeur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6850361903181508608,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6850361903827427328,urn:li:activity:6850361903827427328,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 84, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6850361903827427328,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6850361903827427328,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6850361903827427328", + "threadId": "activity:6850361903827427328", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6850361903827427328", + "urn": "urn:li:activity:6850361903827427328", + "numComments": 219, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6850361903827427328", + "reactionTypeCounts": [ + { + "count": 1538, + "reactionType": "LIKE" + }, + { + "count": 96, + "reactionType": "PRAISE" + }, + { + "count": 76, + "reactionType": "MAYBE" + }, + { + "count": 32, + "reactionType": "EMPATHY" + }, + { + "count": 31, + "reactionType": "INTEREST" + }, + { + "count": 30, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6850361903827427328", + "reacted": "LIKE", + "numLikes": 1803, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6850361903827427328", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1803, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6850358874403291136,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6850358874403291136", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6850358874403291136)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6850358874403291136)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_patrick-pouyann%C3%A9-totalenergies-on-fait-activity-6850358874403291136-JCOE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6850358873811886080", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6850358874403291136", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6850358874403291136,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6850358874403291136,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6850358873811886080", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "AWFUjN/8f6KvwjvlhFZwGw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6850358874403291136,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8447885771898734421", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675957440036?e=1677240000&v=beta&t=lOw-gy_F03anDhyP2k_mcKj8FJ1KOl8ISVntwC7ataw", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675957440036?e=1677240000&v=beta&t=OkRdqNbEmRtp90XhgzQLNRd-aeGDdqKNAHNAN5l9yi8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675957440036?e=1677240000&v=beta&t=GyzrjUHSmSlMhewTtOCsij9xkOyBXRq59z7sS8tAIGo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675957440036?e=1677240000&v=beta&t=3V2G7uFxg0g8k3Zk2LUOhpziIwTVvN5XSgVMPFvbbVg", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGsv7Tn-PS6vA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8447885771898734421)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8447885771898734421)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Patrick Pouyann\u00e9 (TotalEnergies) : \u00ab On fait les autruches si on fait croire aux gens que les renouvelables sont gratuits \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/on-fait-les-autruches-si-on-fait-croire-aux-gens-que-les-renouvelables-sont-gratuits-alerte-le-patron-de-totalenergies-1351123" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Patrick Pouyann\u00e9 (TotalEnergies)\u00a0: \u00ab\u00a0On fait les autruches si on fait croire aux gens que les renouvelables sont gratuits\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6850358873811886080,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pour qui sait lire entre les lignes, cette interview du patron de Total Energies est extr\u00eamement int\u00e9ressante. \n\nPouyann\u00e9 explique ainsi que le gaz est le compl\u00e9ment indispensable aux ENR : \"Oui, le gaz est une \u00e9nergie fossile, mais il \u00e9met moins de CO2 que le charbon et il a sa place dans la transition \u00e9nerg\u00e9tique parce qu'il permet de pallier l'intermittence des \u00e9nergies renouvelables et leur d\u00e9pendance \u00e0 la m\u00e9t\u00e9o\". \n\nTraduction : selon l'int\u00e9ress\u00e9, disposer d'un syst\u00e8me \u00e9lectrique 100% ENR n'est pas possible, puisque d\u00e8s qu'il y a source non pilotable il y a besoin d'un back up.\n\nOn y lit aussi que \"l'\u00e9nergie va couter plus cher\", puisque \"La transition requiert de tr\u00e8s gros investissements. Et l'\u00e9nergie co\u00fbtera plus cher.\". \n\nPouyann\u00e9 confirme que la production mondiale de p\u00e9trole passera par un maximum avant 2030 (au Shift Project nous pensons que le plus probable est qu'il soit survenu en 2018 : https://lnkd.in/dwPcgve ). A court terme, \"les capacit\u00e9s de production inutilis\u00e9es ne sont pas \u00e9normes, et la demande, elle, est bien repartie\". C'est \u00e0 peu pr\u00e8s la configuration qu'il y avait en 2006, et on conna\u00eet la suite. \n\nCette interview rappelle donc que, outre le climat, nous avons une \"voiture balai\" en ce qui concerne le p\u00e9trole : la d\u00e9pl\u00e9tion g\u00e9ologique. Ce n'est pas la premi\u00e8re fois que le patron de Total Energies s'exprime publiquement sur la chose, mais, pour le moment, cela n'a pas l'air d'\u00e9mouvoir le pouvoir politique plus que ca. \n\nLes candidat(e)s \u00e0 la prochaine pr\u00e9sidentielle devraient pourtant bien \u00e9couter, parce que cela signifie qu'il est tout \u00e0 fait possible que l'essentiel de leur mandat se d\u00e9roule dans un contexte o\u00f9, comme pour Hollande et pour Macron I, une large partie de l'\u00e9volution \u00e9conomique \u00e9chappe \u00e0 leur contr\u00f4le, puisque cela va d\u00e9pendre avant tout de ce qu'il sortira des puits de p\u00e9trole." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6850358873811886080,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6850358874403291136,urn:li:activity:6850358874403291136,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 60, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6850358874403291136,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6850358874403291136,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6850358874403291136", + "threadId": "activity:6850358874403291136", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6850358874403291136", + "urn": "urn:li:activity:6850358874403291136", + "numComments": 153, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6850358874403291136", + "reactionTypeCounts": [ + { + "count": 1817, + "reactionType": "LIKE" + }, + { + "count": 278, + "reactionType": "INTEREST" + }, + { + "count": 273, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6850358874403291136", + "numLikes": 2398, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6850358874403291136", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2398, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6850066430747004928,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6850066430747004928", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6850066430747004928)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6850066430747004928)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lors-de-luniversit%C3%A9-d%C3%A9t%C3%A9-des-shifters-activity-6850066430747004928-724-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6850066430176591872", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6850066430747004928", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6850066430747004928,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6850066430747004928,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6850066430176591872", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "1KHcGD0Zp9Z7v2iX92m66Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6850066430747004928,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEzM-TV-fWEpw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEzM-TV-fWEpw", + "artifacts": [ + { + "width": 1188, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1633183102731?e=1679529600&v=beta&t=VSQF8cB7F3g8vZqg7HYQ9MBRQKnIYjSW5iXdJuUgGfA", + "expiresAt": 1679529600000, + "height": 1012 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1633183103735?e=1679529600&v=beta&t=oVw44xe-m3lZOGxo6JQgDGGcTYwh8xFEUA0_gVAFR2k", + "expiresAt": 1679529600000, + "height": 17 + }, + { + "width": 1188, + "fileIdentifyingUrlPathSegment": "1280/0/1633183103735?e=1679529600&v=beta&t=QxlcH2rAuuBeFL_9Zp0GwNquw7k5Jt0CHztzYai1rTo", + "expiresAt": 1679529600000, + "height": 1012 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1633183103735?e=1679529600&v=beta&t=xp88rpSQb2h7YRSwO9txvWdz6x1_qXJTYhtNzFXb4rI", + "expiresAt": 1679529600000, + "height": 409 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1633183103735?e=1679529600&v=beta&t=ka7KTn4FVeh5IfugwnQRX7yCWXH_lWWneT91muKK8Zo", + "expiresAt": 1679529600000, + "height": 136 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1633183103735?e=1679529600&v=beta&t=XPFGGDVFEPCdj9aW_UOkUxII1QS3L7rSoAadiA6eApc", + "expiresAt": 1679529600000, + "height": 681 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEzM-TV-fWEpw/feedshare-shrink_" + }, + "displayAspectRatio": 0.8518518518518519 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, text, application" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6850066430176591872,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 124, + "length": 14, + "miniProfile": { + "firstName": "Patrick", + "lastName": "Martin", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACXEdJcB6C5x8cH0loW9Gd5x_sua1mXMQ74", + "occupation": "Pr\u00e9sident d\u00e9l\u00e9gu\u00e9 du MEDEF et Pr\u00e9sident du Groupe Martin Belaysoud Expansion", + "objectUrn": "urn:li:member:633631895", + "entityUrn": "urn:li:fs_miniProfile:ACoAACXEdJcB6C5x8cH0loW9Gd5x_sua1mXMQ74", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1673596829515?e=1681948800&v=beta&t=-dmw1ejJc4Anemf-UkZ9Z1FRJpvf2KwcWLWwBUd8PDc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1673596829515?e=1681948800&v=beta&t=pEoyKkCbFWZHkRemy10A9aheB4rQo9Zy0JrujbHVcJ4", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQF0gi47T-p5PQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "patrick-martin-medef", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1580224344945?e=1681948800&v=beta&t=av1Pn5K2QT_C6cdgTfjZzMdfioTx8QGH5xmHBnFP8-E", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1580224344945?e=1681948800&v=beta&t=wk33zY5SWPVr1RoQCPpG2DZexPLLJWkTPKBzugUPd1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1580224344945?e=1681948800&v=beta&t=vNal6JOMOIL0zIaCnfCUT-WZEbyThh8uDMSy5V8Jfc4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1580224344945?e=1681948800&v=beta&t=OOkemk5_8nvfSV-AxbMPIPnoXlYreENZmR-r6BgilQA", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHEuCuKNu7TWA/profile-displayphoto-shrink_" + } + }, + "trackingId": "aaCi+vTaTX2Hz88SFNtnSQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Lors de l'Universit\u00e9 d'\u00e9t\u00e9 des Shifters - Univershift\u00e9 - qui s'est tenue il y a une semaine, le pr\u00e9sident d\u00e9l\u00e9gu\u00e9 du MEDEF, Patrick Martin, a dit en s\u00e9ance qu'il \u00e9tait favorable \u00e0 la planification. Comme c'est le coeur du sujet dans le \"plan de transformation de l'\u00e9conomie fran\u00e7aise\", The Shift Project s'est permis de faire un tweet pour diffuser cette d\u00e9claration \u00e9videmment bienvenue de notre point de vue, qui a donn\u00e9 lieu \u00e0 une confirmation de l'int\u00e9ress\u00e9 : https://lnkd.in/d3ZvMXvQ\n\nIl faut bien sur aussi convaincre du bien fond\u00e9 de l'approche les organisation de salari\u00e9s (\u00e9taient pr\u00e9sents \u00e0 la table ronde la CFDT, FO et la CGC-CFE, et nous avons aussi des \u00e9changes avec la CGT et la CFTC), car un tel plan ne peut fonctionner que s'il y a une forme d'union sacr\u00e9e autour de ses objectifs et de la mani\u00e8re d'avancer.\n\nUn beau projet en perspective, qui nous motive beaucoup !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6850066430176591872,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6850066430747004928,urn:li:activity:6850066430747004928,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 16, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6850066430747004928,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6850066430747004928,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6850066430747004928", + "threadId": "activity:6850066430747004928", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6850066430747004928", + "urn": "urn:li:activity:6850066430747004928", + "numComments": 28, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6850066430747004928", + "reactionTypeCounts": [ + { + "count": 451, + "reactionType": "LIKE" + }, + { + "count": 56, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "INTEREST" + }, + { + "count": 8, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6850066430747004928", + "numLikes": 536, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6850066430747004928", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 536, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6850008864398577664,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6850008864398577664", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6850008864398577664)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6850008864398577664)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-panser-plus-de-plaies-avec-moins-activity-6850008864398577664-VZ5l?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6850008863886868480", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6850008864398577664", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6850008864398577664,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6850008864398577664,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6850008863886868480", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "MsZg/5t0sRvh6b5oCk85Jg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6850008864398577664,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8620175216918182146", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676028930987?e=1677240000&v=beta&t=nUosyK1s5JmHBHJKo4aNAhR8SnCLYJpYoph5t65ms68", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676028930987?e=1677240000&v=beta&t=zz34OF17dLXt5pTONsYtT-bWwuQhWr26_gx7q8X4pq8", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676028930987?e=1677240000&v=beta&t=MZC4uzWOCV3iOnf-LtEtCeKCnWfpgM7BV8_QBfRbG_0", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676028930988?e=1677240000&v=beta&t=PFBwJB6JGKY4PUEZYzuV5U1vHD2dJXWXZiHSNBIsVu8", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGevTk9Lypzpw/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8620175216918182146)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8620175216918182146)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici : Panser plus de plaies avec moins de moyens - 09/09/2021 - Cercle Vuln\u00e9rabilit\u00e9s on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=nDzB46kCXnE" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Penser les vuln\u00e9rabilit\u00e9s \u00e0 l\u2019heure de la d\u00e9rive climatique et de la rar\u00e9faction des ressources - Cercle Vuln\u00e9rabilit\u00e9s et Soci\u00e9t\u00e9 avec Jean-Marc Jancovici. A noter : Les courbes \u00e0 29'12 sont nouvelles. Partie Questions/r\u00e9ponses \u00e0 01:06:55 Diaporama :..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici : Panser plus de plaies avec moins de moyens - 09/09/2021 - Cercle Vuln\u00e9rabilit\u00e9s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6850008863886868480,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Cercle \"Vuln\u00e9rabilit\u00e9s et Soci\u00e9t\u00e9s\" (https://lnkd.in/debcEYq5 ) m'a invit\u00e9 \u00e0 faire une intervention (\u00e0 distance) sur le th\u00e8me \"Penser les vuln\u00e9rabilit\u00e9s \u00e0 l\u2019heure de la d\u00e9rive climatique et de la rar\u00e9faction des ressources\". Une partie de l'intervention initiale est \"classique\", avec quand m\u00eame quelques supports nouveaux \u00e0 29'12 sur l'\u00e9volution, sur un si\u00e8cle, du temps de travail, du pouvoir d'achat et des in\u00e9galit\u00e9s.\n\nLe d\u00e9bat d\u00e9marre \u00e0 1'06'50. Il porte \u00e9videmment sur la mani\u00e8re de prendre en charge les plus vuln\u00e9rables dans une soci\u00e9t\u00e9 qui voit son abondance \u00e9nerg\u00e9tique diminuer (et une des raisons pour lesquelles cette intervention m'int\u00e9ressait \u00e9tait justement pour la discussion \u00e0 suivre). Beaucoup de questions int\u00e9ressantes pos\u00e9es, et pas encore toutes les r\u00e9ponses, \u00e9videmment...." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6850008863886868480,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6850008864398577664,urn:li:activity:6850008864398577664,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 4, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6850008864398577664,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6850008864398577664,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6850008864398577664", + "threadId": "activity:6850008864398577664", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6850008864398577664", + "urn": "urn:li:activity:6850008864398577664", + "numComments": 4, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6850008864398577664", + "reactionTypeCounts": [ + { + "count": 161, + "reactionType": "LIKE" + }, + { + "count": 15, + "reactionType": "INTEREST" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6850008864398577664", + "numLikes": 190, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6850008864398577664", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 190, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6849599052603002880,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6849599052603002880", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6849599052603002880)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6849599052603002880)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pouvoir-dachat-jean-castex-bloque-le-prix-activity-6849599052603002880-m-3o?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6849599051768311809", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6849599052603002880", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6849599052603002880,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6849599052603002880,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6849599051768311809", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "8Er91ARE9PV3M9S1N043ww==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6849599052603002880,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8771676275315843707", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675820282768?e=1677240000&v=beta&t=Ps0-qjf00lS1KFLnZVJwmAJPx_zNk6hSMhKewaYvkQ4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675820282768?e=1677240000&v=beta&t=AJpRLJhMBGa9rOrYsNjzCXqve8fotgL--6tJjdb-Sig", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675820282768?e=1677240000&v=beta&t=P4YAvMBj0vn3yJ1CSoMURV00JJpE1Xtf50CGmlkJqsM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675820282769?e=1677240000&v=beta&t=a1WS6KxXT7-hVf-NPNsOg-WrkCBDccKL1iWp3_yeAN4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGb81KyXLTDkg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8771676275315843707)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8771676275315843707)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pouvoir d'achat : Jean Castex bloque le prix du gaz et plafonne la hausse de l'\u00e9lectricit\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/economie-france/budget-fiscalite/pouvoir-dachat-jean-castex-bloque-le-prix-du-gaz-et-plafonne-la-hausse-de-lelectricite-1351018" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pouvoir d'achat\u00a0: Jean Castex bloque le prix du gaz et plafonne la hausse de l'\u00e9lectricit\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6849599051768311809,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Au secours, le prix du gaz augmente ! Peut-on se dire que c'est juste la faute \u00e0 pas de chance ?\n\nLe gaz, tout le monde en veut, en particulier dans la production \u00e9lectrique, car il est deux \u00e0 trois fois moins \u00e9missif que le charbon. En Europe, les allemands veulent remplacer leur charbon et leur nucl\u00e9aire par un ensemble ENR+gaz, les italiens s'y sont mis apr\u00e8s Tchernobyl, les espagnols au moment du d\u00e9veloppement conjoint de l'\u00e9olien et du gaz, les belges veulent s'y mettre en remplacement du nucl\u00e9aire... et les fran\u00e7ais aussi depuis que Hollande a dit que le nucl\u00e9aire c'\u00e9tait pas terrible.\n\nDans le m\u00eame temps, la Chine importe de plus en plus, et les japonais sont au-dessus de leur niveau de 2011 (merci Fukushima). Ce combustible, quoi que fossile jouit d'une image \"sympathique\", entretenue avec succ\u00e8s par ses vendeurs (au moins en Europe).\n\nAvec une demande sans cesse croissante, il n'est donc pas tr\u00e8s \u00e9tonnant qu'un jour ou l'autre - d\u00e8s que l'offre ne suit pas, ce qui est juste une question de temps avec une ressource qui, comme pour le p\u00e9trole, ne sera pas extraite en quantit\u00e9s ind\u00e9finiment croissantes - les prix fassent un petit tour vers le haut. Le march\u00e9 du GNL est mondial, et nous sommes en comp\u00e9tition avec les pays d'Asie qui sont pr\u00eats \u00e0 le payer cher.\n\nIl y aurait eu un moyen d'\u00e9viter partiellement une trop grosse facture pour le pays : mettre en place, il y a longtemps, des politiques publiques un peu volontaristes pour utiliser moins de gaz. \n\nLa version \"lib\u00e9rale\", c'est de taxer le carbone, auquel cas le prix pour le consommateur augmente, mais l'argent pr\u00e9lev\u00e9 reste dans le pays consommateur, qui n'est pas appauvri. Ce produit de la fiscalit\u00e9 peut \u00eatre utilis\u00e9 pour faire des h\u00f4pitaux ou subventionner de l'isolation ou des pompes \u00e0 chaleur. A contrario, une hausse du prix de march\u00e9 envoie l'argent dans les poches du producteur, et donc appauvrit le pays. \n\nRefuser la taxe pour attendre sagement la hausse du prix de march\u00e9 est donc la mauvaise option. Par contre, se contenter de taxer ne dit pas au consommateur ce qu'il faut faire : isoler ? Passer \u00e0 la pompe \u00e0 chaleur ? Baisser le thermostat ? Augmenter le nombre de personnes dans le logement pour diminuer la facture par personne ? Souvent le consommateur n'a pas les moyens de faire de savants calculs pour prendre la meilleure option, et il faut attendre que l'offre le fasse pour lui.\n\nLa version plus encadr\u00e9e est de r\u00e9glementer, par exemple en obligeant au remplacement des chaudi\u00e8res gaz en fin de vie par des pompes \u00e0 chaleur. A ce moment on reste avec un prix de march\u00e9, mais la demande baisse. Cela permet de baisser la facture globale du pays, mais pas celle des consommateurs qui sont toujours au gaz. \n\nLa plus mauvaise mani\u00e8re de g\u00e9rer le probl\u00e8me, c'est de toute fa\u00e7on ce que nous faisons en ce moment : ne rien avoir anticip\u00e9 (alors que c'\u00e9tait possible), et g\u00e9rer comme on peut la crise quand elle arrive. Peut-on esp\u00e9rer qu'un jour il en soit autrement ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6849599051768311809,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6849599052603002880,urn:li:activity:6849599052603002880,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 137, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6849599052603002880,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6849599052603002880,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6849599052603002880", + "threadId": "activity:6849599052603002880", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6849599052603002880", + "urn": "urn:li:activity:6849599052603002880", + "numComments": 228, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6849599052603002880", + "reactionTypeCounts": [ + { + "count": 2371, + "reactionType": "LIKE" + }, + { + "count": 274, + "reactionType": "INTEREST" + }, + { + "count": 230, + "reactionType": "MAYBE" + }, + { + "count": 76, + "reactionType": "PRAISE" + }, + { + "count": 27, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6849599052603002880", + "numLikes": 2985, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6849599052603002880", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2985, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6849219652233506816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6849219652233506816", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6849219652233506816)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6849219652233506816)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_opinion-la-d%C3%A9croissance-contre-l%C3%A9cologie-activity-6849219652233506816-JIT7?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6849219651575025664", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6849219652233506816", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6849219652233506816,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6849219652233506816,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6849219651575025664", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "LNuWhbFXdjiyq0Xz36l/Ug==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6849219652233506816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8443239961904561689", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676319665563?e=1677240000&v=beta&t=92gN3IFxyL5l6v21xlWkn3IsAgT3PnPX1TmT9iOlmew", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676319665563?e=1677240000&v=beta&t=u9Np15MW8AgmOz8KwDyFGtG7Iu-D-X1vKhai20Snyz0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676319665564?e=1677240000&v=beta&t=mjPm83kpEVzEyfSK_E697_BCGpxSsC_qXLkFx-qC6aM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676319665564?e=1677240000&v=beta&t=Zj-ba3ydNYNAHFSC0ecVm86BcglH9ZcPv81yjBM83gY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQH1M6bLMA4ucg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8443239961904561689)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8443239961904561689)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Opinion | La d\u00e9croissance contre l'\u00e9cologie by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/amp/1349401" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Opinion | La d\u00e9croissance contre l'\u00e9cologie" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6849219651575025664,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis quelques temps, on voit appara\u00eetre ici et l\u00e0 des prises de position \"anti-d\u00e9croissance\" comme l'article ci-dessous, alors qu'auparavant les d\u00e9veloppements se contentaient d'\u00eatre \"pro-croissance\".\n\nDe fait, proposer comme projet de soci\u00e9t\u00e9 l'exact inverse de ce qui a \u00e9t\u00e9 l'objectif pendant longtemps est d\u00e9stabilisant. C'est m\u00eame peut-\u00eatre une erreur de communication, car cela demande de consid\u00e9rer que l'\u00e9volution qui a \u00e9t\u00e9 la n\u00f4tre depuis deux si\u00e8cles n'\u00e9tait pas une bonne id\u00e9e, et m\u00eame les \"pro-d\u00e9croissance\" sont g\u00e9n\u00e9ralement contents d'avoir un frigo, l'eau courante, un v\u00e9lo performant, et... internet pour exprimer leur avis :)\n\nIl y a cependant quelque chose d'int\u00e9ressant derri\u00e8re ce point de vue : l'id\u00e9e qu'il ne faut plus conditionner les plans pour l'avenir \u00e0 l'existence de la croissance. Et l\u00e0, nous ne sommes plus dans l'opinion, mais dans les faits. Car, si on reste homog\u00e8ne dans ce que l'on mesure, la croissance est d\u00e9sormais aux abonn\u00e9s absents depuis 10 ans en Europe, et, en tendance, non seulement elle ne reviendra pas, mais la contraction devrait s'amplifier.\n\n\"La croissance\", c'est celle du PIB, qui, tel qu'il a \u00e9t\u00e9 con\u00e7u il y a presque un si\u00e8cle, \u00e9tait cens\u00e9 mesurer de mani\u00e8re agr\u00e9g\u00e9e la production de biens (surtout) et de services (marginalement \u00e0 l'\u00e9poque) issus de notre syst\u00e8me productif.\n\nOr, produire un bien est une affaire de transformation de ressources naturelles. Il se trouve que la transformation a son unit\u00e9 de compte en physique : l'\u00e9nergie. Pour faire plus de biens, il faut donc transformer plus, et donc utiliser plus d'\u00e9nergie. En pratique cette derni\u00e8re est utilis\u00e9e par un parc croissant de machines.\n\nM\u00eame les services ob\u00e9issent largement \u00e0 cette d\u00e9finition. Un h\u00f4pital, un train, un r\u00e9seau de t\u00e9l\u00e9communication, ce sont avant tout des machines qui demandent de l'\u00e9nergie pour \u00eatre fabriqu\u00e9es et pour fonctionner.\n\nEn Europe, l'approvisionnement \u00e9nerg\u00e9tique est contraint \u00e0 la baisse en tendance depuis 2006. Le p\u00e9trole est de moins en moins disponible pour nous depuis le pic de production (mondial) sur le conventionnel survenu en 2008. Pour le gaz, la cause est le pic de production de la Mer du Nord en 2005. Pour le charbon, la production europ\u00e9enne a culmin\u00e9 il y a un demi-si\u00e8cle. Gaz et charbon sont malcommodes \u00e0 importer massivement. \n\nL'hydro est stable (tout est \u00e9quip\u00e9 ou presque), le nucl\u00e9aire en d\u00e9clin voulu, et les nouvelles ENR bien trop \"faibles\" physiquement pour compenser le reste. Notre parc domestique de machines va donc travailler de moins en moins, ce qui signifie, aux gains d'efficacit\u00e9 \u00e9nerg\u00e9tique pr\u00e8s (faibles), que le PIB \"vrai\"... diminuera.\n\nLa d\u00e9croissance est donc d\u00e9j\u00e0 l\u00e0 de mani\u00e8re larv\u00e9e en pratique, et va s'accentuer (https://lnkd.in/gPsGK-F ). Ce qui est urgent, c'est de r\u00e9fl\u00e9chir \u00e0 la meilleure mani\u00e8re de piloter notre destin dans ce contexte. Dire \"je veux pas\" ne nous sera h\u00e9las pas tr\u00e8s utile." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6849219651575025664,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6849219652233506816,urn:li:activity:6849219652233506816,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 105, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6849219652233506816,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6849219652233506816,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6849219652233506816", + "threadId": "activity:6849219652233506816", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6849219652233506816", + "urn": "urn:li:activity:6849219652233506816", + "numComments": 165, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6849219652233506816", + "reactionTypeCounts": [ + { + "count": 1596, + "reactionType": "LIKE" + }, + { + "count": 195, + "reactionType": "INTEREST" + }, + { + "count": 179, + "reactionType": "MAYBE" + }, + { + "count": 49, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6849219652233506816", + "numLikes": 2046, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6849219652233506816", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2046, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6849034480561205248,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6849034480561205248", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6849034480561205248)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6849034480561205248)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_summer-wildfires-emitted-record-amount-of-activity-6849034480561205248-so6R?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6849034480015970304", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6849034480561205248", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6849034480561205248,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6849034480561205248,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6849034480015970304", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "rPUk/N9bzy4f72J7G3dc+Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6849034480561205248,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9107300336228454272", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675470294543?e=1677240000&v=beta&t=FIxJM5c7pN1PN-svHFWAXgX-rgNS2FDGkYbd7lyEWQI", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675470294543?e=1677240000&v=beta&t=YeDXNo-h8jC7eHrztoNSOhuubW6qgomyi6uvC3BPw10", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675470294543?e=1677240000&v=beta&t=eP4560XZcautnrlJasUBIX9xGyh34IH3woIRwlHIrM4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675470294543?e=1677240000&v=beta&t=0pCUUtqMrOaywPjPPYtV6WuMWUUMhmQP4Y73UuJWffU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEORXKzTI6RAw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9107300336228454272)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9107300336228454272)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rfi.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Summer wildfires emitted record amount of planet-warming CO2 by rfi.fr", + "actionTarget": "https://www.rfi.fr/en/science-and-technology/20210922-summer-wildfires-emitted-record-amount-of-planet-warming-co2" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Summer wildfires emitted record amount of planet-warming CO2" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6849034480015970304,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "2,5 milliards de tonnes de CO2, soit environ 6% des \u00e9missions annuelles de ce gaz : c'est ce que les feux de for\u00eat ont rel\u00e2ch\u00e9 dans l'atmosph\u00e8re en juillet et aout de cette ann\u00e9e, \u00e0 cause des incendies majeurs ayant eu lien en Sib\u00e9rie, aux USA, et encore ailleurs. \n\nCe processus illustre malheureusement un emballement connu depuis longtemps : climat plus chaud (et sec l'\u00e9t\u00e9) -> incendies qui se d\u00e9clenchent plus facilement -> \u00e9missions qui augmentent -> climat plus chaud...\n\nCe risque est aujourd'hui mal appr\u00e9ci\u00e9 par les mod\u00e8les. Ces derniers savent bien mod\u00e9liser l'\u00e9volution des param\u00e8tres climatiques, mais pas du tout si cela va rendre possible la diss\u00e9mination \u00e0 large \u00e9chelle d'un parasite ou d'un champignon qui va d\u00e9cimer les arbres (et une fois morts, donc secs, ils prennent feu et enflamment les arbres voisins encore vivants). Les valeurs moyennes sont d\u00e9finies de mani\u00e8re robuste, mais un peu moins les vagues de chaleur, or ce sont les extr\u00eames qui tuent la v\u00e9g\u00e9tation \u00e0 tr\u00e8s grande vitesse, et qui peuvent alors contribuer \u00e0 l'emballement.\n\nDes for\u00eats qui meurent, ce sont aussi des sols qui retiennent moins l'eau, donc de nouveaux arbres qui peuvent moins facilement reprendre (raison pour laquelle les forestiers aiment de moins en moins les coupes rases sur grandes \u00e9tendues). Ce point l\u00e0 n'est pas non plus bien appr\u00e9ci\u00e9 par les simulations, qui globalement - on le voit ann\u00e9e apr\u00e8s ann\u00e9e - ont plut\u00f4t minor\u00e9 les risques.\n\nRappelons qu'\u00e0 cause de l'inertie du syst\u00e8me climatique, quand on consid\u00e8rera que la plaisanterie a assez dur\u00e9, la seule garantie \u00e0 ce moment l\u00e0 sera que ce sera pire derri\u00e8re. Il faudrait donc s'agiter avant d'en arriver l\u00e0... combien de millions d'hectares br\u00fbl\u00e9s (et derri\u00e8re de probl\u00e8mes pour les hommes) valent la 5G, le voyage en avion, le SUV, la chaudi\u00e8re au fioul, les achats de trucs et de machins, l'abandon du nucl\u00e9aire, un gros cheptel bovin, ou une garde robe copieuse ? Question d\u00e9rangeante, mais question r\u00e9elle..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6849034480015970304,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6849034480561205248,urn:li:activity:6849034480561205248,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 45, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6849034480561205248,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6849034480561205248,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6849034480561205248", + "threadId": "activity:6849034480561205248", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6849034480561205248", + "urn": "urn:li:activity:6849034480561205248", + "numComments": 67, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6849034480561205248", + "reactionTypeCounts": [ + { + "count": 981, + "reactionType": "LIKE" + }, + { + "count": 152, + "reactionType": "INTEREST" + }, + { + "count": 77, + "reactionType": "MAYBE" + }, + { + "count": 45, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6849034480561205248", + "numLikes": 1271, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6849034480561205248", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1271, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6848905298351022081,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6848905298351022081", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6848905298351022081)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6848905298351022081)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_totalenergies-table-sur-un-pic-de-demande-activity-6848905298351022081-NnAK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6848905297788985344", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6848905298351022081", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6848905298351022081,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6848905298351022081,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6848905297788985344", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "LUMb65MM1fW+pCufIN2/8g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6848905298351022081,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9115594259931340557", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675559445743?e=1677240000&v=beta&t=ke7_ikBNVgObyyf1NG9pq4GokN_DVWVYEl3D3dfVD4o", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675559445743?e=1677240000&v=beta&t=4EL_IIPcuKXmcsc3PEZUoVd4krRmdaILnqE8Zw6tcYY", + "expiresAt": 1677240000000, + "height": 750 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675559445743?e=1677240000&v=beta&t=0tMZo2j_oq9Xmyw4YRaGJ34hRyWgqbpIYAM1cMhbwhw", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675559445743?e=1677240000&v=beta&t=B8hmefXZfMGQ6hYGP2ybu3wYLbUSZUK-eQiycOu7I34", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQERTn-woRv5RA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9115594259931340557)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9115594259931340557)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "challenges.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: TotalEnergies table sur un pic de demande de p\u00e9trole avant 2030 - Challenges by challenges.fr", + "actionTarget": "https://www.challenges.fr/finance-et-marche/totalenergies-table-sur-un-pic-de-demande-de-petrole-avant-2030_782367" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "TotalEnergies table sur un pic de demande de p\u00e9trole avant 2030 - Challenges" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6848905297788985344,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis que les g\u00e9ologues p\u00e9troliers parlent d'une offre de p\u00e9trole qui serait contrainte par la g\u00e9ologie (le \"peak oil\"), les p\u00e9troliers eux-m\u00eames ont choisi de parler du m\u00eame ph\u00e9nom\u00e8ne en parlant de \"pic de la demande\". \n\nIl se trouve que, sur terre, tout le p\u00e9trole produit est consomm\u00e9. Il n'y a pas de gros stocks en surface qui pourraient augmenter pendant des ann\u00e9es avec une production qui croit pendant que la demande d\u00e9croit.\n\nAnnoncer le pic de la demande, c'est donc aussi annoncer le pic de la production. Il y a \"juste\" une petite astuce s\u00e9mantique qui consiste \u00e0 imputer ce pic au consommateur, qui serait devenu sage (alors que, depuis que le p\u00e9trole a \u00e9t\u00e9 d\u00e9couvert, ledit consommateur ne s'est jamais limit\u00e9 de lui-m\u00eame), et non \u00e0 l'impossibilit\u00e9 du producteur de fournir. \n\nRappelons que, malgr\u00e9 une multiplication des investissements par 3 entre 2000 et 2014, la production de p\u00e9trole des \"majors\" a baiss\u00e9 de 20% sur la m\u00eame p\u00e9riode. On peut donc se demander dans quelle mesure il ne s'agit pas d'une pure astuce s\u00e9mantique dans cette annonce de Total, qui ne fait que confirmer que le pic de production, c'est entre 2018 (maximum historique \u00e0 date) et dans pas longtemps. C'est aussi l'analyse du Shift Project : https://lnkd.in/dW3FREk\n\nClimat ou pas climat, il va donc falloir se sevrer..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6848905297788985344,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6848905298351022081,urn:li:activity:6848905298351022081,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 39, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6848905298351022081,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6848905298351022081,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6848905298351022081", + "threadId": "activity:6848905298351022081", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6848905298351022081", + "urn": "urn:li:activity:6848905298351022081", + "numComments": 102, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6848905298351022081", + "reactionTypeCounts": [ + { + "count": 686, + "reactionType": "LIKE" + }, + { + "count": 87, + "reactionType": "INTEREST" + }, + { + "count": 69, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6848905298351022081", + "numLikes": 862, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6848905298351022081", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 862, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6848608838363439105,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6848608838363439105", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6848608838363439105)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6848608838363439105)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-%C3%A9missions-de-co2-des-avions-ayant-d%C3%A9coll%C3%A9-activity-6848608838363439105-gtQm?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6848608837612662785", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6848608838363439105", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6848608838363439105,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6848608838363439105,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6848608837612662785", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "ngq9oUz99J5FYOFQ1a6tZQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6848608838363439105,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEiMTfnZSlfXA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEiMTfnZSlfXA", + "artifacts": [ + { + "width": 1766, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1632835585223?e=1679529600&v=beta&t=QKBrkU7yb0GHuw_tjGmBhXiHJCnGKnifg2UefsyUIes", + "expiresAt": 1679529600000, + "height": 1072 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1632835587535?e=1679529600&v=beta&t=x-HVLo6RXtHQQA4K8Q59vcXg5w9AlDGF8C0K41dYwnw", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1632835587535?e=1679529600&v=beta&t=BpK3_in2qn2O-1re452VKDfV3yq1SL9lr9p3sf5xDgM", + "expiresAt": 1679529600000, + "height": 777 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1632835587535?e=1679529600&v=beta&t=zFtdENFiMREdUMNdsSL3cZIWyFNFZILnms-tr4Vvpc0", + "expiresAt": 1679529600000, + "height": 291 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1632835587535?e=1679529600&v=beta&t=Hu19Fokyby1r22x_I20Rnsc2Zk-axIH1_iKfXMjK3xU", + "expiresAt": 1679529600000, + "height": 97 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1632835587535?e=1679529600&v=beta&t=9HsYobqPf7Cy8a99_p9f5IhRaQS89GWq1lohg45MWlE", + "expiresAt": 1679529600000, + "height": 486 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEiMTfnZSlfXA/feedshare-shrink_" + }, + "displayAspectRatio": 0.6070215175537939 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "map" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6848608837612662785,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les \u00e9missions de CO2 des avions ayant d\u00e9coll\u00e9 du sol europ\u00e9en ont baiss\u00e9 de 56% du 1er janvier au 28 septembre 2021 par rapport \u00e0 la m\u00eame p\u00e9riode de l'ann\u00e9e 2019, annonce Eurocontrol dans une note d'information : https://lnkd.in/drhqyeQ4\n\nLe seul pays qui a vu son trafic sortant revenir au m\u00eame niveau qu'en 2019 est le Luxembourg, qui est, semble-t-il, un hub pour le fret a\u00e9rien (pas tr\u00e8s en phase avec l'accord de Paris cette affaire). Par contre, pour l'essentiel des pays la baisse reste inf\u00e9rieure \u00e0 40%.\n\nCette baisse est un vrai sujet pour les gens qui vivent du transport a\u00e9rien, mais peut-on dire que cela a fortement baiss\u00e9 notre qualit\u00e9 de vie \"globale\" ?\n\nSi la r\u00e9ponse est non, ou essentiellement non, cela montre qu'il y a des secteurs o\u00f9 le point le plus bloquant pour engendrer une baisse importante des \u00e9missions est moins la r\u00e9ticence des consommateurs que la r\u00e9ticence (que l'on peut comprendre !) des salari\u00e9s. C'est du reste ce qui est ressorti de la consultation large qui a \u00e9t\u00e9 pr\u00e9sent\u00e9e \u00e0 l'universit\u00e9 des Shifters (\u00e0 1:10:19 de https://lnkd.in/d788KFN6 )\n\nA ce moment, la cl\u00e9 du changement s'appelle peut-\u00eatre avant tout s'occuper de reconversions (formations, investissements, accompagnement, etc). Et plus on l'anticipe, mieux ca se passe, comme d'habitude. A l'heure o\u00f9 les \u00e9cologistes d\u00e9signent leur candidat, il serait int\u00e9ressant d'entendre le/la vainqueur sur ce sujet de l'emploi des secteurs qui doivent se contracter (un sujet majeur pour The Shift Project)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6848608837612662785,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6848608838363439105,urn:li:activity:6848608838363439105,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 47, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6848608838363439105,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6848608838363439105,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6848608838363439105", + "threadId": "activity:6848608838363439105", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6848608838363439105", + "urn": "urn:li:activity:6848608838363439105", + "numComments": 126, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6848608838363439105", + "reactionTypeCounts": [ + { + "count": 1073, + "reactionType": "LIKE" + }, + { + "count": 112, + "reactionType": "INTEREST" + }, + { + "count": 107, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6848608838363439105", + "numLikes": 1319, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6848608838363439105", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1319, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6848509981713596416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6848509981713596416", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6848509981713596416)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6848509981713596416)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-entreprises-invit%C3%A9es-%C3%A0-%C3%A9valuer-leur-activity-6848509981713596416-HXnv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6848509981134794752", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6848509981713596416", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6848509981713596416,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6848509981713596416,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6848509981134794752", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "+P5tz5T3miDTBG3+8heokg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6848509981713596416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7049726237526991800", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675853140109?e=1677240000&v=beta&t=g-vGiIFlnDPntS-quais9dvlzL-k2z1_OhI411zNKso", + "expiresAt": 1677240000000, + "height": 440 + }, + { + "width": 1072, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675853140110?e=1677240000&v=beta&t=8kNYv-eNfymhC4W-h4uupiYSkJNMVwpUHKcHn2oT5G8", + "expiresAt": 1677240000000, + "height": 590 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675853140110?e=1677240000&v=beta&t=g2Xkl9NBk8Rny_hcCn_AfYyZliW6N2idANSHlSl7wp4", + "expiresAt": 1677240000000, + "height": 88 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675853140110?e=1677240000&v=beta&t=8ztT5FT8kWrdPG169k9dbBYg9hsn4Q3_vZlQDfdnYmE", + "expiresAt": 1677240000000, + "height": 264 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHdXnrSeNJOTw/articleshare-shrink_" + }, + "displayAspectRatio": 0.55 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7049726237526991800)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7049726237526991800)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "aefinfo.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les entreprises invit\u00e9es \u00e0 \u00e9valuer leur \"r\u00e9silience climatique\" gr\u00e2ce... by aefinfo.fr", + "actionTarget": "https://www.aefinfo.fr/depeche/658987" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les entreprises invit\u00e9es \u00e0 \u00e9valuer leur \"r\u00e9silience climatique\" gr\u00e2ce..." + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6848509981134794752,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 20, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "los0pQMgTUabH0Lzc/Ut9A==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Il y a une semaine, Carbone 4 annon\u00e7ait \"officiellement\" le lancement d'OCARA - Operational Climate Adaptation and Resilience Assessment, un package \"tout en un\" pour que les entreprises puissent commencer \u00e0 radiographier les risques courus face aux al\u00e9as climatiques, qui vont s'amplifier pour les si\u00e8cles \u00e0 venir quoi que nous fassions, \u00e0 cause de l'inertie du syst\u00e8me climatique.\n\nAEF a fait une d\u00e9p\u00eache reprenant quelques \u00e9l\u00e9ments de cette pr\u00e9sentation, et vous pouvez retrouver l'ensemble des documents mis publiquement \u00e0 disposition sur https://lnkd.in/eUBcf3eE\n\nIl n'y a plus qu'\u00e0 ! Car le temps presse..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6848509981134794752,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6848509981713596416,urn:li:activity:6848509981713596416,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 13, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6848509981713596416,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6848509981713596416,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6848509981713596416", + "threadId": "activity:6848509981713596416", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6848509981713596416", + "urn": "urn:li:activity:6848509981713596416", + "numComments": 16, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6848509981713596416", + "reactionTypeCounts": [ + { + "count": 164, + "reactionType": "LIKE" + }, + { + "count": 12, + "reactionType": "INTEREST" + }, + { + "count": 8, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6848509981713596416", + "numLikes": 196, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6848509981713596416", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 196, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6848252092449091584,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6848252092449091584", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6848252092449091584)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6848252092449091584)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-castex-lance-le-chantier-de-la69-le-activity-6848252092449091584-vNX7?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6848252091866062848", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6848252092449091584", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6848252092449091584,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6848252092449091584,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6848252091866062848", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "aDJD9FsM+ZZdJlpyb8wQPw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6848252092449091584,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8540659949968970214", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676416231799?e=1677240000&v=beta&t=eIoZcnr9DP8eAWyXzP71h4TGPujWBIpBH8MFLM5Cbdk", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 870, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676416231800?e=1677240000&v=beta&t=iSjEDZLGnrZJF4i86hR5Zr4qBWOffU6oxjerLSU5RTI", + "expiresAt": 1677240000000, + "height": 489 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676416231800?e=1677240000&v=beta&t=Hbt9jV8QMJVQUubN4ZeE-PHw3K7BAe3phHKv1GQ5i2I", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676416231800?e=1677240000&v=beta&t=xRqz_p5yxIC0A3Sstypv_HnFjNNGwx4pG6x1y49pueM", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEcteovjN1jFQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8540659949968970214)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8540659949968970214)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "francebleu.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean Castex lance le chantier de l\u2019A69, le groupe NGE d\u00e9sign\u00e9 concessionnaire de l\u2019autoroute Toulouse-Castres by francebleu.fr", + "actionTarget": "https://www.francebleu.fr/infos/transports/jean-castex-lance-le-chantier-de-l-a69-le-groupe-nge-designe-concessionnaire-de-l-autoroute-toulouse-1632556406" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean Castex lance le chantier de l\u2019A69, le groupe NGE d\u00e9sign\u00e9 concessionnaire de l\u2019autoroute Toulouse-Castres" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6848252091866062848,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 422, + "length": 11, + "miniCompany": { + "objectUrn": "urn:li:company:68851893", + "entityUrn": "urn:li:fs_miniCompany:68851893", + "name": "France Bleu", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1601819590659?e=1684972800&v=beta&t=e2mB7prsAgNI7QT7RS8gYFD7j7Gvevp7QWJcZh1ScP8", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1601819590659?e=1684972800&v=beta&t=MnmrQMPFzQH-sckC04ZOEK-456ci_EgFMP1L0q3S6S8", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1601819590659?e=1684972800&v=beta&t=Lu7W5BnXHZoD4Y0cJ-sw-NgI5ZZFxk5hhHdwXtopzEs", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGvB_qsUmwpTQ/company-logo_" + } + }, + "universalName": "francebleu", + "dashCompanyUrn": "urn:li:fsd_company:68851893", + "trackingId": "Lhy+KJhxTq2rTq6E8Dev2Q==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Notre pays souhaite faire baisser les \u00e9missions. Notre pays souhaite arr\u00eater l'artificialisation. Notre pays souhaite proposer des offres alternatives pour se d\u00e9placer autrement qu'en voiture. La r\u00e9ponse est \u00e9vidente : on va faire une nouvelle autoroute. \n\nMais apr\u00e8s tout, le gouvernement aurait tort de se priver du confort de l'incoh\u00e9rence, puisqu'il est servi par une presse qui la cultive tout autant. Cet article de France Bleu ne contient ni le mot climat, ni le mot p\u00e9trole, ni le mot CO2, ni le mot \"effet de serre\". Bref, c'est le cas de le dire, circulez y'a rien \u00e0 voir.\n\nCette autoroute va absorber \u00e0 elle seule 480 millions, soit, sur juste un petit bout d'infrastructure \u00e0 voitures, plus que le plan v\u00e9lo qui, pour l'ensemble du pays, et pour 7 ans, n'en a que 350. \n\nEn fait, le premier d\u00e9terminant de ce genre d'ouvrage n'est malheureusement pas toujours la demande pressante de la population. Les plus grands pousse au crime sont trop souvent les \u00e9lus locaux et les entreprises du BTP, les premiers \u00e9coutant beaucoup les secondes. \n\nCela se retrouve dans le fait que les emplois - qui seraient tout autant pr\u00e9serv\u00e9s \u00e0 faire des pistes cyclables, et pour 480 millions Dieu sait qu'on en ferait... - sont toujours cit\u00e9s dans les communiqu\u00e9s de presse associ\u00e9s \u00e0 la r\u00e9alisation de ces infrastructures, le CO2 ou l'\u00e9nergie \u00e0 peu pr\u00e8s jamais." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6848252091866062848,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6848252092449091584,urn:li:activity:6848252092449091584,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 160, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6848252092449091584,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6848252092449091584,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6848252092449091584", + "threadId": "activity:6848252092449091584", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6848252092449091584", + "urn": "urn:li:activity:6848252092449091584", + "numComments": 285, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6848252092449091584", + "reactionTypeCounts": [ + { + "count": 3052, + "reactionType": "LIKE" + }, + { + "count": 448, + "reactionType": "MAYBE" + }, + { + "count": 293, + "reactionType": "INTEREST" + }, + { + "count": 117, + "reactionType": "PRAISE" + }, + { + "count": 53, + "reactionType": "APPRECIATION" + }, + { + "count": 21, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6848252092449091584", + "numLikes": 3984, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6848252092449091584", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3984, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6848145443730325504,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6848145443730325504", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6848145443730325504)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6848145443730325504)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_un-article-paru-dans-le-financial-times-activity-6848145443730325504-8X7y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6848145442811772928", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6848145443730325504", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6848145443730325504,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6848145443730325504,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6848145442811772928", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "Nng/st7tD/Lq+rATFXEh6Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6848145443730325504,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEDZcjrRZxhRg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEDZcjrRZxhRg", + "artifacts": [ + { + "width": 1152, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1632725105173?e=1679529600&v=beta&t=55ECsnNOhaIfkI0_JEOtzcq2Pc7dTZgdYdpDKRXYrjM", + "expiresAt": 1679529600000, + "height": 1536 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1632725105292?e=1679529600&v=beta&t=wgZKGsyRuAbRPJcqj5zRTnQpRVM891DtSN4Lp7iio8U", + "expiresAt": 1679529600000, + "height": 26 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1632725105292?e=1679529600&v=beta&t=K5S1v32fauxp6b185pDZbLT-4JfrtFZ-u5b5-Y4eYZk", + "expiresAt": 1679529600000, + "height": 1706 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1632725105292?e=1679529600&v=beta&t=tKCYL_weZPNEQ2vg7nrI_DNqBm0iSntNJ4JJOq6grw4", + "expiresAt": 1679529600000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1632725105292?e=1679529600&v=beta&t=WoKsH_MvZ4zkifELQlasE2YOin7lR0mv7krVBkmohHI", + "expiresAt": 1679529600000, + "height": 213 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1632725105292?e=1679529600&v=beta&t=zjl3GSZ84o6db3L6DI0lYckEYYPspRrBgH1WT2ZruNY", + "expiresAt": 1679529600000, + "height": 1066 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEDZcjrRZxhRg/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "timeline" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6848145442811772928,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un article paru dans le Financial Times (pas pr\u00e9cis\u00e9ment l'organe officiel d'une ONG environnementale en g\u00e9n\u00e9ral) explique en quoi les engagements de neutralit\u00e9 pris par les entreprises consistent \u00e0 mettre la charge de la preuve sur ses successeurs plus ou moins lointains \u00e0 la t\u00eate de la soci\u00e9t\u00e9. \n\nNB : le texte int\u00e9gral de l'article est disponible sur d'autres sites, comme par exemple celui-ci : https://lnkd.in/eHqGFByn\n\nL'argumentaire pointe donc une faiblesse de ces engagements de neutralit\u00e9 qui n'est pas scientifique (car la neutralit\u00e9 \u00e0 l'\u00e9chelle d'une entreprise correspond \u00e0 une comptabilit\u00e9 plus que discutable : https://lnkd.in/dGTt6Zs et https://lnkd.in/db7JzB2q ), mais manag\u00e9riale. \n\nUne telle annonce de neutralit\u00e9 \u00e0 l'horizon 2050 ou 2040 donne en effet une cible qui devra \u00eatre atteinte par une autre \u00e9quipe que le management en place, qui s'ach\u00e8te donc la tranquillit\u00e9 \u00e0 court terme sans garantir le r\u00e9sultat \u00e0 terme.\n\nLe FT a en particulier regard\u00e9 le rapport entre la dur\u00e9e au terme de laquelle l'entreprise devra \u00eatre \"neutre\", et la longueur du mandat du dernier PDG parti. Le graphique figure sur l'image ci-dessous, et il est \u00e9difiant.\n\nLafarge, par exemple, serait \"neutre\" au bout de 13 fois la dur\u00e9e du mandat du dernier patron. Ce multiple n'est \"que\" de 3 pour Nestl\u00e9 ou Unilever, mais plus de 6 pour HSBC. Autrement dit, le sujet ne sera m\u00eame pas le probl\u00e8me du successeur imm\u00e9diat dans l'essentiel des cas.\n\nMais lorsque la \"neutralit\u00e9\" est annonc\u00e9 \u00e0 un horizon de temps court (dont \"tout de suite\"), il y a une autre faiblesse majeure : d\u00e9clarer que l'entreprise est d\u00e9j\u00e0 neutre, c'est dire que le probl\u00e8me est d\u00e9j\u00e0 r\u00e9gl\u00e9, et c'est par construction tuer toute capacit\u00e9 \u00e0 un changement profond au sein des collaborateurs. En effet, pourquoi vouloir remettre en cause l'existant si le probl\u00e8me est r\u00e9gl\u00e9 ?\n\nAnnonc\u00e9e pour plus tard, la \"neutralit\u00e9\" d'une entreprise est donc un report de la charge sur ceux qui suivront et une procrastination. Pr\u00e9sent\u00e9e comme d\u00e9j\u00e0 atteinte, c'est un anesth\u00e9siant. Dans tous les cas de figure, c'est donc une mauvaise id\u00e9e. \n\nLe vrai d\u00e9fi pour une entreprise n'est pas de se d\u00e9clarer neutre, et le faire n'aide pas. C'est de commencer \u00e0 mettre dans l'affaire des moyens humains et mat\u00e9riels \u00e0 la hauteur de l'enjeu : formation massive ; innovation technique & manag\u00e9riale massive ; reconversions massives (il faudra abandonner des activit\u00e9s existantes) ; syst\u00e8me de reporting adapt\u00e9 (d\u00e9ploiement d'une comptabilit\u00e9 carbone d\u00e9taill\u00e9e) ; etc. Et, au bout du compte, des entreprises o\u00f9 chaque collaborateur comprend l'enjeu et accepte que cela impactera son activit\u00e9 au quotidien. Ca va demander des efforts autrement plus importants que quelques d\u00e9clarations \u00e0 la presse." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6848145442811772928,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6848145443730325504,urn:li:activity:6848145443730325504,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 96, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6848145443730325504,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6848145443730325504,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6848145443730325504", + "threadId": "activity:6848145443730325504", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6848145443730325504", + "urn": "urn:li:activity:6848145443730325504", + "numComments": 122, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6848145443730325504", + "reactionTypeCounts": [ + { + "count": 1721, + "reactionType": "LIKE" + }, + { + "count": 240, + "reactionType": "INTEREST" + }, + { + "count": 197, + "reactionType": "MAYBE" + }, + { + "count": 25, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6848145443730325504", + "numLikes": 2206, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6848145443730325504", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2206, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6847916053519982592,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6847916053519982592", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6847916053519982592)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6847916053519982592)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_comment-merkel-a-rat%C3%A9-la-transition-%C3%A9cologique-activity-6847916053519982592-XQXo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6847916053142503424", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6847916053519982592", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6847916053519982592,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6847916053519982592,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6847916053142503424", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "5s7h9pSzURMat1qHS1MOIw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6847916053519982592,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:6968928102392678752", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675906187897?e=1677240000&v=beta&t=Mq-GfX_RPnIeATyuHqHi2SjMSNj18jhzifXrerGNpyM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675906187897?e=1677240000&v=beta&t=Gg4weuisHb_VYTI8RJd8eX_8iTv7pNdoEIzb8RYBvE8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675906187897?e=1677240000&v=beta&t=sVQQhYETkT2rfnSFkZnS5jXH4aek6sqnIBXAmvMPB1M", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675906187897?e=1677240000&v=beta&t=QO9gCn5RZL7NKq3AcFaqYL8MXkZdzzL0g6EDik8s5uU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQG-p5baVnessg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6968928102392678752)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6968928102392678752)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Comment Merkel a rat\u00e9 la transition \u00e9cologique de l'Allemagne on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=YQACUT9x9Zk" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Le changement climatique menace l\u2019avenir de l\u2019humanit\u00e9 : Angela Merkel l\u2019a r\u00e9p\u00e9t\u00e9 tout au long de ses mandats. La dirigeante de l\u2019Allemagne a m\u00eame h\u00e9rit\u00e9 d\u2019un surnom : Klima-Kanzlerin, \u00ab la chanceli\u00e8re du climat \u00bb. Pourtant, le bilan de ses mesures en..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Comment Merkel a rat\u00e9 la transition \u00e9cologique de l'Allemagne" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6847916053142503424,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les temps changent, ou bien la chaine Youtube du Monde est g\u00e9r\u00e9e totalement ind\u00e9pendamment du journal papier ? Dans une vid\u00e9o r\u00e9cente, la \"transition \u00e9nerg\u00e9tique\" allemande est tout simplement qualifi\u00e9e d'\u00e9chec. En regardant les chiffres et les faits d'un peu pr\u00e8s (ce que tout bon journaliste devrait faire normalement !), il s'av\u00e8re que nos voisins ont d\u00e9pens\u00e9s des centaines de milliards pour ne pas faire mieux que les autres pays europ\u00e9ens. \n\nActualit\u00e9 oblige, ma chronique de Samedi dernier sur RTL disait la m\u00eame chose, mais sous une forme plut\u00f4t plus polie :) : il n'y a aucune raison de prendre exemple sur l'Allemagne en mati\u00e8re de lutte contre le changement climatique (https://lnkd.in/dheKMY8r ). En Europe, il vaut mieux aller regarder ce qui se passe en Grande Bretagne, en Su\u00e8de ou en Finlande, entre autres." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6847916053142503424,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6847916053519982592,urn:li:activity:6847916053519982592,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6847916053519982592,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6847916053519982592,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6847916053519982592", + "threadId": "activity:6847916053519982592", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6847916053519982592", + "urn": "urn:li:activity:6847916053519982592", + "numComments": 133, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6847916053519982592", + "reactionTypeCounts": [ + { + "count": 1394, + "reactionType": "LIKE" + }, + { + "count": 143, + "reactionType": "INTEREST" + }, + { + "count": 131, + "reactionType": "MAYBE" + }, + { + "count": 26, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6847916053519982592", + "numLikes": 1707, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6847916053519982592", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1707, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6847835341789913088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6847835341789913088", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6847835341789913088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6847835341789913088)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_univershifte-retransmission-en-direct-activity-6847835341789913088-b3pS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6847835341039136768", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6847835341789913088", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6847835341789913088,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6847835341789913088,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6847835341039136768", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "/kneL9l1v7LLNqqI7qBqdg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6847835341789913088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8909320192252741160", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675948739260?e=1677240000&v=beta&t=7VjZm1bzoEGWcvi7ur_BlM_5w5BCAcXCMFg-2iLCHOU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675948739260?e=1677240000&v=beta&t=NKvbPPbL5SMNW92JOpo1Jv7DVsW_Hr107iFx7IkHHTo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675948739261?e=1677240000&v=beta&t=43mrsXySHJIGfn_r1-vj0-kRHmqoSM0yEptBpktZyjg", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675948739261?e=1677240000&v=beta&t=vS4QF04zId4wg-mZC2NQl42dACrLbYxSD0ZIFr5gXSs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE4yDBxpCxRhw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8909320192252741160)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8909320192252741160)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: UNIVERSHIFTE - Retransmission en direct - Ouverture officielle on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=JV26IsoG16A" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "L\u2019UniverShift\u00e9 est un grand \u00e9v\u00e9nement \u00e0 port\u00e9e nationale organis\u00e9 par les b\u00e9n\u00e9voles de l\u2019association The Shifters en soutien du think tank The Shift Project, qui a pour but d\u2019\u00e9clairer et influencer le d\u00e9bat sur la transition \u00e9nerg\u00e9tique en Europe. Il..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "UNIVERSHIFTE - Retransmission en direct - Ouverture officielle" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6847835341039136768,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 864, + "length": 15, + "miniProfile": { + "firstName": "alexandre", + "lastName": "barr\u00e9", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAcwDYYB_v_wNhVhfmy2US04rKJKKYpqjBQ", + "occupation": "Ing\u00e9nieur", + "objectUrn": "urn:li:member:120589702", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAcwDYYB_v_wNhVhfmy2US04rKJKKYpqjBQ", + "publicIdentifier": "alexandre-barr\u00e9-85a47534", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516559795403?e=1681948800&v=beta&t=mJ0FpvkHHBCGWc-ZNOMOfKWzJ_vw2IrZELs8AUCaVjw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516559795403?e=1681948800&v=beta&t=NDoawNISkSIkmPa99Z5Cb454txAUBiRsJ9P1AtiAE5o", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516559795403?e=1681948800&v=beta&t=NSMJkT9I8xkHKcxj23OPTwviTaQN4fPgPp4PFJGB-XU", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516559795403?e=1681948800&v=beta&t=sGU_Dm0hel7tBfX1ZI9uzkQNpRCGn4Mrp9iIO9aoz78", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHQA2tTf8EaxA/profile-displayphoto-shrink_" + } + }, + "trackingId": "hXpIhMefQ8qg1fMVExaVRg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1437, + "length": 25, + "miniProfile": { + "firstName": "Zeynep N.", + "lastName": "Kahraman - Clause", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAS0eEEB5lRy3Qdj67MWQiElmdZORt1U9gM", + "occupation": "Directrice des Projets", + "objectUrn": "urn:li:member:78936129", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAS0eEEB5lRy3Qdj67MWQiElmdZORt1U9gM", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1653407473011?e=1681948800&v=beta&t=9iNdaJW_UDF_zS9ef0yrmSnTkOr0taskyra8gkbRHw0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1653407473011?e=1681948800&v=beta&t=24p-VQCXC0OMjTKesLIjRTbuXzHXbsGlk7Ka3Y5ijR0", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQG8ObwZOCJgcg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "zeynepkahraman", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516974582897?e=1681948800&v=beta&t=1aWjTE2ZgWgQN5_voR1_sx64dkWwTLae0eXRpN_9UBg", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516974582897?e=1681948800&v=beta&t=GKw99WUjAy14snXk5pn4TmaiC53aIjoN0UzIcZWq13I", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516974582897?e=1681948800&v=beta&t=KNdQzLUnQ1o_uhzf4NYu2L450ifB0k3IW58lB0kd1oo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516974582897?e=1681948800&v=beta&t=AzO9S0DJMDSxdBcarP1Wj-uw9O0VIoPtizGry4vrp3g", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQFPEKmP3Dj2KQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wx9mNUQuTeeBHuHLA9lA+Q==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1484, + "length": 16, + "miniProfile": { + "firstName": "Nicolas", + "lastName": "Raillard", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAMVKMcB1ivJ-QjFUXtDcYzU0ufcuIgm7Uw", + "occupation": "Project Manager chez The Shift Project", + "objectUrn": "urn:li:member:51718343", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAMVKMcB1ivJ-QjFUXtDcYzU0ufcuIgm7Uw", + "publicIdentifier": "nicolasraillard", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516559375920?e=1681948800&v=beta&t=_2tTLhB4IFIJMyA3QEKOWUC3AHxNtnvp8Ak-UGeea6M", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516559375920?e=1681948800&v=beta&t=M-t02Ms0o_qVSRs-19mlmUWkQVmkhKsRQdWb0iK7-DY", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516559375920?e=1681948800&v=beta&t=t-idayTjNlVL26HSvlmskc1RBiHANffY-dCADynYNzw", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516559375920?e=1681948800&v=beta&t=xSPhfvNNu6soLRLkgEmipM1FSsuy10iY8CSgOKXE5kk", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQH6A52ZpsVl0w/profile-displayphoto-shrink_" + } + }, + "trackingId": "pejkdVwGSH6xT7XZFLWzqg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1535, + "length": 6, + "miniProfile": { + "firstName": "Kentzel", + "lastName": "Marion", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABGt90IBK99ebMsDUwN2elUBQteSy5mX8ps", + "occupation": "Ing\u00e9nieur Agronome, biochimie", + "objectUrn": "urn:li:member:296613698", + "entityUrn": "urn:li:fs_miniProfile:ACoAABGt90IBK99ebMsDUwN2elUBQteSy5mX8ps", + "publicIdentifier": "kentzel-marion-54240383", + "trackingId": "boR/At5WS0+bKzduSg7/wQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1542, + "length": 7, + "miniProfile": { + "firstName": "Kentzel", + "lastName": "Marion", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABGt90IBK99ebMsDUwN2elUBQteSy5mX8ps", + "occupation": "Ing\u00e9nieur Agronome, biochimie", + "objectUrn": "urn:li:member:296613698", + "entityUrn": "urn:li:fs_miniProfile:ACoAABGt90IBK99ebMsDUwN2elUBQteSy5mX8ps", + "publicIdentifier": "kentzel-marion-54240383", + "trackingId": "boR/At5WS0+bKzduSg7/wQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1570, + "length": 10, + "miniProfile": { + "firstName": "Eric", + "lastName": "Berg\u00e9", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAK_-1MBfr8ogWSpYxIG6E4SYpQxLraMMLY", + "occupation": "CEO | Pr\u00e9sident | Board member | Industrie | Mat\u00e9riaux | Chimie | D\u00e9carbonation | Climat", + "objectUrn": "urn:li:member:46136147", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAK_-1MBfr8ogWSpYxIG6E4SYpQxLraMMLY", + "publicIdentifier": "eric-berg\u00e9-1ab54b13", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516504550668?e=1681948800&v=beta&t=DPeFITMEtnZD8ezKcMNeGq_j2ocgcHimp40nWMKrj6E", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516504550668?e=1681948800&v=beta&t=3wcYXcp0iqmkJ0MRDuLMsqPhrp-HN_qKXLZuNbaJUa4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516504550668?e=1681948800&v=beta&t=NwvtT0gcG5vD5XabKNeF7PoGj_opyvAXUBeTFjruhJE", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516504550668?e=1681948800&v=beta&t=nIyiP-1VafF7GZ5iBQB6CRqidnwuYXCcLJgSJYvxx34", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQFqcGGkXRR_cA/profile-displayphoto-shrink_" + } + }, + "trackingId": "ClTHlFFjTxaEVmjOSPUU7g==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1590, + "length": 15, + "miniProfile": { + "firstName": "Laurie", + "lastName": "Marrauld", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAPNXQUBIN8HN7ZKnaeYBDTbAvKKWjJcfOw", + "occupation": "Ma\u00eetresse de conf\u00e9rences chez Ecole des hautes \u00e9tudes en sant\u00e9 publique (EHESP)", + "objectUrn": "urn:li:member:63790341", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAPNXQUBIN8HN7ZKnaeYBDTbAvKKWjJcfOw", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1569619960772?e=1681948800&v=beta&t=lVCx06WF3YDHYAXwQrIHKvYFio8oI0Wp21zOQYW8iGs", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1569619960772?e=1681948800&v=beta&t=M5T4VmviQnYZR71CBM2Y6CKTzpr9g2J8tUt3SWKMLG0", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQEN8vSjF2ctOw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "laurie-marrauld-85944319", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1634400827436?e=1681948800&v=beta&t=uQRyQH6FDfMOLbLWFp124GqkJpnegNGTCAqry5F_ET4", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1634400827436?e=1681948800&v=beta&t=w97fL-Gg8S2qSaH0F96RA0GS8HAtSKlGH_UxQ8mK8As", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1634400827436?e=1681948800&v=beta&t=paWFuc78QGZ7n-7L9uMb4HfWB-gr2_xb5M0MIOn3lpQ", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1634400827436?e=1681948800&v=beta&t=TfHIBlyzhsIsk9fhHo_HkipShAJSnyorf_WL89XirP0", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHEJ5-Lx2hZ4A/profile-displayphoto-shrink_" + } + }, + "trackingId": "O55AGER5SKSKpGUyNJDlGw==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1616, + "length": 15, + "miniProfile": { + "firstName": "Yannick", + "lastName": "Saleman", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAMxPVABcZouTfZMn8aWj6FMU6Xpbcv851c", + "occupation": "Industrial Policy for Low Carbon Transformation I The Shift Project", + "objectUrn": "urn:li:member:53558608", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAMxPVABcZouTfZMn8aWj6FMU6Xpbcv851c", + "publicIdentifier": "yannicksaleman", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1598788777018?e=1681948800&v=beta&t=Gom1akcb_ck_n20E-VblKcUdUA-OQMCUu3ildJuhsqI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1598788777018?e=1681948800&v=beta&t=qAVRaFPT-x4Wrh9Qgqs_zBZrR3WyxgLjU-K07ay8Zjc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1598788777018?e=1681948800&v=beta&t=q_WUAL_pX1dQLzl15YpSnu9kKhu0kzVAB-XMZdcsM8k", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1598788777018?e=1681948800&v=beta&t=7zOBdTTSde-9c_kwPvZSiGdyKujDLmExtjYQID2MAPU", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQH23CfoFAYmpQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "LoWl1LDARz+SW7F3wloFpg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1802, + "length": 21, + "miniProfile": { + "firstName": "Anne-Charlotte", + "lastName": "Dagorn", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAVUK-YBHsZJnlUTB145CsDN0fKFmYADPPY", + "occupation": "Marketing & Communications Director and Excom member at Assystem", + "objectUrn": "urn:li:member:89402342", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAVUK-YBHsZJnlUTB145CsDN0fKFmYADPPY", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1664287318578?e=1681948800&v=beta&t=ZGA90YhS5nPqHebtg4-MffpgGRmN7hx2gCm-7HM_jOQ", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1664287318578?e=1681948800&v=beta&t=qH7TwiEiPRTqEmajVMpo0gWjhiAda776kfw8mZPRLXk", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQGm0zSscySVPA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "anne-charlotte-dagorn-572b3525", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1654258448496?e=1681948800&v=beta&t=yeYLLqUi7uyYvKX866eHzZOzrer6DVDf-J0vgqFWO3Q", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1654258448496?e=1681948800&v=beta&t=royjfhKRpbMVb4u1IiR4mlQ2ztDwpeRwG1HWF-HO0Y8", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1654258448496?e=1681948800&v=beta&t=Q5ax4RgXXl75J0P7QRPsWdq14C5vv4k7gMyfWvvFuV4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1654258448496?e=1681948800&v=beta&t=clu7HpjQ-iw8RYy1umTF9PC6Qq-8T8fJ-GxVuFof5vY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQF4uKZcrL1d8g/profile-displayphoto-shrink_" + } + }, + "trackingId": "EhtO+DtMQfS1jJF435xxCQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 1985, + "length": 14, + "miniProfile": { + "firstName": "Patrick", + "lastName": "Martin", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACXEdJcB6C5x8cH0loW9Gd5x_sua1mXMQ74", + "occupation": "Pr\u00e9sident d\u00e9l\u00e9gu\u00e9 du MEDEF et Pr\u00e9sident du Groupe Martin Belaysoud Expansion", + "objectUrn": "urn:li:member:633631895", + "entityUrn": "urn:li:fs_miniProfile:ACoAACXEdJcB6C5x8cH0loW9Gd5x_sua1mXMQ74", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1673596829515?e=1681948800&v=beta&t=-dmw1ejJc4Anemf-UkZ9Z1FRJpvf2KwcWLWwBUd8PDc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1673596829515?e=1681948800&v=beta&t=pEoyKkCbFWZHkRemy10A9aheB4rQo9Zy0JrujbHVcJ4", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQF0gi47T-p5PQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "patrick-martin-medef", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1580224344945?e=1681948800&v=beta&t=av1Pn5K2QT_C6cdgTfjZzMdfioTx8QGH5xmHBnFP8-E", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1580224344945?e=1681948800&v=beta&t=wk33zY5SWPVr1RoQCPpG2DZexPLLJWkTPKBzugUPd1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1580224344945?e=1681948800&v=beta&t=vNal6JOMOIL0zIaCnfCUT-WZEbyThh8uDMSy5V8Jfc4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1580224344945?e=1681948800&v=beta&t=OOkemk5_8nvfSV-AxbMPIPnoXlYreENZmR-r6BgilQA", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHEuCuKNu7TWA/profile-displayphoto-shrink_" + } + }, + "trackingId": "aaCi+vTaTX2Hz88SFNtnSQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2029, + "length": 16, + "miniProfile": { + "firstName": "Philippe", + "lastName": "Portier", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAC3xSikB28ESh80eJltZZfsh_FD8yUc77ZQ", + "occupation": "Secr\u00e9taire national chez CFDT", + "objectUrn": "urn:li:member:770787881", + "entityUrn": "urn:li:fs_miniProfile:ACoAAC3xSikB28ESh80eJltZZfsh_FD8yUc77ZQ", + "publicIdentifier": "philippe-portier-975175196", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1572883572708?e=1681948800&v=beta&t=-6iQlXxmwrdEvCjSCjnxS2cnlSJ5CRiKSUv8WPMs_9Q", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1572883572708?e=1681948800&v=beta&t=0iyBn-WXP9KeRdC8DCePF8TNXRheW7ZyzOPQ4iY3RDM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1572883572708?e=1681948800&v=beta&t=TFHCemLugqreceEaUFtDnDZtoFyKwTv9AG4DA67jfho", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1572883572708?e=1681948800&v=beta&t=GENYnYtWeSXUiOcxE2l2RXQPBrBGDIemGUHx4nmJRAc", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQEGgMGSX6FrEA/profile-displayphoto-shrink_" + } + }, + "trackingId": "PrFTZq+bT02HoPCMwiVkOQ==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2116, + "length": 14, + "miniProfile": { + "firstName": "G\u00e9rard", + "lastName": "Mardin\u00e9", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAP-9iMBLo7mmfPzxWwPtNvPM4ixJN7SrAk", + "occupation": "Secr\u00e9taire G\u00e9n\u00e9ral de la CFE-CGC", + "objectUrn": "urn:li:member:67040803", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAP-9iMBLo7mmfPzxWwPtNvPM4ixJN7SrAk", + "publicIdentifier": "g\u00e9rard-mardin\u00e9-9175501a", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1572624960147?e=1681948800&v=beta&t=PGdq8X3EnxUbcMpronGoBaj_5rzv7Z1Qk2oP4MkH3yQ", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1572624960147?e=1681948800&v=beta&t=6dB0wRoNfgyu1sjZbEGpa5qRtvFY1EknOjxbr_lO0yM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1572624960147?e=1681948800&v=beta&t=_nl2N40Mp4zWYWFGPBuV55wEQKinAXrHekhB_wjt6_s", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1572624960147?e=1681948800&v=beta&t=fzTyXE6Ao7LsWYFA0jL4aavasYci_3X8b4_P1n4ymSg", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEJPv5PRXJwdA/profile-displayphoto-shrink_" + } + }, + "trackingId": "mfhVei2/TAmmjg90SuWd5g==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 2169, + "length": 12, + "miniProfile": { + "firstName": "Emeric", + "lastName": "OUDIN", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAQInPYBzlcFI20HQNVPitvecd6xQz__eKU", + "occupation": "Pr\u00e9sident chez Axe-environnement", + "objectUrn": "urn:li:member:67673334", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAQInPYBzlcFI20HQNVPitvecd6xQz__eKU", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1575924020345?e=1681948800&v=beta&t=kt2H8Gp7npNIkUXr-_75_gU91im3p4sY0LKJnlh-ZMk", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1575924020345?e=1681948800&v=beta&t=0REBrz3pep9VD9OLtLyMqJ6-KRWP7uR53DoELetwqIs", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQF-wD8dYD19aA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emeric-oudin-9867b61a", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1662116437961?e=1681948800&v=beta&t=3GPjgqCYDUBpmHdm8J89yNhpfdA1UGap_0AQR1N8M3E", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1662116437961?e=1681948800&v=beta&t=gKWshh3dtW_rMHxfwsU7o_BaHpmi1H-fshAzpmJbb34", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1662116437961?e=1681948800&v=beta&t=nEkrGCiM0d9gB35H7LxaQDzzaiNdFyG9Rhpvw4kldgk", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1662116437961?e=1681948800&v=beta&t=FDdCrnPE006uI8wYOn_6bNtOMz3nT7seAHBcFjJVdHc", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQFtF6JDRF_bgA/profile-displayphoto-shrink_" + } + }, + "trackingId": "enThTqT7SIumSgz5pBYdVA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "1000 participant(e)s, des dizaines d'intervenant(e)s, une pr\u00e9sentation pour la premi\u00e8re fois de l'int\u00e9gralit\u00e9 des travaux du plan de transformation de l'\u00e9conomie fran\u00e7aise (https://lnkd.in/dNARPrU ), des fresques de toute nature, de la biodiversit\u00e9 au football, et la pr\u00e9sentation d'initiatives de terrain allant de la r\u00e9utilisation des jouets \u00e0 la plantation d'arbres chez les agriculteurs : pour sa premi\u00e8re \u00e9dition, je crois que l'on peut dire que l'universit\u00e9 d'\u00e9t\u00e9 des shifters, ou univershift\u00e9 a \u00e9t\u00e9 \u00e0 la hauteur de nos attentes. Un grand merci aux shifters qui ont tout organis\u00e9 sur leurs nuits et leurs week-ends, ce qui a peut-\u00eatre rappel\u00e9 pour certain(e)s l'\u00e9poque de l'organisation des galas \u00e9tudiants !\n\nCette vid\u00e9o reprend l'ensemble des interventions en pl\u00e9ni\u00e8re de la matin\u00e9e de Samedi 26, \u00e0 savoir :\n\n- une ouverture par le pr\u00e9sident des shifters, alexandre barr\u00e9, manifestement \u00e9mu, et si le ton d\u00e9clamatoire n'est pas celui d'un vieux routier des plateaux t\u00e9l\u00e9, le fond disait tout avec beaucoup de justesse sur cette association qui est devenue la deuxi\u00e8me jambe de la \"galaxie Shift\", avec 12000 inscrits, et qui reste pourtant enti\u00e8rement g\u00e9r\u00e9e - de mani\u00e8re tr\u00e8s professionnelle - par des b\u00e9n\u00e9voles (que je remercie tr\u00e8s sinc\u00e8rement pour le travail accompli)\n\n- une br\u00e8ve introduction compl\u00e9mentaire de ma pomme\n\n- 6 pr\u00e9sentations br\u00e8ves mais intenses pour pr\u00e9senter des travaux sectoriels du PTEF (vue d'ensemble - Zeynep N. Kahraman-Clause, \u00e9nergie puis fret - Nicolas Raillard, agriculture et agroalimentaire - Marion Kentzel, Industrie lourde - Eric Berg\u00e9, sant\u00e9 - Laurie Marrauld, emploi - Yannick Saleman)\n\n- la pr\u00e9sentation des r\u00e9sultats d'une consultation tr\u00e8s large sur ce qui plait et ce qui bloque quand on parle \u00e0 des particuliers de transition et de d\u00e9carbonation par Anne-Charlotte Dagorn, \n\n- enfin une table ronde centr\u00e9e sur \"le d\u00e9fi de l'emploi dans la transition\", avec des repr\u00e9sentants d'organisations syndicales de salari\u00e9s et d'entreprises (Patrick Martin, pr\u00e9sident d\u00e9l\u00e9gu\u00e9 du MEDEF, Philippe Portier, secr\u00e9taire national CFDT, B\u00e9atrice Clicq, secr\u00e9taire conf\u00e9d\u00e9rale FO, G\u00e9rard Mardin\u00e9, secr\u00e9taire g\u00e9n\u00e9ral de la CFE-CGC, et Emeric OUDIN, pr\u00e9sident du Centre des Jeunes Dirigeants.\n\nRefaire le monde, c'est compliqu\u00e9 et ca prend du temps. J'esp\u00e8re que cette Univershift\u00e9 a un peu aid\u00e9 \u00e0 avancer dans cette direction. \n\nNB : si une bonne \u00e2me se d\u00e9voue pour donner le minutage de chaque partie dans un commentaire sous la vid\u00e9o, ca sera probablement utile !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6847835341039136768,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6847835341789913088,urn:li:activity:6847835341789913088,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6847835341789913088,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6847835341789913088,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6847835341789913088", + "threadId": "activity:6847835341789913088", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6847835341789913088", + "urn": "urn:li:activity:6847835341789913088", + "numComments": 39, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6847835341789913088", + "reactionTypeCounts": [ + { + "count": 497, + "reactionType": "LIKE" + }, + { + "count": 83, + "reactionType": "PRAISE" + }, + { + "count": 36, + "reactionType": "EMPATHY" + }, + { + "count": 14, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6847835341789913088", + "numLikes": 640, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6847835341789913088", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 640, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6847408935591256064,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6847408935591256064", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6847408935591256064)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6847408935591256064)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_banquise-arctique-minimum-dextension-le-activity-6847408935591256064-D3E8?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6847408935134081024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6847408935591256064", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6847408935591256064,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6847408935591256064,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6847408935134081024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "2cw6UxnF024VAxnlvr3ddA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6847408935591256064,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6992679702945312019", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 750, + "fileIdentifyingUrlPathSegment": "800/0/1675764981888?e=1677240000&v=beta&t=45UgVpS-x-LRF_544GrKCN9hlMCwUrgUeAI6Kqr736c", + "expiresAt": 1677240000000, + "height": 545 + }, + { + "width": 750, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675764981888?e=1677240000&v=beta&t=vGiUex7TKXeap2s0UX5B46ayL7y9BGKdYUw4rhy5fbs", + "expiresAt": 1677240000000, + "height": 545 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675764981888?e=1677240000&v=beta&t=JA_RH_15WvnQiQKd7DWwKu7t8rTaOuxv9gpP4msp8hg", + "expiresAt": 1677240000000, + "height": 116 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675764981888?e=1677240000&v=beta&t=sFLDgo3NS5uagbE1kwaKAsiaYc0HFt8LRUdPMBUfaqo", + "expiresAt": 1677240000000, + "height": 349 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEIY4U_95ryjA/articleshare-shrink_" + }, + "displayAspectRatio": 0.7266666666666667 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Figure 1 - Quantit\u00e9 de glace pluriannuelle la premi\u00e8re semaine d\u2019ao\u00fbt (30 juillet au 5 ao\u00fbt), depuis le d\u00e9but des mesures en 1979. \u00a9 Robbie Mallett." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6992679702945312019)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6992679702945312019)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "meteofrance.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Banquise arctique : minimum d'extension le plus haut depuis 2014 by meteofrance.com", + "actionTarget": "https://meteofrance.com/actualites-et-dossiers/actualites/banquise-arctique-minimum-dextension-le-plus-haut-depuis-2014" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Banquise arctique\u00a0: minimum d'extension le plus haut depuis 2014" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6847408935134081024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le minimum d'extension de la banquise arctique, c'est maintenant. Ce minimum n'est pas un record, mais par contre c'est le cas pour l'\u00e9paisseur de cette derni\u00e8re : depuis le d\u00e9but des ann\u00e9es 1990, elle a \u00e9t\u00e9 divis\u00e9e par 2 en moyenne, passant de 2 m\u00e8tres \u00e0 1 m\u00e8tre en ordre de grandeur.\n\nPar del\u00e0 les fluctuations annuelles, la tendance est claire : surface et \u00e9paisseur vont continuer \u00e0 diminuer. Cette \u00e9volution pourrait laisser indiff\u00e9rent l'habitant(e) de Casablanca, Strasbourg ou Oulan-Bator. En fait, m\u00eame eux vont \u00eatre concern\u00e9s par l'\u00e9volution en cours. Pourquoi ?\n\nMoins de banquise, c'est une surface r\u00e9fl\u00e9chissante \u00e0 la lumi\u00e8re solaire (la glace) qui disparait, remplac\u00e9e par une surface absorbante (l'eau oc\u00e9anique). Du coup la temp\u00e9rature arctique augmente rapidement, du coup le Groenland fond plus vite, et du coup la mer monte partout dans le monde.\n\nAvec un Groenland fondu m\u00eame partiellement, il faut rajouter 3 m\u00e8tres d'eau dans l'oc\u00e9an mondial. Cela va supprimer un certain nombre de ports, et cela impactera la vie des habitant(e)s m\u00eame situ\u00e9s loin dans les terres.\n\nAvec le changement climatique, tout est interconnect\u00e9. C'est bien pour cela que l'inventaire pr\u00e9cis des cons\u00e9quences d\u00e9sagr\u00e9ables \u00e0 venir sera \u00e0 jamais impossible \u00e0 faire de mani\u00e8re exhaustive, ce qui rend \u00e9videmment plus ardue la t\u00e2che de se pr\u00e9munir au mieux de la d\u00e9rive pour partie inexorable que nous avons mise en route." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6847408935134081024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6847408935591256064,urn:li:activity:6847408935591256064,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 1, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6847408935591256064,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6847408935591256064,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6847408935591256064", + "threadId": "activity:6847408935591256064", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6847408935591256064", + "urn": "urn:li:activity:6847408935591256064", + "numComments": 1, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6847408935591256064", + "reactionTypeCounts": [ + { + "count": 50, + "reactionType": "LIKE" + }, + { + "count": 10, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6847408935591256064", + "numLikes": 70, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6847408935591256064", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 70, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6847408711737057280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6847408711737057280", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6847408711737057280)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6847408711737057280)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_banquise-arctique-minimum-dextension-le-activity-6847408711737057280-U7Dj?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6847408711309242368", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6847408711737057280", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6847408711737057280,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6847408711737057280,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6847408711309242368", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "KMhfdm/U2CINLHmdUpyhyw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6847408711737057280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6992679702945312019", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 750, + "fileIdentifyingUrlPathSegment": "800/0/1675764981888?e=1677240000&v=beta&t=45UgVpS-x-LRF_544GrKCN9hlMCwUrgUeAI6Kqr736c", + "expiresAt": 1677240000000, + "height": 545 + }, + { + "width": 750, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675764981888?e=1677240000&v=beta&t=vGiUex7TKXeap2s0UX5B46ayL7y9BGKdYUw4rhy5fbs", + "expiresAt": 1677240000000, + "height": 545 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675764981888?e=1677240000&v=beta&t=JA_RH_15WvnQiQKd7DWwKu7t8rTaOuxv9gpP4msp8hg", + "expiresAt": 1677240000000, + "height": 116 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675764981888?e=1677240000&v=beta&t=sFLDgo3NS5uagbE1kwaKAsiaYc0HFt8LRUdPMBUfaqo", + "expiresAt": 1677240000000, + "height": 349 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEIY4U_95ryjA/articleshare-shrink_" + }, + "displayAspectRatio": 0.7266666666666667 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Figure 1 - Quantit\u00e9 de glace pluriannuelle la premi\u00e8re semaine d\u2019ao\u00fbt (30 juillet au 5 ao\u00fbt), depuis le d\u00e9but des mesures en 1979. \u00a9 Robbie Mallett." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6992679702945312019)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6992679702945312019)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "meteofrance.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Banquise arctique : minimum d'extension le plus haut depuis 2014 by meteofrance.com", + "actionTarget": "https://meteofrance.com/actualites-et-dossiers/actualites/banquise-arctique-minimum-dextension-le-plus-haut-depuis-2014" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Banquise arctique\u00a0: minimum d'extension le plus haut depuis 2014" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6847408711309242368,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le minimum d'extension de la banquise arctique, c'est maintenant. Ce minimum n'est pas un record, mais par contre c'est le cas pour l'\u00e9paisseur de cette derni\u00e8re : depuis le d\u00e9but des ann\u00e9es 1990, elle a \u00e9t\u00e9 divis\u00e9e par 2 en moyenne, passant de 2 m\u00e8tres \u00e0 1 m\u00e8tre en ordre de grandeur. \n\nPar del\u00e0 les fluctuations annuelles, la tendance est claire : surface et \u00e9paisseur vont continuer \u00e0 diminuer. Cette \u00e9volution pourrait laisser indiff\u00e9rent l'habitant(e) de Casablanca, Strasbourg ou Oulan-Bator. En fait, m\u00eame eux vont \u00eatre concern\u00e9s par l'\u00e9volution en cours. Pourquoi ?\n\nMoins de banquise, c'est une surface r\u00e9fl\u00e9chissante \u00e0 la lumi\u00e8re solaire (la glace) qui disparait, remplac\u00e9e par une surface absorbante (l'eau oc\u00e9anique). Du coup la temp\u00e9rature arctique augmente rapidement, du coup le Groenland fond plus vite, et du coup la mer monte partout dans le monde.\n\nAvec un Groenland fondu m\u00eame partiellement, il faut rajouter 3 m\u00e8tres d'eau dans l'oc\u00e9an mondial. Cela va supprimer un certain nombre de ports, et cela impactera la vie des habitant(e)s m\u00eame situ\u00e9s loin dans les terres.\n\nAvec le changement climatique, tout est interconnect\u00e9. C'est bien pour cela que l'inventaire pr\u00e9cis des cons\u00e9quences d\u00e9sagr\u00e9ables \u00e0 venir sera \u00e0 jamais impossible \u00e0 faire de mani\u00e8re exhaustive, ce qui rend \u00e9videmment plus ardue la t\u00e2che de se pr\u00e9munir au mieux de la d\u00e9rive pour partie inexorable que nous avons mise en route." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6847408711309242368,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6847408711737057280,urn:li:activity:6847408711737057280,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 10, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6847408711737057280,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6847408711737057280,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6847408711737057280", + "threadId": "activity:6847408711737057280", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6847408711737057280", + "urn": "urn:li:activity:6847408711737057280", + "numComments": 29, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6847408711737057280", + "reactionTypeCounts": [ + { + "count": 356, + "reactionType": "LIKE" + }, + { + "count": 92, + "reactionType": "INTEREST" + }, + { + "count": 48, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6847408711737057280", + "numLikes": 504, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6847408711737057280", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 504, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6847070029188489216,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6847070029188489216", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6847070029188489216)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6847070029188489216)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_chinas-molten-salt-nuclear-reactors-activity-6847070029188489216-kemN?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6847070028177670144", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6847070029188489216", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6847070029188489216,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6847070029188489216,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6847070028177670144", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "1mANDesk8fbRIf8eu7tzFw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6847070029188489216,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7659313160508298863", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676135985554?e=1677240000&v=beta&t=owpxu-OUQjBHAtyoE_OHAwIBmSRq7r-50UTIOrpmrCM", + "expiresAt": 1677240000000, + "height": 605 + }, + { + "width": 1056, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676135985554?e=1677240000&v=beta&t=AiDEkIxraDCCYIbXSCJcW2ycjA9Q1oqJIljILC-wa1E", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676135985554?e=1677240000&v=beta&t=mWbWiCLfocvY1MQ4BF2Hpohb3-MZvXC2QBY0FqfAPv8", + "expiresAt": 1677240000000, + "height": 121 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676135985554?e=1677240000&v=beta&t=aUXOkXIDLSYQXOq2D_U7mBD09LA113ZBcFoG5a5Jpi0", + "expiresAt": 1677240000000, + "height": 363 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGMlZ0dm9DCjg/articleshare-shrink_" + }, + "displayAspectRatio": 0.75625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7659313160508298863)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7659313160508298863)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "nextbigfuture.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: China\u2019s Molten Salt Nuclear Reactors by nextbigfuture.com", + "actionTarget": "https://www.nextbigfuture.com/2021/08/chinas-molten-salt-nuclear-reactors.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "China\u2019s Molten Salt Nuclear Reactors" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6847070028177670144,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le nucl\u00e9aire de 4\u00e8 g\u00e9n\u00e9ration n'est pas consid\u00e9r\u00e9 comme un sujet majeur par notre gouvernement, mais ce n'est pas le cas partout dans le monde. A l'heure o\u00f9 notre pays d\u00e9c\u00e9l\u00e8re sur la question, 3 pays sont au contraire en phase d'acc\u00e9l\u00e9ration. \n\nLa Russie op\u00e8re de fa\u00e7on commerciale un surg\u00e9n\u00e9rateur uranium/plutonium (m\u00eame concept que Superph\u00e9nix, sauf que les russes n'ont pas arr\u00eat\u00e9 pour des raisons politiques : https://lnkd.in/dhMjBv-J ) et construit des prototypes d'autres dessins.\n\nLes USA (et le Canada) commencent \u00e0 avoir des programmes de recherche cons\u00e9quents dans ce domaine, souvent soutenus par des int\u00e9r\u00eats priv\u00e9s, comme par exemple Bill Gates (https://lnkd.in/dRxqyqup )\n\nEt surtout la Chine construit et teste des prototypes d'\u00e0 peu pr\u00e8s tout et n'importe quoi, pour voir ensuite ce qui, \u00e0 l'exp\u00e9rience, s'av\u00e8rera le plus int\u00e9ressant. \n\nDans cette veine, elle met en service un prototype (de 2 MW de puissance thermique, donc un petit mod\u00e8le) de r\u00e9acteur \u00e0 sels fondus fonctionnant sur le cycle thorium-uranium. Ce mod\u00e8le ne permettra pas d'\u00e9purer en continu les produits de fission du sel (c'est le \"point dur\" qui reste \u00e0 traiter dans les r\u00e9acteurs \u00e0 sels fondus), mais par contre il coche beaucoup de cases int\u00e9ressantes :\n- pas d'eau pour le refroidissement\n- fission des actinides mineurs (les \u00e9l\u00e9ments de num\u00e9ro atomique au-del\u00e0 de 88 qui apparaissent dans le r\u00e9acteur par capture de neutrons et font partie des d\u00e9chets dans les r\u00e9acteurs actuels),\n- polyvalence d'usage (\u00e9lectricit\u00e9, hydrog\u00e8ne, chaleur pour le r\u00e9seau, etc),\n- utilisation d'une ressource 400 fois plus abondante que l'uranium 235.\n\nAvec ses h\u00e9sitations li\u00e9es \u00e0 son client\u00e9lisme \u00e9lectoral (alors que, au fond, l'essentiel de la population si fiche un peu du sujet), l'avance que notre pays avait il y a 20 ans dans le nucl\u00e9aire a partiellement fondu comme neige au soleil. Plut\u00f4t que de capitaliser pour 10 ou 20 milliards sur un savoir-faire qui \u00e9tait alors de premier plan, nous avons pr\u00e9f\u00e9r\u00e9 d\u00e9penser 150 milliards pour importer des panneaux et des \u00e9oliennes pour essentiellement ne pas d\u00e9carboner une \u00e9lectricit\u00e9 qui l'\u00e9tait d\u00e9j\u00e0.\n\nIl n'est probablement pas trop tard pour revenir dans la course et esp\u00e9rer faire partie des fournisseurs de ces r\u00e9acteurs du futurs, modulaires, \u00e0 la s\u00fbret\u00e9 augment\u00e9e, produisant moins de d\u00e9chets (sachant que les r\u00e9acteurs actuels en produisent tr\u00e8s peu en volume, d\u00e9j\u00e0), exportables, et surtout s'affranchissant du probl\u00e8me des ressources (il y a trop peu d'uranium 235 pour que le nucl\u00e9aire actuel soit \"durable\" s'il s'agit de remplacer pendant quelques si\u00e8cles une large partie des centrales \u00e0 charbon dans le monde). \n\nEncore faudrait-il que, dans le discours politique, se forme un consensus sur le fait que le nucl\u00e9aire est un \u00e9l\u00e9ment de solution, et non un gros probl\u00e8me. Et pour cela, il n'y a que la p\u00e9dagogie !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6847070028177670144,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6847070029188489216,urn:li:activity:6847070029188489216,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 125, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6847070029188489216,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6847070029188489216,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6847070029188489216", + "threadId": "activity:6847070029188489216", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6847070029188489216", + "urn": "urn:li:activity:6847070029188489216", + "numComments": 290, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6847070029188489216", + "reactionTypeCounts": [ + { + "count": 3296, + "reactionType": "LIKE" + }, + { + "count": 350, + "reactionType": "INTEREST" + }, + { + "count": 280, + "reactionType": "PRAISE" + }, + { + "count": 178, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "APPRECIATION" + }, + { + "count": 33, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6847070029188489216", + "numLikes": 4178, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6847070029188489216", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4178, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6847063354167578625,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6847063354167578625", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6847063354167578625)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6847063354167578625)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-chronique-sur-rtl-de-samedi-dernier-portait-activity-6847063354167578625-txJ1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6847063352796057600", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6847063354167578625", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6847063354167578625,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6847063354167578625,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6847063352796057600", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "Sm01B+LtGIxFa4UTAcPXsg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6847063354167578625,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHxXKvHrNa3PQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHxXKvHrNa3PQ", + "artifacts": [ + { + "width": 990, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1632467114543?e=1679529600&v=beta&t=RvDkCkM8qWzrSJhsLC1nTpxSfrZtpT1LjciaEPvFqAs", + "expiresAt": 1679529600000, + "height": 363 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1632467114537?e=1679529600&v=beta&t=kJ7BBL_RJdbfx2gG0FSuWUN1W3qfj3K9VnwdpyyZ8Pc", + "expiresAt": 1679529600000, + "height": 7 + }, + { + "width": 990, + "fileIdentifyingUrlPathSegment": "1280/0/1632467114537?e=1679529600&v=beta&t=mb1oGm8TQ5SKbz31WON_vXzEzQJ1Sd6o_Tn6uk-WjT4", + "expiresAt": 1679529600000, + "height": 363 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1632467114537?e=1679529600&v=beta&t=ejQcUwzrAqs6FElWBz1B7lKXKWLKrhoS6G_pdAdzB4A", + "expiresAt": 1679529600000, + "height": 176 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1632467114537?e=1679529600&v=beta&t=kyq2fL_XxeqiKSjscWfxuJqpoiG7YGnHzDFJSvhlL78", + "expiresAt": 1679529600000, + "height": 58 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1632467114537?e=1679529600&v=beta&t=0atTu5zW_Z8CW6ZYdTWqL6apuCmRpzhnzOQXL6xxKEo", + "expiresAt": 1679529600000, + "height": 293 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHxXKvHrNa3PQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.36666666666666664 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6847063352796057600,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La chronique sur RTL de Samedi dernier portait sur la place des enjeux environnementaux - et en particulier \u00e9nergie et climat - dans l'enseignement. J'y faisais remarquer que les programmes avaient au fond assez peu chang\u00e9 depuis que je suis moi-m\u00eame pass\u00e9 sur les bancs de l'\u00e9cole, il y a fort fort longtemps : https://lnkd.in/db6hskQm\n\nLe danger \u00e0 ne pas inclure des sujets majeurs dans les programmes, c'est que la curiosit\u00e9 \u00e9tant une tendance naturelle des bip\u00e8des que nous sommes, nous irons alors chercher l'information ailleurs, en puisant dans des sources dont nous ne connaissons pas la fiabilit\u00e9 (\u00e0 commencer par les media, ce que j'ai oubli\u00e9 de dire \u00e0 l'antenne :) ).\n\nThe Shift Project a commenc\u00e9 \u00e0 travailler depuis quelques ann\u00e9es sur la question. Pour celles et ceux qui veulent en savoir plus sur l'\u00e9tat des lieux et ce qu'il est possible de faire, c'est par l\u00e0 : https://lnkd.in/g2wSxGM\n\nLa question se pose aussi, bien s\u00fbr, pour les adultes dans le cadre de la formation continue, sujet non \u00e9voqu\u00e9 dans la chronique (de 3 minutes !). Mais sur ce cr\u00e9neau l\u00e0, o\u00f9 l'initiative priv\u00e9e est la plus facile, on a vu appara\u00eetre ces derni\u00e8res ann\u00e9es des offres qui correspondent \u00e0 ce besoin de comprendre le probl\u00e8me : la Fresque du Climat (https://lnkd.in/gRJyzZ8 ) ou MyCO2 (https://www.myco2.fr/ ) en sont des exemples." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6847063352796057600,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6847063354167578625,urn:li:activity:6847063354167578625,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 14, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6847063354167578625,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6847063354167578625,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6847063354167578625", + "threadId": "activity:6847063354167578625", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6847063354167578625", + "urn": "urn:li:activity:6847063354167578625", + "numComments": 14, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6847063354167578625", + "reactionTypeCounts": [ + { + "count": 164, + "reactionType": "LIKE" + }, + { + "count": 8, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6847063354167578625", + "numLikes": 185, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6847063354167578625", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 185, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6846708341234774016,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6846708341234774016", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6846708341234774016)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6846708341234774016)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_exclusif-les-indices-climat-une-machine-activity-6846708341234774016-_PC0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6846708340710506498", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6846708341234774016", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6846708341234774016,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6846708341234774016,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6846708340710506498", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "6hqor4yZ46rKr1XP31a7eg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6846708341234774016,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7312785630797223963", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676017670217?e=1677240000&v=beta&t=w6_k6D2WHtfh0O7bw6tUvH_4SYhYwNSXVnE02ZOmZq8", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676017670217?e=1677240000&v=beta&t=QmWqIlS-96CEyoGIpvXqE5O4qCmOw5IbsMpDUuTxWA8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676017670217?e=1677240000&v=beta&t=GixTTu61L6DC2PczhQHPx9Fr10RmXPpS4imnIlHLV04", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676017670217?e=1677240000&v=beta&t=VAKpyFLNz9ZVBZjML3xuE3rDhhK85s33Wd1MoIsHscY", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGe2pYxDRT8sw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7312785630797223963)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7312785630797223963)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EXCLUSIF - Les indices climat, une machine \u00e0 \u00ab greenwashing \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/gestion-actifs/exclusif-les-indices-climat-une-machine-a-greenwashing-1347834" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EXCLUSIF - Les indices climat, une machine \u00e0 \u00ab\u00a0greenwashing\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6846708340710506498,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Chaire Scientific Beta de l'Edhec publie une \u00e9tude sur les indices dits ESG (environnement - social - gouvernance) qui sont cens\u00e9s \u00eatre constitu\u00e9s avec des \u00e9metteurs \"propres sur eux\" en ce qui concerne leur gestion environnementale et sociale, et les organes de gouvernance mis en place, qui garantissent au mieux contre le fait de faire n'importe quoi.\n\nLas, disent les chercheurs de la chaire qui ont examin\u00e9 ces indices, la plupart du temps ils sont construits en utilisant des m\u00e9thodes qui ne sont pas faites pour traiter le probl\u00e8me, mais juste pour se rassurer, en consid\u00e9rant que d\u00e9sormais sont \"vertes\" des mani\u00e8res de proc\u00e9der qui, \u00e0 quelques ajustements pr\u00e8s (on exclut ceci ou cela), sont les m\u00eames qu'hier.\n\nMaintenir l'\u00e9l\u00e9vation de temp\u00e9rature globale sous les 2\u00b0C suppose de diminuer les \u00e9missions de 5% par an \u00e0 partir de maintenant, et ce pour des d\u00e9cennies (chaque ann\u00e9e, il faut donc faire 5% de moins que l'ann\u00e9e pr\u00e9c\u00e9dente, et ce jusqu'\u00e0 suppression totale des \u00e9missions). Une entreprise \"verte\" est donc une entreprise qui est capable de rester performante dans un monde qui baisse ses \u00e9missions de 5% par an, en ce compris la logistique dont elle a besoin, le comportement de ses clients, la survie de ses fournisseurs, etc.\n\nPour le moment, les m\u00e9thodes utilis\u00e9es par l'essentiel du monde financier pour appr\u00e9cier le \"vert\" ne permettent pas de r\u00e9pondre \u00e0 cette question (et la taxonomie europ\u00e9enne ne permet pas non plus de r\u00e9pondre totalement \u00e0 la question). La publication de l'Edhec a raison de le rappeler, et de houspiller le secteur financier pour qu'il soit plus s\u00e9rieux, ce qui signifie y consacrer plus de moyens." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6846708340710506498,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6846708341234774016,urn:li:activity:6846708341234774016,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 37, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6846708341234774016,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6846708341234774016,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6846708341234774016", + "threadId": "activity:6846708341234774016", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6846708341234774016", + "urn": "urn:li:activity:6846708341234774016", + "numComments": 46, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6846708341234774016", + "reactionTypeCounts": [ + { + "count": 705, + "reactionType": "LIKE" + }, + { + "count": 80, + "reactionType": "MAYBE" + }, + { + "count": 75, + "reactionType": "INTEREST" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6846708341234774016", + "numLikes": 877, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6846708341234774016", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 877, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6846706267000475648,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6846706267000475648", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6846706267000475648)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6846706267000475648)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_scientists-still-dont-know-how-far-melting-activity-6846706267000475648-htgo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6846706266530701312", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6846706267000475648", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6846706267000475648,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6846706267000475648,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6846706266530701312", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "EQ9YraSyFp8QoiXkX9YkPQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6846706267000475648,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8870925835808454628", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675788843093?e=1677240000&v=beta&t=UFDXj456nkCwXn4MQ8ftMFVYTvSsdxbb-i5Q9GoX26k", + "expiresAt": 1677240000000, + "height": 394 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675788843093?e=1677240000&v=beta&t=auC68MaB7z58S_ETPs-XxB8W1eYQj1Y971ymu7zxbK8", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675788843093?e=1677240000&v=beta&t=vNi8dV87u9u76TYfrq0vETzaHkFUmriQ28caTDvDJPI", + "expiresAt": 1677240000000, + "height": 78 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675788843093?e=1677240000&v=beta&t=jIEyvDHCcunctFojZekVpvNlHlAbw71bMTJrSFTJR-4", + "expiresAt": 1677240000000, + "height": 236 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGKeL77CEcPNw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8870925835808454628)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8870925835808454628)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theconversation.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Scientists still don\u2019t know how far melting in Antarctica will go \u2013 or the sea level rise it will unleash by theconversation.com", + "actionTarget": "https://theconversation.com/scientists-still-dont-know-how-far-melting-in-antarctica-will-go-or-the-sea-level-rise-it-will-unleash-166677" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Scientists still don\u2019t know how far melting in Antarctica will go \u2013 or the sea level rise it will unleash" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6846706266530701312,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans les processus qui ont \u00e9t\u00e9 mis en route par le r\u00e9chauffement climatique, il y a la fonte ou la d\u00e9sint\u00e9gration des calottes polaires, et l'inertie de ces composantes du syst\u00e8me climatique font que cette \u00e9volution est d\u00e9sormais partie pour des mill\u00e9naires m\u00eame si nous arr\u00eatons totalement les \u00e9missions.\n\nLa contribution des calottes polaires \u00e0 la hausse du niveau des mers est l'une des projections qui comporte le plus d'incertitudes, mais dans le mauvais sens. Le r\u00e9sum\u00e9 pour d\u00e9cideurs du dernier rapport du GIEC contient explicitement cette phrase : \"Sea level rise greater than 15m [in 2300]\u00a0cannot be ruled out with high emissions\".\n\n2300, ce n'est certes pas tout de suite. Mais 15 m\u00e8tres en 2 si\u00e8cles, soit 7 m\u00e8tres par si\u00e8cle, cela signifie qu'il n'y a plus un port op\u00e9rationnel sur terre (outre qu'un certain nombre de villes c\u00f4ti\u00e8res disparaissent). Et le doigt sur la g\u00e2chette est maintenant.\n\nIl faut le rappeler : une grande incertitude, ce n'est pas une incitation \u00e0 l'inaction avant de mieux savoir. C'est un grand risque, et une invitation \u00e0 s'occuper du probl\u00e8me d\u00e8s maintenant." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6846706266530701312,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6846706267000475648,urn:li:activity:6846706267000475648,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6846706267000475648,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6846706267000475648,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6846706267000475648", + "threadId": "activity:6846706267000475648", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6846706267000475648", + "urn": "urn:li:activity:6846706267000475648", + "numComments": 90, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6846706267000475648", + "reactionTypeCounts": [ + { + "count": 447, + "reactionType": "LIKE" + }, + { + "count": 63, + "reactionType": "INTEREST" + }, + { + "count": 40, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6846706267000475648", + "numLikes": 567, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6846706267000475648", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 567, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6846412614373785600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6846412614373785600", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6846412614373785600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6846412614373785600)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_guide-m%C3%A9thodologique-ocara-carbone-4-activity-6846412614373785600-GhLO?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6846412613715283968", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6846412614373785600", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6846412614373785600,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6846412614373785600,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6846412613715283968", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "8ORBFivLeDG+mEQAXHUxuw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6846412614373785600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9061674020410501222", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676412174894?e=1677240000&v=beta&t=Pc2NlmKOS41VSZz8jZCz1h3fNcKa2c7ueNSmMY1K93c", + "expiresAt": 1677240000000, + "height": 1044 + }, + { + "width": 612, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676412174894?e=1677240000&v=beta&t=L7TjhfU5El1VH-JK7_bZI536YzrxJiF_fDKa9apdWSQ", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676412174894?e=1677240000&v=beta&t=8qE9dFfVXfG-rYICIpLoaDC6BMJd-EXheK0kKds4DAY", + "expiresAt": 1677240000000, + "height": 208 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676412174894?e=1677240000&v=beta&t=zr90qdSM89Fl9FKKw3hr2DJYuSbZEmchEZTFad9rIxY", + "expiresAt": 1677240000000, + "height": 626 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEb88ALN2fpIQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.305 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9061674020410501222)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9061674020410501222)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Guide m\u00e9thodologique OCARA | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/guide-methodologique-ocara" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Guide m\u00e9thodologique OCARA | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6846412613715283968,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quoi que nous fassions \u00e0 l'avenir sur les \u00e9missions, la d\u00e9rive climatique va perdurer pour des mill\u00e9naires. Cela est la cons\u00e9quence de l'inertie du CO2 dans l'air et de l'inertie de certains compartiments du climat.\n\nPour les entreprises cela signifie que, \u00e0 mesure que le temps va passer, elles vont devoir naviguer dans un monde de plus en plus instable sur le plan physique, avec des risques qui vont appara\u00eetre l\u00e0 o\u00f9 hier il n'y en avait pas, ou pas les m\u00eames.\n\nPour les aider \u00e0 y voir un peu clair, Carbone 4 publie, apr\u00e8s un an de travail soutenu notamment par l'Ademe, Bureau Veritas, HDI (un assureur industriel), la CCI Grand Est, une m\u00e9thode d'analyse d\u00e9nomm\u00e9e OCARA, qui permet d'identifier les processus \u00e0 risque en ce qui concerne le climat.\n\nPar rapport aux investigations classiques, qui se limitent g\u00e9n\u00e9ralement aux actifs de l'entreprise (ses immeubles, machines, v\u00e9hicules, etc), OCARA couvre l'ensemble de la chaine de valeur, allant de la mine aux clients. \n\nUn exemple de probl\u00e8me \u00e0 l'amont de la chaine de valeur ? R\u00e9cemment, les constructeurs automobiles europ\u00e9ens ont eu un d\u00e9ficit de production parce qu'un producteur ta\u00efwanais de puces a du s'arr\u00eater de fonctionner \u00e0 cause d'une s\u00e9cheresse. \n\nUn exemple \u00e0 l'aval ? Avec moins de neige sur les pistes de ski, il se vend moins de skis, et moins de billets de train pour aller au ski...\n\nUn exemple \"\u00e0 l'aval c\u00f4t\u00e9 logistique\" ? En 2018 le Rhin a \u00e9t\u00e9 quasiment \u00e0 sec, emp\u00eachant l'\u00e9vacuation de la production des usines situ\u00e9es sur ses rives.\n\nIl est donc essentiel de regarder tous les processus, y compris ceux d\u00e9pendant des autres (eau, \u00e9lectricit\u00e9, \u00e9vacuation des d\u00e9chets, venue des salari\u00e9s, etc) qui permettent \u00e0 l'entreprise de fonctionner, pour savoir si ils sont aptes \u00e0 passer en l'\u00e9tat le test du changement climatique. Souvent la r\u00e9ponse sera non.\n\nOCARA est donc une m\u00e9thode d'approche par les processus, comme le bilan carbone. Le guide m\u00e9thodologique et l'outil \"de base\" sont en acc\u00e8s libre sur le site de Carbone 4." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6846412613715283968,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6846412614373785600,urn:li:activity:6846412614373785600,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6846412614373785600,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6846412614373785600,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6846412614373785600", + "threadId": "activity:6846412614373785600", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6846412614373785600", + "urn": "urn:li:activity:6846412614373785600", + "numComments": 76, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6846412614373785600", + "reactionTypeCounts": [ + { + "count": 836, + "reactionType": "LIKE" + }, + { + "count": 115, + "reactionType": "MAYBE" + }, + { + "count": 82, + "reactionType": "PRAISE" + }, + { + "count": 63, + "reactionType": "INTEREST" + }, + { + "count": 8, + "reactionType": "EMPATHY" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6846412614373785600", + "numLikes": 1110, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6846412614373785600", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1110, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6846028514152456192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6846028514152456192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6846028514152456192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6846028514152456192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_larcep-ne-pourra-pas-faire-la-police-du-activity-6846028514152456192-9StZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6846028513661726720", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6846028514152456192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6846028514152456192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6846028514152456192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6846028513661726720", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "hXiHdntU5OVXkwzozITMqg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6846028514152456192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7993579938592950683", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676543239994?e=1677240000&v=beta&t=8jEz8QcsymWjiVUUmLekb3updI1TDKDoe5L99-kasAM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676543239994?e=1677240000&v=beta&t=DSCVQ_Ww4D2VRF33QmXyzEpRy_U9rcHHUUC9ysiZglY", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676543239994?e=1677240000&v=beta&t=uBVcX8J4XeRZ8YrslTNidV8NJRK5x1b3abc3dW1GDFQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676543239994?e=1677240000&v=beta&t=rvKEp-OkMgeY6GPbVWYCuAbkF15rrmp9cSaYZDFBdLI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGFLcHHQ4xzlA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7993579938592950683)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7993579938592950683)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'Arcep ne pourra pas faire la police du num\u00e9rique en mati\u00e8re d'environnement by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/tech-medias/hightech/larcep-ne-pourra-pas-faire-la-police-du-numerique-en-matiere-denvironnement-1346405" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'Arcep ne pourra pas faire la police du num\u00e9rique en mati\u00e8re d'environnement" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6846028513661726720,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'article 16 de la loi climat et r\u00e9silience permettait au gendarme des t\u00e9l\u00e9coms, l'ARCEP, de collecter des donn\u00e9es sur les op\u00e9rateurs du num\u00e9rique, un pr\u00e9alable indispensable au fait de pouvoir un jour conditionner les possibilit\u00e9s d'exercer leur activit\u00e9 \u00e0 leur empreinte carbone (une disposition \u00e0 laquelle The Shift Project est favorable).\n\nLe Conseil constitutionnel vient de censurer cette disposition, consid\u00e9rant (je cite ; https://lnkd.in/d3FBDzn6 ) que \"ces dispositions ne pr\u00e9sentent pas de lien, m\u00eame indirect, avec l'article 1er du projet de loi initial qui pr\u00e9voyait l'affichage d'une information sur les caract\u00e9ristiques environnementales de certains produits\". \n\nCollecter des informations sur les \u00e9missions n'aurait donc aucun lien, m\u00eame indirect, avec le fait de fournir une information sur les \u00e9missions. Si on veut..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6846028513661726720,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6846028514152456192,urn:li:activity:6846028514152456192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6846028514152456192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6846028514152456192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6846028514152456192", + "threadId": "activity:6846028514152456192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6846028514152456192", + "urn": "urn:li:activity:6846028514152456192", + "numComments": 33, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6846028514152456192", + "reactionTypeCounts": [ + { + "count": 194, + "reactionType": "LIKE" + }, + { + "count": 85, + "reactionType": "MAYBE" + }, + { + "count": 43, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6846028514152456192", + "numLikes": 327, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6846028514152456192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 327, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6845973674680451073,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6845973674680451073", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6845973674680451073)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6845973674680451073)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pellerin-carlin-bruxelles-se-pr%C3%A9pare-%C3%A0-activity-6845973674680451073-qcqN?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6845973674151948288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6845973674680451073", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6845973674680451073,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6845973674680451073,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6845973674151948288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "YZyEY4FBu4u3LKNjkCGFpQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6845973674680451073,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7647727507155888034", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676081041940?e=1677240000&v=beta&t=tUk6gmVnKM_dkLlWYb0HR0_PMG2K9v5QzG0YUVB5Afg", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676081041940?e=1677240000&v=beta&t=NNlWKqdsvk5IthvibnHEDW_99NzCbMc83UTicqihWXA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676081041940?e=1677240000&v=beta&t=t1uOw1NsVaD2x4txxcQsZVx5WwyTQyA9oZfK17FveC4", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676081041941?e=1677240000&v=beta&t=Gw2JOEXL4OqRyZMsLAqQa5AnUJfxxCn9F-8npx4MdJo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG47CgEvQFLmA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7647727507155888034)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7647727507155888034)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "euractiv.fr \u2022 12 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pellerin-Carlin : Bruxelles se pr\u00e9pare \u00e0 reconna\u00eetre le nucl\u00e9aire comme une \u00e9nergie \u00ab verte \u00bb by euractiv.fr", + "actionTarget": "https://www.euractiv.fr/section/climat/interview/pellerin-carlin-bruxelles-se-prepare-a-reconnaitre-le-nucleaire-comme-une-energie-verte/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pellerin-Carlin : Bruxelles se pr\u00e9pare \u00e0 reconna\u00eetre le nucl\u00e9aire comme une \u00e9nergie \u00ab\u00a0verte\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6845973674151948288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 30, + "length": 22, + "miniProfile": { + "firstName": "Thomas", + "lastName": "Pellerin-Carlin", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAqQZ3cBppXsxlZ32VsCZXo1mBHPiIu_5xw", + "occupation": "Director, EU Programme, Institute for Climate Economics (I4CE)", + "objectUrn": "urn:li:member:177235831", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAqQZ3cBppXsxlZ32VsCZXo1mBHPiIu_5xw", + "publicIdentifier": "thomas-pellerin-carlin-0474334b", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1545038275606?e=1681948800&v=beta&t=TdpNhUvzD6xqZashsRmnKvmXVATh0uXlJ7rg68ErqIs", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1545038275606?e=1681948800&v=beta&t=iTiMR3KnbJ8TozXlgbEgyIUpJKlj_Igqf-nn3xGo11s", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1545038275606?e=1681948800&v=beta&t=bbLeJ2qA42nwHiYxcKJ1FXoMIhPgkC0lckdTrymasQU", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1545038275606?e=1681948800&v=beta&t=KknWWlwaMe0jyHvHH3grxe5RUoEiUVGFLAgFyfT94qo", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHmIWFfHxcKuA/profile-displayphoto-shrink_" + } + }, + "trackingId": "eINLupwbTp+yruN8XVvKLg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Dans une interiew \u00e0 Euractiv, Thomas Pellerin-Carlin, chercheur \u00e0 l\u2019institut Jacques Delors, livre une analyse int\u00e9ressante sur la question du nucl\u00e9aire civil dans la taxonomie europ\u00e9enne sur les investissements verts.\n\nSelon lui, les derniers d\u00e9veloppements en date, et la configuration des acteurs devraient logiquement aboutir \u00e0 consid\u00e9rer le nucl\u00e9aire comme \"vert\" (et il d\u00e9fend cette conclusion alors qu'on le sent comme plut\u00f4t ti\u00e8de sur cette technologie), mais... apr\u00e8s les \u00e9lections allemandes.\n\nIl rappelle aussi \u00e0 cette occasion que les h\u00e9sitations sur le c\u00f4t\u00e9 vert de l'atome sont un processus bien plus marqu\u00e9 en Europe qu'ailleurs dans le monde. De fait, dans l'Illinois, par exemple, 3 r\u00e9acteurs nucl\u00e9aires viennent d'\u00eatre subventionn\u00e9s \u00e0 hauteur de 700 millions de dollars (https://lnkd.in/dY_ERiUn ) pour les rendre comp\u00e9titifs face au gaz, et ce avec le soutien de groupes environnementaux.\n\nIncidemment, l'auteur ne croit pas non plus \u00e0 une inclusion du gaz dans la taxonomie. Pour lui, ca serait la fin de cette derni\u00e8re, en lui \u00f4tant toute cr\u00e9dibilit\u00e9 scientifique. Cette m\u00eame cr\u00e9dibilit\u00e9, qui demande de s'en tenir aux faits, devrait logiquement conduire \u00e0 consid\u00e9rer que, face au changement climatique, le nucl\u00e9aire \u00e9vite plus de risques qu'il n'en cr\u00e9e. \n\nMais la politique et les faits, ce n'est pas toujours un mariage sans heurts !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6845973674151948288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6845973674680451073,urn:li:activity:6845973674680451073,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 77, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6845973674680451073,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6845973674680451073,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6845973674680451073", + "threadId": "activity:6845973674680451073", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6845973674680451073", + "urn": "urn:li:activity:6845973674680451073", + "numComments": 142, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6845973674680451073", + "reactionTypeCounts": [ + { + "count": 1463, + "reactionType": "LIKE" + }, + { + "count": 146, + "reactionType": "MAYBE" + }, + { + "count": 116, + "reactionType": "PRAISE" + }, + { + "count": 59, + "reactionType": "INTEREST" + }, + { + "count": 14, + "reactionType": "EMPATHY" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6845973674680451073", + "numLikes": 1811, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6845973674680451073", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1811, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6845596304488308736,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6845596304488308736", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6845596304488308736)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6845596304488308736)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-syst%C3%A8me-%C3%A9lectrique-britannique-sous-tension-activity-6845596304488308736-UDb2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6845596303833997312", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6845596304488308736", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6845596304488308736,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6845596304488308736,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6845596303833997312", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "Ctt3aORXZhLBGhU6Bp+kKA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6845596304488308736,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8502610149818531533", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676422224938?e=1677240000&v=beta&t=10gtkDQtguuMIDU5BHtYUWmlFg_sdqyvvOA0sZwSFak", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676422224938?e=1677240000&v=beta&t=kIi66BHsTnzT1QBusg9qd9awHfxuDcgXZzw2gszxA04", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676422224938?e=1677240000&v=beta&t=L1vDxj6gY8QHdpstoT2xY7VgzP-GgYcUGDM4GO4fzho", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676422224939?e=1677240000&v=beta&t=PG22nqGD9b8pZsv7wUHYxFGi5fS4C9bLXm-m9bzVsmU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHCpdvkEZo2AA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8502610149818531533)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8502610149818531533)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le syst\u00e8me \u00e9lectrique britannique sous tension apr\u00e8s l\u2019incendie d\u2019un \u00e9quipement strat\u00e9gique by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/blog/huet/2021/09/17/lelectricite-britannique-en-folie/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le syst\u00e8me \u00e9lectrique britannique sous tension apr\u00e8s l\u2019incendie d\u2019un \u00e9quipement strat\u00e9gique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6845596303833997312,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un r\u00e9seau \u00e9lectrique, ca doit \u00eatre r\u00e9silient, c'est \u00e0 dire comporter des \u00e9l\u00e9ments \u00e0 m\u00eame de permettre de faire face \u00e0 une large vari\u00e9t\u00e9 d'impr\u00e9vus. Et une partie de ces impr\u00e9vus n'en sont pas vraiment, au sens o\u00f9 il y a des ennuis qui se voient venir de loin, alors que d'autres non.\n\nLes anglais sont en train d'en faire l'exp\u00e9rience \u00e0 leurs d\u00e9pends. Cela fait des ann\u00e9es qu'ils sont structurellement importateurs d'\u00e9lectricit\u00e9 (notamment de France), entre autres parce que la \"concurrence libre et non fauss\u00e9e\" ne permet pas de donner de la visibilit\u00e9 aux investissements de long terme, et qu'ils ont donc sous-investi dans les moyens de production. \n\nUne des liaisons avec le continent (pas de chance, c'est avec nous) vient d'\u00eatre mise hors service par un incendie, et ce \u00e0 un moment o\u00f9 le vent est pour partie aux abonn\u00e9s absents. Sylvestre Huet en tire quelques conclusions qui s'appliquent aussi \u00e0 nous dans ce papier int\u00e9ressant. La principale est que les conjonctions d\u00e9favorables (pas de vent \u00e0 un moment o\u00f9 compter sur ses voisins ne fonctionne pas, par exemple) ne sont pas impossibles, et vont m\u00eame probablement se multiplier dans un contexte o\u00f9 nous l\u00e2chons un peu trop facilement la proie pour l'ombre.\n\nNos amis anglais vont donc exp\u00e9rimenter grandeur nature une situation qui se \"voyait venir\" en construisant un syst\u00e8me d\u00e9pendant des voisins, d\u00e9pendant du gaz, et avec le postulat que \"il y a toujours du vent quelque part\". S'ensuivent des prix qui s'envolent, des fournisseurs \"alternatifs\" qui font faillite (mais sans cons\u00e9quence puisque physiquement ils ne servent \u00e0 rien, et c'en est une tr\u00e8s belle d\u00e9monstration !), des situations proches du d\u00e9lestage, et du charbon remis en route - les centrales sont encore op\u00e9rationnelles - en urgence. Comme l'\u00e9quipement qui a br\u00fbl\u00e9 est un \u00e9quipement lourd, pas facile \u00e0 remplacer, la situation acrobatique va durer un peu.\n\nApr\u00e8s tout, si l'\u00e9lecteur a conscience que supprimer du nucl\u00e9aire chez nous c'est prendre un risque \u00e9lev\u00e9 d'aller vers la m\u00eame chose (ou plus grave quand la d\u00e9pendance sera encore plus forte et le taux de p\u00e9n\u00e9tration des modes intermittents plus \u00e9lev\u00e9s), et accepte le risque, ce n'est pas grave : c'est le jeu de la d\u00e9mocratie. Mais il faut \u00eatre sur que c'est bien cela son choix, effectu\u00e9 en conscience !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6845596303833997312,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6845596304488308736,urn:li:activity:6845596304488308736,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 53, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6845596304488308736,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6845596304488308736,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6845596304488308736", + "threadId": "activity:6845596304488308736", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6845596304488308736", + "urn": "urn:li:activity:6845596304488308736", + "numComments": 91, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6845596304488308736", + "reactionTypeCounts": [ + { + "count": 1559, + "reactionType": "LIKE" + }, + { + "count": 203, + "reactionType": "INTEREST" + }, + { + "count": 195, + "reactionType": "MAYBE" + }, + { + "count": 27, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6845596304488308736", + "numLikes": 1999, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6845596304488308736", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1999, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "izzB/imSRK2YEJRnnDW6Uw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6845307441056387072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6845307441056387072", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6845307441056387072)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6845307441056387072)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rapport-grand-public-2021-haut-conseil-activity-6845307441056387072-64jT?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6845307440301412353", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6845307441056387072", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6845307441056387072,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6845307441056387072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6845307440301412353", + "excludedFromSeen": false, + "trackingData": { + "requestId": "943c4bb2-df67-4a47-8317-05008654f08c", + "trackingId": "RC4QjqfrLTjZFrj7EINHbw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6845307441056387072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7667643878372591929", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675964740858?e=1677240000&v=beta&t=Ufl7rR85ZiP5EyfB1e7oOQoDUxgDTk75rF4Psf9DgSQ", + "expiresAt": 1677240000000, + "height": 601 + }, + { + "width": 1063, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675964740858?e=1677240000&v=beta&t=TmXkZaHCr3FXAWGcoZbshPrnmnVuED2hqqYyz_sdPAw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675964740858?e=1677240000&v=beta&t=P-b_83tRP-1YEHAXiwYtFLPnyJ6fSphEKGL1-dbc_a0", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675964740858?e=1677240000&v=beta&t=7chOiiTZX6Up_Q4rapuMS9qe6vtAn9BzRGKuFgo334g", + "expiresAt": 1677240000000, + "height": 361 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFd5rmQQlE0VA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7667643878372591929)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7667643878372591929)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "hautconseilclimat.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Rapport Grand public 2021 \u2014 Haut Conseil pour le Climat by hautconseilclimat.fr", + "actionTarget": "https://www.hautconseilclimat.fr/publications/rapport-grand-public-2021" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Rapport Grand public 2021 \u2014 Haut Conseil pour le Climat" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6845307440301412353,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La version \"grand public\" du dernier rapport du Haut conseil pour le climat est disponible. Une version \"grand public\", c'est une version r\u00e9sum\u00e9e et illustr\u00e9e du rapport complet, reprenant les principales conclusions. Nous aurions donc tout aussi bien pu l'intituler \"r\u00e9sum\u00e9 pour d\u00e9cideurs\", puisque le processus de passage du rapport complet au rapport \"grand public\" est exactement le m\u00eame que le passage d'un gros document d\u00e9taill\u00e9 \u00e0 un r\u00e9sum\u00e9 ex\u00e9cutif, ou r\u00e9sum\u00e9 pour d\u00e9cideur.\n\nCe document se termine par 5 recommandations :\n\n- Clarifier des politiques publiques encore peu lisibles (c'est une mani\u00e8re polie de dire que la puissance publique se donne actuellement des objectifs contradictoires les uns avec les autres).\n\n- Dans la foul\u00e9e, finaliser sans attendre les \"documents strat\u00e9giques\" (ou encore les documents de cadrage tels que plans d'action des minist\u00e8res, SRADDET des collectivit\u00e9s locales, etc)\u00a0et les mettre en accord vers les objectifs nationaux.\n\n- Rendre les plans de relance \"bas-carbone compatibles\" (pour le moment cet aspect l\u00e0 n'est pas assez pris en compte avant la d\u00e9cision).\n\n- Am\u00e9liorer les processus d\u2019\u00e9valuation et de suivi des politiques publiques. Cette question de l'\u00e9valuation ex-post des politiques publiques pour les amender \u00e9ventuellement - voire les supprimer - en fonction des r\u00e9sultats n'est pas propre au climat : c'est un vieux d\u00e9bat dans notre pays, comme dans beaucoup d'autres d\u00e9mocraties, o\u00f9 le slogan facile tient un peu trop souvent lieu de preuve, et o\u00f9 le renoncement par la puissance publique \u00e0 une affirmation qui s'av\u00e8re infond\u00e9e rel\u00e8ve de l'exploit. \n\n- Int\u00e9grer syst\u00e9matiquement l\u2019adaptation au changement climatique dans les politiques aux \u00e9chelons national et territoriaux. De fait la d\u00e9rive climatique va s'intensifier, et il faut en tenir compte dans toutes nos d\u00e9cisions. \n\nCe que ne pr\u00e9conise pas ce rapport, mais qui est implicite, c'est de former tous les fonctionnaires et tous les \u00e9lus \u00e0 la compr\u00e9hension des enjeux. Car sans cela, nous mettons toutes les chances de notre c\u00f4t\u00e9 pour constater que l'enfer est (parfois) pav\u00e9 de bonnes intentions.\n\nC'est du reste bien pour cela que la premi\u00e8re recommandation du travail que The Shift Project vient r\u00e9cemment de publier sur la r\u00e9silience des territoires (https://lnkd.in/dfWN5cBP ) est de consacrer 1% du budget des collectivit\u00e9s locales \u00e0 de \"l'acquisition de connaissances\" sur la question \u00e9nergie - climat. Cette recommandation recouvre une bonne compr\u00e9hension de la situation actuelle, des risques futurs et de leur hi\u00e9rarchie, ainsi que du jus de cerveau sur les alternatives possibles pour l'avenir. Ne pas le faire avant de foncer t\u00eate baiss\u00e9e sur le slogan \u00e0 la mode garantit de rater la cible \u00e0 coup \u00e0 peu pr\u00e8s s\u00fbr." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6845307440301412353,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6845307441056387072,urn:li:activity:6845307441056387072,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 33, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6845307441056387072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6845307441056387072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6845307441056387072", + "threadId": "activity:6845307441056387072", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6845307441056387072", + "urn": "urn:li:activity:6845307441056387072", + "numComments": 48, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6845307441056387072", + "reactionTypeCounts": [ + { + "count": 885, + "reactionType": "LIKE" + }, + { + "count": 75, + "reactionType": "INTEREST" + }, + { + "count": 40, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6845307441056387072", + "numLikes": 1036, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6845307441056387072", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1036, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6845025192989753344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6845025192989753344", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6845025192989753344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6845025192989753344)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_et-si-on-utilisait-l%C3%A9nergie-nucl%C3%A9aire-pour-activity-6845025192989753344-IoA_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6845025192578715648", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6845025192989753344", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6845025192989753344,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6845025192989753344,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6845025192578715648", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "ixP5gHsEGQTznr4IDCTwaA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6845025192989753344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7542705244537487651", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676415946478?e=1677240000&v=beta&t=iVhXoaI1PNpWgnPv8odGS48y_nRW_8XdYhZZZr5FcD0", + "expiresAt": 1677240000000, + "height": 426 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676415946479?e=1677240000&v=beta&t=W0d55uhZaSIKPSua65cS3bOrhuITT5KAF3EYHL-lyv8", + "expiresAt": 1677240000000, + "height": 426 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676415946479?e=1677240000&v=beta&t=epCbgyD5a9LlCLNxpMhVo8TqdNwDx4ilJ7stE9H13iY", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676415946479?e=1677240000&v=beta&t=hvuqnaPv8-6sWJ3hXnqhqhWySxXzCCWX93nwX3CODgM", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHQ1hwKkUungw/articleshare-shrink_" + }, + "displayAspectRatio": 0.665625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7542705244537487651)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7542705244537487651)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "trends.levif.be \u2022 16 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Et si on utilisait l'\u00e9nergie nucl\u00e9aire pour produire de l'eau (tr\u00e8s) chaude ? by trends.levif.be", + "actionTarget": "https://trends.levif.be/economie/entreprises/et-si-on-utilisait-l-energie-nucleaire-pour-produire-de-l-eau-tres-chaude/article-opinion-1469545.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Et si on utilisait l'\u00e9nergie nucl\u00e9aire pour produire de l'eau (tr\u00e8s) chaude ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6845025192578715648,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les Belges ont vot\u00e9 une loi pour interdire le nucl\u00e9aire pour la production \u00e9lectrique. Mais, fait remarquer non sans malice l'auteur de cet article, cela n'interdit pas de conserver ces r\u00e9acteurs pour en faire... de la vapeur, qui pourrait ensuite \u00eatre utilis\u00e9e pour des applications comme le chauffage, ou des usages industriels.\n\nA ce stade, le potentiel de d\u00e9carbonation n'est pas chiffr\u00e9. Il serait int\u00e9ressant de le comparer au carbone ajout\u00e9 par les centrales \u00e0 gaz que le plat pays qui est celui de Brel s'appr\u00eate \u00e0 construire (au surplus avec de l'argent public pour en garantir le fonctionnement). Car, \u00e0 quelque chose malheur pourrait \u00eatre bon, cette exploitation de la chaleur des centrales pourrait donner des id\u00e9es \u00e0 des pays ayant d\u00e9cid\u00e9 non seulement de garder leurs r\u00e9acteurs, mais d'en optimiser la production en faisant de la cog\u00e9n\u00e9ration (qui existe dans certains pays pour le chauffage urbain)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6845025192578715648,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6845025192989753344,urn:li:activity:6845025192989753344,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 44, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6845025192989753344,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6845025192989753344,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6845025192989753344", + "threadId": "activity:6845025192989753344", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6845025192989753344", + "urn": "urn:li:activity:6845025192989753344", + "numComments": 107, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6845025192989753344", + "reactionTypeCounts": [ + { + "count": 340, + "reactionType": "LIKE" + }, + { + "count": 38, + "reactionType": "MAYBE" + }, + { + "count": 38, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6845025192989753344", + "numLikes": 422, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6845025192989753344", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 422, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6844532155444432896,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6844532155444432896", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6844532155444432896)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6844532155444432896)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-climat-est-plus-urgent-que-le-covid-alertent-activity-6844532155444432896-zaEv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6844532154853027840", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6844532155444432896", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6844532155444432896,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6844532155444432896,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6844532154853027840", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "AWsgOQX/SX7ubVB8S3BeCw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6844532155444432896,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7693928122695994045", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675963739981?e=1677240000&v=beta&t=Fip161LMXKxpKQjSToLGqnaCpKDYg51ct5yQOqQXnCo", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675963739981?e=1677240000&v=beta&t=vssfI8QrR0D5l20FTrSHsserm3W8x5EDesvuXNaxYEg", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675963739982?e=1677240000&v=beta&t=kA7BkDsgbutN7Ns8xYLf_PxJiAfQxbLBYOZYiQ6keFs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675963739982?e=1677240000&v=beta&t=dQo3P1KshylLyayvbqnPQSRpDIsd_ejCHXoFQ5FB4z0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFtOc0wIXIf8w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7693928122695994045)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7693928122695994045)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le climat est plus urgent que le Covid, alertent des journaux m\u00e9dicaux by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/enjeux-internationaux/le-climat-est-plus-urgent-que-le-covid-alertent-des-journaux-medicaux-1343511#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le climat est plus urgent que le Covid, alertent des journaux m\u00e9dicaux" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6844532154853027840,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans une tribune publi\u00e9 dans The Lancet et de nombreuses autres revues, les r\u00e9dacteurs en chef de revues m\u00e9dicales appellent \u00e0 une action urgente pour limiter la d\u00e9rive climatique, en \u00e9crivant que nous ne devons pas attendre d'\u00eatre \"remis du covid\" pour nous attaquer \u00e0 la baisse des \u00e9missions (ce qui donne le titre de l'article des Echos).\n\nDe fait, les risques sanitaires associ\u00e9s au changement climatique sont sans commune mesure avec ceux du covid, du moins dans sa forme actuelle. Avec la modification du climat, il est question de mettre l'esp\u00e9rance de vie \u00e0 fort risque pour des milliards d'\u00eatres humains (d\u00e9faut de nourriture en quantit\u00e9 suffisante, exc\u00e8s de chaleur, instabilit\u00e9 politique forte suivant des migrations ou \u00e9pisodes ing\u00e9rables, recrudescence de maladies diverses, etc), et pour le moment nous mettons dans la lutte contre ce probl\u00e8me une petite fraction de la perte \u00e9conomique que nous avons consentie pour le covid.\n\nLes experts de la sant\u00e9 sont \u00f4 combien l\u00e9gitimes pour alerter sur les possibles cons\u00e9quences sanitaires du probl\u00e8me. Par contre, ce n'est pas leur m\u00e9tier de savoir exactement comment \"tout changer\" pour que les \u00e9missions baissent rapidement. C'est celui des organisateurs du fonctionnement des soci\u00e9t\u00e9s humaines, c'est \u00e0 dire l'ensemble du monde politique, de la technostructure et des dirigeants \u00e9conomiques et spirituels. \n\nDans cet ensemble, The Shift Project essaie de jouer modestement sa part en travaillant depuis un an sur un \"plan de transformation de l'\u00e9conomie fran\u00e7aise\", qui vise \u00e0 proposer des mesures qui seraient en phase avec une baisse des \u00e9missions de 5% par an dans le monde, ce qui est n\u00e9cessaire pour \"tenir\" l'objectif des 2\u00b0C (https://lnkd.in/dNARPrU ).\n\nEt au sein de ce plan il y a un volet... pour le secteur de la sant\u00e9, qui devra lui aussi tirer les cons\u00e9quences de ce que cela signifie baisser son empreinte carbone. Cette activit\u00e9 l\u00e0 devra aussi se pr\u00e9occuper de la mani\u00e8re de devenir \"sobre\" sans violer le serment d'Hippocrate." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6844532154853027840,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6844532155444432896,urn:li:activity:6844532155444432896,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 45, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6844532155444432896,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6844532155444432896,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6844532155444432896", + "threadId": "activity:6844532155444432896", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6844532155444432896", + "urn": "urn:li:activity:6844532155444432896", + "numComments": 89, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6844532155444432896", + "reactionTypeCounts": [ + { + "count": 1948, + "reactionType": "LIKE" + }, + { + "count": 127, + "reactionType": "MAYBE" + }, + { + "count": 120, + "reactionType": "INTEREST" + }, + { + "count": 50, + "reactionType": "PRAISE" + }, + { + "count": 27, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6844532155444432896", + "numLikes": 2287, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6844532155444432896", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2287, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6844326516151599104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6844326516151599104", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6844326516151599104)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6844326516151599104)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-dion-les-enseignements-de-activity-6844326516151599104-g1r-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6844326515665072128", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6844326516151599104", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6844326516151599104,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6844326516151599104,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6844326515665072128", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "z+3GY+2hlxDjuXz3j18TVQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6844326516151599104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8687341675371917115", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675628280199?e=1677240000&v=beta&t=-eROuhzYxvXkfXFPmK5eFI-hGjMSM5yF69B-HARI7SA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675628280199?e=1677240000&v=beta&t=umTOUzrZIipQE3zzVynoAc_ZtuS7cVxgXW8xA4QkYvM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675628280199?e=1677240000&v=beta&t=kg9aqgpjZB2-6HmxlMNa97FIQybXI7mV3k_ptKkDE00", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675628280199?e=1677240000&v=beta&t=Ic0-j0TWpkHzr8o8H48xWZFo7I9xYMmT2DdC6XuUcu4", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHN7fAtaCX7eA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8687341675371917115)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8687341675371917115)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici - Dion : Les enseignements de la CCC : quelles cl\u00e9s pour l'action ? - 13/09/2021 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=h7WmEMD_bL0" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Lundi 13 septembre 2021, \u00e0 l'invitation du Shift Project et de \"On est pr\u00eat\" (https://www.onestpret.com/) Cyril Dion revient sur l'exp\u00e9rience de la Convention Citoyenne pour le Climat (CCC). Il est interview\u00e9 par Jean-Marc Jancovici lors d'un facebook..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici - Dion : Les enseignements de la CCC : quelles cl\u00e9s pour l'action ? - 13/09/2021" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6844326515665072128,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Lundi dernier, Cyril Dion a accept\u00e9 de se faire \"interviewer\" par votre serviteur pour partager son retour d'exp\u00e9rience sur la Convention Citoyenne pour le Climat. \n\nIl 'en est ensuivi une heure d'\u00e9changes (c'est surtout lui qui parle, mais c'\u00e9tait bien le but !) sur la gen\u00e8se du projet, pourquoi Macron a accept\u00e9, quelle valeur ajout\u00e9e ce processus a amen\u00e9 dans le paysage, s'il y a eu des exp\u00e9riences comparables ailleurs, et ce que l'on peut en tirer comme conclusions du processus (plus que du contenu de la loi climat qui a suivi).\n\nSi vous pouvez facilement vous passer d'images (il y a essentiellement des trombines en train de parler, et rien de plus passionnant), ce qui est \u00e9videmment l'id\u00e9al, l'enregistrement se trouve aussi en audio seul l\u00e0 : https://lnkd.in/dUfY2qWf\n\nBonne \u00e9coute !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6844326515665072128,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6844326516151599104,urn:li:activity:6844326516151599104,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 19, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6844326516151599104,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6844326516151599104,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6844326516151599104", + "threadId": "activity:6844326516151599104", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6844326516151599104", + "urn": "urn:li:activity:6844326516151599104", + "numComments": 33, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6844326516151599104", + "reactionTypeCounts": [ + { + "count": 265, + "reactionType": "LIKE" + }, + { + "count": 20, + "reactionType": "INTEREST" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6844326516151599104", + "numLikes": 307, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6844326516151599104", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 307, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6844169125426675712,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6844169125426675712", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6844169125426675712)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6844169125426675712)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_ladaptation-au-changement-climatique-dans-activity-6844169125426675712-8dvj?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6844169124910780416", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6844169125426675712", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6844169125426675712,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6844169125426675712,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6844169124910780416", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "hNYMM1MzGI3/8xMOpEhSgg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6844169125426675712,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7891238037188811638", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676010923991?e=1677240000&v=beta&t=rl38Gsel2v_jaa2eW1Vmu8x0vkjIXYx6m_CSmmLkx0c", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 1066, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676010923992?e=1677240000&v=beta&t=uyb0LhRjdP__RFs1AmVH4hlVGRQzcO99TAagBpWSciw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676010923992?e=1677240000&v=beta&t=dUd00FqV_IDB9s2GiOCbdCSmkLfMX-8SWyDS6fLaH-4", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676010923992?e=1677240000&v=beta&t=8MOSPbh5NAChLD6EbJHiKS0dOunLvm5FYLsMRbiV0UM", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHkxyzIvO86YQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7891238037188811638)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7891238037188811638)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L\u2019adaptation au changement climatique dans la Taxonomie europ\u00e9enne | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/analyse-adaptation-climat-taxonomie-europeenne" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L\u2019adaptation au changement climatique dans la Taxonomie europ\u00e9enne | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6844169124910780416,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La taxonomie europ\u00e9enne sur les investissements \"verts\" vise \u00e0 fournir au monde financier une nomenclature des projets ou activit\u00e9s qui sont consid\u00e9r\u00e9s comme compatibles avec un monde qui se d\u00e9carbone.\n\nPour \u00eatre \"vert\", il faut donc \u00eatre consid\u00e9r\u00e9 comme apportant une contribution substantielle \u00e0 l'am\u00e9lioration de la situation sur le front du climat, tout en contribuant pas \u00e0 la d\u00e9grader sur un autre plan. L'interpr\u00e9tation de ce principe a bien \u00e9videmment donn\u00e9 lieu \u00e0 d'\u00e2pres d\u00e9bats.\n\nMais elle comporte \u00e9galement un volet \"adaptation\", qui pr\u00e9cise \u00e0 quelles conditions une activit\u00e9 est consid\u00e9r\u00e9e comme \u00e9tant du bon c\u00f4t\u00e9 de la barri\u00e8re en ce qui concerne sa capacit\u00e9 \u00e0 se pr\u00e9parer \u00e0 un climat \u00e0 la d\u00e9rive, ou \u00e0 contribuer \u00e0 la pr\u00e9paration des autres.\n\nCet article de Carbone 4 vous en r\u00e9sume la substantifique moelle !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6844169124910780416,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6844169125426675712,urn:li:activity:6844169125426675712,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 13, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6844169125426675712,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6844169125426675712,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6844169125426675712", + "threadId": "activity:6844169125426675712", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6844169125426675712", + "urn": "urn:li:activity:6844169125426675712", + "numComments": 19, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6844169125426675712", + "reactionTypeCounts": [ + { + "count": 136, + "reactionType": "LIKE" + }, + { + "count": 19, + "reactionType": "INTEREST" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6844169125426675712", + "numLikes": 173, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6844169125426675712", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 173, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6843925976137654272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6843925976137654272", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6843925976137654272)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6843925976137654272)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_r%C3%A9silience-des-territoires-publication-activity-6843925976137654272-Uoc2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6843925975550455808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6843925976137654272", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6843925976137654272,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6843925976137654272,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6843925975550455808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "L9+VnQJJdi6r/oDYYr9WYA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6843925976137654272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7067518443706008548", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676543630052?e=1677240000&v=beta&t=OKmKg-m26CeyKeR2hBe8mFURmN2Q9XPIniHv7L_4atw", + "expiresAt": 1677240000000, + "height": 514 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676543630052?e=1677240000&v=beta&t=NIT_ooocLVqWCrVbS4l9MiRNvRhbdb0FjrTawGw-EkE", + "expiresAt": 1677240000000, + "height": 524 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676543630052?e=1677240000&v=beta&t=EVeqkjOBBMlQbNDzwe5S21sc-mKJRqoVj4aeBKC-HVQ", + "expiresAt": 1677240000000, + "height": 102 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676543630052?e=1677240000&v=beta&t=fTTIKeAkTCn_gcwnaomrazzM0gM1PQ0qnAqd4_3axvg", + "expiresAt": 1677240000000, + "height": 308 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFhqpk1weCB4A/articleshare-shrink_" + }, + "displayAspectRatio": 0.6425 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7067518443706008548)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7067518443706008548)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: R\u00e9silience des territoires : publication d'un manuel pour b\u00e2tir des politiques locales by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/manuel-resilience-elus-et-collectivites/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "R\u00e9silience des territoires : publication d'un manuel pour b\u00e2tir des politiques locales" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6843925975550455808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le monde dans lequel nous vivons doit beaucoup \u00e0 deux d\u00e9terminants : un climat qui \u00e9tait stable depuis 10.000 ans, et une \u00e9nergie - donc un parc de machines - abondante. Quand on regarde bien, la structure des m\u00e9tiers, le prix de l'alimentation, l'occupation du territoire, la mondialisation, et encore quelques broutilles sont les descendants directs de ces deux \u00e9l\u00e9ments.\n\nL'un comme l'autre, et d'autres ressources plan\u00e9taires en prime, vont malheureusement faire de plus en plus d\u00e9faut \u00e0 l'avenir. Cela va poser des d\u00e9fis in\u00e9dits \u00e0 toutes les structures que nous avons imagin\u00e9es pour g\u00e9rer la soci\u00e9t\u00e9 humaine, et notamment les collectivit\u00e9s locales. \n\nQuelles seront les ressources agricoles disponibles pour nourrir la population locale dans un monde au climat d\u00e9rivant ? Comment les transporter sans p\u00e9trole ? Quels m\u00e9tiers feront les habitants, quels emplois seront disponibles ? Faudra-t-il accueillir des \"migrants climatiques\", du pays ou d'ailleurs ?\n\nEt, pour le r\u00e9sumer en une question, comment allons nous faire pour g\u00e9rer plus d'impr\u00e9vu, souvent d\u00e9favorable, avec moins de moyens ?\n\nC'est autour de ces questions que The Shift Project a travaill\u00e9 pendant un an, dans le cadre du projet \"Strat\u00e9gies de r\u00e9silience des territoires\". Il en est sorti un document en 3 tomes, se voulant un \"mode d'emploi\" \u00e0 destination des \u00e9lus locaux pour attaquer cette question de mani\u00e8re op\u00e9rationnelle. \n\nTransformer les territoires actuels pour les rendre \"r\u00e9silients\", c'est \u00e0 dire aptes \u00e0 fonctionner dans un univers chahut\u00e9 et en contraction de moyens, va \u00eatre un sacr\u00e9 d\u00e9fi pour certains, et un long chemin. Esp\u00e9rons que ce travail donne un peu plus envie aux int\u00e9ress\u00e9(e)s de commencer \u00e0 l'emprunter." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6843925975550455808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6843925976137654272,urn:li:activity:6843925976137654272,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 56, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6843925976137654272,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6843925976137654272,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6843925976137654272", + "threadId": "activity:6843925976137654272", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843925976137654272", + "urn": "urn:li:activity:6843925976137654272", + "numComments": 136, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6843925976137654272", + "reactionTypeCounts": [ + { + "count": 1021, + "reactionType": "LIKE" + }, + { + "count": 103, + "reactionType": "PRAISE" + }, + { + "count": 73, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "INTEREST" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6843925976137654272", + "numLikes": 1261, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843925976137654272", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1261, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6843809223818657792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6843809223818657792", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6843809223818657792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6843809223818657792)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_parlons-v%C3%A9lo-barom%C3%A8tre-des-villes-cyclables-activity-6843809223818657792-y7e4?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6843809223449575424", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6843809223818657792", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6843809223818657792,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6843809223818657792,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6843809223449575424", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "KqYPj4P47cn7oGNS2tsT6w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6843809223818657792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8992770294282732712", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 501, + "fileIdentifyingUrlPathSegment": "800/0/1676309452916?e=1677240000&v=beta&t=uCC8fOJC34nq8YJhrgbX8IbwTq6L_gC7nrhiQm0owis", + "expiresAt": 1677240000000, + "height": 501 + }, + { + "width": 501, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676309452916?e=1677240000&v=beta&t=Ap_DQ0a_dZA4_r1eRgHkIkIf8TKoHHb9djjPgk13IT4", + "expiresAt": 1677240000000, + "height": 501 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676309452917?e=1677240000&v=beta&t=tD77JffslGoxkz4oFhNPZSxNzLg5I7Ubjb4Ehz03hj4", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676309452917?e=1677240000&v=beta&t=_I_Ym-SZx29rUbGobs6Lpg4GgDqdHWyC2duEeGvw3ps", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEgZthmGK00cA/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8992770294282732712)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8992770294282732712)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "barometre.parlons-velo.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Parlons-V\u00e9lo : Barom\u00e8tre des Villes Cyclables by barometre.parlons-velo.fr", + "actionTarget": "https://barometre.parlons-velo.fr" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Parlons-V\u00e9lo : Barom\u00e8tre des Villes Cyclables" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6843809223449575424,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La F\u00e9d\u00e9ration des Usagers de la Bicyclette lance une grande enqu\u00eate sur les conditions d'utilisation du v\u00e9lo en France. Remplir le questionnaire prend quelques minutes, et cela permet d'en savoir plus sur la facilit\u00e9 \u00e0 circuler \u00e0 deux roues quelle que soit la commune de France (avec \u00e0 la fin la possibilit\u00e9 d'\u00eatre tr\u00e8s pr\u00e9cis sur les endroits o\u00f9 il faut am\u00e9liorer les conditions de circulation).\n\nLe v\u00e9lo, avec ou sans assistance, est un des leviers les plus efficaces pour se passer de voiture, ou moins s'en servir. C'est donc une bonne id\u00e9e d'aider la FUB \u00e0 faire un \u00e9tat des lieux, m\u00eame si vous \u00eates un usager occasionnel de la petite reine !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6843809223449575424,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6843809223818657792,urn:li:activity:6843809223818657792,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 42, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6843809223818657792,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6843809223818657792,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6843809223818657792", + "threadId": "activity:6843809223818657792", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843809223818657792", + "urn": "urn:li:activity:6843809223818657792", + "numComments": 80, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6843809223818657792", + "reactionTypeCounts": [ + { + "count": 739, + "reactionType": "LIKE" + }, + { + "count": 39, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6843809223818657792", + "numLikes": 813, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843809223818657792", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 813, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6843471131253469184,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:member:183424051", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Julie", + "lastName": "Daunay", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "occupation": "Head of Net Zero Practice - Recruitment Manager - Carbone 4", + "objectUrn": "urn:li:member:183424051", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1650829686649?e=1681948800&v=beta&t=Rf2Y7qUU2TPTZ05cutAwcO2iqnMo6t4Hfdopndutc84", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1650829686649?e=1681948800&v=beta&t=iMzmvgrl1MTYYHJJfeJUuNR5zRI82Hu8yuJuHBtG3gY", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHpQSm2-ui2_A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "julie-daunay-21751851", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650545325320?e=1681948800&v=beta&t=BCTrL79EHAUp5-EdSbkqYTNDcxPc9AUMCI6h9gW-KX8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650545325320?e=1681948800&v=beta&t=6NtVaz_3C-PQ4tdvK-J5QjbsoLz-_d0DOhJGbRQ1Zaw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650545325320?e=1681948800&v=beta&t=e8ZXvJlwKgYItYuVoI7fOcTwGtuwzQpPTcuGOyuWsSM", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650545325320?e=1681948800&v=beta&t=sHGCLwwMDPrkr1x8b9A4SLdS5onZW3A7jviDYbg_ElY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQGS01GH3FEefQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "97ndsVkEQxyNosmES7Ng7g==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 3rd+" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 12, + "miniProfile": { + "firstName": "Julie", + "lastName": "Daunay", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "occupation": "Head of Net Zero Practice - Recruitment Manager - Carbone 4", + "objectUrn": "urn:li:member:183424051", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1650829686649?e=1681948800&v=beta&t=Rf2Y7qUU2TPTZ05cutAwcO2iqnMo6t4Hfdopndutc84", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1650829686649?e=1681948800&v=beta&t=iMzmvgrl1MTYYHJJfeJUuNR5zRI82Hu8yuJuHBtG3gY", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHpQSm2-ui2_A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "julie-daunay-21751851", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650545325320?e=1681948800&v=beta&t=BCTrL79EHAUp5-EdSbkqYTNDcxPc9AUMCI6h9gW-KX8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650545325320?e=1681948800&v=beta&t=6NtVaz_3C-PQ4tdvK-J5QjbsoLz-_d0DOhJGbRQ1Zaw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650545325320?e=1681948800&v=beta&t=e8ZXvJlwKgYItYuVoI7fOcTwGtuwzQpPTcuGOyuWsSM", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650545325320?e=1681948800&v=beta&t=sHGCLwwMDPrkr1x8b9A4SLdS5onZW3A7jviDYbg_ElY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQGS01GH3FEefQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "97ndsVkEQxyNosmES7Ng7g==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Julie Daunay" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Julie Daunay\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/julie-daunay-21751851?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Head of Net Zero Practice - Recruitment Manager - Carbone 4" + }, + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "following": false, + "trackingUrn": "urn:li:member:183424051" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followMember" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6843451684715294721,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6843451684715294721", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6843451684715294721)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6843451684715294721)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/activity-6843451684715294721-N-L8?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6843451684321013760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "authorUrn": "urn:li:member:183424051", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6843451684715294721,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6843451684715294721,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6843451684321013760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "hsPzIonqxVSLBOTjOEW3zA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6843451684715294721,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7808687028627348091", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675585870087?e=1677240000&v=beta&t=0i19icDD5jy0wjntFejRBbH-hssb6xMCjHvdp2tZBCc", + "expiresAt": 1677240000000, + "height": 1067 + }, + { + "width": 600, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675585870087?e=1677240000&v=beta&t=-4zxzqkqjZowIQ7s4wHRH0dMAuz4Nl3ibpso8w2840M", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675585870088?e=1677240000&v=beta&t=2VVcrWa8KOV8YQwMeRQMqncojhDYKDLyfMFIfYpbhws", + "expiresAt": 1677240000000, + "height": 213 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675585870088?e=1677240000&v=beta&t=fb0JIhCdeGAb_iWDrXwr9Qjby4rSxNy0yo4cpAqWRPk", + "expiresAt": 1677240000000, + "height": 640 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFtRyggH5PsHw/articleshare-shrink_" + }, + "displayAspectRatio": 1.33375 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7808687028627348091)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7808687028627348091)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carbone 4 - Pr\u00e9cision et ambition climatique by carbone4.com", + "actionTarget": "https://www.carbone4.com/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carbone 4 - Pr\u00e9cision et ambition climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6843451684321013760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'\u00e9t\u00e9 vous a ressourc\u00e9 puis vous avait fait votre rentr\u00e9e avec le 1er volet du 6e rapport du GIEC ? Vous avez envie de changement ? \nCarbone 4 recrute toujours ! Nous cherchons des personnes motiv\u00e9es qui souhaitent mettre leur \u00e9nergie et leurs bonnes id\u00e9es au service de l'att\u00e9nuation du changement climatique \ud83c\udf0d !\n\nLes postes ouverts \u00e0 l'heure actuelle :\n\ud83c\udf3e Consultant\u00b7e Agronome / sp\u00e9cialiste \"Agriculture & agro-alimentaire\"\n\ud83d\udea8 Consultante Senior R\u00e9silience & Adaptation\n\ud83d\udca7 Consultant\u00b7e Senior sp\u00e9cialiste de l'Analyse de Cycle de Vie\n\ud83d\udd0b Consultant\u00b7e Senior \u00c9nergie\n\ud83d\udcb5 Consultant\u00b7e Senior Finance\n\ud83d\udcc8 Consultant\u00b7e Senior Strat\u00e9gie\n\ud83c\uddea\ud83c\uddf8 Consultant\u00b7e bilingue Anglais ou N\u00e9erlandais ou Espagnol\n\ud83d\udcca Responsable Administratif\u00b7ve et Financier\u00b7\u00e8re\n\n\ud83d\udc49 Vous \u00eates int\u00e9ress\u00e9\u00b7e ? Rendez-vous sur notre site pour postuler !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6843451684321013760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6843451684715294721,urn:li:activity:6843451684715294721,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 5, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6843451684715294721,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6843451684715294721,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6843451684715294721", + "threadId": "activity:6843451684715294721", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843451684715294721", + "urn": "urn:li:activity:6843451684715294721", + "numComments": 7, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6843451684715294721", + "reactionTypeCounts": [ + { + "count": 47, + "reactionType": "LIKE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6843451684715294721", + "numLikes": 51, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843451684715294721", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6843471131253469184", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6843471131253469184)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6843471131253469184)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carbone-4-pr%C3%A9cision-et-ambition-climatique-activity-6843471131253469184-FDiP?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6843471130909532160", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6843471131253469184", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6843471131253469184,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6843471131253469184,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6843471130909532160", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "hsPzIonqxVSLBOTjOEW3zA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6843471131253469184,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6843471130909532160,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si vous aussi vous vous dites que l'\u00e9t\u00e9 dernier ne vous laisse pas indiff\u00e9rent (et m\u00eame beaucoup plus) et qu'il est temps de mettre vos comp\u00e9tences en accord avec vos envies, et que par ailleurs vous correspondez \u00e0 des postes pour lesquels nous cherchons du monde, c'est par l\u00e0 : https://lnkd.in/dxzysp75" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6843471130909532160,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6843471131253469184,urn:li:activity:6843471131253469184,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 10, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6843471131253469184,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6843471131253469184,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6843471131253469184", + "threadId": "activity:6843471131253469184", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843471131253469184", + "urn": "urn:li:activity:6843471131253469184", + "numComments": 12, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6843471131253469184", + "reactionTypeCounts": [ + { + "count": 91, + "reactionType": "LIKE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6843471131253469184", + "numLikes": 100, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843471131253469184", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 100, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6843426448397627392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6843426448397627392", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6843426448397627392)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6843426448397627392)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-soci%C3%A9t%C3%A9-fran%C3%A7aise-denergie-nucl%C3%A9aire-activity-6843426448397627392-rAwh?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6843426447760093185", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6843426448397627392", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6843426448397627392,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6843426448397627392,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6843426447760093185", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "CUkzmX/r0qc1zSMsNSQJBQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6843426448397627392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHew9z7sh3tZQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHew9z7sh3tZQ", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1631600007057?e=1679529600&v=beta&t=ywRstYKn712heyarGzAaQFxqxaLVyAvmQ79qqp77CcM", + "expiresAt": 1679529600000, + "height": 1326 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1631600009388?e=1679529600&v=beta&t=vlih8gEwYFhx1xJ5mvvqcz8233wGDrWB1iXvISfvCUw", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1631600009388?e=1679529600&v=beta&t=wMI5GCx-N3VIwjjE_T5IojbGg9GkD9Oh7i0A060XMRg", + "expiresAt": 1679529600000, + "height": 829 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1631600009388?e=1679529600&v=beta&t=W2golvWf_MUEeJ-BFnGBWH7e-bi5NItCbbY822ff1JU", + "expiresAt": 1679529600000, + "height": 311 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1631600009388?e=1679529600&v=beta&t=DUF497YtSLQ5JFFeLHZXte6cGUV9-VL1dbq53FRPjik", + "expiresAt": 1679529600000, + "height": 104 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1631600009388?e=1679529600&v=beta&t=bw8CiMB_5D23VXdHT-NPlyZew4UFEHmnCS0hkFG62lg", + "expiresAt": 1679529600000, + "height": 518 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHew9z7sh3tZQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.6474609375 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, bar chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6843426447760093185,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Soci\u00e9t\u00e9 Fran\u00e7aise d'Energie Nucl\u00e9aire - SFEN, une soci\u00e9t\u00e9 savante (qui assure donc la diffusion d'informations techniques sur le nucl\u00e9aire, et n'est normalement pas un organisme de repr\u00e9sentation des acteurs de la fili\u00e8re) publie une note sur certains impacts du nucl\u00e9aire sur la biodiversit\u00e9, \"\u00e0 l\u2019occasion du Congr\u00e8s mondial de la nature\" : https://lnkd.in/dqty4uQK\n\nLa note couvre, mais de mani\u00e8re partielle, l'empreinte au sol et donc l'atteinte aux habitats. L'essentiel des r\u00e9sultats porte sur l'espace occup\u00e9 par les installations de production. Les impacts \"aval\" dus au changement climatique ne sont pas inclus dans les calculs d'empreinte biodiversit\u00e9 pour les modes fossiles ; les superficies des mines n\u00e9cessaires \u00e0 la construction des installations pas toujours (c'\u00e9tait un point explor\u00e9 par un article de Nature qui a fait grand bruit : https://lnkd.in/dQAWtBga ).\n\nCette note contient aussi des informations int\u00e9ressantes sur les pr\u00e9l\u00e8vements d'eau par les centrales nucl\u00e9aires, sujet r\u00e9current de discussion quand il est question de cette forme de g\u00e9n\u00e9ration \u00e9lectrique (mais qui ne lui est pas propre : une large partie des centrales \u00e0 charbon dans le monde, situ\u00e9es en bord de rivi\u00e8re, poss\u00e8dent les m\u00eames tours de refroidissement que celles qui, chez nous, sont l'image d'Epinal du nucl\u00e9aire !)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6843426447760093185,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6843426448397627392,urn:li:activity:6843426448397627392,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 16, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6843426448397627392,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6843426448397627392,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6843426448397627392", + "threadId": "activity:6843426448397627392", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843426448397627392", + "urn": "urn:li:activity:6843426448397627392", + "numComments": 79, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6843426448397627392", + "reactionTypeCounts": [ + { + "count": 258, + "reactionType": "LIKE" + }, + { + "count": 30, + "reactionType": "INTEREST" + }, + { + "count": 28, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6843426448397627392", + "numLikes": 319, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843426448397627392", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 319, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6843423684623912960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6843423684623912960", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6843423684623912960)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6843423684623912960)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_val%C3%A9rie-masson-delmotte-d%C3%A9rive-climatique-activity-6843423684623912960-q6iQ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6843423684141555712", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6843423684623912960", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6843423684623912960,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6843423684623912960,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6843423684141555712", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "F74sUnrOvBNs8xEmnlAIgQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6843423684623912960,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7738149645886414470", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 500, + "fileIdentifyingUrlPathSegment": "800/0/1676579224751?e=1677240000&v=beta&t=x9aTgojDVnJTujdNqtat00iuTVdNzRERw1sNTdh1Agg", + "expiresAt": 1677240000000, + "height": 500 + }, + { + "width": 500, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676579224751?e=1677240000&v=beta&t=5l9NvOOC-gUWOFEarYQ6_A3wMTlvtuvRB41_NMDun-I", + "expiresAt": 1677240000000, + "height": 500 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676579224751?e=1677240000&v=beta&t=y3DZgkACAk8ZeX3zIRO7wYLzxKhQAizw_oVMk_TD7d8", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676579224751?e=1677240000&v=beta&t=5QBSbzVlz4-OUtasBeqG4SpXayP3EB5_8sRDDLp3ivQ", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEA50nu-cDcrw/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7738149645886414470)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7738149645886414470)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "soundcloud.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Val\u00e9rie Masson-Delmotte : d\u00e9rive climatique et responsabilit\u00e9 by Pr\u00e9sages by soundcloud.com", + "actionTarget": "https://soundcloud.com/presages-podcast/valerie-masson-delmotte?fbclid=IwAR1NBVPO5QRrwk7qqCQPvIr8CkVskgtcMNQ6QdwcCUE5ZZ9M0bRXX-JhyvQ" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Val\u00e9rie Masson-Delmotte : d\u00e9rive climatique et responsabilit\u00e9 by Pr\u00e9sages" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6843423684141555712,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 13, + "miniProfile": { + "firstName": "Alexia", + "lastName": "Soyeux", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAHUhKYBee4GtZhDf7d4Jq1yaZxlvMLxyVs", + "occupation": "Marketing and Communication Manager at Carbone 4", + "objectUrn": "urn:li:member:30704806", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAHUhKYBee4GtZhDf7d4Jq1yaZxlvMLxyVs", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1554531228017?e=1681948800&v=beta&t=0yZIN3TvAxAGdY0KZczD6f-Hx-8eD8ShDiKk6Ji1s-k", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1554531228017?e=1681948800&v=beta&t=elcwT7eobx4PiTn1QG4BYxFuknU5FUnDlzrKe5kZGqY", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQGBUFvH5rCzdw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "alexiasoyeux", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1643738402697?e=1681948800&v=beta&t=FWwkznnFACF5lmOjXKRJnDfNr8X9H3y4Y9U-X9872p8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1643738402697?e=1681948800&v=beta&t=7fP4xZ4cvGk48N7Xoq0ty6rlbKTc_MnYc2rslEmh1-g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1643738402697?e=1681948800&v=beta&t=rJGYjDGSQmGYu0zLEkoN8pV9xsD07I7krESbNADuIiA", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1643738402697?e=1681948800&v=beta&t=rcYdCMSgF-K4hGliXZr6K2S-lHe9Z_M6mPd1VrGo7JQ", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQEVc70-kOMkoQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "S3kgPpVIRL6KtiUe3c1++Q==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 113, + "length": 23, + "type": "BOLD" + } + ], + "text": "Alexia Soyeux, qui travaille \u00e0 Carbone 4 le jour et s'occupe de Pr\u00e9sages la nuit (!), a r\u00e9alis\u00e9 une interview de Val\u00e9rie Masson-Delmotte, co-pr\u00e9sidente du groupe 1 du GIEC, celui-l\u00e0 m\u00eame qui vient de rendre un rapport de 4000 pages (https://lnkd.in/d9ytDBbG ) rassemblant ce qui est publi\u00e9 dans les revues scientifiques \u00e0 comit\u00e9 de lecture sur l'\u00e9volution du syst\u00e8me climatique sous l'effet de nos \u00e9missions.\n\nJe confesse ne pas avoir encore eu le temps d'\u00e9couter ce podcast (c'est tr\u00e8s mal !), mais pour ce que je connais de l'interview\u00e9e et du professionnalisme de l'intervieweuse, vous pouvez y aller les yeux ferm\u00e9s (expression appropri\u00e9e puisque normalement on \u00e9coute avec les oreilles :) ).\n\nBonne audition pour celles et ceux qui le feront !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6843423684141555712,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6843423684623912960,urn:li:activity:6843423684623912960,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 17, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6843423684623912960,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6843423684623912960,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6843423684623912960", + "threadId": "activity:6843423684623912960", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843423684623912960", + "urn": "urn:li:activity:6843423684623912960", + "numComments": 27, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6843423684623912960", + "reactionTypeCounts": [ + { + "count": 452, + "reactionType": "LIKE" + }, + { + "count": 21, + "reactionType": "EMPATHY" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "INTEREST" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6843423684623912960", + "numLikes": 506, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843423684623912960", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 506, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6843209485180264449,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6843209485180264449", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6843209485180264449)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6843209485180264449)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-fois-que-tu-sais-que-faire-pour-activity-6843209485180264449-yDmK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6843209484588871681", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6843209485180264449", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6843209485180264449,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6843209485180264449,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6843209484588871681", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "zxWQKnKJ516q9fMdCNGQpw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6843209485180264449,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHMSF59G-UzcA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHMSF59G-UzcA", + "artifacts": [ + { + "width": 1826, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1631548277490?e=1679529600&v=beta&t=tuYmX-pggbsNYZRd4olp1-5M-F0pgi2EiDQOro5a3RM", + "expiresAt": 1679529600000, + "height": 1048 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1631548279357?e=1679529600&v=beta&t=CewcR_7DG4oOFhw9htIUXvfaaiJEzCWL-if4sGVbmTw", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1631548279357?e=1679529600&v=beta&t=dDMfFl3xQ195HCJdAYdkLtaO_p4VFCJZZ3TPK03A26U", + "expiresAt": 1679529600000, + "height": 735 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1631548279357?e=1679529600&v=beta&t=vuE5mEqrQlxJq4ie2Nv9EOke2Pk5hw89Uuw3kN4gZjo", + "expiresAt": 1679529600000, + "height": 275 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1631548279357?e=1679529600&v=beta&t=5Ps5dGyMdX2H2qQiIWyrcRZjrCckomv_oSi_PKNfGiA", + "expiresAt": 1679529600000, + "height": 92 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1631548279357?e=1679529600&v=beta&t=WmJe3Fq97oiMM6u1kRC9LVJTAhAr_ylgvh51v-KpO5A", + "expiresAt": 1679529600000, + "height": 459 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHMSF59G-UzcA/feedshare-shrink_" + }, + "displayAspectRatio": 0.5739320920043811 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "a sign in front of a tree" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6843209484588871681,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"une fois que tu sais\", que faire ? Pour ne pas rester seul(e) face \u00e0 l'envie (ou pas) d'action en ce qui concerne la baisse des \u00e9missions li\u00e9es \u00e0 son mode de vie, Carbone 4 a mis au point un outil - MyCO2 - et un mode de diffusion - la conf\u00e9rence permettant de le d\u00e9couvrir - qui sont ouverts aux particuliers et aux entreprises.\n\nLes conf\u00e9rences pour les particuliers sont gratuites, et il est possible de s'inscrire sur la page https://lnkd.in/dK-rPmrE\n\nVous vous posez la moindre question sur ce que vous pouvez faire ? N'h\u00e9sitez pas, l'exp\u00e9rience est g\u00e9n\u00e9ralement consid\u00e9r\u00e9e comme tr\u00e8s appr\u00e9ciable par tous ceux qui ont essay\u00e9 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6843209484588871681,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6843209485180264449,urn:li:activity:6843209485180264449,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 17, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6843209485180264449,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6843209485180264449,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6843209485180264449", + "threadId": "activity:6843209485180264449", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843209485180264449", + "urn": "urn:li:activity:6843209485180264449", + "numComments": 32, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6843209485180264449", + "reactionTypeCounts": [ + { + "count": 491, + "reactionType": "LIKE" + }, + { + "count": 18, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6843209485180264449", + "numLikes": 549, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843209485180264449", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 549, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6843120175949062144,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6843120175949062144", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6843120175949062144)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6843120175949062144)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nord-stream-2-le-nouveau-gazoduc-russe-activity-6843120175949062144-Do2X?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6843120175236046848", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6843120175949062144", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6843120175949062144,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6843120175949062144,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6843120175236046848", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "YZkCSnxt/PO40eG+qDAIuw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6843120175949062144,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7672840547284146905", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675895577545?e=1677240000&v=beta&t=wW_IgRXVzYHlf5RdkUxKlNhEDWAkfpkwOGZ9lWIkrnI", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675895577545?e=1677240000&v=beta&t=uTrq19DNCC2Ec7ylf1Rd4mA9EL2ojmk1O5Ixtj2uf18", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675895577545?e=1677240000&v=beta&t=y1tws0fyfIbGmsd7qx9J9wYZIwripcx7gSg8sfnSvQM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675895577545?e=1677240000&v=beta&t=jLa16jtcY5sQgGUIaTjgaNRojjt-hdvmwbkZeD14ECA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF3Qu0w6JQGBA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7672840547284146905)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7672840547284146905)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nord Stream 2 : le nouveau gazoduc russe qui fournira l'Europe enfin achev\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/nord-stream-2-le-nouveau-gazoduc-russe-qui-fournira-leurope-enfin-acheve-1345123" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nord Stream 2\u00a0: le nouveau gazoduc russe qui fournira l'Europe enfin achev\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6843120175236046848,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Avec Nord Stream II, l'Europe a doubl\u00e9 sa perfusion gazi\u00e8re russe traversant la mer Baltique.\n\nComme cet article ne mentionne ni le mot CO2, ni le mot climat, je vais le compl\u00e9ter par un petit calcul. La capacit\u00e9 conjointe de Nord Stream I et II est de 110 milliards de m3 de gaz par an. Le gaz est une \u00e9nergie fossile qui \u00e9met 230 grammes de CO2 par kWh brul\u00e9. Il y a 10 kWh par m3.\n\n110 milliards de m3 par an, cela fait donc, en ordre de grandeur, 250 millions de tonnes de CO2 par an. C'est plus de la moiti\u00e9 des \u00e9missions domestiques de la France.\n\nUn gazoduc est fait pour durer des d\u00e9cennies (au moins 50 ans pour les infrastructures enterr\u00e9es selon GRT Gaz : https://lnkd.in/dckinYJ8 ).\n\nOr, l'Europe doit \u00eatre neutre en CO2 - donc ne quasiment plus rien \u00e9mettre, vu ce qu'il va advenir des for\u00eats et de leur capacit\u00e9 de s\u00e9questration additionnelle - d'ici 2050, donc dans 30 ans. La simple existence de ce gazoduc est donc une garantie que nous n'en prenons pas le chemin.\n\nQuestion : l'Europe - donc l'Allemagne :) - va coller une prune \u00e0 l'Allemagne pour violation d\u00e9lib\u00e9r\u00e9e de l'engagement de neutralit\u00e9 carbone europ\u00e9en ? (je pourrais poser la m\u00eame question pour la fermeture de Fessenheim, ce propos n'est pas anti-allemand par principe). En tous cas, il se confirme que l'Allemagne des ENR est aussi, en pratique, l'Allemagne du gaz.\n\nLe fait que les d\u00e9cisions op\u00e9rationnelles sur le continent soient en pratique presque toutes antagonistes avec les d\u00e9clarations serait cocasse si ce n'\u00e9tait tragique. Peut-on essayer d'\u00eatre coh\u00e9rents ne serait-ce qu'une fois ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6843120175236046848,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6843120175949062144,urn:li:activity:6843120175949062144,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 111, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6843120175949062144,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6843120175949062144,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6843120175949062144", + "threadId": "activity:6843120175949062144", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843120175949062144", + "urn": "urn:li:activity:6843120175949062144", + "numComments": 269, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6843120175949062144", + "reactionTypeCounts": [ + { + "count": 2219, + "reactionType": "LIKE" + }, + { + "count": 315, + "reactionType": "INTEREST" + }, + { + "count": 276, + "reactionType": "MAYBE" + }, + { + "count": 89, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6843120175949062144", + "numLikes": 2936, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6843120175949062144", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2936, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6842747619672915968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6842747619672915968", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6842747619672915968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6842747619672915968)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_net-zero-by-2050-banks-line-up-debut-usd-activity-6842747619672915968-OKe6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6842747619173777408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6842747619672915968", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6842747619672915968,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6842747619672915968,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6842747619173777408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "YIWBKH89PUh2mKNI6HXF2w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6842747619672915968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7395272491740630216", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1631111414520?e=1677240000&v=beta&t=cKGzY-z-3h7s_FtyVpcbB-1iOArIF7rTPMHZetwENZs", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1631111414520?e=1677240000&v=beta&t=noL9UNnOuChZoq9PdX-lPwUSl6XHObEHS52zTHQJkvI", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1631111414520?e=1677240000&v=beta&t=ZgGzDMJFggneZKACNCpCNNuA4h0wSmn16aMrIs9tGuQ", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1631111414520?e=1677240000&v=beta&t=0j36Ixt3elBjp58iYasP0ySG7BuBs6XocIFX4jfHX-M", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEkOtYPcLmCgg/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7395272491740630216)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7395272491740630216)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "responsible-investor.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u2018Net-Zero-by-2050\u2019 banks line up debut USD bond for Russia\u2019s largest coal company by responsible-investor.com", + "actionTarget": "https://www.responsible-investor.com/articles/net-zero-by-2050-banks-line-up-debut-usd-bond-for-russia-s-largest-coal-company" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u2018Net-Zero-by-2050\u2019 banks line up debut USD bond for Russia\u2019s largest coal company" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6842747619173777408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "3 banques ayant pris un engagement de neutralit\u00e9 (\"net zero pledge\"), \u00e0 savoir Citi, Bank of America (BofA) et Commerzbank, ont r\u00e9cemment organis\u00e9 une \u00e9mission obligataire du plus gros producteur de charbon russe, et un des plus gros exportateurs mondiaux, rapporte le site Responsible Investor.\n\nNB : l'article est r\u00e9serv\u00e9 aux abonn\u00e9s mais l'information principale est contenue dans la partie en libre acc\u00e8s.\n\nJ'avais publi\u00e9 sur le m\u00eame site, il y a un an et demi, une tribune - https://lnkd.in/gdEjKji - expliquant que la facilit\u00e9 avec laquelle tout acteur financier d\u00e9clare d\u00e9sormais qu'un jour il sera \"propre\" signifiait pr\u00e9cis\u00e9ment que de s'engager pour \"beaucoup plus tard\" ne mangeait pas de pain, et n'avaient pas plus de signification que cela.\n\nJ'avais sugg\u00e9r\u00e9 que l'acceptation, par les organismes receuillant ces engagements (notamment les \"Principles for Responsible Investing\" des Nations Unies) conditionnent ledit engagement \u00e0 deux actions imm\u00e9diates : \n- l'obligation pour chaque cadre - puis chaque collaborateur - de suivre 20 heures de cours pour comprendre comment se d\u00e9crit le probl\u00e8me \u00e0 traiter (au hasard quelque chose pas tr\u00e8s \u00e9loign\u00e9 de https://lnkd.in/dM7u2j7 ), dans les 2 ans qui suivent (avec les cours en ligne on peut le faire)\n- le d\u00e9ploiement d\u00e9marrant imm\u00e9diatement d'une comptabilit\u00e9 carbone d\u00e9taill\u00e9e - avec un plan comptable appropri\u00e9, donc ne faisant pas l'impasse sur le \"scope 3\" (https://lnkd.in/djQW4YAk) permettant de donner une contrepartie carbone \u00e0 chaque op\u00e9ration unitaire effectu\u00e9e par l'\u00e9tablissement financier en question.\n\nCes actions l\u00e0 peuvent d\u00e9marrer imm\u00e9diatement, sont v\u00e9rifiables, et sont n\u00e9cessaires (mais pas suffisantes) d\u00e8s lors qu'une entreprise entend faire le service minimum pour prendre sa part \u00e0 la r\u00e9solution du probl\u00e8me. \n\nSi ce qui pr\u00e9c\u00e8de n'est toujours pas en vigueur, n'est-ce pas la preuve que les organismes qui recueillent les engagements s'accommodent tr\u00e8s bien de promesses d'ivrogne ? (ou ne savent pas les d\u00e9celer, ce qui n'est pas beaucoup plus glorieux...)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6842747619173777408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6842747619672915968,urn:li:activity:6842747619672915968,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 15, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6842747619672915968,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6842747619672915968,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6842747619672915968", + "threadId": "activity:6842747619672915968", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6842747619672915968", + "urn": "urn:li:activity:6842747619672915968", + "numComments": 23, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6842747619672915968", + "reactionTypeCounts": [ + { + "count": 350, + "reactionType": "LIKE" + }, + { + "count": 56, + "reactionType": "INTEREST" + }, + { + "count": 34, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6842747619672915968", + "numLikes": 450, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6842747619672915968", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 450, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6842744738118959104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6842744738118959104", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6842744738118959104)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6842744738118959104)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-prix-de-l%C3%A9lectricit%C3%A9-ont-fortement-augment%C3%A9-activity-6842744738118959104-VnLd?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6842744737489788928", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6842744738118959104", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6842744738118959104,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6842744738118959104,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6842744737489788928", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "HvdWvn4GvtZzy8ZaK3ZmxA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6842744738118959104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFd1o5KQLSFHA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFd1o5KQLSFHA", + "artifacts": [ + { + "width": 2004, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1631437475257?e=1679529600&v=beta&t=CnFlg-8K3_GBW_-Wv2QLT1Gg4J-gPEp-i9pl2dC_p04", + "expiresAt": 1679529600000, + "height": 764 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1631437476467?e=1679529600&v=beta&t=iG8x4rRIXoR8aDtcDfemV0ZPL37Qkca0x-QE79uG8P8", + "expiresAt": 1679529600000, + "height": 8 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1631437476467?e=1679529600&v=beta&t=ASJ3l3ZG0btSC04hmhtGElUtuju9B_yCcx1LSKb_qmQ", + "expiresAt": 1679529600000, + "height": 488 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1631437476467?e=1679529600&v=beta&t=vOQ0sq03W07aruUZbaxURTSOLJtKXawudVBTqvDts00", + "expiresAt": 1679529600000, + "height": 183 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1631437476467?e=1679529600&v=beta&t=FwjfI5ZNjjcR0e1Qs7snD52gF9CpbKdSGS-f8TRPdCM", + "expiresAt": 1679529600000, + "height": 61 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1631437476467?e=1679529600&v=beta&t=F654mp6ii3QSncREcFhtUkOZ2VNHFmazYHhaaJYDGFQ", + "expiresAt": 1679529600000, + "height": 305 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFd1o5KQLSFHA/feedshare-shrink_" + }, + "displayAspectRatio": 0.3812375249500998 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, line chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6842744737489788928,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les prix de l'\u00e9lectricit\u00e9 ont fortement augment\u00e9 sur les march\u00e9s spot ces derniers temps : pourquoi ? C'est avec cette question (ou plut\u00f4t les facteurs explicatifs) que j'ai d\u00e9marr\u00e9 mon petit tour et puis s'en va sur RTL hier matin, pour d\u00e9river ensuite sur un propos plus g\u00e9n\u00e9ral sur la pertinence d'une hausse du prix de l'\u00e9lectricit\u00e9 dans le cadre de la pr\u00e9servation de l'environnement, selon la mani\u00e8re dont elle arrive et le cadre dans lequel elle s'inscrit : https://lnkd.in/d6EEGJh7\n\nNB : d'aucun(e)s m'ont indiqu\u00e9 que le \"replay\" de ma chronique de la semaine derni\u00e8re \u00e9tait pr\u00e9c\u00e9d\u00e9 d'une pub pour une compagnie a\u00e9rienne, ce qui \u00e9tait du dernier mauvais gout (et je suis d'accord !). Je n'ai pas eu droit \u00e0 cela sur le site internet (dont le lien figure ci-dessus) consult\u00e9 \u00e0 partir de mon ordinateur, sur lequel j'ai un bloqueur de publicit\u00e9s (Adblock plus pour ne pas le citer)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6842744737489788928,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6842744738118959104,urn:li:activity:6842744738118959104,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 21, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6842744738118959104,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6842744738118959104,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6842744738118959104", + "threadId": "activity:6842744738118959104", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6842744738118959104", + "urn": "urn:li:activity:6842744738118959104", + "numComments": 34, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6842744738118959104", + "reactionTypeCounts": [ + { + "count": 226, + "reactionType": "LIKE" + }, + { + "count": 10, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6842744738118959104", + "numLikes": 245, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6842744738118959104", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 245, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6842451997992468480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6842451997992468480", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6842451997992468480)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6842451997992468480)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-plus-grande-usine-au-monde-qui-%C3%A9limine-activity-6842451997992468480-SWjK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6842451997413658624", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6842451997992468480", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6842451997992468480,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6842451997992468480,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6842451997413658624", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "Ry5lLuujGkf1YC/PXlCRAQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6842451997992468480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7557744450204342994", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675759706062?e=1677240000&v=beta&t=q_s7l8m33PSpwwRdplglhy8_C5qhXBpJmeA_cvTJhvo", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1248, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675759706062?e=1677240000&v=beta&t=jQZSKwzJGGY0EWpuyYojziewlJWQea1icqaPGqBIE5k", + "expiresAt": 1677240000000, + "height": 701 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675759706062?e=1677240000&v=beta&t=0-GuZz_BbL5grjNeQtnPcoLyI7Fa5OKcgJ4GYFUEmQI", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675759706062?e=1677240000&v=beta&t=yhMMGdC87DUHa5PtJK6o8FbtAW2KhzWouZyvYfku2xE", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEnya4iBJ-PHw/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7557744450204342994)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7557744450204342994)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rtbf.be \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La plus grande usine au monde qui \u00e9limine le C02 de l'air lanc\u00e9e en Islande by rtbf.be", + "actionTarget": "https://www.rtbf.be/info/insolites/detail_la-plus-grande-usine-au-monde-qui-elimine-le-c02-de-l-air-lancee-en-islande?id=10838498&" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La plus grande usine au monde qui \u00e9limine le C02 de l'air lanc\u00e9e en Islande" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6842451997413658624,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les islandais ont plant\u00e9 un arbre, \u00e0 savoir \"quelque chose\" qui retire du CO2 de l'air. Sauf que ce dernier n'a ni branches ni feuilles, mais de gros ventilateurs, des pompes et des tuyaux, et ne fonctionne pas \u00e0 l'\u00e9nergie solaire, comme un arbre, mais \u00e0 l'\u00e9lectricit\u00e9.\n\nL'article parle de 4000 tonnes de CO2 captur\u00e9es par an. 4000 tonnes, c'est \u00e0 peu pr\u00e8s ce que consomment 400 hectares d'arbres, soit 4 km2 de for\u00eat en croissance. Dit autrement, c'est pas b\u00e9zef.\n\nL'article parle de l'\u00e9quivalent des \u00e9missions de 870 (allez, 1000) voitures par an. Ca fait donc un millioni\u00e8me des \u00e9missions des voitures, lesquelles repr\u00e9sentent un quinzi\u00e8me des \u00e9missions globales. Il faudrait donc 15 millions d'usines comme celle d\u00e9crite pour pomper l'\u00e9quivalent de nos \u00e9missions.\n\nL'article ne donne pas la consommation d'\u00e9nergie de ce dispositif. Mais elle est n\u00e9cessairement \u00e9lev\u00e9e, pour une raison tr\u00e8s simple : le CO2 atmosph\u00e9rique est une mol\u00e9cule chimiquement inerte dilu\u00e9e \u00e0 0,04% dans l'air. Dans ces conditions, la d\u00e9pense \u00e9nerg\u00e9tique pour le r\u00e9cup\u00e9rer est fatalement tr\u00e8s importante. Il n'est pas exclu que si le dispositif fonctionne avec de l'\u00e9lectricit\u00e9 carbon\u00e9e (ce qui n'est pas le cas en Islande), les \u00e9missions de CO2 li\u00e9es \u00e0 son fonctionnement soient \u00e9quivalentes au CO2 retir\u00e9 de l'atmosph\u00e8re.\n\nLa seule mani\u00e8re de capter du CO2 qui soit \u00e9nerg\u00e9tiquement \"rentable\" est de le faire \u00e0 la sortie des centrales \u00e9lectriques et grosses usines (cimenteries), et m\u00eame l\u00e0, alors que le CO2 est tr\u00e8s concentr\u00e9 dans la fum\u00e9e, il faut utiliser pour cela de 15 \u00e0 30% de l'\u00e9nergie de l'usine concern\u00e9e. Donc une fois que ce CO2 est dilu\u00e9e \u00e0 0,04% au-dessus de nos t\u00eates, le rendement doit \u00eatre bien pire, et possiblement \"n\u00e9gatif\". \n\nCa n'emp\u00eachera peut-\u00eatre pas la presse ou le politique de soutenir l'id\u00e9e avec le fol espoir - h\u00e9las infond\u00e9 - que ca nous \u00e9vitera des ennuis. Il vaut mieux se mettre au v\u00e9lo et planter des arbres l\u00e0 o\u00f9 il faut !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6842451997413658624,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6842451997992468480,urn:li:activity:6842451997992468480,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 374, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6842451997992468480,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6842451997992468480,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6842451997992468480", + "threadId": "activity:6842451997992468480", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6842451997992468480", + "urn": "urn:li:activity:6842451997992468480", + "numComments": 588, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6842451997992468480", + "reactionTypeCounts": [ + { + "count": 9149, + "reactionType": "LIKE" + }, + { + "count": 1094, + "reactionType": "INTEREST" + }, + { + "count": 994, + "reactionType": "MAYBE" + }, + { + "count": 253, + "reactionType": "PRAISE" + }, + { + "count": 86, + "reactionType": "EMPATHY" + }, + { + "count": 69, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6842451997992468480", + "numLikes": 11645, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6842451997992468480", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 11645, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6842448984678645760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6842448984678645760", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6842448984678645760)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6842448984678645760)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rapport-du-giec-rappel-des-points-cl%C3%A9s-activity-6842448984678645760-gjfG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6842448984355696640", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6842448984678645760", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6842448984678645760,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6842448984678645760,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6842448984355696640", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "4fx0dVg3g8iPj04y7lXniQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6842448984678645760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8234511131891955365", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675433613449?e=1677240000&v=beta&t=mGk-oioe-pYjZ-WOCjsNt_OKJ7T2mOAZLuv7kx4TQss", + "expiresAt": 1677240000000, + "height": 544 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675433613449?e=1677240000&v=beta&t=apOR8tZ3bW3vyZBoPPcqgbOO71Zuxhm_BKlZcTN0EVg", + "expiresAt": 1677240000000, + "height": 681 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675433613449?e=1677240000&v=beta&t=JNP92j8Dm4iaN-gLpwkboJRs4MtqPScMkWcMJpYtpUU", + "expiresAt": 1677240000000, + "height": 108 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675433613449?e=1677240000&v=beta&t=mrS6D435-gKrU79bj_wQKaHN4GlOPPhvX1tLXYeAYTE", + "expiresAt": 1677240000000, + "height": 326 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHbVDHls1Wb1Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.68 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8234511131891955365)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8234511131891955365)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Rapport du GIEC : rappel des points cl\u00e9s | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/rapport-giec-points-cles" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Rapport du GIEC : rappel des points cl\u00e9s | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6842448984355696640,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "r85VUEFrQYyW5aVdbQQrJw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4 y est aussi all\u00e9 de son r\u00e9sum\u00e9 du r\u00e9sum\u00e9 du rapport du GIEC, pour illustrer quelques points saillants du document sorti il y a quelques semaines. \n\nA l'heure qu'il est, il faut esp\u00e9rer que l'essentiel des d\u00e9cideurs auront \"lu quelque chose\" les poussant un peu plus aux fesses qu'avant, et si cet article peut y contribuer, tant mieux !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6842448984355696640,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6842448984678645760,urn:li:activity:6842448984678645760,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 16, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6842448984678645760,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6842448984678645760,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6842448984678645760", + "threadId": "activity:6842448984678645760", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6842448984678645760", + "urn": "urn:li:activity:6842448984678645760", + "numComments": 44, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6842448984678645760", + "reactionTypeCounts": [ + { + "count": 429, + "reactionType": "LIKE" + }, + { + "count": 41, + "reactionType": "INTEREST" + }, + { + "count": 23, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6842448984678645760", + "numLikes": 506, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6842448984678645760", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 506, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6842389571926294528,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6842389571926294528", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6842389571926294528)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6842389571926294528)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_univershift%C3%A9-activity-6842389571926294528-7t7g?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6842389571548811265", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6842389571926294528", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6842389571926294528,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6842389571926294528,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6842389571548811265", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "KKf+s/u5LANQZz3zGkpZOQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6842389571926294528,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7680304330127856707", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 480, + "fileIdentifyingUrlPathSegment": "800/0/1675759554842?e=1677240000&v=beta&t=VGcvOHCUb-Xi2VOqZuFMl44NRzTAIOg9Lai9tQGxMXU", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675759554842?e=1677240000&v=beta&t=CYsbaQKsrM4LmvYCJdZVxJmxqSRPnskAxwOWLyXP0gg", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675759554842?e=1677240000&v=beta&t=COC7OBttysqSBiYlP6dL2ZWYkMnjXha3fVI5Sn_5uGM", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675759554842?e=1677240000&v=beta&t=3y7_uHL091ySL-v_4yFz19pBTOWaZyplBfgRE-e1sPI", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFpQkRbOJmLIA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7680304330127856707)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7680304330127856707)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "univershifte.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: UniverShift\u00e9 by univershifte.fr", + "actionTarget": "https://univershifte.fr/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "UniverShift\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6842389571548811265,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Plus de 100 intervenant(e)s ; un \"village de la transition\" ; 1000 participant(e)s attendu(e)s, et la pr\u00e9sentation de l'int\u00e9gralit\u00e9 du Plan de Transformation de l'Economie Fran\u00e7aise, qui mobilise des centaines de personnes depuis un an (https://lnkd.in/dNARPrU ) : l'Universit\u00e9 d'\u00e9t\u00e9 des Shifters, la premi\u00e8re du nom, se tiendra \u00e0 Lyon dans 15 jours. \n\nChez nous, ca ne sera pas \"\u00e0 propos, que proposez vous sur le climat\" dans une universit\u00e9 d'\u00e9t\u00e9 o\u00f9 le th\u00e8me central est autre, mais \"\u00e0 propos, que proposez vous sur la construction, la sant\u00e9 ou l'emploi\" dans une universit\u00e9 d'\u00e9t\u00e9 o\u00f9 le th\u00e8me central est le climat (et plus largement les limites plan\u00e9taires).\n\nA bient\u00f4t pour celles et ceux qui y viendront !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6842389571548811265,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6842389571926294528,urn:li:activity:6842389571926294528,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 16, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6842389571926294528,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6842389571926294528,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6842389571926294528", + "threadId": "activity:6842389571926294528", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6842389571926294528", + "urn": "urn:li:activity:6842389571926294528", + "numComments": 38, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6842389571926294528", + "reactionTypeCounts": [ + { + "count": 289, + "reactionType": "LIKE" + }, + { + "count": 33, + "reactionType": "PRAISE" + }, + { + "count": 22, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6842389571926294528", + "numLikes": 360, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6842389571926294528", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 360, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6842082392014905345,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6842082392014905345", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6842082392014905345)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6842082392014905345)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-du-business-sans-%C3%A9nergie-et-sans-activity-6842082392014905345-_cB_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6842082391394160641", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6842082392014905345", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6842082392014905345,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6842082392014905345,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6842082391394160641", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "ETsfmrwG2KVoCpd5KnF7uQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6842082392014905345,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8814888731521018077", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676041048833?e=1677240000&v=beta&t=aVz0J1NyuYjsG9K20n4etideGSUe0_w-3E9LGic7xDM", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676041048833?e=1677240000&v=beta&t=jea0SVQwdbM-nDfLQ3AxRjR_axuoHf_r1elSem1Gmfs", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676041048833?e=1677240000&v=beta&t=hc6wxnW_TqCiKhMRiKgQEbllUexi-l6Dwfl9WHXMqs0", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676041048833?e=1677240000&v=beta&t=RZ1lqm_52N4Dzxf4SigQXQpVr6lWPMwgcH-ZDgfu-5U", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGQu_5yP6rP9Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8814888731521018077)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8814888731521018077)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici : Du business sans \u00e9nergie et sans climat ? - ESCP - 06/09/2021 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=LCZQZMpfAWE" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Intervention de Jean-Marc Jancovici \u00e0 l'ESCP Business School. Partie Questions/R\u00e9ponses : 01:13:31 Diaporama \u00e0 t\u00e9l\u00e9charger : https://fr.slideshare.net/JoelleLeconte/jancovici-du-business-sans-nergie-et-sans-climat-escp-06092021 Audio :..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici : Du business sans \u00e9nergie et sans climat ? - ESCP - 06/09/2021" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6842082391394160641,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pauvres \u00e9tudiants de l'ESCP ! A peine rentr\u00e9s de vacances, on leur inflige 2 heures de changement climatique et de contrainte \u00e9nerg\u00e9tique. \n\nLes habitu\u00e9s du discours n'y d\u00e9c\u00e8leront pas de modifications radicales par rapport \u00e0 ce qu'ils connaissent. Mais j'ai quand m\u00eame essay\u00e9, par moments, de proposer quelques cons\u00e9quences concr\u00e8tes pour l'auditoire - qui d\u00e9marre des \u00e9tudes - du constat effectu\u00e9.\n\nJe livre le retour qui m'a \u00e9t\u00e9 fait par une personne de l'assistance :\n\"Les retours que nous avons eu des \u00e9tudiants sont excellents, et vos propos ont suscit\u00e9 un grand int\u00e9r\u00eat dans la promo (m\u00eame si vous avez r\u00e9ussi \u00e0 en d\u00e9primer quelques uns qui ne vous connaissaient pas encore :)).\n\nPour ma part cela fait un moment que je suis vos travaux et vos conf\u00e9rences (depuis le d\u00e9but du covid et votre intervention \u00e0 HEC pr\u00e9cis\u00e9ment) (...)\n\nAyant donc visionn\u00e9 vos conf\u00e9rences en \u00e9coles de commerce, \u00e0 Sciences Po et autres mais aussi vos cours aux Mines, ce qui m'a marqu\u00e9 dans votre conf\u00e9rence \u00e0 l'escp par rapport aux pr\u00e9c\u00e9dentes est la mani\u00e8re directe avec laquelle vous vous \u00eates adress\u00e9 aux \u00e9tudiants. Vous n'avez pas pris de pincettes, et surtout vous avez insist\u00e9 sur le lien entre votre expos\u00e9 et les mati\u00e8res qu'on nous apprend en \u00e9cole de commerce (\"n'allez pas dans le conseil ou en finance\", \"comment faire un business plan dans un monde en contraction\", \"prenez du recul face \u00e0 vos cours d'\u00e9conomie\" etc...).\"\n\nIl n'est pas sur que tout le monde trouvera le discours agr\u00e9able. J'esp\u00e8re surtout qu'il aura \u00e9t\u00e9 utile." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6842082391394160641,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6842082392014905345,urn:li:activity:6842082392014905345,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 105, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6842082392014905345,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6842082392014905345,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6842082392014905345", + "threadId": "activity:6842082392014905345", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6842082392014905345", + "urn": "urn:li:activity:6842082392014905345", + "numComments": 209, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6842082392014905345", + "reactionTypeCounts": [ + { + "count": 2585, + "reactionType": "LIKE" + }, + { + "count": 232, + "reactionType": "PRAISE" + }, + { + "count": 120, + "reactionType": "INTEREST" + }, + { + "count": 55, + "reactionType": "EMPATHY" + }, + { + "count": 44, + "reactionType": "MAYBE" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6842082392014905345", + "numLikes": 3061, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6842082392014905345", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3061, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6841995659315302400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6841995659315302400", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6841995659315302400)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6841995659315302400)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_linking-arctic-variability-and-change-with-activity-6841995659315302400-heW6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6841995658820378624", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6841995659315302400", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6841995659315302400,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6841995659315302400,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6841995658820378624", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "VMohJj7mm/lsprbxNCBu9Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6841995659315302400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8821036209406582076", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1630619993874?e=1677240000&v=beta&t=8-wW3gHPRTMfZczChkc71SczQnNWN43hy0te5OP5Mac", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1630619993874?e=1677240000&v=beta&t=WlHYyhSpKBmOMLVwaEMot2RKqaFramKUkw-RfNb35Ts", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1630619993874?e=1677240000&v=beta&t=cGQETVfqSq1OqNjEvTgTx8jIxQL8TFJYew0SK11lrHQ", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1630619993874?e=1677240000&v=beta&t=HNK6u0g-u7uqDpFb6J4J0kgkm8L8M5Fkbu94yCElr_Y", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQERmY9QBDSsZw/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8821036209406582076)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8821036209406582076)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "science.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Linking Arctic variability and change with extreme winter weather in the United States by science.org", + "actionTarget": "https://www.science.org/doi/10.1126/science.abi9167" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Linking Arctic variability and change with extreme winter weather in the United States" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6841995658820378624,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Plus chaud au Pole Nord, c'est parfois plus froid aux USA, comme ce qui s'est pass\u00e9 au Texas il n'y a pas si longtemps. Cet \u00e9tonnant paradoxe doit \u00e0 l'affaiblissement du vortex polaire dans le cadre du r\u00e9chauffement climatique, parce que la diff\u00e9rence de temp\u00e9rature moyenne entre p\u00f4le et moyennes latitudes a tendance \u00e0 diminuer.\n\nCet affaiblissement du vortex polaire favorise alors les excursions d'air froid aux moyennes latitudes (et corr\u00e9lativement une excursion d'air chaud au p\u00f4le, allant avec des records de chaleur qui s'y multiplient).\n\nUn article publi\u00e9 dans Science documente ce processus, et insiste sur le fait que le r\u00e9chauffement climatique ne va pas supprimer les vagues de grand froid. Les moyennes latitudes vont donc conna\u00eetre une variabilit\u00e9 climatique accrue, pour les temp\u00e9ratures comme pour les pr\u00e9cipitations." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6841995658820378624,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6841995659315302400,urn:li:activity:6841995659315302400,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 9, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6841995659315302400,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6841995659315302400,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6841995659315302400", + "threadId": "activity:6841995659315302400", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841995659315302400", + "urn": "urn:li:activity:6841995659315302400", + "numComments": 34, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6841995659315302400", + "reactionTypeCounts": [ + { + "count": 171, + "reactionType": "LIKE" + }, + { + "count": 41, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6841995659315302400", + "numLikes": 230, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841995659315302400", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 230, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6841994115534594049,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6841994115534594049", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6841994115534594049)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6841994115534594049)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_l%C3%A9conomie-peut-elle-d%C3%A9cro%C3%AEtre-activity-6841994115534594049-RH1_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6841994114968379393", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6841994115534594049", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6841994115534594049,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6841994115534594049,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6841994114968379393", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "SzcgrSdmzkUGYzTd10mGGw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6841994115534594049,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7122534393795769629", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675414865622?e=1677240000&v=beta&t=net8zXaPmlA2Oh_txNbEW20bNdBHUKj6a2mHZDvlAbY", + "expiresAt": 1677240000000, + "height": 526 + }, + { + "width": 1216, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675414865622?e=1677240000&v=beta&t=7Mtz-5QIeTudHwo5FyB8evZ0nRAvmDwgkfmnTCYsFow", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675414865622?e=1677240000&v=beta&t=pZ95Z10pmaDthKZUY2o-k9XI8yyWN_Ohq_wfambVSug", + "expiresAt": 1677240000000, + "height": 105 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675414865622?e=1677240000&v=beta&t=2wT8Bw41LkAxqWNkXOuBCTFAjAfn4Grph2xGNAKqaMg", + "expiresAt": 1677240000000, + "height": 315 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5127AQEj3VPM_SNglw/articleshare-shrink_" + }, + "displayAspectRatio": 0.6575 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7122534393795769629)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7122534393795769629)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'\u00e9conomie peut-elle d\u00e9cro\u00eetre ? by jancovici.com", + "actionTarget": "https://jancovici.com/transition-energetique/choix-de-societe/leconomie-peut-elle-decroitre/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'\u00e9conomie peut-elle d\u00e9cro\u00eetre ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6841994114968379393,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 802, + "length": 21, + "miniProfile": { + "firstName": "Christian", + "lastName": "Mumenthaler", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAC5fzgYBMX2K0cGl_hK1_s_rwMm27TnBw-A", + "occupation": "Group Chief Executive Officer at Swiss Re", + "objectUrn": "urn:li:member:778030598", + "entityUrn": "urn:li:fs_miniProfile:ACoAAC5fzgYBMX2K0cGl_hK1_s_rwMm27TnBw-A", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1574424060845?e=1681948800&v=beta&t=w8m0NKwtdI4bcLYfzxssUx56Cwjc-fOmFEKPY9KG450", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1574424060845?e=1681948800&v=beta&t=YKjPaDrRacpvuciScLZu8KWiNMtlsJojX-tJSxefjwo", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQHg2ibWLqlQ2g/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "christian-mumenthaler", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1574421789075?e=1681948800&v=beta&t=QjojWRr0YlfNs_8t77k_P8LsgZtSKrU6ZiBiRid_RqI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1574421789075?e=1681948800&v=beta&t=BDMKwtgZWcjruui9aIZrTzoczJnSiGzn0eIc47yAqkI", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1574421789075?e=1681948800&v=beta&t=GL1u56GGJyset5YvJh9D5NI1CX_U3T_usGKTdCGkaaY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1574421789075?e=1681948800&v=beta&t=f-zn16yQlovoPqgtwiUNGoXCFJaUv75S145MDWnIAVc", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHgwfeDMc_tZQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wdOPsjDzQvuC75PrfH1T7w==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Le patron de Swiss Re, un des plus gros r\u00e9assureurs mondiaux (un r\u00e9assureur est l'assureur des assureurs, il mutualise donc encore plus les risques) s'exprime sur le climat : https://lnkd.in/dtvZY6wY.\n\nAvantage : cela permet d'\u00e9voquer le sujet puisque c'est dans un journal \u00e9conomique, et que les \"d\u00e9cideurs \u00e9conomiques\" sont en fait les gestionnaires du syst\u00e8me physique d'extraction et de transformation des ressources naturelles que l'on appelle \"\u00e9conomie\" (https://lnkd.in/gPsGK-F ).\n\nMais cette interview illustre un dilemme qui n'est pas compl\u00e8tement anecdotique : vaut-il mieux ne pas parler d'un sujet, ou en parler d'une mani\u00e8re qui va engendrer des conclusions contre-productives pour l'action ?\n\nCar cette interview v\u00e9hicule plusieurs id\u00e9es qui nous poussent dans la mauvaise direction :\n\n- Christian Mumenthaler indique que son groupe vise la neutralit\u00e9 carbone, or cet objectif n'est en fait pas pertinent (https://lnkd.in/dGTt6Zs )\n\n- par construction m\u00eame, il r\u00e9duit les dommages possibles du changement climatique \u00e0 leur dimension \u00e9conomique. Or les activit\u00e9s humaines d\u00e9pendent d'actifs naturels qui sont tous gratuits par convention. D\u00e8s lors, la destruction de ces actifs - non assur\u00e9s puisque gratuits - est \u00e0 la fois \u00e9conomiquement invisible \u00e0 court terme mais potentiellement tr\u00e8s impactante pour l'avenir. \n\n- \u00e0 cause de l'inertie du processus, quand les dommages \u00e9conomiques - parce que physiques - de l'\u00e9volution en cours deviendront suffisamment douloureux pour nous pousser \u00e0 l'action, la seule garantie que nous aurons alors est que ca sera encore pire derri\u00e8re. Donc il ne faut pas en arriver l\u00e0 ! C'est une autre mani\u00e8re de dire que les dommages \u00e9conomiques ne sont pas un signal faible permettant de corriger le tir \u00e0 l'avance\n\n- enfin l'interview\u00e9 semble tr\u00e8s confiant dans la capacit\u00e9 \u00e0 faire de la croissance verte (il parle des formidables investissements pour retirer le CO2 de l'atmosph\u00e8re). Mais rien n'est moins sur que d'y arriver : https://lnkd.in/dDCe4YAm\n\nEsp\u00e9rons que les lecteurs sauront faire la part des choses dans la lecture des propos tenus !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6841994114968379393,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6841994115534594049,urn:li:activity:6841994115534594049,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 23, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6841994115534594049,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6841994115534594049,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6841994115534594049", + "threadId": "activity:6841994115534594049", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841994115534594049", + "urn": "urn:li:activity:6841994115534594049", + "numComments": 44, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6841994115534594049", + "reactionTypeCounts": [ + { + "count": 323, + "reactionType": "LIKE" + }, + { + "count": 52, + "reactionType": "INTEREST" + }, + { + "count": 48, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6841994115534594049", + "numLikes": 433, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841994115534594049", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 433, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6841730305318014977,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6841730305318014977", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6841730305318014977)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6841730305318014977)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-num%C3%A9rique-face-au-d%C3%A9fi-environnemental-activity-6841730305318014977-fnqE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6841730304823107584", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6841730305318014977", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6841730305318014977,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6841730305318014977,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6841730304823107584", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "naUJ/I5Jsc/L5uHGWw5JDQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6841730305318014977,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8897025588308913885", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675952592780?e=1677240000&v=beta&t=F2qCZVsEkmSqg5yp2_ZUhPRwloXMr9cA2TdKvw4bmdU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675952592780?e=1677240000&v=beta&t=hStsaTXppPWUtBwi6swsO9oodFzOO70c0pIX403KjrI", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675952592780?e=1677240000&v=beta&t=q50vvMBlhRx1iT76EHxx2jv8GSy-vneezZ5vXW01p5U", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675952592780?e=1677240000&v=beta&t=IZge0AiwzJ15E7LP_0YSyNWLxgQIGMPkTcpHJOjhxRs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHcCflaZdJidw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8897025588308913885)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8897025588308913885)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le num\u00e9rique face au d\u00e9fi environnemental by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/sciences-prospective/le-numerique-face-au-defi-environnemental-1343624" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le num\u00e9rique face au d\u00e9fi environnemental" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6841730304823107584,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les Echos reviennent sur l'empreinte environnementale du num\u00e9rique, dans cet article qui pose le probl\u00e8me et se garde bien (et tant mieux) de le conclure en expliquant que nos craintes sont infond\u00e9es parce que le num\u00e9rique va d\u00e9carboner tout le reste de la soci\u00e9t\u00e9 (ce qui n'a jamais \u00e9t\u00e9 le cas depuis l'apparition du premier ordinateur, juste apr\u00e8s-guerre).\n\nL'article rappelle que, pour une fois, c'est le S\u00e9nat (traditionnellement conservateur) qui a voulu l\u00e9gif\u00e9rer, avec une loi initi\u00e9e par la droite qui comportait quelques mesures audacieuses (comme l'autorisation conditionnelle d'exploiter les fr\u00e9quences pour les op\u00e9rateurs en fonction de l'\u00e9volution de leur empreinte carbone), et que c'est l'Assembl\u00e9e (moins conservatrice, surtout si on consid\u00e8re que LREM incorpore de nombreux ex-PS) qui a rogn\u00e9 les mesures propos\u00e9es par les s\u00e9nateurs. Le monde \u00e0 l'envers, quoi..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6841730304823107584,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6841730305318014977,urn:li:activity:6841730305318014977,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 24, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6841730305318014977,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6841730305318014977,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6841730305318014977", + "threadId": "activity:6841730305318014977", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841730305318014977", + "urn": "urn:li:activity:6841730305318014977", + "numComments": 33, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6841730305318014977", + "reactionTypeCounts": [ + { + "count": 219, + "reactionType": "LIKE" + }, + { + "count": 36, + "reactionType": "MAYBE" + }, + { + "count": 35, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6841730305318014977", + "numLikes": 296, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841730305318014977", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 296, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6841726433421754368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6841726433421754368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6841726433421754368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6841726433421754368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_apr%C3%A8s-les-prix-n%C3%A9gatifs-voici-les-prix-presque-activity-6841726433421754368-xZBF?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6841726432746446848", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6841726433421754368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6841726433421754368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6841726433421754368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6841726432746446848", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "SYY/n7sJY/Ai4/VIvi2NvA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6841726433421754368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQE26OsqUP3xxA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQE26OsqUP3xxA", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1631194689947?e=1679529600&v=beta&t=bj7U2xUUAKFtiQaije5OsfPoJ_vbeMYrVpYHvVhb9B4", + "expiresAt": 1679529600000, + "height": 1153 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1631194693731?e=1679529600&v=beta&t=A7mvx7NMgUz-fGT4cRsN-zHCeeFC6sx8eGnjkXg-g8o", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1631194693731?e=1679529600&v=beta&t=3TvNpNdpg8fCmhR1QFpVFz8Pu2MNYqkB8gRK02fH4UY", + "expiresAt": 1679529600000, + "height": 721 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1631194693731?e=1679529600&v=beta&t=hNAmJ9Nv8mg1UinrBvm8n6aZO-JSb5yXD_my9s2d7vE", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1631194693731?e=1679529600&v=beta&t=_hu03LwWkpjTXyv0eJjaZRdDBavbTaRzBRhhcHK9T10", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1631194693731?e=1679529600&v=beta&t=-twONUXAJA5t1nuMAfQx3SUGUpRdNDBX9VQ29GbeM_c", + "expiresAt": 1679529600000, + "height": 450 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQE26OsqUP3xxA/feedshare-shrink_" + }, + "displayAspectRatio": 0.56298828125 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6841726432746446848,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s les prix n\u00e9gatifs, voici les prix presque prohibitifs. Depuis plus d'un mois, le prix de gros de l'\u00e9lectricit\u00e9 sur les march\u00e9s spot des pays europ\u00e9ens d\u00e9passe all\u00e8grement les 100 euros le MWh (graphique issu de https://lnkd.in/dfxe6pfH)\n\nQuestion : si vous devez investir \u00e0 vos risques et p\u00e9rils dans un moyen de production \u00e9lectrique qui dure quelques d\u00e9cennies, et qu'en l'espace de 6 mois les prix spot peuvent passer du n\u00e9gatif \u00e0 200 euros le MWh, vous prenez quel pari ?\n\nComme personne n'a de r\u00e9ponse qui soit plus confortable qu'une autre, la r\u00e9ponse est qu'en pareil cas vous serez le plus souvent attentiste... et donc ne ferez rien ou pas grand chose.\n\nCe n'est pas juste par sainte horreur du lib\u00e9ralisme que les prix de l'\u00e9lectricit\u00e9 ont \u00e9t\u00e9 historiquement r\u00e9gul\u00e9s. C'est juste le seul moyen de donner un cadre pour que les investissements se fassent, et du reste c'est tout l'esprit du syst\u00e8me de prix garantis dans les ENR et dans le nucl\u00e9aire (Grande Bretagne) pour les nouveaux investissements (incidemment la Commission vient d'autoriser la France \u00e0 injecter 5,7 milliards pour installer 3,7 GW de photovolta\u00efque sous forme de petites installations, ce qui, en tenant compte des diff\u00e9rences de facteur de charge et de dur\u00e9e de vie, met \"l'\u00e9quivalent EPR\" \u00e0 25 milliards : https://lnkd.in/d9_xzqKB). \n\nEn mettant le plus de march\u00e9 possible dans le syst\u00e8me \u00e9lectrique, l'Europe a juste raccourci les horizons de temps, mis de la complexit\u00e9 dans le syst\u00e8me (qui fait monter les prix puisqu'il faut la payer !), transf\u00e9r\u00e9 la rente du public vers le priv\u00e9, et bloqu\u00e9 les investissements non subventionn\u00e9s. \n\nCe qui est le plus \u00e9tonnant dans l'histoire, c'est notre incapacit\u00e9 collective \u00e0 accepter que quand on a fait un essai qui ne marche pas, il faut arr\u00eater de pers\u00e9v\u00e9rer. Sinon, on passe de l'exp\u00e9rience \u00e9ventuellement utile pour apprendre \u00e0 l'id\u00e9ologie d\u00e9connect\u00e9e des faits." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6841726432746446848,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6841726433421754368,urn:li:activity:6841726433421754368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6841726433421754368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6841726433421754368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6841726433421754368", + "threadId": "activity:6841726433421754368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841726433421754368", + "urn": "urn:li:activity:6841726433421754368", + "numComments": 154, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6841726433421754368", + "reactionTypeCounts": [ + { + "count": 1233, + "reactionType": "LIKE" + }, + { + "count": 165, + "reactionType": "INTEREST" + }, + { + "count": 94, + "reactionType": "PRAISE" + }, + { + "count": 65, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "EMPATHY" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6841726433421754368", + "numLikes": 1576, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841726433421754368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1576, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6841635455868407809,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6841635455868407809", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6841635455868407809)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6841635455868407809)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_2020-report-on-the-transport-sector-activity-6841635455868407809-RHCl?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6841635455323148288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6841635455868407809", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6841635455868407809,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6841635455868407809,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6841635455323148288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "874rq3bcdwjHHR3jMmL9Yg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6841635455868407809,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7979038282043256063", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1631105389255?e=1677240000&v=beta&t=GjPrnFWq5jNojobdOjo9P97JoKbWqeo1F1ycw9ys2mQ", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1631105389255?e=1677240000&v=beta&t=T4--iEK9jagSjq--jg7f1MCPvQWWnwg4Y_9tPILX4HY", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1631105389255?e=1677240000&v=beta&t=giIZGzfAOk3a_g9NhFjiuRY5X9XO_IK9z_4gt_wL5jw", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1631105389255?e=1677240000&v=beta&t=vwDNTySG2A3ljlGUH0EqiYmuLCTPcGb4KQX6TkETfZg", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE4WI0T_T8oCA/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7979038282043256063)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7979038282043256063)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbon4finance.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: 2020 report on the transport sector by carbon4finance.com", + "actionTarget": "http://www.carbon4finance.com/2020-report-on-the-transport-sector-2/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "2020 report on the transport sector" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6841635455323148288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 36, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "CVHQYfJPROyLh3TYFnyIBA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Depuis plusieurs ann\u00e9es maintenant, Carbon4 Finance propose aux acteurs du secteur financier des bases de donn\u00e9es \"notant\" plusieurs milliers (plus de 10.000 d\u00e9sormais) \u00e9metteurs d'actions et obligations en ce qui concerne l'enjeu climatique. Dans cet ensemble, plusieurs milliers d'entreprises font l'objet d'une analyse individualis\u00e9e (les autres font l'objet d'une approche statistique d\u00e9riv\u00e9e de celles analys\u00e9es en d\u00e9tail, ou d'une approche sectorielle). Chaque ann\u00e9e les secteurs analys\u00e9es en \"bottom up\" augmentent.\n\nChaque entit\u00e9 analys\u00e9e se voit attribuer une note synth\u00e9tique, dont les composantes refl\u00e8tent sa position actuelle, sa trajectoire pass\u00e9e et les moyens mis au service de sa d\u00e9carbonation future.\n\nCes analyses sont organis\u00e9es par \"campagne\", c'est \u00e0 dire qu'\u00e0 un moment nous passons en revue une \u00e0 deux centaines d'entit\u00e9s du m\u00eame secteur, et cela donne lieu \u00e0 une publication pour expliquer comment nous les avons analys\u00e9es (une par une), ce que nous avons regard\u00e9, et quelles conclusions nous en tirons, notamment en ce qui concerne le classement des diverses entreprises au sein du m\u00eame secteur, en fonction de leur m\u00e9tier, caract\u00e9ristiques, ambitions, march\u00e9s, etc.\n\nC'est cette approche que nous vous proposons de d\u00e9couvrir pour les entreprises du transport, disponible en t\u00e9l\u00e9chargement sur le site de Carbon 4 Finance, en fran\u00e7ais et en anglais !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6841635455323148288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6841635455868407809,urn:li:activity:6841635455868407809,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 2, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6841635455868407809,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6841635455868407809,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6841635455868407809", + "threadId": "activity:6841635455868407809", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841635455868407809", + "urn": "urn:li:activity:6841635455868407809", + "numComments": 6, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6841635455868407809", + "reactionTypeCounts": [ + { + "count": 70, + "reactionType": "LIKE" + }, + { + "count": 5, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6841635455868407809", + "numLikes": 78, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841635455868407809", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 78, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6841633222024040448,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6841633222024040448", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6841633222024040448)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6841633222024040448)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_a-quoi-sert-encore-le-giec-activity-6841633222024040448-hMih?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6841633221290029056", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6841633222024040448", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6841633222024040448,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6841633222024040448,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6841633221290029056", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "pCEBBzQxe/mhQhLgAolumA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6841633222024040448,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9122256474395822468", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676446057237?e=1677240000&v=beta&t=H_FXnkIFEmz63slclcfZBDnimEF851j9rHs5d09QpNs", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676446057237?e=1677240000&v=beta&t=YX5CxVxFcsEaywNdflwVDl-d0vQ2xZ3BM81Zl4VmGDk", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676446057237?e=1677240000&v=beta&t=q-VfpX1ObZKAOgiz18ejOaRVgJUprsP5OU4XXrt2PWU", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676446057237?e=1677240000&v=beta&t=db9YbcdSBwdoRwY0EzvARWPri8gwrlJtgjN8xQomP_g", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHYInRbp_4SyA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9122256474395822468)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9122256474395822468)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab A quoi sert encore le GIEC ? \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/idees/article/2021/09/04/a-quoi-sert-encore-le-giec_6093419_3232.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0A quoi sert encore le GIEC\u00a0?\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6841633221290029056,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 70, + "length": 16, + "miniProfile": { + "firstName": "Stephane", + "lastName": "Foucart", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAABv2IoBn0BOirWMxsoYYR5uscV_zSBgOsQ", + "occupation": "Science correspondent at Le Monde", + "objectUrn": "urn:li:member:7329930", + "entityUrn": "urn:li:fs_miniProfile:ACoAAABv2IoBn0BOirWMxsoYYR5uscV_zSBgOsQ", + "publicIdentifier": "stephane-foucart-a365552", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1671650011916?e=1681948800&v=beta&t=sfTLd37tuMTn6GnoUXgIh3p8Kd1Q8nGH6Jb0NOsYVik", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1671650011916?e=1681948800&v=beta&t=294ugk_qvRG2tyRBFSIp_x6b10jnkKoB_E77n3IvYjU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1671650011916?e=1681948800&v=beta&t=6mVeDPnhS5EiphvG29TceeHVP10ornsRqKhxz_rOQNI", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1671650011916?e=1681948800&v=beta&t=dwsqw7IVhyIFy4qgvPS_VaLwq93SG6umZhm1YhiVNBc", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQGHs1C_06t5hA/profile-displayphoto-shrink_" + } + }, + "trackingId": "oMQWtP7ZSO2iF+8K5nUU1A==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Faut-il dissoudre le GIEC ? Voici une int\u00e9ressante question pos\u00e9e par Stephane Foucart dans cet article du Monde. La raison avanc\u00e9e par l'auteur n'est \u00e9videmment pas la qualit\u00e9 du constat scientifique r\u00e9sum\u00e9 (si l'on peut dire : 4000 pages !) par cet organisme. Non, son interrogation est la suivante : d\u00e8s lors que le GIEC produit un rapport toutes les N ann\u00e9es (N compris entre 4 et 7), alors il y a une raison permanente de ne rien faire, qui est d'attendre le rapport d'apr\u00e8s, en (se) disant qu'il pr\u00e9cisera un peu mieux les choses, donc permettra de cibler un peu mieux l'action.\n\nUn article publi\u00e9 il y a des ann\u00e9es dans la presse am\u00e9ricaine avait tourn\u00e9 autour de la m\u00eame question, en titrant, \u00e0 propos du constat scientifique \"how much is too much?\". On peut faire le parall\u00e8le avec les examens m\u00e9dicaux et les traitements : tant que l'on est dans le processus de regarder notre carcasse un peu en d\u00e9tail, il est tentant de ne pas donner de traitement dans l'attente de savoir quelle est exactement la nature de la maladie.\n\nEvidemment, la question \"sym\u00e9trique\" est de savoir si cela d\u00e9clencherait plus l'action que le GIEC dise (ou ait dit) \"voil\u00e0, nous vous avons dit tout ce que nous avions \u00e0 vous dire, ce que vous pouvez constater avec le fait que le 6\u00e8 rapport d'\u00e9valuation ne dit pas des choses tr\u00e8s diff\u00e9rentes du 1er, sauf qu'une partie de ce qui devait arriver en cas de poursuite des \u00e9missions arrive effectivement, et maintenant on pose le stylo, car l'humanit\u00e9 en sait bien assez pour se demander ce qu'elle fait face au probl\u00e8me\".\n\nFoucart se demande en conclusion si le monde politique n'a pas, en fait, utilis\u00e9 la science comme pr\u00e9texte \u00e0 l'inaction (au corps d\u00e9fendant des scientifiques \u00e9videmment) : il suffisait de pr\u00e9senter comme une action de laisser les scientifiques travailler.\n\nSt\u00e9phane a raison de poser la question, parce que cette tentation d'attendre d'en savoir toujours plus et de ne rien faire de s\u00e9rieux en attendant est r\u00e9elle. Mais une des solutions se trouve dans sa propre profession : elle aurait \u00e9t\u00e9 que, d\u00e8s les premi\u00e8res alertes, la presse sache expliquer correctement le probl\u00e8me, ses composantes techniques, ses implications, et les arbitrages qu'il demande de trancher, notamment entre \u00e9conomie et environnement. Cela aurait demand\u00e9 une capacit\u00e9 \u00e0 traiter des probl\u00e8mes transversaux avec une forte composante technique que, en pratique, elle n'a malheureusement que tr\u00e8s peu." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6841633221290029056,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6841633222024040448,urn:li:activity:6841633222024040448,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 70, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6841633222024040448,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6841633222024040448,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6841633222024040448", + "threadId": "activity:6841633222024040448", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841633222024040448", + "urn": "urn:li:activity:6841633222024040448", + "numComments": 97, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6841633222024040448", + "reactionTypeCounts": [ + { + "count": 1137, + "reactionType": "LIKE" + }, + { + "count": 270, + "reactionType": "MAYBE" + }, + { + "count": 148, + "reactionType": "INTEREST" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6841633222024040448", + "numLikes": 1594, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841633222024040448", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1594, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6841241335467393024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6841241335467393024", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6841241335467393024)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6841241335467393024)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_convention-citoyenne-pour-le-climat-quelles-activity-6841241335467393024-ZM4K?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6841241335085703168", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6841241335467393024", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6841241335467393024,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6841241335467393024,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6841241335085703168", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "n+nBXP7hAi6yMRrsMFiBLQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6841241335467393024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8713006804082966807", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 454, + "fileIdentifyingUrlPathSegment": "800/0/1675972623381?e=1677240000&v=beta&t=pkdYT64aT9v5kpiAuddOfHaVwoio2sRom2uvTSfi3d0", + "expiresAt": 1677240000000, + "height": 227 + }, + { + "width": 454, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675972623381?e=1677240000&v=beta&t=x1JTZtNW88hCQO_6XMakzsq58zBgAwDINGkGoKdgRNs", + "expiresAt": 1677240000000, + "height": 227 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675972623382?e=1677240000&v=beta&t=Ec57prBC3KznPgZp0otxyna60-K1aSw0aRA8px-NiU0", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 454, + "fileIdentifyingUrlPathSegment": "480/0/1675972623382?e=1677240000&v=beta&t=du80TBFN7U7aV9thHVHpj81qAvZmgiS9TGgLNXyBYco", + "expiresAt": 1677240000000, + "height": 227 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFsErGUT-woLA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8713006804082966807)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8713006804082966807)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Convention Citoyenne pour le Climat : quelles cl\u00e9s pour l'action ? - avec Cyril Dion et J-M Jancovici by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/climat-action-dion-jancovici/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Convention Citoyenne pour le Climat : quelles cl\u00e9s pour l'action ? - avec Cyril Dion et J-M Jancovici" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6841241335085703168,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 38, + "length": 17, + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "dJXWAhOmTGOm251oKiDMkA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 59, + "length": 11, + "miniCompany": { + "objectUrn": "urn:li:company:28737299", + "entityUrn": "urn:li:fs_miniCompany:28737299", + "name": "On Est Pr\u00eat", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1636455245335?e=1684972800&v=beta&t=VPTq-cMPSEoHjtBlUAYmly6ANWGDZzW2E2jD1zsFeCQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1636455245335?e=1684972800&v=beta&t=DeYqdMhFuTDkogO16D5W7YEU5A8FR-hNk9ZZqW3EoIM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1636455245335?e=1684972800&v=beta&t=9xulyD8K3nYqF_fUAdoBxBBXUuYsQf9SQIrvScuUmRc", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHwiPPHmt5a3Q/company-logo_" + } + }, + "universalName": "onestpret", + "dashCompanyUrn": "urn:li:fsd_company:28737299", + "trackingId": "FRPVX1eAT1C4OXLr2CCNCg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Lundi prochain (13 septembre), \u00e0 18h, The Shift Project et On Est Pr\u00eat organisent conjointement le \"passage sur le gril\" de Cyril Dion, et c'est votre serviteur qui sera \u00e0 la manoeuvre.\n\nMaintenant que la Convention Citoyenne sur le Climat appartient, pour le meilleur et le pire, au pass\u00e9, l'id\u00e9e est de comprendre quels enseignements il en tire, jusqu'o\u00f9 les attentes qui existaient avant le d\u00e9but de l'exp\u00e9rience ont \u00e9t\u00e9 satisfaites, et au final si cette exp\u00e9rience aura chang\u00e9 ou pas le destin de notre pays, et de quelle mani\u00e8re.\n\nC'est \u00e9videmment ouvert \u00e0 tou(te)s et gratuit." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6841241335085703168,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6841241335467393024,urn:li:activity:6841241335467393024,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 29, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6841241335467393024,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6841241335467393024,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6841241335467393024", + "threadId": "activity:6841241335467393024", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841241335467393024", + "urn": "urn:li:activity:6841241335467393024", + "numComments": 42, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6841241335467393024", + "reactionTypeCounts": [ + { + "count": 1169, + "reactionType": "LIKE" + }, + { + "count": 47, + "reactionType": "PRAISE" + }, + { + "count": 46, + "reactionType": "MAYBE" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6841241335467393024", + "numLikes": 1301, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841241335467393024", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1301, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6841015576370913280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6841015576370913280", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6841015576370913280)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6841015576370913280)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_home-applegreen-carbon-reduction-activity-6841015576370913280-rUXD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6841015575913734144", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6841015576370913280", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6841015576370913280,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6841015576370913280,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6841015575913734144", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "053jvVfJev6Gtt1LdBfDsw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6841015576370913280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8557921754485551108", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675788692294?e=1677240000&v=beta&t=I962Z7GLe2W3GOM8KgCBe5JdkzNw5vvy9PKLjFlTy1I", + "expiresAt": 1677240000000, + "height": 431 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675788692294?e=1677240000&v=beta&t=3ZOIE1CSLd30fcQ4AuJxfTYMAMNlZPp4SVbxx9AgA2c", + "expiresAt": 1677240000000, + "height": 689 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675788692294?e=1677240000&v=beta&t=RSNT2GUgvDA7dZrFCo-fGzWpresQEb53VS-z9qnKBfw", + "expiresAt": 1677240000000, + "height": 86 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675788692294?e=1677240000&v=beta&t=5rjGvxWkmPXVBOy-uj0oCW2d5aX3OGBRgD998NyPe-Q", + "expiresAt": 1677240000000, + "height": 258 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQG8qRC_iGozig/articleshare-shrink_" + }, + "displayAspectRatio": 0.53875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8557921754485551108)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8557921754485551108)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "drivechange.applegreen.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Home | Applegreen Carbon Reduction by drivechange.applegreen.com", + "actionTarget": "https://drivechange.applegreen.com/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Home | Applegreen Carbon Reduction" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6841015575913734144,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Vous avez mauvaise conscience en conduisant une voiture \u00e0 p\u00e9trole ? Un distributeur irlandais de carburant a trouv\u00e9 la solution : l'essence neutre. Le principe est le suivant : pour chaque tonne de carbone \u00e9mise par l'usage (donc la combustion) du carburant vendu, ils plantent un arbre (en prenant soin de pr\u00e9ciser qu'il y aura ch\u00eanes, bouleaux, noisetiers...).\n\nDu coup, fin du cas de conscience : plus vous conduisez, plus vous \u00eates \u00e9colos ! C'est pas beau la vie :) ?\n\nBien \u00e9videmment, il s'agit d'un trompe l'oeil :\n- les \u00e9missions du carburant sont imm\u00e9diates. L'arbre plant\u00e9 captera du CO2 \"plus tard\" (or le d\u00e9calage temporel est un probl\u00e8me), \u00e0 condition qu'il ne meure pas de sec, de chaud, de parasites, ou qu'il ne soit pas coup\u00e9 parce que la population sera en stress \u00e9nerg\u00e9tique (rappelons que le charbon a sauv\u00e9 ce qu'il restait des for\u00eats fran\u00e7aises apr\u00e8s le milieu du 19\u00e8 si\u00e8cle, d\u00e9forest\u00e9es \u00e0 vitesse acc\u00e9l\u00e9r\u00e9es par les forges et le chauffage),\n- planter des arbres ne garantit pas la disponibilit\u00e9 future du p\u00e9trole. Or ce dernier va progressivement \u00eatre moins facile \u00e0 importer en Europe (https://lnkd.in/dwPcgve )\n- planter des arbres ne garantit pas non la taille du march\u00e9. Si, dans sa grande sagesse, le gouvernement irlandais d\u00e9cide de fortement r\u00e9duire la consommation de p\u00e9trole des voitures (diminution de leur nombre, de leur consommation unitaire, \u00e9lectrification...), cela \"attaquera\" le march\u00e9 du pompiste, et planter des arbres n'est pas \u00e9quivalent \u00e0 un changement de business model (comme par exemple d\u00e9marrer une activit\u00e9 de vente et entretien de v\u00e9los \u00e9lectriques).\n\nPlanter des arbres est essentiel. Mais ca n'est pas une activit\u00e9 qui doit \u00eatre lib\u00e9ratoire pour l'action sur les \u00e9missions. Il faut faire les deux en m\u00eame temps !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6841015575913734144,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6841015576370913280,urn:li:activity:6841015576370913280,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6841015576370913280,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6841015576370913280,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6841015576370913280", + "threadId": "activity:6841015576370913280", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841015576370913280", + "urn": "urn:li:activity:6841015576370913280", + "numComments": 109, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6841015576370913280", + "reactionTypeCounts": [ + { + "count": 1265, + "reactionType": "LIKE" + }, + { + "count": 75, + "reactionType": "INTEREST" + }, + { + "count": 39, + "reactionType": "MAYBE" + }, + { + "count": 28, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "EMPATHY" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6841015576370913280", + "numLikes": 1427, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6841015576370913280", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1427, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6840891756905545728,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6840891756905545728", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6840891756905545728)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6840891756905545728)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_%C3%A9olien-en-mer-le-rapport-complexe-entre-activity-6840891756905545728-3QHc?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6840891755680817152", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6840891756905545728", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6840891756905545728,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6840891756905545728,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6840891755680817152", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "K8Uv3Yp6S/IrXft/EPqAHQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6840891756905545728,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7195670288165825860", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676366237884?e=1677240000&v=beta&t=FhA5c1sCtkRM3jMF2smXj-QujaLeQJI1pF6V8tFLJBk", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676366237885?e=1677240000&v=beta&t=_4loCGSWoXcGSdzuPoBPkBGqLtZrPyVe4Smo_GQqh6o", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676366237885?e=1677240000&v=beta&t=_g6s-n0aXR4qBuNx2OXmFfCwPYxGvrmeGWAkgmld0Rk", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676366237885?e=1677240000&v=beta&t=SfYvkI886FfNErjBFhr1NQ4NxfC2FVVfV1q7qHfp57Q", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFdB2xUSedgYA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7195670288165825860)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7195670288165825860)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "actu-environnement.com \u2022 10 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00c9olien en mer : le rapport complexe entre \u00e9nergies renouvelables, biodiversit\u00e9 et sites prot\u00e9g\u00e9s by actu-environnement.com", + "actionTarget": "https://www.actu-environnement.com/ae/news/eolien-mer-offshore-rapport-energies-renouvelables-biodiversite-sites-natura-2000-38068.php4" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00c9olien en mer : le rapport complexe entre \u00e9nergies renouvelables, biodiversit\u00e9 et sites prot\u00e9g\u00e9s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6840891755680817152,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Minist\u00e8re de la transition (\u00e9oliennes) contre minist\u00e8re de la transition (biodiversit\u00e9), qui gagne ? \n\nLe Conseil national de la protection de la nature a rendu au d\u00e9but de l'\u00e9t\u00e9 une \u00e9tude, faisant suite \u00e0 une autosaisine (donc ce n'est pas un geste politique d'avoir demand\u00e9 quelque chose \u00e0 cette instance), qui indique que le d\u00e9veloppement envisag\u00e9 de l'\u00e9olien offshore ne peut pas se faire dans le respect de la protection de l'avifaune marine. \n\nAu d\u00e9but du d\u00e9ploiement de l'\u00e9olien, nos sens ne nous ont pas dit que nous allions avoir un petit sujet d'espace disponible. Les caract\u00e9ristiques objectives d'UNE \u00e9olienne n'en font effectivement pas une nuisance majeure, et il n'y avait pas beaucoup d'\u00e9oliennes install\u00e9es, donc on pouvait constater \"avec nos sens\" que la nuisance globale \u00e9tait faible, alors que son d\u00e9ploiement \u00e9tait associ\u00e9 \u00e0 un discours d'espoir.\n\nNotre esprit aurait pu nous le dire, par contre. Il suffit de faire une r\u00e8gle de trois pour voir combien de machines on doit installer si on va jusqu'au bout de la logique, et du coup quelle surface se retrouve \"pas loin d'une \u00e9olienne, avec les inconv\u00e9nients associ\u00e9s qui ne sont plus du m\u00eame ordre de grandeur. \n\nC'est au fond ce calcul l\u00e0 que le Conseil national de la protection de la nature vient de faire, et le r\u00e9sultat ne lui semble pas compatible avec le respect de la biodiversit\u00e9.\n\nCette profusion d'\u00e9oliennes si on veut en tirer quelque chose de significatif tient au caract\u00e8re diffus de l'air en mouvement : il faut alors beaucoup de collecteurs pour r\u00e9cup\u00e9rer cette \u00e9nergie. Et donc si nous essayons d'aller aux niveaux requis pour que cela commence \u00e0 repr\u00e9senter l'\u00e9quivalent du p\u00e9trole, ca va occuper beaucoup - \u00e9norm\u00e9ment - d'espace, \u00eatre pr\u00e9sent en beaucoup - \u00e9norm\u00e9ment - d'endroits, et demander beaucoup de mat\u00e9riaux. C'est h\u00e9las juste \"physique\". M\u00eame dans un monde sobre en \u00e9nergie, miser avant tout sur des sources denses et d\u00e9carbon\u00e9es - donc les nucl\u00e9aires - n'est pas n\u00e9cessairement le choix le plus idiot qui soit, notamment pour la biodiversit\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6840891755680817152,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6840891756905545728,urn:li:activity:6840891756905545728,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 49, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6840891756905545728,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6840891756905545728,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6840891756905545728", + "threadId": "activity:6840891756905545728", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6840891756905545728", + "urn": "urn:li:activity:6840891756905545728", + "numComments": 158, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6840891756905545728", + "reactionTypeCounts": [ + { + "count": 649, + "reactionType": "LIKE" + }, + { + "count": 76, + "reactionType": "INTEREST" + }, + { + "count": 69, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6840891756905545728", + "numLikes": 818, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6840891756905545728", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 818, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6840534590956818432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6840534590956818432", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6840534590956818432)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6840534590956818432)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_avec-la-t%C3%AAte-dans-le-four-et-les-pieds-dans-activity-6840534590956818432-yg0D?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6840534590117961728", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6840534590956818432", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6840534590956818432,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6840534590956818432,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6840534590117961728", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "iudyniOd11HiQAAh1hjg/Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6840534590956818432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQF62OcMPs2I9w", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQF62OcMPs2I9w", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1630910534959?e=1679529600&v=beta&t=T0X_gXj8zqMsAekikfH2XYQ3jurxAtYS9CUzXjnkU3A", + "expiresAt": 1679529600000, + "height": 1160 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1630910536787?e=1679529600&v=beta&t=4ySbwal1s53KrRFz7ifh2Xr-19cx5bZP3AdBKQ8VHUQ", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1630910536787?e=1679529600&v=beta&t=dQThugjBZnKsEolbRoyr8A07LAZQ_LEPiQIG_nGoWrA", + "expiresAt": 1679529600000, + "height": 725 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1630910536787?e=1679529600&v=beta&t=H3lFUy_BMPM4-qtoob_0rn_kdRmLpXqZZWIE9I2oNFw", + "expiresAt": 1679529600000, + "height": 272 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1630910536787?e=1679529600&v=beta&t=nd1UKv2YDhXdaeKdrGPXySI-eFoXvCWChupsN6jmaQM", + "expiresAt": 1679529600000, + "height": 91 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1630910536787?e=1679529600&v=beta&t=b6v_qmkVhUCrbNo6oY3Oynlps74QtklsaoNG-85u8Vc", + "expiresAt": 1679529600000, + "height": 453 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQF62OcMPs2I9w/feedshare-shrink_" + }, + "displayAspectRatio": 0.56640625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "map" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6840534590117961728,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Avec la t\u00eate dans le four et les pieds dans le cong\u00e9lateur, \"en moyenne\" je suis bien. Cette plaisanterie connue sur le fait qu'une moyenne ne dit pas tout pourrait s'appliquer, en version am\u00e8re, aux Etats Unis actuellement. En effet, pendant que le Sud et l'Est du pays viennent de se faire saucer d'abondance par l'ouragan Ida, avec des inondations exceptionnelles \u00e0 la cl\u00e9, l'Ouest est toujours aux prises avec une s\u00e9cheresse historique, comme en t\u00e9moigne la carte \u00e9tablie par https://lnkd.in/dQVN83A\n\nPour la d\u00e9rive climatique qui nous attend, la moyenne ne va pas non plus dire tout. Une temp\u00e9rature qui se r\u00e9chauffe de 2\u00b0C \"en moyenne\", ce n'est pas pareil si cette hausse est bien r\u00e9partie sur l'ensemble du globe, et l'ensemble de l'ann\u00e9e, ou si elle signifie une temp\u00e9rature inchang\u00e9e 90% du temps, et des valeurs qui augmentent de 20 \u00b0C 10% du temps.\n\nDu reste, la terminologie \"ph\u00e9nom\u00e8nes extr\u00eames\" est bien adapt\u00e9e \u00e0 ce qu'elle d\u00e9signe : des extr\u00eames par rapport aux valeurs moyennes. Ce qui va compter, dans l'\u00e9volution future, est donc avant tout l'\u00e9volution des extr\u00eames, qui ont le potentiel de rendre, en peu de temps, la \"vie d'apr\u00e8s\" tr\u00e8s diff\u00e9rente de la \"vie d'avant\". \n\nIl suffit en effet de quelques mois avec des conditions extraordinairement chaudes et s\u00e8ches pour d\u00e9truire une v\u00e9g\u00e9tation qui mettra au mieux des d\u00e9cennies \u00e0 se reconstituer, et m\u00eame de quelques heures dans un ouragan pour que des infrastructures disparaissent pour des ann\u00e9es ou des d\u00e9cennies.\n\nManque de chance pour nous, les outils \u00e0 la disposition des scientifiques pour appr\u00e9cier l'avenir sont moins pr\u00e9cis pour ce qui concerne les extr\u00eames que ce qui concerne les moyennes. Pour ces derni\u00e8res, elles d\u00e9coulent assez directement de la quantit\u00e9 suppl\u00e9mentaire d'\u00e9nergie embarqu\u00e9e dans le syst\u00e8me - elle-m\u00eame d\u00e9termin\u00e9e par le suppl\u00e9ment d'effet de serre, qui est assez homog\u00e8ne par nature, et facile \u00e0 calculer.\n\nMais pour les extr\u00eames, il faut appr\u00e9cier l'\u00e9volution de la variabilit\u00e9, et l\u00e0 c'est une autre paire de manches. Ce sont des ph\u00e9nom\u00e8nes localis\u00e9s, (tr\u00e8s) courts au regard de la tendance de fond, et d\u00e9pendant souvent d'une conjonction de facteurs. C'est pour cela que, pour les extr\u00eames, les surprises sont bien plus probables que pour les moyennes, parce que la difficult\u00e9 \u00e0 pr\u00e9voir est bien plus grande.\n\nEt chacun(e) d'entre nous sait que les surprises peuvent \u00eatre bonnes, mais aussi mauvaises. L'incertitude, ce n'est pas une police d'assurance." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6840534590117961728,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6840534590956818432,urn:li:activity:6840534590956818432,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 47, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6840534590956818432,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6840534590956818432,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6840534590956818432", + "threadId": "activity:6840534590956818432", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6840534590956818432", + "urn": "urn:li:activity:6840534590956818432", + "numComments": 118, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6840534590956818432", + "reactionTypeCounts": [ + { + "count": 1246, + "reactionType": "LIKE" + }, + { + "count": 206, + "reactionType": "INTEREST" + }, + { + "count": 137, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6840534590956818432", + "numLikes": 1611, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6840534590956818432", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1611, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6840331689596596224,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6840331689596596224", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6840331689596596224)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6840331689596596224)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_consommer-moins-de-p%C3%A9trole-pour-des-raisons-activity-6840331689596596224-Wxvp?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6840331688891949056", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6840331689596596224", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6840331689596596224,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6840331689596596224,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6840331688891949056", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "DDSWlJsLNuK6XpFgRL27MQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6840331689596596224,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHLaO-LFnVCAw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHLaO-LFnVCAw", + "artifacts": [ + { + "width": 716, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1630862160710?e=1679529600&v=beta&t=XROjQb80AtUI0l34geiqGwLtI3sA2iPZsZWufHAsOXY", + "expiresAt": 1679529600000, + "height": 414 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1630862160769?e=1679529600&v=beta&t=SRC_mtvSCNVRPJH8sKf-uJQTvv1BDYTXkbrOZBU_SOM", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 716, + "fileIdentifyingUrlPathSegment": "1280/0/1630862160769?e=1679529600&v=beta&t=mGNbNK76gMGirgAW9q3gBk_TGXL2PcT8DthJSp6zPKo", + "expiresAt": 1679529600000, + "height": 414 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1630862160769?e=1679529600&v=beta&t=rYU56KtB8TY7b3Q-ZhjgEAA7eFDCxOvedwgwTo0Btek", + "expiresAt": 1679529600000, + "height": 278 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1630862160769?e=1679529600&v=beta&t=VvlacrSFIE-OwbSu3Ba0-kWv19YPzhgzycQpC3yNrDE", + "expiresAt": 1679529600000, + "height": 93 + }, + { + "width": 716, + "fileIdentifyingUrlPathSegment": "800/0/1630862160769?e=1679529600&v=beta&t=n-h0nnapNT1XnkOy2zNIbvHDn9lmQH_LtiJb_ipKjzE", + "expiresAt": 1679529600000, + "height": 414 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHLaO-LFnVCAw/feedshare-shrink_" + }, + "displayAspectRatio": 0.5782122905027933 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6840331688891949056,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Consommer moins de p\u00e9trole pour des raisons climatiques, cela fait un moment que l'on en parle. Depuis 1988 pour ceux qui voient la date de cr\u00e9ation du GIEC comme le point de d\u00e9part de cette pr\u00e9occupation, probablement depuis avant dans une petite partie de la communaut\u00e9 scientifique, et \u00e0 de nombreuses reprises depuis apr\u00e8s, assur\u00e9ment.\n\nMais quand on regarde la courbe de consommation de produits p\u00e9troliers dans les pays de l'OCDE, qui revendiquent les discours les plus anciens sur la pr\u00e9servation du climat, force est de constater que seules les crises ont eu un r\u00f4le discernable dans la limitation de notre soif d'or noir.\n\nLe graphique ci-dessous (donn\u00e9es BP Stat) illustre la consommation de produits p\u00e9troliers par cat\u00e9gorie (donc apr\u00e8s raffinage) dans la zone OCDE. les \"light distillates\" d\u00e9signent essentiellement l'essence, donc les transports terrestres. Dans \"middle distillates\", on trouve le fioul (ou le diesel, c'est le m\u00eame produit) et le k\u00e9ros\u00e8ne, qui servent donc dans les transports terrestres et a\u00e9rien, le chauffage, et dans l'industrie, et l'agriculture.\n\nFuel oil, c'est le fioul lourd, qui sert dans la marine marchande, et la g\u00e9n\u00e9ration \u00e9lectrique.\n\nOthers ce sont les produits raffin\u00e9s aux deux extr\u00e9mit\u00e9s de la \"densit\u00e9\" : les produits les plus l\u00e9gers (\u00e9thane, naphta) qui partiront dans la p\u00e9trochimie, puis se retrouveront dans \u00e0 peu pr\u00e8s n'importe quoi que vous puissiez acheter aujourd'hui, de la brosse \u00e0 dents \u00e0 la peinture, du tupperware au vernis \u00e0 ongles, des chaises de jardin (m\u00eame en bois si elles sont vernies) aux gaines des fibres optiques, des phytosanitaires aux machines \u00e0 caf\u00e9. \n\nLes produits les plus lourds, ce sont les bitumes, huiles et cires, qui sont aussi indispensables comme produits interm\u00e9diaires dans toute la chaine industrielle. \n\nIl y a 3 moments o\u00f9 la consommation de p\u00e9trole a \u00e9t\u00e9 infl\u00e9chie : 1973 - la croissance physique de la production de p\u00e9trole passe de 8% par an \u00e0 1% par manque de ressources, le pic de production des d\u00e9couvertes conventionnelles \u00e9tant pass\u00e9 10 ans avant, puis 2006 - \u00e0 nouveau par manque de ressources, la production de p\u00e9trole conventionnel passant par son pic mondial (AIE, 2018), et enfin 2019 (juste avant le covid) parce que le shale oil s'arr\u00eate de croitre par manque de financements.\n\nRien, dans ces \u00e9v\u00e9nements, n'est du \u00e0 notre volont\u00e9 d'en consommer moins (la consommation repartait \u00e0 la hausse en m\u00eame temps que la voiture \u00e9lectrique commencait \u00e0 sortir du bruit de fond !). C'est dire si nous n'avons pas id\u00e9e de ce qui nous attend si nous devons diminuer notre consommation de ce liquide de 5% par an tous les ans pour les d\u00e9cennies qui viennent, comme le demande l'accord de Paris." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6840331688891949056,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6840331689596596224,urn:li:activity:6840331689596596224,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6840331689596596224,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6840331689596596224,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6840331689596596224", + "threadId": "activity:6840331689596596224", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6840331689596596224", + "urn": "urn:li:activity:6840331689596596224", + "numComments": 70, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6840331689596596224", + "reactionTypeCounts": [ + { + "count": 601, + "reactionType": "LIKE" + }, + { + "count": 107, + "reactionType": "INTEREST" + }, + { + "count": 67, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6840331689596596224", + "numLikes": 789, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6840331689596596224", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 789, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6840209253622398976,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6840209253622398976", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6840209253622398976)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6840209253622398976)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_depuis-hier-jai-un-nouvel-employeur-qui-activity-6840209253622398976-dY8K?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6840209252900978688", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6840209253622398976", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6840209253622398976,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6840209253622398976,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6840209252900978688", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "1tkjJMVKLmUZBRLwPAvDOw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6840209253622398976,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEICh71rbs1XA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEICh71rbs1XA", + "artifacts": [ + { + "width": 912, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1630832969457?e=1679529600&v=beta&t=R8r9jm9E0Mc1bDUjYQeF8PTaw-xMLtCZCt4aEl2_NJ4", + "expiresAt": 1679529600000, + "height": 692 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1630832970106?e=1679529600&v=beta&t=udFZoz2ySR3902GI71ovkCao62e8yObyaCz3B3mXMY4", + "expiresAt": 1679529600000, + "height": 15 + }, + { + "width": 912, + "fileIdentifyingUrlPathSegment": "1280/0/1630832970106?e=1679529600&v=beta&t=Npo9Eff-84xytzoRtuGuvGqczhs9HjCqYhLty7b7hYA", + "expiresAt": 1679529600000, + "height": 692 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1630832970106?e=1679529600&v=beta&t=BqfPzBAGD2XISdxwYWQJKBnQAix3DwNb5F2Nf3iAGik", + "expiresAt": 1679529600000, + "height": 364 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1630832970106?e=1679529600&v=beta&t=RL20V7sFxFwpUHQbpFAcb4RBOU1xWZPPMK2rAuKN9h8", + "expiresAt": 1679529600000, + "height": 121 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1630832970106?e=1679529600&v=beta&t=EOKPZAX-PID4nzmBVHPp2U765wSYcG67ql8dTHecrmI", + "expiresAt": 1679529600000, + "height": 607 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEICh71rbs1XA/feedshare-shrink_" + }, + "displayAspectRatio": 0.7587719298245614 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "a desktop computer sitting on top of a desk" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6840209252900978688,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis hier, j'ai un nouvel employeur, qui a la particularit\u00e9 d'\u00eatre \u00e0 temps tr\u00e8s partiel, et... de ne pas me payer (!), \u00e0 savoir RTL, qui m'a propos\u00e9 de diffuser une chronique hebdomadaire intitul\u00e9e \"C'est notre plan\u00e8te\" dans la matinale du Samedi matin. L'enregistrement de la premi\u00e8re \u00e9dition, qui portait sur le rapport du GIEC publi\u00e9 cet \u00e9t\u00e9, est disponible ici : https://lnkd.in/d6EEGJh7\n\nBien \u00e9videmment, je ne me l\u00e8ve pas \u00e0 6h du matin le Samedi pour faire cela. Comme beaucoup de chroniques des matinales, c'est enregistr\u00e9 \u00e0 l'avance, et je ferai m\u00eame cela par paquets de 3 ou 4 chroniques, pour ne pas avoir \u00e0 aller trop souvent dans les locaux de la radio, o\u00f9 il faut \u00eatre pr\u00e9sent pour l'enregistrement. Le sujet que je traite n'a pas que peu besoin d'une r\u00e9action au buzz de la veille.\n\n3 minutes une fois par semaine, c'est \u00e0 la fois ridicule (0,03% du temps d'antenne hebdomadaire) et \"significatif\" dans une matinale, o\u00f9 il est rare qu'un invit\u00e9, f\u00fbt-il ministre, dispose de beaucoup plus de 10 minutes de temps de parole. Donc on tente l'exp\u00e9rience, et on verra bien ce que cela donne.\n\nM\u00eame si RTL est une des radios les plus \u00e9cout\u00e9es de notre pays (la matinale week-end revendique un pic un peu en dessous de 2 millions d'auditeurs), ca ne fera qu'un peu moins de 3% de la population. Et surtout l'audience de la radio n'est pas toute jeune (moyenne d'\u00e2ge pas loin de 60 ans), donc peu \"plastique\" et ayant du mal \u00e0 changer ses habitudes. Avant de dire oui, je me suis donc demand\u00e9 si ca allait servir \u00e0 quelque chose.\n\nDans les arguments \"pour\", j'ai retenu :\n- que les gens qui votent sont aussi \u00e2g\u00e9s (l'abstention des jeunes devient record),\n- que les propri\u00e9taires de logements sont plus \u00e2g\u00e9s que la moyenne (or ce sont notamment eux qui doivent payer pour la d\u00e9carbonation des b\u00e2timents).\n- que RTL ne cherche pas avant tout \u00e0 me faire plaisir mais avant tout \u00e0 int\u00e9resser son audience, et donc cette demande signifie n\u00e9cessairement que l'audience en question a une pr\u00e9occupation qui augmente pour la question environnementale,\n- enfin que le monde politique surveille de pr\u00e8s ce qui se raconte dans les media. \n\nL'exp\u00e9rience dira si ca sert \u00e0 quelque chose !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6840209252900978688,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6840209253622398976,urn:li:activity:6840209253622398976,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 360, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6840209253622398976,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6840209253622398976,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6840209253622398976", + "threadId": "activity:6840209253622398976", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6840209253622398976", + "urn": "urn:li:activity:6840209253622398976", + "numComments": 524, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6840209253622398976", + "reactionTypeCounts": [ + { + "count": 8822, + "reactionType": "LIKE" + }, + { + "count": 782, + "reactionType": "PRAISE" + }, + { + "count": 324, + "reactionType": "APPRECIATION" + }, + { + "count": 135, + "reactionType": "MAYBE" + }, + { + "count": 68, + "reactionType": "EMPATHY" + }, + { + "count": 46, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6840209253622398976", + "numLikes": 10177, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6840209253622398976", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 10177, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6839831082666360832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6839831082666360832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6839831082666360832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6839831082666360832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_chantier-emploi-du-ptef-conf%C3%A9rence-et-ateliers-activity-6839831082666360832-FqxR?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6839831082104324096", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6839831082666360832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6839831082666360832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6839831082666360832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6839831082104324096", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "BN5iz4nCHg7v9wjnHdyazg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6839831082666360832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8890996683034437963", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675291363883?e=1677240000&v=beta&t=jQKOaEx3Eit6c5IEm1Gsc4DDw3PDYirnEBVoFfSYJqQ", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675291363883?e=1677240000&v=beta&t=9cRM8r2N-8RqulybrGZXAD5Q_jQVLuVJJ8g5ptukYEQ", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675291363883?e=1677240000&v=beta&t=W4mKW-jySKRZd7JLYMwNlwvOTFDDhBdyiWL1Rs14h28", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675291363883?e=1677240000&v=beta&t=aKXVmkzynuIDms0ytFgOtO6ELuQhcIBSbAXuPg_0S5c", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHejiwCN-9xcg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8890996683034437963)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8890996683034437963)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Chantier Emploi du PTEF : Conf\u00e9rence et Ateliers le 7 septembre \u00e0 14h by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-chantier-emploi-rapport-intermediaire-7-septembre/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Chantier Emploi du PTEF : Conf\u00e9rence et Ateliers le 7 septembre \u00e0 14h" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6839831082104324096,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Mardi prochain, \u00e0 14h, The Shift Project pr\u00e9sentera son rapport provisoire sur le chantier \"emploi\" du plan de transformation de l'\u00e9conomie fran\u00e7aise.\n\nJusqu'\u00e0 maintenant, les propositions qui ont \u00e9t\u00e9 faites par des associations environnementales pour \"changer nos modes de production et de consommation\" ont, pour l'essentiel, port\u00e9 sur le r\u00e9sultat final \u00e0 atteindre (moins de voitures, plus de trains, moins de viande, plus d'objets r\u00e9parables, moins d'\u00e9nergie dans les b\u00e2timents, etc), mais ont rarement d\u00e9crit les implications sur l'emploi de la r\u00e9organisation associ\u00e9e des fili\u00e8res productives : combien de plombiers en plus, de bouchers en moins, de livreurs \u00e0 v\u00e9lo en plus, d'ouvriers automobiles en moins, et si cela change le besoin en enseignants ou en infirmiers.\n\nCar il ne faut pas se mentir : moins consommer, c'est, toutes choses \u00e9gales par ailleurs, moins produire (voir une d\u00e9clinaison sur ce sujet de l'\u00e9quation de Kaya l\u00e0 : https://lnkd.in/garSJE4 ). A productivit\u00e9 par personne constante, c'est moins d'emplois dans la fili\u00e8re concern\u00e9e, et l\u00e0 syndicats et patronat se retrouvent unis pour demander que surtout rien ne bouge. Mais comment en vouloir \u00e0 des gens de vouloir garder leur job ?\n\nDans le cadre du plan de transformation de l'\u00e9conomie fran\u00e7aise (PTEF), nous avons choisi d'affronter cette face nord. Notre chantier \"emploi\" est donc une premi\u00e8re tentative de dimensionner \"combien de monde\" serait n\u00e9cessaire \u00e0 terme dans les secteurs qui doivent changer pour, ensuite, voire comment on pourrait organiser les flux de la meilleure mani\u00e8re possible. Car changer les volumes d'emploi, cela est d\u00e9j\u00e0 arriv\u00e9 \u00e0 tr\u00e8s large \u00e9chelle sur les derni\u00e8res d\u00e9cennies, \u00e0 commencer par le passage de la population agricole d'un tiers (1945) \u00e0 2% de la population active.\n\nJ'esp\u00e8re que l'on nous pardonnera nos erreurs de d\u00e9butant (il y en a surement), malgr\u00e9 les efforts et le temps tr\u00e8s cons\u00e9quent que le groupe de travail a mis dans l'exercice, et que l'on choisira de voir surtout l'envie que nous avons de ne pas en rester \u00e0 des consid\u00e9rations g\u00e9n\u00e9rales sur \"il faut\", mais de descendre un peu dans les d\u00e9tails pour discuter concr\u00e8tement des mesures pertinentes, et des \"incontournables\", d\u00e8s lors que l'on entend anticiper plut\u00f4t que subir.\n\nNous esp\u00e9rons que cet axe permettra de nouer un dialogue fructueux avec les organisations syndicales, le monde de la reconversion professionnelle et de la formation initiale, les am\u00e9nageurs du territoire, et d'autres encore, pour discuter de ce qui est un enjeu majeur dans la vie des individus : comment l'emploi pourrait (devrait ?) \u00e9voluer dans un monde en d\u00e9carbonation rapide.\n\nL'acc\u00e8s au webinaire est libre et gratuit." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6839831082104324096,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6839831082666360832,urn:li:activity:6839831082666360832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 15, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6839831082666360832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6839831082666360832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6839831082666360832", + "threadId": "activity:6839831082666360832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6839831082666360832", + "urn": "urn:li:activity:6839831082666360832", + "numComments": 23, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6839831082666360832", + "reactionTypeCounts": [ + { + "count": 212, + "reactionType": "LIKE" + }, + { + "count": 22, + "reactionType": "PRAISE" + }, + { + "count": 18, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6839831082666360832", + "numLikes": 267, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6839831082666360832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 267, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6839596425865641984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6839596425865641984", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6839596425865641984)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6839596425865641984)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_ida-inondations-exceptionnelles-%C3%A0-new-york-activity-6839596425865641984-DBqZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6839596425391689728", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6839596425865641984", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6839596425865641984,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6839596425865641984,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6839596425391689728", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "QQqwsG3mPHj8lRt/Vr6sig==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6839596425865641984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8697452809367784915", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676060443366?e=1677240000&v=beta&t=pml8wftkaPOWjeOvNM_x4oMnzNMMQmsUNOm2WoKD4wE", + "expiresAt": 1677240000000, + "height": 504 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676060443366?e=1677240000&v=beta&t=3lNp45ZmqBuUHBotu8rOIKPSCcnTfvMboa7eu0VHf78", + "expiresAt": 1677240000000, + "height": 504 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676060443367?e=1677240000&v=beta&t=DkSSVwr9qRlfdovQ-E-24gw8A_sxlhaCouxT1-PcCwU", + "expiresAt": 1677240000000, + "height": 101 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676060443367?e=1677240000&v=beta&t=I2LX9SG7ru9wsM5pFFbgWz3x1bJ1I9KflF6unId_osU", + "expiresAt": 1677240000000, + "height": 302 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFmwne1ygiW9A/articleshare-shrink_" + }, + "displayAspectRatio": 0.63 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Cumuls de pluie relev\u00e9s sur la r\u00e9gion en 48 heures (1 inch = 24,4 mm)." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8697452809367784915)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8697452809367784915)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "meteofrance.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Ida : inondations exceptionnelles \u00e0 New York by meteofrance.com", + "actionTarget": "https://meteofrance.com/actualites-et-dossiers/actualites/planete/ida-inondations-exceptionnelles-new-york" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Ida : inondations exceptionnelles \u00e0 New York" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6839596425391689728,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A l'occasion du passage d'Ida au-dessus de New-York, il s'est pass\u00e9 avec les pr\u00e9cipitations ce qui s'est pass\u00e9 avec les temp\u00e9ratures lors de l'\u00e9pisode \"d\u00f4me de chaleur\" : le record enregistr\u00e9 pulv\u00e9rise litt\u00e9ralement le record pr\u00e9c\u00e9dent.\n\nLe cumul horaire de pr\u00e9cipitations \u00e0 New-York a atteint un niveau record de 49 mm lors du passage d'Henri, fin aout 2021, ce qui signifie (je n'ai pas cherch\u00e9) que le record avant aout 2021 \u00e9tait inf\u00e9rieur \u00e0 49 mm. A l'occasion d'Ida, il est pass\u00e9 \u00e0 80 mm, c'est \u00e0 dire quasiment 2 fois plus !\n\nRappelons que d\u00e8s 2014 le GIEC avait indiqu\u00e9 que l'intensit\u00e9 et la pluviom\u00e9trie des ph\u00e9nom\u00e8nes cycloniques devaient augmenter. Pour autant, nous n'observons pas partout autour de nous les mesures de pr\u00e9vention augmenter aussi... et donc la fin n'est pas difficile \u00e0 pr\u00e9voir : plus d'ennuis.\n\nDans les motifs relev\u00e9s par The Guardian sur le fait que nous n'agissons pas, il y a le fait que les media n'insistent pas assez (et le Guardian est un bon contre-exemple, car lui en parle beaucoup). Ce quotidien publie un article (https://lnkd.in/dcyFK_ru ) o\u00f9 il \u00e9voque une \u00e9tude - https://lnkd.in/dYSRYJCx - portant sur 774 sujets diffus\u00e9s par les chaines de t\u00e9l\u00e9 am\u00e9ricaines sur l'arriv\u00e9e d'Ida en Floride, o\u00f9 il y aussi de gros d\u00e9g\u00e2ts. \n\n4% seulement \u00e9voquent le changement climatique dans le sujet diffus\u00e9. Evoquer le changement climatique ne signifie pas affirmer que cet ouragan est du au changement climatique, mais en profiter pour rappeler que le changement climatique intensifiera les ouragans, et donc que cet \u00e9pisode est h\u00e9las illustratif d'un avenir pas tr\u00e8s d\u00e9sirable.\n\nEt le Guardian de conclure en appelant ses confr\u00e8res \u00e0 \"faire mieux\". Ils peuvent, il y a de la marge !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6839596425391689728,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6839596425865641984,urn:li:activity:6839596425865641984,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 27, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6839596425865641984,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6839596425865641984,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6839596425865641984", + "threadId": "activity:6839596425865641984", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6839596425865641984", + "urn": "urn:li:activity:6839596425865641984", + "numComments": 78, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6839596425865641984", + "reactionTypeCounts": [ + { + "count": 732, + "reactionType": "LIKE" + }, + { + "count": 87, + "reactionType": "INTEREST" + }, + { + "count": 70, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6839596425865641984", + "numLikes": 912, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6839596425865641984", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 912, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6839483326739308544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6839483326739308544", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6839483326739308544)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6839483326739308544)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_report-net-zero-initiative-2020-2021-carbone-activity-6839483326739308544-ZSvB?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6839483326177255424", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6839483326739308544", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6839483326739308544,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6839483326739308544,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6839483326177255424", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "KYddNfYQ2DTS2OyuHruwNg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6839483326739308544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8588753660138612550", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676050016743?e=1677240000&v=beta&t=5VIqQTYl1o4Ua4fDxggPINLLiw4mywFjY2D6mtaPLX8", + "expiresAt": 1677240000000, + "height": 535 + }, + { + "width": 1194, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676050016743?e=1677240000&v=beta&t=kPNPDQN_YuWGtLHMPXHPuoiJgy501MF6MwNFOZP33qc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676050016744?e=1677240000&v=beta&t=zWOykkPMsrxrF_6fCTjmOnzm1B5QBNIUVnlYNgST72A", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676050016744?e=1677240000&v=beta&t=ZLkGzdHERDVkuZfiWPbZluyhvCGFIAqDRVoU2ywleUA", + "expiresAt": 1677240000000, + "height": 321 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEaFUbOR_kbCw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8588753660138612550)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8588753660138612550)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Report Net Zero Initiative 2020-2021 | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-net-zero-initiative-2020-2021-eng" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Report Net Zero Initiative 2020-2021 | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "The Net Zero Initiative methodolgy is now available in English. Developped by Carbone 4 with a large set of corporate partners, NZI describes how to act on three different \"pillars\" that are not to be added up - or substracted - one with another:\n\n- induced emissions along the value chain, e. g. emissions that are necessary in the present world for the processes of the value chain to physically take place,\n\n- avoided emissions along the value chain or outside it, e. g. benefits that are brought, as the case may be, by the company's products or services (for example a company that sells bikes that will replace - and not add up to - cars contributes to the decrease of the emissions of its clients)\n\n- sequestrated carbon, or sinks, along the value chain or outside it.\n\nDevelopping sinks does not \"compensate\" with emissions, for it does not suppress the dependancy of the value chain to emissions on one side, and rules regarding benefits associated with \"credits\" often allow to count as a flow down something which actually does not belong to that category, or not in the proper time frame.\n\nWe are still in the early stage of carbon accounting. So it is normal that, with time, we are able to do better, and we do hope that NZI, available for all companies, will contribute to such a move!" + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6839483326739308544,urn:li:activity:6839483326739308544,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 3, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6839483326739308544,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6839483326739308544,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6839483326739308544", + "threadId": "activity:6839483326739308544", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6839483326739308544", + "urn": "urn:li:activity:6839483326739308544", + "numComments": 3, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6839483326739308544", + "reactionTypeCounts": [ + { + "count": 110, + "reactionType": "LIKE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6839483326739308544", + "numLikes": 123, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6839483326739308544", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 123, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6839445267847135232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6839445267847135232", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6839445267847135232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6839445267847135232)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_electricit%C3%A9-menace-sur-la-facture-des-consommateurs-activity-6839445267847135232-qIwF?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6839445267335430145", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6839445267847135232", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6839445267847135232,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6839445267847135232,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6839445267335430145", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "HVrM6VSLgHZBNDkHaU/G5g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6839445267847135232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7148255272758536196", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676072226727?e=1677240000&v=beta&t=YbKdAWl9SpQCnolD6u0LeRcNBhQEKnZ5QhFNLebofIY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676072226727?e=1677240000&v=beta&t=viozU3MhZl00LYjXTdwggmG6KxGexy0hsKL7uJRT8wI", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676072226727?e=1677240000&v=beta&t=o6PJe-5Gcx6IMtc02B5lthxZoBJYJ_d7SP7xrMzaBOw", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676072226727?e=1677240000&v=beta&t=Pz4R6TnXCNwfYGtqYanBt8exgyVpTKbAybd023VPw0M", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEbwnVuA6dY2w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7148255272758536196)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7148255272758536196)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Electricit\u00e9 : menace sur la facture des consommateurs by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/electricite-menace-sur-la-facture-des-consommateurs-1342188" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Electricit\u00e9\u00a0: menace sur la facture des consommateurs" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6839445267335430145,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les prix de l'\u00e9lectricit\u00e9 sur les march\u00e9s spot sont hauts, ce que tout le monde peut aller v\u00e9rifier sur le site https://lnkd.in/dfDBiw6J, et Les Echos s'en \u00e9meuvent. \n\nMais il n'y a l\u00e0 rien que de tr\u00e8s normal, voire attendu. Apr\u00e8s une longue p\u00e9riode de marasme \u00e0 des niveaux qui ne changent pas la donne, le prix de la tonne de CO2 sur le march\u00e9 spot atteint d\u00e9sormais quelques dizaines d'euros, et c'est pr\u00e9cis\u00e9ment le but de ce syst\u00e8me que de rendre la vie difficile aux utilisateurs industriels de combustibles fossiles.\n\nCertes, un \u00e9lectricien utilisant du gaz ou du charbon n'aura pas acquis la totalit\u00e9 de ses quotas au prix spot, mais c'est ce prix auquel il doit se fournir pour produire un MWh suppl\u00e9mentaire si il n'a pas ces quotas d\u00e9j\u00e0 en portefeuille.\n\nPar ailleurs, le gaz, compagnon de route des modes non pilotables (\u00e9olien et solaire) voit \u00e9galement son prix augmenter, comme cela arrive et arrivera p\u00e9riodiquement dans un monde o\u00f9 il y a des contraintes sur l'offre (l'Europe a pass\u00e9 son pic domestique de production en 2005, et les importations ne suivent pas pour compenser) et une demande qui ne baisse pas aussi vite.\n\nFaut-il s'\u00e9mouvoir de voir le prix de l'\u00e9lectricit\u00e9 augmenter de fa\u00e7on erratique alors que le milieu \u00e9conomique a historiquement milit\u00e9 pour :\n- la \"lib\u00e9ralisation\" de l'\u00e9lectricit\u00e9, et la fin des prix r\u00e9glement\u00e9s, ce qui cr\u00e9e de la volatilit\u00e9 par construction ?\n- le syst\u00e8me de march\u00e9 sur le CO2, plut\u00f4t que des contraintes r\u00e9glementaires ou une taxe carbone pr\u00e9visible, ce qui cr\u00e9e aussi de la volatilit\u00e9 ?\n\nLe march\u00e9, c'est formidable. Mais c'est volatil. Il faut savoir ce que l'on veut." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6839445267335430145,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6839445267847135232,urn:li:activity:6839445267847135232,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 39, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6839445267847135232,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6839445267847135232,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6839445267847135232", + "threadId": "activity:6839445267847135232", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6839445267847135232", + "urn": "urn:li:activity:6839445267847135232", + "numComments": 69, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6839445267847135232", + "reactionTypeCounts": [ + { + "count": 661, + "reactionType": "LIKE" + }, + { + "count": 82, + "reactionType": "INTEREST" + }, + { + "count": 48, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6839445267847135232", + "numLikes": 816, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6839445267847135232", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 816, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6839080661861613568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6839080661861613568", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6839080661861613568)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6839080661861613568)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9couplage-et-croissance-verte-carbone-activity-6839080661861613568-15CE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6839080661182136320", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6839080661861613568", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6839080661861613568,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6839080661861613568,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6839080661182136320", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "rjpSprUd2f29tDku9/SRxA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6839080661861613568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7297494458594400178", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676277430834?e=1677240000&v=beta&t=Ox9J5a1iT8DNO_13PFXbSU9NPEHm6xHhqr2utp0kTDE", + "expiresAt": 1677240000000, + "height": 1005 + }, + { + "width": 636, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676277430834?e=1677240000&v=beta&t=XzrO_6447RHoKKpQzYzIhbkDqv6cFdBekwbHWc24D7g", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676277430835?e=1677240000&v=beta&t=IXusLh44jdbzZG9rqTVEdA_AtiE4lDNBb61HVlK-20M", + "expiresAt": 1677240000000, + "height": 201 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676277430835?e=1677240000&v=beta&t=cq4e6wNxTv1ZMZYnRs1k_e3Z6VtHF7-8TRR6jAGXjhM", + "expiresAt": 1677240000000, + "height": 603 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEE5Ox7E3SoRA/articleshare-shrink_" + }, + "displayAspectRatio": 1.25625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7297494458594400178)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7297494458594400178)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: D\u00e9couplage et croissance verte* | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/publication-decouplage" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9couplage et croissance verte* | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6839080661182136320,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La croissance verte, tous les politiques en veulent. C'est le graal, \u00e9videmment :\n- la croissance \u00e9conomique assure \"m\u00e9caniquement\" la hausse du pouvoir d'achat, la possibilit\u00e9 d'augmenter l'emploi global sans devoir diminuer les salaires ni les rentes, l'augmentation des recettes budg\u00e9taires (l'essentiel des imp\u00f4ts sont pr\u00e9lev\u00e9s sur des composantes du PIB, et sont donc des imp\u00f4ts de flux, non des imp\u00f4ts de stock), et j'en passe\n- la \"verdeur\" assure l'atteinte des objectifs environnementaux, avec une baisse des \u00e9missions de toute nature (gaz \u00e0 effet de serre, polluants), de l'artificialisation des sols, de la d\u00e9forestation, une restauration de la biodiversit\u00e9, etc.\n\nEn termes un peu techniques, cette situation poss\u00e8de un nom : cela s'appelle le d\u00e9couplage. L'\u00e9volution du PIB devient structurellement et globalement croissante pendant que l'\u00e9volution des inconv\u00e9nients devient structurellement et globalement d\u00e9croissante.\n\nCe d\u00e9couplage, il est de fait pr\u00e9sent dans bon nombre de \"sc\u00e9narios de place\" propos\u00e9s par des instances connues : l'Agence Internationale de l'Energie, la Commission Europ\u00e9enne, des ONG environnementales... Et c'est sur ce genre de sc\u00e9narios que nombre d'entreprises b\u00e2tissent leur discours public, voire leurs plans strat\u00e9giques.\n\nMalheureusement, \u00eatre capable de se figurer une situation ne signifie pas n\u00e9cessairement que nous pouvons l'atteindre. Tout le monde s'imagine tr\u00e8s bien ce que veut ou pourrait dire rajeunir, retrouver son int\u00e9grit\u00e9 physique quand on l'a perdue, (re)trouver l'amour d'une personne ch\u00e8re, trouver l'emploi de ses r\u00eaves ou voir une dette dispara\u00eetre, et pour autant y arriver rel\u00e8ve parfois (h\u00e9las !) de l'impossible, et il faut \"faire avec\".\n\nCette nouvelle publication de Carbone 4 ne sp\u00e9culera pas sur la possibilit\u00e9 de voir une dette de jeu s'\u00e9vanouir par miracle :). Mais par contre nous esp\u00e9rons qu'elle vous convaincra qu'il est urgent de ne pas r\u00e9fl\u00e9chir \u00e0 l'avenir d'une entreprise en consid\u00e9rant que ce d\u00e9couplage est certain \u00e0 l'avenir, simplement parce qu'il est d\u00e9sirable." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6839080661182136320,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6839080661861613568,urn:li:activity:6839080661861613568,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 41, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6839080661861613568,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6839080661861613568,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6839080661861613568", + "threadId": "activity:6839080661861613568", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6839080661861613568", + "urn": "urn:li:activity:6839080661861613568", + "numComments": 73, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6839080661861613568", + "reactionTypeCounts": [ + { + "count": 443, + "reactionType": "LIKE" + }, + { + "count": 38, + "reactionType": "MAYBE" + }, + { + "count": 36, + "reactionType": "INTEREST" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6839080661861613568", + "numLikes": 538, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6839080661861613568", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 538, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6838715867644084224,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6838715867644084224", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6838715867644084224)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6838715867644084224)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_univershift%C3%A9-activity-6838715867644084224-QiRK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6838715867178508288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6838715867644084224", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6838715867644084224,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6838715867644084224,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6838715867178508288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "jJMJLqUvTDornSlEL4KvAw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6838715867644084224,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7680304330127856707", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 480, + "fileIdentifyingUrlPathSegment": "800/0/1675759554842?e=1677240000&v=beta&t=VGcvOHCUb-Xi2VOqZuFMl44NRzTAIOg9Lai9tQGxMXU", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675759554842?e=1677240000&v=beta&t=CYsbaQKsrM4LmvYCJdZVxJmxqSRPnskAxwOWLyXP0gg", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675759554842?e=1677240000&v=beta&t=COC7OBttysqSBiYlP6dL2ZWYkMnjXha3fVI5Sn_5uGM", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675759554842?e=1677240000&v=beta&t=3y7_uHL091ySL-v_4yFz19pBTOWaZyplBfgRE-e1sPI", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQFpQkRbOJmLIA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7680304330127856707)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7680304330127856707)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "univershifte.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: UniverShift\u00e9 by univershifte.fr", + "actionTarget": "https://univershifte.fr/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "UniverShift\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6838715867178508288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Du 24 au 26 septembre prochains se tiendra la premi\u00e8re universit\u00e9 d'\u00e9t\u00e9 des shifters, \u00e0 Lyon (lesquels sont d\u00e9sormais plusieurs milliers, merci \u00e0 eux !). Ce sera notamment l\u00e0 que The Shift Project pr\u00e9sentera de mani\u00e8re d\u00e9taill\u00e9e pour la premi\u00e8re fois la totalit\u00e9 du plan de transformation de l'\u00e9conomie fran\u00e7aise (https://lnkd.in/dNARPrU ), un ensemble de propositions op\u00e9rationnelles couvrant 15 secteurs pour, d\u00e8s le d\u00e9but du prochain quinquennat, emmener notre pays sur la voie d'une baisse de 5% par an des \u00e9missions (vision empreinte carbone) associ\u00e9es \u00e0 notre mode de vie.\n\nNous y organisons aussi des d\u00e9bats avec des acteurs \u00e9conomiques, syndicaux, associatifs, etc. Et il y aura beaucoup de temps pour les \u00e9changes entre participants ! Votre serviteur y sera bien sur pr\u00e9sent.\n\nProgramme et inscription sur sur site web ci-dessous" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6838715867178508288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6838715867644084224,urn:li:activity:6838715867644084224,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 33, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6838715867644084224,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6838715867644084224,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6838715867644084224", + "threadId": "activity:6838715867644084224", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6838715867644084224", + "urn": "urn:li:activity:6838715867644084224", + "numComments": 48, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6838715867644084224", + "reactionTypeCounts": [ + { + "count": 715, + "reactionType": "LIKE" + }, + { + "count": 42, + "reactionType": "PRAISE" + }, + { + "count": 37, + "reactionType": "MAYBE" + }, + { + "count": 19, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6838715867644084224", + "numLikes": 830, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6838715867644084224", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 830, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6838524387960860672,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6838524387960860672", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6838524387960860672)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6838524387960860672)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_syst%C3%A8me-financier-2%C3%A8-une-%C3%A9tude-du-think-activity-6838524387960860672-N7na?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6838524387302363136", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6838524387960860672", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6838524387960860672,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6838524387960860672,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6838524387302363136", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "Njet3X3cpTryZjpaXsjeGg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6838524387960860672,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHNh8E4kOvzgQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHNh8E4kOvzgQ", + "artifacts": [ + { + "width": 1510, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1630431266018?e=1679529600&v=beta&t=PaFEQiOgSfADnD4s2HGHNafmH1Wy4NH_LyM9NrTprfk", + "expiresAt": 1679529600000, + "height": 604 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1630431266837?e=1679529600&v=beta&t=c6m7yERqyKEB9dGn1neDcFJS6WCq7gLPY5Dt_T56PV4", + "expiresAt": 1679529600000, + "height": 8 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1630431266837?e=1679529600&v=beta&t=jzyOmQjmzruzBU7DiPhfCgIjf5XxI9bfWHdAiJCX4LU", + "expiresAt": 1679529600000, + "height": 512 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1630431266837?e=1679529600&v=beta&t=4T5llUkpLHzzuUFyNbPbzNyivyIjsVxrAj-0b3TNbbI", + "expiresAt": 1679529600000, + "height": 192 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1630431266837?e=1679529600&v=beta&t=teyL9pXdM1Vks7efQvxQw4UwhFC1EC0J2OqYKwxL3As", + "expiresAt": 1679529600000, + "height": 64 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1630431266837?e=1679529600&v=beta&t=1DCJEQcS3toqKH0x_K7q1qnfI4rLx7yL1bHhghY9Blw", + "expiresAt": 1679529600000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHNh8E4kOvzgQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.4 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6838524387302363136,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Syst\u00e8me financier, 2\u00e8 : une \u00e9tude du think tank Influence Map porte sur les annonces vs. la r\u00e9alit\u00e9 en ce qui concerne 723 fonds (330 milliards de $) investis en actions qui utilisent \"ESG\" ou \"climat\" dans leur argumentaire marketing : https://lnkd.in/dcBC2x3Y\n\nLa premi\u00e8re conclusion d'Influence Map est la profusion de termes utilis\u00e9s pour d\u00e9crire les strat\u00e9gies de ces fonds, rendant toute comparaison difficile. Influence Map les a reclass\u00e9s dans 2 cat\u00e9gories : \"ESG g\u00e9n\u00e9ralistes\" et \"th\u00e9matique climat\".\n\nDans les \"ESG g\u00e9n\u00e9ralistes\", soit 593 fonds g\u00e9rant 265 milliards de $, 421 sont compos\u00e9s d'actions d'entreprises qui ne sont pas align\u00e9es avec l'accord de Paris.\n\nDans les \"th\u00e9matique climat\", soit 130 fonds g\u00e9rant 67 milliards de $, la majorit\u00e9 des fonds ne sont pas align\u00e9s \"Accord de Paris\". Plus int\u00e9ressant, pour une large partie de ces fonds, le d\u00e9faut d'alignement n'est pas tr\u00e8s diff\u00e9rent de ce qu'il est pour les indices de march\u00e9. Dit autrement, vous investissez dans un fonds qui pr\u00e9tend \u00eatre meilleur que ses pairs pour le climat, et la r\u00e9alit\u00e9 est que cela aurait \u00e9t\u00e9 pareil pour le climat si vous aviez investi dans le CAC 40 ou le Dow Jones sans vous poser de questions.\n\nC'est la strat\u00e9gie de gestion qui est en cause : en fait ces portefeuilles partent d'indices classiques, puis excluent des valeurs sp\u00e9cifiques, ou pond\u00e8rent diff\u00e9remment. Du coup ca ne change pas grand chose sur l'ensemble.\n\nSur le m\u00eame th\u00e8me (les fonds \"climat\" sont-ils vraiment climat ?) l'EDHEC Risk Institute organise un webinaire sur le \"le greenwashing des portefeuilles\" (https://lnkd.in/dPh8dTCV ). On peut lire dans l'annonce \"le d\u00e9calage entre les promesses des strat\u00e9gies d\u2019investissement favorisant l\u2019alignement climatique et la r\u00e9alit\u00e9 de la prise en compte concr\u00e8te des performances climatiques des entreprises dans les fonds et indices repr\u00e9sentatifs de ces strat\u00e9gies est si important que l\u2019on peut parler de greenwashing du portefeuille\".\n\nSeule la g\u00e9n\u00e9ralisation de m\u00e9thodes appropri\u00e9es et une r\u00e9glementation dissuasive sur ce genre de discours pourront emp\u00eacher ce processus. Il est donc urgent que le r\u00e9gulateur commence par monter lui-m\u00eame en comp\u00e9tence sur la question des m\u00e9thodes." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6838524387302363136,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6838524387960860672,urn:li:activity:6838524387960860672,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 24, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6838524387960860672,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6838524387960860672,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6838524387960860672", + "threadId": "activity:6838524387960860672", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6838524387960860672", + "urn": "urn:li:activity:6838524387960860672", + "numComments": 32, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6838524387960860672", + "reactionTypeCounts": [ + { + "count": 331, + "reactionType": "LIKE" + }, + { + "count": 55, + "reactionType": "INTEREST" + }, + { + "count": 38, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6838524387960860672", + "numLikes": 430, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6838524387960860672", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 430, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6838372152731832320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6838372152731832320", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6838372152731832320)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6838372152731832320)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-sinspirant-du-titre-dun-livre-c%C3%A9l%C3%A8bre-activity-6838372152731832320-G4pK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6838372152090095616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6838372152731832320", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6838372152731832320,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6838372152731832320,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6838372152090095616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "n0pd7/gNTjjQEqIRGgPdNg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6838372152731832320,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFWbHGr01WjpA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFWbHGr01WjpA", + "artifacts": [ + { + "width": 1458, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1630394968844?e=1679529600&v=beta&t=47xRLPt2Rm56_MzxKU8ALS01aWrheJo9XLg5C6mFIcE", + "expiresAt": 1679529600000, + "height": 730 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1630394970091?e=1679529600&v=beta&t=uzIj9Y0GfgFV8kFImN1NtUV9EX9EG-jwNWhdiRtgVOM", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1630394970091?e=1679529600&v=beta&t=zOlypvVZkxZmobq1sfyrLPV2wjOJ4TQ77gt4-jG2XEo", + "expiresAt": 1679529600000, + "height": 641 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1630394970091?e=1679529600&v=beta&t=fHJ8HCh7r2TbZ06IBGDFCE_aPH86budawrU9xNtTMto", + "expiresAt": 1679529600000, + "height": 240 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1630394970091?e=1679529600&v=beta&t=DkZMRVAbhTZihqmxrQqu-CB7mollHeQ11KKvSQzpbcg", + "expiresAt": 1679529600000, + "height": 80 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1630394970091?e=1679529600&v=beta&t=9NTguJagHhDua5SZODOzXVW8Fh0-Sbvx3_95t6-JrG4", + "expiresAt": 1679529600000, + "height": 401 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFWbHGr01WjpA/feedshare-shrink_" + }, + "displayAspectRatio": 0.5006858710562414 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "text" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6838372152090095616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 804, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "dvcKw+qxQvWhKlQnS1xMPA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 854, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:25494626", + "entityUrn": "urn:li:fs_miniCompany:25494626", + "name": "CDC Biodiversit\u00e9", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650470332257?e=1684972800&v=beta&t=CC_f3ztqNsN15bZ8lAnazeCeAAP-NpKfRg5Mck5nlGY", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650470332257?e=1684972800&v=beta&t=ZWTDOiqryBagHkgmzkc98rtP1RcPemVOhxZZJVWBu-I", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650470332257?e=1684972800&v=beta&t=OWI-UHpEQFFtzgeu2aUYiFO3UtUIkO_4qnkE0IuFLfY", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGhbrhhhWucGw/company-logo_" + } + }, + "universalName": "cdc-biodiversite", + "dashCompanyUrn": "urn:li:fsd_company:25494626", + "trackingId": "OxJNKorGQDmgSMN8Xh0UzA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "En s'inspirant du titre d'un livre c\u00e9l\u00e8bre de Rachel Carson, intitul\u00e9 Silent Spring (https://lnkd.in/d84vyuKt), et qui \u00e9voquait un printemps devenu silencieux parce que les oiseaux ne seraient plus l\u00e0 pour chanter \u00e0 cause de notre pression sur la biodiversit\u00e9 (ce qui est malheureusement l'\u00e9volution en cours), la Banque de France publie un \"working paper\" sur l'empreinte biodiversit\u00e9 des obligations d\u00e9tenues par le syst\u00e8me financier fran\u00e7ais : https://lnkd.in/dmD4p-gg\n\nLa m\u00e9thode retenue est de calculer l'empreinte biodiversit\u00e9 de chaque \u00e9metteur des obligations d\u00e9tenues par les acteurs du syst\u00e8me financier fran\u00e7ais, de rapporter cela \u00e0 l'obligation, puis d'agr\u00e9ger cette empreinte au niveau du portefeuille global. \n\nLa Banque de France a fait cela en utilisant la m\u00e9thode BIA-GBS d\u00e9velopp\u00e9e par Carbon4 Finance sur la base d'une m\u00e9thodologie de CDC BIODIVERSIT\u00c9.\n\nOn note dans le document le \u00a7 suivant : \n\"An interesting feature of the BIA-GBS methodology is that, for climate change pressure, it does not use the average greenhouse (GHG) emissions intensity of turnover in the sector-region pair in which the company operates (...). Instead, it uses recalculated GHG emissions for each issuer, taken from an in-house database developed by Carbon4 Finance called Carbon Impact Analytics (CIA), which makes it possible to obtain a biodiversity footprint that is more accurate for each company. The CIA database provides Scope 1, 2 and 3 GHG emissions. They are obtained with a bottom-up approach, by collecting physical output data (published by companies in their annual, financial or environmental reports) and translating it into tons of CO2.\"\n\nNous sommes \u00e9videmment ravis que la Banque de France utilise nos donn\u00e9es pour cette premi\u00e8re sur la biodiversit\u00e9, m\u00eame si ce n'est qu'un premier pas et que maintenant il faut \"faire quelque chose\" de cette information !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6838372152090095616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6838372152731832320,urn:li:activity:6838372152731832320,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 14, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6838372152731832320,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6838372152731832320,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6838372152731832320", + "threadId": "activity:6838372152731832320", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6838372152731832320", + "urn": "urn:li:activity:6838372152731832320", + "numComments": 15, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6838372152731832320", + "reactionTypeCounts": [ + { + "count": 296, + "reactionType": "LIKE" + }, + { + "count": 22, + "reactionType": "PRAISE" + }, + { + "count": 19, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6838372152731832320", + "numLikes": 357, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6838372152731832320", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 357, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6838054649560342528,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6838054649560342528", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6838054649560342528)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6838054649560342528)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_german-court-says-eu-unbundling-rules-apply-activity-6838054649560342528-J6i6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6838054649157705728", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6838054649560342528", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6838054649560342528,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6838054649560342528,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6838054649157705728", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "v1VNkp8TtEIGaKHTdLHcag==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6838054649560342528,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8816367178140450499", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675591345614?e=1677240000&v=beta&t=Sazt3CP64ba5fXRM3xKxIFTWUH4WQYo90YoX3rjY7LI", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 960, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675591345614?e=1677240000&v=beta&t=sHCtx8TFYYkUPiZ7eN-KMHzwwaYDAekrjPBxUbF5gnA", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675591345614?e=1677240000&v=beta&t=NZZ-FL9h-dcoSTnxspcPVrFeTMlkHTGv1FZu50tBzPo", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675591345614?e=1677240000&v=beta&t=CiwB3wjQTpePnxMo26YvRBhGSCdbOlzuCEuisuzq0JE", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFZL2FQ0EbtLA/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8816367178140450499)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8816367178140450499)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "euractiv.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: German court says EU \u2018unbundling\u2019 rules apply to Nord Stream 2 pipeline by euractiv.com", + "actionTarget": "https://www.euractiv.com/section/energy/news/german-court-says-eu-unbundling-rules-apply-to-nord-stream-2-pipeline/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "German court says EU \u2018unbundling\u2019 rules apply to Nord Stream 2 pipeline" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6838054649157705728,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le saviez vous ? Les juges allemands sont aussi capables d'humour. Selon Euractiv, un tribunal de ce pays vient d'ordonner \u00e0 Gazprom d'ouvrir \u00e0 la concurrence le futur gazoduc Nord Stream 2. Traduction : Gazprom, qui poss\u00e8de ce futur gros tuyau, sera pri\u00e9 de laisser y passer le gaz venant d'un autre producteur que Gazprom. \n\nComme le tuyau part de Russie, o\u00f9 Gazprom est 7 fois plus gros que le producteur qui le suit, et que par ailleurs les juges allemands poss\u00e8dent un pouvoir \"d'application des peines\" assez limit\u00e9 en Russie, on se demande bien ce qui va se passer si Gazprom envoie la justice allemande sur les roses. Les juges allemands vont ordonner aux centrales \u00e0 gaz allemandes (qui doivent assurer la s\u00e9curit\u00e9 d'approvisionnement) d'arr\u00eater d'utiliser du gaz ayant transit\u00e9 par cette infrastructure ? Ca serait assez amusant de voir des black-out en Allemagne au nom du \"respect de la concurrence\" !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6838054649157705728,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6838054649560342528,urn:li:activity:6838054649560342528,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6838054649560342528,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6838054649560342528,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6838054649560342528", + "threadId": "activity:6838054649560342528", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6838054649560342528", + "urn": "urn:li:activity:6838054649560342528", + "numComments": 62, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6838054649560342528", + "reactionTypeCounts": [ + { + "count": 508, + "reactionType": "LIKE" + }, + { + "count": 82, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6838054649560342528", + "numLikes": 665, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6838054649560342528", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 665, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6838002253593354240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6838002253593354240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6838002253593354240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6838002253593354240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_2-chercheuses-du-grantham-research-institute-activity-6838002253593354240--W-s?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6838002252783878144", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6838002253593354240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6838002253593354240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6838002253593354240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6838002252783878144", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "ABXiuCAIw0YbjSb39/0Hqw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6838002253593354240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHyCRcc_OMhlg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHyCRcc_OMhlg", + "artifacts": [ + { + "width": 1208, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1630306778605?e=1679529600&v=beta&t=KtV0YfrnRb3tjfnPS3gX9pjO0OVmXgH83c2ydTkFAIg", + "expiresAt": 1679529600000, + "height": 1038 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1630306780259?e=1679529600&v=beta&t=5cfHSwrQjZf5aCZoCdkyIjt89ktTk0uaYvgA3wh7rno", + "expiresAt": 1679529600000, + "height": 17 + }, + { + "width": 1208, + "fileIdentifyingUrlPathSegment": "1280/0/1630306780259?e=1679529600&v=beta&t=4lIGrwem2sP2GnLN3lHwgiF_3HwksS-ojwPkIhWJ-hw", + "expiresAt": 1679529600000, + "height": 1038 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1630306780259?e=1679529600&v=beta&t=hT1378Q_Dvtl6Cm5VECxMmLvaH4VkinqqM6PQeH7S18", + "expiresAt": 1679529600000, + "height": 412 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1630306780259?e=1679529600&v=beta&t=118zAC5gomOk4C8xBtd1oP7bPLbN6_Y5pzseoq08qxk", + "expiresAt": 1679529600000, + "height": 137 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1630306780259?e=1679529600&v=beta&t=Wk7SDY30nbXP9Q-H26AyUA7vjR2GyK3Woe0cdFHP8Xo", + "expiresAt": 1679529600000, + "height": 687 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHyCRcc_OMhlg/feedshare-shrink_" + }, + "displayAspectRatio": 0.859271523178808 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6838002252783878144,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 135, + "length": 12, + "miniProfile": { + "firstName": "Joana", + "lastName": "Setzer", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAIpUZwBnmbN-RDv9sZasOlsV3yB8L1NAYA", + "occupation": "Assistant Professor at the Grantham Research Institute on Climate Change & the Environment, LSE | Twitter @JoanaSetzer", + "objectUrn": "urn:li:member:36262300", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAIpUZwBnmbN-RDv9sZasOlsV3yB8L1NAYA", + "publicIdentifier": "joana-setzer-16418910", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1634227286473?e=1681948800&v=beta&t=mm4XUWpFOZKi_SQat7kDFOq1enYW0rS5Dwm8EkwK6gM", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1634227286473?e=1681948800&v=beta&t=UU1cIcTFaP2fdEOeFaFBkSQSaKDnUImWny9xKy2YKx4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1634227286473?e=1681948800&v=beta&t=lrP1hjCWzyTw_z60iIvffJM4t4BeIJCOhm1zlkHVAw0", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1634227286473?e=1681948800&v=beta&t=VU8U_YYh4tW61fDkyp6s7RFTdVTZbZ196YAacHT8So8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQFa13SmXXL-uQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "3HNqNPYNTaCLQmC2/9ol7w==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 151, + "length": 16, + "miniProfile": { + "firstName": "Catherine", + "lastName": "Higham", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABDC9YgBKrTtcVhDHVDSsXwbqpr0Pt8mdQA", + "occupation": "Policy Fellow, Climate Change Laws of the World", + "objectUrn": "urn:li:member:281212296", + "entityUrn": "urn:li:fs_miniProfile:ACoAABDC9YgBKrTtcVhDHVDSsXwbqpr0Pt8mdQA", + "publicIdentifier": "catherine-higham-7202167a", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1616687524968?e=1681948800&v=beta&t=lHemIvpeS_hSU8g5TVtWfqmbJC4xmUFya45evHZkSUw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1616687524968?e=1681948800&v=beta&t=ZrFdSy1Hqb6GYu4ZRkm9hIDiqjzkoeuTlVNoitYvXK0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1616687524968?e=1681948800&v=beta&t=FZqoTscyqjx9uAnOLtMTC5WpC_oBE6WMUlzIRd9VH38", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1616687524968?e=1681948800&v=beta&t=_hhhqO-GM3HYKlTwsCECdwB7E9KRlkx3dHZytbUWDl8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQFB1fCD65B9eA/profile-displayphoto-shrink_" + } + }, + "trackingId": "o53XFCzbTDqquNfs8XS2vg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "2 chercheuses du Grantham Research Institute on Climate Change and the Environment (London School of Economics and Political Science), Joana Setzer et Catherine Higham, publient un \u00e9tat des proc\u00e8s existants, de par le monde, qui sont faits au nom du climat : https://lnkd.in/dA6_rGE5\n\nOn y apprend que le \"stock\" de proc\u00e9dures en cours a plus que doubl\u00e9 depuis 2015. Il y a eu autant de nouvelles affaires en 6 ans que pendant les presque 30 (1986 \u00e0 2015) qui ont pr\u00e9c\u00e9d\u00e9. Pays roi du proc\u00e8s, les USA regroupent environ les 3/4 du recours aux tribunaux, et c'est le gouvernement qui est le plus souvent vis\u00e9.\n\nLes affaires termin\u00e9es (environ 370) se sont conclues dans plus de la moiti\u00e9 des cas par une d\u00e9cision \"favorable au climat\", et 32% des cas par une d\u00e9cision qui lui est d\u00e9favorable. Le solde est sans impact discernable.\n\nDans les tendances \"int\u00e9ressantes\" constat\u00e9es, il y a le fait que les plaignants essaient de plus en plus de prendre les entreprises financi\u00e8res \u00e0 leur propre jeu, en les accusant d'un d\u00e9faut de devoir fiduciaire (ce devoir consiste \u00e0 g\u00e9rer l'argent des \u00e9pargnants au mieux de l'int\u00e9r\u00eat financier de ces derniers). Cela revient \u00e0 dire que le climat dans les investissements n'est pas une affaire de \"je donne le change en publiant un rapport, quelle que soit la m\u00e9thode que j'ai utilis\u00e9e pour cela\", mais de gestion s\u00e9rieuse du risque (reste \u00e0 en convaincre les \u00e9quipes op\u00e9rationnelles des gestionnaires d'actifs et des investisseurs, qui pour le moment n'en sont pas toujours persuad\u00e9es !).\n\nLes entreprises non financi\u00e8res (p\u00e9trole, ciment, distribution...) sont aussi de plus en plus concern\u00e9es. Les motifs invoqu\u00e9s peuvent inclure le greenwashing, un d\u00e9faut de communication des risques, un d\u00e9faut d'alignement avec les objectifs annonc\u00e9s, ou encore l'existence d'un projet particulier. Enfin le d\u00e9faut de mesures d'adaptation commence \u00e0 faire son apparition.\n\nEt pour plus tard ? Le nombre d'affaires devrait continuer \u00e0 augmenter, en phase avec un sentiment d'urgence croissant dans la population. Les entit\u00e9s qui attaquent et les motifs invoqu\u00e9s devraient se diversifier. Il devrait y avoir un nombre croissant de plaintes en cas d'absence de plan s\u00e9rieux pour commencer \u00e0 r\u00e9duire \u00e0 court terme alors qu'il y a des engagements de long terme, en cas de non prise en compte des \u00e9missions de la chaine de valeur dans les plans, ou en cas de greenwashing.\n\nUn nombre croissant d'entreprises devraient donc se retrouver dans une situation o\u00f9 les actionnaires, les salari\u00e9s, les consommateurs ou la puissance publique n'accepteropnt pas l'absence d'engagement s\u00e9rieux, et les associations qui recourent aux tribunaux n'accepteront pas l'absence d'action coh\u00e9rente avec un engagement s\u00e9rieux. Tant mieux, c'est ce qu'il faut pour avoir des r\u00e9sultats." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6838002252783878144,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6838002253593354240,urn:li:activity:6838002253593354240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 24, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6838002253593354240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6838002253593354240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6838002253593354240", + "threadId": "activity:6838002253593354240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6838002253593354240", + "urn": "urn:li:activity:6838002253593354240", + "numComments": 33, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6838002253593354240", + "reactionTypeCounts": [ + { + "count": 315, + "reactionType": "LIKE" + }, + { + "count": 53, + "reactionType": "INTEREST" + }, + { + "count": 38, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6838002253593354240", + "numLikes": 416, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6838002253593354240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 416, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6837669600138690560,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6837669600138690560", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6837669600138690560)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6837669600138690560)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-france-encore-d%C3%A9munie-face-aux-%C3%A9pisodes-activity-6837669600138690560-DNxL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6837669599580827648", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6837669600138690560", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6837669600138690560,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6837669600138690560,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6837669599580827648", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "HqKjY7pHr8By7X/urESvNA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6837669600138690560,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7236933835781266369", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675895855949?e=1677240000&v=beta&t=p9aV5pmOddIAPEfMl8WTOQ6xxuBqnJkcNgpm3RpI5hE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675895855949?e=1677240000&v=beta&t=TQo3v_hwu1pjNzKLhSYmxUEjD0vKH8CSfrm02SdujZc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675895855950?e=1677240000&v=beta&t=76cAm2de05B--ZLVkqkJxaHVGOdKDYBsYe77GOq4fn8", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675895855950?e=1677240000&v=beta&t=Lf5eP2ZYOh291T7XDU00IKha9LWqz3e1iqtSMT_ALPQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGggVY1MYAh0A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7236933835781266369)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7236933835781266369)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La France encore d\u00e9munie face aux \u00e9pisodes climatiques extr\u00eames by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/politique-societe/societe/la-france-encore-demunie-face-aux-episodes-climatiques-extremes-1340336" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La France encore d\u00e9munie face aux \u00e9pisodes climatiques extr\u00eames" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6837669599580827648,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Cela fait d\u00e9sormais 15 ans que notre pays dispose normalement d'une politique d'adaptation au changement climatique, dot\u00e9e d'un budget annonc\u00e9 \u00e0 quelques milliards par Les Echos.\n\nMais dans les faits, cette politique reste peu visible... probablement parce qu'elle est peu pr\u00e9sente ! Et surtout, elle ne peut \u00eatre envisag\u00e9e comme une d\u00e9marche sectorielle \"\u00e0 c\u00f4t\u00e9\" des autres choses que nous faisons. S'adapter \u00e0 un climat changeant, c'est par construction faire une analyse par sc\u00e9narios appliqu\u00e9e \u00e0 chaque infrastructure avant de d\u00e9cider d'une conduite \u00e0 tenir (abandon sans reconstruction, abandon et reconstruction, am\u00e9nagements...), et proc\u00e9der de m\u00eame pour chaque champ, chaque usine, chaque chaine de valeur, chaque organisation, chaque programme d'enseignement (faut-il former des bucherons l\u00e0 o\u00f9 la for\u00eat va dispara\u00eetre, ou des moniteurs de ski l\u00e0 o\u00f9 la neige sera du pass\u00e9 ? Et que dire sur le changement climatique dans leur futur m\u00e9tier \u00e0 un infirmier ou un conducteur de train ?), etc.\n\nCe budget devrait donc avant tout \u00eatre d\u00e9volu \u00e0 former puis embaucher des personnes comp\u00e9tentes pour intervenir dans toutes les organisations au plus haut niveau. Avec une grande difficult\u00e9, qui est que cette approche ne peut relever que d'une analyse par sc\u00e9narios, puisque le futur n'est pas totalement \u00e9crit. L\u00e0 o\u00f9 il sera possible de conserver l'existant avec telle ampleur de d\u00e9rive climatique, on devra l'abandonner (dans la douleur \u00e9ventuellement) avec telle autre. Parer \u00e0 toutes les \u00e9ventualit\u00e9s rel\u00e8ve donc d'une gymnastique intellectuelle particuli\u00e8rement exigeante. Mais ne pas le faire assure d'\u00eatre de plus en plus pris au d\u00e9pourvu." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6837669599580827648,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6837669600138690560,urn:li:activity:6837669600138690560,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 36, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6837669600138690560,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6837669600138690560,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6837669600138690560", + "threadId": "activity:6837669600138690560", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6837669600138690560", + "urn": "urn:li:activity:6837669600138690560", + "numComments": 53, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6837669600138690560", + "reactionTypeCounts": [ + { + "count": 446, + "reactionType": "LIKE" + }, + { + "count": 33, + "reactionType": "INTEREST" + }, + { + "count": 23, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6837669600138690560", + "numLikes": 513, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6837669600138690560", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 513, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6836937245690232832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6836937245690232832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6836937245690232832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6836937245690232832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-mines-de-cuivre-au-chili-premi%C3%A8res-victimes-activity-6836937245690232832-hpIE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6836937245212086272", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6836937245690232832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6836937245690232832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6836937245690232832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6836937245212086272", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "NVNGjA852VptSRaHesmX+g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6836937245690232832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7021774002027008098", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676378589090?e=1677240000&v=beta&t=p1J6pPmZuClqfeGoRi99jyUfi6Ua8Fr1E-LFfC8rz88", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676378589090?e=1677240000&v=beta&t=-4uHR4KIVrLY33pDthX1L4CmzjUpzPQo67yvrjlI5Rw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676378589091?e=1677240000&v=beta&t=vo3tLBPiczLF5miBC34Ns5caJ_H1DmXh8BAkRd8aHE0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676378589091?e=1677240000&v=beta&t=E8TJlE4ml3Wz81Pqtupo_kmKMjol1_QQ2ettB-W6uZo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGde83y6Fw3mQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7021774002027008098)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7021774002027008098)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les mines de cuivre au Chili, premi\u00e8res victimes du manque d'eau by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/les-mines-de-cuivre-au-chili-premieres-victimes-du-manque-deau-1340672" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les mines de cuivre au Chili, premi\u00e8res victimes du manque d'eau" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6836937245212086272,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un des risques li\u00e9s \u00e0 un d\u00e9but de r\u00e9chauffement climatique, c'est qu'il conduise... \u00e0 augmenter encore les \u00e9missions avec les marges de manoeuvre mises en oeuvre, du moins tant qu'on le peut. \n\nCe risque est bien identifi\u00e9 avec la climatisation par exemple, qui engendre une demande croissante en \u00e9lectricit\u00e9 qui, en moyenne mondiale, est carbon\u00e9e \u00e0 65% (et ne se d\u00e9carbone pas vite).\n\nCet article des Echos \u00e9voque un processus de cette nature, li\u00e9 \u00e0 l'eau, n\u00e9cessaire pour bien des activit\u00e9s, en l'esp\u00e8ce l'extraction du cuivre dans l'exemple choisi. Le stress hydrique pousse en effet \u00e0 cr\u00e9er des usines de d\u00e9salinisation, lesquelles fonctionnent... au gaz (mais l'article n'en parle pas :) ).\n\nIncidemment, la limite sur l'eau ne concerne pas que le cuivre au chili : les op\u00e9rations mini\u00e8res sont souvent tr\u00e8s consommatrices de ce fluide, et une des limites (pas la seule \u00e9videmment) \u00e0 l'augmentation tr\u00e8s forte de la production de m\u00e9taux qui serait n\u00e9cessaire pour d\u00e9carboner l'\u00e9lectricit\u00e9 en recourant \u00e0 des moyens diffus et \u00e0 faible facteur de charge (\u00e9olien et solaire), demandeurs de beaucoup plus de m\u00e9tal par kWh que les moyens \"traditionnels\", peut venir de l\u00e0. Rares (inexistants ?) sont les sc\u00e9narios de \"transition\" qui regardent cet aspect l\u00e0." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6836937245212086272,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6836937245690232832,urn:li:activity:6836937245690232832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6836937245690232832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6836937245690232832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6836937245690232832", + "threadId": "activity:6836937245690232832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6836937245690232832", + "urn": "urn:li:activity:6836937245690232832", + "numComments": 88, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6836937245690232832", + "reactionTypeCounts": [ + { + "count": 548, + "reactionType": "LIKE" + }, + { + "count": 98, + "reactionType": "INTEREST" + }, + { + "count": 76, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6836937245690232832", + "numLikes": 726, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6836937245690232832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 726, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6836699025123635201,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6836699025123635201", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6836699025123635201)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6836699025123635201)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_cet-%C3%A9t%C3%A9-aura-apport%C3%A9-une-preuve-de-plus-que-activity-6836699025123635201-5NnG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6836699024611934208", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6836699025123635201", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6836699025123635201,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6836699025123635201,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6836699024611934208", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "5uChbtioOviFHyLjp6K2yg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6836699025123635201,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEoXDspDe45eQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEoXDspDe45eQ", + "artifacts": [ + { + "width": 921, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1629996066295?e=1679529600&v=beta&t=SDOVcoOKccmN2H44cdH2zJ1mwSGri7sQw-i5KCtBiy4", + "expiresAt": 1679529600000, + "height": 1536 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1629996066634?e=1679529600&v=beta&t=3QD3hQemP2pDS-E5DcXe7ttbJRlMg6ftfPj5Q918Zx4", + "expiresAt": 1679529600000, + "height": 33 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1629996066634?e=1679529600&v=beta&t=_ys4eesGyXFW_1vDgdkalUmtuYEob4KJi6kxfCpXqHg", + "expiresAt": 1679529600000, + "height": 2132 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1629996066634?e=1679529600&v=beta&t=680_zU1L1aRRTXY_Liy0b8L5pS-TTbe1vl5xv7a609c", + "expiresAt": 1679529600000, + "height": 799 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1629996066634?e=1679529600&v=beta&t=k2swigL7PB0bGhB8BuhlXXfIqO5NcL-rM0opdXsaxMM", + "expiresAt": 1679529600000, + "height": 266 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1629996066634?e=1679529600&v=beta&t=MnoY6zyU_BejwIPRuGyHmEN7fHmtXw0QIsHqvNlGtx8", + "expiresAt": 1679529600000, + "height": 1333 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEoXDspDe45eQ/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6836699024611934208,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Cet \u00e9t\u00e9 aura apport\u00e9 une preuve de plus que l'\u00e9volution climatique est porteuse de risques pour les activit\u00e9s humaines, et malheureusement ces risques vont aller croissant. \n\nPour renforcer son \u00e9quipe d\u00e9di\u00e9e \u00e0 cette probl\u00e9matique, Carbone 4 recherche un consultant senior \"adaptation et r\u00e9silience\" : https://lnkd.in/dDSBuN3s\n\nSi les informations (pas terribles) des deux derniers mois vous motivent pour essayer d'apporter votre petite pierre \u00e0 l'\u00e9difice, c'est le moment !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6836699024611934208,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6836699025123635201,urn:li:activity:6836699025123635201,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6836699025123635201,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6836699025123635201,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6836699025123635201", + "threadId": "activity:6836699025123635201", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6836699025123635201", + "urn": "urn:li:activity:6836699025123635201", + "numComments": 76, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6836699025123635201", + "reactionTypeCounts": [ + { + "count": 1429, + "reactionType": "LIKE" + }, + { + "count": 224, + "reactionType": "INTEREST" + }, + { + "count": 159, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6836699025123635201", + "numLikes": 1848, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6836699025123635201", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1848, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6836680647734554624,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6836680647734554624", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6836680647734554624)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6836680647734554624)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_energie-la-californie-contrainte-dinstaller-activity-6836680647734554624-GkGH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6836680646899884032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6836680647734554624", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6836680647734554624,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6836680647734554624,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6836680646899884032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "9PvmJWQ+JgqGef9hWxkY1A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6836680647734554624,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7686101060909235746", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675508183102?e=1677240000&v=beta&t=ZwMxl8cBB_79ofplMLDlowH3o6obPtePFMrCm-bpXfU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675508183102?e=1677240000&v=beta&t=SVOMLxYbTXq559QWCHZ_zD-a1AssL_3rw5iDGS63__c", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675508183102?e=1677240000&v=beta&t=vwr8e78HVBc555xa_7Rxe77isU_WiVrSaj_1qjq6VFM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675508183102?e=1677240000&v=beta&t=v0UeNH7IYc5gP1DUyC7_cKCKYDo8sArhBm2tGTNQkNU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEokRksly4QlA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7686101060909235746)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7686101060909235746)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Energie : la Californie contrainte d'installer des mini-centrales \u00e0 gaz by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/energie-la-californie-contrainte-dinstaller-des-mini-centrales-a-gaz-1340823" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Energie\u00a0: la Californie contrainte d'installer des mini-centrales \u00e0 gaz" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6836680646899884032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les fournisseurs de gaz ont raison d'aimer les fabricants d'\u00e9oliennes et de panneaux solaires. Apr\u00e8s l'Espagne (qui a construit des centrales au gaz en m\u00eame temps que des \u00e9oliennes), l'Allemagne (qui \"avance\" vers un mix enr+gaz), la Belgique (qui veut remplacer son nucl\u00e9aire par du gaz), et j'en passe, c'est au tour de la Californie de se tourner vers ce combustible fossile pour \u00e9quilibrer l'intermittence de l'\u00e9olien et du solaire.\n\nD'ordinaire, quand on souhaite r\u00e9ussir coute que coute \u00e0 atteindre un objectif, on commence par utiliser des moyens \u00e9prouv\u00e9s, m\u00eame s'ils pr\u00e9sentent des inconv\u00e9nients, et pendant que l'on avance on cherche en m\u00eame temps si on ne pourrait pas avoir mieux. Le cas de figure typique c'est l'emploi : il faut bien payer le loyer, alors on prend un job qui n'est peut-\u00eatre pas celui de ses r\u00eaves (mais on sait que ca permet de payer le loyer), et on cherche mieux pendant que l'on a quand m\u00eame un toit.\n\nOn pourrait imaginer la m\u00eame chose pour d\u00e9carboner l'\u00e9lectricit\u00e9 : on sait que ce qui fonctionne bien ce sont les barrages et les r\u00e9acteurs nucl\u00e9aires, donc on commence par mobiliser ces moyens l\u00e0, et dans le m\u00eame temps on met quelque argent dans la recherche pour \u00e9ventuellement trouver mieux (du nucl\u00e9aire plus performant, des moyens intermittents mais efficaces et coupl\u00e9s \u00e0 du stockage lui-m\u00eame disponible en grande quantit\u00e9 sans d\u00e9bauche de moyens physiques, etc).\n\nMais de nombreux pays dans le monde font l'inverse. Ils d\u00e9laissent les moyens \u00e9prouv\u00e9s - voire les ferment - pour prendre un pari qu'ils ne sont pas du tout s\u00fbrs de gagner. Et, du reste, pour le moment tout ce que les pays en question ont gagn\u00e9 c'est d'en reprendre pour 30 ou 40 ans de gaz. \n\n30 ans, ce n'est pas le temps qu'il nous reste pour ne plus rien \u00e9mettre du tout ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6836680646899884032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6836680647734554624,urn:li:activity:6836680647734554624,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 106, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6836680647734554624,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6836680647734554624,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6836680647734554624", + "threadId": "activity:6836680647734554624", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6836680647734554624", + "urn": "urn:li:activity:6836680647734554624", + "numComments": 261, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6836680647734554624", + "reactionTypeCounts": [ + { + "count": 2515, + "reactionType": "LIKE" + }, + { + "count": 253, + "reactionType": "MAYBE" + }, + { + "count": 232, + "reactionType": "INTEREST" + }, + { + "count": 100, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6836680647734554624", + "numLikes": 3120, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6836680647734554624", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3120, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6836203914304475136,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6836203914304475136", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6836203914304475136)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6836203914304475136)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_opinion-why-carbon-pricing-is-not-sufficient-activity-6836203914304475136-OR6o?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6836203913545318400", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6836203914304475136", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6836203914304475136,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6836203914304475136,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6836203913545318400", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "7+DQQOqk+w3PtpY5O5sRHA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6836203914304475136,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8975903782750635177", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1587488081596?e=1677240000&v=beta&t=LYzuyMEgysmKPDywKEtLnlOc4EF9wp_tMvD7aOtPhkE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1587488081596?e=1677240000&v=beta&t=_OkJqBBXPC7AfjWEw_f60LxPWKamhwBPbKXizd5Wogw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1587488081596?e=1677240000&v=beta&t=OlW1FFVXaJ-CDoE7LsHplYBFcfRo4217Vm-SnLgWu_Y", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1587488081596?e=1677240000&v=beta&t=3y-jzrUeT12vgJZNMx8A5mpY4EQjZdLGMkUd-5u1yik", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEN-PSKs7LCcA/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8975903782750635177)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8975903782750635177)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "pnas.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Opinion: Why carbon pricing is not sufficient to mitigate climate change\u2014and how \u201csustainability transition policy\u201d can help by pnas.org", + "actionTarget": "https://www.pnas.org/content/117/16/8664" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Opinion: Why carbon pricing is not sufficient to mitigate climate change\u2014and how \u201csustainability transition policy\u201d can help" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6836203913545318400,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les Proceedings of the National Academy of Sciences (PNAS) ont publi\u00e9 il y a plus d'un an une tribune (qui ne fait pas l'objet d'une revue par un comit\u00e9 de lecture) qui reste d'une actualit\u00e9 br\u00fblante, sans mauvais jeu de mots, sur la question suivante : le \"prix du carbone\" est-il la base de toute trajectoire de d\u00e9carbonation ?\n\nOui, avait plaid\u00e9 votre serviteur dans un livre co-\u00e9crit avec Alain Grandjean et paru en 2006 : https://lnkd.in/gkcMgu5\n\nPas tant que ca, plaident les auteurs de cette tribune, car ce syst\u00e8me souffre de plusieurs faiblesses :\n- tout d'abord, il postule que la d\u00e9carbonation ne demande que des \"corrections du march\u00e9\", et non des transformations syst\u00e9miques,\n- il pousse \u00e0 l'optimisation de l'existant de fa\u00e7on incr\u00e9mentale, non \u00e0 sa transformation, \n- il garantit une optimisation unitaire des objets, non une r\u00e9duction d'ensemble (l'effet rebond reste possible),\n- enfin cette mesure n'int\u00e8gre pas le contexte politique local (pour donner un exemple pr\u00e9cis, elle ne \"pr\u00e9voit\" pas les gilets jaunes).\n\nEn cons\u00e9quence de quoi, tout miser sur le prix du carbone est trop lent et trop partiel pour nous permettre d'arriver \u00e0 bon port dans les d\u00e9lais impartis. Et l'exp\u00e9rience des 15 ann\u00e9es \u00e9coul\u00e9es depuis la parution du \"Plein s'il vous plait\" me conduit \u00e0 \u00eatre d'accord avec eux (il faut bien que l'exp\u00e9rience serve \u00e0 quelque chose parfois !). Une taxe dit ce qu'il ne faut plus faire, mais ne dit pas n\u00e9cessairement quoi faire. \n\nLa taxe carbone a en outre un effet pervers non d\u00e9crit par les auteurs : comme elle fournit des recettes \u00e0 l'Etat, ce dernier n'a pas int\u00e9r\u00eat \u00e0 supprimer la nuisance, pour conserver la recette (point identifi\u00e9 dans Le Plein).\n\nC'est pour cela que l'approche retenue dans le plan de transformation de l'\u00e9conomie fran\u00e7aise du Shift Project (https://lnkd.in/dNARPrU ), qui est destin\u00e9 \u00e0 nourrir le d\u00e9bat des prochaines pr\u00e9sidentielles (et au-del\u00e0), est celle pr\u00e9conis\u00e9e dans cet article : un ensemble de politiques sectorielles coh\u00e9rentes, disant quoi faire en m\u00eame temps que quoi ne plus faire, nommant les acteurs qui doivent agir, donnant des objectifs globaux, pr\u00e9voyant la mani\u00e8re de \"traiter les perdants\", d\u00e9crivant les structures \u00e0 mettre en place et celles \u00e0 supprimer, et les comp\u00e9tences qui seront n\u00e9cessaires. Bref, un plan bien con\u00e7u (car on peut faire des plans foireux, le simple fait de faire un plan ne garantit pas le succ\u00e8s !).\n\nPour donner un exemple, pour remplacer les chaudi\u00e8res \u00e0 fioul par des pompes \u00e0 chaleur, il faut des propri\u00e9taires agissant, des artisans bien form\u00e9s et une fili\u00e8re de production aux volumes adapt\u00e9s. La taxe carbone ne fait pas spontan\u00e9ment \u00e9merger ce syst\u00e8me, qui peut tr\u00e8s bien se mettre en place avec uniquement des d\u00e9cisions r\u00e9glementaires.\n\nLa taxe carbone est assur\u00e9ment un outil utile dans un projet de soci\u00e9t\u00e9, mais elle ne remplace pas ce dernier." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6836203913545318400,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6836203914304475136,urn:li:activity:6836203914304475136,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 23, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6836203914304475136,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6836203914304475136,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6836203914304475136", + "threadId": "activity:6836203914304475136", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6836203914304475136", + "urn": "urn:li:activity:6836203914304475136", + "numComments": 55, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6836203914304475136", + "reactionTypeCounts": [ + { + "count": 348, + "reactionType": "LIKE" + }, + { + "count": 52, + "reactionType": "INTEREST" + }, + { + "count": 30, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6836203914304475136", + "numLikes": 441, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6836203914304475136", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 441, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6835961053105414145,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6835961053105414145", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6835961053105414145)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6835961053105414145)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_how-to-spot-the-difference-between-a-real-activity-6835961053105414145-llH3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6835961052476280833", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6835961053105414145", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6835961053105414145,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6835961053105414145,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6835961052476280833", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "N0fF27rzHP7j/9fjGE3a0g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6835961053105414145,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7517423720355897108", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676491262679?e=1677240000&v=beta&t=qX6SdVZMmk_8Lztt6Ce1OYp9ftZSEM9WwWNVRZrvgPo", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676491262679?e=1677240000&v=beta&t=ITfQmWFhLPMcdpTydqOk4Snkbh3BkBE4jcjeIefbk-k", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676491262680?e=1677240000&v=beta&t=R9FcF-NrpDUgMpF8CuQMqnLZvy3lVIyyGLj4z_HSslk", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676491262680?e=1677240000&v=beta&t=fJw6uamdd2_1YZ6F98XCFIn4VdqzAkoTZNY1B6fLTYQ", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEsD4yn_nKVTA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7517423720355897108)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7517423720355897108)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: How to spot the difference between a real climate policy and greenwashing guff | Damian Carrington by amp-theguardian-com.cdn.ampproject.org", + "actionTarget": "https://amp-theguardian-com.cdn.ampproject.org/c/s/amp.theguardian.com/commentisfree/2021/may/06/difference-real-climate-policy-greenwashing-emissions" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "How to spot the difference between a real climate policy and greenwashing guff | Damian Carrington" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6835961052476280833,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 17, + "miniProfile": { + "firstName": "Damian", + "lastName": "Carrington", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAAyTaUB2v4Q0y9H6zHd_1yd1iwZNljD0T4", + "occupation": "Head of Environment at Guardian.co.uk", + "objectUrn": "urn:li:member:3296677", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAAyTaUB2v4Q0y9H6zHd_1yd1iwZNljD0T4", + "publicIdentifier": "damian-carrington-97112b1", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1584449966694?e=1681948800&v=beta&t=WciNUTqIwyKM8pkzPNS_994Sc6TnpGmJVKiB9qWX3tk", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1584449966694?e=1681948800&v=beta&t=yiU6d8fU2d8j1NtlxICdVF95lvcBE16jCcUV8HH8G48", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1584449966694?e=1681948800&v=beta&t=9zjjHGq4KYNrvJun3fwTbcrIqpd6NOw1Uc9faFU7msE", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1584449966694?e=1681948800&v=beta&t=EumwlxHXyPnd9ZJqUoNiBqvmF4aRtmfn3nWdIOyY_CE", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQHmrNQ64_hmkA/profile-displayphoto-shrink_" + } + }, + "trackingId": "l+oGMLYZSlmIOQccXUhtxA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 76, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:102206", + "entityUrn": "urn:li:fs_miniCompany:102206", + "name": "The Guardian", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1542099827433?e=1684972800&v=beta&t=Yx2ZOjks8TsbE8CN3cc8exTaIKorXbUdRC9BhIGDX40", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1542099827433?e=1684972800&v=beta&t=F1Y-XTfxac0xqdnzU9Y2RFk50XKOR8xzp-Rxq33MgBQ", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1542099827433?e=1684972800&v=beta&t=qOaKJl6tZfQOaqv4ZX3ImrZXfsiF7yKbn1UX0erewcY", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQEnYZHh3XuJCg/company-logo_" + } + }, + "universalName": "theguardian", + "dashCompanyUrn": "urn:li:fsd_company:102206", + "trackingId": "L2kP7H5pT1CxgrsPp1u5Aw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Damian Carrington, qui pilote l'environnement dans le quotidien britannique The Guardian, publie une tribune dans laquelle il remarque - \u00e0 juste titre - que le \"n'importe quoi\" est en train de changer de nature dans le domaine du climat.\n\nLa premi\u00e8re fourn\u00e9e de \"n'importe quoi\" concernait la n\u00e9gation du probl\u00e8me, appell\u00e9e classiquement \"climatoscepticisme\". Elle a \u00e9t\u00e9 relay\u00e9e par la presse (car sans media les climatoceptiques n'ont pas d'existence publique !) au nom du \"droit au d\u00e9bat\" qui en l'esp\u00e8ce relevait plutot de la complicit\u00e9 d'imposture : https://lnkd.in/g4-_M7f .\n\nComme le probl\u00e8me n'\u00e9tait pas encore visible, ces points de vue ont trouv\u00e9 un certain \u00e9cho, m\u00eame si l'examen approfondi des arguments permettait toujours de voir qu'ils n'\u00e9taient pas valides (https://lnkd.in/df3fzsmF ).\n\nA mesure que le temps passe, et que les pr\u00e9visions d'il y a 20 ou 30 ans deviennent une r\u00e9alit\u00e9 (malheureusement), ce courant l\u00e0 faiblit un peu, m\u00eame s'il ne dispara\u00eetra jamais (https://lnkd.in/da8NZpc ).\n\nPlace alors \u00e0 la deuxi\u00e8me vague du d\u00e9ni : le greenwashing. L\u00e0, il ne s'agit plus de se rassurer en niant le probl\u00e8me, mais de se rassurer en expliquant qu'il est facile \u00e0 mettre sous contr\u00f4le, si ce n'est d\u00e9j\u00e0 fait, alors m\u00eame que les actes montrent l'exact inverse.\n\nCe sont des gouvernements faisant des d\u00e9clarations martiales de neutralit\u00e9 pendant qu'ils font tout pour encourager le \"d\u00e9veloppement\" de l'\u00e9conomie actuelle, qui \u00e9met des gaz \u00e0 effet de serre ; ce sont des entreprises dont l'empreinte carbone augmente en m\u00eame temps qu'elles se d\u00e9clarent neutres ; ce sont des financiers qui expliquent qu'ils lavent plus vert alors que ce n'est pas le cas (https://lnkd.in/dRS9vNZ) ; ce sont des entreprises qui attirent l'attention sur une solution qui vaut 1 pendant que le probl\u00e8me vaut 1000, et la liste des \"trouvailles\" risque fort de s'allonger avec le temps.\n\nQue faire ? Il se trouve que le d\u00e9ni face \u00e0 la menace diffuse et non palpable est une r\u00e9action h\u00e9las tr\u00e8s normale, car cela permet de recr\u00e9er un monde pr\u00e9visible, ce qui est une de nos envies fortes : https://lnkd.in/d3ZhQ8Pa\n\nIl y pourtant un d\u00e9but de solution, et qui passe justement par la presse. Cette derni\u00e8re pourrait former ses journalistes \u00e0 comprendre ce qu'est le greenwashing, puis refuser de relayer ce qui en rel\u00e8ve. Ca ne changera pas la structure de notre cerveau, mais ca pourrait donner un peu plus envie de mieux faire \u00e0 tous ceux qui ont surtout envie de se rassurer \u00e0 bon compte." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6835961052476280833,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6835961053105414145,urn:li:activity:6835961053105414145,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6835961053105414145,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6835961053105414145,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6835961053105414145", + "threadId": "activity:6835961053105414145", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6835961053105414145", + "urn": "urn:li:activity:6835961053105414145", + "numComments": 96, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6835961053105414145", + "reactionTypeCounts": [ + { + "count": 1285, + "reactionType": "LIKE" + }, + { + "count": 94, + "reactionType": "INTEREST" + }, + { + "count": 93, + "reactionType": "PRAISE" + }, + { + "count": 44, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6835961053105414145", + "numLikes": 1543, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6835961053105414145", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1543, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6835483802240851968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6835483802240851968", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6835483802240851968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6835483802240851968)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pour-l%C3%A9nergie-atomique-circulaire-mais-activity-6835483802240851968-8yRW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6835483801657843712", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6835483802240851968", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6835483802240851968,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6835483802240851968,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6835483801657843712", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "Sp4nlCBosTt4X7jbCynTEg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6835483802240851968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8923105494741459284", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1675520977354?e=1677240000&v=beta&t=o8AhEnmVNWDM20OY2jwnZdqBV-iW69IXenYeKa6C7GI", + "expiresAt": 1677240000000, + "height": 426 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675520977354?e=1677240000&v=beta&t=JOmuMwRXkpazhU2fH4F-9PD_LJdTuRAsTwXGTSmyOqY", + "expiresAt": 1677240000000, + "height": 426 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675520977354?e=1677240000&v=beta&t=CYT7YzjP2g6c8xALgmZTrUdmpVIGTIzK3kveJGgILt4", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675520977354?e=1677240000&v=beta&t=n08y0aez4N45hJRmwuUjk_a_KkXIi3cvtgnKwiwgXnA", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEmVID7oEyv7g/articleshare-shrink_" + }, + "displayAspectRatio": 0.665625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8923105494741459284)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8923105494741459284)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "trends.levif.be \u2022 29 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pour l'\u00e9nergie atomique (circulaire), mais contre une certaine industrie nucl\u00e9aire by trends.levif.be", + "actionTarget": "https://trends.levif.be/economie/politique-economique/pour-l-energie-atomique-circulaire-mais-contre-une-certaine-industrie-nucleaire/article-opinion-1458053.html?cookie_check=1629653194" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pour l'\u00e9nergie atomique (circulaire), mais contre une certaine industrie nucl\u00e9aire" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6835483801657843712,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un collectif de belges, plut\u00f4t jeunes (enfin vu de ma fen\u00eatre !), et surtout ne travaillant pas dans l'industrie nucl\u00e9aire (on y trouve des personnes travaillant dans \"le vivant\", un dentiste, des gens dans le num\u00e9rique...) appelle, dans une longue tribune publi\u00e9e par Le Vif, \u00e0 faire en sorte que le nucl\u00e9aire soit du c\u00f4t\u00e9 des solutions plut\u00f4t que des probl\u00e8mes, en soutenant que c'est possible si on le souhaite. \n\nL'int\u00e9r\u00eat de ce texte est qu'il argumente essentiellement en termes de risques compar\u00e9s, ce qui est \u00e0 l'\u00e9vidence la bonne mani\u00e8re de faire dans le monde r\u00e9el, o\u00f9 rien n'est parfait, mais o\u00f9 il y a souvent une alternative qui est meilleure, ou \u00e0 d\u00e9faut moins mauvaise, qu'une autre. \n\nLes auteurs \u00e9crivent que tous les nucl\u00e9aires ne se valent pas, et qu'il y a de bonnes et de mauvaises mani\u00e8res d'en faire, comme il y a de bonnes et de mauvaises mani\u00e8res de faire de l'acier (en faire un peu pour des couverts et des v\u00e9los n'est pas \u00e9quivalent \u00e0 en faire beaucoup pour construire des villes non soutenables). Il faut d\u00e9cider d'en faire de la bonne mani\u00e8re, et pour cela il faut discuter dans les d\u00e9tails, en sortant du sch\u00e9ma binaire pour ou contre, qui est d\u00e9sormais st\u00e9rile.\n\nDans les arguments \u00e9voqu\u00e9s que je n'avais pas vus avant, il y a notamment le fait que d'abandonner le nucl\u00e9aire civil en Europe revient \u00e0 laisser de fait son d\u00e9veloppement \u00e0 des autocrates (Russie, Chine) ou \u00e0 des int\u00e9r\u00eats priv\u00e9s (Gates, etc) qui en d\u00e9finiront alors les standards et les technologies avec des crit\u00e8res qui n'auraient peut-\u00eatre pas \u00e9t\u00e9 les n\u00f4tres. \n\nLes auteurs appellent \u00e9videmment le gouvernement belge \u00e0 reconsid\u00e9rer sa position, qu'ils trouvent non justifi\u00e9e et pour partie b\u00e2tie sur des probl\u00e8mes d'ego (ils n'ont pas tort...), mais leur propos va bien au-del\u00e0 de cette \u00e9ch\u00e9ance \"courte\" et du cas belge, et embrasse plus largement la place de cette technologie et de l'Europe dans un combat plan\u00e9taire.\n\nNotons qu'une des mani\u00e8res de sortir du d\u00e9bat binaire \u00e9voqu\u00e9 par les auteurs, c'est justement de laisser de l'espace \u00e0 des textes un peu nuanc\u00e9s et vulgarisant un peu en profondeur les termes du d\u00e9bat. Dont acte pour Le Vif." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6835483801657843712,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6835483802240851968,urn:li:activity:6835483802240851968,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 83, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6835483802240851968,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6835483802240851968,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6835483802240851968", + "threadId": "activity:6835483802240851968", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6835483802240851968", + "urn": "urn:li:activity:6835483802240851968", + "numComments": 286, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6835483802240851968", + "reactionTypeCounts": [ + { + "count": 3134, + "reactionType": "LIKE" + }, + { + "count": 245, + "reactionType": "INTEREST" + }, + { + "count": 234, + "reactionType": "MAYBE" + }, + { + "count": 105, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "EMPATHY" + }, + { + "count": 26, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6835483802240851968", + "numLikes": 3770, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6835483802240851968", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3770, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6835138041988841472,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6835138041988841472", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6835138041988841472)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6835138041988841472)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_russie-vladimir-poutine-appelle-%C3%A0-agir-activity-6835138041988841472-pd--?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6835138041472942080", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6835138041988841472", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6835138041988841472,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6835138041988841472,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6835138041472942080", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "nqbxWy5QNJjbNxOTOABZ7Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6835138041988841472,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8930898641784006840", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675811456192?e=1677240000&v=beta&t=bSS5hn-QFfj5uV8R1xGn4J3bdwtki7eymmdQVqottVY", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675811456192?e=1677240000&v=beta&t=AeZfdVL5pgeXy-NNpQgMkV4fqjsv1THZoIxE-oycieA", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675811456192?e=1677240000&v=beta&t=2n3xboicy2nUoD_Z_trfl4EshVyBCXrwl95DVhNCicw", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675811456193?e=1677240000&v=beta&t=q8BnM_LlYUyeiYJ5YpydF47SVRiJzUALzWjJ5IGpZYY", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFdIrjJqOweHw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8930898641784006840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8930898641784006840)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Russie : Vladimir Poutine appelle \u00e0 agir face \u00e0 des catastrophes naturelles d\u2019une \u00ab ampleur sans pr\u00e9c\u00e9dent \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/planete/article/2021/08/14/russie-vladimir-poutine-appelle-a-agir-face-a-des-catastrophes-naturelles-d-une-ampleur-sans-precedent_6091440_3244.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Russie\u00a0: Vladimir Poutine appelle \u00e0 agir face \u00e0 des catastrophes naturelles d\u2019une \u00ab\u00a0ampleur sans pr\u00e9c\u00e9dent\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6835138041472942080,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Russie n'a jamais \u00e9t\u00e9 un pays tr\u00e8s visible en ce qui concerne les discours sur la r\u00e9duction des \u00e9missions de gaz \u00e0 effet de serre, et est plut\u00f4t connue pour tra\u00eener gentiment la patte dans les d\u00e9bats internationaux sur le changement climatique (elle est le 4\u00e8 \u00e9metteur mondial de CO2, apr\u00e8s la Chine, les USA et l'Inde).\n\nPlusieurs facteurs peuvent expliquer ce fait :\n- pays subissant un climat rude sur l'essentiel de son territoire, le r\u00e9chauffement y \u00e9tait vu comme apportant des effets plut\u00f4t b\u00e9n\u00e9fiques (ports moins longtemps englac\u00e9s sur l'Arctique, conditions plus favorables pour l'agriculture...),\n- la Russie est dans le top 3 des producteurs de p\u00e9trole (2\u00e8 en 2020, et 1er exportateur mondial) et de gaz (2\u00e8 en 2020 aussi, et aussi 1er exportateur mondial). A cela il faut ajouter la d\u00e9tention des 1\u00e8res r\u00e9serves mondiales de gaz et les 3\u00e8 pour le charbon. \n\nMais, sans mauvais jeu de mots, le vent tourne un peu. Ce pays r\u00e9alise que le r\u00e9chauffement climatique ce sont aussi des s\u00e9cheresses et par cons\u00e9quence des incendies de plus en plus vastes et violents, des r\u00e9coltes de c\u00e9r\u00e9ales qui peuvent descendre au lieu de monter, ou encore des infrastructures construites sur le permafrost qui se fragilisent.\n\nNous n'en sommes pas encore \u00e0 la reconversion \u00e9conomique \u00e0 marche forc\u00e9e d'un pays o\u00f9 les hydrocarbures jouent un r\u00f4le \u00e9conomique central (de 20% \u00e0 40% du PIB selon les sources et le p\u00e9rim\u00e8tre retenu, mais ca fait beaucoup dans tous les cas de figure !). \n\nIl reste \u00e0 voir si cette inflexion dans le discours, alors que par ailleurs ce pays a annonc\u00e9 avoir pass\u00e9 son pic de production pour le p\u00e9trole (ce qui est coh\u00e9rent avec l'analyse du Shift Project : https://lnkd.in/d4UTPeJR ), sera suivie d'annonces ou de propos \"de suite\", ou non. Poutine n'\u00e9tant pas r\u00e9put\u00e9 pour tenir des propos visant juste \u00e0 faire plaisir \u00e0 d'autres, les optimistes se diront qu'il y a peut-\u00eatre le d\u00e9but d'une vraie perplexit\u00e9 dans ce pays. Ce serait une bonne nouvelle si c'est le cas !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6835138041472942080,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6835138041988841472,urn:li:activity:6835138041988841472,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 52, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6835138041988841472,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6835138041988841472,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6835138041988841472", + "threadId": "activity:6835138041988841472", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6835138041988841472", + "urn": "urn:li:activity:6835138041988841472", + "numComments": 77, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6835138041988841472", + "reactionTypeCounts": [ + { + "count": 1147, + "reactionType": "LIKE" + }, + { + "count": 205, + "reactionType": "MAYBE" + }, + { + "count": 136, + "reactionType": "INTEREST" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6835138041988841472", + "numLikes": 1510, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6835138041988841472", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1510, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6834887651754033152,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6834887651754033152", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6834887651754033152)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6834887651754033152)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_biomasse-agricole-quelles-ressources-pour-activity-6834887651754033152-nXUJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6834887651212972032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6834887651754033152", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6834887651754033152,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6834887651754033152,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6834887651212972032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "TB6gpiGecPSb93pNDMXycg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6834887651754033152,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7360034400381579515", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 633, + "fileIdentifyingUrlPathSegment": "800/0/1675523446389?e=1677240000&v=beta&t=SvaawqZ2BC7q21XlCn78RvDFUMokyo-gHzVbjUVzNCI", + "expiresAt": 1677240000000, + "height": 300 + }, + { + "width": 633, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675523446389?e=1677240000&v=beta&t=gx5CW5Lu_vxKV8-oIm7pYJgnvtCA_F70Ta69rmS2ApQ", + "expiresAt": 1677240000000, + "height": 300 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675523446389?e=1677240000&v=beta&t=nQE2uep1z-nORGJ1eod8JQMYkuy0fvi147N6F8l_QTo", + "expiresAt": 1677240000000, + "height": 75 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675523446390?e=1677240000&v=beta&t=AG8dAnWTsI_buQoy-sIrlQ2BXsDqypURuLRs8CKA32M", + "expiresAt": 1677240000000, + "height": 227 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFxiUF5SJy2Tg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7360034400381579515)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7360034400381579515)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "strategie.gouv.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Biomasse agricole : quelles ressources pour quel potentiel \u00e9nerg\u00e9tique ? by strategie.gouv.fr", + "actionTarget": "https://www.strategie.gouv.fr/publications/biomasse-agricole-ressources-potentiel-energetique" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Biomasse agricole : quelles ressources pour quel potentiel \u00e9nerg\u00e9tique ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6834887651212972032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Peut-on \u00e0 la fois \"adoucir\" les pratiques culturales, nourrir une population en croissance, avoir plus de bois comme mat\u00e9riau, plus de biomasse pour des usages \u00e9nerg\u00e9tiques, pr\u00e9server la biodiversit\u00e9, et augmenter les puits de carbone dans un climat \u00e0 la d\u00e9rive ? \n\nCa va \u00eatre plus vite dit que fait, consid\u00e8re France Strat\u00e9gie, qui vient de publier une \u00e9tude indiquant que le potentiel de biomasse retenu dans la Strat\u00e9gie Nationale Bas Carbone lui semble (beaucoup) trop optimiste, m\u00eame en imaginant des \u00e9volutions... optimistes par ailleurs sur les param\u00e8tres dimensionants de l'affaire : https://lnkd.in/dTF3PuhW \n\nEt m\u00eame France Strat\u00e9gie est optimiste : rappelons que, alors que nous avons toujours des tracteurs (p\u00e9trole, mais aussi \u00e9rosion des sols), des engrais (gaz, p\u00e9trole), des phytosanitaires (p\u00e9trole & pression sur la biodiversit\u00e9), et que le r\u00e9chauffement ne fait \"que\" 1\u00b0C, certaines cultures peuvent d\u00e9j\u00e0 perdre 40% d'une ann\u00e9e sur l'autre, et des for\u00eats peuvent d\u00e9j\u00e0 d\u00e9p\u00e9rir ou br\u00fbler (auquel cas il y a aussi une perte importante de biomasse).\n\nIl n'en reste pas moins que la biomasse est une composante essentielle d'un approvisionnement d\u00e9carbon\u00e9. Mais pour qu'un syst\u00e8me p\u00e9renne et adapt\u00e9 se mette en place, conciliant les contraires il ne faudra pas juste le souhaiter. Il faudrait s'en occuper avec au moins autant de moyens que ce que nous mettons dans les licornes et la 5G :)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6834887651212972032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6834887651754033152,urn:li:activity:6834887651754033152,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 37, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6834887651754033152,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6834887651754033152,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6834887651754033152", + "threadId": "activity:6834887651754033152", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6834887651754033152", + "urn": "urn:li:activity:6834887651754033152", + "numComments": 68, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6834887651754033152", + "reactionTypeCounts": [ + { + "count": 471, + "reactionType": "LIKE" + }, + { + "count": 46, + "reactionType": "INTEREST" + }, + { + "count": 38, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6834887651754033152", + "numLikes": 571, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6834887651754033152", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 571, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6834527516837863424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6834527516837863424", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6834527516837863424)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6834527516837863424)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_stocker-l%C3%A9lectricit%C3%A9-un-d%C3%A9fi-en-passe-d-activity-6834527516837863424-o309?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6834527516108046336", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6834527516837863424", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6834527516837863424,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6834527516837863424,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6834527516108046336", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "ZYHfqHxch7Z63w7PAMpvKQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6834527516837863424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7019850814254069141", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675966588913?e=1677240000&v=beta&t=Uyhj4OYtD4ZWhGUXS4bBynqdVlqZRzn-xgwgGyF1VII", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675966588914?e=1677240000&v=beta&t=lku54u3aV8Uid8cXCYjER3GMdSQK1JvIpleXHibfKkE", + "expiresAt": 1677240000000, + "height": 675 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675966588914?e=1677240000&v=beta&t=gV4JhnL014wu-vRHMSTWrsIKy4e7IE25D3C_icIDuHY", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675966588914?e=1677240000&v=beta&t=FoUUHzEErpH9_uEbqwGXyhkf7tivT5qVVOYNtfehe8U", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFhTk86RamjQA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7019850814254069141)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7019850814254069141)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "leparisien.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Stocker l\u2019\u00e9lectricit\u00e9, un d\u00e9fi en passe d\u2019\u00eatre relev\u00e9 by leparisien.fr", + "actionTarget": "https://www.leparisien.fr/economie/stocker-lelectricite-un-defi-en-passe-detre-releve-14-08-2021-MDFDIM2EHZAJ5NMSLU7VSCCK2M.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Stocker l\u2019\u00e9lectricit\u00e9, un d\u00e9fi en passe d\u2019\u00eatre relev\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6834527516108046336,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 24, + "length": 11, + "miniCompany": { + "objectUrn": "urn:li:company:623589", + "entityUrn": "urn:li:fs_miniCompany:623589", + "name": "Le Parisien", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1625869709060?e=1684972800&v=beta&t=9UMB0AWH70suQvVS57GtQIZ0zF1U9YmEv0PF4vjHdgs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1625869709060?e=1684972800&v=beta&t=E6a-mz1HFOQxQbaKbLUYqT6SzM83tOuGoT2NjUTbt14", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1625869709060?e=1684972800&v=beta&t=CB7nTfpGva-qPyEsaiXfpsqsm9NBjNJp_-4q3i2Ypnc", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQFpVJld1P2Jzw/company-logo_" + } + }, + "universalName": "le-parisien", + "dashCompanyUrn": "urn:li:fsd_company:623589", + "trackingId": "yoREu6IfQe2qLJ9kjgsF0Q==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 119, + "length": 13, + "miniProfile": { + "firstName": "Erwan", + "lastName": "Benezet", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAn_ElIBR4kKOxLubSjnpkpjRclz-9AAM4U", + "occupation": "Journaliste au service Economie du Parisien\u2013Aujourd\u2019hui en France. Auteur de \u00ab Nucl\u00e9aire : une catastrophe fran\u00e7aise \u00bb aux \u00e9ditions Fayard", + "objectUrn": "urn:li:member:167711314", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAn_ElIBR4kKOxLubSjnpkpjRclz-9AAM4U", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1643636254768?e=1681948800&v=beta&t=SYC_8JwTKXwAvz124KkyGDr-_KPkA8Z6W_EnmpwxbWI", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1643636254768?e=1681948800&v=beta&t=vK2XfP1MT0pvOHxDhshJvDV-pJ9OO8XGQ_AN50fKddM", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFo_5xmjrSWkQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "erwan-benezet-1aa1bb48", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1569591604422?e=1681948800&v=beta&t=dWfYkeyP4xoo892urcC0bFZnyM_P1o6Sk_kG1OgwpIA", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1569591604422?e=1681948800&v=beta&t=2XogMmEdmCHzx29nly76cR1ucqhV-ku6ZIY19rfIky4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1569591604422?e=1681948800&v=beta&t=55iqJEZPmmS2pGWfhxHONNX8pk2aujDXdaworS5y_XI", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1569591604422?e=1681948800&v=beta&t=iHp1ydJYcidsbectti5mBV1YJF9FXAzBV6URqWgYBuQ", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGTal2YFmiGbA/profile-displayphoto-shrink_" + } + }, + "trackingId": "PFSLjQWeTAODMnWn+d2cfA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "La titraille du journal Le Parisien aurait peut-\u00eatre du choisir une affirmation un peu moins \"choc\" pour cet article d'Erwan Benezet sur le stockage de l'\u00e9lectricit\u00e9.\n\nJe ne sais pas si l'article (r\u00e9serv\u00e9 aux seuls abonn\u00e9s) comporte un milliard de r\u00e9serves pour contrebalancer l'optimisme du titre, mais ce dernier laissera penser sans l'ombre d'une h\u00e9sitation au lecteur peu averti que stocker l'\u00e9lectricit\u00e9 (sous entendu \u00e0 la bonne \u00e9chelle) ne posera bient\u00f4t plus de probl\u00e8me, et donc le d\u00e9ploiement de sources intermittentes peut se faire sans limites de ce point de vue.\n\nSelon le Conseil G\u00e9n\u00e9ral de l'Economie, il faut 143 grammes de lithium pour faire une batterie d'un kWh de capacit\u00e9 de stockage (https://lnkd.in/dg6ZwHN2 ). Admettons que le progr\u00e8s technique permette de converger \u00e0 100 grammes (ca ne sera jamais 100 microgrammes, parce que ce sont pr\u00e9cis\u00e9ment les atomes de lithium qui stockent l'\u00e9nergie).\n\nSelon BP Statistical Review, citant l'US Geological Survey, les r\u00e9serves de lithium \u00e0 fin 2020 \u00e9taient de 18\u00a0955\u00a0000 tonnes dans le monde, soit de quoi fabriquer 190 TWh (1 TWh = 1 milliard de kWh) de capacit\u00e9 de stockage sur batteries en mode \"optimis\u00e9\". \n\nSelon RTE, avec un syst\u00e8me 100% \u00e9olien et solaire, il faut environ 50 TWh de stockage (donc environ 10% de la production) rien que pour se couvrir contre la variabilit\u00e9 de la production d'une ann\u00e9e sur l'autre (l'ensoleillement et le vent ne sont en effet pas constants d'une ann\u00e9e sur l'autre) : https://lnkd.in/d79qmtg\n\nLa France devrait donc \"s'arroger\" un quart du lithium des r\u00e9serves mondiales pour avoir un syst\u00e8me 100% ENR \"back\u00e9\" par du stockage sur batteries. C'est ce que soutient implicitement Le Parisien ?\n\nCertes, il y aura plus de lithium extractible que ce qu'il y a actuellement dans les r\u00e9serves prouv\u00e9es. Si le monde entier utilise des batteries pour \"backer\" l'intermittence, il faut donc du lithium pour 10% de la production \u00e9lectrique mondiale de 2020, soit environ 2700 TWh de capacit\u00e9 de stockage, demandant 15 fois les r\u00e9serves prouv\u00e9es actuelles (et cela sans parler d'une augmentation de la production \u00e9lectrique renouvelable pour pallier la baisse des combustibles fossiles). \n\nAvec ces ordres de grandeur, je ne suis pas compl\u00e8tement sur qu'un titre laissant penser que nous allons y arriver facilement \u00e9tait tout \u00e0 fait justifi\u00e9. C'est ennuyeux, parce que 99% des d\u00e9cideurs politiques ne font pas de r\u00e8gles de trois et, quoi qu'ils en disent, se reposent avant tout sur ce qu'ils lisent dans le journal... et parfois m\u00eame sur le seul titre !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6834527516108046336,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6834527516837863424,urn:li:activity:6834527516837863424,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 159, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6834527516837863424,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6834527516837863424,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6834527516837863424", + "threadId": "activity:6834527516837863424", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6834527516837863424", + "urn": "urn:li:activity:6834527516837863424", + "numComments": 414, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6834527516837863424", + "reactionTypeCounts": [ + { + "count": 3159, + "reactionType": "LIKE" + }, + { + "count": 464, + "reactionType": "INTEREST" + }, + { + "count": 257, + "reactionType": "MAYBE" + }, + { + "count": 130, + "reactionType": "PRAISE" + }, + { + "count": 20, + "reactionType": "EMPATHY" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6834527516837863424", + "numLikes": 4044, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6834527516837863424", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4044, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6834396245126082560,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6834396245126082560", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6834396245126082560)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6834396245126082560)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_dans-moins-de-2-semaines-ce-sera-h%C3%A9las-activity-6834396245126082560-Utz_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6834396244501123072", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6834396245126082560", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6834396245126082560,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6834396245126082560,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6834396244501123072", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "FZwXDozLyxSiWznpa6eJzw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6834396245126082560,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHvs8G8s7eirw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHvs8G8s7eirw", + "artifacts": [ + { + "width": 2012, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1629447038692?e=1679529600&v=beta&t=4nWaxc8yJN45PEc60Ju_-_e_lVwK1F864Bm_FPYg4xc", + "expiresAt": 1679529600000, + "height": 1016 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1629447040574?e=1679529600&v=beta&t=rAnV4rEhnwvnvjdkrcixGpLhT_adN4kyfGLeA69It2I", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1629447040574?e=1679529600&v=beta&t=DUE7Z9Y0MOGcLQzvQ2i9x6Mr42qR56FhoZN1LNaN9To", + "expiresAt": 1679529600000, + "height": 646 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1629447040574?e=1679529600&v=beta&t=RL2oJe0YEIIrkpEnH8xe5xb4eQzxOH26VU1CvNBFxQg", + "expiresAt": 1679529600000, + "height": 242 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1629447040574?e=1679529600&v=beta&t=TqSe0Igu1A18DdgLmBQqj5FIdEnHHbkW3ujeCbObNU4", + "expiresAt": 1679529600000, + "height": 81 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1629447040574?e=1679529600&v=beta&t=VnQEPOTokwzlR63F5FjlNcA_bJYZtJ84tD1Dh20ItMk", + "expiresAt": 1679529600000, + "height": 404 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHvs8G8s7eirw/feedshare-shrink_" + }, + "displayAspectRatio": 0.5049701789264414 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "diagram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6834396244501123072,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans moins de 2 semaines, ce sera, h\u00e9las ou heureusement selon les points de vue, la rentr\u00e9e. Apr\u00e8s un \u00e9t\u00e9 marqu\u00e9 - entre autres - par la publication du rapport du GIEC et des manifestations croissantes du changement climatique, d'aucun(e)s se disent peut-\u00eatre qu'il serait bon que, pour l'ann\u00e9e scolaire \u00e0 venir, les enjeux climatiques (et les sujets associ\u00e9s, notamment l'\u00e9nergie et l'agriculture) soient plus int\u00e9gr\u00e9s dans les programmes.\n\nAdmettons que vous soyez un(e) enseignant(e) et que vous soyez parfaitement en accord avec cette proposition. Reste encore \u00e0 construire un cours ! Que mettre dedans ? O\u00f9 trouver les ressources ou les coll\u00e8gues qui peuvent vous aider ?\n\nC'est dans cette optique qu'a \u00e9t\u00e9 d\u00e9velopp\u00e9, par un groupe de Shifters, et \u00e0 l'initiative du Shift Project, le site Enseigner le Climat : https://lnkd.in/d-2rc4fw\n\nEsp\u00e9rons que cette initiative pratique sera utile, ce qu'elle sera d'autant plus qu'elle sera enrichie par celles et ceux qui iront s'en servir (c'est le but)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6834396244501123072,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6834396245126082560,urn:li:activity:6834396245126082560,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 155, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6834396245126082560,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6834396245126082560,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6834396245126082560", + "threadId": "activity:6834396245126082560", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6834396245126082560", + "urn": "urn:li:activity:6834396245126082560", + "numComments": 211, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6834396245126082560", + "reactionTypeCounts": [ + { + "count": 3447, + "reactionType": "LIKE" + }, + { + "count": 501, + "reactionType": "PRAISE" + }, + { + "count": 96, + "reactionType": "MAYBE" + }, + { + "count": 66, + "reactionType": "APPRECIATION" + }, + { + "count": 59, + "reactionType": "EMPATHY" + }, + { + "count": 37, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6834396245126082560", + "numLikes": 4206, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6834396245126082560", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4206, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6834168661079531520,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6834168661079531520", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6834168661079531520)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6834168661079531520)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_dites-33-activity-6834168661079531520-99pb?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6834168660681072640", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6834168661079531520", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6834168661079531520,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6834168661079531520,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6834168660681072640", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "9O/PDldMD5/wekw9vMR5DQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6834168661079531520,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9017538120224785989", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 450, + "fileIdentifyingUrlPathSegment": "800/0/1675509872752?e=1677240000&v=beta&t=CM4VpQwF1kqz2NgpzDdoxW4yozzrZTbCMZf827CTIZk", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 450, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675509872753?e=1677240000&v=beta&t=bVgKx8LdGP52SfPp3D_9izccslzhlhXG05B4V2Y10bk", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675509872753?e=1677240000&v=beta&t=Trz2PJlcDv44Mpx6VpIk-ZsJjRontOS-eZrjvoJDI-Y", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 450, + "fileIdentifyingUrlPathSegment": "480/0/1675509872753?e=1677240000&v=beta&t=pnccahUuJbohWfuH-Rx88CDpuK8YyNlq_tY3fU0GrVU", + "expiresAt": 1677240000000, + "height": 450 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHdWnVApzOm5Q/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9017538120224785989)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9017538120224785989)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Dites 33 ! by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/articles-de-presse/dites-33/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Dites 33 !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6834168660681072640,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quelle originalit\u00e9 ! 3 jours apr\u00e8s la sortie du rapport du groupe 1 du GIEC, la tribune que j'ai publi\u00e9e dans l'Express porte sur... le GIEC. Un petit rappel de son fonctionnement, des fois que cela soit utile pour certain(e)s, puisque ce point n'est quasiment jamais d\u00e9velopp\u00e9 dans la presse.\n\nBonne lecture pour celles et ceux qui s'y risqueront !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6834168660681072640,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6834168661079531520,urn:li:activity:6834168661079531520,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 10, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6834168661079531520,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6834168661079531520,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6834168661079531520", + "threadId": "activity:6834168661079531520", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6834168661079531520", + "urn": "urn:li:activity:6834168661079531520", + "numComments": 72, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6834168661079531520", + "reactionTypeCounts": [ + { + "count": 348, + "reactionType": "LIKE" + }, + { + "count": 35, + "reactionType": "INTEREST" + }, + { + "count": 12, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6834168661079531520", + "numLikes": 402, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6834168661079531520", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 402, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6834037201983078400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6834037201983078400", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6834037201983078400)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6834037201983078400)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_methane-release-from-carbonate-rock-formations-activity-6834037201983078400-GSqd?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6834037201462968320", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6834037201983078400", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6834037201983078400,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6834037201983078400,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6834037201462968320", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "Bv7oq+O10fu1h9UvkfJtrA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6834037201983078400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8051035442429189535", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1627933183031?e=1677240000&v=beta&t=Ew4lAVcIXcjj2urvXFkFYJxapDRMQlz9vEE7NVWmkSg", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1627933183031?e=1677240000&v=beta&t=mAsGJIpj3w9znEe0t87cTYVWrk_VTeE9d-UafuOPf7c", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1627933183031?e=1677240000&v=beta&t=CH4PGOkL_ekHaKs1GAD6zKGZYGpB7TqvtDQsrvMoGzw", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1627933183031?e=1677240000&v=beta&t=2Ft9th9RU7DjWuJN5vyApd4oIXezVsQNYYJU8HeTiBE", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGnd6wq5qgCnQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8051035442429189535)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8051035442429189535)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "pnas.org \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Methane release from carbonate rock formations in the Siberian permafrost area during and after the 2020 heat wave by pnas.org", + "actionTarget": "https://www.pnas.org/content/118/32/e2107632118" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Methane release from carbonate rock formations in the Siberian permafrost area during and after the 2020 heat wave" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6834037201462968320,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 2020, il a fait chaud (d\u00e9j\u00e0) en Sib\u00e9rie. Le permafrost, qui d\u00e9signe le sol normalement gel\u00e9 en toutes saisons, \u00e0 quelques m\u00e8tres de profondeur, se met donc \u00e0 d\u00e9geler. A cette occasion, il peut lib\u00e9rer du m\u00e9thane de deux mani\u00e8res :\n- soit parce que l'activit\u00e9 de bact\u00e9ries ana\u00e9robies (dont le m\u00e9tabolisme se passe en dehors de la pr\u00e9sence d'oxyg\u00e8ne) augmente, et ces bact\u00e9ries \u00e9mettent du m\u00e9thane (ce sont les m\u00eames que celles que l'on trouve dans nos m\u00e9thaniseurs !),\n- soit parce que le m\u00e9thane qui a \u00e9t\u00e9 form\u00e9 au cours des \u00e8res g\u00e9ologiques - celui-l\u00e0 m\u00eame qui compose les gisements de gaz naturel, et qui \u00e9tait associ\u00e9 \u00e0 de la glace dans le permafrost - on parle d'hydrates de m\u00e9thane (https://lnkd.in/eXtnwu7h ) - est rel\u00e2ch\u00e9 par fonte de l'hydrate.\n\nL'article qui vient d'\u00eatre publi\u00e9 dans les Proceedings of the National Academy of Sciences (PNAS) indique que la concentration atmosph\u00e9rique en m\u00e9thane a fortement augment\u00e9 au cours de l'\u00e9t\u00e9 2020 en Sib\u00e9rie, et que l'augmentation a \u00e9t\u00e9 particuli\u00e8rement forte au-dessus des carbonates qui correspondent \u00e0 la formation g\u00e9ologique de m\u00e9thane.\n\nIl sugg\u00e8re en cons\u00e9quence que c'est le deuxi\u00e8me processus qui s'est fortement amplifi\u00e9 au cours de l'\u00e9t\u00e9 2020, et que cela pose la question de la quantit\u00e9 de m\u00e9thane qui pourrait \u00eatre rel\u00e2ch\u00e9e dans l'atmosph\u00e8re \u00e0 l'avenir. \n\nRappelons que le m\u00e9thane est, \u00e0 long terme (un si\u00e8cle), 30 fois plus r\u00e9chauffant que le CO2 \u00e0 poids \u00e9gal, mais que \u00e0 court terme c'est 80 fois plus. Il y a l\u00e0 un des processus qui peut rendre le r\u00e9chauffement futur plus \u00e9lev\u00e9 m\u00eame en cas d'arr\u00eat complet des \u00e9missions humaines..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6834037201462968320,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6834037201983078400,urn:li:activity:6834037201983078400,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6834037201983078400,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6834037201983078400,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6834037201983078400", + "threadId": "activity:6834037201983078400", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6834037201983078400", + "urn": "urn:li:activity:6834037201983078400", + "numComments": 116, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6834037201983078400", + "reactionTypeCounts": [ + { + "count": 684, + "reactionType": "LIKE" + }, + { + "count": 246, + "reactionType": "INTEREST" + }, + { + "count": 183, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6834037201983078400", + "numLikes": 1126, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6834037201983078400", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1126, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6833446182845460480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6833446182845460480", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6833446182845460480)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6833446182845460480)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_wheat-supplies-are-shrinking-and-its-bad-activity-6833446182845460480-CE71?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6833446182463787008", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6833446182845460480", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6833446182845460480,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6833446182845460480,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6833446182463787008", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "udnu6qdymL3Iudd/t2zzuA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6833446182845460480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9134074707992225875", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675453672478?e=1677240000&v=beta&t=Nx8K5O0VIVNrAQRLVrcvMyXbB7o8CNKKpf_KrZpaTj8", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675453672478?e=1677240000&v=beta&t=d4FzkuxQxu4Uiinb9mT_ffL29oGPEPpz0gztBcNydFM", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675453672478?e=1677240000&v=beta&t=JCQhDfsSTdcC9ZQRtxey5vd7T6kAPD2obk-OC2FSByg", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675453672478?e=1677240000&v=beta&t=PMu81sZaxwWvrL3lkcpVUbrkxkQrZu2C-RV_TfWpS2w", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQH__KsbF1QnhA/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9134074707992225875)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9134074707992225875)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "bloomberg.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Wheat Supplies Are Shrinking and It\u2019s Bad News for Bread Prices by bloomberg.com", + "actionTarget": "https://www.bloomberg.com/news/articles/2021-08-14/wheat-supplies-are-shrinking-and-it-s-bad-news-for-bread-prices" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Wheat Supplies Are Shrinking and It\u2019s Bad News for Bread Prices" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6833446182463787008,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le climat qui se met \u00e0 faire des choses inattendues, ce n'est pas qu'un motif pour frissonner un peu devant la t\u00e9l\u00e9 avant de retourner vaquer \u00e0 ses occupations habituelles.\n\nCette ann\u00e9e, des \u00e9pisodes inhabituels en Am\u00e9rique du Nord et en Russie vont occasionner une baisse des exportations de bl\u00e9, avec pour cons\u00e9quence des prix qui augmentent fortement.\n\nRappelons que ce qui avait d\u00e9clench\u00e9 le Printemps Arabe \u00e9tait une inflation alimentaire importante (aussi li\u00e9e pour partie \u00e0 des \"accidents climatiques\" en Russie) dans des pays \u00e0 l'\u00e9conomie d\u00e9prim\u00e9e (par la crise de 2009 en l'esp\u00e8ce). Les deux ingr\u00e9dients semblent devoir se conjuguer \u00e0 nouveau. Esp\u00e9rons que la conclusion ne sera pas la m\u00eame..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6833446182463787008,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6833446182845460480,urn:li:activity:6833446182845460480,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 31, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6833446182845460480,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6833446182845460480,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6833446182845460480", + "threadId": "activity:6833446182845460480", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6833446182845460480", + "urn": "urn:li:activity:6833446182845460480", + "numComments": 58, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6833446182845460480", + "reactionTypeCounts": [ + { + "count": 487, + "reactionType": "LIKE" + }, + { + "count": 81, + "reactionType": "INTEREST" + }, + { + "count": 68, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6833446182845460480", + "numLikes": 644, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6833446182845460480", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 644, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6833050941017604096,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6833050941017604096", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6833050941017604096)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6833050941017604096)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_a-landivisiau-la-derni%C3%A8re-centrale-%C3%A9lectrique-activity-6833050941017604096-wXO3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6833050940367499264", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6833050941017604096", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6833050941017604096,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6833050941017604096,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6833050940367499264", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "zlUrG+Eeetpr6R1lp4jZGg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6833050941017604096,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8713650640319942373", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675553775895?e=1677240000&v=beta&t=WuGvPii--pRPIkUol4fO8tjHHXhni334sk_Y6mGyVCU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675553775895?e=1677240000&v=beta&t=YyDWsC6la-0V1kfVrlu94Jdt0qXpqAsP2qEn64uiM1U", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675553775895?e=1677240000&v=beta&t=QCIgh7raEo7i37z14LXuhHHNKzsrQh24Hau9C5C8lLE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675553775895?e=1677240000&v=beta&t=SgpMWwwWx-rvUj6Ve_i4Uy4GVDwZCm-JGyVl0tMBH4w", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHaCAOBGji48A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8713650640319942373)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8713650640319942373)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: A Landivisiau, \u00ab la derni\u00e8re centrale \u00e9lectrique au gaz \u00bb sort de terre by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/pme-regions/bretagne/a-landivisiau-la-derniere-centrale-electrique-au-gaz-sort-de-terre-1338060" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "A Landivisiau, \u00ab\u00a0la derni\u00e8re centrale \u00e9lectrique au gaz\u00a0\u00bb sort de terre" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6833050940367499264,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A notre tr\u00e8s modeste \u00e9chelle, la France a r\u00e9ussi \u00e0 imiter un peu l'Allemagne, ou la Belgique : moins de nucl\u00e9aire, plus de capacit\u00e9s fossiles ! En face de la fermeture de Fessenheim, Cordemais (charbon) sera prolong\u00e9e, et la Bretagne, qui a beau accueillir plein d'\u00e9oliennes, va h\u00e9riter d'une centrale \u00e0 gaz.\n\nIl faut attendre la toute fin de cet article des Echos pour que le journaliste \u00e9voque le fait que cette centrale va \u00e9mettre du CO2 : 1 million de tonnes par an, soit 6% des \u00e9missions issues de la production \u00e9lectrique fran\u00e7aise en 2020.\n\nSi les propos rapport\u00e9s par le journal sont corrects, cela n'emp\u00eache pas la mairesse de Landivisiau de d\u00e9clarer que l'usine sera \u00ab\u00a0sans nuisance, sans pollution\u00a0\u00bb. Bon, elle va contribuer \u00e0 d\u00e9clencher des incendies, des canicules, des s\u00e9cheresses agricoles, des maladies, et d'autres plaisanteries dont on vient de parler (un peu) dans la presse, mais si on commence \u00e0 appeler cela \"pollution\", o\u00f9 va-t-on ?\n\nLe MWh de gaz est actuellement proche de 50 euros (https://lnkd.in/dAe9vbnd), et la tonne de CO2 aussi (https://lnkd.in/d_Q7ejjA ). Dans ces conditions (\u00e9videmment variables) le MWh \u00e9lectrique se prom\u00e8nerait aux alentours de 100 euros pour la seule partie \"combustible\". Du reste, \u00e0 l'instant, un pays tr\u00e8s d\u00e9pendant du gaz comme l'Italie conna\u00eet un prix spot de l'\u00e9lectricit\u00e9 dans ces eaux l\u00e0 (https://lnkd.in/dfDBiw6J ).\n\nL'Espagne, qui a aussi fait le choix ENR+gaz (elle a construit 25 GW d'\u00e9olien en m\u00eame temps que 25 GW de gaz ces 20 derni\u00e8res ann\u00e9es), a commenc\u00e9 \u00e0 rousp\u00e9ter aupr\u00e8s des instances europ\u00e9ennes que la partie gaz lui coutait trop cher (https://lnkd.in/debNJUAq ). \n\nM'enfin, comme dirait Gaston, si le but du jeu est d'\u00e9mettre moins de CO2, il est difficile de venir se plaindre que les r\u00e8gles du jeu aillent enfin en ce sens ? L'une des caract\u00e9ristiques des centrales \u00e0 gaz, dans un syst\u00e8me tr\u00e8s \"march\u00e9\", est qu'elles ont un cout de production tr\u00e8s impr\u00e9visible." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6833050940367499264,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6833050941017604096,urn:li:activity:6833050941017604096,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 73, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6833050941017604096,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6833050941017604096,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6833050941017604096", + "threadId": "activity:6833050941017604096", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6833050941017604096", + "urn": "urn:li:activity:6833050941017604096", + "numComments": 192, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6833050941017604096", + "reactionTypeCounts": [ + { + "count": 1250, + "reactionType": "LIKE" + }, + { + "count": 167, + "reactionType": "MAYBE" + }, + { + "count": 156, + "reactionType": "INTEREST" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6833050941017604096", + "reacted": "LIKE", + "numLikes": 1616, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6833050941017604096", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1616, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6832953705218772992,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6832953705218772992", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6832953705218772992)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6832953705218772992)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_guerre-des-normes-esg-les-diff%C3%A9rents-camps-activity-6832953705218772992-tMkA?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6832953704732209152", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6832953705218772992", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6832953705218772992,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6832953705218772992,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6832953704732209152", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "s35vqniOVT51Glzytg+J/g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6832953705218772992,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7501237266010227120", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676090982075?e=1677240000&v=beta&t=DGwGwxKGPbqaIc3AUGWc2F_zYQ_hDcUpvI9S2UJdTNw", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676090982075?e=1677240000&v=beta&t=Ov9iz2Ie1HWmytGqB69caB2E0ue97Y3ewLk-bNx03HU", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676090982075?e=1677240000&v=beta&t=FMbSIiW2Ky-g0NrBi1ac_OY7DMD0gUwNwlwi8sdI5gk", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676090982075?e=1677240000&v=beta&t=rgzJXOrX1KYQabBv7EznHk15dV_W1WcPEL_BxptRAJs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQH4i_5PE11OGA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7501237266010227120)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7501237266010227120)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Guerre des normes ESG : les diff\u00e9rents camps fourbissent leurs armes by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/marches-financiers/guerre-des-normes-esg-les-differents-camps-fourbissent-leurs-armes-1337601" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Guerre des normes ESG\u00a0: les diff\u00e9rents camps fourbissent leurs armes" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6832953704732209152,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans le domaine comptable, la norme actuellement en vigueur pour les soci\u00e9t\u00e9s europ\u00e9ennes a \u00e9t\u00e9 \u00e9dict\u00e9e par les am\u00e9ricains (l'IFRS). Le passage de l'ancienne mani\u00e8re de faire \u00e0 la nouvelle a eu pour principal avantage de fournir du travail aux grands de la comptabilit\u00e9 et de l'audit (d'origine am\u00e9ricaine pour l'essentiel), sans amener d'avantage particulier pour \u00e9clairer l'avenir. Cela a surtout amen\u00e9 de la volatilit\u00e9 dans les comptes, pour le plus grand bonheur des acteurs du monde financier (dont beaucoup aiment la volatilit\u00e9, qui leur am\u00e8ne des revenus).\n\nLe risque est grand qu'il en aille de m\u00eame dans le domaine ESG, et en particulier du climat. En effet, le monde financier europ\u00e9en - et fran\u00e7ais pour ce que j'en connais - a souvent fait exactement ce qu'il fallait pour que l'on se jette dans les bras des am\u00e9ricains (et des canadiens dans le cas pr\u00e9sent). \n\nChoix de prestataires - et donc de normes - am\u00e9ricains plut\u00f4t que fran\u00e7ais ou europ\u00e9ens pour \"noter\" les portefeuilles, prestations achet\u00e9es sous leur cout de revient (les prestataires extra-financiers, en perte permanente, se font alors racheter par les grands de l'information financi\u00e8re - am\u00e9ricains ou anglais - pour qui c'est une bouch\u00e9e de pain), voire s\u00e9lection par la Commission europ\u00e9enne d'une soci\u00e9t\u00e9 am\u00e9ricaine pour cr\u00e9er le r\u00e9f\u00e9rentiel applicable dans le monde bancaire europ\u00e9en ! (https://lnkd.in/dS_aEH4h ).\n\nCe n'est pas tout de clamer haut et fort que nous allons faire des choses pertinentes. Il faut aussi s'en donner les moyens. A d\u00e9faut, ce sont \"les autres\" qui feront - de fait - la loi, et elle a toutes les chances de ne pas avoir pour but de traiter correctement le probl\u00e8me, mais juste leur permettre de rester dominants dans le secteur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6832953704732209152,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6832953705218772992,urn:li:activity:6832953705218772992,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 24, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6832953705218772992,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6832953705218772992,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6832953705218772992", + "threadId": "activity:6832953705218772992", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6832953705218772992", + "urn": "urn:li:activity:6832953705218772992", + "numComments": 35, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6832953705218772992", + "reactionTypeCounts": [ + { + "count": 406, + "reactionType": "LIKE" + }, + { + "count": 51, + "reactionType": "MAYBE" + }, + { + "count": 49, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6832953705218772992", + "numLikes": 521, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6832953705218772992", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 521, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6832683030147014656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6832683030147014656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6832683030147014656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6832683030147014656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_its-official-july-was-earths-hottest-month-activity-6832683030147014656-KxIz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6832683029643714560", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6832683030147014656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6832683030147014656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6832683030147014656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6832683029643714560", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "AqHt1/o4fqCu9MH9CQkEvA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6832683030147014656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7147852103587494760", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676375993155?e=1677240000&v=beta&t=UJ5rNDjP0-uD7bjJ6f2JFpg4ciAwaOmoIb_niyGsK3U", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1275, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676375993155?e=1677240000&v=beta&t=Xbb-LcUfC7U9FlQSYOYzImt4kG-mlDJEVCCwQc5zK6I", + "expiresAt": 1677240000000, + "height": 717 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676375993156?e=1677240000&v=beta&t=wa1TtXPtxr81MCbzxhV43zVWckCbTbKeyNskLu0kGYc", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676375993156?e=1677240000&v=beta&t=zkma0B6bhlO7upUcQriWsUDPtdob37mLxMOPvloKEUc", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHm3Gx2QOa8Jw/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "A collage of typical climate and weather-related events: floods, heatwaves, drought, hurricanes, wildfires and loss of glacial ice." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7147852103587494760)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7147852103587494760)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "noaa.gov \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: It\u2019s official: July was Earth\u2019s hottest month on record by noaa.gov", + "actionTarget": "http://www.noaa.gov/news/its-official-july-2021-was-earths-hottest-month-on-record" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "It\u2019s official: July was Earth\u2019s hottest month on record" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6832683029643714560,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La France n'est pas la totalit\u00e9 du monde : le record qui vient de tomber nous le rappelle. En effet, dans l'Hexagone, le mois de juillet 2021 a \u00e9t\u00e9 plut\u00f4t frais et pluvieux, tout \u00e0 l'oppos\u00e9 de ce qui s'est pass\u00e9, du moins pour les temp\u00e9ratures (et souvent pour l'humidit\u00e9 des sols) dans de tr\u00e8s nombreuses autres zones de la plan\u00e8te. \n\nDe ce fait, le mois \u00e9coul\u00e9 a \u00e9t\u00e9 le plus chaud jamais enregistr\u00e9 (pour la plan\u00e8te dans son ensemble) depuis le d\u00e9but des relev\u00e9s de temp\u00e9rature, il y a un si\u00e8cle et demi en gros.\n\nLes habitants du Canada, de l'ouest des USA, de toute l'Europe sauf la France et l'Espagne, de la Sib\u00e9rie, ou encore de l'est de l'Asie auront probablement moins besoin d'\u00eatre convaincus qu'un nouveau record a \u00e9t\u00e9 franchi (en attendant le suivant, qui ne va pas tarder).\n\nDu coup, on ne peut s'emp\u00eacher de se gratter un peu la t\u00eate quand on compare climat et covid.\n\nPour cette \u00e9pid\u00e9mie pas tr\u00e8s mortelle (les accidents de la route ou le tabac font chaque ann\u00e9e quelques millions de morts sur terre, donc dans les m\u00eames ordres de grandeur que les morts du covid) on peut mettre une \u00e9conomie en r\u00e9gime ralenti au nom du bien commun.\n\nComment expliquer qu'avec les \"crises climatiques\", spectaculaires et parfois meurtri\u00e8res, qui se multiplient, il n'y ait rien d'autre que des discours mais pas d'acte \"rapide et d\u00e9termin\u00e9\" en r\u00e9action ? La r\u00e9ponse \u00e0 cette question aiderait peut-\u00eatre \u00e0 avancer plus vite justement..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6832683029643714560,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6832683030147014656,urn:li:activity:6832683030147014656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 88, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6832683030147014656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6832683030147014656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6832683030147014656", + "threadId": "activity:6832683030147014656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6832683030147014656", + "urn": "urn:li:activity:6832683030147014656", + "numComments": 215, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6832683030147014656", + "reactionTypeCounts": [ + { + "count": 1902, + "reactionType": "LIKE" + }, + { + "count": 167, + "reactionType": "MAYBE" + }, + { + "count": 140, + "reactionType": "INTEREST" + }, + { + "count": 55, + "reactionType": "PRAISE" + }, + { + "count": 43, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6832683030147014656", + "numLikes": 2319, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6832683030147014656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2319, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6832378493834170368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6832378493834170368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6832378493834170368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6832378493834170368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_opinion-passons-dune-consommation-immod%C3%A9r%C3%A9e-activity-6832378493834170368-kyio?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6832378493343432704", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6832378493834170368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6832378493834170368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6832378493834170368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6832378493343432704", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "ZP97TjdGGMJ54vJ7C4RmNg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6832378493834170368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8267383647237203384", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675740958003?e=1677240000&v=beta&t=f4vAWCvqbc_rHyam7bhnUmUcSdwBWKy3iMEP-Y0WofY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675740958003?e=1677240000&v=beta&t=22LSfVO4aQyWZIMK6QPSHzawudShvKCxcWb-WL2QFcw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675740958003?e=1677240000&v=beta&t=McMIHKBNOsZQSCqG3HqSZr8OkPQJkMS55eptnbtxTWE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675740958003?e=1677240000&v=beta&t=yHUFA4eLnctP0NtZtKA9sa9NU9n5XBO2jU9xdGeG1w8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF2eHPKWKzQxA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8267383647237203384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8267383647237203384)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Opinion | Passons d'une consommation immod\u00e9r\u00e9e au r\u00e9emploi sans mod\u00e9ration by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/cercle/opinion-passons-dune-consommation-immoderee-au-reemploi-sans-moderation-1338352#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Opinion | Passons d'une consommation immod\u00e9r\u00e9e au r\u00e9emploi sans mod\u00e9ration" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6832378493343432704,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les Echos publient une tribune appelant \u00e0 allonger la dur\u00e9e de vie des produits, et r\u00e9parer plut\u00f4t que jeter et recycler. Jusque l\u00e0, rien de tr\u00e8s extraordinaire pourrait-on dire, puisque c'est un point de vue classique chez les d\u00e9fenseurs de l'environnement. \n\nSauf que... allonger la dur\u00e9e de vie des produits, c'est les remplacer moins souvent. Cela signifie tout d'abord une innovation technique qui \"p\u00e9n\u00e8tre\" moins vite, puisque c'est \u00e0 l'occasion du remplacement d'un objet que nous pouvons avoir \u00e0 la place un objet plus performant. \n\nCela signifie ensuite que les fabricants vendent moins (puisque nous gardons plus longtemps). Souhaiter moins d'innovation technique et moins de chiffre d'affaires pour les industriels (puisque cette analyse s'applique \u00e0 tout ce que nous achetons), avouez que ca commence \u00e0 \u00eatre moins banal quand c'est dans un journal \u00e9conomique que l'on trouve cela, non ?\n\nOn notera au passage cette affirmation qui renvoie probablement \u00e0 quelque chose de fond\u00e9 : quand nous savons que c'est recyclable, nous avons moins de scrupules \u00e0 acheter pour jeter. Nous ne devrions pas." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6832378493343432704,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6832378493834170368,urn:li:activity:6832378493834170368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 109, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6832378493834170368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6832378493834170368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6832378493834170368", + "threadId": "activity:6832378493834170368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6832378493834170368", + "urn": "urn:li:activity:6832378493834170368", + "numComments": 172, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6832378493834170368", + "reactionTypeCounts": [ + { + "count": 1590, + "reactionType": "LIKE" + }, + { + "count": 88, + "reactionType": "MAYBE" + }, + { + "count": 69, + "reactionType": "PRAISE" + }, + { + "count": 33, + "reactionType": "INTEREST" + }, + { + "count": 19, + "reactionType": "EMPATHY" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6832378493834170368", + "numLikes": 1814, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6832378493834170368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1814, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6831856269079400449,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6831856269079400449", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6831856269079400449)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6831856269079400449)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_je-ne-sais-pas-si-cela-sera-utile-pour-contribuer-activity-6831856269079400449-cHxQ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6831856268508962816", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6831856269079400449", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6831856269079400449,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6831856269079400449,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6831856268508962816", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "Q8dEewNL+7JslQeoq/qmzw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6831856269079400449,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHdD7n80GkECw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHdD7n80GkECw", + "artifacts": [ + { + "width": 1914, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1628841460089?e=1679529600&v=beta&t=zIDtNao5vjy3dimwsarAvqD_A0J90zdBcQ6jsYjcurs", + "expiresAt": 1679529600000, + "height": 1426 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1628841463746?e=1679529600&v=beta&t=mpwqxkWidNUeAnKRl8gvbhReoI02UF36DympfZjQcbE", + "expiresAt": 1679529600000, + "height": 15 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1628841463746?e=1679529600&v=beta&t=wJv6SBdBU5i9Q23QQ7ycdciRcDze5eY_LTKBhFHTYpw", + "expiresAt": 1679529600000, + "height": 954 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1628841463746?e=1679529600&v=beta&t=5SAo_AIbl2hUGX77Cq7Vwo78N_uOwQGsrc_f0KEPGLo", + "expiresAt": 1679529600000, + "height": 358 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1628841463746?e=1679529600&v=beta&t=rL0wrvAu6Qv4y1FnJjkAJ237OHM4s-4nmcULQGkkBpI", + "expiresAt": 1679529600000, + "height": 119 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1628841463746?e=1679529600&v=beta&t=wIxIEFs8F8_QqaD5ezNPzNiEP59xieZW7BDCRPXZGuU", + "expiresAt": 1679529600000, + "height": 596 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHdD7n80GkECw/feedshare-shrink_" + }, + "displayAspectRatio": 0.7450365726227796 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "a screenshot of a video screen" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6831856268508962816,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Je ne sais pas si cela sera utile pour contribuer \u00e0 diminuer les incendies dans la for\u00eat sib\u00e9rienne, mais une de mes conf\u00e9rences fait d\u00e9sormais l'objet d'une version russe : https://lnkd.in/diQi6dVN \n\nMes tr\u00e8s (tr\u00e8s) vieux souvenirs de russe du lyc\u00e9e sont bien insuffisants pour savoir si la traduction est correcte, mais s'il se trouvent des russophones parmi les quelques personnes qui jetteront un oeil au r\u00e9sultat, ils pourront en juger par eux-m\u00eames.\n\nPar contre, pour celles et ceux qui ont des contacts dans ce pays, et qui par ailleurs sont un poil pr\u00e9occup\u00e9s par l'\u00e9volution en cours, peut-\u00eatre que cet enregistrement sera utile. La d\u00e9rive climatique \u00e9tant plus rapide \u00e0 mesure que l'on se rapproche des p\u00f4les, la Russie, malgr\u00e9 son \u00e9tendue, est un pays qui va globalement voir sa situation \u00e9voluer plus rapidement que bien d'autres zones dans le monde. \n\nEt, d\u00e9tenteur des premi\u00e8res r\u00e9serves de gaz au monde, et des deuxi\u00e8mes de combustibles fossiles tout compris, ce pays est aussi un de ceux qui comptent pour notre avenir climatique commun..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6831856268508962816,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6831856269079400449,urn:li:activity:6831856269079400449,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 35, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6831856269079400449,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6831856269079400449,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6831856269079400449", + "threadId": "activity:6831856269079400449", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6831856269079400449", + "urn": "urn:li:activity:6831856269079400449", + "numComments": 47, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6831856269079400449", + "reactionTypeCounts": [ + { + "count": 283, + "reactionType": "LIKE" + }, + { + "count": 17, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6831856269079400449", + "numLikes": 328, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6831856269079400449", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 328, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6831502873013039104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1024481", + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "1eIxrGq2T+G81txeAlePXQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "1eIxrGq2T+G81txeAlePXQ==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Carbone 4", + "actionTarget": "https://www.linkedin.com/company/carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1024481" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "118,673 followers" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6831480254939373568,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6831480254939373568", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6831480254939373568)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6831480254939373568)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/carbone-4_ar6-climate-change-2021-the-physical-science-activity-6831480254939373568-9Nlz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6831480254310223872", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1024481", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6831480254939373568,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6831480254939373568,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6831480254310223872", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "po3pYDCQwgo9fn7P6p+5fw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6831480254939373568,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8777678594141982653", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1628497048471?e=1677240000&v=beta&t=kh5cPryUNhF5P6369YxnwW-TFuhPOaXw26SOTgWOg6U", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1628497048471?e=1677240000&v=beta&t=ynrxMx1k2Qk4LI5wFqlFdHvzFIkPbTPvKLxD-xv84iY", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1628497048471?e=1677240000&v=beta&t=xb26NBLmh_lxBSQ20kCnb7P53KCDJsCADeTjiz5oNYw", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1628497048471?e=1677240000&v=beta&t=QoLCYXsgKz6UUA-Lbg_K-WGy4ccvM89k_DTr19DR70k", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHuJVNVEJdP8g/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "CHANGING by Alisa Singer" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8777678594141982653)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8777678594141982653)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ipcc.ch \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: AR6 Climate Change 2021: The Physical Science Basis by ipcc.ch", + "actionTarget": "https://www.ipcc.ch/report/ar6/wg1/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "AR6 Climate Change 2021: The Physical Science Basis" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6831480254310223872,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le #GIEC a d\u00e9voil\u00e9 lundi son nouveau rapport sur le changement climatique. \n\nSans surprise, les scientifiques confirment que chaque fraction de degr\u00e9 de r\u00e9chauffement suppl\u00e9mentaire fera cro\u00eetre les impacts de mani\u00e8re massive.\n\nLe rapport rappelle donc, entre autres, que sauf r\u00e9duction imm\u00e9diate, rapide et \u00e0 grande \u00e9chelle de nos \u00e9missions de CO2 et autres gaz \u00e0 effet de serre (de l'ordre de 5 \u00e0 7% par an), il faut nous attendre \u00e0 un monde tr\u00e8s hostile dont nous ne voudrions ni pour nous, ni pour nos enfants. Pour \u00e9viter cela, il nous faut collectivement passer \u00e0 l\u2019action, d\u00e8s maintenant. \n\nLa plupart des\u00a0\u00a0entreprises se disent aujourd\u2019hui concern\u00e9es et engag\u00e9es dans la lutte contre le changement climatique. Elles communiquent sur des programmes \u00ab\u00a0verts \u00bb, et (trop) nombreuses sont celles qui consid\u00e8rent presque avoir d\u00e9j\u00e0 r\u00e9gl\u00e9 la question. Pour autant, les \u00e9missions continuent d\u2019augmenter chaque ann\u00e9e sans inflexion. Les moyens accord\u00e9s \u00e0 la mise en place de strat\u00e9gies climat au sein des entreprises, et \u00e0 leur impl\u00e9mentation, f\u00fbt-ce au d\u00e9triment d'autres objectifs jusque l\u00e0 consid\u00e9r\u00e9s comme pertinents, restent largement insuffisants, et la grande majorit\u00e9 des membres de comex n\u2019est toujours pas famili\u00e8re avec les enjeux et cons\u00e9quence li\u00e9s au changement climatique.\n\nLes entreprises, \"ordinaires\" et financi\u00e8res, doivent imp\u00e9rativement faire leur part pour limiter le r\u00e9chauffement. Nous les invitons donc \u00e0 d\u00e9cupler les moyens qu\u2019elles consacrent \u00e0 la question, \u00e0 commencer par la formation des dirigean\u00b7tes et la mise en place d\u2019une comptabilit\u00e9 carbone exhaustive, stricte, et consult\u00e9e comme r\u00e9f\u00e9rence dans la prise de d\u00e9cisions.\n\nD\u00e9couvrir le rapport \u2935\ufe0f" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6831480254310223872,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6831480254939373568,urn:li:activity:6831480254939373568,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 4, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6831480254939373568,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6831480254939373568,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6831480254939373568", + "threadId": "activity:6831480254939373568", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6831480254939373568", + "urn": "urn:li:activity:6831480254939373568", + "numComments": 7, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6831480254939373568", + "reactionTypeCounts": [ + { + "count": 305, + "reactionType": "LIKE" + }, + { + "count": 22, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6831480254939373568", + "numLikes": 353, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6831480254939373568", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 353, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6831502873013039104", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6831502873013039104)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6831502873013039104)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_ar6-climate-change-2021-the-physical-science-activity-6831502873013039104-Klfa?utm_source=share&utm_medium=member_desktop" + }, + { + "subActionsMenu": { + "title": "Who would you like to unfollow?", + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + } + ] + }, + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_ACTIONS", + "text": "Unfollow" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6831502872547467264", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6831502873013039104", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6831502873013039104,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6831502873013039104,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6831502872547467264", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "po3pYDCQwgo9fn7P6p+5fw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6831502873013039104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6831502872547467264,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A l'occasion de la publication du 6\u00e8 rapport d'\u00e9valuation du groupe 1 du GIEC, Carbone 4 rappelle qu'il est temps de passer de la communication (largement r\u00e9pandue) \u00e0 l'action v\u00e9ritable (tr\u00e8s peu r\u00e9pandue) dans le monde des entreprises.\n\nL'action v\u00e9ritable pr\u00e9suppose au moins 4 choses :\n- avoir des dirigeants ayant pris e temps de correctement se former sur le sujet (ce qui suppose donc qu'ils auront, \u00e0 un moment, renonc\u00e9 \u00e0 faire \"autre chose\" dans un agenda charg\u00e9), et qui passent du temps \u00e0 confronter l'activit\u00e9 de leur entreprise \u00e0 la question climatique (demande que nous sommes loin d'\u00eatre les seuls \u00e0 formuler : https://lnkd.in/dEnKNWNS )\n- avoir d\u00e9ploy\u00e9 une comptabilit\u00e9 carbone \u00e0 large \u00e9chelle, afin que chaque d\u00e9cideur interm\u00e9diaire puisse arbitrer chaque d\u00e9cision en fonction de ses caract\u00e9ristiques \"climat\", et ce sans utiliser des m\u00e9thodes tronqu\u00e9es, ou cal\u00e9es sur le besoin de se rassurer au lieu de v\u00e9ritablement comprendre (l'exemple typique consistant \u00e0 se limiter \u00e0 regarder les \u00e9missions directes, au surplus ramen\u00e9es \u00e0 l'unit\u00e9 de production),\n- s'interdire la moindre communication publique sur le sujet avant que les \u00e9tapes 1 et 2 aient \u00e9t\u00e9 franchies,\n- accepter que lorsqu'il y a conflit d'objectifs entre euros (ou dollars, ou roupies) et CO2, la priorit\u00e9 ne soit pas syst\u00e9matiquement donn\u00e9e aux euros." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6831502872547467264,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6831502873013039104,urn:li:activity:6831502873013039104,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6831502873013039104,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6831502873013039104,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6831502873013039104", + "threadId": "activity:6831502873013039104", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6831502873013039104", + "urn": "urn:li:activity:6831502873013039104", + "numComments": 54, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6831502873013039104", + "reactionTypeCounts": [ + { + "count": 546, + "reactionType": "LIKE" + }, + { + "count": 23, + "reactionType": "PRAISE" + }, + { + "count": 17, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6831502873013039104", + "numLikes": 611, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6831502873013039104", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 611, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6831269628140912640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6831269628140912640", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6831269628140912640)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6831269628140912640)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_incendies-dans-le-monde-la-plan%C3%A8te-br%C3%BBle-activity-6831269628140912640-nkIZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6831269627780186112", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6831269628140912640", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6831269628140912640,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6831269628140912640,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6831269627780186112", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "zEsU8O4OUGzc7q/F7eRHbg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6831269628140912640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7298585137341564638", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675525876104?e=1677240000&v=beta&t=LAC3wFnBMilkQst4UL0Ndg-28iiYjSQBo1jhBTsPY_k", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 1066, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675525876104?e=1677240000&v=beta&t=8xOD_bQAbCd7LChh-OkHZ8ctI1OR63eS5ToLt6efS-s", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675525876104?e=1677240000&v=beta&t=tY1_msl-Dkl_5-aH6-xiV-9kUtBsa95ZOw5VJYxLojQ", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675525876105?e=1677240000&v=beta&t=wAcP9yG9wbW2tW0YuqZCD7pXIAxHBHK71ezYz3LScSc", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQH6RjUPWQM8Vg/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7298585137341564638)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7298585137341564638)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "sudouest.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Incendies dans le monde : la plan\u00e8te br\u00fble, nouveau record de nombre de feux d\u00e9tect\u00e9s by sudouest.fr", + "actionTarget": "https://www.sudouest.fr/environnement/incendies-dans-le-monde-la-planete-brule-nouveau-record-de-nombre-de-feux-detectes-4606665.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Incendies dans le monde\u00a0: la plan\u00e8te br\u00fble, nouveau record de nombre de feux d\u00e9tect\u00e9s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6831269627780186112,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Comme un avertissement en cette p\u00e9riode de publication de rapport du GIEC, les incendies n'ont jamais \u00e9t\u00e9 aussi nombreux depuis qu'ils sont surveill\u00e9s (par satellite, https://lnkd.in/dyjeEdCE )\n\nIl faut des d\u00e9cennies pour qu'un arbre pousse. Il faut nettement moins de temps pour qu'il disparaisse dans les flammes. C'est une illustration parmi d'autres de ph\u00e9nom\u00e8nes \u00e0 effet de seuil.\n\nDes effets de seuil, il y en a pl\u00e9thore sur terre. C'est bien pour cela que, malgr\u00e9 a difficult\u00e9 \u00e0 le faire, il sera plus facile de baisser les \u00e9missions que de corriger les d\u00e9g\u00e2ts." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6831269627780186112,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6831269628140912640,urn:li:activity:6831269628140912640,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 45, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6831269628140912640,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6831269628140912640,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6831269628140912640", + "threadId": "activity:6831269628140912640", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6831269628140912640", + "urn": "urn:li:activity:6831269628140912640", + "numComments": 110, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6831269628140912640", + "reactionTypeCounts": [ + { + "count": 1074, + "reactionType": "LIKE" + }, + { + "count": 111, + "reactionType": "INTEREST" + }, + { + "count": 108, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6831269628140912640", + "numLikes": 1345, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6831269628140912640", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1345, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6831253147323777026,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6831253147323777026", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6831253147323777026)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6831253147323777026)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_the-call-of-the-emperor-penguin-legal-responses-activity-6831253147323777026-Dlf-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6831253146820476930", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6831253147323777026", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6831253147323777026,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6831253147323777026,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6831253146820476930", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "j+jRWlrLiLCvyARQ/01FZA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6831253147323777026,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8102714515193478580", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 480, + "fileIdentifyingUrlPathSegment": "800/0/1675804641662?e=1677240000&v=beta&t=YWoOoCOqKUyUxljckQNkX_cmKcnAbafGtfbtY5l4BDA", + "expiresAt": 1677240000000, + "height": 262 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675804641662?e=1677240000&v=beta&t=q1fGq1Y0XOiuVkazl7B-HfAUqCfFiGw2J95SjVi4mjY", + "expiresAt": 1677240000000, + "height": 262 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675804641662?e=1677240000&v=beta&t=nvjKW1R-32Cp17WVJZoEqezgZwF732QOre4VKQaYRX0", + "expiresAt": 1677240000000, + "height": 87 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675804641662?e=1677240000&v=beta&t=l12XPPfHyEw9Jai6j6zorEcqODrCJmfUAOzooXsGNrw", + "expiresAt": 1677240000000, + "height": 262 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHquzMtC3guaQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5458333333333333 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8102714515193478580)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8102714515193478580)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "onlinelibrary.wiley.com \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: The call of the emperor penguin: Legal responses to species threatened by climate change by onlinelibrary.wiley.com", + "actionTarget": "https://onlinelibrary.wiley.com/doi/10.1111/gcb.15806" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "The call of the emperor penguin: Legal responses to species threatened by climate change" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6831253146820476930,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le destin pas tr\u00e8s rose en perspective des ours blancs nous avait assez peu convaincus de nous mettre au v\u00e9lo, \u00e0 la pompe \u00e0 chaleur, \u00e0 moins de viande et \u00e0 moins d'achats de trucs, machins, bidules et choses.\n\nEst-ce que le destin tout aussi funeste en pr\u00e9vision du manchot empereur nous motivera un peu plus ? Un article paru dans Global Change Biology conclut que quasiment toutes les colonies de manchots empereur auraient disparu d'ici 2100 avec un changement climatique \u00e0 4\u00b0C. \n\nEn cause, la disparition progressive de la banquise antarctique, sur laquelle les empereurs pondent. Une banquise qui se forme plus tard et dispara\u00eet plus t\u00f4t en saison, c'est le risque de voir les poussins noy\u00e9s avant qu'ils ne soient assez grands pour nager, et donc la reproduction s'arr\u00eater.\n\nNous aimons bien les manchots parce qu'ils marchent (l'anthropomorphisme, c'est une r\u00e9alit\u00e9 !). S'ils pouvaient aussi parler, nul doute qu'eux aussi nous demanderaient d'\u00eatre particuli\u00e8rement attentifs aux conclusions r\u00e9centes du GIEC." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6831253146820476930,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6831253147323777026,urn:li:activity:6831253147323777026,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 24, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6831253147323777026,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6831253147323777026,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6831253147323777026", + "threadId": "activity:6831253147323777026", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6831253147323777026", + "urn": "urn:li:activity:6831253147323777026", + "numComments": 67, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6831253147323777026", + "reactionTypeCounts": [ + { + "count": 702, + "reactionType": "LIKE" + }, + { + "count": 54, + "reactionType": "INTEREST" + }, + { + "count": 41, + "reactionType": "APPRECIATION" + }, + { + "count": 26, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6831253147323777026", + "numLikes": 837, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6831253147323777026", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 837, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6830901375593938944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6830901375593938944", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6830901375593938944)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6830901375593938944)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lun-des-int%C3%A9r%C3%AAts-du-v%C3%A9lo-%C3%A9lectrique-cest-activity-6830901375593938944-5CUk?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6830901374897680384", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6830901375593938944", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6830901375593938944,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6830901375593938944,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6830901374897680384", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "OY4es4LXx1V73ikvaufxmQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6830901375593938944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEfFyeBGIlTZQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEfFyeBGIlTZQ", + "artifacts": [ + { + "width": 1506, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1628613798502?e=1679529600&v=beta&t=wE9PP59hvtvKeeNcC0LOkd9Ehpwr0LPNAF79y2YG3AI", + "expiresAt": 1679529600000, + "height": 676 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1628613799465?e=1679529600&v=beta&t=qen6Xrrxw5qgMXm_rda2-GLI2vLtBDQ_Vbr0XIqxEDQ", + "expiresAt": 1679529600000, + "height": 9 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1628613799465?e=1679529600&v=beta&t=_FrKBchYyq76dLPYmB8NaVNtAu--kNJGlFb8v5F_vTs", + "expiresAt": 1679529600000, + "height": 575 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1628613799465?e=1679529600&v=beta&t=u6NzHN0TxjMo0CGIjCjF-Xw-mQzbRQWv1uIr6ERpZng", + "expiresAt": 1679529600000, + "height": 215 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1628613799465?e=1679529600&v=beta&t=D7QUrbw3xApwxxRPdEIoLXdLglRsAeMaLSBi12ZzaCQ", + "expiresAt": 1679529600000, + "height": 72 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1628613799465?e=1679529600&v=beta&t=5SHoRgTnqvKO4fQ7Omxw8FcKhDpHgtTkzZvZmU2hw-g", + "expiresAt": 1679529600000, + "height": 359 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEfFyeBGIlTZQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.448871181938911 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6830901374897680384,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'un des int\u00e9r\u00eats du v\u00e9lo \u00e9lectrique, c'est que l'assistance peut \u00eatre utilis\u00e9e pour transporter autre chose que notre propre carcasse, et en particulier les marchandises qui sont actuellement livr\u00e9es en ville ou banlieue par fourgon, diesel encore tr\u00e8s majoritairement, et \u00e9lectrique parfois. \n\n3 chercheuses de l'universit\u00e9 de Westminster, et un doctorant par ailleurs livreur \u00e0 p\u00e9dales, ont publi\u00e9 un int\u00e9ressant document r\u00e9sumant les avantages du v\u00e9lo cargo par rapport \u00e0 son alternative \"classique\", \u00e0 savoir la fourgonnette : https://lnkd.in/dtTJMnd6\n\nIl n'y a pas photo : m\u00eame en tenant compte de la nourriture suppl\u00e9mentaire du livreur (qui par ailleurs s'entretient mieux qu'assis dans un fauteuil de camionnette, et termine probablement sa journ\u00e9e plus d\u00e9tendu que quand il a pass\u00e9 des heures dans les embouteillages !), passer de 4 \u00e0 3 roues diminue consid\u00e9rablement les \u00e9missions. Plus inattendu, cela am\u00e9liore la vitesse de livraison ! \n\nCela diminue aussi l'occupation d'espace au sol, bref si l'on oublie le malheur des personnes qui n'auront plus besoin de fabriquer des v\u00e9hicules d'une tonne et demie (qu'\u00e9videmment il ne faut pas oublier, mais il faut ne faut pas faire un point de blocage de ce sujet), il y a \u00e9norm\u00e9ment d'avantages \u00e0 g\u00e9n\u00e9raliser cette pratique.\n\nPlus g\u00e9n\u00e9ralement, pour les transports en zone urbaine, le v\u00e9lo \u00e9lectrique, \"ordinaire\" ou en version cargo, est probablement un des \u00e9l\u00e9ments qui pourrait permettre une modification rapide des comportements, dans le sens d'une baisse qui, le GIEC vient de le rappeler, se doit d'\u00eatre non pas gentillette, mais massive dans les 10 ans qui viennent. The Shift Project, dans son travail \"d\u00e9carboner la mobilit\u00e9 des zones de moyenne densit\u00e9\" (https://lnkd.in/gWp3VVt ) avait identifi\u00e9 le \"syst\u00e8me v\u00e9lo\" comme recelant le plus gros potentiel de baisse des \u00e9missions pour la mobilit\u00e9 du quotidien, devant le t\u00e9l\u00e9travail, le covoiturage, ou les transports en commun." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6830901374897680384,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6830901375593938944,urn:li:activity:6830901375593938944,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 396, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6830901375593938944,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6830901375593938944,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6830901375593938944", + "threadId": "activity:6830901375593938944", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6830901375593938944", + "urn": "urn:li:activity:6830901375593938944", + "numComments": 668, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6830901375593938944", + "reactionTypeCounts": [ + { + "count": 6551, + "reactionType": "LIKE" + }, + { + "count": 523, + "reactionType": "INTEREST" + }, + { + "count": 356, + "reactionType": "MAYBE" + }, + { + "count": 147, + "reactionType": "EMPATHY" + }, + { + "count": 130, + "reactionType": "PRAISE" + }, + { + "count": 56, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6830901375593938944", + "numLikes": 7763, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6830901375593938944", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7763, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6830549253891362816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6830549253891362816", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6830549253891362816)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6830549253891362816)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climate-change-2021-the-physical-science-activity-6830549253891362816-grvY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6830549253341900800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6830549253891362816", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6830549253891362816,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6830549253891362816,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6830549253341900800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "0kgBfmrfMDRL11ej+NOjqQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6830549253891362816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7694945791276485947", + "swapTitleAndSubtitle": false, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7694945791276485947)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7694945791276485947)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ipcc.ch \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climate Change 2021: The Physical Science Basis by ipcc.ch", + "actionTarget": "https://www.ipcc.ch/report/sixth-assessment-report-working-group-i/" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "The Sixth Assessment Report consists of contributions from each of the three IPCC Working Groups and a Synthesis Report (SYR), which integrates the Working Group contributions and the Special Reports produced in the cycle. The meeting to draft the..." + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climate Change 2021: The Physical Science Basis" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6830549253341900800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il est enfin accessible, ce fameux 6\u00e8 rapport du groupe 1 du GIEC. 3949 pages (excusez du peu) que pas un - je dis bien pas un - d\u00e9cideur ou journaliste ne lira en entier (et moi non plus du reste). En fait, il ne faut pas voir ce rapport comme un roman \u00e0 terminer avant la fin des vacances, mais plut\u00f4t comme une encyclop\u00e9die. \n\nA la condition de parler anglais (c'est \u00e9videmment une limite), d\u00e8s que l'on souhaite avoir la r\u00e9ponse \u00e0 une question concernant le climat, on peut partir \u00e0 la p\u00eache dans ce document, et avec un peu de chance on aura, dans le d\u00e9tail, ce que la science dit sur la question.\n\nMais comme le GIEC sait parfaitement ce qui pr\u00e9c\u00e8de, il a aussi pr\u00e9vu un \"r\u00e9sum\u00e9 pour d\u00e9cideurs\" de 42 pages. Il est certes aussi en anglais, mais l'essentiel de l'essentiel se trouve dans les graphiques, et ces derniers sont souvent tr\u00e8s parlants. Et, pour le coup, ce dernier est fait pour \u00eatre int\u00e9gralement lu... par tout d\u00e9cideur. \n\nIl ne devrait donc pas y avoir un chef d'entreprise, un journaliste (m\u00eame - et surtout - s'occupant d'autre chose que d'environnement), un enseignant, un politique qui, dans les 2 mois \u00e0 venir, n'ait pas lu ce document. Esp\u00e9rons que tou(te)s les int\u00e9ress\u00e9(e)s comprennent que c'est bien cela que l'on attend d'eux." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6830549253341900800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6830549253891362816,urn:li:activity:6830549253891362816,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 197, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6830549253891362816,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6830549253891362816,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6830549253891362816", + "threadId": "activity:6830549253891362816", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6830549253891362816", + "urn": "urn:li:activity:6830549253891362816", + "numComments": 346, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6830549253891362816", + "reactionTypeCounts": [ + { + "count": 8263, + "reactionType": "LIKE" + }, + { + "count": 450, + "reactionType": "INTEREST" + }, + { + "count": 365, + "reactionType": "PRAISE" + }, + { + "count": 113, + "reactionType": "MAYBE" + }, + { + "count": 99, + "reactionType": "APPRECIATION" + }, + { + "count": 61, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6830549253891362816", + "numLikes": 9351, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6830549253891362816", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 9351, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6830420465085882368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6830420465085882368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6830420465085882368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6830420465085882368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_je-ne-sais-pas-si-le-nouveau-rapport-du-groupe-activity-6830420465085882368-v2e9?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6830420464297361408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6830420465085882368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6830420465085882368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6830420465085882368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6830420464297361408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "VuHxKlIy67ma4iSaVHjAcA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6830420465085882368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHme4Ba1io0Ow", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHme4Ba1io0Ow", + "artifacts": [ + { + "width": 1814, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1628499139657?e=1679529600&v=beta&t=eAu65HQx5hyprWUPul1Fz9ND1-2YJpKta72sGwOdQgc", + "expiresAt": 1679529600000, + "height": 500 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1628499140452?e=1679529600&v=beta&t=WT-ugXSGHT0uxwr87O867mVxdBHC39ZaH-L6T3a_rVQ", + "expiresAt": 1679529600000, + "height": 6 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1628499140452?e=1679529600&v=beta&t=2iyaqLfedqYrFQ_OZId7V0nRaoQOjd8pw-L5XGe_cMY", + "expiresAt": 1679529600000, + "height": 353 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1628499140452?e=1679529600&v=beta&t=ntruXIlsvim09IcHJsJJ4mWvpPMuDnEo0oNjHnmrhDg", + "expiresAt": 1679529600000, + "height": 132 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1628499140452?e=1679529600&v=beta&t=Iqb24imCaNRupvVLAzbfxg9FbgwYnrc343DpbLtEE-Y", + "expiresAt": 1679529600000, + "height": 44 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1628499140452?e=1679529600&v=beta&t=pdklFCaLIHMkeGiTICOvUefX5WygYGvsC3kOi0sU5yo", + "expiresAt": 1679529600000, + "height": 221 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHme4Ba1io0Ow/feedshare-shrink_" + }, + "displayAspectRatio": 0.2756339581036384 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, text, application, email" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6830420464297361408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Je ne sais pas si le nouveau rapport du groupe 1 du GIEC sera plus suivi d'effets que les pr\u00e9c\u00e9dents. Depuis sa cr\u00e9ation, les diff\u00e9rentes production de ce guichet unique de mise \u00e0 disposition de l'information scientifique n'ont, h\u00e9las, pas sp\u00e9cialement permis d'infl\u00e9chir la trajectoire d'\u00e9missions de gaz \u00e0 effet de serre.\n\nPar contre, ce qui est s\u00fbr, c'est que celui qui sort aujourd'hui suscite un int\u00e9r\u00eat important, \u00e0 tel point qu'il est impossible, ce matin, de se connecter au serveur de cet organisme (http://www.ipcc.ch) !\n\nIl faudra donc s'armer d'un tout petit peu de patience avant de savoir ce que ce nouveau rapport a... de nouveau. \n\nEn attendant, je propose \u00e0 celles et ceux qui ne sont pas familiers du fonctionnement du GIEC un rappel de ce qu'est cet organisme, et de son mandat : https://lnkd.in/drng5Z6t\n\nRappelons que le GIEC est divis\u00e9 en 3 groupes. Le premier traite du fonctionnement du syst\u00e8me climatique et de la mani\u00e8re dont les activit\u00e9s humaines modifient ce fonctionnement. Il y est surtout question de physique, chimie, biologie, g\u00e9ologie, etc.\n\nLe second traite des impacts du changement climatique. Y figurera la synth\u00e8se de ce que peuvent publier des biologistes, m\u00e9decins, agronomes, sp\u00e9cialistes des infrastructures parfois, etc. \n\nLe troisi\u00e8me traite des marges de manoeuvre (\"transition\"), et est le \"royaume\" des \u00e9conomistes souvent. Le mandat du GIEC est d'\u00eatre \"policy relevant but not policy prescriptive\", c'est \u00e0 dire d'\u00e9clairer sans pr\u00e9coniser. Quand il est question d'\u00e9conomie ou de sc\u00e9narisation de l'avenir, c'est dans le groupe 3 que la diff\u00e9rence entre \u00e9clairer et pr\u00e9coniser est la plus difficile \u00e0 respecter. \n\nCar, de fait, quand il y a une infinit\u00e9 de possibilit\u00e9s pour l'action, mais que seule une fraction est \u00e9tudi\u00e9e ou d\u00e9crite dans la litt\u00e9rature \u00e9conomique ou technique, la nature humaine fait que nous consid\u00e9rerons que nous avons l\u00e0 les seuls choix possibles. \n\nCe n'est pas tr\u00e8s grave si on comprend bien le mandat du GIEC, qui est \"simplement\" de r\u00e9sumer ce qui a \u00e9t\u00e9 publi\u00e9 dans la litt\u00e9rature \u00e0 comit\u00e9 de lecture des domaines concern\u00e9s !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6830420464297361408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6830420465085882368,urn:li:activity:6830420465085882368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 47, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6830420465085882368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6830420465085882368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6830420465085882368", + "threadId": "activity:6830420465085882368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6830420465085882368", + "urn": "urn:li:activity:6830420465085882368", + "numComments": 143, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6830420465085882368", + "reactionTypeCounts": [ + { + "count": 1131, + "reactionType": "LIKE" + }, + { + "count": 111, + "reactionType": "INTEREST" + }, + { + "count": 52, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6830420465085882368", + "numLikes": 1322, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6830420465085882368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1322, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6830175681226276864,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6830175681226276864", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6830175681226276864)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6830175681226276864)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_last-month-was-worst-july-for-wildfires-on-activity-6830175681226276864-DQdS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6830175680655851520", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6830175681226276864", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6830175681226276864,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6830175681226276864,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6830175680655851520", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "+SUeA8Ai4JI3iZ4BOTZozQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6830175681226276864,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7229884782968960578", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676414465709?e=1677240000&v=beta&t=VbTaf3QzEs7aydXcJxq023oJI9IyP3N05DgecP_Dz5g", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676414465710?e=1677240000&v=beta&t=Y1WiEu7VD6hAc953mosbF9bKfmGP-k_HRjS-JPhVGNI", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676414465710?e=1677240000&v=beta&t=bonw4n-qGvuD5QZgSAx7RTq2y2UAzCGyB9yO9UJ2JWo", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676414465710?e=1677240000&v=beta&t=A5XyD8a4Z10PqJ8TZrjS2lg9STqGqz5OtAjeDUoNUQQ", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFMbEY8YOnMOg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7229884782968960578)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7229884782968960578)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Last month was worst July for wildfires on record, say scientists by theguardian.com", + "actionTarget": "https://www.theguardian.com/world/2021/aug/06/last-month-worst-july-wildfires-since-2003" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Last month was worst July for wildfires on record, say scientists" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6830175680655851520,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A la veille de la sortie du rapport du groupe 1 du GIEC (celui qui d\u00e9crit le fonctionnement physique du syst\u00e8me climatique et sa modification sous l'effet des activit\u00e9s humaines), Copernicus, programme d\u2019observation de la Terre de l\u2019Union europ\u00e9enne (https://lnkd.in/dbEPmTT3 ) indique que le mois de juillet 2021 a battu des records en ce qui concerne les surfaces de for\u00eat br\u00fbl\u00e9es par les incendies (avec, entre autres cons\u00e9quences logiques, les plus importantes \u00e9missions de CO2 issues des incendies, et - m\u00eame si l'article de journal ne le dit pas - le plus grand nombre d'arbres et d'animaux tu\u00e9s).\n\nL'\u00e9cart \u00e0 la moyenne 2008-2020 est particuli\u00e8rement impressionnant pour la Turquie, l'Italie, et ce alors m\u00eame que la saison des incendies n'est malheureusement pas termin\u00e9e, et que par ailleurs toute l'Europe du sud fait face \u00e0 des conditions tr\u00e8s chaudes et tr\u00e8s s\u00e8ches.\n\nJe n'ose dire \"anormalement chaudes et s\u00e8ches\", puisque demain un nouveau rapport rappellera que le nouveau normal sera anormal...." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6830175680655851520,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6830175681226276864,urn:li:activity:6830175681226276864,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 15, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6830175681226276864,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6830175681226276864,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6830175681226276864", + "threadId": "activity:6830175681226276864", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6830175681226276864", + "urn": "urn:li:activity:6830175681226276864", + "numComments": 31, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6830175681226276864", + "reactionTypeCounts": [ + { + "count": 429, + "reactionType": "LIKE" + }, + { + "count": 63, + "reactionType": "INTEREST" + }, + { + "count": 50, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6830175681226276864", + "numLikes": 553, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6830175681226276864", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 553, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6829820043736424448,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6829820043736424448", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6829820043736424448)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6829820043736424448)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-interview-dans-socialter-en-juillet-2019-activity-6829820043736424448-1pvx?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6829820043224735744", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6829820043736424448", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6829820043736424448,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6829820043736424448,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6829820043224735744", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "guwM/KzknY1zDPBXW9g9CQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6829820043736424448,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7395978810951643432", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 429, + "fileIdentifyingUrlPathSegment": "800/0/1675669581426?e=1677240000&v=beta&t=c5pmp-F_x55L-Ivl4_e6UsSXz-XhhMEXLjIM3S5BmvI", + "expiresAt": 1677240000000, + "height": 572 + }, + { + "width": 429, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675669581427?e=1677240000&v=beta&t=Q-xkaSIOqavKRSuMnhfeq3-S5AOcp19U7JcJptlQVQQ", + "expiresAt": 1677240000000, + "height": 572 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675669581427?e=1677240000&v=beta&t=6z3r-3FeMR-cRGGSIWrcaTf160J5VBYuQdwlyj-0_q8", + "expiresAt": 1677240000000, + "height": 213 + }, + { + "width": 429, + "fileIdentifyingUrlPathSegment": "480/0/1675669581427?e=1677240000&v=beta&t=u0vNHHqUQLtEX0F1MM6775bC6sh3CJ47v0v3arSZfDo", + "expiresAt": 1677240000000, + "height": 572 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGyTb0EwD2eWg/articleshare-shrink_" + }, + "displayAspectRatio": 1.3333333333333333 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7395978810951643432)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7395978810951643432)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 16 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Une interview dans Socialter en juillet 2019 by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/interviews/une-interview-dans-socialter-en-juillet-2019/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Une interview dans Socialter en juillet 2019" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6829820043224735744,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a 2 ans, Socialter a publi\u00e9 une interview de votre serviteur dans un num\u00e9ro hors s\u00e9rie intitul\u00e9 \"L'avenir sera low-tech\". Une phrase de cette interview, portant sur la question d\u00e9mographique, a \u00e9t\u00e9 extraite par plusieurs personnes (dont Laurent Alexandre, Luc Ferry, et d'autres en suivant) de cette interview, et a \u00e9t\u00e9 utilis\u00e9e pour me faire dire des choses que j'ai jamais ni dites ni \u00e9crites (qu'il fallait euthanasier les vieux, zigouiller les plus de 65 ans, et j'en passe).\n\nPour permettre \u00e0 chacun d'en juger, et par ailleurs replacer cette phrase dans son contexte, j'ai d\u00e9cid\u00e9 de publier l'int\u00e9gralit\u00e9 de l'interview sur mon site personnel.\n\nLa d\u00e9claration qui a fait tant sursauter quelques personnes est en lien direct avec l'\u00e9quation de Kaya (https://lnkd.in/gAthJhJ ) qui sous-tend une partie des propos tenus pendant cette interview." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6829820043224735744,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6829820043736424448,urn:li:activity:6829820043736424448,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 53, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6829820043736424448,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6829820043736424448,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6829820043736424448", + "threadId": "activity:6829820043736424448", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6829820043736424448", + "urn": "urn:li:activity:6829820043736424448", + "numComments": 154, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6829820043736424448", + "reactionTypeCounts": [ + { + "count": 640, + "reactionType": "LIKE" + }, + { + "count": 42, + "reactionType": "INTEREST" + }, + { + "count": 41, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6829820043736424448", + "numLikes": 771, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6829820043736424448", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 771, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6829333876129710080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6829333876129710080", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6829333876129710080)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6829333876129710080)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_on-a-souvent-entendu-dire-que-la-france-sest-activity-6829333876129710080-XtVP?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6829333875538313216", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6829333876129710080", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6829333876129710080,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6829333876129710080,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6829333875538313216", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "H1GiZSx014lEK2pYU0VV/Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6829333876129710080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHk3w_q6fk6kQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHk3w_q6fk6kQ", + "artifacts": [ + { + "width": 1772, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1628240075740?e=1679529600&v=beta&t=sUXiPqW7NY79jH-p7PcoM9WODa8cMCjkQLNKb9XPnvM", + "expiresAt": 1679529600000, + "height": 958 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1628240077689?e=1679529600&v=beta&t=t0n2xxf6C7wW_rWJbIQ8btDdalJ1MHlzq14QHZkpMuM", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1628240077689?e=1679529600&v=beta&t=jGxJBm6hWX0Sak9-t7MRjusvV6YQUHxw0l4tkHXTw5w", + "expiresAt": 1679529600000, + "height": 692 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1628240077689?e=1679529600&v=beta&t=MdgpW8pvRQ1qOAgIbHqdbx9BvwcHSw3gyP6dBAlABOs", + "expiresAt": 1679529600000, + "height": 260 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1628240077689?e=1679529600&v=beta&t=Sb7CRUKnUHRbo2cbz-iU9XDjTnqSvD7x5M3KQk_DWDM", + "expiresAt": 1679529600000, + "height": 87 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1628240077689?e=1679529600&v=beta&t=o1GCWkjHErPbjgzKblEyD3vxDrqYPIhvm4LTV0HQZGQ", + "expiresAt": 1679529600000, + "height": 433 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHk3w_q6fk6kQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.5406320541760722 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, line chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6829333875538313216,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "On a souvent entendu dire que la France s'est d\u00e9sindustrialis\u00e9e apr\u00e8s les chocs p\u00e9troliers, puisque l'emploi dans l'industrie a baiss\u00e9 apr\u00e8s 1974.\n\nEn fait, dans l'industrie, il n'y a pas tant besoin d'ouvriers que de machines pour avoir une production. Un laminoir de 500.000 tonnes par an ne demande pas beaucoup moins d'emplois qu'un laminoir de 5 millions de tonnes. Une chaine automobile d\u00e9pend plus du nombre de robots que d'ouvriers pour produire un nombre donn\u00e9 de voitures par an. Etc\n\nLa production industrielle fran\u00e7aise, qui d\u00e9pend donc avant tout du nombre de machines en service dans l'industrie, donc de l'approvisionnement \u00e9nerg\u00e9tique, a en fait quasiment doubl\u00e9 de 1974 jusqu'en 2007. Nous avons certes produit moins de textile et de machines \u00e0 laver, mais plus d'avions, de trains, ou... de nucl\u00e9aire :).\n\nQue s'est-il pass\u00e9 en 2007 ? Le p\u00e9trole conventionnel mondial est pass\u00e9 par son pic, ce qui a contraint l'approvisionnement fran\u00e7ais \u00e0 la baisse. Le gaz de la Mer du Nord est pass\u00e9 par son pic en 2005, ce qui a aussi contraint l'approvisionnement fran\u00e7ais \u00e0 la baisse. Enfin le charbon \u00e9tait en d\u00e9clin depuis bien avant (pour causes g\u00e9ologiques, pas du tout climatiques). Ajoutons-y un nucl\u00e9aire limit\u00e9 par l'opinion et des renouvelables modernes limit\u00e9es par la physique, et au total l'approvisionnement \u00e9nerg\u00e9tique fran\u00e7ais diminue - pour l'essentiel de fa\u00e7on contrainte - depuis 2006. \n\nMoins d'\u00e9nergie, c'est moins de machines au travail, et donc une production industrielle qui peine. Et on ne voit pas bien pourquoi, \u00e0 l'avenir, avec un approvisionnement \u00e9nerg\u00e9tique qui va continuer \u00e0 baisser, cette production repartirait \u00e0 la hausse. Il faudrait donc r\u00e9fl\u00e9chir l'avenir de notre pays avec une production mat\u00e9rielle en baisse. On attend encore les raisonnements \u00e9conomiques \"acad\u00e9miques\" ou politiques qui correspondent \u00e0 ce pr\u00e9requis..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6829333875538313216,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6829333876129710080,urn:li:activity:6829333876129710080,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 80, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6829333876129710080,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6829333876129710080,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6829333876129710080", + "threadId": "activity:6829333876129710080", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6829333876129710080", + "urn": "urn:li:activity:6829333876129710080", + "numComments": 154, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6829333876129710080", + "reactionTypeCounts": [ + { + "count": 847, + "reactionType": "LIKE" + }, + { + "count": 126, + "reactionType": "INTEREST" + }, + { + "count": 113, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6829333876129710080", + "numLikes": 1110, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6829333876129710080", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1110, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6828969314780024832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6828969314780024832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6828969314780024832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6828969314780024832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-2020-machine-arri%C3%A8re-toute-depuis-activity-6828969314780024832-xmht?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6828969312850644992", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6828969314780024832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6828969314780024832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6828969314780024832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6828969312850644992", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "wx7m2h/Xx9rKQu/+f+dcrw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6828969314780024832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEbubmPrmO47w", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEbubmPrmO47w", + "artifacts": [ + { + "width": 1715, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1628153158177?e=1679529600&v=beta&t=JR_SC6gAqMa95ycy6b8VPIjJoDOkejTwFGb0UjJspYM", + "expiresAt": 1679529600000, + "height": 995 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1628153159718?e=1679529600&v=beta&t=uVfvghk1fTS3iQppeUbFoq37Pw7lkIlVC5msdFz-z7U", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1628153159718?e=1679529600&v=beta&t=-CY4ytw1sGwGP_vw4V54DfNpM9JZkIscaJDXxGAN3Vc", + "expiresAt": 1679529600000, + "height": 743 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1628153159718?e=1679529600&v=beta&t=LkNnK14XnU3ynktFT-_ai4gOzQZd8APA-0ffXvK--Rw", + "expiresAt": 1679529600000, + "height": 278 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1628153159718?e=1679529600&v=beta&t=s_FGSURY6oVHpVaX2ky_FPVbfzD9LzsiAxAZboEYlVU", + "expiresAt": 1679529600000, + "height": 93 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1628153159718?e=1679529600&v=beta&t=QcBHBdf7AkUtwWniy_idAFyE6luPr0egjj0JACApYj8", + "expiresAt": 1679529600000, + "height": 464 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEbubmPrmO47w/feedshare-shrink_" + }, + "displayAspectRatio": 0.5801749271137027 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, line chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6828969312850644992,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 2020, machine arri\u00e8re, toute ! \n\nDepuis que nous vivons dans un monde domin\u00e9 par nos \"esclaves m\u00e9caniques\", la production \u00e9conomique est en gros une fonction proportionnelle du parc de machines en activit\u00e9. \n\nCe dernier peut \u00eatre moins important soit parce l'\u00e9nergie \u00e0 disposition du parc de machines baisse doucement (c'est le ph\u00e9nom\u00e8ne lent qui se produit d\u00e9sormais dans nombre de pays de l'OCDE : Japon, Europe...), soit parce que, une ann\u00e9e donn\u00e9e, certaines machines ne peuvent plus \u00eatre pilot\u00e9es par les hommes qui leur sont n\u00e9cessaires, et \u00e0 ce moment la production correspondante n'est plus l\u00e0.\n\nC'est ce 2\u00e8 processus qui a pris place dans le monde en 2020. Cette ann\u00e9e l\u00e0, moins de gens \"au travail\" (c'est \u00e0 dire pilotant une machine, comme moi \u00e0 l'instant, puisque je pilote mon ordinateur et indirectement toutes les machines qui achemineront l'information aux lecteurs) a engendr\u00e9 un parc de machine en fonctionnement moins important. Une des cons\u00e9quences est que la \"consommation d'\u00e9nergie\" (qui est celle des machines, pas des humains) a baiss\u00e9.\n\nEt, de m\u00eame que, \u00e0 la hausse, la relation entre PIB et \u00e9nergie est historiquement quasi-proportionnelle, la baisse l'a \u00e9t\u00e9 aussi, comme on peut le voir sur ce graphique r\u00e9alis\u00e9 par votre serviteur avec des donn\u00e9es BP Statistical Review (\u00e9nergie) et World Bank (PIB).\n\nSachant qu'en 2020 les \u00e9missions ont baiss\u00e9 au bon rythme pour respecter l'accord de Paris (-5%), on voit bien - certes sur une ann\u00e9e - que, malgr\u00e9 le d\u00e9veloppement des sources non carbon\u00e9es (qui lui n'a pas faibli), marier croissance et pr\u00e9servation du climat semble un pari impossible \u00e0 tenir. \n\nIl reste juste \u00e0 en convaincre 7,4 milliards d'individus - dont tous les \u00e9diles de la Commission, et tous les gouvernements nationaux - et \u00e0 s'organiser en cons\u00e9quence sans trop de bobos...." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6828969312850644992,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6828969314780024832,urn:li:activity:6828969314780024832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6828969314780024832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6828969314780024832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6828969314780024832", + "threadId": "activity:6828969314780024832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6828969314780024832", + "urn": "urn:li:activity:6828969314780024832", + "numComments": 202, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6828969314780024832", + "reactionTypeCounts": [ + { + "count": 864, + "reactionType": "LIKE" + }, + { + "count": 122, + "reactionType": "INTEREST" + }, + { + "count": 84, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6828969314780024832", + "numLikes": 1090, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6828969314780024832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1090, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6828725411682242561,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6828725411682242561", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6828725411682242561)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6828725411682242561)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_neutralit%C3%A9-carbone-guide-de-survie-climat-activity-6828725411682242561-7aIr?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6828725411271192576", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6828725411682242561", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6828725411682242561,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6828725411682242561,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6828725411271192576", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "/+ojBRlEPLPcRoyelRQ0HQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6828725411682242561,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7600978096784128978", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676153296184?e=1677240000&v=beta&t=7ZqgPPCPYFEuQcpR_BkI-wlO3yhOj_pZ9Pr_by7FYF0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676153296184?e=1677240000&v=beta&t=v8zYPRUWXTkodcZlxtA0fV2zwT-rfRarPrybIQ_t_BM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676153296184?e=1677240000&v=beta&t=PWRc_w32G8CKHT6IMCmCgFoQl2WJVqsIQLb9Y1RGI3A", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676153296184?e=1677240000&v=beta&t=w_DtJq9sh6fgICfsHUs1bxNrR1baM6oRxZttNpad3MQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGEhanRS9mCCw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7600978096784128978)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7600978096784128978)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Neutralit\u00e9 carbone : Guide de survie (Climat #6) on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=l2j8IaLx0Yk" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Qu'est-ce que la neutralit\u00e9 carbone, et comment s\u00e9parer la vraie neutralit\u00e9 du \"netzero-washing\" ? Pour vous aider \u00e0 faire face aux confusions et fausses promesses autour de la neutralit\u00e9 carbone (dont a pas fini d'entendre parler!), voici une m\u00e9thode..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Neutralit\u00e9 carbone : Guide de survie (Climat #6)" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6828725411271192576,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "OGPT. Le moyen mn\u00e9motechnique est infaillible ! En l'esp\u00e8ce, il ne s'agit pas de faire une blague de coll\u00e9gien, mais de fournir une grille de lecture pour prendre un peu de hauteur sur les revendications de neutralit\u00e9 des entreprises, lesquelles vont surement redoubler de vigueur \u00e0 la rentr\u00e9e, apr\u00e8s que le climat se soit rappel\u00e9 \u00e0 notre bon souvenir pendant l'\u00e9t\u00e9.\n\nCette petite vid\u00e9o de 15 minutes ne dit pas une chose, qui est qu'une revendication de neutralit\u00e9 d'une entreprise ne peut pas se justifier scientifiquement (https://lnkd.in/db7JzB2q ), mais en dit beaucoup d'autres, permettant de mieux comprendre toutes les questions de m\u00e9thode qui se posent quand on entend s'int\u00e9resser \u00e0 la question des sources et des puits pour les gaz \u00e0 effet de serre.\n\nPas une lecture estivale, donc, mais un visionnage estival, on peut le dire !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6828725411271192576,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6828725411682242561,urn:li:activity:6828725411682242561,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 28, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6828725411682242561,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6828725411682242561,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6828725411682242561", + "threadId": "activity:6828725411682242561", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6828725411682242561", + "urn": "urn:li:activity:6828725411682242561", + "numComments": 41, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6828725411682242561", + "reactionTypeCounts": [ + { + "count": 446, + "reactionType": "LIKE" + }, + { + "count": 59, + "reactionType": "INTEREST" + }, + { + "count": 25, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6828725411682242561", + "numLikes": 554, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6828725411682242561", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 554, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6828654791514714113,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6828654791514714113", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6828654791514714113)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6828654791514714113)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_bruno-david-la-vitesse-dextinction-des-activity-6828654791514714113-_wYY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6828654791128834048", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6828654791514714113", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6828654791514714113,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6828654791514714113,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6828654791128834048", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "cK6MMlpw8CsUgO9c5eNqaQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6828654791514714113,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8021407378840789240", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675977486569?e=1677240000&v=beta&t=sp-jaVSESO3ddT_CwpMzb7GEIciKmjsTL2CDRzKti1c", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675977486569?e=1677240000&v=beta&t=j_IzLwEIzfPd99Sl4b1ZWHdrNs90u88rwaYDaaXnTWo", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675977486569?e=1677240000&v=beta&t=Q-4ngdKktSwoM8Vlmw5FUHGHnLCsXMCsBn0Ewvw7mOU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675977486569?e=1677240000&v=beta&t=wnvdyKF508-6CK6AhOy2wUHl1DP42N275neWT74djGw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHKdVVJDyErOA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8021407378840789240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8021407378840789240)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Bruno David : \u00ab La vitesse d'extinction des esp\u00e8ces est in\u00e9dite \u00bb by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/weekend/perso/bruno-david-la-vitesse-dextinction-des-especes-est-inedite-1314924" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Bruno David : \u00ab La vitesse d'extinction des esp\u00e8ces est in\u00e9dite \u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6828654791128834048,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 36, + "length": 11, + "miniProfile": { + "firstName": "Bruno", + "lastName": "David", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB0J6ysBSrLKe3ukaezh9zA0cjiU9d68lzg", + "occupation": "Pr\u00e9sident du Mus\u00e9um national d'Histoire naturelle", + "objectUrn": "urn:li:member:487189291", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB0J6ysBSrLKe3ukaezh9zA0cjiU9d68lzg", + "publicIdentifier": "bruno-david-2b71aa117", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517515988343?e=1681948800&v=beta&t=fW63SoQIe7gdABgpYbgoOizx2ePv6z-9--Kh5kJ3xew", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517515988343?e=1681948800&v=beta&t=uix2FjiqP6sCdhi6Q_x7ePKyX_Wl_b_lcecwjXqcv5A", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517515988343?e=1681948800&v=beta&t=CRREqT7cTVuvb19VmFY6AzlWImS59-mfAytC49nF9TM", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517515988343?e=1681948800&v=beta&t=wv5OnssA9NwXC4OHtQ1tnqUFmFVqlYE7kjIt0aCHtpM", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5103AQErb9IVjWA4ig/profile-displayphoto-shrink_" + } + }, + "trackingId": "3DX++WvWSpuL+ANAQKXqxQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Les Echos publient une interview de Bruno David, Pr\u00e9sident du Mus\u00e9um national d'histoire naturelle, qui rappelle que l'humanit\u00e9 d\u00e9pend des autres esp\u00e8ces vivantes, et que la \"crise d'extinction\" qui a \u00e9t\u00e9 d\u00e9clench\u00e9e par l'esp\u00e8ce humaine, trop pr\u00e9datrice pour ses effectifs, ou trop nombreuse pour sa capacit\u00e9 de pr\u00e9dation, au choix, finira par se retourner contre nous.\n\nFinalement, il n'y aura peut-\u00eatre pas besoin de d\u00e9m\u00e9nager l'humanit\u00e9 sur Mars. Avec un peu de bonne volont\u00e9, on finira par cr\u00e9er l'environnement de Mars sur terre !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6828654791128834048,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6828654791514714113,urn:li:activity:6828654791514714113,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 96, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6828654791514714113,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6828654791514714113,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6828654791514714113", + "threadId": "activity:6828654791514714113", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6828654791514714113", + "urn": "urn:li:activity:6828654791514714113", + "numComments": 233, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6828654791514714113", + "reactionTypeCounts": [ + { + "count": 1550, + "reactionType": "LIKE" + }, + { + "count": 212, + "reactionType": "INTEREST" + }, + { + "count": 208, + "reactionType": "MAYBE" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 24, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6828654791514714113", + "numLikes": 2026, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6828654791514714113", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2026, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6828245939992498176,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6828245939992498176", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6828245939992498176)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6828245939992498176)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_entreprises-un-peu-de-s%C3%A9rieux-activity-6828245939992498176-IjyJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6828245939489181696", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6828245939992498176", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6828245939992498176,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6828245939992498176,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6828245939489181696", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "8RDWJGSsGKWCdCkwvWD7Lw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6828245939992498176,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8253427554652313909", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675843669311?e=1677240000&v=beta&t=m-UJD6vw1h4u1MyrtVQ25Dd36x7emVhz-NIdkHHp_hw", + "expiresAt": 1677240000000, + "height": 157 + }, + { + "width": 1161, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675843669312?e=1677240000&v=beta&t=iohoxGgFozMfwfxFedzu2wrbH5iIssjc8PlTjqQ1h1c", + "expiresAt": 1677240000000, + "height": 229 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675843669312?e=1677240000&v=beta&t=hkI6vvMKDU1RqufZ96rXMtztL45-UrPDY22bYiqmE0I", + "expiresAt": 1677240000000, + "height": 31 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675843669312?e=1677240000&v=beta&t=R-GIezPMxPreLQu3FBI9q53i9q3AiN8Nj5POjach9nI", + "expiresAt": 1677240000000, + "height": 94 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHPi5klFYoVgQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8253427554652313909)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8253427554652313909)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Entreprises, un peu de s\u00e9rieux ! by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/articles-de-presse/entreprises-un-peu-de-serieux/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Entreprises, un peu de s\u00e9rieux !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6828245939489181696,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis que les hommes ont commenc\u00e9 \u00e0 mesurer la concentration en gaz \u00e0 effet de serre dans l'atmosph\u00e8re, il y a plus d'un demi-si\u00e8cle, cette derni\u00e8re augmente inexorablement au m\u00eame rythme, quelles que soient les d\u00e9clarations des pays et des entreprises pour expliquer que nous allons r\u00e9gler le probl\u00e8me.\n\nCette tribune parue dans Investir (du groupe Les Echos) rappelle que pour le moment les d\u00e9clarations n'ont jamais \u00e9t\u00e9 suivies d'actes \u00e0 la bonne \u00e9chelle, et que nous continuons \u00e0 \"regarder ailleurs\", pour reprendre la c\u00e9l\u00e8bre citation de Chirac.\n\nEn particulier, \u00e0 peu pr\u00e8s aucune entreprise n'a mis en oeuvre les deux premi\u00e8res mesures qui sont pourtant indispensables pour s'attaquer \u00e0 la question : former l'ensemble de ses cadres \u00e0 la compr\u00e9hension du probl\u00e8me \u00e0 traiter, et d\u00e9ployer la m\u00e9trique (la comptabilit\u00e9 carbone) qui permet de faire l'\u00e9tat des lieux, puis de d\u00e9finir une strat\u00e9gie, des objectifs, et des actions, tout en \u00e9tant capable de faire \u00e0 tout moment des arbitrages par la suite.\n\nDans l'esprit (car en pratique ca ne serait pas tr\u00e8s facile \u00e0 encadrer !), la loi climat aurait pu pr\u00e9voir l'interdiction de communiquer sur le climat - que ce soit en communication d'entreprise ou dans les publicit\u00e9s - pour toute entreprise qui n'est pas pass\u00e9e par ces \u00e9tapes. \n\nEn effet, aujourd'hui, \"l\u2019essentiel des membres de comex des entreprises n\u2019est toujours pas capable de d\u00e9crire le dossier physique du changement climatique avec pr\u00e9cision. Et pourtant tous pr\u00e9tendent \u00eatre en mesure de r\u00e9gler le probl\u00e8me !\"\n\nFormation et syst\u00e8me comptable ne garantissent pas le r\u00e9sultat, mais leur absence garantit la navigation dans le brouillard sur une mer encombr\u00e9e de r\u00e9cifs." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6828245939489181696,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6828245939992498176,urn:li:activity:6828245939992498176,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 85, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6828245939992498176,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6828245939992498176,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6828245939992498176", + "threadId": "activity:6828245939992498176", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6828245939992498176", + "urn": "urn:li:activity:6828245939992498176", + "numComments": 128, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6828245939992498176", + "reactionTypeCounts": [ + { + "count": 1656, + "reactionType": "LIKE" + }, + { + "count": 127, + "reactionType": "PRAISE" + }, + { + "count": 90, + "reactionType": "MAYBE" + }, + { + "count": 48, + "reactionType": "INTEREST" + }, + { + "count": 37, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6828245939992498176", + "numLikes": 1973, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6828245939992498176", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1973, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6827985208638226432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6827985208638226432", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6827985208638226432)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6827985208638226432)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-part-fossile-dans-la-production-%C3%A9lectrique-activity-6827985208638226432-7_ue?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6827985207912632320", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6827985208638226432", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6827985208638226432,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6827985208638226432,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6827985207912632320", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "6v3Ww/9xDUtuRrNTaVZpGw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6827985208638226432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQF8jJSzCwAZlA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQF8jJSzCwAZlA", + "artifacts": [ + { + "width": 1682, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1627918528103?e=1679529600&v=beta&t=5GGMRKk7j3iEgPppUv_gyymYyyFIk-Sq5ESNYYiBsgs", + "expiresAt": 1679529600000, + "height": 996 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1627918530437?e=1679529600&v=beta&t=SxDN3p-YS6f5_NXW_7rAkFFIvaU_LpUOmubY01zTit8", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1627918530437?e=1679529600&v=beta&t=fG3NLmRK8uFr-nVWpzKiQdxSEokowhO6y0d-coCjYyo", + "expiresAt": 1679529600000, + "height": 758 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1627918530437?e=1679529600&v=beta&t=ARb_Hq7pTXE3VY_xs4CsI37WGiJ42da-SyK1rAW_XgQ", + "expiresAt": 1679529600000, + "height": 284 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1627918530437?e=1679529600&v=beta&t=gGoA1Dzgi0cKjm-pTHeC3vIIFz9pc_ZgZ_BWns3-Fj4", + "expiresAt": 1679529600000, + "height": 95 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1627918530437?e=1679529600&v=beta&t=8FsQtzEdfq76mKLnkmMeb-sDjFVAUgigRg8h-jQ_-a0", + "expiresAt": 1679529600000, + "height": 474 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQF8jJSzCwAZlA/feedshare-shrink_" + }, + "displayAspectRatio": 0.5921521997621879 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, line chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6827985207912632320,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La part fossile dans la production \u00e9lectrique fran\u00e7aise \u00e9tait de 10% \u00e0 la fin des ann\u00e9es 1980. En 2020, et comme toutes les ann\u00e9es depuis en gros, elle est... de 10% (sur le graphique ci-dessous, r\u00e9alis\u00e9 avec les donn\u00e9es de BP Statistical Review, on voit mieux la part \"non fossile\", stable \u00e0 90% depuis 35 ans).\n\nLa France avait donc d\u00e9carbon\u00e9 l'essentiel de son \u00e9lectricit\u00e9 bien avant que les \u00e9missions de CO2 ne fassent la une des m\u00e9dia, pour environ 150 milliards d'euros en cout historique.\n\nDepuis le d\u00e9but des ann\u00e9es 2000, c'est \u00e0 dire quand le nucl\u00e9aire a cess\u00e9 d'\u00eatre consensuel quel que soit le bord politique (le soutien au nucl\u00e9aire est devenu depuis plut\u00f4t un marqueur de droite), le d\u00e9veloppement de l'\u00e9olien et du solaire (pour aussi 150 milliards environ) n'a pas permis de d\u00e9passer les 90% d'\u00e9lectricit\u00e9 non fossile, mais a juste compens\u00e9 l'\u00e9rosion du nucl\u00e9aire.\n\nDe l\u00e0, d'aucuns disent que \"si on n'avait pas d\u00e9velopp\u00e9 les ENR, la part fossile aurait augment\u00e9\", et d'autres que \"si on avait \u00e9t\u00e9 constant dans le soutien au nucl\u00e9aire, nous aurions pu mettre nos comp\u00e9tences et notre temps (donc nos milliards) au service de la d\u00e9carbonation d'autre chose, au lieu de revenir sur un probl\u00e8me presque r\u00e9gl\u00e9\".\n\nOn remarque le \"soubresaut covid\", qui se voit sur de nombreuses autres courbes concernant l'\u00e9nergie (il y en aura !), n'est pas du tout pr\u00e9sent sur celle ci." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6827985207912632320,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6827985208638226432,urn:li:activity:6827985208638226432,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6827985208638226432,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6827985208638226432,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6827985208638226432", + "threadId": "activity:6827985208638226432", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6827985208638226432", + "urn": "urn:li:activity:6827985208638226432", + "numComments": 136, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6827985208638226432", + "reactionTypeCounts": [ + { + "count": 740, + "reactionType": "LIKE" + }, + { + "count": 68, + "reactionType": "INTEREST" + }, + { + "count": 61, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6827985208638226432", + "numLikes": 881, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6827985208638226432", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 881, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6827621944750313472,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6827621944750313472", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6827621944750313472)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6827621944750313472)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-d%C3%A9fis-de-lanthropoc%C3%A8ne-au-del%C3%A0-des-activity-6827621944750313472-bE3a?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6827621944263753728", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6827621944750313472", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6827621944750313472,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6827621944750313472,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6827621944263753728", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "83VBLc0CAmwWxq7qXAxznw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6827621944750313472,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8657353775359710826", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675871958772?e=1677240000&v=beta&t=XD7L8JCP-WhaDBy_v6U53GouL4g_fyUi1rTCOfSdKA0", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675871958772?e=1677240000&v=beta&t=D1uLoxZERJvglCABa8E0QQYyZLcW4w3OJeXNHjlI4t0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675871958772?e=1677240000&v=beta&t=bsW6tA5iKDS0X5KdYzAcQBdXeEp4nJB0dNgvjAJHm60", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675871958772?e=1677240000&v=beta&t=E0FYKb2ir6ZM8HjIOGQTvgRygJ96ctlBnW9jyWhrZNE", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEvglJN2pTK8g/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8657353775359710826)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8657353775359710826)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab Les d\u00e9fis de l\u2019anthropoc\u00e8ne au-del\u00e0 des questions de financement doivent constituer la toile de fond \u00e0 notre r\u00e9flexion \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/idees/article/2021/07/24/les-defis-de-l-anthropocene-au-dela-des-questions-de-financement-doivent-constituer-la-toile-de-fond-a-notre-reflexion_6089398_3232.html?utm_medium=social&utm_source=linkedin" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0Les d\u00e9fis de l\u2019anthropoc\u00e8ne au-del\u00e0 des questions de financement doivent constituer la toile de fond \u00e0 notre r\u00e9flexion\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6827621944263753728,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 306, + "length": 14, + "miniProfile": { + "firstName": "Jean", + "lastName": "Colcombet", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABD4DrAB8hEYutH-TEQLJPMcXIA5LojOXW0", + "occupation": "Inra Scientist (Plant Genomic Research Unit, Evry, France)", + "objectUrn": "urn:li:member:284692144", + "entityUrn": "urn:li:fs_miniProfile:ACoAABD4DrAB8hEYutH-TEQLJPMcXIA5LojOXW0", + "publicIdentifier": "jean-colcombet-4944147b", + "trackingId": "kM1qU35GRvesvyEbmvxtNQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Quand il est question de transports, de logements ou d'industrie, chacun(e) voit bien qu'il peut y avoir des actions qui sont compatibles avec une baisse des \u00e9missions de gaz \u00e0 effet de serre, et d'autres qui le sont moins.\n\nMais quand il est question de recherche ? La question se pose tout autant, selon Jean Colcombet, auteur d'une tribune r\u00e9cemment parue dans Le Monde (avec, comme souvent pour ce journal, un titre qui a \u00e9t\u00e9 chang\u00e9 par la r\u00e9daction, sans demander son avis \u00e0 l'auteur, et sans en informer le lectorat, raison pour laquelle il est si mauvais - le titre, pas l'article :) ).\n\nDans un monde en d\u00e9crue \u00e9nerg\u00e9tique, et donc en contraction de moyens mat\u00e9riels, il faudra se poser plus encore la question de savoir quelle recherche nous entendons privil\u00e9gier, car il n'y en aura pas pour tout le monde. C'est bien parce que les machines assurent \u00e0 notre place les fonctions productives \"mat\u00e9rielles\" que cela nous a lib\u00e9r\u00e9 du temps pour avoir, entre autres, des activit\u00e9s de recherche. \n\nDisons le autrement : dans un monde en d\u00e9crue \u00e9nerg\u00e9tique, il est peu probable que les moyens pour la recherche augmentent. C'est peut-\u00eatre d\u00e9sagr\u00e9able \u00e0 entendre, mais il serait sage de s'organiser en cons\u00e9quence. Les premiers \u00e0 se poser la question de \"comment continuer \u00e0 \u00eatre utiles dans ce contexte\", et \"\u00e0 quoi utiliser les moyens tant qu'il y en a encore\" devraient \u00eatre les chercheurs eux-m\u00eames, plaide l'auteur de la tribune." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6827621944263753728,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6827621944750313472,urn:li:activity:6827621944750313472,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6827621944750313472,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6827621944750313472,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6827621944750313472", + "threadId": "activity:6827621944750313472", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6827621944750313472", + "urn": "urn:li:activity:6827621944750313472", + "numComments": 49, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6827621944750313472", + "reactionTypeCounts": [ + { + "count": 226, + "reactionType": "LIKE" + }, + { + "count": 21, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6827621944750313472", + "numLikes": 269, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6827621944750313472", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 269, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6827260987373064192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6827260987373064192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6827260987373064192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6827260987373064192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_aux-etats-unis-l%C3%A9t%C3%A9-des-catastrophes-fait-activity-6827260987373064192-aJiN?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6827260986857164800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6827260987373064192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6827260987373064192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6827260987373064192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6827260986857164800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "1sJkTKqDWITcZ1eUh9xwzg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6827260987373064192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8873274481263836691", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676476994756?e=1677240000&v=beta&t=SxG6VskSaTV6nF5PMTqGuEJ9qFHLwBzM7JmoZggVwY4", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676476994757?e=1677240000&v=beta&t=wTppmkbAK0cSjEf1DPx2usCufMVRex7Xvdlq6EzlJI8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676476994757?e=1677240000&v=beta&t=FsFo5XH1fmIaW5-uMrVj9kJJn9eoQGiJeq2PNKFRldE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676476994757?e=1677240000&v=beta&t=T65qPxbg0x52LJnMng4SOEvAf4ynZBg7C5c76j3hoOg", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFXZYOcTPsbdw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8873274481263836691)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8873274481263836691)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Aux Etats-Unis, l'\u00e9t\u00e9 des catastrophes fait craindre d'immenses cons\u00e9quences \u00e9conomiques by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/etats-unis/aux-etats-unis-lete-des-catastrophes-fait-craindre-dimmenses-consequences-economiques-1335840" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Aux Etats-Unis, l'\u00e9t\u00e9 des catastrophes fait craindre d'immenses cons\u00e9quences \u00e9conomiques" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6827260986857164800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "On a failli avoir peur. Pr\u00e9c\u00e9d\u00e9 d'un titre presque digne d'un film d'horreur, Les Echos consacrent un article aux \"catastrophes\" survenant aux USA : s\u00e9cheresse hors norme, incendies majeurs, etc.\n\nOn tremble. On se dit que notre maison commune (la plan\u00e8te terre) est en train de se fissurer ici, de prendre l'eau l\u00e0, de se vider de ses habitants non humains ailleurs, et que tout cela sent mauvais pour nous.\n\nMais \u00e0 la fin de l'article, on trouve cette phrase \"Le Bureau du Budget, une agence d\u00e9pendant du Congr\u00e8s, estimait r\u00e9cemment que le changement climatique pourrait faire perdre un point de PIB aux Etats-Unis d'ici \u00e0 2050\". \n\nComme le m\u00eame bureau consid\u00e8re probablement que d'ici \u00e0 2050 le PIB va cro\u00eetre d'au moins 1,5% par an, cela signifie qu'\u00e0 cause du changement climatique le PIB US de 2050 n'aura cru que de 54% au lieu de 53% par rapport \u00e0 maintenant. Ouf, on respire. Pas si m\u00e9chant, le changement climatique !\n\nNB : c'est \u00e9videmment du second degr\u00e9. En fait aucun mod\u00e8le \u00e9conomique ne peut pr\u00e9voir de dommages \u00e0 cause du changement climatique, pour une raison simple : le climat - ou sa stabilit\u00e9 plutot - n'est pas un facteur de production dans ces mod\u00e8les (ni aucune ressource naturelle du reste). Si le climat n'est pas repr\u00e9sent\u00e9 comme facteur de production, on ne peut \u00e9videmment pas en d\u00e9duire la cons\u00e9quence d'un dommage au climat sur l'\u00e9conomie autrement que par \"l'envie qu'en a le mod\u00e9lisateur\"." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6827260986857164800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6827260987373064192,urn:li:activity:6827260987373064192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 52, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6827260987373064192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6827260987373064192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6827260987373064192", + "threadId": "activity:6827260987373064192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6827260987373064192", + "urn": "urn:li:activity:6827260987373064192", + "numComments": 90, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6827260987373064192", + "reactionTypeCounts": [ + { + "count": 963, + "reactionType": "LIKE" + }, + { + "count": 99, + "reactionType": "MAYBE" + }, + { + "count": 98, + "reactionType": "INTEREST" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6827260987373064192", + "numLikes": 1185, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6827260987373064192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1185, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6826795127386755072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6826795127386755072", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6826795127386755072)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6826795127386755072)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-part-du-charbon-dans-l%C3%A9lectricit%C3%A9-chinoise-activity-6826795127386755072-V9de?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6826795126623395840", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6826795127386755072", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6826795127386755072,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6826795127386755072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6826795126623395840", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "ANmeGcQVgeWGJkXAivaW4w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6826795127386755072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQG5lU0LdEpjoQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQG5lU0LdEpjoQ", + "artifacts": [ + { + "width": 1842, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1627634791900?e=1679529600&v=beta&t=mN5ixZQ-XA3cdiP3ltXBs9K0SIRwgR3jBtDF-OoEVds", + "expiresAt": 1679529600000, + "height": 1051 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1627634793431?e=1679529600&v=beta&t=zYmOTqKAeT39YPGlJ47IqBHJ7ggyE3WrYq0JV7MeyWE", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1627634793431?e=1679529600&v=beta&t=CkI4BYgGb0csgrGHgYi2JHTcIEStHdGw_MZA0Obuv8Y", + "expiresAt": 1679529600000, + "height": 730 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1627634793431?e=1679529600&v=beta&t=xpliyI-7umVuJYB9qTScRiPFwSqC9CEtU2AEcUmJs80", + "expiresAt": 1679529600000, + "height": 274 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1627634793431?e=1679529600&v=beta&t=DKt-Djb2arbXItN_HejZuBvnrB7L6pCuw5xfFI9cF6c", + "expiresAt": 1679529600000, + "height": 91 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1627634793431?e=1679529600&v=beta&t=v2DgLRgVVrm7kxowKTEjvMr26cxN5MNShyCJtLljSCE", + "expiresAt": 1679529600000, + "height": 456 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQG5lU0LdEpjoQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.5705754614549403 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, histogram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6826795126623395840,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La part du charbon dans l'\u00e9lectricit\u00e9 chinoise \u00e9tait de plus de 80% en 2007. En 2020, elle est descendue \u00e0 63%. Cette baisse est due \u00e0 la mont\u00e9e en puissance des sources \"non carbon\u00e9es\", pour lesquelles la Chine a enregistr\u00e9, pour chacune d'elles, la plus forte progression mondiale :\n- l'hydro : la production est pass\u00e9e de 485 \u00e0 1322 TWh par an sur la p\u00e9riode (2/3 de l'incr\u00e9ment mondial dans ce seul pays),\n- l'\u00e9olien (la Chine produit quasiment un tiers du total mondial et dispose du premier parc install\u00e9), pass\u00e9 de 5 \u00e0 467 TWh par an,\n- le nucl\u00e9aire : la production est pass\u00e9e de 62 \u00e0 366 TWh par an sur la p\u00e9riode (la Chine a d\u00e9pass\u00e9 la France en production en 2020)\n- le solaire (la Chine produit quasiment un tiers du total mondial et dispose du premier parc install\u00e9), pass\u00e9 de 0 \u00e0 260 TWh par an.\n\nA l'aune des crit\u00e8res de la Commission, qui ne raisonne qu'en part d'ENR dans la production, ce pays serait donc \"sur la bonne voie\" pour la d\u00e9carbonation.\n\nMalheureusement non : dans le m\u00eame temps la production au charbon a quasiment doubl\u00e9, passant de 2660 \u00e0 4900 TWh par an. Les \u00e9missions de la production \u00e9lectrique ont donc fortement augment\u00e9. \n\nL'exemple chinois montre que de se fixer des objectifs en % ne garantit pas le r\u00e9sultat final.\n\nPar ailleurs, et plus important peut-\u00eatre, nous avons actuellement fait la preuve que nous pouvons, mondialement, augmenter la part d'ENR (hydro inclus) dans un contexte o\u00f9 le fossile augmente aussi, et donc la productivit\u00e9 industrielle mondiale (puisque ce sont les machines - essentiellement fossiles - qui assurent cette productivit\u00e9), laquelle productivit\u00e9 est ce qui permet les baisses de cout.\n\nNB : se limiter \u00e0 un seul pays pour cette analyse est ignorer la \"correction\" li\u00e9e au commerce international, surtout que l'essentiel des panneaux solaires est fabriqu\u00e9 en Chine, et une part croissante des \u00e9oliennes ou de leurs composantes. \n\nNous ne pouvons pas en d\u00e9duire sans autre forme de proc\u00e8s que nous aurons la capacit\u00e9 \u00e0 d\u00e9ployer des ENR rapidement, en quantit\u00e9 suffisante pour conserver un monde \"moderne\", et \"pour pas cher\" alors que les fossiles seront en baisse rapide (ce qui signifie, macroscopiquement, une productivit\u00e9 industrielle en baisse constante, et donc des prix r\u00e9els qui augmentent). \n\nCa sera peut-\u00eatre vrai, mais il faut en faire la d\u00e9monstration \"physique\", pas \u00e9conomique." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6826795126623395840,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6826795127386755072,urn:li:activity:6826795127386755072,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 46, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6826795127386755072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6826795127386755072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6826795127386755072", + "threadId": "activity:6826795127386755072", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6826795127386755072", + "urn": "urn:li:activity:6826795127386755072", + "numComments": 96, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6826795127386755072", + "reactionTypeCounts": [ + { + "count": 1050, + "reactionType": "LIKE" + }, + { + "count": 174, + "reactionType": "INTEREST" + }, + { + "count": 99, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6826795127386755072", + "numLikes": 1341, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6826795127386755072", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1341, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6826551202881265664,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6826551202881265664", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6826551202881265664)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6826551202881265664)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jeff-bezos-r%C3%A9alise-%C3%A0-son-tour-son-r%C3%AAve-despace-activity-6826551202881265664-jrR8?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6826551202189201408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6826551202881265664", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6826551202881265664,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6826551202881265664,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6826551202189201408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "7yijS6DfR6AcggrR/TcopA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6826551202881265664,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7195039509403327323", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676069797531?e=1677240000&v=beta&t=MhNZHKmf9SGEreBdh0kKN6dmLh0exhG7wP0hPL-HmLE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676069797531?e=1677240000&v=beta&t=AlsJjrpa9EjU3WJwZuqt6zg8yiq-d4l28BnzHzfuLn4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676069797531?e=1677240000&v=beta&t=MD1E5Pj7V_Nn85TSsOEuFhvh3pnLMJFzUNHL8S9C-lg", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676069797531?e=1677240000&v=beta&t=MiZ3zhOzTsP1gBZqD3iFUVmAZxWaIoI5AXx8rAra3VI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEZIlMq-LFElg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7195039509403327323)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7195039509403327323)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "facebook.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jeff Bezos r\u00e9alise \u00e0 son tour son r\u00eave d'espace on facebook.com", + "actionTarget": "https://www.facebook.com/franceinfo/posts/1560952277685784" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\ud83d\ude80 Le milliardaire am\u00e9ricain Jeff Bezos est revenu sur Terre apr\u00e8s avoir atteint l'espace lors du premier vol de sa fus\u00e9e \"New Shepard\"" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jeff Bezos r\u00e9alise \u00e0 son tour son r\u00eave d'espace" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6826551202189201408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 60, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:17778", + "entityUrn": "urn:li:fs_miniCompany:17778", + "name": "Radio France", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1639569033531?e=1684972800&v=beta&t=dnsdsta6kX-gVDlJC9eRWEDQPI0Jxn5gWE4dM7ZbcKs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1639569033531?e=1684972800&v=beta&t=1qpzySL1QVdeSB_rzp7j_dHtg01QiGo4WDyScPNIijg", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1639569033531?e=1684972800&v=beta&t=IMHo2_y5HUX-oy9hlRrSCDYcvG3xY_cyi4LDxQ5Zegg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQFHPczZYC8jTg/company-logo_" + } + }, + "universalName": "radio-france", + "dashCompanyUrn": "urn:li:fsd_company:17778", + "trackingId": "C4/kdNy7Rvug7GGzfVbgdA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Dans cette vid\u00e9o pioch\u00e9e sur sa page Facebook, France Info (Radio France) nous explique que le vol de Bezos est \"sans \u00e9mission de carbone\", parce qu'il utilise de l'hydrog\u00e8ne (liquide) comme carburant. \n\nSi l'on excepte le d\u00e9veloppement et la fabrication du lanceur, la fabrication de l'hydrog\u00e8ne (10 tonnes de CO2 par tonne d'hydrog\u00e8ne) et celle de l'oxyg\u00e8ne liquide, l'acheminement des passagers depuis leur domicile, et encore quelques bricoles, France Info a raison. \n\nMais \u00e0 ce compte l\u00e0, on peut aussi dire qu'une voiture est un mode de transport \u00e9cologique, parce que 95% du temps elle ne roule pas donc n'\u00e9met rien, ou encore que ce n'est pas grave de boire 2 litres de whisky par jour parce que la bouteille est faite en verre recyclable.\n\nCette mani\u00e8re de pr\u00e9senter l'information montre une chose malheureusement courante dans le monde m\u00e9diatique : la grande difficult\u00e9 \u00e0 comprendre ce qu'est un syst\u00e8me, o\u00f9 il est impossible d'avoir un morceau sans avoir le reste. En pareil cas, cela n'a pas de sens de d\u00e9tacher une \u00e9tape pour ne regarder que ses qualit\u00e9s et d\u00e9fauts, sans regarder le processus d'ensemble dont elle d\u00e9pend. \n\nA la d\u00e9charge des journalistes, les entreprises et les politiques leur servent quasi-syst\u00e9matique une information enjoliv\u00e9e parce que partielle. Mais justement, la valeur ajout\u00e9e du m\u00e9tier ne devrait-elle pas \u00eatre la capacit\u00e9 \u00e0 trouver les autres pi\u00e8ces du puzzle pour livrer une image compl\u00e8te ?\n\nEn tous cas, sur ce cas pr\u00e9cis, tout est peut-\u00eatre plus clair, pour faire \u00e9cho au slogan de cette chaine d'info, mais pas plus exact !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6826551202189201408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6826551202881265664,urn:li:activity:6826551202881265664,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 198, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6826551202881265664,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6826551202881265664,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6826551202881265664", + "threadId": "activity:6826551202881265664", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6826551202881265664", + "urn": "urn:li:activity:6826551202881265664", + "numComments": 273, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6826551202881265664", + "reactionTypeCounts": [ + { + "count": 4464, + "reactionType": "LIKE" + }, + { + "count": 373, + "reactionType": "PRAISE" + }, + { + "count": 239, + "reactionType": "MAYBE" + }, + { + "count": 130, + "reactionType": "INTEREST" + }, + { + "count": 57, + "reactionType": "EMPATHY" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6826551202881265664", + "numLikes": 5288, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6826551202881265664", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5288, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6826412334504779776,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6826412334504779776", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6826412334504779776)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6826412334504779776)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-taxonomie-europ%C3%A9enne-pi%C3%A8ce-centrale-activity-6826412334504779776-D1ct?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6826412334014062592", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6826412334504779776", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6826412334504779776,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6826412334504779776,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6826412334014062592", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "aw2oZPYPLHa5kTQhdwXYJw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6826412334504779776,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8355814494475850364", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675690796616?e=1677240000&v=beta&t=czvQw79f9Zvi8NlCljwACExIuLI5u34SaRcPcHKM2qE", + "expiresAt": 1677240000000, + "height": 1066 + }, + { + "width": 600, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675690796616?e=1677240000&v=beta&t=tZCjCsgBUQ0mQeRblHv9uaW3TNi5BH07h7gs1Yf9mbE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675690796616?e=1677240000&v=beta&t=9jgovMZME2MQUpSFcf9qvHU4DzJgE0-GlXb3ezar0YY", + "expiresAt": 1677240000000, + "height": 213 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675690796616?e=1677240000&v=beta&t=s2sVmc72_JOQvetFMeJVF5DcwHuJysB8AHZ5G7ul4as", + "expiresAt": 1677240000000, + "height": 640 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEtz6rsgq1LNA/articleshare-shrink_" + }, + "displayAspectRatio": 1.3325 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8355814494475850364)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8355814494475850364)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La Taxonomie europ\u00e9enne : pi\u00e8ce centrale de la strat\u00e9gie r\u00e9glementaire europ\u00e9enne pour une finance durable | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/analyse-taxonomie-europeenne" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La Taxonomie europ\u00e9enne : pi\u00e8ce centrale de la strat\u00e9gie r\u00e9glementaire europ\u00e9enne pour une finance durable | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6826412334014062592,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 2019, la Commission europ\u00e9enne s'est lanc\u00e9e dans une aventure audacieuse : proposer au monde financier un \"mode d'emploi\" permettant de trier entre activit\u00e9s \"vertes\" et le reste (chantier dit de la \"taxonomie\"). L'id\u00e9e est que les gestionnaires d'actifs et investisseurs privil\u00e9gient de plus en plus le \"vert\" au d\u00e9triment du reste, fournissant alors \u00e0 l'\u00e9conomie des moyens accrus quand les activit\u00e9s sont du bon c\u00f4t\u00e9 de la barri\u00e8re. Evidemment, tout d\u00e9pend de la mani\u00e8re dont on va qualifier le \"vert\", et le r\u00e9sultat sera un gain ou une perte de temps en fonction de ce param\u00e8tre.\n\n2 ans apr\u00e8s, la Commission publie les premiers textes d'application (\"actes d\u00e9l\u00e9gu\u00e9s\") qui pr\u00e9cisent les r\u00e8gles du jeu. Comme il n'est pas sur que vous ayez le temps de lire les quelques dizaines de pages concern\u00e9es, parfois un peu ardues, comme pour tout texte juridique, Carbone 4 vous en propose un d\u00e9cryptage.\n\nNB : Le propos ici n'est pas de discuter de la pertinence de l'approche. C'est juste la description de ce qu'il y a dans la boite !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6826412334014062592,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6826412334504779776,urn:li:activity:6826412334504779776,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 9, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6826412334504779776,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6826412334504779776,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6826412334504779776", + "threadId": "activity:6826412334504779776", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6826412334504779776", + "urn": "urn:li:activity:6826412334504779776", + "numComments": 13, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6826412334504779776", + "reactionTypeCounts": [ + { + "count": 150, + "reactionType": "LIKE" + }, + { + "count": 19, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6826412334504779776", + "numLikes": 188, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6826412334504779776", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 188, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6826073678720057344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6826073678720057344", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6826073678720057344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6826073678720057344)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_40-ans-de-p%C3%A9trole-activity-6826073678720057344-aNn3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6826073678015410177", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6826073678720057344", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6826073678720057344,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6826073678720057344,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6826073678015410177", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "7/nFkC8RVwwoIqfYfHn0YQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6826073678720057344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8661956250828013838", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675807964823?e=1677240000&v=beta&t=PDsyJG6igM31-bQJPbvY19u04JFYFOvG4FhA3-wRAeY", + "expiresAt": 1677240000000, + "height": 520 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675807964824?e=1677240000&v=beta&t=nriaAvbF6zIAlIInmIzqMdoc-ISZiMRLMRBeiq9qzsQ", + "expiresAt": 1677240000000, + "height": 666 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675807964824?e=1677240000&v=beta&t=TBWWg5VXZ8_o_dx1Uzq-0LQCBI7uN2uX6xjAiBKH_Ng", + "expiresAt": 1677240000000, + "height": 104 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675807964824?e=1677240000&v=beta&t=KhutPPnysGtE_n7yGgY3W6deTReGiv4VdawFLrP5SGc", + "expiresAt": 1677240000000, + "height": 312 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGGcpWxRps1sg/articleshare-shrink_" + }, + "displayAspectRatio": 0.65 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8661956250828013838)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8661956250828013838)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: 40 ans de p\u00e9trole by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/articles-de-presse/40-ans-de-petrole" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "40 ans de p\u00e9trole" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6826073678015410177,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si, jeune actif d\u00e9marrant dans la vie, vous savez que l'argent que vous allez gagner d'ici \u00e0 votre retraite repr\u00e9sente \"25 fois les revenus de l'ann\u00e9e derni\u00e8re\", mais que chaque ann\u00e9e votre salaire va baisser de 3% (les deux sont parfaitement compatibles, math\u00e9matiquement), est-ce que vous en d\u00e9duisez que vous \u00eates financi\u00e8rement tranquille pour 25 ans, ou que vous allez avoir des probl\u00e8mes d'ici peu pour boucler les fins de mois ?\n\nCette tribune publi\u00e9e par l'Express il y a une grosse semaine tente d'expliquer pourquoi, en mati\u00e8re de p\u00e9trole, la sale manie qui a \u00e9t\u00e9 prise d'exprimer les r\u00e9serves (la totalit\u00e9 de ce qui pourrait \u00eatre produit) en multiple de la production de l'ann\u00e9e derni\u00e8re nous a donn\u00e9 l'illusion que nous \u00e9tions tranquilles pour une dur\u00e9e \u00e9quivalente, alors que ce n'est pas le cas.\n\nCertes, les d\u00e9clarations politiques expliquant que nous allons nous passer de p\u00e9trole se multiplient ici et l\u00e0. Il n'emp\u00eache, depuis la naissance de la Convention Climat en 1992 \u00e0 Rio, qui nous incitait d\u00e9j\u00e0 \u00e0 \"devenir neutres\", la consommation d'or noir a augment\u00e9 de 30% dans le monde (chute de 2020 incluse). Pour le moment, nous n'avons pas trouv\u00e9 la martingale du sevrage sans r\u00e9cession. Et il n'est pas s\u00fbr qu'\u00e0 l'avenir nous y parvenions si facilement." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6826073678015410177,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6826073678720057344,urn:li:activity:6826073678720057344,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 36, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6826073678720057344,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6826073678720057344,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6826073678720057344", + "threadId": "activity:6826073678720057344", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6826073678720057344", + "urn": "urn:li:activity:6826073678720057344", + "numComments": 84, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6826073678720057344", + "reactionTypeCounts": [ + { + "count": 914, + "reactionType": "LIKE" + }, + { + "count": 121, + "reactionType": "INTEREST" + }, + { + "count": 108, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6826073678720057344", + "numLikes": 1158, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6826073678720057344", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1158, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6825808066101948416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6825808066101948416", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6825808066101948416)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6825808066101948416)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-france-est-en-retard-sur-son-objectif-activity-6825808066101948416-Ba2N?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6825808065493778433", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6825808066101948416", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6825808066101948416,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6825808066101948416,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6825808065493778433", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "x5cmvQsAXwLqngnxckFvyg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6825808066101948416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQE4XgwgFtxiQA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQE4XgwgFtxiQA", + "artifacts": [ + { + "width": 1925, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1627399457408?e=1679529600&v=beta&t=N2sdhLxTksbQGzaOysw6h0r9YxmJqXRUx9kPWc_fL5I", + "expiresAt": 1679529600000, + "height": 948 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1627399458932?e=1679529600&v=beta&t=poCqFgZUbxPVu7XYEjrl4J48lSTuPB5B-IcwVm1uSY0", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1627399458932?e=1679529600&v=beta&t=h6TcOFO5h05lJ8uiZ9QX2fkFjFDIJLwDT9ME6_2_o6g", + "expiresAt": 1679529600000, + "height": 630 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1627399458932?e=1679529600&v=beta&t=3aTIJBc52TSAM7MnJilY9Yeh9HaudpniDvFrs3p4gJc", + "expiresAt": 1679529600000, + "height": 236 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1627399458932?e=1679529600&v=beta&t=1Fd7fu9rv8-IiEVTMkiktES4FmfA_lN23zrQzDqSw9Q", + "expiresAt": 1679529600000, + "height": 79 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1627399458932?e=1679529600&v=beta&t=IsApyRLQCNL9LrHM920_9S1cZv_Xol-CtolNMrQKDPM", + "expiresAt": 1679529600000, + "height": 394 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQE4XgwgFtxiQA/feedshare-shrink_" + }, + "displayAspectRatio": 0.49246753246753244 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6825808065493778433,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La France est en retard sur son objectif en mati\u00e8re d'ENR, entend-on souvent dire. Mais quand il s'agit de lutter contre le changement climatique, le bon \u00e9talon est la part d'\u00e9nergies d\u00e9carbon\u00e9es dans le total utilis\u00e9 dans le pays (et pas juste pour l'\u00e9lectricit\u00e9 \u00e9videmment).\n\nLe graphique ci-dessous, r\u00e9alis\u00e9 avec les donn\u00e9es 2020 issues de BP Statistical Review, donne le classement mondial des pays en fonction de la part d\u00e9carbon\u00e9e de leur consommation d'\u00e9nergie primaire. Certes la convention pour l'\u00e9lectricit\u00e9 d\u00e9carbon\u00e9e est toujours discutable, mais ci-dessous c'est l'\u00e9quivalent primaire pour tout le monde, et donc elle favorise de la m\u00eame mani\u00e8re le nucl\u00e9aire que l'hydro ou l'\u00e9olien.\n\nLe gagnant mondial de la d\u00e9carbonation domestique est la Norv\u00e8ge... qui perdrait pourtant haut la main si on lui imputait le p\u00e9trole qu'elle vend aux autres ! \n\nEn Europe, les 5 premiers du classement ont tous du nucl\u00e9aire dans leur mix. Le Danemark, \"champion de l'\u00e9olien\", arrive 20 points derri\u00e8re notre pays, et l'Allemagne est plus loin encore. \n\nSuggestion pour nos amis journalistes : vous devriez regarder deux choses et deux choses seulement. La quantit\u00e9 de combustibles fossiles utilis\u00e9s en valeur absolue, et la part de d\u00e9carbon\u00e9 dans le mix, toutes sources confondues. Se focaliser sur les ENR dans l'\u00e9lectricit\u00e9 est \u00e0 l'\u00e9vidence une vue trop partielle pour conduire \u00e0 des conclusions pertinentes." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6825808065493778433,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6825808066101948416,urn:li:activity:6825808066101948416,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 90, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6825808066101948416,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6825808066101948416,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6825808066101948416", + "threadId": "activity:6825808066101948416", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6825808066101948416", + "urn": "urn:li:activity:6825808066101948416", + "numComments": 158, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6825808066101948416", + "reactionTypeCounts": [ + { + "count": 2189, + "reactionType": "LIKE" + }, + { + "count": 203, + "reactionType": "INTEREST" + }, + { + "count": 151, + "reactionType": "MAYBE" + }, + { + "count": 53, + "reactionType": "PRAISE" + }, + { + "count": 16, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6825808066101948416", + "numLikes": 2622, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6825808066101948416", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2622, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6825359102986727424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6825359102986727424", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6825359102986727424)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6825359102986727424)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-records-de-chaleur-signifient-quil-faut-activity-6825359102986727424-uh-2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6825359102349217792", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6825359102986727424", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6825359102986727424,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6825359102986727424,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6825359102349217792", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "hHpL4BL/HduPkwrBxN4sug==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6825359102986727424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7325567385802837937", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675890144833?e=1677240000&v=beta&t=OXofn1TTU4Fd2mQkcsotP1kTZ6s-qwaL2iU90AtVhyw", + "expiresAt": 1677240000000, + "height": 394 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675890144833?e=1677240000&v=beta&t=nJCqJW7VQOsAcNbL6iOiwF-ezGY9lgLnNKGAwCTWko8", + "expiresAt": 1677240000000, + "height": 631 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675890144834?e=1677240000&v=beta&t=KH3EHzTreA4vOGuM5UyflYOpumSpOMBPOaF1BGNOzuM", + "expiresAt": 1677240000000, + "height": 79 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675890144834?e=1677240000&v=beta&t=c4_MNfzHGI-RIX6KIyX62YsukA-sbYiaRltHRgjY3oc", + "expiresAt": 1677240000000, + "height": 236 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHbid4Ngv3YtA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7325567385802837937)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7325567385802837937)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theconversation.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les records de chaleur signifient qu\u2019il faut changer le discours sur l\u2019urgence climatique by theconversation.com", + "actionTarget": "https://theconversation.com/les-records-de-chaleur-signifient-quil-faut-changer-le-discours-sur-lurgence-climatique-163960" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les records de chaleur signifient qu\u2019il faut changer le discours sur l\u2019urgence climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6825359102349217792,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Faire peur ne pousse pas les gens \u00e0 l'action. C'est la th\u00e8se d\u00e9fendue dans cet article par un doctorant en communication, qui soutient que ce qui nous fait bouger est l'exemple. \n\nDe ma propre exp\u00e9rience, il n'a pas tort... mais pas compl\u00e8tement raison non plus. Disons que faire peur n'est pas suffisant. Si l'on prend l'exemple du tabac, le discours sur les dangers pour la sant\u00e9 ne sont pas suffisants pour emp\u00eacher les jeunes de se mettre \u00e0 fumer. \n\nPar contre ils sont n\u00e9cessaires pour que se cr\u00e9ent des entit\u00e9s qui vont essayer d'agir sur le terrain, pr\u00e9cis\u00e9ment pour aider les jeunes \u00e0 ne pas s'y mettre et ceux qui ont franchi le pas \u00e0 faire machine arri\u00e8re.\n\nIl est clair qu'il en ira de m\u00eame pour le climat : la peur du risque est \u00e0 l'\u00e9vidence insuffisante pour enclencher l'action, mais n\u00e9anmoins n\u00e9cessaire pour que se cr\u00e9ent des entit\u00e9s (dont Carbone 4 et The Shift Project essaient modestement de faire partie) qui vont essayer d'aider, par l'exemple et la suggestion d'actions, des individus - pris dans leur sph\u00e8re personnelle, ou dans leur champ professionnel - \u00e0 changer de comportement.\n\nEn effet, ce changement n'existe que si nous imaginons une alternative, et nombre d'entre nous n'avons pas le temps ou pas l'audace pour y arriver avec nos propres moyens. \n\nIl serait donc utile que la couverture m\u00e9diatique sur les actions utiles augmente, et augmente sans fake news, qui restent malheureusement tr\u00e8s nombreuses avec le greenwashing \u00e0 gogo - que la r\u00e9cente loi climat vient d'officialiser pour partie - et la d\u00e9magogie qui remplace trop souvent la p\u00e9dagogie. \n\nMais la couverture m\u00e9diatique sur la compr\u00e9hension du processus - et ses liens avec les actions consid\u00e9r\u00e9es comme \"normales\" dans notre monde industrialis\u00e9 - doit aussi augmenter. Quel serait le bon niveau ? Vus les dangers pour l'humanit\u00e9 venant des probl\u00e8mes d'environnement global (climat, biodiversit\u00e9, \u00e9rosion des sols, d\u00e9pl\u00e9tion des mati\u00e8res premi\u00e8res, etc), disons que si on veut une population \u00e9clair\u00e9e, la m\u00eame couverture que pour le covid serait appropri\u00e9e ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6825359102349217792,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6825359102986727424,urn:li:activity:6825359102986727424,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 154, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6825359102986727424,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6825359102986727424,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6825359102986727424", + "threadId": "activity:6825359102986727424", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6825359102986727424", + "urn": "urn:li:activity:6825359102986727424", + "numComments": 215, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6825359102986727424", + "reactionTypeCounts": [ + { + "count": 1923, + "reactionType": "LIKE" + }, + { + "count": 128, + "reactionType": "INTEREST" + }, + { + "count": 126, + "reactionType": "MAYBE" + }, + { + "count": 45, + "reactionType": "PRAISE" + }, + { + "count": 29, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6825359102986727424", + "numLikes": 2263, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6825359102986727424", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2263, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6825111864205180928,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6825111864205180928", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6825111864205180928)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6825111864205180928)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-2020-ann%C3%A9e-du-covid-enfin-premi%C3%A8re-ann%C3%A9e-activity-6825111864205180928-rMfN?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6825111863722835968", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6825111864205180928", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6825111864205180928,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6825111864205180928,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6825111863722835968", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "n22DhcVI3I+lWRuFzGw3Mg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6825111864205180928,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEQSul37hHRpA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEQSul37hHRpA", + "artifacts": [ + { + "width": 737, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1627233471507?e=1679529600&v=beta&t=e7E5SFKNbqFB07ZJQpfv2CDgNu7od4lvBpEoRDUCJ5I", + "expiresAt": 1679529600000, + "height": 457 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1627233471828?e=1679529600&v=beta&t=fVFccz_fSJLPPMvvAELL8_T3FHEwDs4HuergeOW_ldE", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 737, + "fileIdentifyingUrlPathSegment": "1280/0/1627233471828?e=1679529600&v=beta&t=9000P4hNhSmAFlIIxqNt8372rO6k3vu0z2W9qpUFjrQ", + "expiresAt": 1679529600000, + "height": 457 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1627233471828?e=1679529600&v=beta&t=QhhcBf5NpDaH20KNPPGutPBN3lUxZxZZ6irTGh5eigE", + "expiresAt": 1679529600000, + "height": 298 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1627233471828?e=1679529600&v=beta&t=NVIbIlOVl8fG5ruGRPBMiI98skrxyBbe3CRyaRfCPVk", + "expiresAt": 1679529600000, + "height": 99 + }, + { + "width": 737, + "fileIdentifyingUrlPathSegment": "800/0/1627233471828?e=1679529600&v=beta&t=W6O4WEGMI2iXWwi3SzROWyVZOyQbrC7eprMA7Y-78W4", + "expiresAt": 1679529600000, + "height": 457 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEQSul37hHRpA/feedshare-shrink_" + }, + "displayAspectRatio": 0.6200814111261872 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6825111863722835968,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 2020, ann\u00e9e du covid (enfin premi\u00e8re ann\u00e9e du covid devrait-on dire), la consommation mondiale de charbon a baiss\u00e9 de 4%. Mais ce ne fut pas le cas en Chine, qui a augment\u00e9 son utilisation de ce combustible de 0,6%. Du coup, la Chine a utilis\u00e9 l'ann\u00e9e derni\u00e8re 55% du charbon mondial.\n\nLe deuxi\u00e8me utilisateur de houille au monde, l'Inde, avec 12% du total mondial, a par contre baiss\u00e9 sa consommation. Le 3\u00e8, qui est les USA, a lui aussi baiss\u00e9, et m\u00eame divis\u00e9 sa consommation par plus de 2 depuis 2008 (remplac\u00e9 par, dans l'ordre, le gaz, l'\u00e9olien et le solaire).\n\nLe charbon est donc de plus en plus une affaire chinoise...\n\nDonn\u00e9es BP Statistical Review 2021" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6825111863722835968,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6825111864205180928,urn:li:activity:6825111864205180928,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6825111864205180928,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6825111864205180928,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6825111864205180928", + "threadId": "activity:6825111864205180928", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6825111864205180928", + "urn": "urn:li:activity:6825111864205180928", + "numComments": 53, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6825111864205180928", + "reactionTypeCounts": [ + { + "count": 365, + "reactionType": "LIKE" + }, + { + "count": 82, + "reactionType": "INTEREST" + }, + { + "count": 68, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6825111864205180928", + "numLikes": 518, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6825111864205180928", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 518, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6824612690909007872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6824612690909007872", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6824612690909007872)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6824612690909007872)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nucl%C3%A9aire-la-chine-lanc%C3%A9e-%C3%A0-toute-vitesse-activity-6824612690909007872-C8by?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6824612688694411264", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6824612690909007872", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6824612690909007872,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6824612690909007872,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6824612688694411264", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "llcJPNS/53J/0Pu4669J4g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6824612690909007872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8934517476414348522", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675695360005?e=1677240000&v=beta&t=eGdWt1GkUjMqSoPj4BdfF_q71ymhid5JQfFkb-WSeaY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675695360005?e=1677240000&v=beta&t=VmZ_EMzXLY4D2QnzA_L-Pw4enHVYRtFZFc9iceMPwoI", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675695360005?e=1677240000&v=beta&t=5UJm6FaGLMn0T8OJ0K1E5WK-UBw27g0JZ3S3ZslReRQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675695360005?e=1677240000&v=beta&t=9URVxrKy2CTAh3mIqAixR12ONaMYqZ6IGm1csGEsZKk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHWmcYH21Bd4g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8934517476414348522)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8934517476414348522)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nucl\u00e9aire : la Chine lanc\u00e9e \u00e0 toute vitesse dans la course technologique by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/energie-environnement/nucleaire-la-chine-lancee-a-toute-vitesse-dans-la-course-technologique-1334216" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nucl\u00e9aire\u00a0: la Chine lanc\u00e9e \u00e0 toute vitesse dans la course technologique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6824612688694411264,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans une intervention r\u00e9alis\u00e9e en 2016 pour le compte de l'Institut National des Sciences et Techniques Nucl\u00e9aires (https://lnkd.in/dqQWBfC ) j'avais indiqu\u00e9 (\u00e0 1h33') que, tant qu'il existerait une humanit\u00e9 \"industrialis\u00e9e\", il y aurait du nucl\u00e9aire, et que la seule question \u00e9tait de savoir si il serait fran\u00e7ais en France, chinois en France, ou chinois en Chine.\n\nEn ce qui concerne le nucl\u00e9aire de 4\u00e8 g\u00e9n\u00e9ration, le seul qui puisse devenir vraiment \"durable\" (en exploitant tout l'uranium et pas juste son isotope 235, qui en repr\u00e9sente 0,7%, ou le thorium, plus abondant que l'uranium), c'est bien parti pour que ce soit l'une des deux derni\u00e8res options qui se r\u00e9alise.\n\nLes deux pays qui aujourd'hui avancent le plus vite sur ce nucl\u00e9aire sont la Chine et la Russie, deux pays avec un \u00e9tat fort et constant sur ce sujet (on peut regretter pour d'autres aspects que ce soit un \u00e9tat fort, \u00e0 ce stade ce n'est pas un jugement de valeur, mais une observation).\n\nIncidemment, si le nucl\u00e9aire mondial avait \u00e9t\u00e9 soutenu depuis 20 ans avec la m\u00eame quantit\u00e9 d'argent (des milliers de milliards de dollars) que \u00e9olien et solaire, il est probable que nous ne serions pas loin de pouvoir d\u00e9ployer rapidement des r\u00e9acteurs de 4\u00e8 g\u00e9n\u00e9ration pour remplacer le charbon puis le gaz (car le but du jeu est bien de remplacer le charbon puis le gaz).\n\nNous avons pr\u00e9f\u00e9r\u00e9 parier sur des dispositifs exploitant des sources d'\u00e9nergie diffuses et non pilotables (vent et soleil), dont incidemment la Chine est aussi notre premier (voire quasi-unique pour le solaire) fournisseur, en laissant gentiment la voie libre \u00e0 l'Empire du milieu et aux russes. Esp\u00e9rons que le moment venu ils accepteront de nous en faire un peu profiter sans demander de contreparties trop m\u00e9chantes..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6824612688694411264,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6824612690909007872,urn:li:activity:6824612690909007872,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 78, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6824612690909007872,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6824612690909007872,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6824612690909007872", + "threadId": "activity:6824612690909007872", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6824612690909007872", + "urn": "urn:li:activity:6824612690909007872", + "numComments": 166, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6824612690909007872", + "reactionTypeCounts": [ + { + "count": 1821, + "reactionType": "LIKE" + }, + { + "count": 226, + "reactionType": "MAYBE" + }, + { + "count": 222, + "reactionType": "INTEREST" + }, + { + "count": 46, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "EMPATHY" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6824612690909007872", + "numLikes": 2331, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6824612690909007872", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2331, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6824609739482120192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1024481", + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "C0K8aba5QzK8d0YRJwDHVg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "C0K8aba5QzK8d0YRJwDHVg==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Carbone 4", + "actionTarget": "https://www.linkedin.com/company/carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1024481" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "118,673 followers" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6824326437911187456,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6824326437911187456", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6824326437911187456)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6824326437911187456)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/carbone-4_carbone-4-recrute-afin-derenforcer-activity-6824326437911187456-KpoI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6824326437659533312", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1024481", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6824326437911187456,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6824326437911187456,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6824326437659533312", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "gBIRJdcHgj4oPEFhvaL0cA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6824326437911187456,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9005494157740883524", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1627046098721?e=1679529600&v=beta&t=f_MXUU0221-ZAnQDe9y-vvYR7KRLZmk7bqUx45zUyjU", + "expiresAt": 1679529600000, + "height": 1071 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1627046098701?e=1679529600&v=beta&t=GW2_4OaADrxO3FoPycG-E77Rw68CIn-uZfD9sHh92JA", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1627046098701?e=1679529600&v=beta&t=4D8ZCdqmKZKfJwGf2dzviBdonCfQKxRpRYVck6kdedQ", + "expiresAt": 1679529600000, + "height": 669 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1627046098701?e=1679529600&v=beta&t=tS3bmhtnOlZgKOuHb5tGdEjBIFuosSv7Ppg2IG03R0w", + "expiresAt": 1679529600000, + "height": 251 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1627046098701?e=1679529600&v=beta&t=B6uLO8Tf-ILnn9ZrmGQ9MNEeZtPdjOr-hjCNpPcxwCk", + "expiresAt": 1679529600000, + "height": 83 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1627046098701?e=1679529600&v=beta&t=tBNtI17S5zGCS2T6_BA2sx91TAOp5ERjjw8Kvi7A2r8", + "expiresAt": 1679529600000, + "height": 418 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D22AQGhKOiU9bhqyg/feedshare-shrink_" + }, + "displayAspectRatio": 0.52294921875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9005494157740883524)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9005494157740883524)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Web Link by carbone4.com", + "actionTarget": "https://www.carbone4.com/offre-consultant-e-senior-resilience-adaptation" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "USER_LOCALE", + "text": "Web Link" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6824326437659533312,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\ud83d\udce3 Carbone 4 recrute !\n\nAfin de\u00a0renforcer son \u00e9quipe du P\u00f4le R\u00e9silience & Adaptation, Carbone 4 recrute un\u00b7e consultant\u00b7e senior justifiant d\u2019exp\u00e9riences pass\u00e9es dans le conseil et/ou sur la th\u00e9matique de l\u2019adaptation pour venir en appui des Responsables du P\u00f4le.\n\nD\u00e9couvrez l'offre \u2935\ufe0f" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6824326437659533312,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6824326437911187456,urn:li:activity:6824326437911187456,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 1, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6824326437911187456,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6824326437911187456,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6824326437911187456", + "threadId": "activity:6824326437911187456", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6824326437911187456", + "urn": "urn:li:activity:6824326437911187456", + "numComments": 1, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6824326437911187456", + "reactionTypeCounts": [ + { + "count": 46, + "reactionType": "LIKE" + }, + { + "count": 1, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6824326437911187456", + "numLikes": 48, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6824326437911187456", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6824609739482120192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6824609739482120192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6824609739482120192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carbone-4-recrute-afin-derenforcer-activity-6824609739482120192-X_4u?utm_source=share&utm_medium=member_desktop" + }, + { + "subActionsMenu": { + "title": "Who would you like to unfollow?", + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + } + ] + }, + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_ACTIONS", + "text": "Unfollow" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6824609739159150592", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6824609739482120192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6824609739482120192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6824609739482120192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6824609739159150592", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "gBIRJdcHgj4oPEFhvaL0cA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6824609739482120192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6824609739159150592,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Malheureusement, accord de Paris ou pas, la d\u00e9rive climatique va s'intensifier d'ici \u00e0 ce que la totalit\u00e9 des lecteurs de ce post passent de vie \u00e0 tr\u00e9pas.\n\nIl va donc falloir se pr\u00e9occuper de plus en plus de \"r\u00e9silience et adaptation\". A sa modeste \u00e9chelle, Carbone 4 entend pousser dans cette direction, apr\u00e8s la mise au point d'une m\u00e9thode (OCARA) permettant d'approcher le probl\u00e8me de mani\u00e8re syst\u00e9mique. Pour \u00e9toffer l'\u00e9quipe qui s'en occupe, nous recherchons un consultant senior ; tous d\u00e9tails ci-dessous !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6824609739159150592,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6824609739482120192,urn:li:activity:6824609739482120192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 14, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6824609739482120192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6824609739482120192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6824609739482120192", + "threadId": "activity:6824609739482120192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6824609739482120192", + "urn": "urn:li:activity:6824609739482120192", + "numComments": 24, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6824609739482120192", + "reactionTypeCounts": [ + { + "count": 158, + "reactionType": "LIKE" + }, + { + "count": 7, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6824609739482120192", + "numLikes": 165, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6824609739482120192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 165, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6824247648233504768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6824247648233504768", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6824247648233504768)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6824247648233504768)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_comment-le-r%C3%A9chauffement-climatique-va-bouleverser-activity-6824247648233504768-UV25?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6824247647713427457", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6824247648233504768", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6824247648233504768,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6824247648233504768,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6824247647713427457", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "QddnWYyy7eYkFVbNK2fOhw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6824247648233504768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8203017021671150334", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676536300142?e=1677240000&v=beta&t=3Mjhv6NvfTgfSc7Wx5JCzM3ElwWffVvbHxGX7cZjNAE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676536300142?e=1677240000&v=beta&t=kDR2b6_JXwS65aY3G5vCCj97Gn2PTS619h74RzQj-f0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676536300142?e=1677240000&v=beta&t=2NPVoG_UBvtGtg-91UWTNqpRGw2ua611NcYOvZz998A", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676536300142?e=1677240000&v=beta&t=lklM5XxjjUWjs-0U5kbM4x-mdA-EoTQv0gERpFuON7g", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQELF2USbJdhbw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8203017021671150334)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8203017021671150334)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Comment le r\u00e9chauffement climatique va bouleverser le transport a\u00e9rien by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/tourisme-transport/comment-le-rechauffement-climatique-va-bouleverser-le-transport-aerien-1333632#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Comment le r\u00e9chauffement climatique va bouleverser le transport a\u00e9rien" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6824247647713427457,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le transport a\u00e9rien et le climat est souvent vu comme une histoire avec un seul lien de causalit\u00e9 : les avions \u00e9mettent des gaz \u00e0 effet de serre, et donc il faut limiter leur nombre si nous voulons limiter les \u00e9missions, sachant que la diffusion des novations techniques ne peut pas aller au bon rythme pour assurer une baisse de 5% par an des \u00e9missions en valeur absolue (rythme demand\u00e9 pour respecter la limite des 2\u00b0C, augmentation pour laquelle il est n\u00e9anmoins possible que des \u00e9v\u00e9nements comme celui r\u00e9cemment survenu au Canada se reproduisent tous les 5 \u00e0 10 ans : https://lnkd.in/d7gTwYv ).\n\nMais l'histoire va aussi dans l'autre sens : comme pour toutes les activit\u00e9s humaines, la d\u00e9rive climatique va impacter le secteur a\u00e9rien. Quelques exemples :\n- un air plus chaud est moins dense : \u00e0 longueur de piste donn\u00e9e, un avion devra \u00eatre plus l\u00e9ger au d\u00e9collage, et donc embarquer moins de charge (ce qui incidemment augmente la quantit\u00e9 de carburant par passager !)\n- la convection de l'air s'intensifie et fait remonter les turbulences au niveau des altitudes de croisi\u00e8re, augmentant le risque d'accident, m\u00eame s'il reste faible,\n- beaucoup d'a\u00e9roports sont situ\u00e9s pr\u00e8s du trait de c\u00f4te, et pourront donc faire l'objet de submersions marines\n- certaines destinations touristiques deviendront moins pris\u00e9es parce que les conditions climatiques locales deviendront trop d\u00e9sagr\u00e9ables...\n\nC'est une illustration de plus que le \"toujours plus\" ne d\u00e9pend pas que de notre volont\u00e9. La reconversion partielle de Toulouse sera un d\u00e9fi, dans tous les cas de figure. Le plus t\u00f4t on s'y attaque, le mieux ce sera sur le plan social ; c'est ce qui figurait explicitement dans le rapport \"Voler en 2050\" publi\u00e9 par The Shift Project/Supaero Decarbo en mars dernier : https://lnkd.in/d3h_4QA" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6824247647713427457,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6824247648233504768,urn:li:activity:6824247648233504768,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 57, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6824247648233504768,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6824247648233504768,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6824247648233504768", + "threadId": "activity:6824247648233504768", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6824247648233504768", + "urn": "urn:li:activity:6824247648233504768", + "numComments": 202, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6824247648233504768", + "reactionTypeCounts": [ + { + "count": 762, + "reactionType": "LIKE" + }, + { + "count": 113, + "reactionType": "MAYBE" + }, + { + "count": 113, + "reactionType": "INTEREST" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6824247648233504768", + "numLikes": 1005, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6824247648233504768", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1005, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6823933589776822272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6823933589776822272", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6823933589776822272)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6823933589776822272)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_western-north-american-extreme-heat-virtually-activity-6823933589776822272-fHoe?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6823933588891820032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6823933589776822272", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6823933589776822272,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6823933589776822272,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6823933588891820032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "lZz5Q+Qi6+ojnTcylgZNyw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6823933589776822272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7382708281969375383", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676325579764?e=1677240000&v=beta&t=dJrTYhiqMXqEGRUpJjrkqBbEQ6inmZ5iEdlVATeY5UM", + "expiresAt": 1677240000000, + "height": 266 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676325579764?e=1677240000&v=beta&t=unFi0ONeRqFCJvx7QODfE6YpN4fP-RyK0uooVnAxwEA", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676325579765?e=1677240000&v=beta&t=LXabqj9TrkqcBerOLKJEBCOAIQHzsuqoO9XVTDnKdBY", + "expiresAt": 1677240000000, + "height": 53 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676325579765?e=1677240000&v=beta&t=nORgahTlTO-tZDEtKQ68Fyy9lQKPzF8QUeBCk0l8tVw", + "expiresAt": 1677240000000, + "height": 160 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEJ2V_Wn5-VkA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7382708281969375383)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7382708281969375383)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "worldweatherattribution.org \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Western North American extreme heat virtually impossible without human-caused climate change by worldweatherattribution.org", + "actionTarget": "https://www.worldweatherattribution.org/western-north-american-extreme-heat-virtually-impossible-without-human-caused-climate-change/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Western North American extreme heat virtually impossible without human-caused climate change" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6823933588891820032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le \"World Weather Attribution Initiative\" a \u00e9t\u00e9 cr\u00e9\u00e9, en 2014, par des scientifiques du climat d'Oxford (Grande Bretagne), KNMI (Pays-Bas), IPSL/LSCE (France), Princeton & NCAR (Etats Unis), ETH Zurich (Suisse), IIT Delhi (Inde) et des sp\u00e9cialistes des impacts du Red Cross / Red Crescent Climate Centre (RCCC), pour pouvoir fournir aux media un avis rapide sur le lien possible entre un \u00e9v\u00e9nement extr\u00eame et le changement climatique.\n\nEn effet, \u00e0 chaque fois que surviennent une inondation ou une vague de chaleur, un ouragan ou m\u00eame une temp\u00eate de neige, la question est imm\u00e9diatement pos\u00e9e de savoir si cet \u00e9v\u00e9nement aurait eu lieu dans un climat non modifi\u00e9, et les scientifiques ont consid\u00e9r\u00e9 qu'il \u00e9tait pertinent de pouvoir fournir rapidement un avis.\n\nLa m\u00e9thode employ\u00e9e par ce groupe de scientifiques repose essentiellement sur la fr\u00e9quence compar\u00e9e de l'\u00e9v\u00e9nement extr\u00eame qui vient de survenir avec le climat que nous avons modifi\u00e9 et avec un climat qui ne l'aurait pas \u00e9t\u00e9 par les \u00e9missions humaines.\n\nPour la vague de chaleur qui vient de frapper le Canada, la r\u00e9ponse est tr\u00e8s claire : il aurait \u00e9t\u00e9 \"virtuellement impossible\" qu'une telle vague de chaleur survienne avec un climat non \"d\u00e9form\u00e9\" par nos \u00e9missions.\n\nEt, dans un monde r\u00e9chauff\u00e9 de 2\u00b0C par rapport \u00e0 la p\u00e9riode pr\u00e9-industrielle, ce genre d'\u00e9v\u00e9nement pourrait survenir tous les 5 \u00e0 10 ans. Les scientifiques se posent en outre la question de savoir si l'\u00e9volution climatique ne vient pas de franchir un seuil, avec apparition de \"non lin\u00e9arit\u00e9s\" qui n'existaient pas avant, et donc un risque encore plus \u00e9lev\u00e9 que ce que les mod\u00e8les simulent.\n\nEn effet, il faut rappeler une chose : une grande incertitude n'est pas une incitation \u00e0 l'inaction \"parce qu'on ne sait pas bien et donc ce n'est pas utile de s'affoler\". C'est aussi l'impossibilit\u00e9 de mettre une borne sup\u00e9rieure aux dommages possibles, et donc un grand risque. Nous commen\u00e7ons \u00e0 le constater \u00e0 nos d\u00e9pends." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6823933588891820032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6823933589776822272,urn:li:activity:6823933589776822272,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 14, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6823933589776822272,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6823933589776822272,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6823933589776822272", + "threadId": "activity:6823933589776822272", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6823933589776822272", + "urn": "urn:li:activity:6823933589776822272", + "numComments": 22, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6823933589776822272", + "reactionTypeCounts": [ + { + "count": 283, + "reactionType": "LIKE" + }, + { + "count": 36, + "reactionType": "INTEREST" + }, + { + "count": 30, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6823933589776822272", + "numLikes": 362, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6823933589776822272", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 362, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6823664808928276481,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6823664808928276481", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6823664808928276481)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6823664808928276481)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_tout-nest-pas-rose-dans-la-loi-climat-qui-activity-6823664808928276481-9OBY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6823664808320094208", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6823664808928276481", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6823664808928276481,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6823664808928276481,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6823664808320094208", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "MkzF0Ydu9VvEzDlQFBY4pQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6823664808928276481,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6823664808320094208,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tout n'est pas rose dans la loi climat qui vient d'\u00eatre vot\u00e9e (https://lnkd.in/dapXk4w ). En particulier, la commission mixte paritaire a restaur\u00e9 le \"permis de greenwasher\" que les s\u00e9nateurs avaient supprim\u00e9.\n\nLe texte du S\u00e9nat comportait en effet cette disposition :\n\n\u00ab\u00a0\u00ab Art. L. 229\u201165. \u2013 Il est interdit de faire figurer sur un produit, sur son emballage, ainsi que dans une publicit\u00e9 faisant la promotion d\u2019un produit ou d\u2019un service, toute formulation visant \u00e0 indiquer que le produit, le service ou l\u2019activit\u00e9 du fabricant est neutre en carbone ou d\u00e9pourvu de cons\u00e9quence n\u00e9gative sur le climat, \u00e0 l\u2019exception des formulations s\u2019appuyant sur des certifications fond\u00e9es sur des normes et standards reconnus aux niveaux fran\u00e7ais, europ\u00e9en et international. \u00bb\n\nApr\u00e8s la commission mixte paritaire, on trouve :\n\n\u00ab Il est interdit d\u2019affirmer dans une publicit\u00e9 qu\u2019un produit ou un service est neutre en carbone, ou d\u2019employer toute formulation de signification ou de port\u00e9e \u00e9quivalente, \u00e0 moins que l\u2019annonceur rende ais\u00e9ment disponible au public les \u00e9l\u00e9ments suivants :\n \n \u00ab 1\u00b0 Un bilan d\u2019\u00e9missions de gaz \u00e0 effet de serre int\u00e9grant les \u00e9missions directes et indirectes du produit ou service ;\n \n \u00ab 2\u00b0 La d\u00e9marche gr\u00e2ce \u00e0 laquelle les \u00e9missions de gaz \u00e0 effet de serre du produit ou service sont prioritairement \u00e9vit\u00e9es, puis r\u00e9duites et enfin compens\u00e9es. La trajectoire de r\u00e9duction des \u00e9missions de gaz \u00e0 effet de serre est d\u00e9crite \u00e0 l\u2019aide d\u2019objectifs de progr\u00e8s annuels quantifi\u00e9s ;\n \n \u00ab 3\u00b0 Les modalit\u00e9s de compensation des \u00e9missions de gaz \u00e0 effet de serre r\u00e9siduelles respectant des standards minimums d\u00e9finis par d\u00e9cret.\n\nDit autrement, si une entreprise d\u00e9clare avoir \"compens\u00e9\", elle peut affirmer que du carburant routier, un h\u00e9bergement cloud, un paquet de filets de poisson surgel\u00e9s, un camion, ou un vol en avion sont \"neutres en carbone\", alors que la science dit explicitement que la neutralit\u00e9 ne peut pas exister au niveau d'une entreprise, et a fortiori d'un produit.\n\nIl serait int\u00e9ressant de savoir quel a \u00e9t\u00e9 le lobby \u00e0 l'oeuvre derri\u00e8re cette marche arri\u00e8re toute des parlementaires (car ils n'ont pas d\u00e9cid\u00e9 cela de leur propre initiative, c'est \u00e9vident !)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6823664808320094208,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6823664808928276481,urn:li:activity:6823664808928276481,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 57, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6823664808928276481,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6823664808928276481,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6823664808928276481", + "threadId": "activity:6823664808928276481", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6823664808928276481", + "urn": "urn:li:activity:6823664808928276481", + "numComments": 105, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6823664808928276481", + "reactionTypeCounts": [ + { + "count": 1300, + "reactionType": "LIKE" + }, + { + "count": 231, + "reactionType": "MAYBE" + }, + { + "count": 210, + "reactionType": "INTEREST" + }, + { + "count": 24, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6823664808928276481", + "numLikes": 1783, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6823664808928276481", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1783, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6823537080572903424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6823537080572903424", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6823537080572903424)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6823537080572903424)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_dans-le-paquet-de-mesures-que-la-commission-activity-6823537080572903424-b7QO?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6823537079952146432", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6823537080572903424", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6823537080572903424,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6823537080572903424,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6823537079952146432", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "gtw77OBKIGIZqZ1Tg945Mw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6823537080572903424,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQG71F2q9j9a8A", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQG71F2q9j9a8A", + "artifacts": [ + { + "width": 1678, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1626858013121?e=1679529600&v=beta&t=tXsMU7AOqD4pRsYLQXw1VK0CS-sxZVYzmoFSa02fFUI", + "expiresAt": 1679529600000, + "height": 788 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1626858014679?e=1679529600&v=beta&t=y1-iF6rutdFKeR__H2E1jp1ZFvBVQpIFcVUdEbuBB_A", + "expiresAt": 1679529600000, + "height": 9 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1626858014679?e=1679529600&v=beta&t=2mVIz-OzHFnY2v4qN4N1wlGNxl1PTxZ-cTguix3Yycs", + "expiresAt": 1679529600000, + "height": 601 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1626858014679?e=1679529600&v=beta&t=oPiJ8w0jdCsJqcX9FaR8Jy4iAMkyvMoEgKQ48j2npzs", + "expiresAt": 1679529600000, + "height": 225 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1626858014679?e=1679529600&v=beta&t=cLqRZ-FsfDTR-Z5dVMMyGQMTVDQbV2lptfP8Dg2TkCA", + "expiresAt": 1679529600000, + "height": 75 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1626858014679?e=1679529600&v=beta&t=PRBKNiZOLw4gmq87uTiCYF78if161CC2EzGvPyNuSkY", + "expiresAt": 1679529600000, + "height": 376 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQG71F2q9j9a8A/feedshare-shrink_" + }, + "displayAspectRatio": 0.4696066746126341 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6823537079952146432,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans le paquet de mesures que la Commission vient de pr\u00e9senter pour permettre \u00e0 l'Europe de s'aligner avec les engagements pris dans l'accord de Paris, il y a une strat\u00e9gie foresti\u00e8re, qui a \u00e9t\u00e9 r\u00e9sum\u00e9e en \"planter 3 milliards d'arbres\" : https://lnkd.in/deWMC2i\n\nCette strat\u00e9gie vise \u00e0 augmenter les puits de carbone : un arbre mature absorbe environ 20 kg de CO2 par an, et donc 3 milliards d'arbres absorberaient \u00e0 terme 60 millions de tonnes de CO2 par an (les \u00e9missions europ\u00e9ennes de CO2 pr\u00e9-covid \u00e9taient de 3500 millions de tonnes par an ; les puits c'est donc indispensable, mais pas suffisant !).\n\nEn fait, compte tenu d'un taux de survie des plants qui va de 13% \u00e0 55%, il faudrait en planter plut\u00f4t 10 milliards. Par ailleurs :\n\n- quelles esp\u00e8ces planter, sachant qu'en 2070 le climat ne permettra pas la survie de toutes les esp\u00e8ces install\u00e9es actuellement ? La moiti\u00e9 des for\u00eats europ\u00e9ennes pourraient ne plus \"accepter\" que du ch\u00eane vert, selon un article de Nature de 2013 (https://lnkd.in/dKcCNpH ), ce qui signifie que les autres esp\u00e8ces mourront de chaud et de soif... et que se pose aussi la question de la gestion des for\u00eats existantes (le puits associ\u00e9 risque de baisser bien plus vite qu'on ne le pense si on regarde ce qui se passe actuellement en Amazonie : https://lnkd.in/dXUEQFB )\n\n- o\u00f9 les planter ? On peut viser les surfaces agricoles en d\u00e9prise, les espaces urbains et p\u00e9riurbains (rien que l\u00e0 on peut en mettre 2 milliards dit la Commission, et les avantages associ\u00e9s sont nombreux), les bords d'infrastructures, les champs (agroforesterie)...\n\n- et quels objectifs fixer aux pays ? Car ils vont avoir des objectifs contraignants (ce qui est une bonne chose sur le papier, apr\u00e8s il faudra voir les d\u00e9tails).\n\nLa for\u00eat, c'est aussi - comme en Amazonie - un enjeu de conservation. Elle stocke en Europe environ 80 milliards de tonnes de CO2 : il serait bon pour nous que ca ne parte pas en partie dans l'atmosph\u00e8re..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6823537079952146432,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6823537080572903424,urn:li:activity:6823537080572903424,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 111, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6823537080572903424,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6823537080572903424,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6823537080572903424", + "threadId": "activity:6823537080572903424", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6823537080572903424", + "urn": "urn:li:activity:6823537080572903424", + "numComments": 240, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6823537080572903424", + "reactionTypeCounts": [ + { + "count": 1330, + "reactionType": "LIKE" + }, + { + "count": 167, + "reactionType": "INTEREST" + }, + { + "count": 145, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6823537080572903424", + "numLikes": 1667, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6823537080572903424", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1667, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6823515835911426048,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6823515835911426048", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6823515835911426048)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6823515835911426048)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_what-the-megadrought-means-to-the-american-activity-6823515835911426048-nH_u?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6823515835391320064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6823515835911426048", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6823515835911426048,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6823515835911426048,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6823515835391320064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "Z4aEDl0Yc0o8Q55CF1u3mA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6823515835911426048,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7950741780788643115", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676401193366?e=1677240000&v=beta&t=QacP5A_1BdElTeNl0OdvVJ1rc-q3BSikJD1yVi4vmpw", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676401193366?e=1677240000&v=beta&t=FaENdkC95iEO9PuLcI3d6jAkbczpzltI8-c9B7ieMRQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676401193366?e=1677240000&v=beta&t=49c9oTX1SSOsk8nUeQmpE6LSB6Pk5pht_vNtMQH1x80", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676401193366?e=1677240000&v=beta&t=IakZ_zHrJ-UbukU6GaZI-guuy37dNK0hzNEwAkGmBzk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGyxwKoN5dscw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7950741780788643115)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7950741780788643115)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: What the megadrought means to the American West on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=K9hUNufKIKw" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Farmers dependent upon water from river systems in the American West are seeing massive cuts in their supply, as reservoirs drop to their lowest levels due to the worst drought to hit the region in 1,200 years. Correspondent Ben Tracy talks with..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "What the megadrought means to the American West" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6823515835391320064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les allemands ont eu trop d'eau, les am\u00e9ricains de l'Ouest n'en ont pas assez. Cette vid\u00e9o de CBS explique comment une partie significative de la colonisation humaine de l'Ouest du pays, r\u00e9gion pour partie assez aride, a \u00e9t\u00e9 rendue possible en utilisant l'eau du Colorado, qui est en train de devenir moins disponible alors m\u00eame que les \"besoins\" augmentent, parce que la zone continue de se \"d\u00e9velopper\" (comprendre accro\u00eetre des activit\u00e9s consommatrices de ressources, dont de l'eau), et que \"en face\", le changement climatique diminue les pr\u00e9cipitations et augmente l'\u00e9vaporation, et donc le stress hydrique (en tendance).\n\nPour le moment, cette situation ne semble pas conduire nos amis am\u00e9ricains \u00e0 restreindre l'implantation de nouvelles activit\u00e9s et de nouveaux logements. C'est pourtant la premi\u00e8re question qu'il faut se poser - chez eux comme ailleurs - face \u00e0 cette \u00e9volution, car, m\u00eame si c'est parfois difficile, il est quand m\u00eame plus facile de dire non aujourd'hui que de corriger \"sans douleur\" la situation \u00e0 bref d\u00e9lai une fois que les ennuis s\u00e9rieux commencent." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6823515835391320064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6823515835911426048,urn:li:activity:6823515835911426048,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 37, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6823515835911426048,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6823515835911426048,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6823515835911426048", + "threadId": "activity:6823515835911426048", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6823515835911426048", + "urn": "urn:li:activity:6823515835911426048", + "numComments": 40, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6823515835911426048", + "reactionTypeCounts": [ + { + "count": 349, + "reactionType": "LIKE" + }, + { + "count": 52, + "reactionType": "INTEREST" + }, + { + "count": 36, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6823515835911426048", + "numLikes": 449, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6823515835911426048", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 449, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6823176167126773760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6823176167126773760", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6823176167126773760)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6823176167126773760)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-84-articles-de-la-loi-climat-viennent-activity-6823176167126773760-9nBg?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6823176166594105344", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6823176167126773760", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6823176167126773760,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6823176167126773760,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6823176166594105344", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "yskY68OiHePex8AmJWduGA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6823176167126773760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQF3ol5b7HqIFA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQF3ol5b7HqIFA", + "artifacts": [ + { + "width": 1416, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1626771963535?e=1679529600&v=beta&t=Os4my7poap1oky-HEGGY0Q9en4tqcOkZ1k6ks4arE5I", + "expiresAt": 1679529600000, + "height": 1154 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1626771965621?e=1679529600&v=beta&t=Uv_kZOobjNCyUUI1Tq8pMVBBDNeVCf7RH1s8gss7GAM", + "expiresAt": 1679529600000, + "height": 16 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1626771965621?e=1679529600&v=beta&t=r47fAsxvL6fAgblaDEN9nBj7bFtGc1J3EoSOfkZKlqk", + "expiresAt": 1679529600000, + "height": 1043 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1626771965621?e=1679529600&v=beta&t=avHp8-UnS4F3P8vN2qKyAuj-v27LvJeMnRNS8rmkdhw", + "expiresAt": 1679529600000, + "height": 391 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1626771965621?e=1679529600&v=beta&t=8_RSy-jfsFDjFKsKWKFrUz0dHOjVqUE8H-sWOpdaqpo", + "expiresAt": 1679529600000, + "height": 130 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1626771965621?e=1679529600&v=beta&t=UEfRPXn6w8q7RPLy2qyI9aX6ErCaDLP5gNxhhtwg69Y", + "expiresAt": 1679529600000, + "height": 652 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQF3ol5b7HqIFA/feedshare-shrink_" + }, + "displayAspectRatio": 0.8149717514124294 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6823176166594105344,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les 84 articles de la loi climat viennent de sortir de la commission mixte paritaire : https://lnkd.in/dQV-5ms\n\nIl faudra probablement un peu de temps pour savoir si l'ensemble des dispositions est compatible avec une baisse annuelle des \u00e9missions de 5% par an dans le monde, ce qui figure implicitement en t\u00eate de ce projet de loi avec la r\u00e9f\u00e9rence \u00e0 l'accord de Paris. \n\nIl faudra aussi un peu de temps pour savoir si le chapitre \"Adapter les territoires aux effets du d\u00e9r\u00e8glement climatique\" est \u00e0 la hauteur de ce qui nous attend au titre de la d\u00e9rive climatique (une lecture en diagonale montre que c'est peu probable, et donc que nous allons au-devant de surprises pour lesquelles nous seront peu ou pas pr\u00e9par\u00e9s).\n\nIl faudra d'autant plus de temps que la loi renvoie l'\u00e9valuation de l'impact de ses mesures \u00e0 la Cour des comptes et au Haut conseil pour le climat (incidemment ce dernier n'aura pas, avec ses effectifs actuels, les moyens de mener cette mission d'\u00e9valuation de mani\u00e8re s\u00e9rieuse en plus de ce qu'il doit d\u00e9j\u00e0 faire !).\n\nEnfin, comme toujours dans notre pays, nombre d'articles renvoient \u00e0 des d\u00e9crets d'application : le Diable sera donc dans les d\u00e9tails, et l'exp\u00e9rience montre que le Malin ne conc\u00e8de jamais de victoire facile. Cette loi n'est donc pas la fin d'un processus : au mieux c'en est le (modeste) d\u00e9but." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6823176166594105344,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6823176167126773760,urn:li:activity:6823176167126773760,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 20, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6823176167126773760,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6823176167126773760,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6823176167126773760", + "threadId": "activity:6823176167126773760", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6823176167126773760", + "urn": "urn:li:activity:6823176167126773760", + "numComments": 36, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6823176167126773760", + "reactionTypeCounts": [ + { + "count": 435, + "reactionType": "LIKE" + }, + { + "count": 48, + "reactionType": "INTEREST" + }, + { + "count": 43, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6823176167126773760", + "numLikes": 536, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6823176167126773760", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 536, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6822814942794682368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6822814942794682368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6822814942794682368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6822814942794682368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_inondations-en-europe-il-y-a-urgence-activity-6822814942794682368-Ve5g?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6822814941595099137", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6822814942794682368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6822814942794682368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6822814942794682368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6822814941595099137", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "c+nrnrUSGqohM56M2tTSqQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6822814942794682368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8385430418435279808", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676571914856?e=1677240000&v=beta&t=T4EQHyt2BUED6CbX89sjLFT9pSC9JBzAXMRACOlP1_4", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676571914856?e=1677240000&v=beta&t=hkfCHDsyqYxBkh0Pf0fajf0VXoNAqHZ_coeo1GgqjLk", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676571914856?e=1677240000&v=beta&t=ZPJWq6mBHi-48HaXJKDFxlfT_tib2TUa2H69tcwrZtc", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676571914856?e=1677240000&v=beta&t=w7QHShbQJgmM5LWODIN4YbLRDCvAuPj6EsfVPx2Lt08", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEdUgclpsyfqA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8385430418435279808)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8385430418435279808)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Inondations en Europe : \u00ab Il y a urgence absolue \u00e0 r\u00e9duire imm\u00e9diatement nos \u00e9missions de gaz \u00e0 effet de serre \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/climat/article/2021/07/16/le-climatologue-jean-pascal-van-ypersele-sur-les-inondations-je-suis-choque-emu-mais-aussi-surpris_6088497_1652612.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Inondations en Europe\u00a0: \u00ab\u00a0Il y a urgence absolue \u00e0 r\u00e9duire imm\u00e9diatement nos \u00e9missions de gaz \u00e0 effet de serre\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6822814941595099137,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 248, + "length": 24, + "miniProfile": { + "firstName": "Jean-Pascal", + "lastName": "van Ypersele", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAPlVwQBbvp6G_Moi10CjxJ-3yyQGeQr7rc", + "occupation": "Former IPCC Vice-Chair (Intergovernmental Panel on Climate Change), Prof. Climate & Env. Sc, UCLouvain, Belgium", + "objectUrn": "urn:li:member:65361668", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAPlVwQBbvp6G_Moi10CjxJ-3yyQGeQr7rc", + "publicIdentifier": "jpvanypersele", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1516823245326?e=1681948800&v=beta&t=lv9ym0SZ8R7IjUiKRQOeH6aANg7gXSBiYjAKR0OlcHw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1516823245326?e=1681948800&v=beta&t=tJN00DJDlk_B4lu1laDighNsG8KlCvbcBFLRgOBK31o", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1516823245326?e=1681948800&v=beta&t=EnyT57SkSUrr8xLdEFc6ZDJqmEd4ImDXSFIbmcp0LFo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1516823245326?e=1681948800&v=beta&t=5cUP1Di_-JXUYYMV6PVlNmxAFO-K7Tt2zClfxWql8fA", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEEvJGif18OyQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "2ajTDQabTW6KP0Rh0ciEpg==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "\"D\u00e8s 1990, le premier rapport du GIEC indiquait que l\u2019effet de serre accentuera les deux extr\u00eames du cycle hydrologique\u00a0: il y aura plus d\u2019\u00e9pisodes de pluies extr\u00eamement importantes et plus de s\u00e9cheresses prononc\u00e9es.\"\n\nDans une interview au Monde, Jean-Pascal van Ypersele, ancien vice-pr\u00e9sident du GIEC et professeur \u00e0 Louvain la Neuve, rappelle que pour le moment le syst\u00e8me climatique \u00e9volue globalement \"en ligne avec les pr\u00e9visions\". L'intensit\u00e9 des ph\u00e9nom\u00e8nes extr\u00eames doit cro\u00eetre, et la valeur des records est pour le coup plus difficile \u00e0 pr\u00e9voir que celle de moyennes. \n\nMais une chose est certaine : les extr\u00eames varient plus vite que les moyennes, parce que la variabilit\u00e9 du climat augmente aussi. Donc 1\u00b0C d'\u00e9l\u00e9vation de la moyenne peut engendrer, ici et l\u00e0, des augmentations de 5\u00b0C ou 10\u00b0C des extr\u00eames. Tout n'est pas homog\u00e8ne.\n\nEt Jean-Pascal Van Ypersele de rappeler \u00e0 la fois que l'action sur la r\u00e9duction reste bien trop anecdotique, et d'autre part que ce qu'il est convenu d'appeler \"adaptation\" doit faire l'objet d'une action rapide et \"massive\", car la d\u00e9rive climatique ne fait que commencer..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6822814941595099137,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6822814942794682368,urn:li:activity:6822814942794682368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 76, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6822814942794682368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6822814942794682368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6822814942794682368", + "threadId": "activity:6822814942794682368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6822814942794682368", + "urn": "urn:li:activity:6822814942794682368", + "numComments": 152, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6822814942794682368", + "reactionTypeCounts": [ + { + "count": 1574, + "reactionType": "LIKE" + }, + { + "count": 161, + "reactionType": "INTEREST" + }, + { + "count": 106, + "reactionType": "MAYBE" + }, + { + "count": 30, + "reactionType": "APPRECIATION" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6822814942794682368", + "numLikes": 1892, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6822814942794682368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1892, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6822078269202939904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6822078269202939904", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6822078269202939904)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6822078269202939904)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_depuis-que-l%C3%A9lectricit%C3%A9-est-devenue-disponible-activity-6822078269202939904-iC3I?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6822078268582182912", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6822078269202939904", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6822078269202939904,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6822078269202939904,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6822078268582182912", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "pClkxt8JbUjTtbbQe37Uaw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6822078269202939904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHA-pqkpfYDYw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHA-pqkpfYDYw", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1626510199229?e=1679529600&v=beta&t=Wmg7jkcA6d-3h8TwDVUneYwb8nBSP3EqWfgyIj16rpo", + "expiresAt": 1679529600000, + "height": 1162 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1626510208224?e=1679529600&v=beta&t=2YuvGf1oE-rofpGjbC29vLZ4zMdLFtfU5Q0yegG7CaA", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1626510208224?e=1679529600&v=beta&t=L714REWEw67JCN3GZV2_ajfnH4qDmlNdFlQp1nuExag", + "expiresAt": 1679529600000, + "height": 726 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1626510208224?e=1679529600&v=beta&t=TDPVYS-DrJpFPZ4lA1xOHnybfSBeFRmuskOSuDLaqDY", + "expiresAt": 1679529600000, + "height": 272 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1626510208224?e=1679529600&v=beta&t=59UpLXJsaXKVw0HhVa07mnyN4UgJC7Q-CxAfJcHecLE", + "expiresAt": 1679529600000, + "height": 91 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1626510208224?e=1679529600&v=beta&t=UQA0M-WicVjsgwev7ulLXRUrZvigAs2_7m6A0rakIMI", + "expiresAt": 1679529600000, + "height": 454 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHA-pqkpfYDYw/feedshare-shrink_" + }, + "displayAspectRatio": 0.5673828125 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, waterfall chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6822078268582182912,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis que l'\u00e9lectricit\u00e9 est devenue disponible pour l'humanit\u00e9, sa consommation n'a cess\u00e9 de cro\u00eetre. Depuis qu'ils ont commenc\u00e9, les investissements massifs effectu\u00e9s dans les sources renouvelables n'ont pas permis de se d\u00e9barrasser d'une partie des centrales \u00e0 charbon, \u00e0 gaz ou \u00e0 p\u00e9trole, mais sont venus contribuer \u00e0 une partie du surplus, le solde continuant \u00e0 \u00eatre fourni par des sources fossiles pour l'essentiel.\n\nLe graphique ci-dessous, publi\u00e9 dans le dernier rapport de l'AIE sur l'\u00e9lectricit\u00e9 - https://lnkd.in/d4nr6Y8 - montre que, chaque ann\u00e9e depuis 2015, l'humanit\u00e9 utilis\u00e9 en gros de 700 \u00e0 1000 TWh d'\u00e9lectricit\u00e9 en plus (sachant que 500 TWh est, en ordre de grandeur, la production fran\u00e7aise), dont la moiti\u00e9 vient des ENR, et l'autre moiti\u00e9 des fossiles. La mauvaise nouvelle est que l'AIE ne nous voit pas proc\u00e9der autrement pour les 2 ann\u00e9es \u00e0 venir. Il y a les discours, et il y a les actes...\n\nLe nucl\u00e9aire, autre source bas carbone, est lui en tr\u00e8s l\u00e9g\u00e8re croissance, et il ne fera pas mieux tant qu'il ne sera pas consid\u00e9r\u00e9 comme une priorit\u00e9 \"vitale\", \u00e0 l'\u00e9gal des ENR, car l'un comme l'autre sont tr\u00e8s capitalistiques et demandent un cadre de long terme garanti par les Etats (cadre fourni pour les ENR mais g\u00e9n\u00e9ralement pas pour le nucl\u00e9aire), sans quoi en \u00e9conomie de march\u00e9 r\u00e9gie par des horizons courts, quasiment personne ne prend le risque d'y aller.\n\nC'est triste \u00e0 dire, mais en pratique la schizophr\u00e9nie continue...." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6822078268582182912,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6822078269202939904,urn:li:activity:6822078269202939904,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 24, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6822078269202939904,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6822078269202939904,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6822078269202939904", + "threadId": "activity:6822078269202939904", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6822078269202939904", + "urn": "urn:li:activity:6822078269202939904", + "numComments": 77, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6822078269202939904", + "reactionTypeCounts": [ + { + "count": 544, + "reactionType": "LIKE" + }, + { + "count": 59, + "reactionType": "INTEREST" + }, + { + "count": 44, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6822078269202939904", + "numLikes": 662, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6822078269202939904", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 662, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6822075148003246081,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6822075148003246081", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6822075148003246081)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6822075148003246081)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_inondations-en-europe-comment-le-r%C3%A9chauffement-activity-6822075148003246081-qDaS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6822075147445391360", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6822075148003246081", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6822075148003246081,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6822075148003246081,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6822075147445391360", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "Grb3ooIdztWK/GKQ1tkPLg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6822075148003246081,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7013524488339022219", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676038617743?e=1677240000&v=beta&t=K4QBBJ1ndb36jdamKlZp4tx3XqIVxjyt3pgoSBmJUfk", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676038617743?e=1677240000&v=beta&t=m8ACMhZ45DpZxAUGv2astEy3WlPf4eVP8Q_-QeoMbbA", + "expiresAt": 1677240000000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676038617743?e=1677240000&v=beta&t=Gi_ybEluyqT72YZLRi7uCG5Ssmfi5qVmpXQVLRF1ASw", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676038617744?e=1677240000&v=beta&t=nVTcIKfPA00OVTyHlwz4H1pzcX8FQW6oJnul5jeI-cw", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHeuORaVMA_xw/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Les feux de Long Loch et de Derrickson Lake, en Colombie-Britannique (ouest du canada), le 30 juin 2021." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7013524488339022219)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7013524488339022219)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "francetvinfo.fr \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Inondations en Europe : comment le r\u00e9chauffement climatique est pass\u00e9 de \"menace pour les g\u00e9n\u00e9rations futures\" \u00e0 danger imminent by francetvinfo.fr", + "actionTarget": "https://www.francetvinfo.fr/meteo/climat/inondations-en-europe-comment-le-rechauffement-climatique-est-passe-de-menace-pour-les-generations-futures-a-danger-imminent_4690937.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Inondations en Europe : comment le r\u00e9chauffement climatique est pass\u00e9 de \"menace pour les g\u00e9n\u00e9rations futures\" \u00e0 danger imminent" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6822075147445391360,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un article publi\u00e9 sur le site de France Info rappelle que notre esp\u00e8ce est c\u00e2bl\u00e9e pour avoir peur de processus d\u00e9j\u00e0 observ\u00e9s et catalogu\u00e9s comme dangereux (un incendie, une inondation, une surmortalit\u00e9...), et non d'une pr\u00e9vision \"globale\" (le changement climatique) dont les cons\u00e9quences locales sont impossibles \u00e0 d\u00e9crire en d\u00e9tails et plus encore \u00e0 dater avec pr\u00e9cision. C'est la raison pour laquelle personne n'a vraiment eu peur au moment o\u00f9 sont sortis les premiers rapports du GIEC, qui disaient l'essentiel de ce qu'il faut savoir, alors que maintenant que commencent \u00e0 se multiplier les ph\u00e9nom\u00e8nes hors norme, on se dit que \"ouh l\u00e0 l\u00e0 il faudrait peut-\u00eatre faire quelque chose\".\n\nCela ne serait pas si grave si le processus global \u00e9tait imm\u00e9diatement r\u00e9versible d\u00e8s que nous commen\u00e7ons \u00e0 trembler un peu. Malheureusement la d\u00e9rive climatique n'est pas r\u00e9versible. Les propri\u00e9t\u00e9s physiques et chimiques intrins\u00e8ques des gaz \u00e0 effet de serre emp\u00eachent qu'il en soit ainsi. \n\nUne deuxi\u00e8me difficult\u00e9 majeure vient bloquer l'action, point\u00e9e avec justesse par Jean-Baptiste Fressoz, un historien des sciences : \"l'incompr\u00e9hension des bases mat\u00e9rielles de l'\u00e9conomie\" par la majorit\u00e9 de la population et des d\u00e9cideurs, qui peuvent alors croire que \"l'innovation va permettre d'effectuer la transition, mais c'est parce qu'on ne comprend pas tr\u00e8s bien comment fonctionnent la sid\u00e9rurgie, les cimenteries, la production d'engrais, l'agriculture... et surtout les m\u00e9canismes de diffusion des techniques, son rythme et sa lenteur\".\n\nDit autrement, les fausses croyances se sont d\u00e9plac\u00e9es, du moins en Europe, de la d\u00e9finition du probl\u00e8me (le climatoscepticisme est devenu totalement marginal au sein de la classe politique et \u00e9conomique) \u00e0 sa r\u00e9solution (d'o\u00f9 l'abondance de \"vert\", \"propre\", \"durable\" employ\u00e9s \u00e0 tort et \u00e0 travers, et la confusion permanente entre 1 et 1000). \n\nLe m\u00eame Jean-Baptiste Fressoz de rajouter que \"La transition n'a pas eu lieu, elle n'a pas m\u00eame pas commenc\u00e9\". \"(...) La t\u00e2che qui nous attend est compl\u00e8tement inou\u00efe.\"\n\nR\u00e9sumons de mani\u00e8re un peu directe : pour le moment nous n'agissons pas (encore ?) de mani\u00e8re significative, nous tentons essentiellement de nous rassurer." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6822075147445391360,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6822075148003246081,urn:li:activity:6822075148003246081,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 92, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6822075148003246081,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6822075148003246081,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6822075148003246081", + "threadId": "activity:6822075148003246081", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6822075148003246081", + "urn": "urn:li:activity:6822075148003246081", + "numComments": 174, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6822075148003246081", + "reactionTypeCounts": [ + { + "count": 2835, + "reactionType": "LIKE" + }, + { + "count": 288, + "reactionType": "INTEREST" + }, + { + "count": 246, + "reactionType": "MAYBE" + }, + { + "count": 56, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6822075148003246081", + "numLikes": 3465, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6822075148003246081", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3465, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6821720066506166272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6821720066506166272", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6821720066506166272)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6821720066506166272)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_former-les-acteurs-de-l%C3%A9conomie-de-demain-activity-6821720066506166272-r7xw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6821720065814085632", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6821720066506166272", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6821720066506166272,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6821720066506166272,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6821720065814085632", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "hBFHknZfim6fOVccvpUdIA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6821720066506166272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8859368389745625264", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675973057880?e=1677240000&v=beta&t=UopxMfYXGBAaMqx3RIhBoZ8BrR3RnJNDa8NJ9SG8hkM", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675973057880?e=1677240000&v=beta&t=wSalgb1RxzHBzKRMTtij4TTsbP6PU9tbfcy9pmBp9rM", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675973057880?e=1677240000&v=beta&t=usuEKJOxpkr5Ipd_RgcWpbb2ZWrEEBgUbs0YWlr9Rto", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675973057880?e=1677240000&v=beta&t=Dj-eygD_YjLMBBAG-XjHF4nbjdsoNkdKW_ZrhXwSRq0", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHTI1bW9PvcNw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8859368389745625264)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8859368389745625264)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Former les acteurs de l\u2019\u00e9conomie de demain : le Shift lance \"ClimatSup Business\" ! - The Shift Project by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/former-les-acteurs-de-leconomie-de-demain-le-shift-lance-climatsup-business" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Former les acteurs de l\u2019\u00e9conomie de demain : le Shift lance \"ClimatSup Business\" ! - The Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6821720065814085632,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s avoir collabor\u00e9 avec le groupe des INSA sur le th\u00e8me \"comment on fait pour aligner l'enseignement d'une \u00e9cole d'ing\u00e9nieur avec les limites plan\u00e9taires, et notamment la contrainte \u00e9nergie-climat\", The Shift Project r\u00e9cidive, en quelque sorte, et s'attaque \u00e0 une question voisine, qui est \"comment on fait pour aligner l'enseignement d'une \u00e9cole de commerce avec les limites plan\u00e9taires\". \n\nLe cobaye cette fois ci est Audencia, mais le but est bien le m\u00eame qu'avec l'INSA : mettre sur la place publique les enseignements qui en d\u00e9coulent, pour que d'autres \u00e9tablissements puissent suivre la m\u00eame d\u00e9marche.\n\nNous nous attaquons cette fois ci \u00e0 plus forte partie, d'une certaine mani\u00e8re. En effet, dans le cadre du travail \"Mobiliser l\u2019enseignement sup\u00e9rieur pour le climat\", effectu\u00e9 en mars 2019 (https://lnkd.in/dNVfiau), nous avions trouv\u00e9 11% seulement de parcours de formation dans les \u00e9tablissements analys\u00e9s qui comportaient au moins un cours obligatoire sur les enjeux \u00e9nergie climat (et qui pouvait \u00eatre d'une heure seulement !). Dit autrement, 90% des \u00e9tudiants sortaient des 32 \u00e9tablissements pass\u00e9s \u00e0 la loupe sans avoir jamais eu le moindre cours sur un enjeu d\u00e9cr\u00e9t\u00e9 comme majeur par ailleurs par le monde politique et la soci\u00e9t\u00e9 civile.\n\nMais dans ces 11%, les \u00e9coles d'ing\u00e9nieurs sont sur-repr\u00e9sent\u00e9es, et les autres \u00e9tablissements affichent des performances bien plus \"maigres\". En particulier, dans les \u00e9coles de commerce, la proportion \u00e9tait de... z\u00e9ro ! Il faut dire que le sujet rend la t\u00e2che plus ardue, puisque les limites physiques de la plan\u00e8te n'apparaissent nulle part dans les th\u00e9ories concernant l'\u00e9conomie et la gestion.\n\nNotre projet avec Audencia vise \u00e0 \"transformer le tronc commun, mais aussi \u00e0 d\u00e9cliner les connaissances et comp\u00e9tences requises par fili\u00e8re m\u00e9tier, afin de r\u00e9pondre et anticiper la demande du march\u00e9 du travail.\"\n\nEn parlant de travail, The Shift Project recherche celui ou celle qui va justement piloter ce projet : https://lnkd.in/dTtRGwp" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6821720065814085632,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6821720066506166272,urn:li:activity:6821720066506166272,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 79, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6821720066506166272,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6821720066506166272,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6821720066506166272", + "threadId": "activity:6821720066506166272", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6821720066506166272", + "urn": "urn:li:activity:6821720066506166272", + "numComments": 120, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6821720066506166272", + "reactionTypeCounts": [ + { + "count": 1074, + "reactionType": "LIKE" + }, + { + "count": 182, + "reactionType": "PRAISE" + }, + { + "count": 47, + "reactionType": "INTEREST" + }, + { + "count": 31, + "reactionType": "MAYBE" + }, + { + "count": 24, + "reactionType": "APPRECIATION" + }, + { + "count": 20, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6821720066506166272", + "numLikes": 1378, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6821720066506166272", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1378, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6821458181835759616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:member:183424051", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Julie", + "lastName": "Daunay", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "occupation": "Head of Net Zero Practice - Recruitment Manager - Carbone 4", + "objectUrn": "urn:li:member:183424051", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1650829686649?e=1681948800&v=beta&t=Rf2Y7qUU2TPTZ05cutAwcO2iqnMo6t4Hfdopndutc84", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1650829686649?e=1681948800&v=beta&t=iMzmvgrl1MTYYHJJfeJUuNR5zRI82Hu8yuJuHBtG3gY", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHpQSm2-ui2_A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "julie-daunay-21751851", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650545325320?e=1681948800&v=beta&t=BCTrL79EHAUp5-EdSbkqYTNDcxPc9AUMCI6h9gW-KX8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650545325320?e=1681948800&v=beta&t=6NtVaz_3C-PQ4tdvK-J5QjbsoLz-_d0DOhJGbRQ1Zaw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650545325320?e=1681948800&v=beta&t=e8ZXvJlwKgYItYuVoI7fOcTwGtuwzQpPTcuGOyuWsSM", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650545325320?e=1681948800&v=beta&t=sHGCLwwMDPrkr1x8b9A4SLdS5onZW3A7jviDYbg_ElY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQGS01GH3FEefQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "97ndsVkEQxyNosmES7Ng7g==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 3rd+" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 12, + "miniProfile": { + "firstName": "Julie", + "lastName": "Daunay", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "occupation": "Head of Net Zero Practice - Recruitment Manager - Carbone 4", + "objectUrn": "urn:li:member:183424051", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1650829686649?e=1681948800&v=beta&t=Rf2Y7qUU2TPTZ05cutAwcO2iqnMo6t4Hfdopndutc84", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1650829686649?e=1681948800&v=beta&t=iMzmvgrl1MTYYHJJfeJUuNR5zRI82Hu8yuJuHBtG3gY", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHpQSm2-ui2_A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "julie-daunay-21751851", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650545325320?e=1681948800&v=beta&t=BCTrL79EHAUp5-EdSbkqYTNDcxPc9AUMCI6h9gW-KX8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650545325320?e=1681948800&v=beta&t=6NtVaz_3C-PQ4tdvK-J5QjbsoLz-_d0DOhJGbRQ1Zaw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650545325320?e=1681948800&v=beta&t=e8ZXvJlwKgYItYuVoI7fOcTwGtuwzQpPTcuGOyuWsSM", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1650545325320?e=1681948800&v=beta&t=sHGCLwwMDPrkr1x8b9A4SLdS5onZW3A7jviDYbg_ElY", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQGS01GH3FEefQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "97ndsVkEQxyNosmES7Ng7g==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Julie Daunay" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Julie Daunay\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/julie-daunay-21751851?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Head of Net Zero Practice - Recruitment Manager - Carbone 4" + }, + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "following": false, + "trackingUrn": "urn:li:member:183424051" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followMember" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6821390446657323008,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6821390446657323008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6821390446657323008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6821390446657323008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/activity-6821390446657323008-9KlS?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6821390446325981184", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAru1DMBtwmPe39mLlK4FJwi90Fr8JhOLAM", + "authorUrn": "urn:li:member:183424051", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6821390446657323008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6821390446657323008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6821390446325981184", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "XBR1lFyJ5noHhCPhIPYsBw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6821390446657323008,MEMBER_SHARES,EMPTY,RESHARED,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6821390446325981184,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'\u00e9t\u00e9 \u2600\ufe0f est le moment id\u00e9al pour se ressourcer, d\u00e9connecter...et m\u00e9diter sur sa carri\u00e8re professionnelle \ud83e\uddd0 ! \n\nSi vous voulez du changement et donner du sens \u00e0 votre activit\u00e9 professionnelle, rejoignez une \u00e9quipe jeune, motiv\u00e9e et impliqu\u00e9e chaque jour dans la lutte contre le changement climatique \ud83c\udf0d. \n\nJetez un oeil \u00e0 nos offres sur notre site internet \ud83d\udc41\n\n\ud83d\udd0eCarbone 4 recrute :\n\ud83d\udcca un\u00b7e Responsable Administratif\u00b7ve et Financier\u00b7\u00e8re\n\ud83c\udfd7 un\u00b7e Consultant\u00b7e Senior B\u00e2timent-Immobilier\n\ud83d\udea8 un\u00b7e Consultante Senior R\u00e9silience & Adaptation\n\ud83d\udcc8 un\u00b7e Consultant\u00b7e Senior Strat\u00e9gie\n\ud83d\udd0b un\u00b7e Consultant\u00b7e Senior \u00c9nergie\n\ud83d\udcb5 un\u00b7e Consultant\u00b7e Senior Finance\n\ud83d\udca7 un\u00b7e Consultant\u00b7e Senior sp\u00e9cialiste de l'Analyse de Cycle de Vie\n\ud83c\udf3e un\u00b7e Consultant\u00b7e Agronome / sp\u00e9cialiste \"Agriculture & agro-alimentaire\"\n\ud83c\uddea\ud83c\uddf8 un\u00b7e Consultant\u00b7e bilingue Anglais ou N\u00e9erlandais ou Espagnol\n\n\ud83d\udc49 Vous \u00eates int\u00e9ress\u00e9\u00b7e ? Rendez-vous sur notre site pour postuler !\nhttps://www.carbone4.com/" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6821390446325981184,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6821390446657323008,urn:li:activity:6821390446657323008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 7, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6821390446657323008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6821390446657323008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6821390446657323008", + "threadId": "activity:6821390446657323008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6821390446657323008", + "urn": "urn:li:activity:6821390446657323008", + "numComments": 7, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6821390446657323008", + "reactionTypeCounts": [ + { + "count": 93, + "reactionType": "LIKE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6821390446657323008", + "numLikes": 102, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6821390446657323008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 102, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6821458181835759616", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6821458181835759616)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6821458181835759616)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_l%C3%A9t%C3%A9-est-le-moment-id%C3%A9al-pour-se-ressourcer-activity-6821458181835759616-ivmV?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6821458181449883648", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6821458181835759616", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6821458181835759616,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6821458181835759616,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6821458181449883648", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "XBR1lFyJ5noHhCPhIPYsBw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6821458181835759616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6821458181449883648,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La vocation de Carbone 4 est de s'autodissoudre. En effet, le jour o\u00f9 le probl\u00e8me climatique sera derri\u00e8re nous, il n'y aura plus besoin de consultants pour aider les entreprises \u00e0 comprendre ce qu'il est possible (et parfois pas possible, h\u00e9las) de faire. A ce moment l\u00e0, aucun risque de ch\u00f4mage pour nos collaborateurs : ils et elles pourront marquer \"a contribu\u00e9 \u00e0 sauver le monde\" sur leur CV, ce qui devrait aider \u00e0 une reconversion dans de bonnes conditions :)\n\nMais d'ici l\u00e0, il reste un peu de travail. Alors pour nous aider \u00e0 le faire, nous sommes \u00e0 la recherche de la longue liste ci-dessous. A vos CV pour celles et ceux que cela tente !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6821458181449883648,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6821458181835759616,urn:li:activity:6821458181835759616,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6821458181835759616,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6821458181835759616,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6821458181835759616", + "threadId": "activity:6821458181835759616", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6821458181835759616", + "urn": "urn:li:activity:6821458181835759616", + "numComments": 41, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6821458181835759616", + "reactionTypeCounts": [ + { + "count": 408, + "reactionType": "LIKE" + }, + { + "count": 20, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6821458181835759616", + "numLikes": 455, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6821458181835759616", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 455, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6821356933061070848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6821356933061070848", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6821356933061070848)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6821356933061070848)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lunion-europ%C3%A9enne-a-d%C3%A9voil%C3%A9-hier-un-plan-activity-6821356933061070848-7liP?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6821356932482269185", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6821356933061070848", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6821356933061070848,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6821356933061070848,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6821356932482269185", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "SqKBRu+b09sYTijA/B+0kg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6821356933061070848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFOKm7NJMHPuQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFOKm7NJMHPuQ", + "artifacts": [ + { + "width": 1986, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1626338225606?e=1679529600&v=beta&t=2YjM-onqQb3GYDbnv0090io2FuFBsugxV9I8M_99MqE", + "expiresAt": 1679529600000, + "height": 990 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1626338227128?e=1679529600&v=beta&t=gpnKSNeWRTkcL3-U8uge1DjzyX37maezi5cgmYTs-No", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1626338227128?e=1679529600&v=beta&t=VI9iFnmcwynuH46inK5fK8eRCGV_cpXiosm5akZtTuk", + "expiresAt": 1679529600000, + "height": 638 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1626338227128?e=1679529600&v=beta&t=-abCpMjjlqgHiAjkRPcssUMi5Dut-3lnHaRyvd2Jzbg", + "expiresAt": 1679529600000, + "height": 239 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1626338227128?e=1679529600&v=beta&t=DUXle_OwJjFqq-gv4PJc7gNtrpipCozapF0ndAsNsRQ", + "expiresAt": 1679529600000, + "height": 80 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1626338227128?e=1679529600&v=beta&t=tLcsafpppcNK1CW7u-teS0wkuDnBWEuAhYvN1M3ZaGw", + "expiresAt": 1679529600000, + "height": 399 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFOKm7NJMHPuQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.4984894259818731 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, bar chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6821356932482269185,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Union europ\u00e9enne a d\u00e9voil\u00e9 hier un plan \"ambitieux\" sur le climat, qui passe notamment par un d\u00e9veloppement massif de la mobilit\u00e9 \u00e9lectrique, et des \u00e9nergies renouvelables \u00e9lectriques. L'un comme l'autre demandent de fortement augmenter le recours \u00e0 certains m\u00e9taux, consid\u00e9r\u00e9s comme \"critiques\" pour effectuer cette transition en conservant des flux voisins de ceux d'aujourd'hui (donc \u00e0 peu pr\u00e8s autant de voitures, et plus d'\u00e9lectricit\u00e9 produite qu'aujourd'hui) : nickel, lithium, cobalt, cuivre, et \"terres rares\" (qui sont en fait des m\u00e9taux sp\u00e9cifiques, g\u00e9n\u00e9ralement associ\u00e9s \u00e0 d'autres m\u00e9taux dans les gisements). \n\nDans un rapport publi\u00e9 en mai dernier (https://lnkd.in/ddbi8z7 ), l'Agence Internationale de l'Energie a regard\u00e9 quels pays \u00e9taient les principaux producteurs de minerai de ces m\u00e9taux \"essentiels\", et quels pays en \u00e9taient les principaux transformateurs. \n\nLe graphique ci-dessous est explicite : cela revient \u00e0 passer de la d\u00e9pendance aux pays exportateurs d'hydrocarbures \u00e0 un nombre encore plus restreint de pays exportateurs de minerai ou de m\u00e9taux raffin\u00e9s. Et, quand il s'agit de la Chine, on pourra faire confiance \u00e0 cette derni\u00e8re pour conserver la plus grande partie possible de valeur ajout\u00e9e \u00e0 l'aval, en allant jusqu'au produit fini (batterie, nacelle d'\u00e9olienne, panneau solaire), ce qui est tr\u00e8s exactement sa strat\u00e9gie industrielle actuellement.\n\nLa disponibilit\u00e9 en m\u00e9taux ne va donc pas concerner que les ressources physiques pr\u00e9sentes sur terre, ce qui est d\u00e9j\u00e0 un \u00e9norme point d'interrogation avec les volumes associ\u00e9s \u00e0 un sc\u00e9nario de \"d\u00e9carbonation en croissance\". Pour les europ\u00e9ens, il y a aussi un tout petit sujet de ma\u00eetrise des approvisionnements \u00e0 l'amont dans un contexte o\u00f9 il n'est pas sur qu'il y en aura \u00e9ternellement pour tout le monde.\n\nSi l'Europe doit \u00eatre limit\u00e9e sur ces m\u00e9taux, cela pose notamment la question de la mobilit\u00e9 \u00e9lectrique qu'elle souhaite favoriser : \u00e0 volume (restreint) disponible, faut-il accepter des tanks \u00e9lectriques pour un plus petit nombre d'heureux \u00e9lus, ou des v\u00e9hicules \u00e9lectriques l\u00e9gers (v\u00e9los, scooters, petites voitures, utilitaires), qui ont des batteries 10 \u00e0 100 fois plus petites, et pr\u00e9serveront un peu de mobilit\u00e9 m\u00e9canique pour tou(te)s ? \n\nPour le moment, le fait de ne pas tenir compte de l'empreinte carbone de fabrication en appelant tout v\u00e9hicule \u00e9lectrique un \"zero emission v\u00e9hicle\" (appellation impropre dont la r\u00e9glementation europ\u00e9enne est truff\u00e9e : https://lnkd.in/dEkYUSV ) ne permet pas de privil\u00e9gier une des deux voies." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6821356932482269185,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6821356933061070848,urn:li:activity:6821356933061070848,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 158, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6821356933061070848,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6821356933061070848,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6821356933061070848", + "threadId": "activity:6821356933061070848", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6821356933061070848", + "urn": "urn:li:activity:6821356933061070848", + "numComments": 295, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6821356933061070848", + "reactionTypeCounts": [ + { + "count": 2496, + "reactionType": "LIKE" + }, + { + "count": 409, + "reactionType": "INTEREST" + }, + { + "count": 342, + "reactionType": "MAYBE" + }, + { + "count": 46, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6821356933061070848", + "numLikes": 3310, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6821356933061070848", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3310, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6821116797605945346,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6821116797605945346", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6821116797605945346)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6821116797605945346)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-f%C3%A9d%C3%A9ration-nationale-du-bois-lance-une-activity-6821116797605945346-PkQH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6821116796989382656", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6821116797605945346", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6821116797605945346,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6821116797605945346,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6821116796989382656", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "s/LmLM1gjdB1IVjOdv7MJQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6821116797605945346,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7366608649278355184", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 620, + "fileIdentifyingUrlPathSegment": "800/0/1676474143655?e=1677240000&v=beta&t=yWeCtAd4wb3nXrRFJh40KFKh65twAj9XuC2KWM1YUeA", + "expiresAt": 1677240000000, + "height": 465 + }, + { + "width": 620, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676474143655?e=1677240000&v=beta&t=2Wg_TFf0dtJSt42UG3ZDzrHZBjEnlr3vyKxvmC95WVA", + "expiresAt": 1677240000000, + "height": 465 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676474143655?e=1677240000&v=beta&t=0bBL9iGgeXI-Ru7O0-11qa-9vPsx6YegTmuwWG1iQkQ", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676474143655?e=1677240000&v=beta&t=glKmpTfwI08R9aMHYUuF5Tp7WrBhF2WQJ8u3TJbGIyo", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHBdkucZn1LfA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7366608649278355184)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7366608649278355184)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "batiactu.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La F\u00e9d\u00e9ration nationale du bois lance une p\u00e9tition pour \"sauver les scieries europ\u00e9ennes\" by batiactu.com", + "actionTarget": "https://www.batiactu.com/edito/federation-nationale-bois-appelle-a-sauver-scieries-62279.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La F\u00e9d\u00e9ration nationale du bois lance une p\u00e9tition pour \"sauver les scieries europ\u00e9ennes\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6821116796989382656,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "C'est un fait bien connu des gens qui s'int\u00e9ressent \u00e0 la question : alors que la France poss\u00e8de la quatri\u00e8me for\u00eat europ\u00e9enne par la superficie, le bois et les produits en bois (meubles inclus) sont un des premiers postes de d\u00e9ficit de la balance commerciale. \n\nLe changement climatique va mettre une double pression sur la for\u00eat :\n- consid\u00e9r\u00e9s comme s\u00e9questrant du carbone quand il s'agit d'objets durables (charpente, \u00e9l\u00e9ments de mobilier ou parquets...), ou \u00e9vitant des \u00e9missions quand ils remplacent des combustibles fossiles (ce qui est une convention qui n'est valable que sous certaines conditions bien pr\u00e9cises), les produits en bois et d\u00e9riv\u00e9s du bois vont faire l'objet d'une demande croissante\n- dans le m\u00eame temps le changement climatique va amoindrir le stock, et la d\u00e9forestation aussi.\n\nIl ne serait donc pas d\u00e9raisonnable de consid\u00e9rer le bois comme une ressource strat\u00e9gique, \u00e0 l'\u00e9gal des minerais ou hydrocarbures. Et si c'est strat\u00e9gique, il faut que l'\u00e9tat s'en m\u00eale. Est-il acceptable que, au nom de la libre concurrence, une large partie des grumes fran\u00e7aises quitte le pays sans aucune transformation, alors que nos outils de transformation - certes plus artisanaux, mais cela n'a pas que des inconv\u00e9nients - ont parfois des difficult\u00e9s pour s'approvisionner ? \n\nDans le domaine de la for\u00eat comme dans beaucoup d'autres de long terme (car sous nos latitudes il faut de 50 \u00e0 100 ans pour faire un arbre \"en \u00e9tat de marche\"), on va r\u00e9aliser une \u00e9vidence : la libre concurrence, et la possibilit\u00e9 pour chacun de venir se servir pourvu qu'il paye le prix, c'est un syst\u00e8me qui ne fonctionne bien qu'en p\u00e9riode d'abondance. Mais d\u00e8s que la disponibilit\u00e9 de la ressource devient un sujet, ca tousse !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6821116796989382656,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6821116797605945346,urn:li:activity:6821116797605945346,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 135, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6821116797605945346,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6821116797605945346,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": true, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6821116797605945346", + "threadId": "activity:6821116797605945346", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6821116797605945346", + "urn": "urn:li:activity:6821116797605945346", + "numComments": 175, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6821116797605945346", + "reactionTypeCounts": [ + { + "count": 3054, + "reactionType": "LIKE" + }, + { + "count": 187, + "reactionType": "MAYBE" + }, + { + "count": 167, + "reactionType": "INTEREST" + }, + { + "count": 100, + "reactionType": "PRAISE" + }, + { + "count": 53, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6821116797605945346", + "reacted": "LIKE", + "numLikes": 3575, + "liked": true + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6821116797605945346", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3575, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6820752708476125184,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6820752708476125184", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6820752708476125184)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6820752708476125184)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_opinion-en-europe-des-p%C3%A9nuries-de-p%C3%A9trole-activity-6820752708476125184-QPxJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6820752707696005120", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6820752708476125184", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6820752708476125184,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6820752708476125184,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6820752707696005120", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "x7avbyCkzCRAb3RjF+fcWA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6820752708476125184,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7972475422820957020", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676372707891?e=1677240000&v=beta&t=gvAv6JRpZkM1gcHv17bxNHgi-m2K3izSj4EDfa4Zn8M", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676372707891?e=1677240000&v=beta&t=S4sI5DazUpNbuRq4Dmp1G4mDuFj30EC7lP2x2GZ5V9A", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676372707891?e=1677240000&v=beta&t=B3ogQhBUw5Nj2yIT-FdMuoBsrCYveqSZx59WlBf3J-s", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676372707891?e=1677240000&v=beta&t=FniI6bP065n0AYyFC7eaxQKvnFmeVpj9ac6PPT3ZGo0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEl0xkgG7feIw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7972475422820957020)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7972475422820957020)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Opinion | En Europe, des p\u00e9nuries de p\u00e9trole se profilent \u00e0 br\u00e8ve \u00e9ch\u00e9ance by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/cercle/opinion-en-europe-des-penuries-de-petrole-se-profilent-a-breve-echeance-1331761" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Opinion | En Europe, des p\u00e9nuries de p\u00e9trole se profilent \u00e0 br\u00e8ve \u00e9ch\u00e9ance" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6820752707696005120,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 30, + "length": 12, + "miniProfile": { + "firstName": "Marc", + "lastName": "Blaizot", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABiETS8B2osg5SsWfAygCs0ptmEx-3UMxFU", + "occupation": "Chief Editor at SGF (French Geological Society)", + "objectUrn": "urn:li:member:411323695", + "entityUrn": "urn:li:fs_miniProfile:ACoAABiETS8B2osg5SsWfAygCs0ptmEx-3UMxFU", + "publicIdentifier": "marc-blaizot-667902b5", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517623717582?e=1681948800&v=beta&t=4b0t4CBZq0ChLNf0PdRZudE9RC0dupzKBS2IIWZ3_vM", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517623717582?e=1681948800&v=beta&t=lgMScNOGA9llsJv2e8pBFCqibbC41KAn93yMrw1A_ME", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517623717582?e=1681948800&v=beta&t=6FNhTwJ1fninNMaNqVAkpK9JzryRcYBIbdC61sDkkO4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517623717582?e=1681948800&v=beta&t=PinNiESuKNL-8te2eIYYwawRBHssamj77MZajbqVmjQ", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQEuC3oV6nPviQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "p2zEBHsiQfOUH8k+kGdCSw==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 89, + "length": 12, + "miniProfile": { + "firstName": "Alain", + "lastName": "Lehner", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAA5BbSwBtr8N-Fc7cEXx1oxKzlVSByDvZIc", + "occupation": "Strategie developpement champs", + "objectUrn": "urn:li:member:239168812", + "entityUrn": "urn:li:fs_miniProfile:ACoAAA5BbSwBtr8N-Fc7cEXx1oxKzlVSByDvZIc", + "publicIdentifier": "alain-lehner-a6411b68", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517375012569?e=1681948800&v=beta&t=AkfZ5LE0pfzUbAaXfwODzD_urDb7eIx4EG6VzU6ntO8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517375012569?e=1681948800&v=beta&t=oO1jPvu49FEdCsmBjnIwqF1LwISr8YI38cuQ4s0bCdo", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517375012569?e=1681948800&v=beta&t=gao774BmGfZ6dzZcWhm-LabN8Kk00MEd_F-E0GBLUiI", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517375012569?e=1681948800&v=beta&t=-V1rMNsZvJHvsHCVzaWzVpXuekcfEyVzNxCMQUOGFRA", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQHzrHuQDeWZag/profile-displayphoto-shrink_" + } + }, + "trackingId": "aVAMM87mQD2tphljIofhKg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 175, + "length": 10, + "miniProfile": { + "firstName": "Olivier", + "lastName": "R.", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAC9d-GQBgSM_1u3ojFf2nh2iyq4ZPpQWvZg", + "occupation": "Senior Manager", + "objectUrn": "urn:li:member:794687588", + "entityUrn": "urn:li:fs_miniProfile:ACoAAC9d-GQBgSM_1u3ojFf2nh2iyq4ZPpQWvZg", + "publicIdentifier": "olivier-r-7981801a2", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1596366113115?e=1681948800&v=beta&t=NNdhFKPASOJtWTB-3MkKEBkTcItaTfKIaeNC7ZNia2k", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1596366113115?e=1681948800&v=beta&t=12p-1xMr9qh0V1wkyriUl4StrcKQCrYJxg3IfcIf1J0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1596366113115?e=1681948800&v=beta&t=DunrKwMbpVUOXivWEm3ZwZO58S8KuQflPPPtbeZBEao", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1596366113115?e=1681948800&v=beta&t=KfcWJ4Sosk2D-7O8p_UeTiEw1KVZddzQTlEYYWwrZKs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQE__cbur-ruiQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "Ab0j9Mf/RlWQEvlg4QkWUA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 346, + "length": 17, + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "B0u4ODDBQWazAdLw/vhdXg==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 380, + "length": 20, + "miniCompany": { + "objectUrn": "urn:li:company:10178517", + "entityUrn": "urn:li:fs_miniCompany:10178517", + "name": "Minist\u00e8re de la D\u00e9fense", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1643381210225?e=1684972800&v=beta&t=PmGE0LB2DiuU-i0lBU5XUwkWb_Ph83ouCRUACJBtPwQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1643381210225?e=1684972800&v=beta&t=ipyLDmfKMfTqzSedeGiMdP8nXqOAUH9dHH4gOtWBMM0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1643381210225?e=1684972800&v=beta&t=byBVQgBF1cEpaBXPtECvqXinM-PNNNel4-H1-Z6IGFg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQHIOxktMrRFzw/company-logo_" + } + }, + "universalName": "ministere-des-armees", + "dashCompanyUrn": "urn:li:fsd_company:10178517", + "trackingId": "fhI+TvOhQoCcMFbip+ECQg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Il y a un peu plus d'un mois, Marc Blaizot (ancien directeur de l'exploration de Total), Alain Lehner (ancien directeur de la division valorisation des gisements de Total) et Olivier R. (ancien r\u00e9dacteur de la section \"p\u00e9trole\" des World Energy Outlook de l'Agence Internationale de l'Energie) mettaient la touche finale \u00e0 un rapport r\u00e9alis\u00e9 par The Shift Project \u00e0 la demande du Minist\u00e8re des Arm\u00e9es sur les perspectives d'approvisionnement en p\u00e9trole de l'Europe. \n\nLa question pos\u00e9e \u00e9tait en gros la suivante : la quantit\u00e9 de p\u00e9trole disponible pour les europ\u00e9ens \u00e0 l'avenir ne d\u00e9pend-elle que de notre volont\u00e9 d'en consommer ou pas (par exemple pour des raisons de climat), ou y a-t-il d'autres limites qui s'appliquent ?\n\nLa r\u00e9ponse, exprim\u00e9e en 4500 caract\u00e8res (environ !) dans cette tribune publi\u00e9e par les auteurs du rapport dans Les Echos, est la seconde : il y a une contrainte g\u00e9ologique \u00e0 l'oeuvre, et la quantit\u00e9 de p\u00e9trole consomm\u00e9e en Europe va baisser \u00e0 l'avenir, que nous le voulions ou pas. Le probl\u00e8me, c'est que jusqu'\u00e0 maintenant nous le voulons plus dans les discours que dans les actes. \n\nQuelles cons\u00e9quences ?\n- un peu d'inflation quand les prix vont repartir \u00e0 la hausse pour de bon, mais ce n'est pas le plus grave\n- probablement une baisse structurelle du PIB, parce que le p\u00e9trole reste le sang du syst\u00e8me de transports (en particulier de marchandises), donc le sang du syst\u00e8me \u00e9conomique mondial. Depuis 40 ans d\u00e9sormais, la variation de la quantit\u00e9 de p\u00e9trole produite pilote directement, avec une correspondance parfaite, la variation du PIB mondial. \n\nL'Italie est un cas d'\u00e9cole d'un pays brutalement sevr\u00e9 de p\u00e9trole (https://lnkd.in/gXfrnyq ). Ce que dit cette tribune, ou plut\u00f4t ce qu'elle rappelle, c'est que d'ici \u00e0 2050 il va falloir transitionner en d\u00e9croissance bien plus souvent qu'en croissance. \n\nNombre de calculs \u00e9conomiques sur la \"transition\" postulent la croissance. Il serait urgent de les refaire pour v\u00e9rifier que les options prises r\u00e9sistent \u00e0 ce qui va vraiment nous arriver." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6820752707696005120,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6820752708476125184,urn:li:activity:6820752708476125184,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6820752708476125184,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6820752708476125184,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6820752708476125184", + "threadId": "activity:6820752708476125184", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6820752708476125184", + "urn": "urn:li:activity:6820752708476125184", + "numComments": 72, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6820752708476125184", + "reactionTypeCounts": [ + { + "count": 704, + "reactionType": "LIKE" + }, + { + "count": 133, + "reactionType": "INTEREST" + }, + { + "count": 129, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6820752708476125184", + "numLikes": 977, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6820752708476125184", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 977, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6820601792322146304,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6820601792322146304", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6820601792322146304)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6820601792322146304)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_joint-co2-targets-must-not-diminish-german-activity-6820601792322146304-6Cqv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6820601791881736192", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6820601792322146304", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6820601792322146304,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6820601792322146304,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6820601791881736192", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "iAvvM7tKOO4Ntmu9NfSnIQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6820601792322146304,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8175688059687450073", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676387525750?e=1677240000&v=beta&t=jhDPs8IY25J68tYD9zdsZ4RBJIU1U3e1fKUAga_RarA", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676387525750?e=1677240000&v=beta&t=2UENcp3E8C5voRH5qJmNXIsmJaAgzQWvkMlQgZcdMLU", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676387525750?e=1677240000&v=beta&t=_kbUiJJw9C4ASSdj-IGo5ZAvNNoLLaTmod-e-lTs-co", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676387525750?e=1677240000&v=beta&t=4M9zztV-BkqQRslZZZ2uOTAHhVeA-hlRZFWzJREA8e4", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHzsL6WrU9fkg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8175688059687450073)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8175688059687450073)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Joint CO2 targets must not diminish German industry, CDU leader warns EU by theguardian.com", + "actionTarget": "https://www.theguardian.com/world/2021/jul/09/joint-co2-targets-must-not-diminish-german-industry-cdu-leader-warns-eu" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Joint CO2 targets must not diminish German industry, CDU leader warns EU" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6820601791881736192,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Armin Laschet, le leader de la CDU (Allemagne) - et possible successeur d'Angela Merkel \u00e0 la rentr\u00e9e - est d'accord pour que tout change, \u00e0 la condition que presque rien ne change. Moins de CO2 oui, mais \u00e0 la condition que ca ne soit pas moins d'industrie ! \n\nLe job sera donc fait par le progr\u00e8s technique, et les \"instruments de march\u00e9\". Incidemment Laschet fait une erreur courante en citant l'European Trading System (le syst\u00e8me de quotas n\u00e9gociables) comme un instrument de march\u00e9 : certes les quotas peuvent s'\u00e9changer une fois obtenus, mais le principe de base de ce syst\u00e8me est identique \u00e0 celui des tickets de rationnement ! A la racine de l'ETS, on trouve bien une autorisation administrative d'\u00e9mettre...\n\nQuoi qu'il en soit, porter \u00e0 la chancellerie du pays le plus influent en Europe une personne qui ne veut rien d'autre que du progr\u00e8s technique et des incitations - qui peuvent \u00e9videmment fournir de quoi faire une petite partie du chemin, mais une petite partie seulement - n'augure pas tr\u00e8s bien de la mise en oeuvre d'un plan cr\u00e9dible pour se d\u00e9faire de la d\u00e9pendance aux \u00e9missions de gaz \u00e0 effet de serre de fa\u00e7on contr\u00f4l\u00e9e en Europe. Nous ferons donc un petit pas de plus vers la baisse involontaire..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6820601791881736192,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6820601792322146304,urn:li:activity:6820601792322146304,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6820601792322146304,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6820601792322146304,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6820601792322146304", + "threadId": "activity:6820601792322146304", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6820601792322146304", + "urn": "urn:li:activity:6820601792322146304", + "numComments": 53, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6820601792322146304", + "reactionTypeCounts": [ + { + "count": 345, + "reactionType": "LIKE" + }, + { + "count": 58, + "reactionType": "MAYBE" + }, + { + "count": 43, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6820601792322146304", + "numLikes": 450, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6820601792322146304", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 450, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6820398054424764416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6820398054424764416", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6820398054424764416)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6820398054424764416)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_p%C3%A9trolius-gazius-charbius-la-v%C3%A9ritable-activity-6820398054424764416-lOV2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6820398053988569088", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6820398054424764416", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6820398054424764416,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6820398054424764416,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6820398053988569088", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "D4vZn1ohCW99PV20OdbV/w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6820398054424764416,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7094214006840099588", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676156375551?e=1677240000&v=beta&t=AucNape-vzTGe9yPMI7ZmzNncUlzlUpkkSBlaWwmBNE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676156375551?e=1677240000&v=beta&t=h1Es0S83DRbZO4E4cRZNAYUwskaPz0bz8SG27l-9sc8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676156375551?e=1677240000&v=beta&t=zp5_L5z7esJWEFTD0guYDPmu7xF2ke5BW1gfR5_rcGM", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676156375551?e=1677240000&v=beta&t=osDuQIzuNkkBFHVt4KtHbG9kgu4FJ92vhec10E0cz54", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFEpUGyfsr-lA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7094214006840099588)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7094214006840099588)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lci.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: P\u00e9trolius, gazius, charbius : la v\u00e9ritable devise des JO by lci.fr", + "actionTarget": "https://www.lci.fr/environnement-ecologie/jeux-olympiques-de-tokyo-petrolius-gazius-charbius-la-veritable-devise-des-jo-2191283.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "P\u00e9trolius, gazius, charbius : la v\u00e9ritable devise des JO" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6820398053988569088,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Fabrice Bonnifet, apr\u00e8s avoir remarqu\u00e9 que le palmar\u00e8s des m\u00e9dailles aux JO reproduisait \u00e0 peu de choses pr\u00e8s l'ordre des pays en mati\u00e8re d'\u00e9missions de gaz \u00e0 effet de serre, revisite la devise des JO, et s'interroge sur leur p\u00e9rennit\u00e9 dans un monde bas carbone.\n\nIl n'a pas tort. Que faut-il pour faire de bons JO ? \n- des athl\u00e8tes qui s'entrainent toute l'ann\u00e9e, dans des infrastructures pr\u00e9vues pour cela. Du temps de la Gr\u00e8ce antique, il y avait un ou deux stades dans le pays, mais rien \u00e0 voir avec la profusion de piscines, gymnases, stades, courts de tennis, man\u00e8ges, golfs, terrains de foot, de rugby, etc, amen\u00e9s par... les combustibles fossiles\n- des spectateurs qui viennent de partout. En voiture, en avion, rarement \u00e0 pied !\n- des postes de t\u00e9l\u00e9 partout, or le num\u00e9rique est un consommateur indirect important d'\u00e9nergies fossiles,\n- des chaines de t\u00e9l\u00e9vision qui payent des droits \u00e9lev\u00e9s, droits eux-m\u00eames rentabilis\u00e9s par la pub ensuite, laquelle pub est rentabilis\u00e9e par des achats... de produits \u00e0 profusion fabriqu\u00e9s gr\u00e2ce \u00e0 l'\u00e9nergie fossile.\n- du temps libre pour regarder la t\u00e9l\u00e9. Or l'accroissement du temps libre, c'est la productivit\u00e9 du travail permise par les fossiles qui nous la donne !\n\nDans le sport aussi, la mondialisation permise par les \u00e9nergies fossiles a frapp\u00e9. Les JO actuels en sont une manifestation parmi d'autres." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6820398053988569088,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6820398054424764416,urn:li:activity:6820398054424764416,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6820398054424764416,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6820398054424764416,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6820398054424764416", + "threadId": "activity:6820398054424764416", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6820398054424764416", + "urn": "urn:li:activity:6820398054424764416", + "numComments": 54, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6820398054424764416", + "reactionTypeCounts": [ + { + "count": 402, + "reactionType": "LIKE" + }, + { + "count": 58, + "reactionType": "MAYBE" + }, + { + "count": 43, + "reactionType": "INTEREST" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6820398054424764416", + "numLikes": 517, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6820398054424764416", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 517, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6820296245811154944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1024481", + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "3NWhcZBEQhyScXOcO86iyw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "3NWhcZBEQhyScXOcO86iyw==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Carbone 4", + "actionTarget": "https://www.linkedin.com/company/carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1024481" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "118,673 followers" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6820259356169277440,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6820259356169277440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6820259356169277440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6820259356169277440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/carbone-4_consultation-publique-sur-la-m%C3%A9thode-ocara-activity-6820259356169277440-3HL1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6820259355347189760", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1024481", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6820259356169277440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6820259356169277440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6820259355347189760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "/gz2mEDtd0XodTdonczfLg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6820259356169277440,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9191119078900318887", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1626076529231?e=1679529600&v=beta&t=_RpAXvA6v1OxIIHyewyG8KsEa4uOSId-YjghPSFEVTE", + "expiresAt": 1679529600000, + "height": 1025 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1626076528942?e=1679529600&v=beta&t=iDNzLRldxySHMeNXzAOOftQBi91Sri-Rf7GWlEjoK0E", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1626076528942?e=1679529600&v=beta&t=PhpYyQ2LygEOO2lGu-wk94FPHo3h_85hWR74rvXLNo8", + "expiresAt": 1679529600000, + "height": 641 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1626076528942?e=1679529600&v=beta&t=v_2Dy8qAxOxC8EAIhZyXo7o_wJZjUliaMYAcHA2GE0c", + "expiresAt": 1679529600000, + "height": 240 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1626076528942?e=1679529600&v=beta&t=ams5s6s-6HyUAeGXRCu4hOR1xygcSGVIDt794qgqaz8", + "expiresAt": 1679529600000, + "height": 80 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1626076528942?e=1679529600&v=beta&t=BeVu4AaPnoliaAX9KBsW8NzXfZj_R2Ny4j59Npi4TiE", + "expiresAt": 1679529600000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D22AQF9BUUMuLjPiA/feedshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9191119078900318887)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9191119078900318887)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "docs.google.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Consultation publique sur la m\u00e9thode OCARA by docs.google.com", + "actionTarget": "https://docs.google.com/forms/d/e/1FAIpQLSfWM92llfzgf879aaK-oDY9C4xZHxwI77W9jJuCF-WzFCGMDA/viewform?usp=sf_link" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Consultation publique sur la m\u00e9thode OCARA" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6820259355347189760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 436, + "length": 5, + "miniCompany": { + "objectUrn": "urn:li:company:25739", + "entityUrn": "urn:li:fs_miniCompany:25739", + "name": "ADEME", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1585329330514?e=1684972800&v=beta&t=Jo5Z26A4h9a4pwnzJuT6V66mHZ2phVtISTlgW-JvpQc", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1585329330514?e=1684972800&v=beta&t=jDsoRzAHGOZrsOlhot-rkNKuWkLKrzH2ysN5atTddyM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1585329330514?e=1684972800&v=beta&t=jTZ3ngyiTdST1d32J_HKbe6Vf0v-ED3ccYxogNtLDZ8", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQGyXOiwGuc0hA/company-logo_" + } + }, + "universalName": "ademe", + "dashCompanyUrn": "urn:li:fsd_company:25739", + "trackingId": "AfxGEqQmTIeMhpKW/NOw+Q==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 443, + "length": 13, + "miniCompany": { + "objectUrn": "urn:li:company:10393861", + "entityUrn": "urn:li:fs_miniCompany:10393861", + "name": "HDI Global SE", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1567523493389?e=1684972800&v=beta&t=7ulFQOH9el8Hinew1F7SdO1YS3fQqUxgIHPUuSaitGw", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1567523493389?e=1684972800&v=beta&t=18xrMFVwH0w21NX96xhSHXr7urOhKcwnkBjwF5MjS6o", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1567523493389?e=1684972800&v=beta&t=-P_w4-_GSaH3KJIwY17n9cAXP7aji5BGl_yItTlM6dA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHh6KJvL5frbw/company-logo_" + } + }, + "universalName": "hdiglobal-se", + "dashCompanyUrn": "urn:li:fsd_company:10393861", + "trackingId": "9+NBmJ+jTledCWyK/5pjtA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 458, + "length": 20, + "miniCompany": { + "objectUrn": "urn:li:company:162834", + "entityUrn": "urn:li:fs_miniCompany:162834", + "name": "Bureau Veritas Group", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1519918464110?e=1684972800&v=beta&t=valOgP1eKQ-pnGBto9AGVZ57tn5Wr538Gkpuprz789c", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1519918464110?e=1684972800&v=beta&t=mvVMPwBUknB6p6UF9HWhSWvDp0_ON237p-Q9bkqqnEE", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1519918464110?e=1684972800&v=beta&t=re9Bm13PVeK8LmxBq7HOi3L_V-7nyHcYO71fdSwNZvU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGedV2n5hbUNA/company-logo_" + } + }, + "universalName": "bureau-veritas-group", + "dashCompanyUrn": "urn:li:fsd_company:162834", + "trackingId": "V3BKN5AlS9C7H0QeEcowqw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 485, + "length": 13, + "miniCompany": { + "objectUrn": "urn:li:company:71251519", + "entityUrn": "urn:li:fs_miniCompany:71251519", + "name": "CCI GRAND EST", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1647441674922?e=1684972800&v=beta&t=-DsyxyR6Ksv_eJGt1wjIEI3iy1K82nHbsga5tXfqd9A", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1647441674922?e=1684972800&v=beta&t=-1vRTBlC_raLuWYh-NPM1f1n8JlqJTC9Sti3XXhLlFQ", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1647441674922?e=1684972800&v=beta&t=qORVys7jMVNNEZuOV--w45tg4MD1w7ZY0GGilOjDO8A", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG6Hrt2zCJViQ/company-logo_" + } + }, + "universalName": "cci-ge", + "dashCompanyUrn": "urn:li:fsd_company:71251519", + "trackingId": "qOd3sIrSR7ijYZKxCqNhIg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "\ud83d\udce3 La consultation du guide m\u00e9thodologique OCARA est ouverte ! \nDu 12 juillet au 13 ao\u00fbt, n'h\u00e9sitez pas \u00e0 participer. \n\n\u27a1\ufe0f La m\u00e9thodologie\u00a0OCARA (Operational Climate Adaptation and Resilience Assessment),\u00a0pr\u00e9sente\u00a0un cadre\u00a0d\u2019analyse permettant aux entreprises d\u2019appr\u00e9hender leur niveau de r\u00e9silience face aux impacts du changement climatique.\n\n\u27a1\ufe0f Pourquoi cette consultation ?\nCe projet de d\u00e9veloppement m\u00e9thodologique est soutenu par l\u2019ADEME, HDI Global SE,\u00a0Bureau Veritas Group et la CCI GRAND EST. Un comit\u00e9 d\u2019experts a aussi \u00e9t\u00e9 associ\u00e9 \u00e0 l\u2019\u00e9laboration de la m\u00e9thode. Enfin, une version z\u00e9ro de la m\u00e9thode a \u00e9t\u00e9 b\u00eata-test\u00e9e aupr\u00e8s de 9 entreprises pilotes.\n\ud83d\udc49 Cette consultation publique se propose d'\u00e9largir encore ce cercle de relecteurs pour b\u00e9n\u00e9ficier de l\u2019\u00e9clairage d\u2019autres experts et utilisateurs potentiels de la m\u00e9thode.\n\n\u27a1\ufe0f A qui cette consultation s\u2019adresse-t-elle ?\nA l\u2019ensemble des publics experts de l\u2019adaptation au changement climatique et des d\u00e9marches de gestion des risques (acad\u00e9mique, institutionnels, etc.) ainsi qu\u2019aux utilisateurs potentiels de la m\u00e9thode (cabinets de conseil, entreprises d\u00e9j\u00e0 connaisseuses du sujet de l\u2019adaptation au changement climatique, etc.)\n\ud83d\udc49 Elle est ouverte du 12 juillet au 13 ao\u00fbt.\n\nEn participant \u00e0 cette consultation, vous contribuez \u00e0 l\u2019\u00e9laboration d\u2019une m\u00e9thodologie pionni\u00e8re sur les impacts du changement climatique et amen\u00e9e \u00e0 jouer un r\u00f4le cl\u00e9 dans la fa\u00e7on dont le sujet est abord\u00e9 par les entreprises.\n\nAfin de restreindre les commentaires aux personnes et organisations les plus pertinentes sur le sujet, il vous est demand\u00e9 de vous inscrire via le formulaire ci-dessous \u2935\ufe0f \n\nMerci d'avance pour votre int\u00e9r\u00eat et votre participation !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6820259355347189760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6820259356169277440,urn:li:activity:6820259356169277440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 2, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6820259356169277440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6820259356169277440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6820259356169277440", + "threadId": "activity:6820259356169277440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6820259356169277440", + "urn": "urn:li:activity:6820259356169277440", + "numComments": 3, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6820259356169277440", + "reactionTypeCounts": [ + { + "count": 34, + "reactionType": "LIKE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6820259356169277440", + "numLikes": 41, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6820259356169277440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 41, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6820296245811154944", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6820296245811154944)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6820296245811154944)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_consultation-publique-sur-la-m%C3%A9thode-ocara-activity-6820296245811154944-z6PH?utm_source=share&utm_medium=member_desktop" + }, + { + "subActionsMenu": { + "title": "Who would you like to unfollow?", + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "KOsjdz18TbWAfk8nURDw4w==" + } + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + } + ] + }, + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_ACTIONS", + "text": "Unfollow" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6820296245274267648", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6820296245811154944", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6820296245811154944,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6820296245811154944,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6820296245274267648", + "excludedFromSeen": false, + "trackingData": { + "requestId": "5f0c3a18-13a3-40d3-bad9-bcb29c9e9373", + "trackingId": "/gz2mEDtd0XodTdonczfLg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6820296245811154944,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6820296245274267648,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il n'y a pas de progr\u00e8s sans mesure. Cette maxime est bien connue dans le monde des gestionnaires, et s'applique aussi aux grands enjeux environnementaux. \n\nC'est gr\u00e2ce au bilan carbone, et \u00e0 son approche par processus, qu'il est possible de s'attaquer de mani\u00e8re op\u00e9rationnelle \u00e0 la d\u00e9pendance aux \u00e9missions de gaz \u00e0 effet de serre. Incidemment, le GHG Protocol et ses \"scope\" ont fait beaucoup de mal \u00e0 la cause, en d\u00e9pla\u00e7ant le d\u00e9bat sur le terrain de la propri\u00e9t\u00e9 des \u00e9missions, alors que le vrai sujet est celui de la d\u00e9pendance, puisque c'est cette derni\u00e8re qui porte le risque. On peut en effet \u00eatre beaucoup plus \u00e0 risque sur des \u00e9missions qui ne sont pas sa propri\u00e9t\u00e9, mais qui sont n\u00e9anmoins indispensables dans la chaine de valeur, que sur des \u00e9missions qui sont sa propri\u00e9t\u00e9.\n\nApr\u00e8s un an de travail, Carbone 4 propose aussi une approche par processus pour l'analyse des risques physiques du changement climatique, avec la m\u00e9thode OCARA - Operational Climate Adaptation and Resilience Assessment - qui est disponible en consultation pour le mois qui vient, avant une parution d\u00e9finitive \u00e0 la rentr\u00e9e.\n\nApr\u00e8s les quelques p\u00e9rip\u00e9ties qui viennent de se produire au Canada, aux USA, en Russie, au Japon, \u00e0 Ta\u00efwan, en Chine, en Norv\u00e8ge, et ailleurs, et malheureusement bient\u00f4t chez nous, et qui ne sont que des pr\u00e9mices h\u00e9las, il est plus que temps de s'emparer de cette question des risques physiques par anticipation.\n\nA vos claviers donc !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6820296245274267648,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6820296245811154944,urn:li:activity:6820296245811154944,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 0, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6820296245811154944,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6820296245811154944,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6820296245811154944", + "threadId": "activity:6820296245811154944", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6820296245811154944", + "urn": "urn:li:activity:6820296245811154944", + "numComments": 0, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6820296245811154944", + "reactionTypeCounts": [ + { + "count": 82, + "reactionType": "LIKE" + }, + { + "count": 11, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6820296245811154944", + "numLikes": 102, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6820296245811154944", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 102, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6820289625639137280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6820289625639137280", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6820289625639137280)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6820289625639137280)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lindustrie-automobile-appelle-emmanuel-macron-activity-6820289625639137280-IXQw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6820289624955478016", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6820289625639137280", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6820289625639137280,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6820289625639137280,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6820289624955478016", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "5gj406ehRItTpMCz0DjPiQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6820289625639137280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9019296207203681395", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675939716010?e=1677240000&v=beta&t=cYf79fz3Xsot-OE1djxnGI7qgNvZpaJJ2875TuiYZ5A", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675939716010?e=1677240000&v=beta&t=94isyd2rGOmveEGx3k2PgvFN4gsxwphFdsng4O7NdbY", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675939716010?e=1677240000&v=beta&t=P9jZzCHfD23smy6k34ZWZesZNL8Iqw5wlElKnlgPIco", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675939716011?e=1677240000&v=beta&t=839b1y6rkx04-bRHYU-SVfnHrjQJTUQIqQJFQ3V7q6E", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF3hBxQJ_73gQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9019296207203681395)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9019296207203681395)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L\u2019industrie automobile appelle Emmanuel Macron \u00e0 l\u2019aide face \u00e0 une transition \u00e9nerg\u00e9tique \u00ab d\u00e9vastatrice \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/economie/article/2021/07/10/l-industrie-automobile-appelle-emmanuel-macron-a-l-aide-face-a-une-transition-energetique-devastatrice_6087815_3234.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L\u2019industrie automobile appelle Emmanuel Macron \u00e0 l\u2019aide face \u00e0 une transition \u00e9nerg\u00e9tique \u00ab\u00a0d\u00e9vastatrice\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6820289624955478016,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pendant des ann\u00e9es, les constructeurs automobiles ont r\u00e9sist\u00e9 \u00e0 l'envie de la Commission europ\u00e9enne de diminuer les \u00e9missions des v\u00e9hicules neufs vendus. Une des raisons est que les marges se font sur les familiales et mod\u00e8les haut de gamme, et donc limiter les \u00e9missions, donc la masse et la puissance, c'est affaiblir les performances \u00e9conomiques.\n\nMais une attitude de r\u00e9sistance d\u00e9bouche rarement sur une logique d'investissement. A leur d\u00e9charge, on peut les comprendre : la m\u00eame Commission demande \"en m\u00eame temps\" que la concurrence soit respect\u00e9e, ce qui interdit de prot\u00e9ger des investissements de long terme en garantissant des march\u00e9s.\n\nPour avancer dans la bonne direction, il aurait fallu s'organiser autrement : imposer aux constructeurs des mesures permettant d'investir dans la bonne direction (v\u00e9hicules de faible masse, thermiques- 2 l aux 100 max - ou \u00e9lectriques), et dans le m\u00eame temps leur garantir un march\u00e9 domestique prot\u00e9g\u00e9. Cela s'appelle... de la politique industrielle.\n\nL'Europe semble d\u00e9couvrir, un peu tard, que ce genre de planification a du bon, en encourageant la cr\u00e9ation d'usines de batteries en grand nombre, avec parfois des aides plus ou moins directes des Etats. Mais c'est un peu tard par rapport aux chinois, qui savent s'accommoder d'une concurrence plus faiblarde (\u00e0 leur profit bien sur), voire des japonais, qui ont aussi, parfois, des politiques domestiques tr\u00e8s fortes.\n\nPour le moment, le mix \"concurrence + aide au consommateur\" est le mix parfait pour favoriser les importations et ne pas encourager les investissements. Pour le faire, le bon cocktail est \"obligation au consommateur + aide au producteur + protection du march\u00e9 domestique + encadrement de la rente qui en nait\", et tout cela en ayant correctement pens\u00e9 \u00e0 l'avance \u00e0 la contrainte de ressources (car il n'est pas sur que la production des constructeurs automobiles europ\u00e9ens puisse physiquement rester la m\u00eame avec de l'\u00e9lectrique, compte tenu de la quantit\u00e9 de m\u00e9taux sp\u00e9cifiques n\u00e9cessaires pour les batteries et moteurs).\n\nL'Europe - donc les Etats qui la composent - le comprendra-t-elle avant d'imploser en croyant qu'elle avancera dans la bonne direction en restant un march\u00e9 ouvert dans un monde sans croissance ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6820289624955478016,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6820289625639137280,urn:li:activity:6820289625639137280,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 87, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6820289625639137280,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6820289625639137280,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6820289625639137280", + "threadId": "activity:6820289625639137280", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6820289625639137280", + "urn": "urn:li:activity:6820289625639137280", + "numComments": 144, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6820289625639137280", + "reactionTypeCounts": [ + { + "count": 984, + "reactionType": "LIKE" + }, + { + "count": 112, + "reactionType": "MAYBE" + }, + { + "count": 108, + "reactionType": "INTEREST" + }, + { + "count": 45, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6820289625639137280", + "numLikes": 1259, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6820289625639137280", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1259, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6819908250406801408,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6819908250406801408", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6819908250406801408)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6819908250406801408)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-interview-dans-le-figaro-magazine-du-activity-6819908250406801408-aIkI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6819908249932836864", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6819908250406801408", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6819908250406801408,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6819908250406801408,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6819908249932836864", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "vECB8PR4yb/8rZUp/yBKTQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6819908250406801408,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8874661821758658289", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676622584585?e=1677240000&v=beta&t=cyGMoWLwS6E2ei8dVu1HTxreOSabRn7IpeqYnnDph60", + "expiresAt": 1677240000000, + "height": 304 + }, + { + "width": 867, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676622584585?e=1677240000&v=beta&t=T1TtkmjhMBEE6WKRdEOyurJIAQ4Lc9zWDaM4gNAtrOg", + "expiresAt": 1677240000000, + "height": 330 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676622584585?e=1677240000&v=beta&t=aRl34nlzlQjx4451U7JlR0OzOjTsX__QrUHwj2AdqSk", + "expiresAt": 1677240000000, + "height": 61 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676622584585?e=1677240000&v=beta&t=FVZL85i24-cw2brkUiqQy0eW3vJi5hNngeQbNEF1lZ0", + "expiresAt": 1677240000000, + "height": 183 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFynyLCctbDVw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8874661821758658289)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8874661821758658289)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 8 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Une interview dans le Figaro Magazine du 3 juillet 2021 by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/interviews/une-interview-dans-le-figaro-magazine-du-3-juillet-2021/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Une interview dans le Figaro Magazine du 3 juillet 2021" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6819908249932836864,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il arrive occasionnellement que mon pr\u00e9nom devienne Jean-Claude. Se tromper dans les pr\u00e9noms nous est arriv\u00e9 \u00e0 tous, mais me retrouver homonyme (de pr\u00e9nom) du sieur Dusse dans un magazine imprim\u00e9 c'est plus rare !\n\nC'est ce qu'il m'est arriv\u00e9 \u00e0 l'occasion d'une interview publi\u00e9e le week-end dernier dans le Figaro Magazine, o\u00f9 il \u00e9tait (un peu trop \u00e0 mon gout, mais lectorat oblige...) question de nucl\u00e9aire et d'\u00e9olien, et, quand m\u00eame, de contraction inexorable de l'\u00e9conomie et (un peu) de vulgarisation des enjeux.\n\nDans cette version imprim\u00e9e (et \u00e9galement celle mise en ligne quand je l'ai consult\u00e9e hier), la r\u00e9daction a modifi\u00e9 le texte apr\u00e8s envoi de mes corrections (sans me soumettre les modifications), avec pour r\u00e9sultat l'apparition d'un gros contresens sur une phrase de ma r\u00e9ponse.\n\nJ'ai donc reproduit sur mon site personnel l'interview telle que je l'avais envoy\u00e9e au magazine. C'est aussi l'occasion de rajouter quelques liens dans le texte pour permettre d'avoir les explications qui sous-tendent une conclusion, en esp\u00e9rant que ca soit utile !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6819908249932836864,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6819908250406801408,urn:li:activity:6819908250406801408,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 27, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6819908250406801408,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6819908250406801408,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6819908250406801408", + "threadId": "activity:6819908250406801408", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6819908250406801408", + "urn": "urn:li:activity:6819908250406801408", + "numComments": 89, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6819908250406801408", + "reactionTypeCounts": [ + { + "count": 566, + "reactionType": "LIKE" + }, + { + "count": 36, + "reactionType": "INTEREST" + }, + { + "count": 32, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6819908250406801408", + "numLikes": 653, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6819908250406801408", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 653, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6819547436831264768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6819547436831264768", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6819547436831264768)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6819547436831264768)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climat-nous-sommes-aux-pr%C3%A9mices-du-r%C3%A9chauffement-activity-6819547436831264768-V0RI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6819547436298604544", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6819547436831264768", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6819547436831264768,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6819547436831264768,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6819547436298604544", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "6wtDj7UQkBkbxw07e3xkUg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6819547436831264768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8463231164070800437", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 698, + "fileIdentifyingUrlPathSegment": "800/0/1676474872125?e=1677240000&v=beta&t=tXvTyZG3rnxelIC3StwYv36WLUggqBJaZqb3YEh5Iac", + "expiresAt": 1677240000000, + "height": 363 + }, + { + "width": 698, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676474872126?e=1677240000&v=beta&t=eBbjEsO16lju5ooGBnrsAv48Krbbx-YXz7BiBhxPHkU", + "expiresAt": 1677240000000, + "height": 363 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676474872126?e=1677240000&v=beta&t=LAHBpweINc6xUdkaK6CBRrqVlwrCWqvZ-7ZFRtC18Xs", + "expiresAt": 1677240000000, + "height": 83 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676474872126?e=1677240000&v=beta&t=2LaZZkXHGaW3kOiBoamyf3WIbuaRe4elgKGR6R9-WEY", + "expiresAt": 1677240000000, + "height": 249 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFMBbQAJuF3gQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8463231164070800437)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8463231164070800437)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "information.tv5monde.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climat : \"Nous sommes aux pr\u00e9mices du r\u00e9chauffement climatique\" by information.tv5monde.com", + "actionTarget": "https://information.tv5monde.com/video/climat-nous-sommes-aux-premices-du-rechauffement-climatique" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climat : \"Nous sommes aux pr\u00e9mices du r\u00e9chauffement climatique\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6819547436298604544,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\"Ce que nous vivons aujourd'hui, ce n'est pas le r\u00e9chauffement climatique, ce sont ses pr\u00e9mices\" : Jean Jouzel, qui a fait partie des premiers scientifiques \u00e0 appara\u00eetre sur la sc\u00e8ne publique fran\u00e7aise pour parler de ce processus, nous rappelle, comme Herv\u00e9 Le Treut dans La Croix (https://lnkd.in/dWGYFB5 ) que, quoi que nous fassions, le monde de demain sera plus hostile que le monde d'hier. \n\nCe qui se passe actuellement n'\u00e9tait pas pr\u00e9vu \"au jour et \u00e0 l'heure pr\u00e8s\" par la communaut\u00e9 scientifique, mais nous ne pouvons pas dire que nous ne savions pas. La litt\u00e9rature scientifique documente depuis des d\u00e9cennies le processus en cours, et, dans les grandes lignes, les \"surprises\" actuelles - canicules, inondations, feux de for\u00eat, d\u00e9p\u00e9rissements de la v\u00e9g\u00e9tation - n'en sont que pour celles et ceux qui n'avaient pas lu la litt\u00e9rature en question.\n\nLa m\u00eame litt\u00e9rature dit aussi que, quoi que nous fassions, la situation va \"empirer\", \u00e0 cause de l'inertie du CO2 dans l'atmosph\u00e8re. M\u00eame la neutralit\u00e9 en 2050, \u00e0 supposer que nous l'atteignons, ne nous permettra pas du tout de retrouver le climat du 20\u00e8 si\u00e8cle. \n\nLes \"pr\u00e9mices\", c'est, depuis juin, des canicules historiques aux USA (qui s'appr\u00eatent \u00e0 en reprendre une couche : https://lnkd.in/dSwNMX8 , et qui connaissent une s\u00e9cheresse sans pr\u00e9c\u00e9dent sur toute la moiti\u00e9 ouest : https://lnkd.in/dQVN83A ), en Europe de l'Est et en Russie, en Gr\u00e8ce, en Scandinavie (https://lnkd.in/dWH_Ms2 ), bient\u00f4t en Espagne et au Maroc (https://lnkd.in/dZBhA5d )...\n\nPar une chance incroyable, la m\u00e9tropole fran\u00e7aise est \u00e9pargn\u00e9e en ce d\u00e9but d'\u00e9t\u00e9. Mais cela ne doit pas nous donner l'illusion que pour nous le temps s'arr\u00eate. Il faut malheureusement se dire que notre tour viendra, et commencer \u00e0 s'occuper un peu plus s\u00e9rieusement de se pr\u00e9parer \u00e0 ce monde diff\u00e9rent, ce qui commence par bien comprendre \u00e0 quoi on doit s'attendre. \n\nEsp\u00e9rons que ce soit comme cela que l'entendent les \"organisations financi\u00e8res internationales\", qui se sont alli\u00e9es avec les banques centrales et les superviseurs, pour cr\u00e9er la \"Central Banks\u2019 and Supervisors\u2019 Climate Training Alliance (CTA)\", pour \"fournir au monde financier des supports de formation concernant le sujet climatique\" : https://lnkd.in/dwFhwRs\n\nIl serait temps !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6819547436298604544,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6819547436831264768,urn:li:activity:6819547436831264768,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 74, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6819547436831264768,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6819547436831264768,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6819547436831264768", + "threadId": "activity:6819547436831264768", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6819547436831264768", + "urn": "urn:li:activity:6819547436831264768", + "numComments": 138, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6819547436831264768", + "reactionTypeCounts": [ + { + "count": 2083, + "reactionType": "LIKE" + }, + { + "count": 247, + "reactionType": "INTEREST" + }, + { + "count": 198, + "reactionType": "MAYBE" + }, + { + "count": 26, + "reactionType": "APPRECIATION" + }, + { + "count": 24, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6819547436831264768", + "numLikes": 2587, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6819547436831264768", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2587, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6819170518168559616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6819170518168559616", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6819170518168559616)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6819170518168559616)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_welsh-government-suspends-all-future-road-building-activity-6819170518168559616-mQeL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6819170517694607360", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6819170518168559616", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6819170518168559616,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6819170518168559616,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6819170517694607360", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "AUpVB+tQ2RJnfCU1aPCqaw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6819170518168559616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7997275537585978527", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676471410417?e=1677240000&v=beta&t=C2vBANGticceGNZjIEYb-T442JSvjjwAVF1ZhqM4NDY", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676471410417?e=1677240000&v=beta&t=m3NuwISOIyOtfG_cpxHLcvQi7WDftSZT1jU1Huw31Bg", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676471410418?e=1677240000&v=beta&t=tJm6jCq-CrIBSjyRfHxSWe6fPYXBdcdfUw_4x8rKZ9E", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676471410418?e=1677240000&v=beta&t=ekTSHs9mcizGnNts7_jwr5SWaro4a7ccGtSXzC88JM8", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGYuVQxWRIehg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7997275537585978527)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7997275537585978527)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Welsh government suspends all future road-building plans by theguardian.com", + "actionTarget": "https://www.theguardian.com/uk-news/2021/jun/22/welsh-government-to-suspend-all-future-road-building-plans" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Welsh government suspends all future road-building plans" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6819170517694607360,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Nos amis gallois nous donnent une le\u00e7on de logique : si le but du jeu est de baisser les \u00e9missions, faut-il construire de nouvelles routes ? \"We need a shift away from spending money on projects that encourage more people to drive\", a, d\u00e9clar\u00e9 un membre du gouvernement r\u00e9gional, lequel gouvernement g\u00e8le tous les projets de nouvelles infrastructures.\n\nNous ferions bien d'en prendre de la graine !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6819170517694607360,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6819170518168559616,urn:li:activity:6819170518168559616,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 128, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6819170518168559616,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6819170518168559616,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6819170518168559616", + "threadId": "activity:6819170518168559616", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6819170518168559616", + "urn": "urn:li:activity:6819170518168559616", + "numComments": 235, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6819170518168559616", + "reactionTypeCounts": [ + { + "count": 2462, + "reactionType": "LIKE" + }, + { + "count": 245, + "reactionType": "PRAISE" + }, + { + "count": 185, + "reactionType": "MAYBE" + }, + { + "count": 50, + "reactionType": "INTEREST" + }, + { + "count": 34, + "reactionType": "EMPATHY" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6819170518168559616", + "numLikes": 2988, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6819170518168559616", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2988, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6819148597746012160,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6819148597746012160", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6819148597746012160)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6819148597746012160)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_habiter-dans-une-soci%C3%A9t%C3%A9-bas-carbone-le-activity-6819148597746012160-u2yv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6819148597221724160", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6819148597746012160", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6819148597746012160,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6819148597746012160,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6819148597221724160", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "Kj4xHqfsP+pstBrrwibvWg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6819148597746012160,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8257443564636898618", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 611, + "fileIdentifyingUrlPathSegment": "800/0/1675759268933?e=1677240000&v=beta&t=19FCuNm7Bn42Z87_8299KoyvPlkiPGSBVz6EOKXVxUk", + "expiresAt": 1677240000000, + "height": 815 + }, + { + "width": 599, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675759268933?e=1677240000&v=beta&t=k6IdOlr6_HLOoGL72kqvkuWfFmGP0u6ilsJjtWJQ7ok", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675759268933?e=1677240000&v=beta&t=M5r7_8NrJFx6MzsRdWLgQAPutxhWHPZEYz_3aODUNm8", + "expiresAt": 1677240000000, + "height": 213 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675759268934?e=1677240000&v=beta&t=UQLX1NCyyKGcciUgjMsM3j__jxAQ3NwEmcLjWSxeAHc", + "expiresAt": 1677240000000, + "height": 640 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFaBmbRtf0Qew/articleshare-shrink_" + }, + "displayAspectRatio": 1.3338788870703764 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8257443564636898618)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8257443564636898618)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Habiter dans une soci\u00e9t\u00e9 bas carbone : le nouveau rapport du Shift Project by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/habiter-societe-bas-carbone-rapport-intermediaire-shift-30-juin/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Habiter dans une soci\u00e9t\u00e9 bas carbone : le nouveau rapport du Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6819148597221724160,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "The Shift Project a publi\u00e9 il y a peu le rapport interm\u00e9diaire portant sur le b\u00e2timent du Plan de Transformation de l'Economie Fran\u00e7aise.\n\nOn y apprend notamment que nous construisons actuellement 400.000 logements par an, alors que la cr\u00e9ation de nouveaux m\u00e9nages est de 200.000 par an. 20% des logements neufs construits sur la p\u00e9riode 2013-2018 sont vacants, et 15% sont des r\u00e9sidences secondaires, tr\u00e8s peu occup\u00e9es. Or, la construction de logements neufs est le premier vecteur d'artificialisation des sols (les 3/4 environ), et un tr\u00e8s gros poste de consommation de mat\u00e9riaux (de loin le premier dans nos activit\u00e9s \"modernes\").\n\nNous raisonnons souvent \"\u00e0 parc constant\" sur les trajectoires de d\u00e9carbonation, mais c'est sans compter la forte augmentation de la surface par personne et l'augmentation de la population. Si ces deux derniers termes \u00e9taient rest\u00e9s constants, les \u00e9missions du parc de logements auraient baiss\u00e9 de 45% depuis 1990, alors qu'elles n'ont baiss\u00e9 que de 15%. \n\nC'est pour cela que dans ce rapport, outre les propositions \"classiques\" sur la massification de la r\u00e9novation (qui pose des probl\u00e8mes de comp\u00e9tences disponibles et de cadre r\u00e9glementaire), nous proposons quelque chose de moins habituel (et probablement moins consensuel) : fortement baisser la production de logements neufs. Avant de sauter en l'air en criant \"au fou\", je propose de bien lire les attendus du rapport !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6819148597221724160,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6819148597746012160,urn:li:activity:6819148597746012160,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 45, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6819148597746012160,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6819148597746012160,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6819148597746012160", + "threadId": "activity:6819148597746012160", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6819148597746012160", + "urn": "urn:li:activity:6819148597746012160", + "numComments": 72, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6819148597746012160", + "reactionTypeCounts": [ + { + "count": 548, + "reactionType": "LIKE" + }, + { + "count": 71, + "reactionType": "MAYBE" + }, + { + "count": 71, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6819148597746012160", + "numLikes": 708, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6819148597746012160", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 708, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6818797817985826816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6818797817985826816", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6818797817985826816)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6818797817985826816)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carbone-leurope-aff%C3%BBte-sa-future-arme-activity-6818797817985826816-MdpQ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6818797817461526528", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6818797817985826816", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6818797817985826816,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6818797817985826816,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6818797817461526528", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "74b8MbWIX6a/gVUkpgn9ow==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6818797817985826816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8709477534721360540", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675856403228?e=1677240000&v=beta&t=cr89OqG-FIo-Fg7HWppa_LljoQhaSCq2WDeIe5a1LKA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675856403228?e=1677240000&v=beta&t=GOLccITKgLZdHbLYyTSTUh2GDtq8X7qbCPvenAuxMJA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675856403228?e=1677240000&v=beta&t=q4FjNNZbuXRRyfevKVQg-YQ8i65VUq0-SXaauqc0XVU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675856403228?e=1677240000&v=beta&t=bN7pGiW4mWxNTfE3MSrcTFYovji1fZjzh5q3dQSpfQ8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFK6wgrMuWKYA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8709477534721360540)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8709477534721360540)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carbone : l'Europe aff\u00fbte sa future arme anti-dumping \u00e9cologique by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/carbone-leurope-affute-sa-future-arme-anti-dumping-ecologique-1330504" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carbone\u00a0: l'Europe aff\u00fbte sa future arme anti-dumping \u00e9cologique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6818797817461526528,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le 14 juillet prochain, la Commission pr\u00e9sentera les mesures comprises dans le \"green deal\", dont un m\u00e9canisme \"d'ajustement aux fronti\u00e8res\", qui a longtemps \u00e9t\u00e9 d\u00e9sign\u00e9 sous le nom de \"taxe carbone aux fronti\u00e8res\".\n\nLe principe est assez simple : il s'agit de mettre sur un pied d'\u00e9galit\u00e9 les productions domestiques et les importations en ce qui concerne le \"prix du carbone\" que les producteurs ont eu \u00e0 payer. Ainsi, on peut augmenter les efforts demand\u00e9s aux producteurs nationaux tout en les prot\u00e9geant de la concurrence \u00e9trang\u00e8re, puisque cette derni\u00e8re doit payer le m\u00eame \"prix du carbone\" pour entrer sur le march\u00e9 europ\u00e9en.\n\nEn th\u00e9orie, un tel syst\u00e8me devrait s'appliquer aux T-shirts comme aux ordinateurs, aux meubles en acier comme aux voitures, aux jouets comme aux oranges.\n\nMais, en pratique, pour faire cela il faudrait disposer du contenu carbone pr\u00e9cis de chaque objet import\u00e9, et de son \u00e9quivalent domestique (en outre souvent fabriqu\u00e9 avec des composants import\u00e9s). C'est impossible en l'\u00e9tat, et c'est la raison pour laquelle le syst\u00e8me se limite pour commencer \u00e0 quelques produits \"de base\" dont la fabrication est tr\u00e8s \u00e9missive (ciment, acier, engrais, aluminium - ciment et acier repr\u00e9sentent plus de 10% des \u00e9missions mondiales), et donc les producteurs sont par ailleurs soumis au syst\u00e8me de quotas. Il sera \"juste\" demand\u00e9 aux importateurs d'acheter des quotas comme si leur mat\u00e9riau avait \u00e9t\u00e9 produit en Europe. \n\nLa bonne question est de savoir si le rythme de baisse attendu des \u00e9missions des producteurs domestiques et des producteurs \u00e9trangers sera, gr\u00e2ce \u00e0 ce syst\u00e8me, en ligne avec les engagements de neutralit\u00e9 pris par ailleurs. Au vu du pass\u00e9 on peut en douter, m\u00eame si il est \u00e9videmment pertinent de mettre ce syst\u00e8me en place." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6818797817461526528,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6818797817985826816,urn:li:activity:6818797817985826816,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 39, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6818797817985826816,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6818797817985826816,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6818797817985826816", + "threadId": "activity:6818797817985826816", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6818797817985826816", + "urn": "urn:li:activity:6818797817985826816", + "numComments": 100, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6818797817985826816", + "reactionTypeCounts": [ + { + "count": 535, + "reactionType": "LIKE" + }, + { + "count": 59, + "reactionType": "MAYBE" + }, + { + "count": 55, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6818797817985826816", + "numLikes": 656, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6818797817985826816", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 656, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6818482927773478912,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6818482927773478912", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6818482927773478912)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6818482927773478912)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_webinaire-net-zero-initiative-pr%C3%A9sentation-activity-6818482927773478912-A-u5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6818482927110778880", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6818482927773478912", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6818482927773478912,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6818482927773478912,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6818482927110778880", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "TSoMxtFhQ1gx+p0JS8sq8A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6818482927773478912,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8652825731137194242", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1624369149528?e=1677240000&v=beta&t=GVsNdGFKUfkHNdTOwCzspb0h3nTKC4aTTAnhxJvA4Qc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1624369149528?e=1677240000&v=beta&t=tepYXwCuXTIaxAgZ930ylt7RBopkd1Uae5TPWHGJta0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1624369149528?e=1677240000&v=beta&t=oLdWNa8S-twVpAgbfXsDKwaOiTttYTR2Os1kpMU59bE", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1624369149528?e=1677240000&v=beta&t=7PB9Eu1SAVq6y0NK9RTi5iKBI7-O89cj9ez-PsaW9z0", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQG3F6iXpjjQEw/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8652825731137194242)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8652825731137194242)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Webinaire - Net Zero Initiative : pr\u00e9sentation des r\u00e9sultats des travaux 2020-2021 - Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/webinaire-net-zero-initiative-2021/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Webinaire - Net Zero Initiative : pr\u00e9sentation des r\u00e9sultats des travaux 2020-2021 - Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6818482927110778880,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 22, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "h2zztu2sRXSO1RwptxlkWA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Il y a un an environ, Carbone 4 publiait le r\u00e9f\u00e9rentiel Net Zero Initiative, posant les bases sur la mani\u00e8re de confronter une organisation (une entreprise, par exemple) vis-\u00e0-vis de la neutralit\u00e9 mondiale qu'il faut atteindre le plus vite possible pour limiter la casse en mati\u00e8re de d\u00e9rive climatique.\n\nDepuis nous avons un peu travaill\u00e9, et nous vous proposons demain un webinaire pour pr\u00e9senter le chemin parcouru. Deux sujets seront \u00e0 l'ordre du jour.\n\nLe premier concerne ce que l'on appelle les \u00e9missions \u00e9vit\u00e9es. Elles repr\u00e9sentent conventionnellement le \"bien\" que les produits ou services d'une entreprises peuvent faire aux \u00e9missions de leur secteur de client\u00e8le. Exemple : si mon entreprise vend des v\u00e9los \u00e9lectriques qui permettent d'envoyer des voitures \u00e0 la casse, je cr\u00e9e des \"\u00e9missions \u00e9vit\u00e9es\" dans le secteur des d\u00e9placements de personnes.\n\nQuelle m\u00e9trique, et quelles r\u00e8gles de calcul appliquer pour mesurer la capacit\u00e9 d\u2019une entreprise \u00e0 contribuer \u00e0 la d\u00e9carbonation de son \u00e9cosyst\u00e8me ?\n\nLe deuxi\u00e8me sujet concerne les puits de carbone. Pour le moment, la r\u00e8gle suivie dans le cadre de a compensation est simple : l'entreprise qui apporte un financement additionnel sur un projet de s\u00e9questration, ou de d\u00e9forestation \u00e9vit\u00e9e, ou d'efficacit\u00e9 \u00e9nerg\u00e9tique, s'octroie la totalit\u00e9 des \u00e9missions \u00e9vit\u00e9es sur la totalit\u00e9 de dur\u00e9e de vie du projet, et les d\u00e9duit de ses \u00e9missions propres.\n\nA l'examen, cette mani\u00e8re de faire n'est pas \"physiquement\" pertinente. Mais il faut quand m\u00eame augmenter les puits. Du coup, quelle m\u00e9thode une entreprise peut employer pour se fixer des objectifs sur sa contribution aux puits de carbone, et comment compter cette derni\u00e8re ? (non d\u00e9ductible des \u00e9missions par ailleurs, ca se compte \"\u00e0 part\").\n\nRendez vous demain pour en discuter !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6818482927110778880,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6818482927773478912,urn:li:activity:6818482927773478912,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 18, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6818482927773478912,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6818482927773478912,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6818482927773478912", + "threadId": "activity:6818482927773478912", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6818482927773478912", + "urn": "urn:li:activity:6818482927773478912", + "numComments": 21, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6818482927773478912", + "reactionTypeCounts": [ + { + "count": 250, + "reactionType": "LIKE" + }, + { + "count": 12, + "reactionType": "INTEREST" + }, + { + "count": 11, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6818482927773478912", + "numLikes": 279, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6818482927773478912", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 279, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6818439212107362306,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6818439212107362306", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6818439212107362306)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6818439212107362306)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-e-commerce-est-il-vraiment-un-%C3%A9l%C3%A9ment-activity-6818439212107362306-EIwT?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6818439211369160704", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6818439212107362306", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6818439212107362306,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6818439212107362306,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6818439211369160704", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "aqXp7BgBsVk4TLe8Y/9/uA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6818439212107362306,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7225028048234201981", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675705318553?e=1677240000&v=beta&t=Zr4eqqi8b7uf0QJnUwSJgb2gSlWOBFRwL6UdPYfGsuE", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675705318553?e=1677240000&v=beta&t=Cl2Ti5KnADm-zSA2t5PsDiqSCbqB8H9shfEXPRnsDmk", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675705318553?e=1677240000&v=beta&t=CSLRyklur5gG_TzxBEWeKatrSm58Pg8Z6duSS7JU4vI", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675705318553?e=1677240000&v=beta&t=T1tyXyToggBdFMU-12l-9LnNLzXtq9Tl7QYQp4Qm_to", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEuSaZrBJ0_EQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7225028048234201981)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7225028048234201981)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le e-commerce est-il vraiment un \u00e9l\u00e9ment cl\u00e9 de la d\u00e9carbonation du transport de marchandises ? | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/decryptage-e-commerce-decarbonation-transport" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le e-commerce est-il vraiment un \u00e9l\u00e9ment cl\u00e9 de la d\u00e9carbonation du transport de marchandises ? | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6818439211369160704,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 112, + "length": 15, + "miniProfile": { + "firstName": "Juliette", + "lastName": "Sorret", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAB56u-8BwqCL6kAIqtrzs00IsCeHGH7LvQg", + "occupation": "Consultante senior chez Carbone 4", + "objectUrn": "urn:li:member:511359983", + "entityUrn": "urn:li:fs_miniProfile:ACoAAB56u-8BwqCL6kAIqtrzs00IsCeHGH7LvQg", + "publicIdentifier": "juliette-sorret-abb305123", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1574332553227?e=1681948800&v=beta&t=DADUu3JIY7zDwyIW6WB0ZhnXm1jRxPGDw9S2rQo-bZ4", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1574332553227?e=1681948800&v=beta&t=Ip4am9QwkfCchIczf2qKUhYLnBB0DTyTdXbg2oQG3E4", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1574332553227?e=1681948800&v=beta&t=V4dhkwACYGBes8EJPI4K4x_hDlvmPjq5hhdDIX4f4gM", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1574332553227?e=1681948800&v=beta&t=gv9mFtIzuPsyFR5f3oYNgftzVRZZMNQr0eKI1LEWvVs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQF768XzvhL52A/profile-displayphoto-shrink_" + } + }, + "trackingId": "HCYQnp/STY+UbA5OJ4cpcA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 131, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "cfc3jDabRC+EtXs644XwyA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Commerce physique contre e-commerce : qui gagne la bataille du carbone ? Pas si simple, explique cet article de Juliette Sorret de Carbone 4, car le plus souvent un achat en e-commerce vient s'ajouter au commerce en magasin, et non le remplacer. L'apparition du e-commerce a donc \u00e9t\u00e9 aussi un inducteur d'achats suppl\u00e9mentaires, pas juste un rempla\u00e7ant de l'achat en magasin. Accessoirement il d\u00e9place un peu plus la valeur ajout\u00e9e et la ma\u00eetrise de nos flux vers des centres de d\u00e9cisions des Gafa.\n\nA supposer que l'achat \"\u00e0 distance\" remplace l'achat en magasin, qui gagne ? Aux USA, o\u00f9 le commerce de centre ville n'existe quasiment nulle part, pour l'excellente raison que la notion m\u00eame de \"centre ville dense\" n'existe pas (les villes US sont pour l'essentiel des banlieues \u00e9tal\u00e9es de bout en bout), et o\u00f9 les magasins sont rassembl\u00e9s dans des \"mall\" o\u00f9 tout le monde va en voiture, l'empreinte carbone d'un achat en magasin est quasiment \u00e9quivalente \u00e0 celle d'un achat en e-commerce. Il y a moins de d\u00e9placements certes, mais plus de camion, et surtout beaucoup plus d'emballages (dont le recyclage ne supprime pas les \u00e9missions de fabrication !).\n\nEn France, il est donc possible que l'avantage soit au magasin physique, car les \u00e9missions dues \u00e0 l'emballage seront \u00e0 peu pr\u00e8s les m\u00eames, alors que le d\u00e9placement pour aller au magasin laisse une part plus importante, tous magasins confondus, \u00e0 \"autre chose que la voiture\".\n\nEn outre le d\u00e9veloppement du e-commerce est un inducteur d'artificialisation des sols, \u00e0 travers la construction d'entrep\u00f4ts, et de leurs surfaces de desserte (parkings, routes, etc).\n\nLa meilleure mani\u00e8re d'\u00e9viter les \u00e9missions du commerce, dans tous les cas de figure, est... la sobri\u00e9t\u00e9, c'est \u00e0 dire acheter le moins de choses possibles, puisque cela \u00e9vite les \u00e9missions de fabrication et de distribution.\n\nC'est d\u00e9j\u00e0 ce \u00e0 quoi sont contraints les m\u00e9nages \"modestes\", me r\u00e9torquera-t-on. En fait, m\u00eame au sein des m\u00e9nages \"modestes\", par exemple les ouvriers, la proposition \"On devrait donner la priorit\u00e9 \u00e0 l\u2019environnement m\u00eame si cela peut ralentir la croissance \u00e9conomique de votre pays et faire perdre des emplois\" recueille plus d'affirmations que la proposition inverse (privil\u00e9gier la croissance \u00e9conomique et les emplois m\u00eame si cela peut avoir des cons\u00e9quences n\u00e9fastes pour l\u2019environnement), comme on peut le voir p. 18 de https://lnkd.in/diivqAe. Le vrai sujet n'est donc peut-\u00eatre plus le niveau de consommation dans l'absolu, mais la capacit\u00e9 \u00e0 concevoir un effort collectif \u00e9quitablement r\u00e9parti." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6818439211369160704,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6818439212107362306,urn:li:activity:6818439212107362306,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 24, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6818439212107362306,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6818439212107362306,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6818439212107362306", + "threadId": "activity:6818439212107362306", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6818439212107362306", + "urn": "urn:li:activity:6818439212107362306", + "numComments": 33, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6818439212107362306", + "reactionTypeCounts": [ + { + "count": 305, + "reactionType": "LIKE" + }, + { + "count": 50, + "reactionType": "INTEREST" + }, + { + "count": 43, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6818439212107362306", + "numLikes": 409, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6818439212107362306", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 409, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6818213763213213696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6818213763213213696", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6818213763213213696)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6818213763213213696)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_un-futur-sans-travail-ce-sc%C3%A9nario-nous-activity-6818213763213213696-geMh?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6818213762592452609", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6818213763213213696", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6818213763213213696,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6818213763213213696,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6818213762592452609", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "ALGVnKQdF65WH03Y9O9eTg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6818213763213213696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8796574234760370489", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676463950127?e=1677240000&v=beta&t=oXTvo0uAitdHnEJE9ueS8dsOnCSHexeb9-fAY7-V7DY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676463950127?e=1677240000&v=beta&t=FlN6pTagcF9X5cRlXxlQ1BTlTdZuuvnRwOOynTmnCL0", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676463950128?e=1677240000&v=beta&t=i9-LZ-LXpQPCc6K8OZ548sXG9DKZAC3NgSpCKMrSB7g", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676463950128?e=1677240000&v=beta&t=Nz8ZmhdMXzO7TK0jiKV335E3zgg3CDM-0tZA2pF469I", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGgc7Qp3UxNDA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8796574234760370489)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8796574234760370489)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "start.lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab Un futur sans travail : ce sc\u00e9nario, nous devons le prendre tr\u00e8s au s\u00e9rieux \u00bb by start.lesechos.fr", + "actionTarget": "https://start.lesechos.fr/societe/economie/un-futur-sans-travail-ce-scenario-nous-devons-le-prendre-tres-au-serieux-1327362" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0Un futur sans travail : ce sc\u00e9nario, nous devons le prendre tr\u00e8s au s\u00e9rieux \u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6818213762592452609,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A l'avenir, il y aura moins de travail \u00e0 cause \"des technologies\" et de l'intelligence artificielle, selon cette interview de Daniel Susskind, qui a \u00e9crit un livre o\u00f9 il explique comment se pr\u00e9parer \u00e0 un avenir sans travail. \"Si nous nous dirigeons vers un monde avec moins de travail, nous devons donc penser davantage \u00e0 la fa\u00e7on d'organiser le temps libre\", indique l'auteur.\n\nCe point de vue consiste \u00e0 prolonger les tendances du pass\u00e9. De fait, l'essentiel du travail physique qui occupait nos anc\u00eatres n'est plus d'actualit\u00e9, gr\u00e2ce aux machines. L'agriculture, qui occupait les 2/3 de la population active en 1800, en occupe aujourd'hui p\u00e9niblement 2% ; les tracteurs, usines d'engrais, usines agroalimentaires, usines phytosanitaires, mines de phosphate, et autres auxiliaires m\u00e9canis\u00e9s ont pris le relais.\n\nLes ouvriers, qui repr\u00e9sentaient 40% des emplois en 1974, sont descendus \u00e0 20%. A la place, des machines.\n\nC'est de l\u00e0 qu'est venue l'augmentation du \"temps libre\", que nous avons affect\u00e9 \u00e0 des \u00e9tudes plus longues, des retraites plus pr\u00e9coces, des semaines moins charg\u00e9es, des cong\u00e9s pay\u00e9s, etc. \n\nNous avons aussi transform\u00e9 certaines activit\u00e9s domestiques en emplois : la garde d'enfants, le soin, la transmission du savoir (autrefois une affaire familiale, c'est devenu une activit\u00e9 majeure), etc. C'est, d'une certaine mani\u00e8re, des activit\u00e9s pour \"passer - agr\u00e9ablement - le temps\". Nous avons cr\u00e9\u00e9 les consultants, aussi, qui n'existent pas dans un monde sans machines :)\n\nNotre auteur semble penser que tout cela va encore s'amplifier. Il est permis d'en douter. Au vu du r\u00f4le des machines, un monde sobre en \u00e9nergie a peu de chances d'\u00eatre un monde de loisirs. Ca sera bien plus probablement un monde avec un temps plus important consacr\u00e9 \u00e0 des t\u00e2ches productives." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6818213762592452609,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6818213763213213696,urn:li:activity:6818213763213213696,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 140, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6818213763213213696,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6818213763213213696,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6818213763213213696", + "threadId": "activity:6818213763213213696", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6818213763213213696", + "urn": "urn:li:activity:6818213763213213696", + "numComments": 226, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6818213763213213696", + "reactionTypeCounts": [ + { + "count": 986, + "reactionType": "LIKE" + }, + { + "count": 211, + "reactionType": "MAYBE" + }, + { + "count": 128, + "reactionType": "INTEREST" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6818213763213213696", + "numLikes": 1345, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6818213763213213696", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1345, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6817814175352397824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6817814175352397824", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6817814175352397824)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6817814175352397824)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_the-key-to-facing-the-energy-transition-is-activity-6817814175352397824-wQpI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6817814174735835136", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6817814175352397824", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6817814175352397824,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6817814175352397824,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6817814174735835136", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "fZra9Q6FR7rfkB0Z+lopSA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6817814175352397824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8242937676187350763", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1625212873320?e=1677240000&v=beta&t=YP6FkIsAVMh0IMK52cadCxPRDQmx5iDC7dEmbY4Gr2k", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1625212873320?e=1677240000&v=beta&t=_IJvsdydhjIci-5-w54_3YNFRjOZn0kHA9NHdzsj6Vc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1625212873320?e=1677240000&v=beta&t=gFyKXXV2n_bgzHuhqp2NbsqhrN6zsJ6VDSyU9eqBec4", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1625212873320?e=1677240000&v=beta&t=fxIPDvqfVkCJuYo5T81jY5qrtw5dy8tsMVRP1Y1r_as", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQH-P2LpaZqp0g/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8242937676187350763)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8242937676187350763)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbon4finance.com \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: The key to facing the energy transition is Scope 3 by carbon4finance.com", + "actionTarget": "http://www.carbon4finance.com/article-scope-3/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "The key to facing the energy transition is Scope 3" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6817814174735835136,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1427, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "eQN5J6vFSLCdqnEALCvcyg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Dans le jargon des comptables du carbone, le \"scope 3\" d\u00e9signe les \u00e9missions qui permettent \u00e0 une entreprise de fonctionner mais qui ne concernent pas l'usage direct de l'\u00e9nergie par l'entreprise en question.\n\nCe sont par exemple les \u00e9missions permettant aux composants et services d'\u00eatre fabriqu\u00e9s par les fournisseurs (et les fournisseurs des fournisseurs), et aux clients d'utiliser (ou de faire traiter en fin de vie) les produits vendus. Ce sont encore les \u00e9missions venant en contrepartie des d\u00e9placements des salari\u00e9s ou des clients. Une contrainte sur ces \u00e9missions \"g\u00eanera\", un peu ou mortellement, l'entreprise qui en d\u00e9pend, m\u00eame si ce ne sont pas \"ses\" \u00e9missions.\n\nLorsque le monde financier \u00e9value les \"risques de transition\" d'une entreprise, trop souvent encore il ne regarde pas le scope 3. Cela revient \u00e0 comparer 2 constructeurs automobiles sur la seule base des consommations d'\u00e9nergie dans leurs usines, mais sans prendre en compte le fait que l'un fabrique des voitures \u00e9lectriques pendant que l'autre fait des voitures \u00e0 essence. Cela revient \u00e0 comparer 2 magasins sans se pr\u00e9occuper de la distance moyenne parcourue en voiture par leurs clients, ou le contenu carbone des produits qu'ils vendent.\n\nCette approche ne permet donc pas de \"voir venir\" la perte de valeur d'une entreprise en cas de contrainte sur les \u00e9missions qui s'appliquerait \u00e0 ses clients ou \u00e0 ses fournisseurs. Nous consid\u00e9rons donc, \u00e0 Carbon4 Finance , que cette mani\u00e8re de faire met... le gestionnaire d'actifs \u00e0 risque. Celui de ne pas avoir respect\u00e9 son devoir fiduciaire, qui consiste, dans le monde financier, \u00e0 tout faire pour pr\u00e9server la valeur de l'\u00e9pargne qui lui a \u00e9t\u00e9 confi\u00e9e. \n\nEn temps ordinaire, comme l'expliquent les auteurs de l'Illusion de la Finance Verte (https://lnkd.in/dRS9vNZ ) ce devoir fiduciaire est plut\u00f4t de nature \u00e0 emp\u00eacher les investisseurs de \"faire le bien\" en privil\u00e9giant des activit\u00e9s rentables mais mauvaises pour le climat.\n\nMais, en ce qui concerne le scope 3, on peut imaginer l'exact inverse : peut-\u00eatre qu'un jour, des \u00e9pargnants se retournent contre les gestionnaires de leur \u00e9pargne pour avoir d\u00e9lib\u00e9r\u00e9ment limit\u00e9 leur analyse \u00e0 une partie du risque. Ce m\u00eame devoir fiduciaire forcera alors les acteurs du monde financier \u00e0 \"faire le bien\", c'est \u00e0 dire \u00e9valuer les risques climat sur l'ensemble de la chaine de valeur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6817814174735835136,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6817814175352397824,urn:li:activity:6817814175352397824,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 19, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6817814175352397824,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6817814175352397824,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6817814175352397824", + "threadId": "activity:6817814175352397824", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6817814175352397824", + "urn": "urn:li:activity:6817814175352397824", + "numComments": 32, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6817814175352397824", + "reactionTypeCounts": [ + { + "count": 454, + "reactionType": "LIKE" + }, + { + "count": 50, + "reactionType": "INTEREST" + }, + { + "count": 31, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6817814175352397824", + "numLikes": 552, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6817814175352397824", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 552, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6817726562138378240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6817726562138378240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6817726562138378240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6817726562138378240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_canada-to-ban-sale-of-new-fuel-powered-cars-activity-6817726562138378240-x9tL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6817726561588936705", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6817726562138378240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6817726562138378240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6817726562138378240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6817726561588936705", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "grml+T+5WZ/HEZ1cMZp9sQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6817726562138378240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7857154041295399248", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676091177482?e=1677240000&v=beta&t=eCezZEHo06AkaKY8OLyyA7QDRO_rVb26NzbenKZNMpk", + "expiresAt": 1677240000000, + "height": 418 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676091177482?e=1677240000&v=beta&t=J8E5_WDmgTp5IyMzHc4bo9IIOv3qesMEUDeBJTcsKKI", + "expiresAt": 1677240000000, + "height": 628 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676091177483?e=1677240000&v=beta&t=Y7ZAHfuLYGu9z8tbtlKF80vxlEN_Q9NTVqGxdhhEjg4", + "expiresAt": 1677240000000, + "height": 83 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676091177483?e=1677240000&v=beta&t=nVHLLerO3dayIb4f1f9NDAmN8linW8I-uooC8zhAIoA", + "expiresAt": 1677240000000, + "height": 251 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEOf5I9VDsypQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7857154041295399248)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7857154041295399248)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "reuters.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Canada to ban sale of new fuel-powered cars and light trucks from 2035 by reuters.com", + "actionTarget": "https://www.reuters.com/world/americas/canada-ban-sale-new-fuel-powered-cars-light-trucks-2035-2021-06-29/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Canada to ban sale of new fuel-powered cars and light trucks from 2035" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6817726561588936705,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il est difficile de savoir cette annonce a d\u00e9lib\u00e9r\u00e9ment pr\u00e9c\u00e9d\u00e9 la vague de chaleur qui devait s'abattre sur le pays quelques jours plus tard, mais le pays des sables bitumineux a annonc\u00e9 une interdiction \u00e0 la vente des v\u00e9hicules \u00e0 moteur \u00e0 combustion interne \u00e0 partir de 2035.\n\nLes pays qui ont pris un tel engagement se multiplient. Cela pose \u00e9videmment plein de questions sur la capacit\u00e9 \u00e0 substituer 1 pour 1 le milliard de voitures thermiques d'une tonne et quelques sur terre, car c'est g\u00e9n\u00e9ralement cela que les gens ont en t\u00eate (l'industrie va-t-elle pouvoir suivre ; les ressources m\u00e9talliques n\u00e9cessaires seront-elles l\u00e0 ; la production \u00e9lectrique d\u00e9carbon\u00e9e et pilotable va-t-elle \u00eatre au rendez-vous ; etc), mais \u00e0 tout le moins le signal donn\u00e9 - on arr\u00eate de vendre des p\u00e9trolettes - va dans le bon sens.\n\nEt, par ailleurs, cela montre que de nombreux pays font le choix de la voie r\u00e9glementaire - on interdit l'achat - plut\u00f4t que fiscale - on taxe les carburants jusqu'\u00e0 ce que le consommateur choisisse de lui-m\u00eame d'acheter \u00e9lectrique - pour diminuer le parc de voitures \u00e0 p\u00e9trole en circulation." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6817726561588936705,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6817726562138378240,urn:li:activity:6817726562138378240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6817726562138378240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6817726562138378240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6817726562138378240", + "threadId": "activity:6817726562138378240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6817726562138378240", + "urn": "urn:li:activity:6817726562138378240", + "numComments": 115, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6817726562138378240", + "reactionTypeCounts": [ + { + "count": 563, + "reactionType": "LIKE" + }, + { + "count": 47, + "reactionType": "INTEREST" + }, + { + "count": 45, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6817726562138378240", + "numLikes": 679, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6817726562138378240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 679, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6817487109943791616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6817487109943791616", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6817487109943791616)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6817487109943791616)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-femmes-et-le-changement-climatique-activity-6817487109943791616-n1Vz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6817487109381726208", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6817487109943791616", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6817487109943791616,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6817487109943791616,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6817487109381726208", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "Fyg6GbR86Bfph/X8DWq1YA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6817487109943791616,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9216435485143442732", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1624947390034?e=1677240000&v=beta&t=SBugVUC3XePPeZLl72nI1XnpX1tqtq0x8oGb717Hex0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1624947390034?e=1677240000&v=beta&t=zR9vBCXMssvib_o0rPifN0W9095pQX8yfRTotY7LZgQ", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1624947390034?e=1677240000&v=beta&t=GYBOzLpFR4ikUHjlaKJZKzc3lPBRz9SXt9voBd6_QWU", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1624947390034?e=1677240000&v=beta&t=hbvSAaLwfUKjGsaKVDY89xRS0bELMWsgZ48kPDQbMq8", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEFAEyeG4KwGQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9216435485143442732)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9216435485143442732)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "tnova.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les femmes et le changement climatique by tnova.fr", + "actionTarget": "https://tnova.fr/notes/les-femmes-et-le-changement-climatique" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les femmes et le changement climatique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6817487109381726208,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Terra Nova publie un sondage (un de plus !) sur les fran\u00e7ais et le changement climatique, avec pour particularit\u00e9 que leur angle principal est de regarder la diff\u00e9rence entre hommes et femmes en fonction de la question pos\u00e9e.\n\nOn y apprend que les femmes d\u00e9clarent \u00eatre plus pr\u00e9occup\u00e9es par l'environnement que les hommes (10% de plus), sont un peu moins \"climatosceptiques\" (8% de moins), sont 10% moins nombreuses \u00e0 souscrire \u00e0 la proposition \"On devrait donner la priorit\u00e9 \u00e0 la croissance \u00e9conomique et aux emplois m\u00eame si cela peut avoir des cons\u00e9quences n\u00e9fastes pour l\u2019environnement\", ou encore qu'elles sont plus nombreuses \u00e0 d\u00e9clarer \"faire les bons gestes\" (baisser le thermostat, manger moins de viande, moins acheter et moins emball\u00e9, prendre les transports en commun ou le v\u00e9lo, etc). \n\nSur ce dernier point il s'agit bien d'une auto-d\u00e9claration, non d'une observation valid\u00e9e par un tiers, et il est \u00e9videmment impossible de savoir si les femmes sont effectivement plus \"vertueuses\", ou si, plus pr\u00e9occup\u00e9es, elles sont plus nombreuses \u00e0 avoir envie d'\u00eatre align\u00e9es... et donc \u00e0 le dire.\n\nMais il y a deux points \"importants\" sur lesquels elles sont moins favorables \u00e0 des mesures d\u00e9carbonantes collectives que les hommes : restreindre la mobilit\u00e9 (quelques % de diff\u00e9rence ; les hommes sont un peu plus favorables), et remplacer le charbon par du nucl\u00e9aire. Il y a notamment 20% de diff\u00e9rence sur ce dernier point, qui est celui pour lequel l'\u00e9cart hommes-femmes est le plus marqu\u00e9. Il serait int\u00e9ressant de comprendre pourquoi, via des \u00e9tudes approfondies (et des entretiens), et pas juste un sondage." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6817487109381726208,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6817487109943791616,urn:li:activity:6817487109943791616,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6817487109943791616,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6817487109943791616,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6817487109943791616", + "threadId": "activity:6817487109943791616", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6817487109943791616", + "urn": "urn:li:activity:6817487109943791616", + "numComments": 104, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6817487109943791616", + "reactionTypeCounts": [ + { + "count": 305, + "reactionType": "LIKE" + }, + { + "count": 83, + "reactionType": "MAYBE" + }, + { + "count": 28, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6817487109943791616", + "numLikes": 424, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6817487109943791616", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 424, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6817018532342063104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6817018532342063104", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6817018532342063104)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6817018532342063104)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-co2-jusquau-ciel-activity-6817018532342063104-zsYZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6817018531809398784", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6817018532342063104", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6817018532342063104,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6817018532342063104,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6817018531809398784", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "xnNyGDS9ocDe1a28hc6xsA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6817018532342063104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8485942085802134703", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 525, + "fileIdentifyingUrlPathSegment": "800/0/1675632843627?e=1677240000&v=beta&t=fjlsbUxj7r6aSv3yVBzIAWJmVsJ-zUP37AW8S5Br3j4", + "expiresAt": 1677240000000, + "height": 248 + }, + { + "width": 525, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675632843627?e=1677240000&v=beta&t=MG5rRRazF0YelsDg4OvaWyidI8tqkdv8UpiWh99UPwM", + "expiresAt": 1677240000000, + "height": 248 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675632843627?e=1677240000&v=beta&t=0WnmtvBrR4APVh3rGONilvvLXvIprsxdPMgvGsyD42M", + "expiresAt": 1677240000000, + "height": 75 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675632843627?e=1677240000&v=beta&t=bh3xptxrHtZwpnsdAOVIbq0_HIOMWtbbqqev8okSTWs", + "expiresAt": 1677240000000, + "height": 226 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHLV__rILE6JA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8485942085802134703)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8485942085802134703)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le CO2, jusqu'au ciel ? by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/articles-de-presse/le-co2-jusquau-ciel/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le CO2, jusqu'au ciel ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6817018531809398784,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En 1972, une \u00e9quipe de dynamiciens des syst\u00e8mes du Massachusetts Institute of Technology publiait une version vulgaris\u00e9e de leur travail sur le \"destin\" d'une humanit\u00e9 ne s'imposant pas de limite volontaire \u00e0 son expansion : \"The Limits to Growth\", parfois appel\u00e9 \"Rapport du Club de Rome\" (analyse compl\u00e8te l\u00e0 : https://lnkd.in/ev4N-EA ).\n\nLeur conclusion \u00e9tait simple mais tr\u00e8s d\u00e9sagr\u00e9able : quelles que soient les hypoth\u00e8ses (compatibles avec une plan\u00e8te de 13000 km de diam\u00e8tre) en mati\u00e8re de ressources disponibles, et de capacit\u00e9 de l'environnement \u00e0 \"\u00e9purer\" notre pollution (dont le changement climatique fait partie), une absence de limitation volontaire de nos activit\u00e9s productives (\"l'\u00e9conomie\") conduit le syst\u00e8me humain \u00e0 commencer \u00e0 s'effondrer au cours du 21\u00e8 si\u00e8cle. \n\nBien sur, selon les hypoth\u00e8ses c'est plut\u00f4t 2030 ou 2080, mais cette diff\u00e9rence est faible au regard de la dur\u00e9e de vie pass\u00e9e de notre esp\u00e8ce (100.000 ans en ordre de grandeur).\n\nDans cette tribune parue dans l'Express, j'essaie d'expliquer en quoi, appliqu\u00e9e \u00e0 nos \u00e9missions de CO2, cette analyse vient battre en br\u00e8che l'id\u00e9e que \"si nous ne faisons rien, les \u00e9missions augmentent sans cesse jusqu'en 2100\". Si nous \"ne faisons rien\", nous sommes juste en train de suivre le chemin qui nous m\u00e8ne \u00e0 un effondrement avant 2100, et cela aura accessoirement comme cons\u00e9quence... une diminution involontaire des \u00e9missions avant 2100. \n\nDit autrement, il ne nous reste pas 80 ans de tranquillit\u00e9, de retraites \u00e0 peu pr\u00e8s pay\u00e9es, de promesses \u00e9lectorales tenues et de commerce ext\u00e9rieur qui ira mieux demain si \"nous ne faisons rien\". Nous aurons juste, mais un peu tard, le regret de ne pas avoir compris ce qui nous attendait." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6817018531809398784,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6817018532342063104,urn:li:activity:6817018532342063104,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 107, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6817018532342063104,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6817018532342063104,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6817018532342063104", + "threadId": "activity:6817018532342063104", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6817018532342063104", + "urn": "urn:li:activity:6817018532342063104", + "numComments": 229, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6817018532342063104", + "reactionTypeCounts": [ + { + "count": 1983, + "reactionType": "LIKE" + }, + { + "count": 262, + "reactionType": "INTEREST" + }, + { + "count": 237, + "reactionType": "MAYBE" + }, + { + "count": 41, + "reactionType": "PRAISE" + }, + { + "count": 29, + "reactionType": "APPRECIATION" + }, + { + "count": 23, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6817018532342063104", + "numLikes": 2575, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6817018532342063104", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2575, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6816616090165108736,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6816616090165108736", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6816616090165108736)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6816616090165108736)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_je-ne-sais-pas-si-le-haut-conseil-pour-le-activity-6816616090165108736-5TO4?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6816616089686953984", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6816616090165108736", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6816616090165108736,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6816616090165108736,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6816616089686953984", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "u8pTeYzCZOIarnzq4Vk8lg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6816616090165108736,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEMyZlFOUq_yg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEMyZlFOUq_yg", + "artifacts": [ + { + "width": 1058, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1625207919639?e=1679529600&v=beta&t=r-A3IAASBWAZuQutAIfmyYDSYljexecUOAO9Ysbw-fE", + "expiresAt": 1679529600000, + "height": 1462 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1625207921565?e=1679529600&v=beta&t=jfum2LSLt1x5saOM5pOVLxgTvpOEOvKJ-RWdUUgs0Dk", + "expiresAt": 1679529600000, + "height": 28 + }, + { + "width": 1058, + "fileIdentifyingUrlPathSegment": "1280/0/1625207921565?e=1679529600&v=beta&t=fasl4yoQhj3btPNOve0JfIyandeVw32s8etkxrmeubk", + "expiresAt": 1679529600000, + "height": 1462 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1625207921565?e=1679529600&v=beta&t=HUN59FEO2aD1iM647hDghm5d6wHOkEzalIhfEjJSsxc", + "expiresAt": 1679529600000, + "height": 663 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1625207921565?e=1679529600&v=beta&t=0jDSa8CBfpeRUezIgrVnuytWmSV1lNp41weCkOuQKe4", + "expiresAt": 1679529600000, + "height": 221 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1625207921565?e=1679529600&v=beta&t=AhRT6QUIGwDLJwDmnNQ7I7HIpLwKypCKnICEGlqVpcA", + "expiresAt": 1679529600000, + "height": 1105 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEMyZlFOUq_yg/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "map" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6816616089686953984,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Je ne sais pas si le Haut conseil pour le climat va r\u00e9ussir \u00e0 \u00eatre utile pour limiter le changement climatique, mais \u00e0 tout le moins il peut d\u00e9j\u00e0 revendiquer une valeur ajout\u00e9e pour les enseignants. \n\nLe site du HCC vient en effet de mettre en ligne, en m\u00eame temps que le dernier rapport d'\u00e9valuation, un fascicule de graphiques qui seront peut-\u00eatre appr\u00e9ci\u00e9s par pour tous ceux qui cherchent des infographiques p\u00e9dagogiques sur les \u00e9missions et sur certaines cons\u00e9quences de la d\u00e9rive climatique : https://lnkd.in/dhxmjah\n\nOn y trouve par exemple cette carte - pas rassurante - sur l'\u00e9volution de la s\u00e9cheresse des sols, selon l'horizon temporel, pour un sc\u00e9nario de r\u00e9chauffement global atteignant 3\u00b0C en 2085. \n\nOn y trouve \u00e9galement une comparaison rarement faite sur les \u00e9missions par personne et par secteur (transports, industrie, \u00e9nergie, etc) en Europe, qui donnera surement lieu \u00e0 des d\u00e9bats int\u00e9ressants !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6816616089686953984,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6816616090165108736,urn:li:activity:6816616090165108736,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 85, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6816616090165108736,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6816616090165108736,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6816616090165108736", + "threadId": "activity:6816616090165108736", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6816616090165108736", + "urn": "urn:li:activity:6816616090165108736", + "numComments": 144, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6816616090165108736", + "reactionTypeCounts": [ + { + "count": 1514, + "reactionType": "LIKE" + }, + { + "count": 237, + "reactionType": "INTEREST" + }, + { + "count": 187, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6816616090165108736", + "numLikes": 1968, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6816616090165108736", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1968, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6816244753839992832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6816244753839992832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6816244753839992832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6816244753839992832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rapport-annuel-2021-renforcer-latt%C3%A9nuation-activity-6816244753839992832-1vPX?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6816244753487671296", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6816244753839992832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6816244753839992832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6816244753839992832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6816244753487671296", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "+OoGUfFZUZzYsOnM3Vu0Rg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6816244753839992832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7292945344481289149", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675907938238?e=1677240000&v=beta&t=Zjysg9Tk1R6XcgrxEBkOZTw1CixCodd7rdOaj6noSjE", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675907938238?e=1677240000&v=beta&t=7fP7zP6LY4OKaxtHP9mSI0Pa95eIXpV6bVIYOnvBpZ8", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675907938238?e=1677240000&v=beta&t=nKAJl1BU9z1RmAqbaJIvIiW6BJa0sQWKzAkK164WOIo", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675907938238?e=1677240000&v=beta&t=V6U8PnJbHpvitQKO0uwYnrSCIrAQZOyKHUBw5ovInTs", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGRcTUNFmlUQQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7292945344481289149)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7292945344481289149)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "hautconseilclimat.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Rapport annuel 2021 - Renforcer l'att\u00e9nuation, engager l'adaptation \u2014 Haut Conseil pour le Climat by hautconseilclimat.fr", + "actionTarget": "https://www.hautconseilclimat.fr/publications/rapport-annuel-2021-renforcer-lattenuation-engager-ladaptation/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Rapport annuel 2021 - Renforcer l'att\u00e9nuation, engager l'adaptation \u2014 Haut Conseil pour le Climat" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6816244753487671296,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 503, + "length": 27, + "miniCompany": { + "objectUrn": "urn:li:company:15819052", + "entityUrn": "urn:li:fs_miniCompany:15819052", + "name": "Haut conseil pour le climat", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1562167937651?e=1684972800&v=beta&t=pP6SYcFgvnLrfO4gZzEoe3SrlINOUuyBqhoiUWUg3hE", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1562167937651?e=1684972800&v=beta&t=MCVaFzZPKuk1HkyoZOGyPvh_TCzSGaqwOhWYsCM8qn0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1562167937651?e=1684972800&v=beta&t=_cYPSOPLNqcye1wvc3_JVX68gO7GXQgIqku6KJMLx_A", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHP-n3K4yQzNA/company-logo_" + } + }, + "universalName": "hautconseilclimat", + "dashCompanyUrn": "urn:li:fsd_company:15819052", + "trackingId": "loT0dFoYTOSMvK45S/rlAg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "La France ne fait pas sa part pour \u00e9viter que, apr\u00e8s le Canada, ce soit bient\u00f4t \u00e0 notre tour d'avoir 50 \u00b0C sur notre sol : la question climatique n'est toujours pas un d\u00e9terminant significatif des politiques publiques. \n\nNotre pays ne se pr\u00e9occupe pas de prendre toutes les mesures pr\u00e9ventives possibles pour att\u00e9nuer au mieux les cons\u00e9quences \u00e0 venir de la d\u00e9rive climatique, qui seront de toute fa\u00e7on bien pires que celles que nous avons aujourd'hui.\n\nVoil\u00e0, en 2 phrases, les 184 pages du rapport du Haut conseil pour le climat qui est sorti hier. Si vous manquez de lecture pour ce week-end, en voici !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6816244753487671296,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6816244753839992832,urn:li:activity:6816244753839992832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 41, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6816244753839992832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6816244753839992832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6816244753839992832", + "threadId": "activity:6816244753839992832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6816244753839992832", + "urn": "urn:li:activity:6816244753839992832", + "numComments": 86, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6816244753839992832", + "reactionTypeCounts": [ + { + "count": 766, + "reactionType": "LIKE" + }, + { + "count": 79, + "reactionType": "INTEREST" + }, + { + "count": 37, + "reactionType": "MAYBE" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 19, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6816244753839992832", + "numLikes": 925, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6816244753839992832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 925, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6816090829187227648,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6816090829187227648", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6816090829187227648)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6816090829187227648)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_ecole-polytechnique-conf%C3%A9rence-daur%C3%A9lien-activity-6816090829187227648-UYbU?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6816090828641996800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6816090829187227648", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6816090829187227648,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6816090829187227648,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6816090828641996800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "zYFmGDiE64ELDjdTOaS4uQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6816090829187227648,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8926753436359927463", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676146121298?e=1677240000&v=beta&t=FbGNJHiosqsem65GSARnbLa4yUuWoSP6LAR1uzvhPDw", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676146121298?e=1677240000&v=beta&t=kRZ4PdNcGDFc9c9TVmc6PX_kV-VaEgtzKYhqvUS3QHw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676146121299?e=1677240000&v=beta&t=uCFJSMCV7JQ0-3pghqhqdpU4dUCnfawwsfvGjfQQKVo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676146121299?e=1677240000&v=beta&t=_qClPmICSz1p00RW-rfyLwIO_dPdTU1vBjVOeXM_J1w", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEIuiw4SCOLxg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8926753436359927463)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8926753436359927463)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Ecole Polytechnique : Conf\u00e9rence d'Aur\u00e9lien Barrau on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=BLYJFIX6mFw" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Ecole Polytechnique : Conf\u00e9rence d'Aur\u00e9lien Barrau" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6816090828641996800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Aur\u00e9lien Barrau est physicien, mais il est aussi philosophe. Dans cette conf\u00e9rence donn\u00e9e r\u00e9cemment aux \u00e9l\u00e8ves de l'X, dans laquelle il leur explique \"en toute amiti\u00e9\" qu'ils s'appr\u00eatent \u00e0 se mettre au service d'un syst\u00e8me de destruction globale de notre environnement - l'\u00e9conomie productiviste, c'est le philosophe qui est le plus int\u00e9ressant.\n\nOn pourra ne pas \u00eatre d'accord avec les points de vue qu'il d\u00e9fend. On pourra se dire que c'est plus vite dit que fait d'organiser la soci\u00e9t\u00e9 en fonction des souhaits de notre orateur. On pourra lui reprocher une ou deux inexactitudes ici ou l\u00e0 dans les chiffres qu'il cite (car il en cite beaucoup !). \n\nL'essentiel n'est pas l\u00e0. L'essentiel est dans les questions qu'il pose, et la r\u00e9flexion sur les valeurs et le sens des mots \u00e0 laquelle il nous invite. J'esp\u00e8re que mes jeunes camarades, qui ont eu la chance d'\u00e9couter cette intervention alors qu'ils n'ont pas encore d\u00e9cid\u00e9 ce qu'ils feront dans la vie, se souviendront longtemps de cette \"le\u00e7on de philosophie\" un peu particuli\u00e8re, qui restera d'actualit\u00e9 leur vie durant.\n\nEt, bien \u00e9videmment, j'esp\u00e8re aussi que cette intervention, d\u00e9lib\u00e9r\u00e9ment d\u00e9stabilisante, fournira \u00e0 toutes celles et tous ceux qui la regarderont mati\u00e8re \u00e0 voir les choses sous un angle nouveau." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6816090828641996800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6816090829187227648,urn:li:activity:6816090829187227648,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 223, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6816090829187227648,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6816090829187227648,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6816090829187227648", + "threadId": "activity:6816090829187227648", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6816090829187227648", + "urn": "urn:li:activity:6816090829187227648", + "numComments": 441, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6816090829187227648", + "reactionTypeCounts": [ + { + "count": 4897, + "reactionType": "LIKE" + }, + { + "count": 351, + "reactionType": "PRAISE" + }, + { + "count": 337, + "reactionType": "EMPATHY" + }, + { + "count": 206, + "reactionType": "MAYBE" + }, + { + "count": 171, + "reactionType": "INTEREST" + }, + { + "count": 92, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6816090829187227648", + "numLikes": 6054, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6816090829187227648", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6054, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6815881400311414784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6815881400311414784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6815881400311414784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6815881400311414784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-ministres-de-l%C3%A9ducation-des-pays-du-activity-6815881400311414784-7jfC?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6815881399720022016", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6815881400311414784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6815881400311414784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6815881400311414784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6815881399720022016", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "hntKtJ5AzKn7SppcPdvcuw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6815881400311414784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQGejsuKNBCpmQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQGejsuKNBCpmQ", + "artifacts": [ + { + "width": 1772, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1625032756657?e=1679529600&v=beta&t=DDA71MU_FG3MOXDAi6Np2vsm48CKxFEc9rdu5xkHYnc", + "expiresAt": 1679529600000, + "height": 804 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1625032757829?e=1679529600&v=beta&t=u8pvmtVzE5JBf3eQb3LpIXG9BBwN7K_-slaBufZbC9E", + "expiresAt": 1679529600000, + "height": 9 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1625032757829?e=1679529600&v=beta&t=8juTf61ApOe09lp-7kzDc_P4Img2_j9wbK2IHkESkBs", + "expiresAt": 1679529600000, + "height": 581 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1625032757829?e=1679529600&v=beta&t=6U_VEoup09a43rCgN7qmYhIxC8jmsT_5A8LprCqeM6I", + "expiresAt": 1679529600000, + "height": 218 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1625032757829?e=1679529600&v=beta&t=AlbYHCjS1dO9HPW0IMv28lro7OVCX6OE1U0CXJ2BGbg", + "expiresAt": 1679529600000, + "height": 73 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1625032757829?e=1679529600&v=beta&t=OvoIYZsGeexWZC8XLw4lL_6ynLmHdzTYhiIIatXSVFg", + "expiresAt": 1679529600000, + "height": 363 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQGejsuKNBCpmQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.45372460496614 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6815881399720022016,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les ministres de l'\u00e9ducation des pays du G20 se sont r\u00e9unis Mardi dernier, le 22 juin donc. A cette occasion, une coalition d'organisations \u00e9tudiantes anglaises ont appel\u00e9 les ministres en question \u00e0 prendre \u00e0 bras le corps le sujet de l'enseignement des enjeux environnementaux et climatiques : https://lnkd.in/dyC2tbk\n\nLes signataires ne demandent pas qu'un module \"d\u00e9veloppement durable\" ou \"climat\" soit rajout\u00e9 aux cursus actuels, comme c'est trop souvent le cas quand les \u00e9tablissements d'enseignement font quelque chose. Ils demandent que l'ensemble de l'enseignement soit mis en coh\u00e9rence avec la question des limites plan\u00e9taires. Cela pose \u00e0 l'\u00e9vidence des questions assez fondamentales sur l'enseignement d'autres mati\u00e8res, notamment l'\u00e9conomie.\n\nCela pose aussi la question des effectifs par nature de formation professionnelle (il faudrait plus de certains m\u00e9tiers, moins d'autres...), et plein d'autres encore aujourd'hui non ou peu trait\u00e9es.\n\nCette prise de position rejoint les travaux du Shift Project, qui travaille depuis quelques ann\u00e9es d\u00e9j\u00e0 sur la mani\u00e8re de mettre les contenus de l'enseignement sup\u00e9rieur (pour commencer, mais il ne faut \u00e9videmment pas s'y limiter) en accord avec les d\u00e9fis \u00e0 relever : https://lnkd.in/g2wSxGM Rien que regarder comment on fait pour changer les cursus pour les mettre en ad\u00e9quation avec la d\u00e9carbonation, qui est un enjeu syst\u00e9mique, prend 1 \u00e0 2 ans (il faut regarder chaque mati\u00e8re, former ou remplacer les enseignants, g\u00e9rer les effets d'\u00e9viction...), et pendant ce temps l\u00e0 l'horloge tourne, et les cons\u00e9quences de la d\u00e9rive climatique augmentent.\n\nEsp\u00e9rons que cette mise en coh\u00e9rence de l'enseignement avec les enjeux de demain finira par arriver avant les 47 \u00b0C \u00e0 Brest..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6815881399720022016,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6815881400311414784,urn:li:activity:6815881400311414784,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 36, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6815881400311414784,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6815881400311414784,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6815881400311414784", + "threadId": "activity:6815881400311414784", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6815881400311414784", + "urn": "urn:li:activity:6815881400311414784", + "numComments": 52, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6815881400311414784", + "reactionTypeCounts": [ + { + "count": 471, + "reactionType": "LIKE" + }, + { + "count": 31, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6815881400311414784", + "numLikes": 549, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6815881400311414784", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 549, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6815534505244299264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6815534505244299264", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6815534505244299264)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6815534505244299264)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-klein-limportance-de-la-connaissance-activity-6815534505244299264-v3pI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6815534504787095552", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6815534505244299264", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6815534505244299264,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6815534505244299264,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6815534504787095552", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "1dcRjpqRHtHb4k+mwsdatA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6815534505244299264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8758042633446894579", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 480, + "fileIdentifyingUrlPathSegment": "800/0/1676320573929?e=1677240000&v=beta&t=ZAKk9BOTJvwimHePVhh0m1rZHV2nouIAqkwcH1dV_Z8", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676320573929?e=1677240000&v=beta&t=X0nVS1L0AdtxNVo5qQ1Y17MTvAHhWq0RLkLq2BcPgWY", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676320573929?e=1677240000&v=beta&t=2-IKybk54dtknJrTN-7RUjTPvt8AzSgPMNO-_UtxOnU", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676320573929?e=1677240000&v=beta&t=HkbQHGU8gBEp6iTRLOppkLPlah0cDGVR_1vlLogj2us", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGeh6Af_QAmrg/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8758042633446894579)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8758042633446894579)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici - Klein : L'importance de la connaissance sur les enjeux climat - 25 juin 2021 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=KgDiK2L_Czk" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Conf\u00e9rence d'ouverture du Festival de la Fresque du Climat - \"3 jours pour comprendre le d\u00e9fi climatique !\" - La Cit\u00e9 Fertile, 25 juin 2021 D\u00e9but conf\u00e9rence : 00:03:30, Jean-Marc Jancovici (en l\u00e9ger retard) arrive vers 00:14:10 Mod\u00e9ration : Juliette..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici - Klein : L'importance de la connaissance sur les enjeux climat - 25 juin 2021" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6815534504787095552,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 20, + "miniCompany": { + "objectUrn": "urn:li:company:29014288", + "entityUrn": "urn:li:fs_miniCompany:29014288", + "name": "La Fresque du Climat", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1606741293232?e=1684972800&v=beta&t=DuZLmkQnTwPRxbxoqXB9stJSA0S3kOD4-nbMbyzB25I", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1606741293232?e=1684972800&v=beta&t=efDmUfhURfn8iWvetkNpsIgnICebJeKkVSGwHpV71PI", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1606741293232?e=1684972800&v=beta&t=fPnte7Q2kxbsayYybcm9wJqBUUjCesND8I5OcFmaAWg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQEjlFO0qGG8JA/company-logo_" + } + }, + "universalName": "la-fresque-du-climat", + "dashCompanyUrn": "urn:li:fsd_company:29014288", + "trackingId": "Bbybl6InQTqbl+iNoYA+dw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 129, + "length": 13, + "miniProfile": { + "firstName": "Etienne", + "lastName": "KLEIN", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAANG36wBMwMV2UT7MFL6e9W-xq7G4TqaXi8", + "occupation": "Directeur de recherche au CEA, producteur de \u00ab\u00a0Le pourquoi du comment \u00bb sur France Culture", + "objectUrn": "urn:li:member:54976428", + "entityUrn": "urn:li:fs_miniProfile:ACoAAANG36wBMwMV2UT7MFL6e9W-xq7G4TqaXi8", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1642407089273?e=1681948800&v=beta&t=wu7byIC99_vmf-QvV4gUlh8mcx40CtTuKGzj_tJHjlc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1642407089273?e=1681948800&v=beta&t=aYIJ5JWtKOG7Gtsxu4cJZv-iRr8S4SyteaD8d6nDjbk", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQGPVRnHH0tFzw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "etienne-klein-0904b316", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1670923644160?e=1681948800&v=beta&t=iylGrQl9Ffbe5raun26ebVE3BQJOj7RH2rw36H0OPRg", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1670923644160?e=1681948800&v=beta&t=nl5HrdpRbsmKQtzTLgmXeUIq3DjQrCbw-zGPPHfPHRU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1670923644160?e=1681948800&v=beta&t=SjOXvRtEW0_BDrbgRfkFu4VKQif97Mw4SnXLC7n0Fos", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1670923644160?e=1681948800&v=beta&t=pQzTDx6duyfMIfXN5y2-RBAceJfFPOnF5-HnCHn971o", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQHNJg1w3ZMaSg/profile-displayphoto-shrink_" + } + }, + "trackingId": "AWbYvyLOSbyG2alfs7jcHw==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 234, + "length": 14, + "miniProfile": { + "firstName": "Juliette", + "lastName": "Nouel ", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACCCLZgBleAKbQYF2eaBHw80fYUTpPcwHmM", + "occupation": "Cr\u00e9atrice ATELIERS de l'ADAPTATION au changement climatique. JOURNALISTE ANIMATRICE de d\u00e9bats sur climat et biodiversit\u00e9. Animatrice et formatrice de la Fresque du Climat.", + "objectUrn": "urn:li:member:545402264", + "entityUrn": "urn:li:fs_miniProfile:ACoAACCCLZgBleAKbQYF2eaBHw80fYUTpPcwHmM", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658735549480?e=1681948800&v=beta&t=XYHD7BJ4_4ubkfFaUAx-3u0QQ70ukowGd_tuSLe_XYE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658735549480?e=1681948800&v=beta&t=iVhYV2CfINCj1_EUcfFSjLmzXEA5ASQmbhBsAWuN4os", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQFULG6vha6N6A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "juliette-nouel", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1608370842052?e=1681948800&v=beta&t=qg4ZhjcCh07CyKGzwlzOcJRiulWMpnFBGCNdEk0wvFY", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1608370842052?e=1681948800&v=beta&t=0FJjpDZUBm_JN_Ab8wX-rS_maBPPko_j-cpZTZXzt10", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1608370842052?e=1681948800&v=beta&t=bdSyW1uJsSShJKzYez1gXbmeQ59rilB5vCJT6ijSLcM", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1608370842052?e=1681948800&v=beta&t=h1A6bIdvNIxpTMJVL3tX7_QGTZqNli_olavD6Xxbirs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGRDgr7UPQBuQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "IGW64PorTTaOv1AnqcACfQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "La Fresque du Climat organisait le week-end dernier un \"festival\" (comprendre une esp\u00e8ce d'universit\u00e9 d'\u00e9t\u00e9 en avance de phase). Etienne KLEIN et votre serviteur ont eu le plaisir de participer \u00e0 la table ronde d'ouverture anim\u00e9e par Juliette Nouel sur le th\u00e8me de la formation aux enjeux \u00e9nergie-climat (comme c'est \u00e9tonnant, hein ?).\n\nL'enregistrement vid\u00e9o est disponible sur Youtube, et l'enregistrement audio sur Soundcloud : https://lnkd.in/dxky_8M (ce dernier est bien suffisant si vous n'avez pas un besoin imp\u00e9rieux de voir des gens assis dans un fauteuil en train de causer !).\n\nEn quelques ann\u00e9es, ce jeu tr\u00e8s simple (il faut des cartes, une grande feuille de papier, et un stylo) et extr\u00eamement efficace a permis de former un nombre important de personnes sur les aspects physiques du changement climatique. Il manque encore que l'ensemble du gouvernement, l'ensemble des parlementaires, et l'ensemble des r\u00e9dacteurs en chef y passent, et ca leur serait tr\u00e8s utile !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6815534504787095552,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6815534505244299264,urn:li:activity:6815534505244299264,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 45, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6815534505244299264,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6815534505244299264,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6815534505244299264", + "threadId": "activity:6815534505244299264", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6815534505244299264", + "urn": "urn:li:activity:6815534505244299264", + "numComments": 61, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6815534505244299264", + "reactionTypeCounts": [ + { + "count": 1115, + "reactionType": "LIKE" + }, + { + "count": 70, + "reactionType": "PRAISE" + }, + { + "count": 63, + "reactionType": "EMPATHY" + }, + { + "count": 24, + "reactionType": "APPRECIATION" + }, + { + "count": 17, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6815534505244299264", + "numLikes": 1304, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6815534505244299264", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1304, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6815310509022171136,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6815310509022171136", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6815310509022171136)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6815310509022171136)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_un-sondage-vient-d%C3%AAtre-effectu%C3%A9-%C3%A0-la-demande-activity-6815310509022171136-LIyo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6815310508430782464", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6815310509022171136", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6815310509022171136,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6815310509022171136,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6815310508430782464", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "MvMkmqV3XyINKUoGAHW4MA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6815310509022171136,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQE2aOsEb4Znbw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQE2aOsEb4Znbw", + "artifacts": [ + { + "width": 1536, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1624896646112?e=1679529600&v=beta&t=QTuc4GjPBs1bxIACvK2qI0E-2cGWVk4miELSCIU_5d0", + "expiresAt": 1679529600000, + "height": 504 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1624896647049?e=1679529600&v=beta&t=r1MY0sUSsGGOI4g7Eu375rdPzC7VMQwy0dF8Q-57BTE", + "expiresAt": 1679529600000, + "height": 7 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1624896647049?e=1679529600&v=beta&t=rVxGP_h0RGisP2O6U-V_H8OTI1HQk9BKZN_wnQDMsNs", + "expiresAt": 1679529600000, + "height": 420 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1624896647049?e=1679529600&v=beta&t=QrnLXQa_qK-THrpKLUOiE2HbTTuzimrtD3lwSrUmNIU", + "expiresAt": 1679529600000, + "height": 158 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1624896647049?e=1679529600&v=beta&t=bripToB9Pkq0dezNQsrxyF_v-eW7mFOO_pXAxWsEvHs", + "expiresAt": 1679529600000, + "height": 53 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1624896647050?e=1679529600&v=beta&t=wRLZMpQ_ELfhZkI39WFW1xY3YjQ6PIw-qxPmk9V_hOI", + "expiresAt": 1679529600000, + "height": 263 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQE2aOsEb4Znbw/feedshare-shrink_" + }, + "displayAspectRatio": 0.328125 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "text, letter" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6815310508430782464,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un sondage vient d'\u00eatre effectu\u00e9 \u00e0 la demande de l'Ademe et de LinkedIn sur les souhaits des salari\u00e9s en ce qui concerne la \"transition \u00e9cologique\" : https://lnkd.in/dx7Avht\n\nS'il est difficile de d\u00e9finir cette derni\u00e8re de mani\u00e8re univoque, les r\u00e9sultats font ressortir une attente aujourd'hui non satisfaite, et qui est probablement \u00e0 rapprocher d'un d\u00e9calage croissant entre les discours et les actes.\n\nPremi\u00e8re \u00e9tape, et m\u00e8re de toutes les autres : la formation aux enjeux. Comme pour l'enseignement initial, la r\u00e9alit\u00e9 est tr\u00e8s en de\u00e7\u00e0 de ce que l'urgence commande. On peut ainsi lire dans le communiqu\u00e9 \"Seuls 17% des salari\u00e9s soutiennent que leur entreprise propose des formations sur les enjeux relatifs \u00e0 la transition \u00e9cologique.\" (alors qu'un peu plus bas il est mentionn\u00e9 que \"68% des salari\u00e9s veulent \u00eatre form\u00e9s aux enjeux de la transition \u00e9cologique\"). \n\nEt le document pr\u00e9cise que \"Parmi ceux ayant d\u00e9clar\u00e9 avoir effectu\u00e9 ces formations, dans la grande majorit\u00e9 des cas, ce sont des formations aux \u00ab \u00e9cogestes \u00bb au travail (tri, recyclage, limitation des d\u00e9chets, etc...).\". Pourtant les enjeux ne sont pas l\u00e0 : ils sont dans les produits, les proc\u00e9d\u00e9s, les march\u00e9s, l'organisation, les comp\u00e9tences...\n\nSachant que les \"grands media\" resteront \u00e0 jamais incapables de faire de la formation (ce n'est pas leur m\u00e9tier), il va bien falloir que les entreprises qui se consid\u00e8rent comme agissantes sur le climat s'y mettent avec un peu plus de s\u00e9rieux, non ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6815310508430782464,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6815310509022171136,urn:li:activity:6815310509022171136,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 60, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6815310509022171136,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6815310509022171136,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6815310509022171136", + "threadId": "activity:6815310509022171136", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6815310509022171136", + "urn": "urn:li:activity:6815310509022171136", + "numComments": 87, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6815310509022171136", + "reactionTypeCounts": [ + { + "count": 860, + "reactionType": "LIKE" + }, + { + "count": 72, + "reactionType": "MAYBE" + }, + { + "count": 60, + "reactionType": "INTEREST" + }, + { + "count": 34, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6815310509022171136", + "numLikes": 1052, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6815310509022171136", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1052, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6815200818669592576,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6815200818669592576", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6815200818669592576)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6815200818669592576)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_10-millions-de-maisons-en-france-sont-expos%C3%A9es-activity-6815200818669592576-ymjd?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6815200818208223234", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6815200818669592576", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6815200818669592576,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6815200818669592576,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6815200818208223234", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "LMGyFxICOFebOv1DVcP/AQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6815200818669592576,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQE1uzfZj2XF_g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQE1uzfZj2XF_g", + "artifacts": [ + { + "width": 1554, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1624870492781?e=1679529600&v=beta&t=Gb_abiXyijZaQXI1ZdKEhHSLwaWGPk9v-r31A8hCMAE", + "expiresAt": 1679529600000, + "height": 1536 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1624870494353?e=1679529600&v=beta&t=hiegQXfsKTE0zv_j8hDNtarE3hHWKefNhzKBc_xZoH4", + "expiresAt": 1679529600000, + "height": 20 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1624870494353?e=1679529600&v=beta&t=4c-kt8TIP4W7CTJ4RFeDLFDrR2mR6smBxJ_dCvc_7gU", + "expiresAt": 1679529600000, + "height": 1265 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1624870494353?e=1679529600&v=beta&t=QgUJRw_vJetDa1gTTBE9wu-phn9nstfA37A5i7DYv4k", + "expiresAt": 1679529600000, + "height": 475 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1624870494353?e=1679529600&v=beta&t=Xg_dRz81tKha8YRbIavnqJx5x0mUUyu-QoDo1V6rhz4", + "expiresAt": 1679529600000, + "height": 158 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1624870494353?e=1679529600&v=beta&t=svPlMjy9_AMPyX9_GFV71cRxs07U_Ye7FB9YYFHocgQ", + "expiresAt": 1679529600000, + "height": 791 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQE1uzfZj2XF_g/feedshare-shrink_" + }, + "displayAspectRatio": 0.9884169884169884 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "map" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6815200818208223234,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "10 millions de maisons en France sont \"expos\u00e9es au retrait-gonflement des argiles\" : https://lnkd.in/du59UU5\n\nDe quoi s'agit-il ? Les argiles sont des couches g\u00e9ologiques qui sont capables, selon l'humidit\u00e9 \u00e0 laquelle elles sont expos\u00e9es, de se gonfler (quand il y a de l'eau) ou de se r\u00e9tracter (quand elles s\u00e8chent). Les variations importantes d'humidit\u00e9 des sols, et notamment les \u00e9pisodes tr\u00e8s secs, cr\u00e9ent des variations importantes du volume de ces argiles. Quand une construction se trouve dessus, cela engendre un risque de fissuration des murs. \n\nEn fait, l'essentiel des dommages assur\u00e9s en cas de canicule ne concerne pas les cultures ou les arbres (les pauvres, ils ne valent rien, ou si peu...) mais les constructions qui se l\u00e9zardent. Un tiers des indemnisations pour catastrophes naturelles en proviennent, et ce sont les maisons construites apr\u00e8s 1976 qui sont les plus expos\u00e9es.\n\nCes ph\u00e9nom\u00e8nes de retrait-gonflement vont s'intensifier \u00e0 l'avenir. Un \"cadeau\" de plus du r\u00e9chauffement climatique !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6815200818208223234,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6815200818669592576,urn:li:activity:6815200818669592576,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 52, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6815200818669592576,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6815200818669592576,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6815200818669592576", + "threadId": "activity:6815200818669592576", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6815200818669592576", + "urn": "urn:li:activity:6815200818669592576", + "numComments": 134, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6815200818669592576", + "reactionTypeCounts": [ + { + "count": 529, + "reactionType": "LIKE" + }, + { + "count": 119, + "reactionType": "INTEREST" + }, + { + "count": 117, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6815200818669592576", + "numLikes": 773, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6815200818669592576", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 773, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6814913128837459968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6814913128837459968", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6814913128837459968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6814913128837459968)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_ce-graphique-vient-en-compl%C3%A9ment-dun-post-activity-6814913128837459968-czgI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6814913128363520000", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6814913128837459968", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6814913128837459968,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6814913128837459968,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6814913128363520000", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "aY/NbaWLRre9nx/P2PmXhg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6814913128837459968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQE07_9UgYMFTA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQE07_9UgYMFTA", + "artifacts": [ + { + "width": 1709, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1624801902877?e=1679529600&v=beta&t=CQtH-bkyHhwZJ0H--CSnQttEju47rPGF1r4vVH_IOzg", + "expiresAt": 1679529600000, + "height": 986 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1624801904470?e=1679529600&v=beta&t=QaDB1jgNfZWG8dAVIZfz8x9Ri4iK2p5gg75muIHcxLQ", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1624801904470?e=1679529600&v=beta&t=s39D03JIju7jruXrg0XqC0aIzElhexarRMUPmhfrL1w", + "expiresAt": 1679529600000, + "height": 738 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1624801904470?e=1679529600&v=beta&t=hcdAeJU0M_KgdEvn3t3wYqcMqZbfErsvU5L8sDWgUlE", + "expiresAt": 1679529600000, + "height": 277 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1624801904470?e=1679529600&v=beta&t=R8OwqXMlqfbCTxfe-e-f1-3Ahlavc4WhqaoPzYXbNzM", + "expiresAt": 1679529600000, + "height": 92 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1624801904470?e=1679529600&v=beta&t=BGlbsRv9JcNKhGbNXLM8_Mx3TASy5YYUEUOl58_rmZo", + "expiresAt": 1679529600000, + "height": 462 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQE07_9UgYMFTA/feedshare-shrink_" + }, + "displayAspectRatio": 0.5769455822118198 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, line chart, scatter chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6814913128363520000,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce graphique vient en compl\u00e9ment d'un post r\u00e9cent sur le passage de Olivier Blanchard et Jean Tirole \u00e0 France Inter - https://lnkd.in/dqQmPSY - o\u00f9 Olivier Blanchard affirmait que l'on pouvait avoir plus de PIB avec moins de CO2.\n\nSur ce graphique, pour chaque ann\u00e9e de 1965 (en bas \u00e0 gauche) \u00e0 2019 (en haut \u00e0 droite) j'ai report\u00e9 le PIB mondial en monnaie constante (donn\u00e9es World Bank) sur l'axe vertical, et les \u00e9missions de CO2 mondiales (donn\u00e9es source BP Statistical Review) sur l'axe horizontal.\n\nOn peut donc dire qu'il s'agit du PIB mondial en fonction du CO2 mondial, de 1965 \u00e0 2019. Et ce qui s'observe ressemble \u00e0 tout sauf \u00e0 un PIB qui se serait mis \u00e0 augmenter pendant que le CO2 baisserait. \n\nRappelons qu'au niveau d'un pays il peut y avoir d\u00e9couplage, parce que les flux physiques qui mobilisent de l'\u00e9nergie et engendrent le CO2 prennent pour partie place \u00e0 l'ext\u00e9rieur du pays, pendant que la valeur ajout\u00e9e correspondante se situe \u00e0 l'int\u00e9rieur des fronti\u00e8res. Cet effet n'existe pas pour l'ensemble de l'\u00e9conomie mondiale, car nous ne commer\u00e7ons pas avec Mars (au grand dam de M. Musk).\n\nNB : je voulais mettre ce graphique en commentaire de mon post initial, mais je n'ai pas pu pour une raison inconnue..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6814913128363520000,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6814913128837459968,urn:li:activity:6814913128837459968,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 98, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6814913128837459968,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6814913128837459968,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6814913128837459968", + "threadId": "activity:6814913128837459968", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6814913128837459968", + "urn": "urn:li:activity:6814913128837459968", + "numComments": 319, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6814913128837459968", + "reactionTypeCounts": [ + { + "count": 1164, + "reactionType": "LIKE" + }, + { + "count": 146, + "reactionType": "INTEREST" + }, + { + "count": 62, + "reactionType": "MAYBE" + }, + { + "count": 20, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6814913128837459968", + "numLikes": 1405, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6814913128837459968", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1405, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6814661348434157569,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6814661348434157569", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6814661348434157569)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6814661348434157569)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-%C3%A9mirats-le-pays-o%C3%B9-les-4x4-sont-rois-activity-6814661348434157569--qaI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6814661348044111872", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6814661348434157569", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6814661348434157569,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6814661348434157569,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6814661348044111872", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "+1CeffDDSv67gSFdbmh6Tw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6814661348434157569,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8920781945726920401", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676201873247?e=1677240000&v=beta&t=-l7EPEKKK2DZtZdBe1XH3lJ4m1Zl1jURukZUzUndT54", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676201873247?e=1677240000&v=beta&t=6b4mo6g-sx-he05dYj-wNKpT3nb5daj7IW62S9IaqXk", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676201873247?e=1677240000&v=beta&t=qY2-DajlPHPjfiXVbQNW8HRWGhhP1tqMonemyIP3BPI", + "expiresAt": 1677240000000, + "height": 96 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676201873247?e=1677240000&v=beta&t=va5auV693Eeh8I-mnH3ti8jzPRi6geX3xbkgcuVsbVk", + "expiresAt": 1677240000000, + "height": 288 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEcSDBxfDCRMA/articleshare-shrink_" + }, + "displayAspectRatio": 0.6 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8920781945726920401)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8920781945726920401)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "tf1.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les \u00c9mirats, le pays o\u00f9 les 4x4 sont rois - Le Journal du week-end | TF1 by tf1.fr", + "actionTarget": "https://www.tf1.fr/tf1/jt-we/videos/les-emirats-le-pays-ou-les-4x4-sont-rois-87172094.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les \u00c9mirats, le pays o\u00f9 les 4x4 sont rois - Le Journal du week-end | TF1" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6814661348044111872,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 393, + "length": 3, + "miniCompany": { + "objectUrn": "urn:li:company:7800796", + "entityUrn": "urn:li:fs_miniCompany:7800796", + "name": "TF1", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1542992171239?e=1684972800&v=beta&t=FRUYibexUhMXqLC91mmsGZbd9KwCx6qwHBLU-ZhaPfk", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1542992171239?e=1684972800&v=beta&t=E-1kNcx7SUv6bC18jrKcOErEfpe4Fg0mILAHp0nsoHc", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1542992171239?e=1684972800&v=beta&t=hSvS4ymv_td-ebBTn2Lpq7q6CzhQZQhGPNwpl4sfPa8", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGVu_OC35rVkw/company-logo_" + } + }, + "universalName": "vincennes-tv.fr", + "dashCompanyUrn": "urn:li:fsd_company:7800796", + "trackingId": "/YxW21LBQpu4ZKBtxFFZrQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "La temp\u00e9rature de surface atteint actuellement 48\u00b0C - vous avez bien lu, presque 50\u00b0C - \u00e0 Verkhojansk, au del\u00e0 du cercle arctique (https://lnkd.in/d9wuEN2). Il fait quasiment 40\u00b0C \u00e0 Vancouver (https://lnkd.in/dN2Pd-T ) o\u00f9 la normale en juin est de... 15 \u00b0C (https://lnkd.in/dMpatbB ). Les for\u00eats des Rocheuses se mettent \u00e0 br\u00fbler comme jamais (https://lnkd.in/dZpcFGQ ). \n\nEt que nous propose TF1 au 20h au m\u00eame moment ? Un reportage \u00e0 la gloire des 4x4, \"indispensables\" aux Emirats o\u00f9 ils font la joie des touristes (venus en avion) qui font joujou avec ces machines (sauf ceux qui veulent \"quelque chose de plus sportif\" et qui font... du quad).\n\nA aucun moment le journaliste ne mentionne le CO2 associ\u00e9, ni ne pose la question de savoir comment concilier ce qui est montr\u00e9 avec la lutte contre le changement climatique, qui sera pourtant - rarement il est vrai - au centre d'un autre sujet du journal t\u00e9l\u00e9vis\u00e9 sur la m\u00eame chaine.\n\nC'est juste moi, ou il y a quand m\u00eame quelque chose d'un peu bizarre au royaume du 20h d'une grande chaine nationale ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6814661348044111872,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6814661348434157569,urn:li:activity:6814661348434157569,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 549, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6814661348434157569,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6814661348434157569,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6814661348434157569", + "threadId": "activity:6814661348434157569", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6814661348434157569", + "urn": "urn:li:activity:6814661348434157569", + "numComments": 843, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6814661348434157569", + "reactionTypeCounts": [ + { + "count": 10841, + "reactionType": "LIKE" + }, + { + "count": 1151, + "reactionType": "MAYBE" + }, + { + "count": 996, + "reactionType": "PRAISE" + }, + { + "count": 247, + "reactionType": "INTEREST" + }, + { + "count": 199, + "reactionType": "APPRECIATION" + }, + { + "count": 55, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6814661348434157569", + "numLikes": 13489, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6814661348434157569", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 13489, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6814582946272419840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6814582946272419840", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6814582946272419840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6814582946272419840)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_olivier-blanchard-et-jean-tirole-on-peut-activity-6814582946272419840-xSFi?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6814582945538437120", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6814582946272419840", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6814582946272419840,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6814582946272419840,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6814582945538437120", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "SStP6VsFUjcHV5eo+5Cm6g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6814582946272419840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8766511424598576008", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675491765692?e=1677240000&v=beta&t=SsjXHVsYDTNR6OKfkZTt7ZkkKLMHAC8e6Z2i4aswbbA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675491765692?e=1677240000&v=beta&t=wrRdCih36fEAIt2N3uQosJ9AyWj6xISMjyBwX-3Xlyk", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675491765692?e=1677240000&v=beta&t=3M6dBXaC-8KXYSuA_98YxfIUS9_UC0MFAJeOLT_zD78", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675491765692?e=1677240000&v=beta&t=tUiWonBcGZqm4aZa5KgfGJoG9EkJgspa9im35qNrjlo", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFx9u_8lH3t-w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8766511424598576008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8766511424598576008)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Olivier Blanchard et Jean Tirole : \"On peut avoir croissance et diminution des \u00e9missions de CO2\" on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=fqe_lg3zL3g" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Olivier Blanchard, professeur \u00e9m\u00e9rite au MIT, ancien directeur du d\u00e9partement de recherche au FMI, Jean Tirole, pr\u00e9sident honoraire de l'\u00e9cole d\u2019\u00e9conomie de Toulouse (TSE), prix Nobel d\u2019\u00e9conomie 2014, sont les invit\u00e9s de 8h20. Retrouvez tous les..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Olivier Blanchard et Jean Tirole : \"On peut avoir croissance et diminution des \u00e9missions de CO2\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6814582945538437120,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "MM. Blanchard et Tirole sont pass\u00e9s \u00e0 France Inter pour la pr\u00e9sentation de leur rapport (https://lnkd.in/dvuSnNt ). Quelques r\u00e9actions :\n\n- Demorand dit que Tirole a re\u00e7u le \"Nobel d'\u00e9conomie\". Ce \"Nobel d'\u00e9conomie\"... n'existe pas. Il y a un \"prix de la Banque de Su\u00e8de en la m\u00e9moire d'Alfred Nobel\", qui est un ajout posthume aux disciplines pour lesquels Alfred Nobel a l\u00e9gu\u00e9 sa fortune. La bonne question est de savoir pourquoi l'ami Alfred n'a pas pr\u00e9vu l'\u00e9conomie !\n\n- Salam\u00e9 qualifie le rapport de \"passionnant, il faut le dire\". Cela sous-entend qu'elle l'a lu. Est-ce le cas, sachant qu'il fait 500 pages et est sorti la veille ?\n\n- Blanchard dit que le covid \"est une crise conjoncturelle\". Sur 20.000 ans, l'exception pour notre esp\u00e8ce est plut\u00f4t l'absence de r\u00e9gulation de la population par les \u00e9pid\u00e9mies ! Evidemment, tout est question d'\u00e9chelle de temps...\n\n- Salam\u00e9 indique que \"le rapport du GIEC est paru il y a deux jours\". Aucun rapport n'est paru : l'AFP a r\u00e9cup\u00e9r\u00e9 un document de travail provisoire, qui n'avait pas vocation \u00e0 \u00eatre publi\u00e9 (pas plus que les version successives d'un manuscrit d'un livre ne sont destin\u00e9es \u00e0 \u00eatre publi\u00e9es, sans qu'il n'y ait de complot derri\u00e8re). L'AFP aurait du attendre, mais voil\u00e0 il faut faire l'actu...\n\n- Tirole pr\u00e9sente le prix du carbone comme un bon moyen d'orienter le comportement. C'est effectivement une possibilit\u00e9, mais ce n'est pas la seule : la r\u00e9glementation permet aussi de le faire. Les \u00e9conomistes g\u00e9n\u00e9ralistes aiment les taxes et pas la r\u00e9glementation pour une raison toute b\u00eate : leurs mod\u00e8les (bas\u00e9s sur des \u00e9lasticit\u00e9s prix-volume) savent \"manger\" une variation de prix, mais pas des changements sectoriels de r\u00e9glementation qui ne se relient pas \u00e0 des prix (par exemple une limite en consommation des voitures vendues). Pas d'outil d'analyse, pas de recommandation, c'est aussi simple que cela !\n\n- Olivier Blanchard consid\u00e8re que \"on peut avoir croissance et diminution des \u00e9missions de CO2\". Malheureusement, au niveau mondial, PIB et CO2 \u00e9voluent de concert (voir graphique en commentaire). Au niveau d'un pays il peut y avoir d\u00e9couplage, parce que les flux physiques qui engendrent le CO2 prennent alors place \u00e0 l'ext\u00e9rieur du pays pendant que la valeur ajout\u00e9e correspondante se situe \u00e0 l'int\u00e9rieur des fronti\u00e8res. Cet effet n'existe pas pour l'ensemble de l'\u00e9conomie.\n\n- j'ai \u00e9t\u00e9 cit\u00e9 dans une question (!) sur les in\u00e9galit\u00e9s, pour avoir dit \"les smicards sont des nababs\". Ma phrase exacte est celle-ci : \"la v\u00e9rit\u00e9 politiquement indicible est que, au regard de ce qu'a toujours \u00e9t\u00e9 la condition humaine, m\u00eame les smicards sont des nababs\". \n\n- Tirole et Blanchard consid\u00e8rent que \"les \u00e9conomies planifi\u00e9es\" ne sont pas efficaces. Voire : en France, elle a donn\u00e9 l'h\u00f4pital, le train, le r\u00e9seau \u00e9lectrique, et nos voisins plus \"lib\u00e9raux\" n'ont pas fait mieux, mais plut\u00f4t moins bien..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6814582945538437120,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6814582946272419840,urn:li:activity:6814582946272419840,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 115, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6814582946272419840,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6814582946272419840,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6814582946272419840", + "threadId": "activity:6814582946272419840", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6814582946272419840", + "urn": "urn:li:activity:6814582946272419840", + "numComments": 297, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6814582946272419840", + "reactionTypeCounts": [ + { + "count": 1598, + "reactionType": "LIKE" + }, + { + "count": 143, + "reactionType": "PRAISE" + }, + { + "count": 142, + "reactionType": "MAYBE" + }, + { + "count": 72, + "reactionType": "INTEREST" + }, + { + "count": 22, + "reactionType": "APPRECIATION" + }, + { + "count": 14, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6814582946272419840", + "numLikes": 1991, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6814582946272419840", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1991, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6814468160759070720,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6814468160759070720", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6814468160759070720)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6814468160759070720)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_mind-boggling-heatwave-breaks-records-in-activity-6814468160759070720-zkHZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6814468160125730816", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6814468160759070720", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6814468160759070720,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6814468160759070720,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6814468160125730816", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "K/XCJSDKPUJGWTRAhXIE2w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6814468160759070720,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8555431183207723468", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675542337619?e=1677240000&v=beta&t=lVDT0PkoOEFUGCu0Tic9dhxnKeH-tgE7H_ZPA6ZBc9Y", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 900, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675542337619?e=1677240000&v=beta&t=diPbDsKSnXkJjCsG2Rnm1m545YwhPmJd20jLHYuCeuw", + "expiresAt": 1677240000000, + "height": 506 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675542337619?e=1677240000&v=beta&t=gvzMtXhCurHetn86j4mqIZXSJRi_lZKJ_6F2xGhGp8g", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675542337619?e=1677240000&v=beta&t=JmlttndvvawyiUFD_kK6UUpxkFu9M7k5PkaABJM5OS8", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGNtCLjPwjrzw/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8555431183207723468)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8555431183207723468)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ft.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u2018Mind-boggling\u2019 heatwave breaks records in western US by ft.com", + "actionTarget": "https://www.ft.com/content/7b701cd2-8dc8-45b0-983d-8a20daa71932" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u2018Mind-boggling\u2019 heatwave breaks records in western US" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6814468160125730816,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Faut-il dire \"trop tard, trop peu\", ou bien \"enfin\" ?\n\nLe Financial Times (la \"bible\" du capitalisme pur et dur, donc) se fait l'\u00e9cho d'une vague de chaleur sans pr\u00e9c\u00e9dent qui concerne tout l'ouest du continent nord-am\u00e9ricain. Le ton n'est pas f\u00e9rocement alarmiste, mais par contre il n'y a pas l'ombre d'un commentaire \"climatosceptique\" dans le texte, alors qu'une partie des lecteurs doit probablement appartenir \u00e0 ce courant de pens\u00e9e (non parce que c'est fond\u00e9, mais parce que \"si c'est vrai\" alors cela justifie des mesures qui seront contraires \u00e0 leurs int\u00e9r\u00eats de court terme, voir https://lnkd.in/da8NZpc ).\n\nLes partisans du \"enfin\" se diront que ce genre d'article secoue utilement un lectorat qui a par ailleurs \"la main sur les manettes\", car il s'agit de d\u00e9cideurs \u00e9conomiques qui peuvent soit agir, soit accepter les obligations collectives qui limiteront leur capacit\u00e9 d'action. \n\nLes partisans du \"trop tard, trop peu\" se diront que, compte tenu de l'inertie du syst\u00e8me climatique, qui fait que de toute fa\u00e7on la d\u00e9rive des 30 prochaines ann\u00e9es est ind\u00e9pendante de nos \u00e9missions, la Californie (et d'autres r\u00e9gions du monde) est d\u00e9j\u00e0 pour partie \"fichue\" : la s\u00e9cheresse va augmenter de toute fa\u00e7on, une partie des for\u00eats et des \u00e9cosyst\u00e8mes va mourir de toute fa\u00e7on, la production agricole va baisser de toute fa\u00e7on, et le stress de la population va augmenter de toute fa\u00e7on.\n\nLes deux ont raison. Il faut d'urgence commencer \u00e0 faire ce que l'on peut pour pr\u00e9venir les d\u00e9g\u00e2ts d'une modification climatique qui va fortement s'amplifier \u00e0 l'avenir de toute fa\u00e7on (ca concerne toutes nos activit\u00e9s, et est pour le moment dramatiquement absent de tous les plans de \"relance\" des \u00e9conomies occidentales alors qu'il va falloir y mettre un morceau significatif du PIB), et en m\u00eame temps - si cette expression peut encore \u00eatre utilis\u00e9e :) - commencer d'urgence \u00e0 r\u00e9organiser le fonctionnement de l'ensemble de la soci\u00e9t\u00e9 pour baisser les \u00e9missions. Si cet article du FT peut pousser dans ces deux directions, il est bienvenu." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6814468160125730816,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6814468160759070720,urn:li:activity:6814468160759070720,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 52, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6814468160759070720,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6814468160759070720,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6814468160759070720", + "threadId": "activity:6814468160759070720", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6814468160759070720", + "urn": "urn:li:activity:6814468160759070720", + "numComments": 91, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6814468160759070720", + "reactionTypeCounts": [ + { + "count": 1063, + "reactionType": "LIKE" + }, + { + "count": 90, + "reactionType": "MAYBE" + }, + { + "count": 75, + "reactionType": "INTEREST" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6814468160759070720", + "numLikes": 1259, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6814468160759070720", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1259, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6814187737508282368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6814187737508282368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6814187737508282368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6814187737508282368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-grands-d%C3%A9fis-%C3%A9conomiques-par-la-commission-activity-6814187737508282368-QLBE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6814187736791060480", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6814187737508282368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6814187737508282368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6814187737508282368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6814187736791060480", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "DwmPBgG0oTnp7+tGACb96w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6814187737508282368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7455588378644703441", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 633, + "fileIdentifyingUrlPathSegment": "800/0/1675596192470?e=1677240000&v=beta&t=s4J9xmDfmw-p5STu5LXddXSX4KDDVG2eO1CPrKGSVik", + "expiresAt": 1677240000000, + "height": 300 + }, + { + "width": 633, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675596192471?e=1677240000&v=beta&t=VVxMZ61Sv6t5sJYaC3iu80FMoo5BMieIIWJ0NqNSuc8", + "expiresAt": 1677240000000, + "height": 300 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675596192471?e=1677240000&v=beta&t=5QkyzGcYLZk8cqZqXwPXsrCXylaT2ez9hlg9uCqWnkw", + "expiresAt": 1677240000000, + "height": 75 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675596192471?e=1677240000&v=beta&t=hlzM4wfqml9mFkMZdsAf7KO5tp8RDXn-I0x0vnpG8qA", + "expiresAt": 1677240000000, + "height": 227 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEJT8RKpseXTg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7455588378644703441)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7455588378644703441)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "strategie.gouv.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les grands d\u00e9fis \u00e9conomiques, par la commission internationale Blanchard-Tirole by strategie.gouv.fr", + "actionTarget": "https://www.strategie.gouv.fr/publications/grands-defis-economiques-commission-internationale-blanchard-tirole" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les grands d\u00e9fis \u00e9conomiques, par la commission internationale Blanchard-Tirole" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6814187736791060480,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La commission Blanchard Tirole rend ses propositions pour l'\u00e9conomie de demain : 500 pages d'un rapport qualifi\u00e9 de \"passionnant\" par L\u00e9a Salam\u00e9 lors de cette matinale de France Inter : https://lnkd.in/dJgqwn5 (sachant que ce document est sorti la veille, et qu'il fait un demi-millier de pages, je serais curieux de savoir quelle proportion elle en a lu avant d'avoir un avis dessus !). \n\nJ'ai lu en diagonale la partie climat : c'est un peu - et m\u00eame tr\u00e8s - d\u00e9cevant. Il faut monter le prix du carbone, \"et faire d'autres choses\", disent nos amis. OK, la taxe est une des mesures \u00e0 prendre, mais l'histoire r\u00e9cente montre bien qu'une taxe, ce n'est pas un projet de soci\u00e9t\u00e9, et que ce \"prix du carbone\" c'est 1% de la solution. Le \"autre chose\" n'est pas vraiment un plan d'action... \n\nCe r\u00e9sultat est-il tr\u00e8s \u00e9tonnant, avec une commission qui ne comportait que des \u00e9conomistes universitaires, mais ni praticien de l'\u00e9conomie, ni scientifique (physicien, biologiste...) ?\n\nBaisser les \u00e9missions de gaz \u00e0 effet de serre, ce n'est pas juste un probl\u00e8me th\u00e9orique, avec une solution \"passe partout\", c'est un ensemble de probl\u00e8mes pratiques. Ce qu'il faut faire dans le logement n'est pas ce qu'il faut faire pour le transport de marchandises ; la modification des pratiques agricoles ne s'aborde pas comme le changement de l'industrie lourde ; l'\u00e9volution de la production \u00e9lectrique ne se g\u00e8re pas comme celle du transport a\u00e9rien.\n\nDe ce fait, demander \u00e0 des gens qui travaillent sur des mod\u00e8les th\u00e9oriques avec des prix ce qu'il faut faire en pratique pour mieux former les ma\u00e7ons, s'il faut obliger les m\u00e9nages \u00e0 changer de chaudi\u00e8re ou monter le prix du fioul, ou encore si il faut plut\u00f4t limiter les places de parking en voiture ou plut\u00f4t augmenter les places de parking \u00e0 v\u00e9lo ne peut que conduire \u00e0 des r\u00e9sultats d\u00e9cevants. \n\nIl y a 3 ans, au Shift Project nous avions essay\u00e9 de convaincre l'Elys\u00e9e de cr\u00e9er une \"commission de planification de la d\u00e9carbonation\", qui se serait justement attaqu\u00e9e, avec une approche par fili\u00e8re, \u00e0 tous les probl\u00e8mes pratiques pos\u00e9s par le fait de mettre r\u00e9ellement l'\u00e9conomie sur une trajectoire de baisse des \u00e9missions de 5% par an.\n\nL'Elys\u00e9e n'en ayant pas voulu, nous avons d\u00e9cid\u00e9 de le faire pour nous m\u00eames au moment o\u00f9 a \u00e9clat\u00e9 la \"crise du covid\". C'est cela la gen\u00e8se du... Plan de Transformation de l'Economie Fran\u00e7aise (https://lnkd.in/dNARPrU ).\n\nChacun(e) pourra juger, au fil des publications de rapports interm\u00e9diaires que nous faisons, si notre approche est plus ou moins pertinente (et compl\u00e9mentaire ou pas) que celle suivie dans le rapport qui vient d'\u00eatre rendu." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6814187736791060480,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6814187737508282368,urn:li:activity:6814187737508282368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 35, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6814187737508282368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6814187737508282368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6814187737508282368", + "threadId": "activity:6814187737508282368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6814187737508282368", + "urn": "urn:li:activity:6814187737508282368", + "numComments": 52, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6814187737508282368", + "reactionTypeCounts": [ + { + "count": 912, + "reactionType": "LIKE" + }, + { + "count": 75, + "reactionType": "INTEREST" + }, + { + "count": 60, + "reactionType": "PRAISE" + }, + { + "count": 37, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6814187737508282368", + "numLikes": 1101, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6814187737508282368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1101, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6814082394706993152,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6814082394706993152", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6814082394706993152)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6814082394706993152)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nous-%C3%A9l%C3%A8ves-de-la-haute-fonction-publique-activity-6814082394706993152-OnoE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6814082393985585152", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6814082394706993152", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6814082394706993152,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6814082394706993152,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6814082393985585152", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "kLYTXqDrkkDy25WTtOxlGQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6814082394706993152,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7981439609037557545", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676460736040?e=1677240000&v=beta&t=z2xz3W0Mb0cVbwwYwBpLGpns2-4k1_VTDt1oFE3t8F8", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676460736040?e=1677240000&v=beta&t=NdoS3L8U0A_o3QTpTymM9u7lKTaTND3ZChbdCn3bRXU", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676460736040?e=1677240000&v=beta&t=4WaBtSaaPv39_mxrgtKz-Uy3NGn55ltAwCbyuizO2VY", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676460736041?e=1677240000&v=beta&t=Uw8Kz3AMnR6Bd8ityN3Zb4eRvmdTD4iCiuutqgrkeSU", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE6_GBrjAkX5g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7981439609037557545)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7981439609037557545)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab Nous, \u00e9l\u00e8ves de la haute fonction publique, demandons \u00e0 \u00eatre form\u00e9s \u00e0 la transition \u00e9cologique \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/idees/article/2021/06/21/nous-eleves-de-la-haute-fonction-publique-demandons-a-etre-formes-a-la-transition-ecologique_6085085_3232.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0Nous, \u00e9l\u00e8ves de la haute fonction publique, demandons \u00e0 \u00eatre form\u00e9s \u00e0 la transition \u00e9cologique\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6814082393985585152,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "138 \u00e9l\u00e8ves d'\u00e9coles formant les futurs hauts fonctionnaires (Mines, Agro-Ponts, ENA, INET, EHESP) publient une tribune dans Le Monde o\u00f9 ils demandent \u00e0 ce que \"la transition \u00e9cologique et solidaire soit plac\u00e9e au centre\" de la formation dispens\u00e9e dans le futur Institut national du service public qui prendra la suite des structures actuelles.\n\nParmi ces signataires se trouvent quelques personnes ayant des liens avec The Shift Project, par exemple parce qu'elles contribuent ou ont contribu\u00e9 \u00e0 nos travaux sur le Plan de Transformation de l'Economie Fran\u00e7aise https://lnkd.in/dNARPrU ).\n\nCette imp\u00e9rieuse n\u00e9cessit\u00e9 de pr\u00e9parer les acteurs de demain au monde de demain, et non au monde d'hier, a \u00e9t\u00e9 au centre de plusieurs travaux de notre think tank (https://lnkd.in/g2wSxGM ). Les probl\u00e8mes pour avancer deviennent alors des probl\u00e8mes pratiques.\n\nPour enseigner, il faut des enseignants. Si la mati\u00e8re est nouvelle, soit il faut former les enseignants d\u00e9j\u00e0 en place (qui doivent en avoir envie, sinon ils seront eux-m\u00eames de mauvais p\u00e9dagogues ensuite, et il faut trouver les \"enseignants pour enseignants\"), soit les remplacer (c'est plus ou moins facile selon le contexte : tr\u00e8s facile quand c'est des vacataires, impossible quand c'est des statutaires). Les journ\u00e9es ne faisant que 24 heures, si on fait de la place \u00e0 un nouveau sujet, il faut en enlever un d\u00e9j\u00e0 enseign\u00e9 : lequel ?\n\nEnfin il faut rendre les formations restantes compatibles avec ce qui est enseign\u00e9 en plus. Par exemple, si on apprend \u00e0 nos futurs hauts fonctionnaires que la plan\u00e8te comporte des limites, accepte-t-on de leur enseigner ensuite l'\u00e9conomie de mani\u00e8re diff\u00e9rente, en leur expliquant que la croissance perp\u00e9tuelle n'existe pas ? Sinon, on les met en situation d'incoh\u00e9rence, ce qui ne va pas n\u00e9cessairement les aider \u00e0 prendre de bonnes d\u00e9cisions.\n\nTout cela pour dire que de faire droit \u00e0 cet appel (ce qui est effectivement souhaitable) n'est pas faire un am\u00e9nagement marginal des formations. C'est apprendre le raisonnement syst\u00e9mique, comprendre ce qui fait la diff\u00e9rence entre un fait et une opinion, faire revenir la physique et la biologie plus pr\u00e8s des d\u00e9cisions pour l'avenir (et prendre de la hauteur de vue sur la convention \u00e9conomique), se m\u00e9fier des raisonnements par induction... \n\nEt les premiers \u00e0 qui il faut \"apprendre quelque chose\", c'est donc \u00e0 l'administration en place qui va traiter cette demande des \u00e9tudiants !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6814082393985585152,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6814082394706993152,urn:li:activity:6814082394706993152,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 125, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6814082394706993152,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6814082394706993152,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6814082394706993152", + "threadId": "activity:6814082394706993152", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6814082394706993152", + "urn": "urn:li:activity:6814082394706993152", + "numComments": 207, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6814082394706993152", + "reactionTypeCounts": [ + { + "count": 3176, + "reactionType": "LIKE" + }, + { + "count": 298, + "reactionType": "PRAISE" + }, + { + "count": 114, + "reactionType": "APPRECIATION" + }, + { + "count": 60, + "reactionType": "MAYBE" + }, + { + "count": 34, + "reactionType": "EMPATHY" + }, + { + "count": 29, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6814082394706993152", + "numLikes": 3711, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6814082394706993152", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3711, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6813777421565739008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6813777421565739008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6813777421565739008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6813777421565739008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carbon4-finance-response-to-the-secs-public-activity-6813777421565739008-lepR?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6813777421045653504", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6813777421565739008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6813777421565739008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6813777421565739008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6813777421045653504", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "NnCMDCdpIIRWakd2H5LNbg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6813777421565739008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7664391617890134341", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1624460165801?e=1677240000&v=beta&t=7izwvHEqjyRCGBLs0cZvUp87e4o0SyKvm3Kh1_ePvIM", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1624460165801?e=1677240000&v=beta&t=7aZ1HgykCPNLexmayXCvo1ijb3qrswdMfB7MxzaI7bA", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1624460165801?e=1677240000&v=beta&t=EwgGEftla9g7TQX7xp-1gh6JQ4GtXCzllmBufo989d0", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1624460165801?e=1677240000&v=beta&t=IAGrWx2NDCkPnZwg7wIE8rWe3-KFwdfsENJOL-n0mgk", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFPd9ENlvA4sg/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7664391617890134341)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7664391617890134341)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbon4finance.com \u2022 11 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carbon4 Finance response to the SEC\u2019s Public Consultation on Climate Change Disclosures by carbon4finance.com", + "actionTarget": "http://www.carbon4finance.com/carbon4-finance-response-to-the-secs-public-consultation-on-climate-change-disclosures/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carbon4 Finance response to the SEC\u2019s Public Consultation on Climate Change Disclosures" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6813777421045653504,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Securities and Exchange Commission des USA (le gendarme boursier am\u00e9ricain, donc celui qui fait vraiment peur dans un pays o\u00f9 tricher avec l'actionnaire est plus grave que bien d'autres d\u00e9lits !) a ouvert une consultation sur les informations que les entreprises cot\u00e9es doivent publier en mati\u00e8re de climat pour permettre une information compl\u00e8te des investisseurs.\n\nCarbon 4 Finance a r\u00e9pondu a cette consultation, et, pour celles et ceux que cela int\u00e9resse, nous vous proposons de d\u00e9couvrir la teneur de nos propositions (en anglais)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6813777421045653504,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6813777421565739008,urn:li:activity:6813777421565739008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 4, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6813777421565739008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6813777421565739008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6813777421565739008", + "threadId": "activity:6813777421565739008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6813777421565739008", + "urn": "urn:li:activity:6813777421565739008", + "numComments": 7, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6813777421565739008", + "reactionTypeCounts": [ + { + "count": 129, + "reactionType": "LIKE" + }, + { + "count": 7, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6813777421565739008", + "numLikes": 150, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6813777421565739008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 150, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6813720354880557056,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6813720354880557056", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6813720354880557056)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6813720354880557056)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nourrir-la-france-en-2050-avec-une-agriculture-activity-6813720354880557056-Ke99?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6813720354284957696", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6813720354880557056", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6813720354880557056,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6813720354880557056,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6813720354284957696", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "x42OMS4Dfhsm5Wc8+nNIOw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6813720354880557056,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8493956975525291685", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675866886356?e=1677240000&v=beta&t=rPuCe2BoxNt-Bs1AAQ1gBDVhma1_yQ6-oepWKIh_nrU", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675866886356?e=1677240000&v=beta&t=pZfZd5jgEkuvkzxuVvvDz7zu7I__Ej9hGoHnea81D7c", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675866886356?e=1677240000&v=beta&t=U7AF95ypVkV_uc4-V80SjkGvh5bSlKH696_xJD9-wec", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675866886357?e=1677240000&v=beta&t=tMvF7wML8ro1HndhauxFLRe5l-rh51xyh0WvzPsvJFg", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHB9BzAfo_7eg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8493956975525291685)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8493956975525291685)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \"Nourrir la France en 2050 avec une agriculture vivante\" | Rdv le 6 juillet by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-nourrir-la-france-en-2050-conference-ateliers-6-juillet-14h/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\"Nourrir la France en 2050 avec une agriculture vivante\" | Rdv le 6 juillet" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6813720354284957696,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a quelques si\u00e8cles, la richesse, c'\u00e9tait la terre : on \u00e9tait riche \u00e0 proportion de son patrimoine foncier, rural pour l'essentiel. Puis le patrimoine s'est transf\u00e9r\u00e9 sur les usines et la production \"mat\u00e9rielle\", dont l'\u00e9nergie fait partie : l'homme le plus riche de tous les temps a peut-\u00eatre \u00e9t\u00e9 Rockefeller, le premier magnat du p\u00e9trole, \u00e0 une \u00e9poque o\u00f9 l'essentiel de l'or noir \u00e9tait extrait aux USA (et a fait leur puissance).\n\nMais... la tendance a commenc\u00e9 \u00e0 s'inverser. Le prix des terres arables a \u00e9t\u00e9 multipli\u00e9 par 6 dans le monde entre\u00a02002 et\u00a02018. Il faut dire que de la terre, il y en a de moins en moins par personne : de 1960 \u00e0 aujourd'hui, la surface agricole par personne est pass\u00e9e de 1,5 \u00e0 0,6 hectare (voir grahique en commentaire). \n\nLa production \u00e0 l'hectare a consid\u00e9rablement augment\u00e9... gr\u00e2ce aux hydrocarbures (tracteurs, engrais - issus du gaz, phytosanitaires - issus du p\u00e9trole et du gaz). Que va-t-il se passer quand ces auxiliaires ne seront plus aussi faciles d'acc\u00e8s ?\n\nFaut-il mettre plus de num\u00e9rique dans l'agriculture, et donc remplacer des gens par des machines, ou faire l'inverse ? Le green deal europ\u00e9en, qui pr\u00e9voit plus d'une centaine de milliards pour \"num\u00e9riser les campagnes\", alors que la PAC ne rend pas l'agriculture plus \"douce\" pour l'environnement et mieux adapt\u00e9e \u00e0 un climat qui va devenir plus hostile, nous emm\u00e8ne-t-il dans la bonne direction ?\n\nLe 6 juillet prochain, The Shift Project pr\u00e9sentera ses premi\u00e8res conclusions sur le volet \"agriculture\" du Plan de Transformation de l'Economie Fran\u00e7aise. Suivront des ateliers (prioritairement r\u00e9serv\u00e9s aux professionnels du secteur) pour discuter des bonnes mesures \u00e0 prendre pour pr\u00e9parer l'avenir au mieux.\n\nL'agriculture a beau repr\u00e9senter seulement 2% de la valeur ajout\u00e9e dans notre pays (comme le poids de notre cervelle au sein de notre propre corps), sans rien \u00e0 manger, il y a quelques petites soucis \u00e0 se faire sur le reste." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6813720354284957696,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6813720354880557056,urn:li:activity:6813720354880557056,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 58, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6813720354880557056,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6813720354880557056,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6813720354880557056", + "threadId": "activity:6813720354880557056", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6813720354880557056", + "urn": "urn:li:activity:6813720354880557056", + "numComments": 99, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6813720354880557056", + "reactionTypeCounts": [ + { + "count": 1103, + "reactionType": "LIKE" + }, + { + "count": 99, + "reactionType": "MAYBE" + }, + { + "count": 91, + "reactionType": "INTEREST" + }, + { + "count": 21, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6813720354880557056", + "numLikes": 1333, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6813720354880557056", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1333, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6813536146920886272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6813536146920886272", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6813536146920886272)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6813536146920886272)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nouvelle-vague-de-chaleur-en-sib%C3%A9rie-occidentale-activity-6813536146920886272-HrA3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6813536146463698944", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6813536146920886272", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6813536146920886272,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6813536146920886272,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6813536146463698944", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "Fz2L1yU+yNKOKGxzAcDhHg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6813536146920886272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8928811951830336669", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 375, + "fileIdentifyingUrlPathSegment": "800/0/1675898445758?e=1677240000&v=beta&t=BzLiFR50LpwIn38rMZsBsUBA4pNCfWT3trUTEHmJyXM", + "expiresAt": 1677240000000, + "height": 303 + }, + { + "width": 375, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675898445758?e=1677240000&v=beta&t=HcmTS_uHsPXNssiuS_a4Kq1KsB8_PuIkcyKM8AEZiQg", + "expiresAt": 1677240000000, + "height": 303 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675898445758?e=1677240000&v=beta&t=NqAP3hBYgTZBI9T8x3lkmJwiIwwKdB7mFptl4665ZPE", + "expiresAt": 1677240000000, + "height": 129 + }, + { + "width": 375, + "fileIdentifyingUrlPathSegment": "480/0/1675898445759?e=1677240000&v=beta&t=21MWOqhj6LCEPuNzyv0Q-jVl4RG4ArgStU0ioAXObos", + "expiresAt": 1677240000000, + "height": 303 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEnlGm6InvU1w/articleshare-shrink_" + }, + "displayAspectRatio": 0.808 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Carte d'anomalies de temp\u00e9rature \u00e0 2 m le 23 juin 2021. \u00a9 Climate Reanalizer." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8928811951830336669)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8928811951830336669)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "meteofrance.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nouvelle vague de chaleur en Sib\u00e9rie occidentale : la banquise souffre by meteofrance.com", + "actionTarget": "https://meteofrance.com/actualites-et-dossiers/actualites/planete/nouvelle-vague-de-chaleur-en-siberie-occidentale-la-banquise" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nouvelle vague de chaleur en Sib\u00e9rie occidentale : la banquise souffre" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6813536146463698944,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En France m\u00e9tropolitaine, les temp\u00e9ratures de ce mois de juin nous ont \u00e9pargn\u00e9 la chaleur extr\u00eame, et il a plu. \n\nDans le m\u00eame temps, un record pour le mois de juin vient d'\u00eatre battu \u00e0 Moscou (et un record de minimum pour la nuit \u00e0 Saint P\u00e9tersbourg : 25 \u00b0C), et une large partie de la Russie (pourtant le plus grand pays du monde par la superficie) est sous l'emprise d'une vague de chaleur.\n\nMalheureusement, le nouveau normal est plus chez eux que chez nous : ici, nous avons juste eu un peu de r\u00e9pit..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6813536146463698944,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6813536146920886272,urn:li:activity:6813536146920886272,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 22, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6813536146920886272,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6813536146920886272,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6813536146920886272", + "threadId": "activity:6813536146920886272", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6813536146920886272", + "urn": "urn:li:activity:6813536146920886272", + "numComments": 35, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6813536146920886272", + "reactionTypeCounts": [ + { + "count": 339, + "reactionType": "LIKE" + }, + { + "count": 74, + "reactionType": "MAYBE" + }, + { + "count": 65, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6813536146920886272", + "numLikes": 483, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6813536146920886272", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 483, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6813398735477870592,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6813398735477870592", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6813398735477870592)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6813398735477870592)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-abstentionnistes-sont-plus-que-jamais-activity-6813398735477870592-KH5y?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6813398734752251904", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6813398735477870592", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6813398735477870592,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6813398735477870592,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6813398734752251904", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "v9raBXQmDDN+X/3rBK2p7A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6813398735477870592,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQH8iRA-fvp0IA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQH8iRA-fvp0IA", + "artifacts": [ + { + "width": 1406, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1624440842174?e=1679529600&v=beta&t=mBm03JVTWPQcxCSRBxRowSC-vOHUJzkjrZSLMAhONMI", + "expiresAt": 1679529600000, + "height": 1354 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1624440843925?e=1679529600&v=beta&t=sFDf1pinXKSrHoMh0osZwncwHDYOfKbTwj8b0PVrdYg", + "expiresAt": 1679529600000, + "height": 19 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1624440843925?e=1679529600&v=beta&t=W6508QBXnNubbWcptDGZhYnUNf3_VF9FcmRFYTyGnf4", + "expiresAt": 1679529600000, + "height": 1233 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1624440843925?e=1679529600&v=beta&t=iYuqH5cfYwq18WFmmnotKoG0Jp45UElDWU7KusLBYz4", + "expiresAt": 1679529600000, + "height": 462 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1624440843925?e=1679529600&v=beta&t=fxyWzLzPiOu-ZkH7e09PMQE25uMY4uVGGIY0OMTLQic", + "expiresAt": 1679529600000, + "height": 154 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1624440843925?e=1679529600&v=beta&t=-w_6peCBoM6ZwOcVcB2YKtlLsC_efCqaLevDkGiWlWk", + "expiresAt": 1679529600000, + "height": 770 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQH8iRA-fvp0IA/feedshare-shrink_" + }, + "displayAspectRatio": 0.9630156472261735 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, bar chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6813398734752251904,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les abstentionnistes sont, plus que jamais, le premier parti politique de France. 2/3 des \u00e9lecteurs inscrits ne sont pas all\u00e9s voter Dimanche dernier : https://lnkd.in/dZNtgTd\n\nQuel lien avec le climat et l'\u00e9nergie ? Il y en a au moins un, il me semble, qui est celui-ci : une classe politique d\u00e9cr\u00e9dibilis\u00e9e est une classe politique qui est incapable de mobiliser la population en faveur d'un effort aussi massif que celui de la d\u00e9carbonation de l'\u00e9conomie. \n\nLa d\u00e9cr\u00e9dibilisation des forces politiques en place est donc autant une opportunit\u00e9 qu'une mauvaise nouvelle : l'absence de cr\u00e9dibilit\u00e9, au sens large, des personnages actuellement sur le devant de la sc\u00e8ne rend possible de pr\u00eater attention \u00e0 des discours diff\u00e9rents, mais cela signifie aussi que la fonction se d\u00e9cr\u00e9dibilise au sens large, et \u00e0 ce moment m\u00eame d'autres titulaires des m\u00eames si\u00e8ges, proposant quelque chose de tr\u00e8s diff\u00e9rent, auront du mal \u00e0 se faire entendre.\n\nUne des causes de l'\u00e9cart entre la classe politique et la population est peut-\u00eatre \u00e0 chercher du c\u00f4t\u00e9 de l'\u00e9nergie, justement. La contraction de l'approvisionnement europ\u00e9en depuis 2006 a emp\u00each\u00e9 le retour d'une \"vraie croissance\", alors que rien n'est pr\u00eat dans les programmes des partis, qui continuent \u00e0 se projeter dans un avenir o\u00f9 cette croissance revient, et \u00e0 promettre cette \u00e9volution \"radieuse\" \u00e0 des \u00e9lecteurs qui voient pourtant la r\u00e9alit\u00e9 s'\u00e9crire autrement.\n\nLa bonne question est de savoir si la r\u00e9forme peut venir de l'int\u00e9rieur de ce monde l\u00e0, ou si elle viendra de l'ext\u00e9rieur, et \u00e0 ce moment si elle sera douce ou violente. Malheureusement, l'histoire nous enseigne que la derni\u00e8re \u00e9ventualit\u00e9 n'est pas un risque abstrait." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6813398734752251904,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6813398735477870592,urn:li:activity:6813398735477870592,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 53, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6813398735477870592,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6813398735477870592,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6813398735477870592", + "threadId": "activity:6813398735477870592", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6813398735477870592", + "urn": "urn:li:activity:6813398735477870592", + "numComments": 118, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6813398735477870592", + "reactionTypeCounts": [ + { + "count": 588, + "reactionType": "LIKE" + }, + { + "count": 66, + "reactionType": "MAYBE" + }, + { + "count": 56, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6813398735477870592", + "numLikes": 734, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6813398735477870592", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 734, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6813115971000139776,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6813115971000139776", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6813115971000139776)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6813115971000139776)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_dans-un-article-r%C3%A9cemment-paru-dans-la-presse-activity-6813115971000139776-7N44?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6813115969792184320", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6813115971000139776", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6813115971000139776,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6813115971000139776,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6813115969792184320", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "Hf5tuJpst68SsoQeeFlKpw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6813115971000139776,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFnLWEFGPl3Dw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFnLWEFGPl3Dw", + "artifacts": [ + { + "width": 531, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1624373426283?e=1679529600&v=beta&t=rYeLPEFf5iA4u8lkykrWgqb7x6hJfP4vsx0wcH_LkpQ", + "expiresAt": 1679529600000, + "height": 641 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1624373427230?e=1679529600&v=beta&t=yj9Vih93WzIwEK_jCC7fuk5rv6Apkyf-JeoXIoIi3BY", + "expiresAt": 1679529600000, + "height": 24 + }, + { + "width": 531, + "fileIdentifyingUrlPathSegment": "1280/0/1624373427230?e=1679529600&v=beta&t=JgS4OT4wib1Z7VEcHcgPcbEe4BLx7f_QZRHPzwNpG8o", + "expiresAt": 1679529600000, + "height": 641 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1624373427230?e=1679529600&v=beta&t=uDTIN3s6nSk_TrAhJ4m8IYRXS0uh-nBAxQyIDGByEtw", + "expiresAt": 1679529600000, + "height": 579 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1624373427230?e=1679529600&v=beta&t=ucXfclRWMU2WGMKMpbAhzifNKlXcF-pAg_0BeZkTFoY", + "expiresAt": 1679529600000, + "height": 193 + }, + { + "width": 531, + "fileIdentifyingUrlPathSegment": "800/0/1624373427230?e=1679529600&v=beta&t=xun5SYmHyZXh2kZd5W76PnA4ySfOQkkStTidIBepzyM", + "expiresAt": 1679529600000, + "height": 641 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFnLWEFGPl3Dw/feedshare-shrink_" + }, + "displayAspectRatio": 1.207156308851224 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6813115969792184320,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans un article r\u00e9cemment paru dans la presse r\u00e9gionale sont juxtapos\u00e9es une photo d'\u00e9olienne, et deux phrases sur le d\u00e9veloppement des \u00e9nergies renouvelables et la neutralit\u00e9 carbone.\n\nTout non sp\u00e9cialiste lisant l'article et regardant la photo comprendra donc que les \u00e9oliennes sont une composante de l'atteinte de la neutralit\u00e9 carbone dans notre pays. En fait, leur d\u00e9veloppement chez nous correspond \u00e0 un tout autre objectif : celui de la lutte contre le nucl\u00e9aire civil (dont la baisse ne permet en rien d'\u00e9viter du CO2 puisque le nucl\u00e9aire n'en \u00e9met pas en direct, et tr\u00e8s peu en analyse de cycle de vie).\n\nMais faut-il s'\u00e9tonner de cette confusion dans la presse, quand le gouvernement de notre pays l'entretient en permanence ? Prenons un exemple (un de plus !) : dans sa \"D\u00e9cision du 18 mai 2021 cons\u00e9cutive au d\u00e9bat public portant sur les projets d'\u00e9oliennes flottantes au sud de la Bretagne et leur raccordement\" (https://lnkd.in/dZ5wjVZ ), la ministre de la transition \u00e9cologique - ou plus probablement son administration - \u00e9crit par exemple que \"la strat\u00e9gie \u00e9nerg\u00e9tique fran\u00e7aise est expos\u00e9e dans la strat\u00e9gie nationale bas carbone et la programmation pluriannuelle de l'\u00e9nergie, qui (...) soulignent le besoin de d\u00e9velopper les \u00e9nergies renouvelables, afin de r\u00e9duire les \u00e9missions de gaz \u00e0 effet de serre et de diversifier le bouquet \u00e9lectrique\" \n\nOn peut lire dans le m\u00eame avis que \"le projet de parc \u00e9olien en mer flottant de 250 m\u00e9gawatts (MW) et la perspective du d\u00e9veloppement d'un second parc de 500 MW maximum r\u00e9pondent au double objectif de r\u00e9duction des \u00e9missions de gaz \u00e0 effet de serre et de diversification du bouquet \u00e9lectrique fran\u00e7ais pour le rendre plus r\u00e9silient, participant ainsi \u00e0 (...) l'atteinte des objectifs de neutralit\u00e9 carbone\".\n\nL'\u00e9olien, pr\u00e9vu pour substituer du nucl\u00e9aire dans la promesse de Hollande perp\u00e9tu\u00e9e depuis, devient donc (et c'est inexact) une composante de \"l'atteinte des objectifs de neutralit\u00e9 carbone\". \n\nCet avis est, plus g\u00e9n\u00e9ralement, bourr\u00e9 de phrases qui affirment des choses factuellement exactes mais qui sont, pour qui conna\u00eet bien le dossier, \u00e0 l'\u00e9vidence destin\u00e9es \u00e0 noyer le poisson. \n\nPar exemple \"la strat\u00e9gie \u00e9nerg\u00e9tique fran\u00e7aise est expos\u00e9e dans la strat\u00e9gie nationale bas carbone et la programmation pluriannuelle de l'\u00e9nergie, qui (...) soulignent le besoin de d\u00e9velopper les \u00e9nergies renouvelables\" ne dit pas si notre ennemi est prioritairement les fossiles (auquel cas les ENR \u00e0 d\u00e9velopper n'incluent pas l'\u00e9olien) ou le nucl\u00e9aire (auquel cas l'\u00e9olien en mer est effectivement une option).\n\nLa bonne question est de savoir pourquoi l'administration fran\u00e7aise ne dit pas clairement \"nous voulons d\u00e9velopper l'\u00e9olien en France parce que nous sommes contre le nucl\u00e9aire avant toutes choses, peu importe le CO2\". A-t-elle honte de ses motivations r\u00e9elles ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6813115969792184320,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6813115971000139776,urn:li:activity:6813115971000139776,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 99, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6813115971000139776,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6813115971000139776,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6813115971000139776", + "threadId": "activity:6813115971000139776", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6813115971000139776", + "urn": "urn:li:activity:6813115971000139776", + "numComments": 417, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6813115971000139776", + "reactionTypeCounts": [ + { + "count": 935, + "reactionType": "LIKE" + }, + { + "count": 79, + "reactionType": "PRAISE" + }, + { + "count": 77, + "reactionType": "INTEREST" + }, + { + "count": 46, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6813115971000139776", + "numLikes": 1146, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6813115971000139776", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1146, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6812979544899805184,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6812979544899805184", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6812979544899805184)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6812979544899805184)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_document-item-activity-6812979544899805184-z3dC?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6812979544404897792", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6812979544899805184", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6812979544899805184,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6812979544899805184,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6812979544404897792", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "J0nuE32ClZw+JZyWq5xS7Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6812979544899805184,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7467493984199424960", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676569509888?e=1677240000&v=beta&t=l9sQkAvwYNSxJ1cyrpzPHvh5CNn7Q9cWoLji8uaDcf0", + "expiresAt": 1677240000000, + "height": 462 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676569509888?e=1677240000&v=beta&t=A1lL-pPHEwxag0xrzGtTq8LJX6BF-7cssvGjzI5_A5c", + "expiresAt": 1677240000000, + "height": 693 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676569509889?e=1677240000&v=beta&t=KdZwxcoW1EgCoc__byu4Tzw7UcAdG8NRZ040sLxunPA", + "expiresAt": 1677240000000, + "height": 92 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676569509889?e=1677240000&v=beta&t=R1VPxScqYGeyJ64UomjpDzbEk8O2MbIB3ZRVSAYQG7g", + "expiresAt": 1677240000000, + "height": 277 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGigQ3oMlL-Ig/articleshare-shrink_" + }, + "displayAspectRatio": 0.5775 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7467493984199424960)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7467493984199424960)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "eca.europa.eu \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Document Item by eca.europa.eu", + "actionTarget": "https://www.eca.europa.eu/fr/Pages/DocItem.aspx?did=58913" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Document Item" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6812979544404897792,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Cour des comptes europ\u00e9enne (qui, comme la n\u00f4tre, a \u00e9t\u00e9 institu\u00e9e pour contr\u00f4ler les finances de l'Union) vient de publier un rapport sur l'impact de la Politique Agricole Commune (PAC), qui mobilise la moiti\u00e9 du budget de l'UE, sur les \u00e9missions de gaz \u00e0 effet de serre de l'agriculture (qui repr\u00e9sentent environ 20% des \u00e9missions territoriales europ\u00e9ennes).\n\nLe r\u00e9sultat tient en un chiffre, selon les auteurs du rapport : z\u00e9ro. Pourtant, depuis 2013, le climat est un axe majeur de la PAC. 100 milliards d'euros ont \u00e9t\u00e9 consacr\u00e9s \u00e0 ce sujet de 2014 \u00e0 2020, du moins sur le papier, et pourtant les \u00e9missions agricoles sont rest\u00e9es stables. \n\nLa PAC, disent les rapporteurs, ne vise aucune limitation du cheptel bovin (la moiti\u00e9 des \u00e9missions domestiques, et plus encore si l'on inclut la d\u00e9forestation import\u00e9e li\u00e9e aux produits v\u00e9g\u00e9taux pour le b\u00e9tail produits hors UE). Incidemment le rapport montre que la consommation de viande par personne augmente de 2014 \u00e0 2018, quelle que soit la viande. \n\nL'utilisation d'engrais azot\u00e9s (un tiers des \u00e9missions via le N2O) augmente.\n\nLa PAC encourage par ailleurs les agriculteurs qui cultivent sur des tourbi\u00e8res drain\u00e9es (20% des \u00e9missions agricoles).\n\nPlus g\u00e9n\u00e9ralement la PAC ne finance aucune pratique ayant un gros potentiel de baisse des \u00e9missions. Elle n'a pas augment\u00e9 le soutien au boisement, \u00e0 l'agroforesterie et \u00e0 la conversion de terres arables en prairies permanentes. La Cour ne propose pas une PAC alternative (ce n'est pas son r\u00f4le) mais fournit de nombreux \u00e9l\u00e9ments qui permettent d'y r\u00e9fl\u00e9chir.\n\nLe rapport - https://lnkd.in/e9DKBwD - est tr\u00e8s bien r\u00e9dig\u00e9 (en anglais), m\u00eame s'il faut parfois traduire un terme technique, et contient de tr\u00e8s nombreux graphiques tr\u00e8s instructifs." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6812979544404897792,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6812979544899805184,urn:li:activity:6812979544899805184,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 66, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6812979544899805184,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6812979544899805184,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6812979544899805184", + "threadId": "activity:6812979544899805184", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6812979544899805184", + "urn": "urn:li:activity:6812979544899805184", + "numComments": 156, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6812979544899805184", + "reactionTypeCounts": [ + { + "count": 999, + "reactionType": "LIKE" + }, + { + "count": 189, + "reactionType": "INTEREST" + }, + { + "count": 162, + "reactionType": "MAYBE" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6812979544899805184", + "numLikes": 1373, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6812979544899805184", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1373, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6812790685658304513,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6812790685658304513", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6812790685658304513)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6812790685658304513)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_comme-tous-les-ans-lirsn-publie-son-barom%C3%A8tre-activity-6812790685658304513-ByG5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6812790685066919936", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6812790685658304513", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6812790685658304513,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6812790685658304513,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6812790685066919936", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "8QY1WiiiI1Kv5VLN1qisUw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6812790685658304513,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQG-nFjreoK1vQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQG-nFjreoK1vQ", + "artifacts": [ + { + "width": 1504, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1624295872297?e=1679529600&v=beta&t=SPUYmfB6A7pZoWJiR_-HwKZathtLHKPPobi_a2Ok1w4", + "expiresAt": 1679529600000, + "height": 1024 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1624295874203?e=1679529600&v=beta&t=lu3T5n5czX5XD4ouL953pbh1tZMzJQbt8Ph8PDC0nvQ", + "expiresAt": 1679529600000, + "height": 14 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1624295874203?e=1679529600&v=beta&t=VtlDzPD9ivKCeJNhrfEHfhv0OQn8w1_tYPkPrhPUZh8", + "expiresAt": 1679529600000, + "height": 871 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1624295874203?e=1679529600&v=beta&t=YfRa5pLTOEXvQhbbTXm5V8lFFcZr2awrZfEknyZJzdg", + "expiresAt": 1679529600000, + "height": 327 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1624295874203?e=1679529600&v=beta&t=fgoRywYvEohlINee7qYUnij3K0OM5FkD1mcHDjQo4hQ", + "expiresAt": 1679529600000, + "height": 109 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1624295874203?e=1679529600&v=beta&t=3J1rl18Yz_Qm_PJzevHz32BXQ8T1DC5VXuBBqVN5jZs", + "expiresAt": 1679529600000, + "height": 545 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQG-nFjreoK1vQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.6808510638297872 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, bar chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6812790685066919936,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Comme tous les ans, l'IRSN publie son \"barom\u00e8tre des risques\", destin\u00e9 \u00e0 sonder les coeurs et les reins de mes compatriotes sur leur perception des risques nucl\u00e9aires, et surtout leur comparaison avec d'autres : https://lnkd.in/dGW6pce\n\nOn y trouve le graphique ci-dessous (et d'autres tr\u00e8s int\u00e9ressants, notamment sur la place qui doit \u00eatre accord\u00e9e \u00e0 \"l'expert\" dans la prise de d\u00e9cision) fournissant cet \u00e9tonnant r\u00e9sultat, alors que nous sommes en plein 2\u00e8 confinement et que l'\u00e9conomie n'est pas \"au mieux\" : le r\u00e9chauffement climatique inqui\u00e8te plus que le ch\u00f4mage ou la pauvret\u00e9. Il inqui\u00e8te surtout consid\u00e9rablement plus que le nucl\u00e9aire (mais ce n'est pas le propos essentiel de ce post, donc merci de ne pas troller sur ce sujet).\n\nSachant que les consid\u00e9rations sanitaires ne sont jamais tr\u00e8s loin des consid\u00e9rations environnementales (un environnement sain est du reste un d\u00e9terminant majeur d'une bonne sant\u00e9), et que le terrorisme a d\u00e9sormais un d\u00e9terminant climatique parfois, ce r\u00e9sultat ne sugg\u00e8re-t-il pas que nos concitoyens seraient \"accessibles\" \u00e0 un grand projet de soci\u00e9t\u00e9 qui mettrait la d\u00e9carbonation au coeur des politiques publiques, et des projets porteurs d'espoir ?\n\nEn tous cas, c'est le pari que nous avons pris il y a un an au Shift Project quand nous nous sommes lanc\u00e9s dans le \"plan de transformation de l'\u00e9conomie fran\u00e7aise\" (https://lnkd.in/dNARPrU ). Ce r\u00e9sultat inattendu est une invitation de plus \u00e0 \u00eatre \u00e0 la hauteur du rendez vous l'ann\u00e9e prochaine." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6812790685066919936,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6812790685658304513,urn:li:activity:6812790685658304513,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 18, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6812790685658304513,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6812790685658304513,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6812790685658304513", + "threadId": "activity:6812790685658304513", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6812790685658304513", + "urn": "urn:li:activity:6812790685658304513", + "numComments": 98, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6812790685658304513", + "reactionTypeCounts": [ + { + "count": 270, + "reactionType": "LIKE" + }, + { + "count": 26, + "reactionType": "INTEREST" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6812790685658304513", + "numLikes": 319, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6812790685658304513", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 319, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6812673259750875136,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6812673259750875136", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6812673259750875136)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6812673259750875136)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_directeurrice-ex%C3%A9cutifve-pour-le-haut-conseil-activity-6812673259750875136-guKy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6812673259436314625", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6812673259750875136", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6812673259750875136,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6812673259750875136,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6812673259436314625", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "1woXi8x1Cevx2baDJqWyiQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6812673259750875136,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8388583756708177862", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1623414386192?e=1677240000&v=beta&t=rYXeHio9jqPn4MUtGM8Q__crFldbw_GPY8rvvuaryDE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1623414386192?e=1677240000&v=beta&t=2pfmzVrswNmooFvQrH3gQa3IFkpc9DEm8on2Ns0GKXc", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1623414386192?e=1677240000&v=beta&t=cgdwGK1NvzrIkfgQgjBJ39W550Ns5GmbqGqaU8XgI3k", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1623414386192?e=1677240000&v=beta&t=vXFf0a3GBNrMIrAI1u3Jwjqabbis6JXP1TTvm2Mjkeg", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHqXMd0WXGYzQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8388583756708177862)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8388583756708177862)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "place-emploi-public.gouv.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Directeur/rice ex\u00e9cutif/ve pour le haut conseil pour le climat | Portail de la Fonction Publique by place-emploi-public.gouv.fr", + "actionTarget": "https://place-emploi-public.gouv.fr/offre-emploi/directeurrice-executifve-pour-le-haut-conseil-pour-le-climat-reference-2021-638377/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Directeur/rice ex\u00e9cutif/ve pour le haut conseil pour le climat | Portail de la Fonction Publique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6812673259436314625,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le directeur ex\u00e9cutif du Haut conseil pour le climat est mort (enfin quand m\u00eame pas, c'est juste qu'il s'en va :) ), vive le directeur ex\u00e9cutif du Haut conseil pour le climat !\n\nLe HCC est donc \u00e0 la recherche de l'oiseau rare qui prendra la suite du premier titulaire du poste. A vos CV pour celles et ceux qui sont tent\u00e9s par cette aventure." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6812673259436314625,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6812673259750875136,urn:li:activity:6812673259750875136,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 23, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6812673259750875136,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6812673259750875136,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6812673259750875136", + "threadId": "activity:6812673259750875136", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6812673259750875136", + "urn": "urn:li:activity:6812673259750875136", + "numComments": 36, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6812673259750875136", + "reactionTypeCounts": [ + { + "count": 153, + "reactionType": "LIKE" + }, + { + "count": 5, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "INTEREST" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6812673259750875136", + "numLikes": 168, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6812673259750875136", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 168, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6812431104285409280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6812431104285409280", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6812431104285409280)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6812431104285409280)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lillusion-de-la-finance-verte-activity-6812431104285409280-DFRT?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6812431103807242240", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6812431104285409280", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6812431104285409280,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6812431104285409280,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6812431103807242240", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "rAFb/7wpiHcSyLV5Mdb9Dg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6812431104285409280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7446221467210816515", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 445, + "fileIdentifyingUrlPathSegment": "800/0/1676292783324?e=1677240000&v=beta&t=bNND-k3RYNFMYMrj3sJE7cQKcA6D6HjDhluqw4JWT9M", + "expiresAt": 1677240000000, + "height": 445 + }, + { + "width": 445, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676292783324?e=1677240000&v=beta&t=5gqeNFwDbwqxcVEWvO-M7Cc1i6eDbRyq075E3LVuxio", + "expiresAt": 1677240000000, + "height": 445 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676292783324?e=1677240000&v=beta&t=6vn9ZN4LsyVXjvt3y4rXjwB2WD_s6DksGicaH13kd8g", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 445, + "fileIdentifyingUrlPathSegment": "480/0/1676292783324?e=1677240000&v=beta&t=OvSUL1amoSH6dQqM_Zi7qdJxmX27XrC40yP4dFvhCPY", + "expiresAt": 1677240000000, + "height": 445 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFiQpF7ts_c4w/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7446221467210816515)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7446221467210816515)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'illusion de la finance verte by jancovici.com", + "actionTarget": "https://jancovici.com/recension-de-lectures/societes/lillusion-de-la-finance-verte/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'illusion de la finance verte" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6812431103807242240,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 17, + "miniProfile": { + "firstName": "Julien", + "lastName": "Lefournier", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABPxSAsBCJQHrvVPPW4JAbNt61IrloOSy7U", + "occupation": "Consultant Ind\u00e9pendant, co-auteur de \"L'illusion de la finance verte\" (Les Editions de l'Atelier).", + "objectUrn": "urn:li:member:334579723", + "entityUrn": "urn:li:fs_miniProfile:ACoAABPxSAsBCJQHrvVPPW4JAbNt61IrloOSy7U", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1621411471515?e=1681948800&v=beta&t=EF2oli8u8f8Nqgu_9IvTrL1_6WPaYlMeloYNc_BzUWc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1621411471515?e=1681948800&v=beta&t=FNfbPgliaWmJfMHdXtEfgHQZq6pt50V_mYdI9oiML6A", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQHXIYAA4VTOdw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "julien-lefournier-63707294", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1643034363314?e=1681948800&v=beta&t=ZTcDtCdGxmXDuvmVdZhAeLf9x7XZz_NAexYTahg2L9Q", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1643034363314?e=1681948800&v=beta&t=wBWhXFvEec1lymDLcw6ad3IxncMLoCv-uLZa13WVLZI", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1643034363314?e=1681948800&v=beta&t=cyfLF3LgIqX1gzD-J2UUWN4L8fPBN0O6T51c6qTyGjM", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1643034363314?e=1681948800&v=beta&t=-KmxEKiiM6O-eCq0P-zO1vFsLvjIEKY25E2gEHkEveo", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQFMIu0PVPgKoA/profile-displayphoto-shrink_" + } + }, + "trackingId": "P73r/IZwRgOhKaCiIBZ+Qw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Julien Lefournier et Alain Grandjean ont publi\u00e9 r\u00e9cemment un livre un peu (et m\u00eame beaucoup) poil \u00e0 gratter sur la \"finance verte\". \n\nPour les auteurs, cette affirmation que la finance est capable de rendre, seule, l'\u00e9conomie plus douce pour l'environnement est apparue dans la foul\u00e9e de la crise des subprime, pour redonner des couleurs \u00e0 un secteur d'activit\u00e9 qui n'avait plus tr\u00e8s bonne presse \u00e0 l'\u00e9poque.\n\nMais leur argumentation est qu'il s'agit d'une fausse promesse : une activit\u00e9 \"verte\" ne peut pas, par construction expliquent-ils, b\u00e9n\u00e9ficier de meilleures conditions financi\u00e8res que la m\u00eame \"pas verte\". Et si la totalit\u00e9 d'un secteur d'activit\u00e9 devient \"vert\" (par exemple les \u00e9nergies renouvelables), ce n'est pas \u00e0 de meilleures conditions d'emprunt ou de financement qu'on le doit : c'est \u00e0 la puissance publique qui l'a d\u00e9cid\u00e9 et cr\u00e9e des obligations ou interdictions qui changent l'\u00e9quation \u00e9conomique.\n\nIncisif et salutairement provocant, mais comportant de nombreuses explications sur les m\u00e9canismes de base de la finance, ce livre, r\u00e9dig\u00e9 par deux auteurs qui connaissent de l'int\u00e9rieur le sujet qu'ils \u00e9voquent, est assur\u00e9ment \u00e0 recommander.\n\nIl fera \u00e9videmment grincer quelques dents dans le monde financier. Mais, au regard du cr\u00e9dit que l'on peut accorder aux auteurs, qui en connaissent tr\u00e8s bien les rouages techniques et les jeux d'acteurs, j'esp\u00e8re que c'est bien l\u00e0 que le lectorat sera le plus nombreux. Car se faire sortir de sa zone de confort par des gens ayant r\u00e9fl\u00e9chi est souvent la premi\u00e8re condition d'une progression utile pour tou(te)s." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6812431103807242240,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6812431104285409280,urn:li:activity:6812431104285409280,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 38, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6812431104285409280,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6812431104285409280,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6812431104285409280", + "threadId": "activity:6812431104285409280", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6812431104285409280", + "urn": "urn:li:activity:6812431104285409280", + "numComments": 56, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6812431104285409280", + "reactionTypeCounts": [ + { + "count": 632, + "reactionType": "LIKE" + }, + { + "count": 69, + "reactionType": "MAYBE" + }, + { + "count": 63, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6812431104285409280", + "numLikes": 783, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6812431104285409280", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 783, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6812308054902640640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6812308054902640640", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6812308054902640640)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6812308054902640640)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_ce-nest-un-myst%C3%A8re-pour-personne-les-allemands-activity-6812308054902640640-EOXf?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6812308054348976129", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6812308054902640640", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6812308054902640640,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6812308054902640640,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6812308054348976129", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "dqSkV1XtPlv5KhIF1OewJw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6812308054902640640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHLRbiOnqLhlA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHLRbiOnqLhlA", + "artifacts": [ + { + "width": 2012, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1624180803669?e=1679529600&v=beta&t=dD-O77tTwNpa1qVcI4I-_ntqhDRk2hqj2mOon_twbVU", + "expiresAt": 1679529600000, + "height": 1200 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1624180805721?e=1679529600&v=beta&t=qV5B1JueXOaydaFCXZQYWzxUpWBK3kKqGhq7i_G9k24", + "expiresAt": 1679529600000, + "height": 12 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1624180805721?e=1679529600&v=beta&t=MTN63TjR7N98wHx_rUxFJ8yV5L48n9-GRhxZ_0A9aIU", + "expiresAt": 1679529600000, + "height": 763 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1624180805721?e=1679529600&v=beta&t=vdS6ujOe27_GxV7pSElwXtiUoCFTHKigzzMjZ8G7mIE", + "expiresAt": 1679529600000, + "height": 286 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1624180805721?e=1679529600&v=beta&t=YxvEi1QcHm0bW0ZVeW7pt8Jk-VVkIOzgo5TTzmmotcI", + "expiresAt": 1679529600000, + "height": 95 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1624180805721?e=1679529600&v=beta&t=PZe56rYCjDLYPQSPa3q-Jt9DnYGmPg5EiJ34AAO63J0", + "expiresAt": 1679529600000, + "height": 477 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHLRbiOnqLhlA/feedshare-shrink_" + }, + "displayAspectRatio": 0.5964214711729622 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, bar chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6812308054348976129,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce n'est un myst\u00e8re pour personne : les allemands ont commenc\u00e9 \u00e0 fermer pr\u00e9matur\u00e9ment des r\u00e9acteurs nucl\u00e9aires apr\u00e8s Fukushima, et la puissance install\u00e9e pour cette source figure sur le graphique ci-dessous (source https://lnkd.in/d69ebMM )\n\nS'ils avaient gard\u00e9 leur nucl\u00e9aire, combien de CO2 auraient ils \u00e9vit\u00e9 ? Comme leur centrales pouvaient toutes, en premi\u00e8re approximation, fonctionner encore 10 ans, cela aurait donn\u00e9, depuis l'ann\u00e9e de fermeture jusqu'\u00e0 fin 2021 :\n\n8,4 GW de nucl\u00e9aire, ferm\u00e9s en 2011, auraient produit, en 10 ans, 662 TWh (facteur de charge 90% ; 1 TWh = 1 milliard de kWh)\n1,2 GW de nucl\u00e9aire, ferm\u00e9s en 2015, auraient produit, en 5 ans, 57 TWh\n1,3 GW de nucl\u00e9aire, ferm\u00e9s en 2018, auraient produit, en 3 ans, 31 TWh\n1,4 GW de nucl\u00e9aire, ferm\u00e9s en 2020, auraient produit, en 1 an, 11 TWh\n\nTotal : 761 TWh. Or, en 2011, l'Allemagne avait aussi 21 GW de lignite (du mauvais charbon s'exploitant dans des mines \u00e0 ciel ouvert) et du charbon (25 GW). Un TWh d'\u00e9lectricit\u00e9 \u00e0 la lignite c'est plus d'un million de tonnes de CO2, au charbon c'est 0,8 million de tonnes.\n\nEn gardant le nucl\u00e9aire et en fermant (ou en faisant moins fonctionner) des centrales \u00e0 lignite et charbon, les allemands auraient \u00e9vit\u00e9 environ 800 millions de tonnes de CO2, soit une ann\u00e9e d'\u00e9missions de ce pays, ou encore 10% de leurs \u00e9missions totales sur la p\u00e9riode. \n\nOnt-ils vraiment suivi un chemin exemplaire si le but du jeu \u00e9tait de faire baisser les \u00e9missions aussi vite que possible ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6812308054348976129,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6812308054902640640,urn:li:activity:6812308054902640640,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 100, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6812308054902640640,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6812308054902640640,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6812308054902640640", + "threadId": "activity:6812308054902640640", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6812308054902640640", + "urn": "urn:li:activity:6812308054902640640", + "numComments": 436, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6812308054902640640", + "reactionTypeCounts": [ + { + "count": 1917, + "reactionType": "LIKE" + }, + { + "count": 200, + "reactionType": "INTEREST" + }, + { + "count": 175, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6812308054902640640", + "numLikes": 2347, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6812308054902640640", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2347, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6811954587340152832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6811954587340152832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6811954587340152832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6811954587340152832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-marc-jancovici-le-premier-p%C3%A9ch%C3%A9-du-activity-6811954587340152832-gKr8?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6811954586966859776", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6811954587340152832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6811954587340152832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6811954587340152832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6811954586966859776", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "aPkAX2xfLAOYktRhuRMeQA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6811954587340152832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7591536661099294878", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1624095826335?e=1677240000&v=beta&t=b-oShSki-ZH1m13quzFFhbuvRnsz1l7JcGw7l0stqGY", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1624095826335?e=1677240000&v=beta&t=x9gAHh2yuhLvtno08GOwFAGhZQMZSGf93yCBvenj1QM", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1624095826335?e=1677240000&v=beta&t=9n6pmkTyue15P46a_fBMMpKcCSCBHKZkqWEPU-62LnM", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1624095826335?e=1677240000&v=beta&t=EdYmID5S4rgKq1K5Rfq4PEo6ZCPpCxJyJCoEXAIRPaw", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQH3Zbb8QjATYw/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Capture d\u2019e\u0301cran 2021-06-14 a\u0300 13.46.51" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7591536661099294878)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7591536661099294878)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lettreducadre.fr \u2022 11 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean-Marc Jancovici : \"Le premier p\u00e9ch\u00e9 du monde politique, c\u2019est l\u2019ignorance\" by lettreducadre.fr", + "actionTarget": "https://www.lettreducadre.fr/21413/le-premier-peche-du-monde-politique-cest-lignorance-jean-marc-jancovici-consultant-specialiste-de-lenergie/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici : \"Le premier p\u00e9ch\u00e9 du monde politique, c\u2019est l\u2019ignorance\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6811954586966859776,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La lettre du Cadre, media destin\u00e9 aux cadres de la fonction publique territoriale, publie une interview de votre serviteur. Il y est beaucoup question - sans grande surprise - d'interaction entre le monde politique et la population, sous diverses formes.\n\nNB : les propos ont \u00e9t\u00e9 relus et amend\u00e9s, par contre le titre et le chap\u00f4 sont de la r\u00e9daction, comme d'habitude en pareil cas." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6811954586966859776,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6811954587340152832,urn:li:activity:6811954587340152832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 37, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6811954587340152832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6811954587340152832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6811954587340152832", + "threadId": "activity:6811954587340152832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6811954587340152832", + "urn": "urn:li:activity:6811954587340152832", + "numComments": 87, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6811954587340152832", + "reactionTypeCounts": [ + { + "count": 779, + "reactionType": "LIKE" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6811954587340152832", + "numLikes": 856, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6811954587340152832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 856, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6811520850982920192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6811520850982920192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6811520850982920192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6811520850982920192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_actifs-fossiles-les-nouveaux-subprimes-activity-6811520850982920192-DXMF?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6811520850462830592", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6811520850982920192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6811520850982920192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6811520850982920192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6811520850462830592", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "DaVXHQqAmkxCj+/LPLnzWg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6811520850982920192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9189884262150698736", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675850864892?e=1677240000&v=beta&t=sSF1pIi3oniJrz-ElvfAI5onRnIFO8pz8dJEYwuwiXE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675850864893?e=1677240000&v=beta&t=dCFOOYqY50nz9Q2WfUzLyrQE1ip9xXWXxlzZDhcK0pI", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675850864893?e=1677240000&v=beta&t=xYXLI25Ex_X_cVEW-azkuu6P2jMCjK-OMIzyF47H3t0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675850864893?e=1677240000&v=beta&t=ZUOzwKLM9KDYMHH1DwPpHARMezrXfj4lJNz-yketdtc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHvXuiHeTqIrA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9189884262150698736)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9189884262150698736)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "institut-rousseau.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Actifs fossiles, les nouveaux subprimes ? - Institut Rousseau by institut-rousseau.fr", + "actionTarget": "https://institut-rousseau.fr/actifs-fossiles-les-nouveaux-subprimes/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Actifs fossiles, les nouveaux subprimes ? - Institut Rousseau" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6811520850462830592,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si nous voulons limiter le r\u00e9chauffement plan\u00e9taire \u00e0 2\u00b0C, une partie des gisements de p\u00e9trole, de gaz et de charbon ne pourront pas \u00eatre exploit\u00e9s jusqu'\u00e0 leur terme : il y a trop de combustibles fossiles d\u00e9j\u00e0 inventori\u00e9s (et en cours d'exploitation) sous le sol pour que nous puissions tout br\u00fbler si cette limite en temp\u00e9rature doit \u00eatre respect\u00e9e.\n\nOr, l'exploitation de ces gisements fournit des revenus aux op\u00e9rateurs qui servent ensuite \u00e0 rembourser les banques qui leur ont pr\u00eat\u00e9 - et continuent de leur pr\u00eater - l'argent n\u00e9cessaire aux investissements. Ces m\u00eames banques peuvent \u00e9galement d\u00e9tenir, au titre de leurs investissements en propre, des actions et obligations d'op\u00e9rateurs \"fossiles\".\n\nL'Institut Rousseau s'est livr\u00e9, avec des donn\u00e9es et des compl\u00e9ments m\u00e9thodologiques fournis par Carbone 4, \u00e0 un travail int\u00e9ressant : quantifier l'argent que perdraient un certain nombre de grandes banques si l'accord de Paris devient mieux qu'un bout de papier.\n\nLe r\u00e9sultat est que \"l'exposition brute aux actifs fossiles d\u2019un certain nombre de banques exc\u00e8de le niveau de leurs fonds propres\". Dit autrement, avec la m\u00e9thode utilis\u00e9e par l'Institut Rousseau, et qui est \u00e9videmment diff\u00e9rente de celle (inappripri\u00e9e \u00e0 mon avis) utilis\u00e9e lors des exercices de \"stress tests bancaires\" demand\u00e9es par le r\u00e9gulateur, le respect de l'accord de Paris leur ferait faire faillite.\n\nOr, une faillite de grande banque a des effets syst\u00e9miques sur l'\u00e9conomie. Si nous \u00e9tions s\u00e9rieux, ce point devrait donc \u00eatre beaucoup plus s\u00e9rieusement investigu\u00e9 par le r\u00e9gulateur, et la transition des banques bien plus fortement encadr\u00e9e par le l\u00e9gislateur." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6811520850462830592,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6811520850982920192,urn:li:activity:6811520850982920192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 72, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6811520850982920192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6811520850982920192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6811520850982920192", + "threadId": "activity:6811520850982920192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6811520850982920192", + "urn": "urn:li:activity:6811520850982920192", + "numComments": 138, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6811520850982920192", + "reactionTypeCounts": [ + { + "count": 1088, + "reactionType": "LIKE" + }, + { + "count": 307, + "reactionType": "MAYBE" + }, + { + "count": 296, + "reactionType": "INTEREST" + }, + { + "count": 19, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6811520850982920192", + "numLikes": 1715, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6811520850982920192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1715, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6811517992736710656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6811517992736710656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6811517992736710656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6811517992736710656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_webinar-launch-of-biodiversity-impact-analytics-activity-6811517992736710656-sVwr?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6811517992371798016", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6811517992736710656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6811517992736710656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6811517992736710656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6811517992371798016", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "HnzomilcGzNsNctsXsZHcQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6811517992736710656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7167032393276412656", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1623991965110?e=1677240000&v=beta&t=cIT19ZcUZz6Y1cl-URxRZARk4rktJmvrW1JA3QRAW9w", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1623991965110?e=1677240000&v=beta&t=opusYbGydXiHGalY_vkEXMTOBD3zFz-VQZBpfw-uKVU", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1623991965110?e=1677240000&v=beta&t=D6KvFzFV2ulxttUPDgew6AA7CFOEXvFHuPmfwCwKNcM", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1623991965110?e=1677240000&v=beta&t=Na3NOtQZJlcDjKafxCD-Uvzg3C_JRMPuNOaKzaXoTdc", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF0li6AfFUh8w/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7167032393276412656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7167032393276412656)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbon4finance.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Webinar: Launch of \"Biodiversity Impact Analytics\" BIA-GBS database by carbon4finance.com", + "actionTarget": "http://www.carbon4finance.com/webinar-launch-of-biodiversity-impact-analytics-bia-gbs-database/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Webinar: Launch of \"Biodiversity Impact Analytics\" BIA-GBS database" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6811517992371798016,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 398, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:25494626", + "entityUrn": "urn:li:fs_miniCompany:25494626", + "name": "CDC Biodiversit\u00e9", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650470332257?e=1684972800&v=beta&t=CC_f3ztqNsN15bZ8lAnazeCeAAP-NpKfRg5Mck5nlGY", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650470332257?e=1684972800&v=beta&t=ZWTDOiqryBagHkgmzkc98rtP1RcPemVOhxZZJVWBu-I", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650470332257?e=1684972800&v=beta&t=OWI-UHpEQFFtzgeu2aUYiFO3UtUIkO_4qnkE0IuFLfY", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGhbrhhhWucGw/company-logo_" + } + }, + "universalName": "cdc-biodiversite", + "dashCompanyUrn": "urn:li:fsd_company:25494626", + "trackingId": "yxRqnU5KTkuKXK4m228Ocg==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 418, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "GAhTnl4LRC+KKSn4QrOtWw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Apr\u00e8s le climat, la biodiversit\u00e9 est un deuxi\u00e8me grand enjeu environnemental syst\u00e9mique, qui jusqu'\u00e0 une \u00e9poque r\u00e9cente \u00e9tait difficile \u00e0 appr\u00e9hender par les entreprises, parce qu'il est difficile de savoir combien de scarab\u00e9es pique-prune vaut un renard polaire ou un baobab. Le climat a sa tonne \u00e9quivalent CO2, mais comment d\u00e9finir la tonne \u00e9quivalent grenouille jaune ?\n\nLe 8 juillet prochain, CDC BIODIVERSIT\u00c9 et Carbon4 Finance vont tenter de vous expliquer comment il est possible de faire pour un acteur du monde financier, avec la m\u00e9thode Biodiversity Impact Analytics, d\u00e9velopp\u00e9e sur la base de la m\u00e9thode Global Biodiversity Score de CDC Biodiversit\u00e9.\n\nLes d\u00e9tails pour pouvoir y assister (sachant que les places dans l'amphi de la CDC sont prioritairement destin\u00e9es aux professionnels du secteur) figurent ci-dessous. Ev\u00e9nement en anglais." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6811517992371798016,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6811517992736710656,urn:li:activity:6811517992736710656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 41, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6811517992736710656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6811517992736710656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6811517992736710656", + "threadId": "activity:6811517992736710656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6811517992736710656", + "urn": "urn:li:activity:6811517992736710656", + "numComments": 59, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6811517992736710656", + "reactionTypeCounts": [ + { + "count": 304, + "reactionType": "LIKE" + }, + { + "count": 25, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6811517992736710656", + "numLikes": 358, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6811517992736710656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 358, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6811312204042797056,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6811312204042797056", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6811312204042797056)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6811312204042797056)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-peuple-suisse-enterre-la-loi-sur-le-co2-activity-6811312204042797056-2GY3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6811312203610775553", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6811312204042797056", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6811312204042797056,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6811312204042797056,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6811312203610775553", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "fNXPzwU7f+Vn35DmPcJ7+g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6811312204042797056,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8621787730429791540", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676196830039?e=1677240000&v=beta&t=-57HZmoeCR1QN810CiYxtVYuYfhKfD3EmEgthQilq3s", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676196830039?e=1677240000&v=beta&t=fKi-UW77Ldu3Cfj8XcwX5SzmsvR23eQM-tifxsIAees", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676196830039?e=1677240000&v=beta&t=7CibdHY8MLXxMfS_tP7qbPmmIepoibSBj35nlO-pWLw", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676196830039?e=1677240000&v=beta&t=wKYIsuCrIDM7GHvJG4ZinbIl1-qhGzA0LbHpjyvnJZo", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGdRybvkUUldw/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8621787730429791540)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8621787730429791540)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "rts.ch \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La peuple suisse enterre la loi sur le CO2 avec 51,6% de non by rts.ch", + "actionTarget": "https://www.rts.ch/info/suisse/12273454-la-peuple-suisse-enterre-la-loi-sur-le-co2-avec-516-de-non.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La peuple suisse enterre la loi sur le CO2 avec 51,6% de non" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6811312203610775553,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le parlement suisse a vot\u00e9 en 2020 une \"loi sur le CO2\" (https://lnkd.in/dCaNfjw ), qui pr\u00e9voyait un certain nombre de dispositions visant \u00e0 ce que la Suisse \"fasse sa part\" dans la lutte contre le changement climatique :\n- limite haute des \u00e9missions des v\u00e9hicules automobiles neufs\n- taxation des vols a\u00e9riens, et des combustibles fossiles,\n- incitations pour les entreprises qui diminuent leurs \u00e9missions\n\nLes mesures fiscales devaient abonder un fonds permettant de financer des projets de r\u00e9duction.\n\nComme il est possible dans ce pays, une votation a \u00e9t\u00e9 demand\u00e9e sur cette loi, apparemment initi\u00e9e par les milieux patronaux, la fili\u00e8re auto et la fili\u00e8re p\u00e9troli\u00e8re si l'on en croit la RTS. Cette votation a conduit \u00e0 une invalidation par 51,6% des votants, alors m\u00eame que les helv\u00e8tes sont souvent perturb\u00e9s par ce qui arrive \u00e0 leurs montagnes et leurs glaciers. \n\nRappelons que, \u00e0 la faveur de la tr\u00e8s forte augmentation du PIB par personne, nos voisins suisses ont d\u00e9sormais une empreinte carbone par t\u00eate qui se situe dans la haut de la fourchette europ\u00e9enne. Passer \u00e0 l'action les concerne donc au premier chef, comme c'est le cas pour tous les europ\u00e9ens." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6811312203610775553,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6811312204042797056,urn:li:activity:6811312204042797056,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 118, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6811312204042797056,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6811312204042797056,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6811312204042797056", + "threadId": "activity:6811312204042797056", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6811312204042797056", + "urn": "urn:li:activity:6811312204042797056", + "numComments": 342, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6811312204042797056", + "reactionTypeCounts": [ + { + "count": 619, + "reactionType": "LIKE" + }, + { + "count": 271, + "reactionType": "MAYBE" + }, + { + "count": 125, + "reactionType": "INTEREST" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6811312204042797056", + "numLikes": 1029, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6811312204042797056", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1029, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6811191370330464256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1586", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1586", + "entityUrn": "urn:li:fs_miniCompany:1586", + "name": "Amazon", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1612205615891?e=1684972800&v=beta&t=_sU6JhDrItDJLdfq7ouIl_I63VUiwIowdKyCa9uay3U", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1612205615891?e=1684972800&v=beta&t=qBrTOeki-B3Bq9bOimffWAS8itdHRbU3p85iJZe8mQo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1612205615891?e=1684972800&v=beta&t=dYZ_7wapNKnYxNZy1jFsClpm6qmbfl9fWXbjXM3FYm8", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQHTvZwCx4p2Qg/company-logo_" + } + }, + "universalName": "amazon", + "dashCompanyUrn": "urn:li:fsd_company:1586", + "trackingId": "gh4UZvIJRU25ynlAELmXTw==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 6, + "miniCompany": { + "objectUrn": "urn:li:company:1586", + "entityUrn": "urn:li:fs_miniCompany:1586", + "name": "Amazon", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1612205615891?e=1684972800&v=beta&t=_sU6JhDrItDJLdfq7ouIl_I63VUiwIowdKyCa9uay3U", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1612205615891?e=1684972800&v=beta&t=qBrTOeki-B3Bq9bOimffWAS8itdHRbU3p85iJZe8mQo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1612205615891?e=1684972800&v=beta&t=dYZ_7wapNKnYxNZy1jFsClpm6qmbfl9fWXbjXM3FYm8", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQHTvZwCx4p2Qg/company-logo_" + } + }, + "universalName": "amazon", + "dashCompanyUrn": "urn:li:fsd_company:1586", + "trackingId": "gh4UZvIJRU25ynlAELmXTw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Amazon" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Amazon", + "actionTarget": "https://www.linkedin.com/company/amazon/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1586" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "29,460,776 followers" + }, + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1586", + "followerCount": 29460776, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1586", + "following": false, + "trackingUrn": "urn:li:company:1586" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followCompany" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6805507701523660800,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6805507701523660800", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6805507701523660800)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6805507701523660800)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/amazon_d%C3%A9couvrez-nos-initiatives-activity-6805507701523660800-CtJ8?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:ugcPost:6805507688340959232", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1586", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6805507701523660800,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6805507701523660800,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:ugcPost:6805507688340959232", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "5MGkYsjLEHjeDhyOmfbtGg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6805507701523660800,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.LinkedInVideoComponent": { + "tapTargets": [], + "videoPlayMetadata": { + "duration": 10000, + "thumbnail": { + "artifacts": [ + { + "width": 624, + "fileIdentifyingUrlPathSegment": "_350_624/0/1623834761952/2bAmazonToufik30Linkedin10s16x91200x675withSubtitleburnmp4?e=1677240000&v=beta&t=rjC94FoSZ08glGvblBEAxIMoDmiHKgiT0BBceq_vJTE", + "expiresAt": 1677240000000, + "height": 350 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "-high/0/1622559604404/2bAmazonToufik30Linkedin10s16x91200x675withSubtitleburnmp4?e=1677240000&v=beta&t=PZ_y4cm0JVHU_T9LkiRNMgXZwzRYMpKW-VR_-t24W3E", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "-low/0/1622559604440/2bAmazonToufik30Linkedin10s16x91200x675withSubtitleburnmp4?e=1677240000&v=beta&t=iDJ1aJ7y8XkxNOMOukBjwwYV5HqnBHlibSV_GYYhFT0", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D10AQHprPVa6mH8dw/videocover" + }, + "progressiveStreams": [ + { + "width": 1200, + "streamingLocations": [ + { + "url": "https://dms.licdn.com/playlist/C4D10AQHprPVa6mH8dw/mp4-720p-30fp-crf28/0/1622559608563/2bAmazonToufik30Linkedin10s16x91200x675withSubtitleburnmp4?e=1677240000&v=beta&t=PVP-P9owT0Nn2T5kcMg7hMwdv58905mmA0Mxc4iR90k", + "expiresAt": 1677240000000 + } + ], + "mediaType": "video/mp4", + "size": 1254045, + "bitRate": 866279, + "height": 674 + }, + { + "width": 1140, + "streamingLocations": [ + { + "url": "https://dms.licdn.com/playlist/C4D10AQHprPVa6mH8dw/mp4-640p-30fp-crf28/0/1622559609460/2bAmazonToufik30Linkedin10s16x91200x675withSubtitleburnmp4?e=1677240000&v=beta&t=EFyfLglUlySixmv2HTX-G6itWy_MG5WU50Ax-wnv1DM", + "expiresAt": 1677240000000 + } + ], + "mediaType": "video/mp4", + "size": 1166948, + "bitRate": 793443, + "height": 640 + }, + { + "width": 640, + "streamingLocations": [ + { + "url": "https://dms.licdn.com/playlist/C4D10AQHprPVa6mH8dw/mp4-360p-30fp-crf28/0/1622559607363/2bAmazonToufik30Linkedin10s16x91200x675withSubtitleburnmp4?e=1677240000&v=beta&t=Z3UywP2SuoK8ZD-ufJm8sYnD1jRhyi0xHNXa3mxNhr4", + "expiresAt": 1677240000000 + } + ], + "mediaType": "video/mp4", + "size": 588811, + "bitRate": 362264, + "height": 360 + } + ], + "transcripts": [], + "entityUrn": "urn:li:digitalmediaAsset:C4D10AQHprPVa6mH8dw", + "provider": "UGC", + "aspectRatio": 1.7777778, + "media": "urn:li:digitalmediaAsset:C4D10AQHprPVa6mH8dw", + "adaptiveStreams": [ + { + "initialBitRate": 1103560, + "protocol": "HLS", + "mediaType": "application/vnd.apple.mpegURL", + "masterPlaylists": [ + { + "url": "https://dms.licdn.com/playlist/C4D10AQHprPVa6mH8dw/hls-360p-720p-crf28/0/1622559608880/2bAmazonToufik30Linkedin10s16x91200x675withSubtitleburnmp4?e=1677240000&v=beta&t=Qkcqdpq3viaaAW7YRxzi_9dWrRrtlUfNxRaEwYnAe38", + "expiresAt": 1677240000000 + } + ] + } + ], + "trackingId": "5MGkYsjLEHjeDhyOmfbtGg==" + }, + "mediaDisplayVariant": "CLASSIC" + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9couvrez comment Toufik et ses \u00e9quipes ont permis de doubler l\u2019efficacit\u00e9 du tri s\u00e9lectif de notre site d'Orl\u00e9ans." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:ugcPost:6805507688340959232,urn:li:ugcPost:6805507688340959232,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 0, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:ugcPost:6805507688340959232,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": false, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:ugcPost:6805507688340959232,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:ugcPost:6805507688340959232", + "threadId": "ugcPost:6805507688340959232", + "allowedCommentersScope": "NONE", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:ugcPost:6805507688340959232", + "urn": "urn:li:ugcPost:6805507688340959232", + "numComments": 0, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:ugcPost:6805507688340959232", + "reactionTypeCounts": [ + { + "count": 1451, + "reactionType": "LIKE" + }, + { + "count": 75, + "reactionType": "PRAISE" + }, + { + "count": 32, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:ugcPost:6805507688340959232", + "numLikes": 1567, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:ugcPost:6805507688340959232", + "commentingDisabled": true, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1567, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6811191370330464256", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6811191370330464256)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6811191370330464256)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9couvrez-nos-initiatives-activity-6811191370330464256-zE_Z?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:ugcPost:6811191369822961664", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6811191370330464256", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6811191370330464256,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6811191370330464256,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:ugcPost:6811191369822961664", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "5MGkYsjLEHjeDhyOmfbtGg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6811191370330464256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:ugcPost:6811191369822961664,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 6, + "miniCompany": { + "objectUrn": "urn:li:company:1586", + "entityUrn": "urn:li:fs_miniCompany:1586", + "name": "Amazon", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1612205615891?e=1684972800&v=beta&t=_sU6JhDrItDJLdfq7ouIl_I63VUiwIowdKyCa9uay3U", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1612205615891?e=1684972800&v=beta&t=qBrTOeki-B3Bq9bOimffWAS8itdHRbU3p85iJZe8mQo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1612205615891?e=1684972800&v=beta&t=dYZ_7wapNKnYxNZy1jFsClpm6qmbfl9fWXbjXM3FYm8", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQHTvZwCx4p2Qg/company-logo_" + } + }, + "universalName": "amazon", + "dashCompanyUrn": "urn:li:fsd_company:1586", + "trackingId": "FCB1Zf/dQcy2+IwW3MtrEg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Amazon publie un post d'autosatisfaction dont les commentaires sont d\u00e9sactiv\u00e9s. Du coup on ne peut m\u00eame pas laisser un commentaire pour leur demander pourquoi les commentaires sont d\u00e9sactiv\u00e9s ! Et surtout on ne peut pas laisser de commentaire pour leur demander :\n- si Amazon a fait un calcul s\u00e9rieux de son empreinte carbone\n- si Amazon a fait une analyse s\u00e9rieuse de ce que signifie pour cette soci\u00e9t\u00e9 d'\u00eatre align\u00e9e \"pour de vrai\" avec une trajectoire mondiale de d\u00e9carbonation\n- et ce que repr\u00e9sente le tri s\u00e9lectif des d\u00e9chets dans cet ensemble.\n\nFormer ses collaborateurs (Amazon a-t-il d\u00e9cid\u00e9 de faire participer tous ses collaborateurs \u00e0 une Fresque du Climat, par exemple ?), compter, planifier, agir, et recompter pour savoir si les choses avancent r\u00e9ellement \"dans le bon sens\" : c'est cela... qui compte quand on est une entreprise \"sinc\u00e8re\" en mati\u00e8re d'action environnementale." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:ugcPost:6811191369822961664,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:ugcPost:6811191369822961664,urn:li:ugcPost:6811191369822961664,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 12, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:ugcPost:6811191369822961664,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:ugcPost:6811191369822961664,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:ugcPost:6811191369822961664", + "threadId": "ugcPost:6811191369822961664", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:ugcPost:6811191369822961664", + "urn": "urn:li:ugcPost:6811191369822961664", + "numComments": 20, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:ugcPost:6811191369822961664", + "reactionTypeCounts": [ + { + "count": 38, + "reactionType": "LIKE" + }, + { + "count": 4, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:ugcPost:6811191369822961664", + "numLikes": 45, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:ugcPost:6811191369822961664", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 45, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6811190104204304384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6811190104204304384", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6811190104204304384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6811190104204304384)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9cryptage-sur-lepr-taishan-1-activity-6811190104204304384-ICyo?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6811190103579340800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6811190104204304384", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6811190104204304384,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6811190104204304384,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6811190103579340800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "eArBYz94Az3b/oWnzY1efA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6811190104204304384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8675520736186712574", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1623841005395?e=1677240000&v=beta&t=o-qa7QQpdaAttV7iagmF7X63EKJ-yTPvHsFqzAbeA0w", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1623841005395?e=1677240000&v=beta&t=ql-OQ92w81B0xn0O32PQKADEHR7EAAOgznHz2D_1AEA", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1623841005395?e=1677240000&v=beta&t=7Vr7ZMRebvtPv8fBwQYv-xz46jAx3_GIxYveI_bRVqw", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1623841005395?e=1677240000&v=beta&t=aQtaLmZBYHf9ClQkUCvLQMXMAkjRXhdbvJDkZ1GxqkU", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHNoWvJaEnDdg/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "capture_taishan_1.png" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8675520736186712574)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8675520736186712574)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "sfen.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: D\u00e9cryptage sur l\u2019EPR Taishan-1 by sfen.org", + "actionTarget": "https://www.sfen.org/rgn/decryptage-epr-taishan-1" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9cryptage sur l\u2019EPR Taishan-1" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6811190103579340800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La SFEN propose quelques explications techniques sur ce qui est arriv\u00e9 \u00e0 Taishan 1, l'un des deux EPR en fonctionnement en Chine. \n\nCes explications ne permettent pas de \"tout savoir\" d\u00e8s \u00e0 pr\u00e9sent, mais permettent n\u00e9anmoins de comprendre :\n- que le probl\u00e8me vient tr\u00e8s probablement de \"trous\" (fissures, par exemple) dans les gaines des assemblages combustible (lire l'article pour comprendre ce qu'est un \"assemblage\"),\n- que ce cas de figure (des \"fuites\" en provenance des assemblages) est pr\u00e9vu dans le dessin du r\u00e9acteur, puisqu'il existe des dispositifs pour \u00e9vacuer du circuit primaire (celui dans lequel baignent les assemblages o\u00f9 a lieu la r\u00e9action nucl\u00e9aire) les produits de fission qui viendrait \u00e0 y arriver (dont les gaz rares),\n- qu'ensuite tout est question de quantit\u00e9 (donc de nombre de crayons concern\u00e9s),\n- \u00e0 ce stade la cause n'est pas connue. Les gaines peuvent avoir \u00e9t\u00e9 \"perc\u00e9es\" par un objet qui n'aurait pas du se trouver l\u00e0 (une vis qui serait sortie de son logement et se retrouverait en circulation dans le circuit primaire, par exemple), par la fatigue due \u00e0 des vibrations, par un d\u00e9faut de fabrication...\n- qu'un arr\u00eat du r\u00e9acteur \u00e0 cause de ce probl\u00e8me ne serait pas un accident mais une \"panne\" (exactement comme une voiture qui doit s'arr\u00eater parce qu'un voyant sur la pression des pneus s'allume n'est pas en situation d'accident mais de panne). Les pannes ne sont \u00e9videmment pas souhaitables, mais c'est un autre d\u00e9bat !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6811190103579340800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6811190104204304384,urn:li:activity:6811190104204304384,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 30, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6811190104204304384,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6811190104204304384,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6811190104204304384", + "threadId": "activity:6811190104204304384", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6811190104204304384", + "urn": "urn:li:activity:6811190104204304384", + "numComments": 96, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6811190104204304384", + "reactionTypeCounts": [ + { + "count": 389, + "reactionType": "LIKE" + }, + { + "count": 62, + "reactionType": "INTEREST" + }, + { + "count": 52, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6811190104204304384", + "numLikes": 511, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6811190104204304384", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 511, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6810935423599161345,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6810935423599161345", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6810935423599161345)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6810935423599161345)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9carbonons-la-sant%C3%A9-pour-soigner-durablement-activity-6810935423599161345-p-8B?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6810935423167164416", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6810935423599161345", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6810935423599161345,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6810935423599161345,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6810935423167164416", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "EWrtiNqpLzWaVwPCe05LIg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6810935423599161345,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7548251280010111003", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675804863845?e=1677240000&v=beta&t=Hg9YbA7rix6NZEQHsH1QzXPQYzOmWiPqY7Ho8YnVrTA", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675804863845?e=1677240000&v=beta&t=KJIPwYsNfLr9ezHQ2acYzlZYB61PdgXy2OUwE7-0ank", + "expiresAt": 1677240000000, + "height": 544 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675804863845?e=1677240000&v=beta&t=Df8Eo7-vPk4VwJ08tSYF9BUScnylZUcEyfqnik0ZbBA", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675804863845?e=1677240000&v=beta&t=GB74AQSE-baxRSAaIIDqxsSLh41ndP-C4S3AJulXsoM", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEVVNNnAfZt9A/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7548251280010111003)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7548251280010111003)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: D\u00e9carbonons la Sant\u00e9 pour soigner durablement, le rapport du Shift by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/decarbonons-la-sante-rapport-intermediaire-shift/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9carbonons la Sant\u00e9 pour soigner durablement, le rapport du Shift" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6810935423167164416,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "D'o\u00f9 viennent les \u00e9missions de gaz \u00e0 effet de serre ? A cette question, la premi\u00e8re personne interrog\u00e9e r\u00e9pondra volontiers \"transports\", \"industrie\", \"charbon\", ou encore \"p\u00e9trole\". Mais bien peu d'entre nous r\u00e9pondrons \"sant\u00e9\" ! \n\nEt pourtant, il y a aussi des \u00e9missions li\u00e9es au syst\u00e8me de soins. Les h\u00f4pitaux sont chauff\u00e9s, utilisent des m\u00e9dicaments, compresses, seringues et scanners qu'il faut fabriquer, nourrissent leurs occupants ; nos m\u00e9decins et infirmier(e)s se d\u00e9placent, utilisent des locaux chauff\u00e9s, sans compter les visites \u00e0 l'h\u00f4pital ou en maison de convalescence.\n\nDans le cadre de son plan de transformation de l'\u00e9conomie fran\u00e7aise, The Shift Project vous propose de d\u00e9couvrir le \"tome 1\" du travail effectu\u00e9 sur le secteur de la sant\u00e9, qui doit devenir sobre lui aussi, car c'est en fait une condition de sa p\u00e9rennit\u00e9.\n\nEtre en bonne sant\u00e9, c'est \u00e0 15% une affaire de syst\u00e8me de soins, et \u00e0 85% \"autre chose\" : avoir une nourriture de qualit\u00e9, ne pas vivre dans une atmosph\u00e8re pollu\u00e9e ni boire une eau insalubre, faire un peu d'exercice et \u00e9viter les exc\u00e8s de s\u00e9dentarit\u00e9, ne pas fumer, boire de l'alcool beaucoup plus mod\u00e9r\u00e9ment que ce qui est sugg\u00e9r\u00e9 sur les pubs qui disent de le faire :), bref c'est avant tout ce qui se passe en dehors du syst\u00e8me de soins. C'est probablement de l\u00e0 qu'il faut partir pour penser le fait de \"bien se soigner\" dans un monde sobre." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6810935423167164416,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6810935423599161345,urn:li:activity:6810935423599161345,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6810935423599161345,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6810935423599161345,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6810935423599161345", + "threadId": "activity:6810935423599161345", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810935423599161345", + "urn": "urn:li:activity:6810935423599161345", + "numComments": 42, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6810935423599161345", + "reactionTypeCounts": [ + { + "count": 296, + "reactionType": "LIKE" + }, + { + "count": 38, + "reactionType": "MAYBE" + }, + { + "count": 30, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "EMPATHY" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6810935423599161345", + "numLikes": 382, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810935423599161345", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 382, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6810835851577171968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6810835851577171968", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6810835851577171968)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6810835851577171968)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_httpsairparifassofr-activity-6810835851577171968-IccU?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6810835851279384576", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6810835851577171968", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6810835851577171968,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6810835851577171968,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6810835851279384576", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "/QcyHWVJuExOFiHiPQMVqQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6810835851577171968,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "https://airparif.asso.fr/" + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6810835851577171968,urn:li:activity:6810835851577171968,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 11, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6810835851577171968,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6810835851577171968,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6810835851577171968", + "threadId": "activity:6810835851577171968", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810835851577171968", + "urn": "urn:li:activity:6810835851577171968", + "numComments": 34, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6810835851577171968", + "reactionTypeCounts": [ + { + "count": 40, + "reactionType": "LIKE" + }, + { + "count": 2, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6810835851577171968", + "numLikes": 42, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810835851577171968", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 42, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6810828889384869888,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6810828889384869888", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6810828889384869888)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6810828889384869888)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_neutralit%C3%A9-et-territoires-un-cadre-daction-activity-6810828889384869888-rya-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6810828888923504640", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6810828889384869888", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6810828889384869888,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6810828889384869888,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6810828888923504640", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "fkYenlnanQHIlCNGR47ILA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6810828889384869888,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7001555544300414040", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1623162066479?e=1677240000&v=beta&t=ERkuVLmcZKjJqS7k0aN5qujDaNmWwo6Z6jPgPv5Zsa0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1623162066479?e=1677240000&v=beta&t=celBTmn5svhUfDY3yqEHUFTPiOFSwpOH0ePX3lasFmg", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1623162066479?e=1677240000&v=beta&t=GHztZ9MsaKRyVh4BD3NyNKkbImkmpTxh1gpUZTUhnrQ", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1623162066479?e=1677240000&v=beta&t=4kwTUScsOeyaDmyle8BJagbEiFmlpefk9sNHx8hFYoU", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE_dEb0zeYcww/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7001555544300414040)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7001555544300414040)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Neutralit\u00e9 et territoires - Un cadre d'action collectif pour la neutralit\u00e9 carbone en France - Carbone 4 by carbone4.com", + "actionTarget": "http://www.carbone4.com/neutralite-et-territoires-un-cadre-daction-collectif-pour-la-neutralite-carbone-en-france/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Neutralit\u00e9 et territoires - Un cadre d'action collectif pour la neutralit\u00e9 carbone en France - Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6810828888923504640,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un territoire peut-il \u00eatre \"neutre en carbone\" ? Au niveau de la plan\u00e8te dans son ensemble, non seulement il le peut, mais il le doit pour que nous parvenions \u00e0 limiter une d\u00e9rive climatique qui, compte tenu de l'inertie du syst\u00e8me, va malheureusement s'amplifier \u00e0 l'avenir quoi que nous fassions.\n\nCette neutralit\u00e9, c'est le moment o\u00f9 les sources de gaz \u00e0 effet de serre dues \u00e0 l'activit\u00e9 humaine sont \u00e9quilibr\u00e9es par les puits augment\u00e9s (ou pas) par l'activit\u00e9 humaine. \n\nAu niveau des pays, cette neutralit\u00e9 conserve une d\u00e9finition, qui est que les puits du territoire \u00e9quilibrent les sources du territoire. C'est elle qui sert de cadre aux engagements pris dans le cadre de l'accrd de Paris, par exemple.\n\nSi l'on descend un cran plus bas, Garges les Gonesse, Morteau, le Parc R\u00e9gional de Corse ou Libourne (sans parler de Paris) peuvent-ils \u00eatre \"neutres en carbone\", ou simplement concourir \u00e0 une neutralit\u00e9 globale ? \n\nC'est la question \u00e0 laquelle tente de r\u00e9pondre cette nouvelle publication de Carbone 4, r\u00e9sultant d'une \u00e9tude r\u00e9alis\u00e9e avec le concours de l\u2019ADEME, France Strat\u00e9gie, la Banque des Territoires (Groupe Caisse des D\u00e9p\u00f4ts) et Transdev Ile-de-France. \n\nUn webinaire aura lieu le 30 juin pour en pr\u00e9senter les r\u00e9sultats. Publication, synth\u00e8se et inscription au webinaire sont l\u00e0 \ud83d\udc47" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6810828888923504640,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6810828889384869888,urn:li:activity:6810828889384869888,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 11, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6810828889384869888,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6810828889384869888,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6810828889384869888", + "threadId": "activity:6810828889384869888", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810828889384869888", + "urn": "urn:li:activity:6810828889384869888", + "numComments": 28, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6810828889384869888", + "reactionTypeCounts": [ + { + "count": 190, + "reactionType": "LIKE" + }, + { + "count": 17, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6810828889384869888", + "numLikes": 226, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810828889384869888", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 226, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6810624470017961984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6810624470017961984", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6810624470017961984)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6810624470017961984)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-usines-auto-neutres-en-carbone-%C3%A7a-nexiste-activity-6810624470017961984-_Gv9?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6810624469392998400", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6810624470017961984", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6810624470017961984,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6810624470017961984,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6810624469392998400", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "WJ53wVWZMhU4u3VFx0YUsQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6810624470017961984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9082782780720171306", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675987111067?e=1677240000&v=beta&t=qxJmu34u75871b_IQ2uEeZFH3JMhiMu-o1xaLGiPSbs", + "expiresAt": 1677240000000, + "height": 600 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675987111067?e=1677240000&v=beta&t=hfnBKqkirNmLeokxLLL_rXi9qbSrYfsjguSVqk_03Co", + "expiresAt": 1677240000000, + "height": 750 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675987111068?e=1677240000&v=beta&t=7bxHNc5OBTBF3K4N3KZiJ60B9UejJs024WUo1WrB7lI", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675987111068?e=1677240000&v=beta&t=RCQj9juFr7nO1FesGmEV4sWb7a8rhKEi2xsBmFFMmAQ", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEg87c2JYPRDg/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9082782780720171306)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9082782780720171306)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "challenges.fr \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les usines auto neutres en carbone, \u00e7a n'existe pas by challenges.fr", + "actionTarget": "https://www.challenges.fr/green-economie/les-usines-auto-neutres-en-carbone-ca-n-existe-pas_768773" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les usines auto neutres en carbone, \u00e7a n'existe pas" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6810624469392998400,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans un article apparemment en libre acc\u00e8s, et, il faut le dire, assez bien construit (\u00e0 une ou deux inexactitudes pr\u00e8s, mais qui ne contredisent pas la port\u00e9e g\u00e9n\u00e9rale du propos), Challenges explique en quoi le fait de revendiquer la neutralit\u00e9 pour un constructeur auto est, sans mauvais jeu de mots... de l'enfumage. \n\nC'est assez inattendu - et courageux - qu'un magazine historiquement plut\u00f4t \"pro-\u00e9conomie anti-environnement\", et probablement d\u00e9pendant, comme beaucoup d'organes de presse, de la publicit\u00e9 (dans laquelle le secteur auto p\u00e8se lourd), choisisse de chatouiller les acteurs du secteur sur leurs d\u00e9clarations environnementales excessivement \"verdissantes\".\n\nEsp\u00e9rons que ce soit le d\u00e9but du printemps et pas juste une hirondelle !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6810624469392998400,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6810624470017961984,urn:li:activity:6810624470017961984,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6810624470017961984,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6810624470017961984,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6810624470017961984", + "threadId": "activity:6810624470017961984", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810624470017961984", + "urn": "urn:li:activity:6810624470017961984", + "numComments": 95, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6810624470017961984", + "reactionTypeCounts": [ + { + "count": 1880, + "reactionType": "LIKE" + }, + { + "count": 132, + "reactionType": "MAYBE" + }, + { + "count": 115, + "reactionType": "INTEREST" + }, + { + "count": 56, + "reactionType": "PRAISE" + }, + { + "count": 22, + "reactionType": "EMPATHY" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6810624470017961984", + "numLikes": 2222, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810624470017961984", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2222, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6810502671267594240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6810502671267594240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6810502671267594240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6810502671267594240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_notre-ministre-des-transports-a-envoy%C3%A9-hier-activity-6810502671267594240-MXqL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6810502670663602178", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6810502671267594240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6810502671267594240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6810502671267594240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6810502670663602178", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "JQmrMUDMopmKGGXGSSRDyg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6810502671267594240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHVpVTIKmoALQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHVpVTIKmoALQ", + "artifacts": [ + { + "width": 1210, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1623750367583?e=1679529600&v=beta&t=E22cTN9P35eSTdI_dXEZ0tq9lLc1haTUa_tUzYuEUHw", + "expiresAt": 1679529600000, + "height": 810 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1623750368418?e=1679529600&v=beta&t=-UDK7s-zPtvUmFMEKXr-jeAf-6JVDwwrISRLuZzew8E", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1210, + "fileIdentifyingUrlPathSegment": "1280/0/1623750368418?e=1679529600&v=beta&t=B09d-Vxe3eMvSAYNODen9Mt3qBBrRUVbmtorN4JNNHA", + "expiresAt": 1679529600000, + "height": 810 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1623750368418?e=1679529600&v=beta&t=BrjroIJ0dzVZOgrgTEC2UPdhLhm696-HzpabERJqcGs", + "expiresAt": 1679529600000, + "height": 321 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1623750368418?e=1679529600&v=beta&t=QcVv7PrpmgkrXJG-n6MpAIEOQb-RhVtlsB3rRdkxk18", + "expiresAt": 1679529600000, + "height": 107 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1623750368418?e=1679529600&v=beta&t=rs6XamzvB6I36kObt_6QCrjcNEXViy4ldJFIh3qvVN8", + "expiresAt": 1679529600000, + "height": 536 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHVpVTIKmoALQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.6694214876033058 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, text, application, chat or text message" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6810502670663602178,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1269, + "length": 17, + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "mzcJRt2ET3+1hahMtsQBXg==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 1290, + "length": 15, + "miniCompany": { + "objectUrn": "urn:li:company:65525487", + "entityUrn": "urn:li:fs_miniCompany:65525487", + "name": "A\u00c9RO D\u00c9CARBO", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1632124851859?e=1684972800&v=beta&t=mPqBCEHb8iWqELNJG9bQXVELZNC4XCApGrlaId7_ixQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1632124851859?e=1684972800&v=beta&t=ZehY4fC1JjRd8Rcq1YPXQ0PFm_KemKatzCP-zEdqn64", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1632124851859?e=1684972800&v=beta&t=7KzqdHv_8SjezUgJiOMjgi4PXApGI-2VqJjBzgOxGYo", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGeJYGC8wwvNw/company-logo_" + } + }, + "universalName": "aero-decarbo", + "dashCompanyUrn": "urn:li:fsd_company:65525487", + "trackingId": "zhAa9rxYS1qLU7YdGNgw2w==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Notre ministre des transports a envoy\u00e9 hier soir (heure fran\u00e7aise) un tweet pour se r\u00e9jouir du vol prochain d'un A320 avec uniquement des biocarburants, appelant cela \"de l'\u00e9cologie\" : https://lnkd.in/dWp-NpK\n\nQuelques \u00e9l\u00e9ments aideront \u00e0 resituer cette information dans son contexte :\n\n- le jour de l'envoi du tweet, il y a eu 85000 vols commerciaux dans le monde (https://lnkd.in/dBFQaXx). Si, pour rembourser une dette de 85000 euros, vous annoncez \u00e0 votre banquier que vous avez trouv\u00e9 1 euro de revenu, il est peu probable qu'il consid\u00e8re que cela change fondamentalement le probl\u00e8me.\n\n- actuellement, la d\u00e9forestation est responsable de 10% des \u00e9missions de gaz \u00e0 effet de serre chaque ann\u00e9e. Cette d\u00e9forestation a un d\u00e9terminant principal : supprimer des for\u00eats pour obtenir des surfaces agricoles. D\u00e8s lors, une question se pose : est-ce que toute surface consacr\u00e9e \u00e0 des cultures \u00e9nerg\u00e9tiques ne revient pas \u00e0 aggraver la d\u00e9forestation, par effet domino ? Si cette m\u00eame surface \u00e9tait consacr\u00e9e \u00e0 de la nourriture, n'\u00e9viterait-on pas la d\u00e9forestation associ\u00e9e ? Or, si elle induit de la d\u00e9forestation (directement ou indirectement), la production d'un agrocarburant engendre plus d'\u00e9missions par litre que le p\u00e9trole.\n\nDans son rapport \"pouvoir voler en 2050\", The Shift Project et SUPAERO DECARBO (qui est constitu\u00e9 d'anciens \u00e9l\u00e8ves de l'ISAE, et exer\u00e7ant actuellement dans le secteur a\u00e9ronautique, donc ce ne sont pas des \"peintres\" il me semble) ont rappel\u00e9 que, m\u00eame en \"ramassant\" toutes les am\u00e9liorations techniques \u00e0 venir de mani\u00e8re tr\u00e8s tr\u00e8s tr\u00e8s tr\u00e8s optimiste, il fallait que le trafic a\u00e9rien d\u00e9croisse pour que ce secteur se conforme \u00e0 l'accord de Paris. Si cette conclusion ne vous semble pas fond\u00e9e, elle se r\u00e9fute avec des \"contre-calculs\" probants, et rien d'autre. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6810502670663602178,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6810502671267594240,urn:li:activity:6810502671267594240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 212, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6810502671267594240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6810502671267594240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6810502671267594240", + "threadId": "activity:6810502671267594240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810502671267594240", + "urn": "urn:li:activity:6810502671267594240", + "numComments": 396, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6810502671267594240", + "reactionTypeCounts": [ + { + "count": 4441, + "reactionType": "LIKE" + }, + { + "count": 399, + "reactionType": "PRAISE" + }, + { + "count": 333, + "reactionType": "INTEREST" + }, + { + "count": 155, + "reactionType": "MAYBE" + }, + { + "count": 47, + "reactionType": "EMPATHY" + }, + { + "count": 36, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6810502671267594240", + "numLikes": 5411, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810502671267594240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5411, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6810465107210969088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6810465107210969088", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6810465107210969088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6810465107210969088)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-un-peu-de-physique-pour-finir-activity-6810465107210969088-K8XZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6810465106669932544", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6810465107210969088", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6810465107210969088,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6810465107210969088,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6810465106669932544", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "jfSRhyC0ichOjVINfo8c8A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6810465107210969088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8425887012017685239", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 480, + "fileIdentifyingUrlPathSegment": "800/0/1675628380319?e=1677240000&v=beta&t=lYjmzIPJgqEh1hXqWlh4JkGPSuoj4wM2T7I_iPQQZQY", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675628380319?e=1677240000&v=beta&t=LTNBAVaKOvCmhbOdgM-jKLd2ebO4bpn_pOsKHKFzgAA", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675628380319?e=1677240000&v=beta&t=A7WefjBozKGHkhY1dpcp_W9SdP_b0CyHa4zZcrLb9tQ", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675628380319?e=1677240000&v=beta&t=QaojuIMvKq_3mhSYMd90nu7IFZsNO-ipc6TWvYzfZkk", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEqhur7KdrcaQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8425887012017685239)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8425887012017685239)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici : Un peu de physique pour finir la journ\u00e9e ? - Sabl\u00e9 sur Sarthe - 31 mai 2021 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=3vg9kffxPtE" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici \u00e9tait invit\u00e9 \u00e0 donner une conf\u00e9rence \u00e0 Sabl\u00e9 sur Sarthe le 31 mai 2021. D\u00e9but de la conf\u00e9rence \u00e0 00:10:15 Audio :..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici : Un peu de physique pour finir la journ\u00e9e ? - Sabl\u00e9 sur Sarthe - 31 mai 2021" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6810465106669932544,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 15, + "miniProfile": { + "firstName": "M\u00e9lanie", + "lastName": "Cosnier", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAATl1_cBdS5mXD-875lYoIwUHIQh_coDuQQ", + "occupation": "Convention Citoyenne pour le Climat Maire de Souvign\u00e9 sur Sarthe Conseill\u00e8re r\u00e9gionale Pays de la Loire", + "objectUrn": "urn:li:member:82171895", + "entityUrn": "urn:li:fs_miniProfile:ACoAAATl1_cBdS5mXD-875lYoIwUHIQh_coDuQQ", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1624953549407?e=1681948800&v=beta&t=LuoUMX9vNV-hO2RS3_NXPHGNxl5oU_A-lTZyJopSM4M", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1624953549407?e=1681948800&v=beta&t=BWgJOTm3PUy4DazEMslXWTnYSe6aDM0J5IUQa8B51Xc", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQHIRuL-WfHXaQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "m\u00e9lanie-cosnier-21b62923", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1620821291622?e=1681948800&v=beta&t=9Iz8oqav5CD2Zut3fuMW6sMUhWz2Q6-HifI1-YfkajU", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1620821291622?e=1681948800&v=beta&t=vckaWk4M2N8gyd-v4lsgeScDyZ4mL9xN03tHzOYfBIk", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1620821291622?e=1681948800&v=beta&t=GrzKHJZbe9PvYPNbTh3ynouED9sJ49il42tycp8a8Dc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1620821291622?e=1681948800&v=beta&t=oBMSegiDKxo8nIunS08mRQ6fsfvxR2JXdyptwtwCHdI", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQHOOCX3BsQAuQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "wHm64WvxTTaQa18qVoKUGQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "M\u00e9lanie Cosnier, qui a particip\u00e9 \u00e0 la Convention Citoyenne pour le Climat et qui est d\u00e9sormais mairesse de Souvign\u00e9 sur Sarthe (630 \u00e2mes au dernier recensement), m'a propos\u00e9 de faire une intervention essentiellement destin\u00e9e aux \u00e9lu(e)s des communes environnantes, qui fut aussi la premi\u00e8re en mode \"d\u00e9confin\u00e9\" depuis un an. \n\nLa seule novation de mon expos\u00e9 est la mani\u00e8re d'introduire le propos (si si j'ai r\u00e9ussi \u00e0 faire une nouvelle planche !), et apr\u00e8s cela n'est rien que du classique. Du coup c'est la partie \"questions\" (qui commence en gros \u00e0 1h15) qui est la plus int\u00e9ressante pour celles et ceux qui connaissent d\u00e9j\u00e0 le reste. \n\nUne alternative \"bas carbone\" \u00e0 la vid\u00e9o est d'avoir le son (https://lnkd.in/dPUvBa4 ) et les planches (https://lnkd.in/dN3HjWz )\n\nJe pr\u00e9cise que la physique utilis\u00e9e dans l'expos\u00e9 est aussi valable en d\u00e9but de journ\u00e9e :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6810465106669932544,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6810465107210969088,urn:li:activity:6810465107210969088,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 20, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6810465107210969088,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6810465107210969088,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6810465107210969088", + "threadId": "activity:6810465107210969088", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810465107210969088", + "urn": "urn:li:activity:6810465107210969088", + "numComments": 40, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6810465107210969088", + "reactionTypeCounts": [ + { + "count": 337, + "reactionType": "LIKE" + }, + { + "count": 27, + "reactionType": "PRAISE" + }, + { + "count": 18, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6810465107210969088", + "numLikes": 395, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810465107210969088", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 395, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6810091350424342528,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6810091350424342528", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6810091350424342528)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6810091350424342528)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_federal-governments-governance-of-energy-activity-6810091350424342528-bsmu?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6810091349904252928", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6810091350424342528", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6810091350424342528,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6810091350424342528,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6810091349904252928", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "wsx56oknCVGQSs5D7Yxi5A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6810091350424342528,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7333282113258526226", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1623651467524?e=1677240000&v=beta&t=TP0qGf8NNi9hoZL-qWFYEAaK_gFElhLYHn_iN7gWFJI", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1623651467524?e=1677240000&v=beta&t=94sYxhkm8ydF205Mv8y-9BvVSPr1B4Tr9vdsr1dUXTQ", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1623651467524?e=1677240000&v=beta&t=NxnAd-nilIOyoD8fY9jytwv-BnPWiGUaOtwHy6ClSqo", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1623651467524?e=1677240000&v=beta&t=CmK23Ai1DsubGPqpgpssE1pnObNL32UfG7e9mMyIJkU", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFTUO8q6nt29g/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7333282113258526226)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7333282113258526226)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "bundesrechnungshof.de \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Federal government\u2019s governance of energy transition still inadequate by bundesrechnungshof.de", + "actionTarget": "https://www.bundesrechnungshof.de/en/audit-reports/products/special-reports/2021-special-reports/federal-government2019s-governance-of-energy-transition-still-inadequate" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Federal government\u2019s governance of energy transition still inadequate" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6810091349904252928,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Alors que les Verts allemands montent dans les sondages en vue de l'\u00e9lection f\u00e9d\u00e9rale qui aura lieu outre-Rhin en septembre (et qui conduira \u00e0 d\u00e9signer la personne qui prendra la suite d'Angela Merkel), l'\u00e9quivalent germanique de la Cour des comptes d\u00e9clare que \"Secure and affordable electricity supply is more and more at risk \".\n\nOn trouve aussi, dans le communiqu\u00e9 de presse (le document lui-m\u00eame n'est disponible qu'en allemand) la phrase \"Aspects on security of supply and system security such as grid expansion and storage, grid maintenance and stability or supply disruptions are not or only little covered by indicators\". En gros, on ne se pr\u00e9occupe pas assez de physique, et plus pr\u00e9cis\u00e9ment cette institution consid\u00e8re que :\n- le gouvernment f\u00e9d\u00e9ral n'a pas tenu compte de la mise au rebut des centrales \u00e0 charbon, avec un d\u00e9faut de capacit\u00e9 de 4,5\u00a0GW non couvert,\n- n'a pas int\u00e9gr\u00e9 le surplus de production li\u00e9 au plan hydrog\u00e8ne,\n- n'a pas tenu compte des capacit\u00e9s limit\u00e9es d'interconnexion,\n- n'a pas envisag\u00e9 des ann\u00e9es o\u00f9 le climat conduira \u00e0 une production \u00e9olienne et solaire trop faible.\n\nOn peut se demander si c'est bien r\u00e9el de voir un pays d\u00e9penser des centaines de milliards d'euros sans s'\u00eatre demand\u00e9, avant de se lancer, s'il irait au bout de l'histoire telle qu'elle a \u00e9t\u00e9 racont\u00e9e \u00e0 l'\u00e9lectorat. L'histoire nous apprend malheureusement que c'est parfaitement possible." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6810091349904252928,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6810091350424342528,urn:li:activity:6810091350424342528,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 39, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6810091350424342528,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6810091350424342528,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6810091350424342528", + "threadId": "activity:6810091350424342528", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810091350424342528", + "urn": "urn:li:activity:6810091350424342528", + "numComments": 71, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6810091350424342528", + "reactionTypeCounts": [ + { + "count": 412, + "reactionType": "LIKE" + }, + { + "count": 70, + "reactionType": "MAYBE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6810091350424342528", + "numLikes": 559, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810091350424342528", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 559, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6810087070359412736,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6810087070359412736", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6810087070359412736)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6810087070359412736)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-projet-de-loi-climat-et-r%C3%A9silience-constitue-activity-6810087070359412736-YkzZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6810087069826719744", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6810087070359412736", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6810087070359412736,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6810087070359412736,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6810087069826719744", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "6rQr9+kS4wCfeVhVcjNlRg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6810087070359412736,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7115721798223321415", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676061079097?e=1677240000&v=beta&t=QTRXEambQRJXas8HuXsCKu1TLSBgo4yu-RT2mubUzu4", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676061079097?e=1677240000&v=beta&t=lPQ9kd1YGgfei4xW0tso4nQ31tEUd7gL8MeYDKOB7wk", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676061079097?e=1677240000&v=beta&t=Bdmelm5WOzgrHhiqDkcW34fiXiobnZ7fOGsRTlU_suo", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676061079097?e=1677240000&v=beta&t=31lLfnJoWkfHBRU2J_lxD5YKBC_GkeTSBWj38SG_bCg", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFZ1SguBbjHmg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7115721798223321415)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7115721798223321415)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab Le projet de loi Climat et r\u00e9silience constitue une double occasion manqu\u00e9e : respecter l\u2019accord de Paris et faire confiance \u00e0 la science \u00bb by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/idees/article/2021/06/12/le-projet-de-loi-climat-et-resilience-constitue-une-double-occasion-manquee-respecter-l-accord-de-paris-et-faire-confiance-a-la-science_6083846_3232.html?fbclid=IwAR2Up4gS_LsIbk8Y-ykjCmGffwGu5NGA6XcV4_xX-PkP3ny4I-gmaKZngTk" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0Le projet de loi Climat et r\u00e9silience constitue une double occasion manqu\u00e9e\u00a0: respecter l\u2019accord de Paris et faire confiance \u00e0 la science\u00a0\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6810087069826719744,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 40, + "length": 22, + "miniProfile": { + "firstName": "Hugues", + "lastName": "de Saint Pierre", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABZrKHkBGWOmjSGMt7lm2iOYpYhe3WscaEA", + "occupation": "SONJ Conseil - Consultant", + "objectUrn": "urn:li:member:376121465", + "entityUrn": "urn:li:fs_miniProfile:ACoAABZrKHkBGWOmjSGMt7lm2iOYpYhe3WscaEA", + "publicIdentifier": "hugues-desaintpierre", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1586166443453?e=1681948800&v=beta&t=yygc-7cm5AQTdaaveECrq6tiUGQARDQ6NHzkCMCSIn4", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1586166443453?e=1681948800&v=beta&t=GyXFv3b18YDzBulk-AStAPBjwI-eVWzwOr54OVQmwq0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1586166443453?e=1681948800&v=beta&t=O5f0qacEkzXCmjERifa92_kGqy76VjN_OeFYMgvRFOU", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1586166443453?e=1681948800&v=beta&t=dVsvHAET0J3yuM9oLTcYsKBuTK-E4yoa_zKkYgtjwdk", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGjNFYAe-jf0w/profile-displayphoto-shrink_" + } + }, + "trackingId": "M9+l8ZTOSvODWYfEKHWOjA==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 83, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:13651404", + "entityUrn": "urn:li:fs_miniCompany:13651404", + "name": "Les Shifters", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1629109484661?e=1684972800&v=beta&t=R27axQl2IngP9wy5-c-j-bqyZJLgRJAQZCPREnDHIr4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1629109484661?e=1684972800&v=beta&t=cv_DzzKYuZxt-bdCWkAj_3yb2GKDKksNUWr_o93ansM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1629109484661?e=1684972800&v=beta&t=6dofux6TPkbWW5VuLLmjBsUAY3kDM0OQz5aNswUrLNA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQFTN0BHZgn0qw/company-logo_" + } + }, + "universalName": "les-shifters", + "dashCompanyUrn": "urn:li:fsd_company:13651404", + "trackingId": "1KXb6mo8ThK/+oWlMPjebw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 100, + "length": 11, + "miniProfile": { + "firstName": "Lou", + "lastName": "Welgryn", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABeOgIgB5GEZ6RZxfLFbKCqpRWso8Y5bwE4", + "occupation": "Head of Product at Carbon4 Finance - Co-President Data for Good - Co-founder ESSEC Transition Alumni", + "objectUrn": "urn:li:member:395214984", + "entityUrn": "urn:li:fs_miniProfile:ACoAABeOgIgB5GEZ6RZxfLFbKCqpRWso8Y5bwE4", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1517529264936?e=1681948800&v=beta&t=aIC2R7RKZmYQChcGA3zqDFTS9TLn99LBtNAu1u2WR3A", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1517529264936?e=1681948800&v=beta&t=OhYTiVUQjyDXkia2dG5v7PZd7Q1xtYNuPOOj4BjulmY", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQGJCnhxvyIcQQ/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "lou-welgryn-460434b0", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1666275660685?e=1681948800&v=beta&t=rPfpcBfQiDFKCEpRVjXlY03ZvPR2U61DCsSCwgvfBuw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1666275660685?e=1681948800&v=beta&t=YORPn5V5wX9A6RUQQRN2G1MzGBNs1hrJYWWY41D6GFI", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1666275660685?e=1681948800&v=beta&t=BDeCC8HRAfLzqYpxpRiu-Op-vhGbbRmLl4EljzU7Yg8", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1666275660685?e=1681948800&v=beta&t=ud9hBMILj8NJgGa4lpsy0AAPK8FCzg91EjKUrdBndrA", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQHCFoOo5S1sAw/profile-displayphoto-shrink_" + } + }, + "trackingId": "1AdPBpxNTyWZbW7xkC+udg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 132, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "eIWGS+pvT4ifvJ0FS60wHQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Dans une tribune publi\u00e9e dans Le Monde, Hugues de Saint Pierre (qui fait partie de Les Shifters) et Lou Welgryn (qui travaille chez Carbon4 Finance ) font plusieurs propositions, dont celle, int\u00e9ressante, que soit \"[organis\u00e9e] une session de formation des d\u00e9put\u00e9s et des s\u00e9nateurs, obligatoire, de sept jours minimum, d\u00e8s le d\u00e9but de la prochaine l\u00e9gislature. Cette formation doit \u00eatre renouvel\u00e9e apr\u00e8s chaque \u00e9lection, pour assurer la comp\u00e9tence des nouveaux \u00e9lus.\"\n\nLes auteurs de ce texte voient le d\u00e9faut de formation des \u00e9lus sur le probl\u00e8me \u00e0 traiter comme une des causes de la timidit\u00e9 de l'action politique. En tous cas, au vu de l'enjeu et de la modestie du temps n\u00e9cessaire pour voir si une bonne formation change quelque chose, ca vaut le coup d'essayer de la faire !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6810087069826719744,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6810087070359412736,urn:li:activity:6810087070359412736,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 65, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6810087070359412736,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6810087070359412736,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6810087070359412736", + "threadId": "activity:6810087070359412736", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810087070359412736", + "urn": "urn:li:activity:6810087070359412736", + "numComments": 123, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6810087070359412736", + "reactionTypeCounts": [ + { + "count": 1433, + "reactionType": "LIKE" + }, + { + "count": 141, + "reactionType": "PRAISE" + }, + { + "count": 75, + "reactionType": "APPRECIATION" + }, + { + "count": 41, + "reactionType": "MAYBE" + }, + { + "count": 22, + "reactionType": "INTEREST" + }, + { + "count": 18, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6810087070359412736", + "numLikes": 1730, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6810087070359412736", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1730, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6809776957622890496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6809776957622890496", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6809776957622890496)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6809776957622890496)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_tourisme-spatial-jeff-bezos-annonce-le-activity-6809776957622890496-nYz6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6809776956981186560", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6809776957622890496", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6809776957622890496,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6809776957622890496,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6809776956981186560", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "K9Acu9RIQ8a7+jxMcVCaYw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6809776957622890496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7740268585809526986", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676629792791?e=1677240000&v=beta&t=uK68v-zw4ujOb6KfI99c-38jZgmAtoBpyRkIO0xK_NY", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676629792792?e=1677240000&v=beta&t=TQl8KMZI8o_HMaSSzPc8sibsU-Twt2Jxu-EhrwOwzO0", + "expiresAt": 1677240000000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676629792792?e=1677240000&v=beta&t=cXfxx9ZH2Dvs7wEjGTC03lqkDCF3jE92HUkqzR9Aiz0", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676629792792?e=1677240000&v=beta&t=ktDn3Q8Rd_sf1-0zS3y76lwg3F14wZUoXNntAhtnyrw", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQErzXx6KL_YeQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7740268585809526986)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7740268585809526986)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "francetvinfo.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Tourisme spatial : Jeff Bezos annonce le premier vol de sa fus\u00e9e Blue Origin by francetvinfo.fr", + "actionTarget": "https://www.francetvinfo.fr/internet/amazon/tourisme-spatial-jeff-bezos-annonce-le-premier-vol-de-sa-fusee-blue-origin_4654837.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Tourisme spatial : Jeff Bezos annonce le premier vol de sa fus\u00e9e Blue Origin" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6809776956981186560,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 120, + "length": 10, + "miniCompany": { + "objectUrn": "urn:li:company:5020890", + "entityUrn": "urn:li:fs_miniCompany:5020890", + "name": "franceinfo", + "showcase": true, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1576146510554?e=1684972800&v=beta&t=NmRkrTo6O7FqXkD4x8bdcE3_Lg_SVXY12qyrNxwOoO4", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1576146510554?e=1684972800&v=beta&t=YCb_4X8T-Fch08AeMzGEfRaCg1NZnCJXjcvmmq95_i0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1576146510554?e=1684972800&v=beta&t=qXbznuOqIe3JGFGEmdSjWERbFkdSpmBstxzeYiv59xA", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQEv4p12Fry9MA/company-logo_" + } + }, + "universalName": "france-info", + "dashCompanyUrn": "urn:li:fsd_company:5020890", + "trackingId": "rbdkTuNlSvulU9s2wqr8OA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "\"Voir la terre de l'espace (...) change votre rapport \u00e0 l'humanit\u00e9\" : telle est la citation de Jeff Bezos rapport\u00e9e par franceinfo dans ce reportage qui s'enthousiasme pour les vols \"touristiques\" dans l'espace, et pr\u00e9sente implicitement les milliardaires qui d\u00e9pensent beaucoup d'argent dans la construction de leurs fus\u00e9es comme des nouveaux h\u00e9ros des temps modernes.\n\nLe budget de Blue Origin pour d\u00e9velopper ce vaisseau spatial est de 200 millions de dollars (empreinte carbone du d\u00e9veloppement \u2248\u00a065000 tonnes de CO2), et un tir utilise 50 tonnes de carburant et comburant, soit quelques centaines de tonnes de CO2 pour sa production et son utilisation. \n\nAvec quelques centaines de \"touristes spatiaux\" sur la dur\u00e9e du programme, cela met ce Disneyland de l'espace \u00e0 500 \u00e0 1000 tonnes de CO2 par voyage (soit 50 \u00e0 100 fois l'empreinte carbone annuelle d'un fran\u00e7ais, ou encore au moins 5 fois le budget carbone \"2\u00b0C\" d'un \u00eatre humain qui nait aujourd'hui pour la totalit\u00e9 de sa vie).\n\nEt les utilisateurs de ces gadgets, qui ne revendiquent m\u00eame pas d'utilit\u00e9 sociale (juste du tourisme), sont par ailleurs parfois pr\u00e9sent\u00e9s comme des \"h\u00e9ros de l'environnement\" : Amazon sera neutre en carbone et 100% ENR, Branson a financ\u00e9 des prix pour \"sauver l'humanit\u00e9 du CO2\", sans parler de Musk qui va \u00e9lectrifier toutes les voitures et nous d\u00e9barrasser du vilain p\u00e9trole.\n\nMais si, pour \"changer son rapport \u00e0 l'humanit\u00e9\" (ou accomplir un r\u00eave d'enfant, autre citation du m\u00eame milliardaire dans ce petit clip) il faut 500 tonnes de CO2 par personne, ca pose un petit probl\u00e8me d'ordre de grandeur, non, messieurs-dames de la r\u00e9daction de France Info ?\n\nBezos restera Bezos. L'argent laisse rarement ceux qui en ont beaucoup totalement indiff\u00e9rents, surtout dans le contexte am\u00e9ricain o\u00f9 la r\u00e9ussite financi\u00e8re est consid\u00e9r\u00e9e comme l'accomplissement personnel ultime. Qu'il soit un peu m\u00e9galo est donc dans l'ordre normal des choses.\n\nCe qui m'\u00e9tonne le plus, dans cette affaire, c'est l'absence totale de recul d'une radio financ\u00e9e avec l'argent des imp\u00f4ts de personnes qui, pour l'essentiel, gagnent en un mois ce que Bezos gagne en une seconde. Ce n'est pas vraiment la peine que la m\u00eame radio s'\u00e9meuve ensuite de l'absence de mesures pertinentes en ce qui concerne le climat." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6809776956981186560,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6809776957622890496,urn:li:activity:6809776957622890496,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 235, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6809776957622890496,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6809776957622890496,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6809776957622890496", + "threadId": "activity:6809776957622890496", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6809776957622890496", + "urn": "urn:li:activity:6809776957622890496", + "numComments": 358, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6809776957622890496", + "reactionTypeCounts": [ + { + "count": 5005, + "reactionType": "LIKE" + }, + { + "count": 654, + "reactionType": "PRAISE" + }, + { + "count": 296, + "reactionType": "MAYBE" + }, + { + "count": 110, + "reactionType": "INTEREST" + }, + { + "count": 64, + "reactionType": "EMPATHY" + }, + { + "count": 57, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6809776957622890496", + "numLikes": 6186, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6809776957622890496", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 6186, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6809048373975367680,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6809048373975367680", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6809048373975367680)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6809048373975367680)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_larticle-29-de-la-loi-n2019-1147-du-8-novembre-activity-6809048373975367680-IlWq?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6809048373329436672", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6809048373975367680", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6809048373975367680,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6809048373975367680,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6809048373329436672", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "Gt+pB28WjYI2vGL5jRB10g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6809048373975367680,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQGzCKvf3_UK2g", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQGzCKvf3_UK2g", + "artifacts": [ + { + "width": 780, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1623403636920?e=1679529600&v=beta&t=uaB0squNQUQUSaz9euPj45YTPe1X61oiqKOPY5bygG0", + "expiresAt": 1679529600000, + "height": 959 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1623403637028?e=1679529600&v=beta&t=gYjXf_9bwL9aj0gw-NMhcvIBVJRqgvLOuQtAUnpIhQY", + "expiresAt": 1679529600000, + "height": 24 + }, + { + "width": 780, + "fileIdentifyingUrlPathSegment": "1280/0/1623403637028?e=1679529600&v=beta&t=ugDMH1K8hd9Srb26TLg5E2D3d3sbon638ts7rRVSNRw", + "expiresAt": 1679529600000, + "height": 959 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1623403637028?e=1679529600&v=beta&t=CRH8UVtH8u6aW01HOn0TFQiCenudoJoZSJRsXJbH2rM", + "expiresAt": 1679529600000, + "height": 590 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1623403637028?e=1679529600&v=beta&t=HiDCtJbdoXvBECzrh7rUgPHKJGSlzTK4sBI1FMWOCbY", + "expiresAt": 1679529600000, + "height": 196 + }, + { + "width": 780, + "fileIdentifyingUrlPathSegment": "800/0/1623403637028?e=1679529600&v=beta&t=JTqlLm4_-RVUSItVmSaJETvXngVAvZxl1rCC1ry_wWU", + "expiresAt": 1679529600000, + "height": 959 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQGzCKvf3_UK2g/feedshare-shrink_" + }, + "displayAspectRatio": 1.2294871794871796 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6809048373329436672,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 346, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "FHvUuwNmQFuZ5pmZXTQJUw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "L'article 29 de la loi n\u00b02019-1147 du 8 novembre 2019 relative \u00e0 l\u2019\u00e9nergie et au climat pr\u00e9voyait un renforcement des obligations de d\u00e9claration (\"reporting\" en anglais) des entreprises et acteurs financiers en mati\u00e8re d'environnement, et singuli\u00e8rement de climat et de biodiversit\u00e9.\n\nLe d\u00e9cret d'application de cet article vient de para\u00eetre, et Carbone 4 en a fait une rapide synth\u00e8se : https://lnkd.in/dQxS-kT\n\nCette exigence renforc\u00e9e reste modeste. Aucune entreprise ne risque de se voir infliger une amende massive pour non respect de l'obligation (l'entorse au droit de la concurrence reste donc une affaire bien plus grave que de d\u00e9truire notre vaisseau spatial commun, il faut \u00eatre s\u00e9rieux quand m\u00eame). \n\nPar ailleurs, l'absence de normalisation des m\u00e9thodes (et de m\u00e9thodes cal\u00e9es avant tout sur le probl\u00e8me physique \u00e0 r\u00e9soudre, et non avant tout sur l'envie de se rassurer \u00e0 bon compte) ouvre grand la porte \u00e0 une vague de greenwashing, dont la croissance, aujourd'hui, ne pose absolument pas question !\n\nIl est dommage que cet article n'ait pas pr\u00e9vu une obligation de faire monter les collaborateurs d'une entreprise en comp\u00e9tence face au probl\u00e8me \u00e0 traiter, car c'est bien l\u00e0 un des noeuds gordiens du probl\u00e8me. Et un autre noeud est de faire monter le gendarme en comp\u00e9tence (autorit\u00e9s de march\u00e9, commissaires aux comptes, etc), faute de quoi il sera tr\u00e8s simple de balader tout le monde en faisant croire que les grandes manoeuvres sont en cours, alors qu'en pratique on ne change que marginalement les proc\u00e9d\u00e9s, march\u00e9s, organisations, et chaines de valeur. \n\nC'est donc un premier pas bienvenu. Mais ce n'est qu'un premier pas (ou un deuxi\u00e8me, allez) d'une longue marche..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6809048373329436672,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6809048373975367680,urn:li:activity:6809048373975367680,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 16, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6809048373975367680,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6809048373975367680,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6809048373975367680", + "threadId": "activity:6809048373975367680", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6809048373975367680", + "urn": "urn:li:activity:6809048373975367680", + "numComments": 35, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6809048373975367680", + "reactionTypeCounts": [ + { + "count": 285, + "reactionType": "LIKE" + }, + { + "count": 36, + "reactionType": "INTEREST" + }, + { + "count": 25, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6809048373975367680", + "numLikes": 357, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6809048373975367680", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 357, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6808794801371144192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6808794801371144192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6808794801371144192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6808794801371144192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_un-sondage-comment%C3%A9-dans-les-echos-indique-activity-6808794801371144192-H3Xa?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6808794800381280256", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6808794801371144192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6808794801371144192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6808794801371144192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6808794800381280256", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "6z6CZcwBGN0LjK83VAQJ/w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6808794801371144192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEZJoksBVdZ1w", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEZJoksBVdZ1w", + "artifacts": [ + { + "width": 860, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1623343181326?e=1679529600&v=beta&t=1BXicxHGfEpYu_K_vWI5hhTNdxlHIuHbIOHKElPiKBk", + "expiresAt": 1679529600000, + "height": 592 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1623343181352?e=1679529600&v=beta&t=FTIQrB6VfwthCjiDQn2GsTh6rxKOrLfP0kR4lzw_m0s", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 860, + "fileIdentifyingUrlPathSegment": "1280/0/1623343181351?e=1679529600&v=beta&t=XsFEJh5zZFQQoRJq-6rMt9Go4ewKLSRV-N25mE-9Ef0", + "expiresAt": 1679529600000, + "height": 592 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1623343181352?e=1679529600&v=beta&t=77eTCmBgqX2m4s0I1BEb-QKG6hxKZGbV771rEbDsLxE", + "expiresAt": 1679529600000, + "height": 330 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1623343181352?e=1679529600&v=beta&t=QQSIY2obPHq6XWtYl-68yk3xRxFo2pnNPaFfZ-Zd3Nw", + "expiresAt": 1679529600000, + "height": 110 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1623343181352?e=1679529600&v=beta&t=GBsBxkh9y0ZrCnW7q6e_wzxC0U6WqloitKZ3ER4lqDE", + "expiresAt": 1679529600000, + "height": 550 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEZJoksBVdZ1w/feedshare-shrink_" + }, + "displayAspectRatio": 0.6883720930232559 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, waterfall chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6808794800381280256,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un sondage comment\u00e9 dans les Echos indique que plus de la moiti\u00e9 des actifs ne souhaitent pas revenir \u00e0 la situation d'avant le covid en mati\u00e8re de temps de pr\u00e9sence \"sur le lieu de travail\", mais aimeraient rester chez eux un ou deux jours par semaine : https://lnkd.in/dY69ZUC\n\nQuelles conclusions ou questions peut-on en tirer ?\n\n- que cela offre l'occasion aux entreprises de r\u00e9duire leur surface de bureaux, ces derniers devenant moins n\u00e9cessaires. Il y a fort \u00e0 parier que beaucoup vont chercher \u00e0 le faire, puisque c'est des \u00e9conomies de charges. Les investisseurs dans ce segment de l'immobilier ont peut-\u00eatre un peu de mouron \u00e0 se faire, par contre l'\u00e9nergie dans le tertiaire pourrait \"en profiter\" pour diminuer,\n\n- que l'\u00e9quation pour les les transports en commun est plus compliqu\u00e9e. A court terme leurs recettes sont essentiellement du type abonnement et subventions, donc peu d\u00e9pendantes du trafic (qui baissera avec moins de jours de transport au \"lieu de travail\"), mais \u00e0 plus long terme...\n\n- que le trafic auto li\u00e9 aux d\u00e9placements domicile travail va peut-\u00eatre un peu baisser, mais il ne faudrait pas qu'il soit compens\u00e9 par des d\u00e9placements \"pour se changer les id\u00e9es\" avec ce m\u00eame mode !\n\n- et peut-\u00eatre qu'une partie de la population va chercher \u00e0 sortir des grandes villes avec du t\u00e9l\u00e9travail \"pendulaire\", ce qui rebattra les cartes sur le prix de l'immobilier et l'am\u00e9nagement du territoire.\n\nEn plus, tout cela va se faire dans un contexte \u00e9conomique qui sera peut-\u00eatre celui d'une contraction structurelle, pour cause de d\u00e9crue p\u00e9troli\u00e8re subie (https://lnkd.in/dwPcgve ). \n\nCe qui est sur, c'est qu'il y a eu un avant et il y aura un apr\u00e8s, et que ce dernier ne sera pas le retour \u00e0 l'avant !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6808794800381280256,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6808794801371144192,urn:li:activity:6808794801371144192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 58, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6808794801371144192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6808794801371144192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6808794801371144192", + "threadId": "activity:6808794801371144192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6808794801371144192", + "urn": "urn:li:activity:6808794801371144192", + "numComments": 108, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6808794801371144192", + "reactionTypeCounts": [ + { + "count": 738, + "reactionType": "LIKE" + }, + { + "count": 97, + "reactionType": "MAYBE" + }, + { + "count": 64, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6808794801371144192", + "numLikes": 911, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6808794801371144192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 911, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6808692248536985600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6808692248536985600", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6808692248536985600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6808692248536985600)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_impact-du-r%C3%A9chauffement-climatique-sur-le-activity-6808692248536985600-uevH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6808692247941390337", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6808692248536985600", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6808692248536985600,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6808692248536985600,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6808692247941390337", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "Sr0atk0JQwdcJHlN9CC4+w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6808692248536985600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7618942736833916559", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675507675088?e=1677240000&v=beta&t=esDsvV7KAnR98ejSI8MAuLrHsD18l3r27Hb5WQreSKI", + "expiresAt": 1677240000000, + "height": 394 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675507675088?e=1677240000&v=beta&t=aEmqxuGFhXRHGt06CJ-Ko6BIijCISJI_n7E2UBi2fHc", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675507675088?e=1677240000&v=beta&t=ZRSF4f91hEFntYVWcfvXHRuaHKfoAR2wixLXP6vpjjA", + "expiresAt": 1677240000000, + "height": 78 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675507675088?e=1677240000&v=beta&t=-gzAJ_KUKj6WB-5zU7Ug5wCXXXSZ-FEXXJ-g4GbbrlU", + "expiresAt": 1677240000000, + "height": 236 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEWZZtvh5yHUw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7618942736833916559)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7618942736833916559)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theconversation.com \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Impact du r\u00e9chauffement climatique sur le PIB : pourquoi les statistiques se trompent by theconversation.com", + "actionTarget": "https://theconversation.com/impact-du-rechauffement-climatique-sur-le-pib-pourquoi-les-statistiques-se-trompent-160517" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Impact du r\u00e9chauffement climatique sur le\u00a0PIB\u00a0: pourquoi les\u00a0statistiques se\u00a0trompent" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6808692247941390337,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'\u00e9conomie nous aide-t-elle pour nous convaincre qu'il faut lutter contre le changement climatique ? Tout le rebours, soulignent les auteurs de cet article publi\u00e9 dans The Conversation, qui expliquent en quoi la technique employ\u00e9e pour \u00e9valuer les dommages \u00e9conomiques possibles du changement climatique minimise par construction la valorisation \u00e9conomique de ces dommages. En fait, le syst\u00e8me climatique \u00e9tant gratuit par convention en \u00e9conomie, le fait de l'endommager ne peut valoir que... z\u00e9ro. Et donc imaginer les pertes de PIB dues \u00e0 l'alt\u00e9ration de ce syst\u00e8me ne peut relever que d'un choix arbitraire ou conventionnel.\n\nEn outre, l'\u00e9conomie ne dit pas tout : on peut tr\u00e8s bien pr\u00e9server le PIB en dictature, dans un monde sans amour et sans joie, ou avec des gens en mauvais \u00e9tat g\u00e9n\u00e9ral (surpoids, drogue, etc). \n\nLa conclusion de cette affaire est assez logique : ce n'est pas l'\u00e9conomie qui peut justifier de passer \u00e0 l'action en mati\u00e8re de climat. L'\u00e9conomie ne peut, au mieux, que nous aider \u00e0 orienter l'action. C'est d\u00e9sagr\u00e9able, mais il faut faire avec !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6808692247941390337,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6808692248536985600,urn:li:activity:6808692248536985600,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 36, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6808692248536985600,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6808692248536985600,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6808692248536985600", + "threadId": "activity:6808692248536985600", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6808692248536985600", + "urn": "urn:li:activity:6808692248536985600", + "numComments": 113, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6808692248536985600", + "reactionTypeCounts": [ + { + "count": 497, + "reactionType": "LIKE" + }, + { + "count": 53, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "INTEREST" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6808692248536985600", + "numLikes": 608, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6808692248536985600", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 608, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6808637759754924032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6808637759754924032", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6808637759754924032)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6808637759754924032)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_environ-120-millions-de-tonnes-%C3%A9quivalent-activity-6808637759754924032-jair?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6808637759092203520", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6808637759754924032", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6808637759754924032,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6808637759754924032,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6808637759092203520", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "4TjUCo2sPVoXPBtaSmz34w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6808637759754924032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHWP-A95I9oUg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHWP-A95I9oUg", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1623305738100?e=1679529600&v=beta&t=lhVvVP98lDhQXPor5yBAtStUDuIUJaaqS-7w5M4M3HI", + "expiresAt": 1679529600000, + "height": 636 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1623305739614?e=1679529600&v=beta&t=TXJ0hf0IRZRr5JHrHkf3G-gnkiyoSzJ9DeQQkBo38HY", + "expiresAt": 1679529600000, + "height": 6 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1623305739614?e=1679529600&v=beta&t=cYDPulgVAwJErLqky3PVyeM1OXd1se2aIRgMDblm5gU", + "expiresAt": 1679529600000, + "height": 398 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1623305739614?e=1679529600&v=beta&t=Y1gn4JewEAr3ZbXbV0LckQ2q8at60SPcgufM7Rfnv5A", + "expiresAt": 1679529600000, + "height": 149 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1623305739614?e=1679529600&v=beta&t=vrZTJpSvHrf65n_dYPD4v3wQu1e9ppmRuHqyTLI4tQ0", + "expiresAt": 1679529600000, + "height": 50 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1623305739614?e=1679529600&v=beta&t=K0JHwKEOxWeIk1dAQOJIXSZ75hdb34hJ4k4zxcR8evo", + "expiresAt": 1679529600000, + "height": 248 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHWP-A95I9oUg/feedshare-shrink_" + }, + "displayAspectRatio": 0.310546875 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6808637759092203520,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 227, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "zx3r4XceToqHxa0KemsDIQ==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 243, + "length": 49, + "miniCompany": { + "objectUrn": "urn:li:company:2996949", + "entityUrn": "urn:li:fs_miniCompany:2996949", + "name": "Scet", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1647935983542?e=1684972800&v=beta&t=qU7FI8eNMSHz1j0FutrV_FgCuT71PMz7JDJNXx6DOTk", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1647935983542?e=1684972800&v=beta&t=E4iMg5gZAZWMIJ1fcvZ1qke1JDgYuns3q7iveV7yGS4", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1647935983542?e=1684972800&v=beta&t=8HKiG8VJTLnch1XWnPMtO9LeudzHxD1tBs2d8juQ2pI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQHO5nAIbFCOkw/company-logo_" + } + }, + "universalName": "-scet-", + "dashCompanyUrn": "urn:li:fsd_company:2996949", + "trackingId": "QANypwd4QQWpfhVej/86Xw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 300, + "length": 5, + "miniCompany": { + "objectUrn": "urn:li:company:25739", + "entityUrn": "urn:li:fs_miniCompany:25739", + "name": "ADEME", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1585329330514?e=1684972800&v=beta&t=Jo5Z26A4h9a4pwnzJuT6V66mHZ2phVtISTlgW-JvpQc", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1585329330514?e=1684972800&v=beta&t=jDsoRzAHGOZrsOlhot-rkNKuWkLKrzH2ysN5atTddyM", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1585329330514?e=1684972800&v=beta&t=jTZ3ngyiTdST1d32J_HKbe6Vf0v-ED3ccYxogNtLDZ8", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQGyXOiwGuc0hA/company-logo_" + } + }, + "universalName": "ademe", + "dashCompanyUrn": "urn:li:fsd_company:25739", + "trackingId": "pLFraVDNQK6U3JSLOBnp8A==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 1249, + "length": 17, + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "2RjkgLORTXuphaIivy1BBA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Environ 120 millions de tonnes \u00e9quivalent CO2, soit un sixi\u00e8me (en gros) de l'empreinte carbone de la France : c'est ce que \"p\u00e8se\" le tourisme (pr\u00e9-covid) de notre pays en 2018, selon une analyse qui vient d'\u00eatre effectu\u00e9e par Carbone 4 et la SCET (Services Conseil Expertises et Territoires) pour l'ADEME : https://lnkd.in/dhG8dmQ\n\nCe n'est pas tout de se gargariser d'\u00eatre la premi\u00e8re destination touristique mondiale, cela va aussi avec quelques \u00e9missions venant du transport a\u00e9rien et routier, des \u00e9tablissements \u00e0 chauffer et refroidir, de la nourriture \u00e0 produire, \u00e0 transporter et \u00e0 cuisiner, des colifichets \u00e0 produire, et m\u00eame du carburant des dameuses.\n\n15% de l'empreinte carbone pour 7% du PIB : manifestement, le tourisme hexagonal sous sa forme actuelle n'est pas du tout du bon c\u00f4t\u00e9 de la barri\u00e8re dans un monde qui cherche sa neutralit\u00e9 carbone. Au demeurant, un monde plus sobre sera un monde o\u00f9 d'une part la productivit\u00e9 du travail (qui peut se r\u00e9sumer \u00e0 l'adjonction de machines aux hommes) va baisser, ce qui supprimera du temps libre toutes choses \u00e9gales par ailleurs, et d'autre part un monde o\u00f9 le d\u00e9placement lointain et pas cher sera moins facile.\n\nCela rejoint, sans grande surprise, des conclusions issues du travail de The Shift Project sur la culture, dont un sous-ensemble important des activit\u00e9s (festivals, mus\u00e9es, lieux remarquables) est en fait du... tourisme : https://lnkd.in/dSHYvSD\n\nNotre pays serait donc bien avis\u00e9 de se pencher dare-dare sur la mani\u00e8re de faire vivre autrement une partie des gens qui en d\u00e9pendent." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6808637759092203520,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6808637759754924032,urn:li:activity:6808637759754924032,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6808637759754924032,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6808637759754924032,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6808637759754924032", + "threadId": "activity:6808637759754924032", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6808637759754924032", + "urn": "urn:li:activity:6808637759754924032", + "numComments": 106, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6808637759754924032", + "reactionTypeCounts": [ + { + "count": 587, + "reactionType": "LIKE" + }, + { + "count": 93, + "reactionType": "INTEREST" + }, + { + "count": 84, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6808637759754924032", + "numLikes": 778, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6808637759754924032", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 778, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6808298675513655296,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1024481", + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "rc4iD6uETdumkyI+uMruTg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "rc4iD6uETdumkyI+uMruTg==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Carbone 4", + "actionTarget": "https://www.linkedin.com/company/carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1024481" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "118,673 followers" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6808006755696562176,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6808006755696562176", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6808006755696562176)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6808006755696562176)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/carbone-4_apr%C3%A8s-le-lancement-r%C3%A9ussi-de-la-formation-activity-6808006755696562176-Kkh2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6808006755218411520", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1024481", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6808006755696562176,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6808006755696562176,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6808006755218411520", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "CXrn1ZUM1/McxEmxzpsrSg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6808006755696562176,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQErWCX6Wsl4ow", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQErWCX6Wsl4ow", + "artifacts": [ + { + "width": 1080, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1623155296828?e=1679529600&v=beta&t=NTG3dKJyo50graIAEY8Jw0yAcZCKwfFQs98n5BtCMFE", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1623155296772?e=1679529600&v=beta&t=9-DjmGZ2RUFp0m3NdNCsukSjdS2xEKbEkUnrKi4b67I", + "expiresAt": 1679529600000, + "height": 20 + }, + { + "width": 1080, + "fileIdentifyingUrlPathSegment": "1280/0/1623155296772?e=1679529600&v=beta&t=RffLlCNWYB1oRbrFgUic3_YYaJPdEg4U-etBRaZ1HVI", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1623155296772?e=1679529600&v=beta&t=PJ4aMNAL2IDESdspsITsWWeLv_bkSSUMOLnVKl5LUrc", + "expiresAt": 1679529600000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1623155296772?e=1679529600&v=beta&t=03YXowGPDsyC0ka9Q4CMD_nAqzJqloLQzd_fYL5jfG4", + "expiresAt": 1679529600000, + "height": 160 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1623155296772?e=1679529600&v=beta&t=1gKSOh3N1qbtNpJfZle2UXCslzRx6pkID3KY9DYpUwM", + "expiresAt": 1679529600000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQErWCX6Wsl4ow/feedshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6808006755218411520,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 853, + "length": 19, + "miniProfile": { + "firstName": "Alexandre", + "lastName": "Florentin", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAANb1HkB0hFLO78fsWl4XTnq8ngUFfM51ng", + "occupation": "Directeur Carbone4 Acad\u00e9mie | Conseiller de Paris | Pr\u00e9sident mission Paris \u00e0 50\u00b0C", + "objectUrn": "urn:li:member:56349817", + "entityUrn": "urn:li:fs_miniProfile:ACoAAANb1HkB0hFLO78fsWl4XTnq8ngUFfM51ng", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1603437138763?e=1681948800&v=beta&t=1tfKtPjP_y4994IgKlJ9F8Fi2WYAfiaPuVta5Q9yAa0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1603437138763?e=1681948800&v=beta&t=T-OyfChMGMSQARQM1Blqj6F9MQtalIv95gzGRJH3Xh0", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5616AQEO8e--6C8R_A/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "alexandreflorentin", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1603437083613?e=1681948800&v=beta&t=cgxUktPT-aa9XgCv4CPh_Qk4LDXoQInKWgO71YDw7po", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1603437083613?e=1681948800&v=beta&t=y_9gSgUhEXNo9cXKGceh0xFOGvZJnRZvWLfgcyVl8EM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1603437083613?e=1681948800&v=beta&t=xIpQ1Lv4emTmcx_6pSMjo-XzfLcR8ZIVtmzn3z5w-H4", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1603437083613?e=1681948800&v=beta&t=zp-2pnmCLgjRo5EOnbjfOD9K24JZJ4tJTeVELlPyyJ8", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQFfnvC2d_fBWA/profile-displayphoto-shrink_" + } + }, + "trackingId": "cE0Pu7jvTr2tCjiN2Q25jw==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 873, + "length": 16, + "miniProfile": { + "firstName": "Christina", + "lastName": "Stuart", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABTAH8MBqvluLHxWKCaRrejcszDoyN3Pufw", + "occupation": "Project Leader at Carbone 4", + "objectUrn": "urn:li:member:348135363", + "entityUrn": "urn:li:fs_miniProfile:ACoAABTAH8MBqvluLHxWKCaRrejcszDoyN3Pufw", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1649767244761?e=1681948800&v=beta&t=4mI8pH-SngGVjKceP9Xegbaou59i-oZg5ZGAbzMERuc", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1649767244761?e=1681948800&v=beta&t=TqeZMsl4ooUsK3phH4vQl3dm3OldXkXuAXaxrbg2yC0", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQEQdgUVAIjwfw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "christina-stuart-28370b98", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1649767034069?e=1681948800&v=beta&t=FzXQP91CyGvAuoAWOQ14bsKpQf2rmzXGQUQFte3mzPM", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1649767034069?e=1681948800&v=beta&t=RUgPVaruV37-K3_Y5EVHjJ7hL0MYlwENYSI0z7XSLPo", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1649767034069?e=1681948800&v=beta&t=WhdXAyA0BxXJRtM5sZLLXwkKTHHWC6rbdnggi0LH8HY", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1649767034069?e=1681948800&v=beta&t=J9qUoJlG3einUm-ibGKKw_e436hMkZVPVdMLdefRFmU", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQHnCeDr58Ax6w/profile-displayphoto-shrink_" + } + }, + "trackingId": "2pUUh0/AS4Ozfrt/h60h/g==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "\ud83d\udca1 Apr\u00e8s le lancement r\u00e9ussi de la formation \u00ab Climat & entreprises \u00bb, la Carbone 4 Acad\u00e9mie est heureuse de vous proposer une nouvelle formation en ligne : \u00ab\u00a0Climat & finance\u00a0\u00bb. \n\n\u2705 Dispens\u00e9s par les \u00e9quipes de Carbone 4, en direct, 12h de contenus in\u00e9dits \u00e0 destination des acteurs de la finance (investissement, risques, financement...) soucieux d'acqu\u00e9rir des cadres m\u00e9thodologiques pour agir face au changement climatique, mais aussi \u00e0 toute personne d\u00e9sireuse d\u2019aller plus loin dans ses connaissances climat \u2013 finance. \n\n\ud83d\udc49 Les inscriptions pour cette nouvelle session qui se d\u00e9roulera du 28 septembre au 21 octobre sont d\u00e9sormais ouvertes.\n\nAttention, le nombre de places est limit\u00e9 !\n\nPour vous inscrire :\u00a0https://lnkd.in/dpZtrCG\u00a0\nPour en savoir plus sur le contenu :\u00a0https://lnkd.in/dZUHBaU\nPour toute question, contactez formation@carbone4.com\n\nAlexandre Florentin Christina Stuart" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6808006755218411520,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6808006755696562176,urn:li:activity:6808006755696562176,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 8, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6808006755696562176,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6808006755696562176,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6808006755696562176", + "threadId": "activity:6808006755696562176", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6808006755696562176", + "urn": "urn:li:activity:6808006755696562176", + "numComments": 9, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6808006755696562176", + "reactionTypeCounts": [ + { + "count": 102, + "reactionType": "LIKE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6808006755696562176", + "numLikes": 113, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6808006755696562176", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 113, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6808298675513655296", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6808298675513655296)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6808298675513655296)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_apr%C3%A8s-le-lancement-r%C3%A9ussi-de-la-formation-activity-6808298675513655296-dB0X?utm_source=share&utm_medium=member_desktop" + }, + { + "subActionsMenu": { + "title": "Who would you like to unfollow?", + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + } + ] + }, + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_ACTIONS", + "text": "Unfollow" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6808298675178098688", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6808298675513655296", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6808298675513655296,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6808298675513655296,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6808298675178098688", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "CXrn1ZUM1/McxEmxzpsrSg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6808298675513655296,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6808298675178098688,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Comme de plus en plus de monde dans le secteur financier prend position sur la question climatique, Carbone 4 Acad\u00e9mie le fait aussi, \u00e0 sa mani\u00e8re : un cursus de formation destin\u00e9 au monde financier sera disponible \u00e0 partir de la rentr\u00e9e. Le but du jeu est que les personnes pass\u00e9es entre nos mains puissent \u00e0 la fois comprendre de quoi on parle en ce qui concerne le probl\u00e8me \u00e0 r\u00e9soudre, et \u00e0 quoi ressemble la boite \u00e0 outils pour s'y attaquer." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6808298675178098688,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6808298675513655296,urn:li:activity:6808298675513655296,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 5, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6808298675513655296,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6808298675513655296,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6808298675513655296", + "threadId": "activity:6808298675513655296", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6808298675513655296", + "urn": "urn:li:activity:6808298675513655296", + "numComments": 5, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6808298675513655296", + "reactionTypeCounts": [ + { + "count": 140, + "reactionType": "LIKE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6808298675513655296", + "numLikes": 164, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6808298675513655296", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 164, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6808287999638429696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6808287999638429696", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6808287999638429696)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6808287999638429696)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_truly-an-emergency-how-drought-returned-activity-6808287999638429696--sqQ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6808287999189647360", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6808287999638429696", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6808287999638429696,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6808287999638429696,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6808287999189647360", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "nVpipYl1NJu4RSxhcx4hGQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6808287999638429696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8974395393778380600", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675676992810?e=1677240000&v=beta&t=A699gZkASoT9LlmyKGTc-C7-zsQFxGGMSrdHrrpm1HQ", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675676992810?e=1677240000&v=beta&t=WxQawMmovsOmj4GPOmyF87RWkPfsw12YSFk-oIYeHS4", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675676992811?e=1677240000&v=beta&t=sM19H0mrJX4PtsWaHG66kIhj6aRj3CzuroeK4LXXLPc", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675676992811?e=1677240000&v=beta&t=192RrNwOpt3HvLWEsD49dLz-C94EQmVr42GFQiDRePY", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGtC0SnrtOGAg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8974395393778380600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8974395393778380600)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u2018Truly an emergency\u2019: how drought returned to California \u2013 and what lies ahead by theguardian.com", + "actionTarget": "https://www.theguardian.com/us-news/2021/jun/07/california-drought-oregon-west-climate-change" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u2018Truly an emergency\u2019: how drought returned to California \u2013 and what lies ahead" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6808287999189647360,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Avant on disait \"\u00e9t\u00e9\". Avec le r\u00e9chauffement climatique, on dira de plus en plus \"canicule\" et \"s\u00e9cheresse\". La Californie, qui avait d\u00e9j\u00e0 un peu d\u00e9fray\u00e9 la chronique l'ann\u00e9e derni\u00e8re avec des feux de for\u00eat in\u00e9dits, fait l'objet d'une \"urgence s\u00e9cheresse\" dans 41 des 58 cont\u00e9s depuis fin mai, avec des r\u00e9servoirs d'eau qui sont \u00e0 des niveaux exceptionnellement bas et quelques raisons de se faire des cheveux blancs (ou br\u00fbl\u00e9s !) pour les mois \u00e0 venir.\n\nL'Allemagne conna\u00eet \u00e9galement une situation tendue concernant l'eau (https://lnkd.in/d7TP-Nu ), apr\u00e8s 2 ann\u00e9es tr\u00e8s s\u00e8ches, comme en France.\n\nLa province du Guangdong, en Chine, voit pour sa part son r\u00e9seau \u00e9lectrique souffrir, \u00e0 cause d'une saison des pluies qui a eu du retard (moins d'hydro\u00e9lectricit\u00e9) et de temp\u00e9ratures \u00e9lev\u00e9es (plus d'air conditionn\u00e9) : https://lnkd.in/dP9isxu\n\nAlors que l'eau, c'est la vie, tout cela va malheureusement s'aggraver aux moyennes latitudes quoi que nous fassions, \u00e0 cause de la structure et de l'inertie du changement climatique. Dans notre pays, s'adapter du moins mal possible \u00e0 ce qui nous attend prendra 2 g\u00e9n\u00e9rations, en outre \u00e0 moyens d\u00e9croissants \u00e0 cause de ce qui va se passer sur l'\u00e9nergie. Nous savons que ca va nous tomber dessus, nous savons quoi dans les grandes lignes, mais nous ne nous en occupons pas plus que ca... Nous sommes en train de rejouer le coup du covid, en bien pire !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6808287999189647360,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6808287999638429696,urn:li:activity:6808287999638429696,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 94, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6808287999638429696,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6808287999638429696,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6808287999638429696", + "threadId": "activity:6808287999638429696", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6808287999638429696", + "urn": "urn:li:activity:6808287999638429696", + "numComments": 247, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6808287999638429696", + "reactionTypeCounts": [ + { + "count": 1382, + "reactionType": "LIKE" + }, + { + "count": 218, + "reactionType": "INTEREST" + }, + { + "count": 174, + "reactionType": "MAYBE" + }, + { + "count": 30, + "reactionType": "APPRECIATION" + }, + { + "count": 27, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6808287999638429696", + "numLikes": 1833, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6808287999638429696", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1833, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6808062024623366144,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6808062024623366144", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6808062024623366144)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6808062024623366144)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_transports-publics-difficile-de-faire-revenir-activity-6808062024623366144-q_ck?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6808062024258469888", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6808062024623366144", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6808062024623366144,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6808062024623366144,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6808062024258469888", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "5Hfu5BfMtmi9TzaINfwH4w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6808062024623366144,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8099236875412879110", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675866398886?e=1677240000&v=beta&t=EwqM8_F_fh3TkXHifCJ0ZqzqGWcPujelGvAhkRscUl0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675866398886?e=1677240000&v=beta&t=_KSjC6OR_C7vhzh0QrYMMBNcC3KCfMKiGLYVp1pJnz8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675866398886?e=1677240000&v=beta&t=nCO0V-SzFxpMKU3zhxCqNiO5QqzPL3L3yfcQnsBDQ3k", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675866398886?e=1677240000&v=beta&t=RO_VGZeli5wfi979UpKx-1mtQP8FpS1Sr66IweUcNJw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQG_ZMFSdxRfzw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8099236875412879110)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8099236875412879110)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Transports publics : difficile de faire revenir les usagers by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/thema/ecomobilites-2021/transports-publics-difficile-de-faire-revenir-les-usagers-1321576" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Transports publics\u00a0: difficile de faire revenir les usagers" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6808062024258469888,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Alors que les bouchons recommencent \u00e0 se porter aussi bien qu'avant le confinement, en tous cas au moins \u00e0 Paris (https://lnkd.in/gQY44iF ), les transports en commun, eux, sont loin d'avoir retrouv\u00e9 leur niveau d'avant covid.\n\nCertes, une partie des gens qui ne prennent plus le bus, le tram et le m\u00e9tro utilisent le v\u00e9lo (question carbone c'est aussi bien), la marche \u00e0 pied (c'est mieux), ou la trottinette (c'est moins bien), mais aussi... la voiture (et l\u00e0 c'est beaucoup moins bien pour le climat, m\u00eame si elle est \u00e9lectrique).\n\nA ce sujet de court terme - qui est que les habitants des grandes villes se d\u00e9tournent de ce qui leur \u00e9viterait pourtant le plus de futurs ennuis, climatiques ceux-l\u00e0 - va s'en ajouter un autre : si le t\u00e9l\u00e9travail se g\u00e9n\u00e9ralise, les grandes villes pourraient perdre de la population. A terme, cela contractera la base de client\u00e8le pour ces m\u00eames transports en commun. Difficile \u00e9quation..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6808062024258469888,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6808062024623366144,urn:li:activity:6808062024623366144,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 51, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6808062024623366144,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6808062024623366144,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6808062024623366144", + "threadId": "activity:6808062024623366144", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6808062024623366144", + "urn": "urn:li:activity:6808062024623366144", + "numComments": 108, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6808062024623366144", + "reactionTypeCounts": [ + { + "count": 346, + "reactionType": "LIKE" + }, + { + "count": 86, + "reactionType": "MAYBE" + }, + { + "count": 38, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6808062024623366144", + "numLikes": 479, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6808062024623366144", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 479, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6807919875449729024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6807919875449729024", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6807919875449729024)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6807919875449729024)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_taxe-carbone-comment-bruxelles-veut-taxer-activity-6807919875449729024-UUB1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6807919874715742208", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6807919875449729024", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6807919875449729024,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6807919875449729024,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6807919874715742208", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "3R7aHbtt64iOz23+6et3RA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6807919875449729024,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8118964309111723160", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675657586434?e=1677240000&v=beta&t=DybLYpVKLn9esd_Ltj0P87_KjH9HYPkDclGyFoQ5lPI", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675657586434?e=1677240000&v=beta&t=gI7FpVrh5vn0KXdAEHpIS0FelhtQEs9pCVWmDKQjHi4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675657586434?e=1677240000&v=beta&t=NOyO9jNZMFvtOoqIIe7mLMRCekYei3Qtqdz7d6WPBJI", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675657586434?e=1677240000&v=beta&t=pfQZjNmZgORVEKIyBXDCL6AsnbVS9-ObysZ5_6OU6jw", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHDP0SZNjzJJA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8118964309111723160)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8118964309111723160)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Taxe carbone : comment Bruxelles veut taxer les importations \u00e0 compter de 2023 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/monde/europe/taxe-carbone-comment-bruxelles-veut-taxer-les-importations-a-compter-de-2023-1320972" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Taxe carbone\u00a0: comment Bruxelles veut taxer les importations \u00e0 compter de 2023" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6807919874715742208,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Depuis le temps que l'on en parle (presque 20 ans !), l'Europe d\u00e9cide finalement de cr\u00e9er une taxe carbone aux fronti\u00e8res. Ce dispositif peut prendre plusieurs formes, mais le plus simple est de faire comme avec la TVA : les produits import\u00e9s sont tax\u00e9s \u00e0 la hauteur du cout des \u00e9missions qu'ils auraient eu \u00e0 inclure dans les charges s'ils avaient \u00e9t\u00e9 fabriqu\u00e9s en Europe, et \u00e0 l'inverse les produits export\u00e9s sont \"d\u00e9tax\u00e9s\" au passage de la fronti\u00e8re pour se retrouver \u00e0 parit\u00e9 sur le march\u00e9 mondial avec des produits fabriqu\u00e9s dans des zones sans contrainte sur les \u00e9missions.\n\nComme il est difficile de calculer de mani\u00e8re diff\u00e9renci\u00e9e le contenu carbone pour chaque produit manufactur\u00e9 complexe (une voiture, un meuble ou m\u00eame un plat d\u00e9j\u00e0 pr\u00e9par\u00e9) sans disposer d'informations pr\u00e9cises de la part du producteur et de toute sa chaine de valeur, il est logique que dans un premier temps cette taxe aux fronti\u00e8res s'applique \u00e0 des produits de base (ciment, acier...), qui ne demandent pas d'assemblage de composants produits un peu partout, et qui font l'objet de processus de fabrication assez standard, donc avec des \u00e9missions qui se calculent plus facilement.\n\nDans le cadre des trait\u00e9s en vigueur sur le commerce, il n'est pas possible de discriminer dans un pays adh\u00e9rent au trait\u00e9 la vente d'un produit en fonction de son lieu de fabrication. Mais en fonction de son empreinte carbone, oui. R\u00e9glementer le commerce mondial \u00e0 partir de l'empreinte carbone des produits est donc une voie potentiellement int\u00e9ressante \u00e0 creuser pour agir dans le bon sens sur ce sujet difficile (les \u00e9changes internationaux)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6807919874715742208,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6807919875449729024,urn:li:activity:6807919875449729024,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 75, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6807919875449729024,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6807919875449729024,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6807919875449729024", + "threadId": "activity:6807919875449729024", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6807919875449729024", + "urn": "urn:li:activity:6807919875449729024", + "numComments": 106, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6807919875449729024", + "reactionTypeCounts": [ + { + "count": 2097, + "reactionType": "LIKE" + }, + { + "count": 147, + "reactionType": "PRAISE" + }, + { + "count": 144, + "reactionType": "INTEREST" + }, + { + "count": 120, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "EMPATHY" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6807919875449729024", + "numLikes": 2544, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6807919875449729024", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2544, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6807592496923717633,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6807592496923717633", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6807592496923717633)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6807592496923717633)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_offre-data-engineer-carbone-4-activity-6807592496923717633-82Dz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6807592496542056448", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6807592496923717633", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6807592496923717633,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6807592496923717633,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6807592496542056448", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "rh6YTvNjsvnQnYmP7WKG0A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6807592496923717633,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9179765802160680475", + "swapTitleAndSubtitle": false, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9179765802160680475)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9179765802160680475)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Offre - Data Engineer - Carbone 4 by carbone4.com", + "actionTarget": "http://www.carbone4.com/offre-data-engineer/" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Le d\u00e9r\u00e8glement climatique aura des cons\u00e9quences majeures sur l\u2019activit\u00e9 de toutes les entreprises, induisant des modifications profondes de leurs profils de risque. Le secteur financier cherche aujourd\u2019hui \u00e0 comprendre et int\u00e9grer ces enjeux. Le..." + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Offre - Data Engineer - Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6807592496542056448,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A l'\u00e8re du digital, chacun cherche non plus son chat, mais son data engineer. Carbone 4 n'y fait pas exception, et nous sommes donc en qu\u00eate de notre mouton num\u00e9rique \u00e0 5 pattes. Tout ce que nous souhaitons (et le reste) est normalement mentionn\u00e9 dans l'annonce ci-dessous.\n\nNB : les autres offres publi\u00e9es sont disponibles sur :\nhttps://lnkd.in/dgMQJaV pour Carbon 4 Finance\nhttps://lnkd.in/dwpjQ7N pour la partie \"autre\" (conseil, formation, MyCO2, fonctions transverses)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6807592496542056448,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6807592496923717633,urn:li:activity:6807592496923717633,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 11, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6807592496923717633,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6807592496923717633,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6807592496923717633", + "threadId": "activity:6807592496923717633", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6807592496923717633", + "urn": "urn:li:activity:6807592496923717633", + "numComments": 16, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6807592496923717633", + "reactionTypeCounts": [ + { + "count": 145, + "reactionType": "LIKE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6807592496923717633", + "numLikes": 156, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6807592496923717633", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 156, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6807559605929947136,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6807559605929947136", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6807559605929947136)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6807559605929947136)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_webinar-quelle-sera-la-place-des-mat%C3%A9riaux-activity-6807559605929947136-_-We?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6807559605493764096", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6807559605929947136", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6807559605929947136,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6807559605929947136,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6807559605493764096", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "eW5zUju+MOk6KRKvxcQmyA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6807559605929947136,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8044058392170682501", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1623048336433?e=1677240000&v=beta&t=yXie-aLRZluyqr6uRrp_ctP9ggKJ0Zdi12-KWTCT0MI", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1623048336433?e=1677240000&v=beta&t=EbYYLEjHS9QbBYV_Pw_QKigZd73SJlr6Klbm3HIB-Ag", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1623048336433?e=1677240000&v=beta&t=sW6MCCnRk7w9NFWITp8Bdp0NzfIGIQ1tNE_GQ9Rwixg", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1623048336433?e=1677240000&v=beta&t=oXFlpS4dYmgF2_u0QvID-Mp14UDkBQaqKJkgT43ChsY", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFWUw8VsD3jFA/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8044058392170682501)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8044058392170682501)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Webinar : Quelle sera la place des mat\u00e9riaux biosourc\u00e9s dans la construction \u00e0 horizon 2030 ? - Carbone 4 by carbone4.com", + "actionTarget": "http://www.carbone4.com/webinar-hub-materieux-biosources/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Webinar : Quelle sera la place des mat\u00e9riaux biosourc\u00e9s dans la construction \u00e0 horizon 2030 ? - Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6807559605493764096,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le b\u00e9ton et l'acier, qui sont \u00e0 la base de la construction \"moderne\", c'est plein de carbone. Du reste, \u00e0 l'\u00e9chelle mondiale, le ciment c'est 7% des \u00e9missions plan\u00e9taires (les voitures 6%) et l'acier 4% environ (comme la flotte mondiale de camions). \n\nOn ne parle donc pas de cacahu\u00e8tes, et pour les remplacer tout le monde songe aux mat\u00e9riaux biosourc\u00e9s. Mais voil\u00e0 : cela consiste \u00e0 remplacer du sous-sol (les mines de fer, de charbon, et les gisements de calcaire) par du sol (n\u00e9cessaire pour faire pousser bois et fibres). Y aura-t-il assez de sol pour remplacer tout ce qui ne nous convient pas dans un monde qui se d\u00e9carbone par du \"naturel\", sans limiter les volumes construits ?\n\nA l'horizon 2030, il n'y a \u00e9videmment pas que cela comme facteur limitant : il faut aussi des comp\u00e9tences, des fili\u00e8res, des techniques comptables qui soient adapt\u00e9es (savoir si le bois est un puits ou une source de carbone est un exercice complexe), etc. \n\nLe Hub des Prescripteurs Bas Carbone (https://lnkd.in/dj7GQyE) vous propose d'en d\u00e9battre le 29 juin prochain, dans l'apr\u00e8s-midi, au cours d'un webinaire. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6807559605493764096,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6807559605929947136,urn:li:activity:6807559605929947136,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 113, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6807559605929947136,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6807559605929947136,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6807559605929947136", + "threadId": "activity:6807559605929947136", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6807559605929947136", + "urn": "urn:li:activity:6807559605929947136", + "numComments": 172, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6807559605929947136", + "reactionTypeCounts": [ + { + "count": 1133, + "reactionType": "LIKE" + }, + { + "count": 141, + "reactionType": "MAYBE" + }, + { + "count": 112, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "EMPATHY" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6807559605929947136", + "numLikes": 1404, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6807559605929947136", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1404, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6807234353861550080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6807234353861550080", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6807234353861550080)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6807234353861550080)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_l%C3%A9nergie-et-larm%C3%A9e-cest-une-tr%C3%A8s-tr%C3%A8s-activity-6807234353861550080-S-Wl?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:ugcPost:6807234353425354752", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6807234353861550080", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6807234353861550080,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6807234353861550080,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:ugcPost:6807234353425354752", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "36yQ+R/tmPYd9z0XunyFYQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6807234353861550080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.EventComponent": { + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "Event by \u00c9cole de Guerre" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 0, + "length": 1, + "artDecoIcon": "IC_VIDEO_CAMERA_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": " Online" + }, + "navigationContext": { + "trackingActionType": "viewEvent", + "accessibilityText": "View event: Colloque du comit\u00e9 Environnement et s\u00e9curit\u00e9 ", + "actionTarget": "https://www.linkedin.com/events/colloqueducomit-environnementet6805124646120243201/" + }, + "logo": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFESSIONAL_EVENT_LOGO", + "professionalEventId": 6805124646120243201, + "vectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "400_400/0/1630999509032?e=1677240000&v=beta&t=yRZ663moWbPiQmRjahYP_k80E8A8LCBy7T7xuDYj_3k", + "expiresAt": 1677240000000, + "height": 200 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1630999509032?e=1677240000&v=beta&t=epuj-gIEQS7lBBCm-kH7urpES79H7fea98l3K6NvKhc", + "expiresAt": 1677240000000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1630999509032?e=1677240000&v=beta&t=ZygQ2ufw2RDRCvXEa1RoM20lWbaV-Qln_HYvhX76K34", + "expiresAt": 1677240000000, + "height": 100 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4D1EAQFXoEmZ8LvlFA/event-logo-shrink_" + } + } + ] + }, + "banner": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:D4D1EAQFvDFeKmJl1IA", + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "shrink_200_800/0/1622468146973?e=1677240000&v=beta&t=sn496-R3AIzGzqK70aEQi07V0Hs9RAtzTS5_yVu0tFQ", + "expiresAt": 1677240000000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "shrink_350_1400/0/1622468146973?e=1677240000&v=beta&t=mWu5tP77EKqs2O15hP8LnB_FnhvL9jIcX9J2yyjpiw0", + "expiresAt": 1677240000000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4D1EAQFvDFeKmJl1IA/event-background-image-" + }, + "displayAspectRatio": 0.25 + } + ] + }, + "title": { + "textDirection": "USER_LOCALE", + "text": "Colloque du comit\u00e9 Environnement et s\u00e9curit\u00e9 " + }, + "insightText": { + "textDirection": "USER_LOCALE", + "text": "238 attendees" + }, + "titleContext": { + "textDirection": "USER_LOCALE", + "text": "Mon, Jun 14, 2021, 9:00 AM - 6:00 PM CEST" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:ugcPost:6807234353425354752,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'\u00e9nergie et l'arm\u00e9e, c'est une tr\u00e8s tr\u00e8s vieille histoire. Le charbon et le p\u00e9trole ont \u00e9t\u00e9 \u00e0 la fois une cause de conflits (pour sa propri\u00e9t\u00e9), et un d\u00e9terminant majeur de la puissance militaire (charbon -> acier, donc les canons et engins de combat ; p\u00e9trole -> moteurs, donc la mobilit\u00e9 et la puissance).\n\nL'environnement et l'arm\u00e9e, aussi. Le d\u00e9faut de ressources alimentaires ou musculaires ont souvent conduit des groupes d'humains - et donc parfois des pays - \u00e0 aller voir ailleurs pour s'en procurer (pillages, occupations, esclavage...).\n\nQue l'Ecole de Guerre fasse un colloque sur \"environnement et s\u00e9curit\u00e9\" n'est donc qu'un retour aux sources. Ca sera le 14 juin prochain et votre serviteur y participera durant la matin\u00e9e. Programme disponible sur le lien du colloque !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:ugcPost:6807234353425354752,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:ugcPost:6807234353425354752,urn:li:ugcPost:6807234353425354752,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 10, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:ugcPost:6807234353425354752,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:ugcPost:6807234353425354752,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:ugcPost:6807234353425354752", + "threadId": "ugcPost:6807234353425354752", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:ugcPost:6807234353425354752", + "urn": "urn:li:ugcPost:6807234353425354752", + "numComments": 34, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:ugcPost:6807234353425354752", + "reactionTypeCounts": [ + { + "count": 152, + "reactionType": "LIKE" + }, + { + "count": 18, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:ugcPost:6807234353425354752", + "numLikes": 186, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:ugcPost:6807234353425354752", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 186, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6806876571685683200,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6806876571685683200", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6806876571685683200)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6806876571685683200)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_en-france-lespluies-demai-permettront-elles-activity-6806876571685683200-r89F?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6806876571169763328", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6806876571685683200", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6806876571685683200,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6806876571685683200,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6806876571169763328", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "9DCCQvpDf3M3tLLNCJIDgQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6806876571685683200,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7122649564684005186", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676518606475?e=1677240000&v=beta&t=PeV98hmDI4J42Lw0S5RqaHTnC5WNHhSyY-OyQmxAd4c", + "expiresAt": 1677240000000, + "height": 394 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676518606476?e=1677240000&v=beta&t=sPU_onYntR-SdOItiR6ULUJmU-4z43E9vkSc_0oGa4c", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676518606476?e=1677240000&v=beta&t=DZJqJSUg7KiFDQWgtXrx6ZzmFhNIpoXxj5whnFYAk3w", + "expiresAt": 1677240000000, + "height": 78 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676518606476?e=1677240000&v=beta&t=qVPUfIJdELKAhJQOIMWyQWlcBY37-tlijKUnVfNf04s", + "expiresAt": 1677240000000, + "height": 236 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFQ62ZjiFTNUw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7122649564684005186)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7122649564684005186)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theconversation.com \u2022 8 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: En France, les pluies de mai permettront-elles de mieux affronter la s\u00e9cheresse estivale ? by theconversation.com", + "actionTarget": "https://theconversation.com/en-france-les-pluies-de-mai-permettront-elles-de-mieux-affronter-la-secheresse-estivale-161482" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "En France, les\u00a0pluies de\u00a0mai permettront-elles de mieux affronter la\u00a0s\u00e9cheresse estivale\u00a0?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6806876571169763328,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 828, + "length": 14, + "miniProfile": { + "firstName": "Violaine", + "lastName": "Bault", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACpFxDIBnf5MAICsrkEQQOP2vqI6X7eCULA", + "occupation": "Hydrog\u00e9ologue chez BRGM", + "objectUrn": "urn:li:member:709215282", + "entityUrn": "urn:li:fs_miniProfile:ACoAACpFxDIBnf5MAICsrkEQQOP2vqI6X7eCULA", + "publicIdentifier": "violaine-bault-616621179", + "trackingId": "OjKWdI6oToaZJSvCVZ62NQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "L'eau, c'est la vie. La pluie a beau rendre moroses les pr\u00e9sentateurs m\u00e9t\u00e9o, et \u00eatre gratuite dans les bilans des entreprises, sans elle nous ne serions pas l\u00e0 pour nous plaindre du temps maussade ou des exportations qui ne sont pas au niveau.\n\nNotre pays a connu un d\u00e9ficit tr\u00e8s important de pr\u00e9cipitations \u00e0 la fin de l'hiver et au d\u00e9but du printemps (mars et avril), conduisant une fraction significative du pays a d\u00e9marrer le mois de mai avec des nappes phr\u00e9atiques ayant un niveau \"mod\u00e9r\u00e9ment bas \u00e0 tr\u00e8s bas\", \u00e9crit le BRGM : https://lnkd.in/dRdE9kd\n\nL'eau tomb\u00e9e - opportun\u00e9ment - en mai permet-elle un \"retour \u00e0 la normale\" avant de d\u00e9marrer la saison estivale, plus s\u00e8che que le reste de l'ann\u00e9e ? M\u00eame si ces pr\u00e9cipitations sont plus que bienvenues, cela ne suffira pas \u00e0 remplacer les pr\u00e9cipitations d'hiver, explique Violaine Bault (qui r\u00e9dige le bulletin mensuel de situation des nappes pour le BRGM justement), dans cet int\u00e9ressant \"comment ca marche\" sur l'infiltration d'eau dans les nappes en fonction des saisons et de la g\u00e9ologie.\n\nRappelons que les projections climatiques concernant le sud de l'Europe (France et plus au sud) concluent \u00e0 un ass\u00e8chement \u00e0 venir des sols dans le cadre du r\u00e9chauffement global. Des sols propices aux v\u00e9g\u00e9taux parce que suffisamment humides sont gratuits dans le monde \u00e9conomique (et absents des bulletins m\u00e9t\u00e9o), mais leur absence ne serait pas pour autant sans cons\u00e9quences..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6806876571169763328,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6806876571685683200,urn:li:activity:6806876571685683200,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 37, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6806876571685683200,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6806876571685683200,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6806876571685683200", + "threadId": "activity:6806876571685683200", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6806876571685683200", + "urn": "urn:li:activity:6806876571685683200", + "numComments": 70, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6806876571685683200", + "reactionTypeCounts": [ + { + "count": 845, + "reactionType": "LIKE" + }, + { + "count": 107, + "reactionType": "INTEREST" + }, + { + "count": 93, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6806876571685683200", + "numLikes": 1065, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6806876571685683200", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1065, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6806472123213721600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6806472123213721600", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6806472123213721600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6806472123213721600)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_organizing-the-transition-changenow-2021-activity-6806472123213721600-hsJC?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6806472122777534464", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6806472123213721600", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6806472123213721600,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6806472123213721600,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6806472122777534464", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "YQyshBus7DWHe/xnjB3/Sg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6806472123213721600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8705743011642460061", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676298014322?e=1677240000&v=beta&t=pN5kszGqEI0FqsL2-9L1oiMMEmAwS3lXTcLvep0UHiY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676298014322?e=1677240000&v=beta&t=5PL37LB7iqoWrCQAj2iwPcVmJXFq1gTGkLYKqMgOBEE", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676298014323?e=1677240000&v=beta&t=-ar9Yw7ovuuTDJ3BSLjZzW9YCkv_uiTnR17nPSAWX_w", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676298014323?e=1677240000&v=beta&t=Oogmltd4Q_hHY3DKv3ZLRpFs5Bz-yUnI0Bvl2ubtrwc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQH3Up0fuh-_eg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8705743011642460061)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8705743011642460061)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Organizing the Transition - ChangeNOW 2021 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=5-Use-9c-sk" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "ChangeNOW is the world\u2019s largest event for the planet. Relive this session of the 2021 edition! Organizing The Transition with Jean-Marc Jancovici (President, The Shift Project), Jess Scully (Deputy Lord Mayor, City of Sydney), Katarina Luhr (Vice..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Organizing the Transition - ChangeNOW 2021" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 81, + "length": 17, + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "kkih8xH4QXqYte6AMSvd2w==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "During the online event \"Change Now\", I made a presentation of the objectives of The Shift Project - going low carbon for real, basically - and what we try to achieve with this think tank.\n\nThe sound is not that good, the resolution can be lowered to 144 or 240 p (no need for HD to see a face and a wall !), but I hope that it will provide a couple of useful insights for those that want to understand better the paradox that we have to solve when we discuss decarbonizing (?) our economy." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6806472123213721600,urn:li:activity:6806472123213721600,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 3, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6806472123213721600,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6806472123213721600,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6806472123213721600", + "threadId": "activity:6806472123213721600", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6806472123213721600", + "urn": "urn:li:activity:6806472123213721600", + "numComments": 3, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6806472123213721600", + "reactionTypeCounts": [ + { + "count": 95, + "reactionType": "LIKE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6806472123213721600", + "numLikes": 108, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6806472123213721600", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 108, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6806251207322034176,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6806251207322034176", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6806251207322034176)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6806251207322034176)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-project-recrute-une-office-manager-activity-6806251207322034176-E5gP?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6806251207003250688", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6806251207322034176", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6806251207322034176,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6806251207322034176,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6806251207003250688", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "v+P39MuD1ETDS9mluVD8Xg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6806251207322034176,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8599669946463420114", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675985649658?e=1677240000&v=beta&t=_GLd70IqBH-JGE97xKLZT24cEEuz_rpLXnpqMjck9D0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675985649658?e=1677240000&v=beta&t=2vrPxF4sq3eGZ1J8scVjGwt3vGeKjy2AgXyutScNz_o", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675985649658?e=1677240000&v=beta&t=QZ1bji_QX4LE60OfsdWf1OOljG8ElGtP8HxvWi2AwOE", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675985649658?e=1677240000&v=beta&t=oO8e_URPOFkMNO9pseky8urM6bqeuHCBhIc-5OaPM68", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGb4Zn3a1MOPg/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8599669946463420114)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8599669946463420114)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift Project recrute un.e Office Manager (CDI) by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/shift-recrute-office-manager-cdi/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift Project recrute un.e Office Manager (CDI)" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6806251207003250688,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pour \u00e9viter de v\u00e9rifier l'adage que les cordonniers sont toujours les plus mal chauss\u00e9s, The Shift Project cherche la perle rare qui va l'aider \u00e0 ce que ses propres dossiers soient \u00e0 peu pr\u00e8s correctement tenus :).\n\nTous les d\u00e9tails dans l'offre ci-dessous !\n\n" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6806251207003250688,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6806251207322034176,urn:li:activity:6806251207322034176,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 7, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6806251207322034176,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6806251207322034176,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6806251207322034176", + "threadId": "activity:6806251207322034176", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6806251207322034176", + "urn": "urn:li:activity:6806251207322034176", + "numComments": 7, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6806251207322034176", + "reactionTypeCounts": [ + { + "count": 198, + "reactionType": "LIKE" + }, + { + "count": 8, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6806251207322034176", + "numLikes": 218, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6806251207322034176", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 218, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6806110992636944384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6806110992636944384", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6806110992636944384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6806110992636944384)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nos-voisins-britanniques-sont-connus-pour-activity-6806110992636944384-DaXT?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6806110991840030720", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6806110992636944384", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6806110992636944384,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6806110992636944384,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6806110991840030720", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "KUq5HTMcmCo2EZpPfqa7eQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6806110992636944384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEPCJNl1KmmAA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEPCJNl1KmmAA", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1622703310784?e=1679529600&v=beta&t=WlXvGhb-MNEhVAYaTIf_jdwrTLFfceWnI3vaMa6POXo", + "expiresAt": 1679529600000, + "height": 1144 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1622703311026?e=1679529600&v=beta&t=zLAOJ3FruQqvIqfzSMXXxicbzOJbRQmljGih0ioXbJo", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1622703311026?e=1679529600&v=beta&t=4oeNyD-ibIk7-p7pz3Lqq_dPfxcGa3Lh1SbIqU88jbQ", + "expiresAt": 1679529600000, + "height": 715 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1622703311026?e=1679529600&v=beta&t=thHGTg9DLl6L_MmkQENHoAKu8gewK50QIj4Z-Nn9hyI", + "expiresAt": 1679529600000, + "height": 268 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1622703311026?e=1679529600&v=beta&t=h0wZ8nzfd_WII-E-2VrLDR3KrYtoGrPCk0NOPFKzVjA", + "expiresAt": 1679529600000, + "height": 89 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1622703311026?e=1679529600&v=beta&t=9dmgC5sYCxWm5yqm798gZA1KrSjWX1KujutJd9yiXGs", + "expiresAt": 1679529600000, + "height": 447 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEPCJNl1KmmAA/feedshare-shrink_" + }, + "displayAspectRatio": 0.55859375 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6806110991840030720,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Nos voisins britanniques sont connus pour leur pragmatisme. L'antenne IPSOS de ce pays a donc effectu\u00e9 un sondage en avril dernier, dans 30 pays diff\u00e9rents (voir graphique en commentaire), pour demander \u00e0 la population de ces pays quels \u00e9taient, \u00e0 leur avis, les gestes les plus impactants pour \u00e9viter des \u00e9missions de gaz \u00e0 effet de serre. Le r\u00e9sultat a \u00e9t\u00e9 compar\u00e9 aux montants effectivement \u00e9conomis\u00e9s, tels que calcul\u00e9s dans des publications qui sont r\u00e9f\u00e9renc\u00e9es. \n\nLes 3 actions consid\u00e9r\u00e9es par la population comme les plus efficaces (recycler, avoir une voiture \u00e9lectrique, acheter de l'\u00e9lectricit\u00e9 \"verte\") ne seraient pas celles qui permettent les plus grosses \u00e9conomies, \u00e0 savoir \"avoir un enfant de moins\", \"ne pas avoir de voiture\", et \"ne pas prendre l'avion\".\n\nOn pourra discuter des valeurs affich\u00e9es en face de chaque action (par exemple \"acheter de l'\u00e9lectricit\u00e9 verte\" n'est le plus souvent qu'une convention sans impact sur la r\u00e9alit\u00e9 physique, et ne pas manger de viande est plus impactant selon les calculs de Carbone 4), mais le point central reste le bon : comment s'assurer que la population a bien en t\u00eate les ordres de grandeur, afin que son action s'oriente sur ce qui compte, et non juste sur ce qui permet de se rassurer \u00e0 court terme ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6806110991840030720,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6806110992636944384,urn:li:activity:6806110992636944384,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 85, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6806110992636944384,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6806110992636944384,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6806110992636944384", + "threadId": "activity:6806110992636944384", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6806110992636944384", + "urn": "urn:li:activity:6806110992636944384", + "numComments": 171, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6806110992636944384", + "reactionTypeCounts": [ + { + "count": 952, + "reactionType": "LIKE" + }, + { + "count": 130, + "reactionType": "INTEREST" + }, + { + "count": 114, + "reactionType": "MAYBE" + }, + { + "count": 17, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6806110992636944384", + "numLikes": 1225, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6806110992636944384", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1225, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6806107799324561408,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6806107799324561408", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6806107799324561408)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6806107799324561408)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_helsinki-bets-on-electrification-to-decarbonise-activity-6806107799324561408-oLbf?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6806107798754136064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6806107799324561408", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6806107799324561408,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6806107799324561408,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6806107798754136064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "fjqhHqMFul4Ui0MyWzxs9Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6806107799324561408,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8591915621078671146", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675808491982?e=1677240000&v=beta&t=IZLK8rUm0yT7h-SE1XHQEXZHeqpbHyK6QLkrH6RyjiM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675808491982?e=1677240000&v=beta&t=JqYBSDnCzO1iMbCqLfw5LcfywEhXmxb0yHVfTYSgL5U", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675808491982?e=1677240000&v=beta&t=z60_-i30iufd2CdT5eJ4kG9jy8F5LeqBnNBTG6fRxdI", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675808491983?e=1677240000&v=beta&t=jjw5v7RiKL8UIWvN1uEmElmjBBe60f_HhG-wtLGvGQ8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHoXhY7_Tv2eA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8591915621078671146)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8591915621078671146)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "euractiv.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Helsinki bets on electrification to decarbonise heating by euractiv.com", + "actionTarget": "https://www.euractiv.com/section/energy/news/helsinki-bets-on-electrification-to-decarbonise-heating/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Helsinki bets on electrification to decarbonise heating" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6806107798754136064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Selon Euractiv, le chauffage urbain d'Helsinki, auquel 90% des immeubles de la ville sont connect\u00e9s, fonctionne essentiellement au gaz et au charbon. La ville a donc lanc\u00e9 un concours, dot\u00e9 d'un prix de 1 million d'euros, pour disposer de propositions pour d\u00e9carboner ce chauffage urbain. Condition impos\u00e9e : ne pas recourir \u00e0 la biomasse, consid\u00e9r\u00e9e comme \"non durable\" pour cet usage (consid\u00e9ration qui s'argumente solidement).\n\nC'est la pompe \u00e0 chaleur (PAC) qui tient le haut du pav\u00e9 dans la solution gagnante. Cette derni\u00e8re peut \u00eatre utilis\u00e9e en t\u00eate de r\u00e9seau pour fournir de la chaleur haute temp\u00e9rature, notamment si elle est associ\u00e9e \u00e0 de la g\u00e9othermie moyenne ou profonde. Incidemment cette technique peut aussi contribuer \u00e0 d\u00e9carboner la production de chaleur dans l'industrie (mais ce n'est pas le propos d'Euractiv) en rempla\u00e7ant des combustibles fossiles.\n\nLa PAC peut aussi \u00eatre utilis\u00e9e dans les b\u00e2timents de la ville, seule ou en compl\u00e9ment avec le r\u00e9seau de chaleur urbain. Ces PAC demandent de l'\u00e9lectricit\u00e9, qui doit \u00eatre d\u00e9carbon\u00e9e. 20% des \u00e9lectrons finlandais viennent de combustibles fossiles (surtout du gaz), mais nucl\u00e9aire et ENR doivent les remplacer \u00e0 terme (un nouveau r\u00e9acteur a \u00e9t\u00e9 command\u00e9 \u00e0 Rosatom apr\u00e8s les p\u00e9rip\u00e9ties d'Areva)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6806107798754136064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6806107799324561408,urn:li:activity:6806107799324561408,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 30, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6806107799324561408,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6806107799324561408,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6806107799324561408", + "threadId": "activity:6806107799324561408", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6806107799324561408", + "urn": "urn:li:activity:6806107799324561408", + "numComments": 49, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6806107799324561408", + "reactionTypeCounts": [ + { + "count": 502, + "reactionType": "LIKE" + }, + { + "count": 47, + "reactionType": "MAYBE" + }, + { + "count": 46, + "reactionType": "INTEREST" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6806107799324561408", + "numLikes": 614, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6806107799324561408", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 614, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6805920503694422017,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6805920503694422017", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6805920503694422017)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6805920503694422017)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-march%C3%A9-europ%C3%A9en-du-carbone-%C3%A0-un-tournant-activity-6805920503694422017-9gGl?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6805920503144968192", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6805920503694422017", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6805920503694422017,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6805920503694422017,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6805920503144968192", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "1wZaQAfYGcrZQv7wG7BEMQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6805920503694422017,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8544555342066880850", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675935583383?e=1677240000&v=beta&t=v7J1gRRDv9feBdWXLu5UtrqBpmPTlhzQRkd7vzBqvkQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675935583383?e=1677240000&v=beta&t=iL5o8pnkkYwIXtH3X6-2dZ9J6M91Rh7FNXzQ4m_8SGs", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675935583383?e=1677240000&v=beta&t=KdmJDHz6ibwRD2ggpH_7ol-ce0S0jX21y0CKRYEqQsY", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675935583383?e=1677240000&v=beta&t=wa8ZhMACfO94APAYQCBdodaoPfnV3wI5WnH_78u50Pk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEjzjErQwmFvw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8544555342066880850)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8544555342066880850)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le march\u00e9 europ\u00e9en du carbone \u00e0 un tournant de son histoire by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/le-marche-europeen-du-carbone-a-un-tournant-de-son-histoire-1319209" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le march\u00e9 europ\u00e9en du carbone \u00e0 un tournant de son histoire" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6805920503144968192,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le syst\u00e8me europ\u00e9en des quotas n\u00e9gociables (qui ne comprend pas qu'un march\u00e9) a \u00e9t\u00e9 cr\u00e9\u00e9 en 2005. A cette \u00e9poque, il devait \u00eatre le \"fer de lance\" de la baisse des \u00e9missions de gaz \u00e0 effet de serre en Europe. 16 ans plus tard, force est de constater que son r\u00f4le dans la baisse (modeste) de nos \u00e9missions n'a pas \u00e9t\u00e9 \u00e0 la hauteur des discours qui ont pr\u00e9c\u00e9d\u00e9 son entr\u00e9e en vigueur.\n\nRappelons que ce syst\u00e8me n'est pas qu'un march\u00e9 : un quota est avant tout une autorisation administrative d'\u00e9mettre, qui se trouve \u00eatre \u00e9changeable, donc non nominative. Si un assujetti en a plus que ce qui est n\u00e9cessaire, il peut donc le vendre \u00e0 un autre qui en a besoin. C'est le prix de cette vente qui s'appelle \"le prix du quota\", mais tous les assujettis ne les ont pas tous achet\u00e9s \u00e0 ce prix l\u00e0 ! Il y a des attributions gratuites, ou aux ench\u00e8res mais \u00e0 adjug\u00e9es plus bas.\n\nD\u00e9sormais, la tonne de CO2 \"du march\u00e9\" s'\u00e9change \u00e0 50 euros. Est-ce le signe que la r\u00e9demption carbonique est en vue ? Les volumes concern\u00e9s et ce prix sont suffisants pour permettre quelques am\u00e9liorations ici et l\u00e0, mais 50 euros reste inf\u00e9rieur d'un facteur 100 \u00e0 ce qui serait n\u00e9cessaire pour totalement d\u00e9carboner l'\u00e9conomie par les seuls m\u00e9canismes de march\u00e9. La r\u00e9glementation sera souvent bien plus rapide !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6805920503144968192,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6805920503694422017,urn:li:activity:6805920503694422017,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 15, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6805920503694422017,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6805920503694422017,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6805920503694422017", + "threadId": "activity:6805920503694422017", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6805920503694422017", + "urn": "urn:li:activity:6805920503694422017", + "numComments": 28, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6805920503694422017", + "reactionTypeCounts": [ + { + "count": 280, + "reactionType": "LIKE" + }, + { + "count": 28, + "reactionType": "INTEREST" + }, + { + "count": 22, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6805920503694422017", + "numLikes": 339, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6805920503694422017", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 339, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6805578693507858432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:member:15992566", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Marie-Anne", + "lastName": "Vincent", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw", + "occupation": "VP Climate Finance @ Sweep | Enabling financial actors to understand, manage and reduce their carbon footprint.", + "objectUrn": "urn:li:member:15992566", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1667827949672?e=1681948800&v=beta&t=7yYdaTz_a3DmqNp7FKluOlsGnSBXY1yBzY5OHnyTeaM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1667827949672?e=1681948800&v=beta&t=H3aOP7OGYaN9j1u0MC_OZUnqgQ6SeyaHmuSNN-PJid8", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQG8R9igqTSwLg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "marie-anne-vincent", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1667827927766?e=1681948800&v=beta&t=ZJdEuXlS4A7vLm3z9AZFYH4-YWV7ZNtH41Fb0qilBUw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1667827927766?e=1681948800&v=beta&t=5E3d7pbdgf2MEpt-JeIipWUXRz6SYPJT1ovf9ix4qsM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1667827927766?e=1681948800&v=beta&t=R-8UpuFa0bsGnTtSzn2JvW3VvYa402eoxTg8riN0c0g", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1667827927766?e=1681948800&v=beta&t=DYHPS2Zf0PGTIiMwDGpBcVQscKhvXl8eY0tcmcLZSc0", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQGyKiQ41V_Sew/profile-displayphoto-shrink_" + } + }, + "trackingId": "NihBaqHtQoGt+UuUSNE2jA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 3rd+" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 18, + "miniProfile": { + "firstName": "Marie-Anne", + "lastName": "Vincent", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw", + "occupation": "VP Climate Finance @ Sweep | Enabling financial actors to understand, manage and reduce their carbon footprint.", + "objectUrn": "urn:li:member:15992566", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1667827949672?e=1681948800&v=beta&t=7yYdaTz_a3DmqNp7FKluOlsGnSBXY1yBzY5OHnyTeaM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1667827949672?e=1681948800&v=beta&t=H3aOP7OGYaN9j1u0MC_OZUnqgQ6SeyaHmuSNN-PJid8", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQG8R9igqTSwLg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "marie-anne-vincent", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1667827927766?e=1681948800&v=beta&t=ZJdEuXlS4A7vLm3z9AZFYH4-YWV7ZNtH41Fb0qilBUw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1667827927766?e=1681948800&v=beta&t=5E3d7pbdgf2MEpt-JeIipWUXRz6SYPJT1ovf9ix4qsM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1667827927766?e=1681948800&v=beta&t=R-8UpuFa0bsGnTtSzn2JvW3VvYa402eoxTg8riN0c0g", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1667827927766?e=1681948800&v=beta&t=DYHPS2Zf0PGTIiMwDGpBcVQscKhvXl8eY0tcmcLZSc0", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQGyKiQ41V_Sew/profile-displayphoto-shrink_" + } + }, + "trackingId": "NihBaqHtQoGt+UuUSNE2jA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Marie-Anne Vincent" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Marie-Anne Vincent\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/marie-anne-vincent?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "VP Climate Finance @ Sweep | Enabling financial actors to understand, manage and reduce their carbon footprint." + }, + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw", + "following": false, + "trackingUrn": "urn:li:member:15992566" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followMember" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6805529688035909633,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6805529688035909633", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6805529688035909633)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6805529688035909633)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/activity-6805529688035909633-jW44?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6805529687087992833", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw", + "authorUrn": "urn:li:member:15992566", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6805529688035909633,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6805529688035909633,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6805529687087992833", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "lQaS2y2BkckhAvlHcOlB3Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6805529688035909633,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8560419954351198698", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676295205928?e=1677240000&v=beta&t=tLF-p_Jrp6p94NZ46kBEaG-wAktWDNr2oqoJdhp8qOI", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676295205928?e=1677240000&v=beta&t=wtVNIDVciXpJBmnsGUB32fg5Q5Y0YZJRkTG0CVolyXM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676295205928?e=1677240000&v=beta&t=Fhl49i2fPegxgQaNI_XTGXgOgG8C89cVC-uHF87V3Tw", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676295205928?e=1677240000&v=beta&t=yYoyGvFOLmBRHzk7KoSVfnStuBcvxvBmMmQqXBonLVM", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF9cpGtBaw-8g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8560419954351198698)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8560419954351198698)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les g\u00e9rants d'actifs doivent se plier \u00e0 de nouvelles obligations sur la biodiversit\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/gestion-actifs/les-gerants-dactifs-doivent-se-plier-a-de-nouvelles-obligations-sur-la-biodiversite-1319345" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les g\u00e9rants d'actifs doivent se plier \u00e0 de nouvelles obligations sur la biodiversit\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6805529687087992833,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 470, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "3/eRp8hxRGCdcrI1okEnjA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 567, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:25494626", + "entityUrn": "urn:li:fs_miniCompany:25494626", + "name": "CDC Biodiversit\u00e9", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1650470332257?e=1684972800&v=beta&t=CC_f3ztqNsN15bZ8lAnazeCeAAP-NpKfRg5Mck5nlGY", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1650470332257?e=1684972800&v=beta&t=ZWTDOiqryBagHkgmzkc98rtP1RcPemVOhxZZJVWBu-I", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1650470332257?e=1684972800&v=beta&t=OWI-UHpEQFFtzgeu2aUYiFO3UtUIkO_4qnkE0IuFLfY", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGhbrhhhWucGw/company-logo_" + } + }, + "universalName": "cdc-biodiversite", + "dashCompanyUrn": "urn:li:fsd_company:25494626", + "trackingId": "LK4lQdQyTmOZOhzypSs9Cg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "\ud83d\udce3\ud83c\udf31 Le d\u00e9cret d\u2019application de l\u2019article 29 de la loi Energie et Climat, (qui va se substituer \u00e0 l\u2019article 173) a \u00e9t\u00e9 publi\u00e9 le 27 mai 2021.\n\nLa r\u00e9glementation fran\u00e7aise, tout en s'inscrivant dans le cadre de reporting europ\u00e9en (#SFDR), va plus loin\u00a0\u2757\u2757\n\n\ud83d\udca1 \u00a0Premi\u00e8re avanc\u00e9e : la cr\u00e9ation effective d\u2019une obligation de reporting sur la #biodiversit\u00e9 d\u00e8s 2022 (mesure de l\u2019empreinte #biodiversit\u00e9 et de la contribution \u00e0 la r\u00e9duction des impacts sur la biodiversit\u00e9) \u2757\u2757\n\ud83d\udc49 \u00a0Carbon4 Finance lance une base de donn\u00e9es #BiodiversityImpactAnalytics (BIA) en partenariat avec CDC BIODIVERSIT\u00c9 en utilisant la m\u00e9thodologie #GlobalBiodiversityScore, permettant de mesurer la contribution de des portefeuilles d'investissements aux pressions sur la biodiversit\u00e9 et leurs impacts (MSA)\n\n\ud83d\udca1 Deuxi\u00e8me avanc\u00e9e\u00a0: Les institutions financi\u00e8res devront \u00e9galement informer de leur gestion des\u00a0#RisquesPhysiques.\n\ud83d\udc49 Carbon4 Finance d\u00e9veloppe depuis 2017 une base de donn\u00e9es sur les #RisquesPhysiques, #ClimateRiskImpactScreening (CRIS)\n\n\ud83d\udca1 Troisi\u00e8me avanc\u00e9e\u00a0: des seuils et des p\u00e9rim\u00e8tres qui \u00e9largissent le champ d\u2019application - C\u2019est donc la quasi-totalit\u00e9 des soci\u00e9t\u00e9s de gestion fran\u00e7aises qui sont assujetties \u00e0 ces nouvelles obligations d\u00e8s 2023!\n\n#climat\u00a0#biodiversit\u00e9\u00a0#reporting\u00a0" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6805529687087992833,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6805529688035909633,urn:li:activity:6805529688035909633,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 5, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6805529688035909633,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6805529688035909633,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6805529688035909633", + "threadId": "activity:6805529688035909633", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6805529688035909633", + "urn": "urn:li:activity:6805529688035909633", + "numComments": 6, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6805529688035909633", + "reactionTypeCounts": [ + { + "count": 154, + "reactionType": "LIKE" + }, + { + "count": 12, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6805529688035909633", + "numLikes": 177, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6805529688035909633", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 177, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6805578693507858432", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6805578693507858432)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6805578693507858432)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-g%C3%A9rants-dactifs-doivent-se-plier-%C3%A0-de-activity-6805578693507858432-9O_F?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6805578693021315072", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6805578693507858432", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6805578693507858432,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6805578693507858432,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6805578693021315072", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "lQaS2y2BkckhAvlHcOlB3Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6805578693507858432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6805578693021315072,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 75, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "N7eX0H8vSWqxPGm0RJqCUA==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 840, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "PTVSlsNWTXmfbDqZeUkweQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Nous ne sommes pas une licorne \u00e0 1 milliard (personne n'est parfait), mais Carbon4 Finance est le premier fournisseur de donn\u00e9es au monde (sans rire) \u00e0 offrir \u00e0 la fois :\n- une base de donn\u00e9es sur l'alignement et l'impact carbone des entreprises (Carbon Impact Analytics - CIA), avec une approche chaine de valeur (donc du scope 3), et des analyses bottom up permettant de classer les soci\u00e9t\u00e9s au sein d'un m\u00eame secteur,\n- une base de donn\u00e9es sur les risques physiques li\u00e9s au changement climatique, avec une approche chaine de valeur (Climate Risks and Impacts Screening - CRIS),\n- et enfin une base de donn\u00e9es sur l'empreinte biodiversit\u00e9, avec l\u00e0 aussi une approche chaine de valeur (Biodiversity Impact Analytics - BIA).\n\nCes bases de donn\u00e9es sont con\u00e7ues avec des m\u00e9thodes qui b\u00e9n\u00e9ficient des presque 15 ans d'exp\u00e9rience de terrain de Carbone 4 (la branche conseil), un attelage l\u00e0 aussi rare voire unique dans le monde des fournisseurs de donn\u00e9es, et qui nous permet, du moins le croyons nous, de (mieux) comprendre la physique sous-jacente de l'\u00e9conomie, et du coup de b\u00e2tir des m\u00e9thodes mieux adapt\u00e9es \u00e0 l'appr\u00e9ciation des risques issus de ce m\u00eame monde physique." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6805578693021315072,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6805578693507858432,urn:li:activity:6805578693507858432,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 24, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6805578693507858432,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6805578693507858432,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6805578693507858432", + "threadId": "activity:6805578693507858432", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6805578693507858432", + "urn": "urn:li:activity:6805578693507858432", + "numComments": 28, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6805578693507858432", + "reactionTypeCounts": [ + { + "count": 750, + "reactionType": "LIKE" + }, + { + "count": 85, + "reactionType": "PRAISE" + }, + { + "count": 37, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "INTEREST" + }, + { + "count": 8, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6805578693507858432", + "numLikes": 900, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6805578693507858432", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 900, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6805429627893374977,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6805429627893374977", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6805429627893374977)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6805429627893374977)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_oil-is-the-first-energy-used-in-the-european-activity-6805429627893374977-cwuX?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6805429627335520256", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6805429627893374977", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6805429627893374977,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6805429627893374977,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6805429627335520256", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "nncbiIvDFG3949Lo4LMTGA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6805429627893374977,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHQhTi77iK9Sw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHQhTi77iK9Sw", + "artifacts": [ + { + "width": 1886, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1622540858931?e=1679529600&v=beta&t=VtNCmZZ5XpeVLFtB_POAwcfFpxHGfsNceEKrh9R79GE", + "expiresAt": 1679529600000, + "height": 1238 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1622540861512?e=1679529600&v=beta&t=NdeLlyB_ZQrs__fB9Lk5wZ9p79EsgnvTRGHeSLhxa_M", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1622540861512?e=1679529600&v=beta&t=vHLWIVNbhsIwxg9cABi-K3GVN0VWbOBypP0C0u0lTBc", + "expiresAt": 1679529600000, + "height": 840 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1622540861512?e=1679529600&v=beta&t=egQlkwpgtK2NxDc0vKvJ6Ra9KUVOw58BJAFc-K2Af04", + "expiresAt": 1679529600000, + "height": 315 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1622540861512?e=1679529600&v=beta&t=wmvX0qbNgL0Yff6m9UjfKIH5D9brm1YO16TlfHncEzA", + "expiresAt": 1679529600000, + "height": 105 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1622540861512?e=1679529600&v=beta&t=1aI06CowFycPbfSWW0KaN67gK9XBj_6_ov_K-V-Zcfo", + "expiresAt": 1679529600000, + "height": 525 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHQhTi77iK9Sw/feedshare-shrink_" + }, + "displayAspectRatio": 0.6564156945917285 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Oil is the first energy used in the European Union, and the first source of CO2 regarding our domestic emissions. Oil production is also, when looking at the world economy, the first limiting factor for the global fleet of active machines, and thus the size of the world GDP (https://lnkd.in/ghcM-TR ).\n\nLast but not least: it takes 50 to 400 millions years to form oil from plankton and algae (https://lnkd.in/dn3gvaD ). This means that there is a geological limit to the amount of extractible oil that we can get over historical times.\n\nIn spite of these facts, the word \"oil\" is not even written in the mission letter to the EU Commissioner for Energy, Kadri Simson (https://lnkd.in/dQNdX-Q ).\n\nThis is why The Shift Project had a particular interest in looking at the maximum output of oil that could come from the top 16 suppliers of the EU for the 30 years to come : https://lnkd.in/dRFYEvg\n\nThe conclusion is simple: even if we don't care about the climate, we will have less. And that means managing more problems with less GDP. Time to think about it!" + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6805429627893374977,urn:li:activity:6805429627893374977,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 31, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6805429627893374977,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6805429627893374977,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6805429627893374977", + "threadId": "activity:6805429627893374977", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6805429627893374977", + "urn": "urn:li:activity:6805429627893374977", + "numComments": 83, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6805429627893374977", + "reactionTypeCounts": [ + { + "count": 673, + "reactionType": "LIKE" + }, + { + "count": 84, + "reactionType": "INTEREST" + }, + { + "count": 50, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6805429627893374977", + "numLikes": 827, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6805429627893374977", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 827, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6805121199056678912,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6805121199056678912", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6805121199056678912)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6805121199056678912)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_carbon4-finance-wins-the-eagle-alpha-esg-activity-6805121199056678912-zA-P?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6805121198649815040", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6805121199056678912", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6805121199056678912,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6805121199056678912,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6805121198649815040", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "DkXOo8cRcKwjeqJP5Ohevg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6805121199056678912,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8351161859178985350", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1622448795052?e=1677240000&v=beta&t=PuJGK537XcS_YwhKIr51MAGJK2FO1iEd952Uow9OKfg", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1622448795052?e=1677240000&v=beta&t=AdMvqfMnrGIw67JVi7cZEICdGJpiPZ5hFuFxXXIyK2k", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1622448795052?e=1677240000&v=beta&t=WwPrZwCPBgJiyouqFEKtL1T3IRpkgUNPSchXN2VXuqM", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1622448795052?e=1677240000&v=beta&t=2lPPUpoShG-uGIr9XTsAL4HFa25iqa268yPM5hIZHxM", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGD15N6XoNlcQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8351161859178985350)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8351161859178985350)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbon4finance.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Carbon4 Finance wins the Eagle Alpha ESG Hackathon by carbon4finance.com", + "actionTarget": "http://www.carbon4finance.com/carbon4-finance-wins-the-eagle-alpha-esg-hackathon/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Carbon4 Finance wins the Eagle Alpha ESG Hackathon" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "With its database Carbon Impact Analytics, Carbon 4 Finance just won a hackathon organized by Eagle Alpha, that gathered 150 competitors. \n\nThe very good news, in the present case, is that an analysis including scope 3 emissions for all the companies we assess (Carbon Impact Analytics) was considered \"more relevant\" by the jury. Carbon 4 Finance has long considered that not taking scope 3 into account was misleading regarding transition risks. \n \nBy a funny coincidence, this trophy was awarded at the same moment that the ruling of a Dutch court against Shell, stating that this company was accountable for its scope 3 emissions (https://lnkd.in/dg3EQDx ).\n\nIt confirms the importance of calculating this scope 3 (which is feasible with the appropriate methods) when it is not reported by the company." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6805121199056678912,urn:li:activity:6805121199056678912,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 4, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6805121199056678912,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6805121199056678912,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6805121199056678912", + "threadId": "activity:6805121199056678912", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6805121199056678912", + "urn": "urn:li:activity:6805121199056678912", + "numComments": 4, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6805121199056678912", + "reactionTypeCounts": [ + { + "count": 128, + "reactionType": "LIKE" + }, + { + "count": 24, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6805121199056678912", + "numLikes": 158, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6805121199056678912", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 158, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6805112234658824194,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6805112234658824194", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6805112234658824194)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6805112234658824194)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9carboner-la-sant%C3%A9-ateliers-collaboratifs-activity-6805112234658824194-brCI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6805112234147110912", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6805112234658824194", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6805112234658824194,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6805112234658824194,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6805112234147110912", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "d6C6CnnH95lRFfgD16832g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6805112234658824194,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8621693218335550071", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675981541088?e=1677240000&v=beta&t=qawzuhwhnOp-2RB9XVVE65WpCdjU2mlURpLKvZeONLg", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675981541089?e=1677240000&v=beta&t=imVRsxhkv60-pCcZbvbmT-9hgsOCB7Wsbdy2BR5UH-o", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675981541089?e=1677240000&v=beta&t=RlVIjF27F3ov2XBX-0IsQYQW0RnZyEdgmaVlEfhLniM", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675981541089?e=1677240000&v=beta&t=ACDzO2h-7TX3vCf--p90iV_K0YLVyXpTcoaPj8MSGsU", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFCW23i4CV6_Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8621693218335550071)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8621693218335550071)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab D\u00e9carboner la Sant\u00e9 ! \u00bb : Ateliers collaboratifs (Mardi 15 juin \u00e0 14h) by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/sante-soigner-durablement-conference-ateliers-collaboratifs-15-juin-a-14h/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab D\u00e9carboner la Sant\u00e9 ! \u00bb : Ateliers collaboratifs (Mardi 15 juin \u00e0 14h)" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6805112234147110912,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La sant\u00e9, c'est plein de carbone. Il faut construire les \u00e9tablissements (ciment, acier = industrie), les chauffer (gaz, fioul), les \u00e9lectrifier (un peu de charbon et de gaz chez nous), les \u00e9quiper (lits, appareils de diagnostic et de biologie, etc = industrie), les alimenter (m\u00e9dicaments, compresses, seringues, draps, v\u00eatements jetables, repas = industrie + agriculture), traiter leurs d\u00e9chets, et permettre \u00e0 tous les gens qui ont quelque chose \u00e0 y faire (personnel, patients, visiteurs, et ministre \u00e0 l'occasion :) ) d'y venir et d'en repartir (p\u00e9trole).\n\nR\u00e9sultat des courses : notre syst\u00e8me de soins, c'est, en ordre de grandeur, 5% de notre empreinte carbone. Question : dans un monde \"neutre en carbone\", donc avec beaucoup moins de transports, de consommables, et d'\u00e9nergie qu'aujourd'hui, il ressemble \u00e0 quoi ? \n\nTelle est la question qui sera abord\u00e9e le 15 juin prochain, avec la pr\u00e9sentation du rapport provisoire du Shift Project sur la sant\u00e9, suivie d'ateliers collaboratifs r\u00e9serv\u00e9s aux professionnel(le)s du secteur.\n\nCe rapport s'inscrit dans le cadre du plan de transformation de l'\u00e9conomie fran\u00e7aise (https://lnkd.in/dNARPrU ), qui couvre 15 secteurs et quelques domaines transverses." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6805112234147110912,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6805112234658824194,urn:li:activity:6805112234658824194,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 28, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6805112234658824194,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6805112234658824194,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6805112234658824194", + "threadId": "activity:6805112234658824194", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6805112234658824194", + "urn": "urn:li:activity:6805112234658824194", + "numComments": 35, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6805112234658824194", + "reactionTypeCounts": [ + { + "count": 309, + "reactionType": "LIKE" + }, + { + "count": 39, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6805112234658824194", + "numLikes": 377, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6805112234658824194", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 377, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6805032889047101440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6805032889047101440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6805032889047101440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6805032889047101440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_si-la-disposition-anti-greenwashing-rajout%C3%A9e-activity-6805032889047101440-TdzC?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6805032888401203200", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6805032889047101440", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6805032889047101440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6805032889047101440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6805032888401203200", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "jmTNag+H8Mcl9nHWBTmQnQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6805032889047101440,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFtnV5b-8Bmpw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFtnV5b-8Bmpw", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1622446270250?e=1679529600&v=beta&t=GyfjhiDnG6KWMGUKwvNHW0yUDj9wb2uqr_Lrsu5agB0", + "expiresAt": 1679529600000, + "height": 603 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1622446271012?e=1679529600&v=beta&t=cS7NmpYxP8mGroLNLWkfe7FIH37kk9r9zYyfYVtrypo", + "expiresAt": 1679529600000, + "height": 6 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1622446271012?e=1679529600&v=beta&t=1TL23EsN7q3l7BWL_oMQdPPfiJP_sJT46swYpkKhgEA", + "expiresAt": 1679529600000, + "height": 377 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1622446271012?e=1679529600&v=beta&t=y-FklBn2HR6-x4Y-66ydybdkKXFbTkuUVgvoVLvljGk", + "expiresAt": 1679529600000, + "height": 141 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1622446271012?e=1679529600&v=beta&t=D1TuB-npL-NYU4MGvnZSQ1EGzcvmaSgflALChUuFmA0", + "expiresAt": 1679529600000, + "height": 47 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1622446271012?e=1679529600&v=beta&t=7ktXYO_RiCVEfB_wk7zxtkbR7kImm6bOKqwwSP4mzkI", + "expiresAt": 1679529600000, + "height": 236 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFtnV5b-8Bmpw/feedshare-shrink_" + }, + "displayAspectRatio": 0.29443359375 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6805032888401203200,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si la disposition anti-greenwashing rajout\u00e9e dans la loi climat au moment de son passage \u00e0 l'Assembl\u00e9e \u00e9tait d\u00e9j\u00e0 en vigueur, cet \u00e9cran d'accueil d'Amazon (consult\u00e9 il y a 2 jours) aurait pu lui valoir un d\u00e9bat avec le juge !\n\nPour que l'affirmation de ce bandeau publicitaire soit fond\u00e9e, il faudrait :\n- que 100% des locaux d'Amazon soient physiquement aliment\u00e9s \u00e0 100% par des ENR (ce n'est pas le cas, on compte aussi les certificats de garantie d'origine dedans, qui ne changent pas l'alimentation physique)\n- qu'ils soient construit avec des mat\u00e9riaux et des engins de chantier fabriqu\u00e9s et aliment\u00e9s \u00e0 100% avec des ENR, \n- que les transports command\u00e9s par Amazon fonctionnent \u00e0 100% aux ENR\n- que 100% des produits et services vendus par Amazon soient fabriqu\u00e9s (y compris le plastique et l'acier sous-jacents) avec uniquement des ENR\n- et que 100% des dispositifs num\u00e9riques permettant de commander soient fabriqu\u00e9s et fonctionnent uniquement avec des ENR.\n\nOn comprend bien que dans ce monde l\u00e0, Amazon ne sera pas vraiment le m\u00eame. Amazon est en fait \u00e0 \u2248100% un produit de la mondialisation fossile, comme de tr\u00e8s (trop !) nombreuses entreprises qui affirment des choses qui ne correspondent pas \u00e0 la physique." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6805032888401203200,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6805032889047101440,urn:li:activity:6805032889047101440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 61, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6805032889047101440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6805032889047101440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6805032889047101440", + "threadId": "activity:6805032889047101440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6805032889047101440", + "urn": "urn:li:activity:6805032889047101440", + "numComments": 94, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6805032889047101440", + "reactionTypeCounts": [ + { + "count": 1999, + "reactionType": "LIKE" + }, + { + "count": 146, + "reactionType": "INTEREST" + }, + { + "count": 84, + "reactionType": "MAYBE" + }, + { + "count": 76, + "reactionType": "PRAISE" + }, + { + "count": 22, + "reactionType": "APPRECIATION" + }, + { + "count": 19, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6805032889047101440", + "numLikes": 2346, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6805032889047101440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2346, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6804696907236052992,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6804696907236052992", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6804696907236052992)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6804696907236052992)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_p%C3%A9trole-union-europ%C3%A9enne-there-will-be-activity-6804696907236052992-1_xh?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6804696906749485056", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6804696907236052992", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6804696907236052992,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6804696907236052992,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6804696906749485056", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "ygK5/PzUIwnVXnR/Em7PEA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6804696907236052992,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8023644740044969620", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675650146549?e=1677240000&v=beta&t=PazBx_sigjgGmLIMEUWt9bwcFbsplvKTlRjRALWXgt0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675650146549?e=1677240000&v=beta&t=X_KBuk_rMYY9x5zrCCanesMrN4d1GkTUfG9bJ1aQlr8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675650146550?e=1677240000&v=beta&t=mV9AwkZFCH-7MF9oS29deea4Fh0BpRqY3j58e4EmvHQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675650146550?e=1677240000&v=beta&t=GaqeOs6BkwVayNOukSyXgclejGYTjyP4N1H1jbFX73w", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFJOkG2utuKzg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8023644740044969620)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8023644740044969620)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: P\u00e9trole, Union europ\u00e9enne : There will be blood by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/crible/petrole-union-europeenne-there-will-be-blood-1318647#" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "P\u00e9trole, Union europ\u00e9enne : There will be blood" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6804696906749485056,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 192, + "length": 20, + "miniCompany": { + "objectUrn": "urn:li:company:10178517", + "entityUrn": "urn:li:fs_miniCompany:10178517", + "name": "Minist\u00e8re de la D\u00e9fense", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1643381210225?e=1684972800&v=beta&t=PmGE0LB2DiuU-i0lBU5XUwkWb_Ph83ouCRUACJBtPwQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1643381210225?e=1684972800&v=beta&t=ipyLDmfKMfTqzSedeGiMdP8nXqOAUH9dHH4gOtWBMM0", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1643381210225?e=1684972800&v=beta&t=byBVQgBF1cEpaBXPtECvqXinM-PNNNel4-H1-Z6IGFg", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQHIOxktMrRFzw/company-logo_" + } + }, + "universalName": "ministere-des-armees", + "dashCompanyUrn": "urn:li:fsd_company:10178517", + "trackingId": "2UZHMyJqTWakvQB5DVVZMg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "\"There will be blood\" : c'est ainsi que Les Echos commentent le rapport du Shift Project - effectu\u00e9 pour le compte de la Direction G\u00e9n\u00e9rale des Relations Internationales et de la Strat\u00e9gie du Minist\u00e8re des Arm\u00e9es - sur les limites \u00e0 l'approvisionnement p\u00e9trolier europ\u00e9en issues des seules contraintes g\u00e9ologiques s'appliquant aux producteurs de p\u00e9trole (https://lnkd.in/dwPcgve ).\n\nLe travail tr\u00e8s minutieux qui a \u00e9t\u00e9 effectu\u00e9 montre que la production des 16 premiers fournisseurs de l'UE devrait \u00eatre au mieux de 90% de 2019 sur la d\u00e9cennie \u00e0 venir, avant un plongeon plus s\u00e9v\u00e8re. Rappelons que pour les producteurs concern\u00e9s - incluant la Russie et le Moyen Orient - nous sommes en comp\u00e9tition avec les importations des \u00e9mergents.\n\nRappelons aussi que, depuis 50 ans, le volume de p\u00e9trole disponible est le premier facteur limitant de l'\u00e9conomie mondiale (https://lnkd.in/gTFCeG3 ).\n\nEt pendant ce temps le mot p\u00e9trole n'existe m\u00eame pas dans la feuille de route de la commissaire europ\u00e9enne en charge de l'\u00e9nergie... (https://lnkd.in/dQNdX-Q )." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6804696906749485056,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6804696907236052992,urn:li:activity:6804696907236052992,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6804696907236052992,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6804696907236052992,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6804696907236052992", + "threadId": "activity:6804696907236052992", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6804696907236052992", + "urn": "urn:li:activity:6804696907236052992", + "numComments": 62, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6804696907236052992", + "reactionTypeCounts": [ + { + "count": 574, + "reactionType": "LIKE" + }, + { + "count": 94, + "reactionType": "INTEREST" + }, + { + "count": 67, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6804696907236052992", + "numLikes": 742, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6804696907236052992", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 742, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6804693598311866368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6804693598311866368", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6804693598311866368)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6804693598311866368)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nucl%C3%A9aire-la-guerre-secr%C3%A8te-pour-lind%C3%A9pendance-activity-6804693598311866368-1IyZ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6804693597825318912", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6804693598311866368", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6804693598311866368,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6804693598311866368,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6804693597825318912", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "t5Y8r/jTD0Gf+YnUmGEZDQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6804693598311866368,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8509489353857488619", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 623, + "fileIdentifyingUrlPathSegment": "800/0/1676015250282?e=1677240000&v=beta&t=MjBbqugS6F6H4oDLBLxT0Vb2siAXGRl5vnENEPq4MfQ", + "expiresAt": 1677240000000, + "height": 462 + }, + { + "width": 623, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676015250282?e=1677240000&v=beta&t=DVE3pbcLCd16rvtPIK9iHvNVIzJukXoObVWw273SLlg", + "expiresAt": 1677240000000, + "height": 462 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676015250282?e=1677240000&v=beta&t=ZbEGkX1z6EjryHiTApeKbCxVoae9jbo1moBOX-DLehA", + "expiresAt": 1677240000000, + "height": 118 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676015250282?e=1677240000&v=beta&t=AFKvAXXHp2J7YRltYB4UWIGhugVZT-oxVx9HUSTAlps", + "expiresAt": 1677240000000, + "height": 355 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEv7Bs0lflhGw/articleshare-shrink_" + }, + "displayAspectRatio": 0.7415730337078652 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8509489353857488619)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8509489353857488619)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "marianne.net \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nucl\u00e9aire : la guerre secr\u00e8te pour l\u2019ind\u00e9pendance fran\u00e7aise by marianne.net", + "actionTarget": "https://www.marianne.net/politique/nucleaire-la-guerre-secrete-pour-lindependance-francaise?fbclid=IwAR1rWhmyYLsuIUTjffUgokkhmi-voNfTmGxmjAMg5vol2FdtWeN81D_3Otc" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nucl\u00e9aire : la guerre secr\u00e8te pour l\u2019ind\u00e9pendance fran\u00e7aise" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6804693597825318912,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un \u00e9ditorial publi\u00e9 dans Marianne tente de rendre accessible \"au grand public\" les cons\u00e9quences sur la fili\u00e8re nucl\u00e9aire fran\u00e7aise de deux des d\u00e9bats d'actualit\u00e9 au sein des instances europ\u00e9ennes : celui sur la \"taxonomie des investissements verts\", et celui sur la lib\u00e9ralisation du march\u00e9 de l'\u00e9lectricit\u00e9.\n\nOn pardonnera \u00e0 l'autrice les quelques exag\u00e9rations et le titre sensationnaliste, pour retenir qu'un journal historiquement plut\u00f4t marqu\u00e9 \u00e0 gauche (https://lnkd.in/dna4uK3 ), donc s'adressant alors \u00e0 un lectorat qui est devenu plut\u00f4t \u00e0 dominante antinucl\u00e9aire (ce n'est pas moi qui le dis, ce sont les sondages !) prend d\u00e9sormais ouvertement position pour cette fili\u00e8re \u00e9nerg\u00e9tique. \n\nLe fait en tant que tel n'est ni r\u00e9jouissant ni un drame. Ce qu'il faut esp\u00e9rer, c'est que cette petite \"recomposition des lignes\" pr\u00e9pare surtout un d\u00e9bat apais\u00e9 en fonction des faits observables, de la hi\u00e9rarchie de nos envies, et des contreparties in\u00e9vitables de chaque choix que nous pourrions faire." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6804693597825318912,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6804693598311866368,urn:li:activity:6804693598311866368,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 45, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6804693598311866368,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6804693598311866368,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6804693598311866368", + "threadId": "activity:6804693598311866368", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6804693598311866368", + "urn": "urn:li:activity:6804693598311866368", + "numComments": 88, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6804693598311866368", + "reactionTypeCounts": [ + { + "count": 1298, + "reactionType": "LIKE" + }, + { + "count": 80, + "reactionType": "MAYBE" + }, + { + "count": 77, + "reactionType": "INTEREST" + }, + { + "count": 38, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6804693598311866368", + "numLikes": 1509, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6804693598311866368", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1509, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6804463687651336192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6804463687651336192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6804463687651336192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6804463687651336192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_8-jancovici-a-r%C3%A9pondu-%C3%A0-vos-questions-activity-6804463687651336192-JpP6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6804463687169007616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6804463687651336192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6804463687651336192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6804463687651336192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6804463687169007616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "TnXxOYHAC0PdSShck2Z5PA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6804463687651336192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7557635026414439534", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1675759042473?e=1677240000&v=beta&t=7hrgH579oixpXxqrm7N0r_6lP5CjkVj-Svz26vyXZeE", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675759042474?e=1677240000&v=beta&t=oVMAqsU26kQwceFnw7nf_Q-hOyDYfw1d1n47FnKt8KU", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675759042474?e=1677240000&v=beta&t=2uHrVODzfmDvW-AZKz6WMn2oVvjVP1mHE71NPzwQTgs", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675759042474?e=1677240000&v=beta&t=ONBKSUM40FMKQdkmpjU4BxuFwtFKUDxLG0PW6B0JCNs", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQETVu8arXwQuQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7557635026414439534)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7557635026414439534)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: #8 Jancovici a r\u00e9pondu \u00e0 vos questions - 26/05/2021 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=-TEDl-Fxetc" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici a r\u00e9pondu \u00e0 certaines des questions des abonn\u00e9s de sa page Facebook via un live le 26 mai 2021. (Liste des questions plus bas dans le descriptif). Audio :..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "#8 Jancovici a r\u00e9pondu \u00e0 vos questions - 26/05/2021" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6804463687169007616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Puisque TF1 vous propose de r\u00e9pondre \u00e0 vos questions en direct pendant le 20h (https://lnkd.in/duxkuqC ), il n'y a pas de raison que je ne fasse pas (presque) pareil ! Le 8\u00e8 \u00e9pisode de la s\u00e9rie vient d'\u00eatre mis en ligne.\n\nBon, la dur\u00e9e de chaque r\u00e9ponse est un poil plus longue :), et il n'est pas sur que les sujets trait\u00e9s passionnent autant de monde, mais l'avantage est que vous pouvez consommer ca \u00e0 petite vitesse si vous le souhaitez.\n\nNous avons limit\u00e9 la r\u00e9solution \u00e0 360 pixels par pouce (mais ca supporte tr\u00e8s bien 144) pour vous \u00e9viter la tentation de la HD pour simplement mieux voir le d\u00e9sordre sur les \u00e9tag\u00e8res de mon bureau :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6804463687169007616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6804463687651336192,urn:li:activity:6804463687651336192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 17, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6804463687651336192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6804463687651336192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6804463687651336192", + "threadId": "activity:6804463687651336192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6804463687651336192", + "urn": "urn:li:activity:6804463687651336192", + "numComments": 31, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6804463687651336192", + "reactionTypeCounts": [ + { + "count": 331, + "reactionType": "LIKE" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "INTEREST" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6804463687651336192", + "numLikes": 376, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6804463687651336192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 376, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6803959457727430656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6803959457727430656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6803959457727430656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6803959457727430656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-judicial-system-netherlands-met-%C3%A0-disposition-activity-6803959457727430656-vi4l?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6803959457148620801", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6803959457727430656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6803959457727430656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6803959457727430656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6803959457148620801", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "qh4rKVi6PaYLaa2Cml1qEw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6803959457727430656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHKUATc79VOjA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHKUATc79VOjA", + "artifacts": [ + { + "width": 960, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1622190344901?e=1679529600&v=beta&t=JHNcvxKCekrxbbJ3NchKk_I_aNQm_cklzACLFx-mvq4", + "expiresAt": 1679529600000, + "height": 540 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1622190344919?e=1679529600&v=beta&t=qHY447RoUcobtJpvZxvPpQDLuzs952V8q6X0r7RKRlQ", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 960, + "fileIdentifyingUrlPathSegment": "1280/0/1622190344919?e=1679529600&v=beta&t=wlIwMDLsRLbOFUSt-lqL1qXjMa8YRQUUG3uY4bK95S0", + "expiresAt": 1679529600000, + "height": 540 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1622190344919?e=1679529600&v=beta&t=GZGjXtRDFZX78NU7GPqDk88l_9P1yGTDrl_4BqRtDDQ", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1622190344919?e=1679529600&v=beta&t=Wy0qBwIHEr2HeFScL1KkbR8fb5MFMxpUnbPuR2W3g94", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1622190344919?e=1679529600&v=beta&t=_wqXPe3m1xHXpt6hS30cwR3T_MTAEyTqufTzDAIt_hs", + "expiresAt": 1679529600000, + "height": 450 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHKUATc79VOjA/feedshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "logo, company name" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6803959457148620801,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 979, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "/SSb5xFtTgK4YVNDcqedtQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Le \"Judicial system Netherlands\" met \u00e0 disposition, en anglais, un jugement qu'il vient de rendre contre Shell, lui ordonnant de baisser ses \u00e9missions de CO2 de 45% de 2019 \u00e0 2030 : https://lnkd.in/dg3EQDx\n\nLes finances de Shell n'en souffriront pas trop : l'entreprise doit juste rembourser les frais de justice \u00e0 ses adversaires, et il n'y a aucune p\u00e9nalit\u00e9 pour non respect de l'obligation de baisse des \u00e9missions.\n\nLa novation est ailleurs : le juge consid\u00e8re que Shell ne peut pas ignorer que ses barils de p\u00e9trole ne sont pas destin\u00e9s \u00e0 servir de presse-papiers, mais seront br\u00fbl\u00e9s dans un moteur ou une chaudi\u00e8re, et donc contribueront aux \u00e9missions de CO2. Shell a donc implicitement la responsabilit\u00e9 de vendre \"autre chose\", qui soit compatible avec une baisse des \u00e9missions globales.\n\nSi ce point de vue fait jurisprudence, toute entreprise devra non seulement mesurer, mais agir sur ses \u00e9missions indirectes, faute de quoi le juge pourra la rappeler \u00e0 l'ordre.\n\nNB : Carbon4 Finance int\u00e8gre depuis toujours le scope 3 dans sa notation des entreprises, y compris dans le secteur oil and gas : https://lnkd.in/dDXWQ2Y C'est toute la diff\u00e9rence entre une approche \"risque\" et une approche \"je compte n'importe quoi pourvu que je puisse dire que j'ai compt\u00e9 quelque chose\" !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6803959457148620801,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6803959457727430656,urn:li:activity:6803959457727430656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 47, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6803959457727430656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6803959457727430656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6803959457727430656", + "threadId": "activity:6803959457727430656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6803959457727430656", + "urn": "urn:li:activity:6803959457727430656", + "numComments": 71, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6803959457727430656", + "reactionTypeCounts": [ + { + "count": 857, + "reactionType": "LIKE" + }, + { + "count": 73, + "reactionType": "MAYBE" + }, + { + "count": 72, + "reactionType": "INTEREST" + }, + { + "count": 27, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6803959457727430656", + "numLikes": 1042, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6803959457727430656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1042, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6803723519868841984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6803723519868841984", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6803723519868841984)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6803723519868841984)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_publication-du-nouveau-rapport-du-shift-sur-activity-6803723519868841984-VQSr?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6803723519122268160", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6803723519868841984", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6803723519868841984,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6803723519868841984,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6803723519122268160", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "rpIe/funE8hiuAyqWfpwsA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6803723519868841984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8360778608857653028", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676296347704?e=1677240000&v=beta&t=CmBRwOLbfbJHZtVLd_5GgiNHBPiNI3ZYkP1IW2ExOfY", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676296347704?e=1677240000&v=beta&t=hAMuJSzcAiCcfTS_Gi4jSgLMhJdNbvmzzP1wQyfhtOQ", + "expiresAt": 1677240000000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676296347704?e=1677240000&v=beta&t=kvzMgTB7CoiljZPAI7cdUAjTLKnIYrJcwezxNWFNTBY", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676296347704?e=1677240000&v=beta&t=Lr100PtG5bp6aJVGSQTRgo4HfM3-wd0HKCVwHWAJPd0", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEaUmUkNwULxA/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8360778608857653028)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8360778608857653028)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Publication du nouveau rapport du Shift sur l'approvisionnement p\u00e9trolier by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/nouveau-rapport-approvisionnement-petrolier-europe/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Publication du nouveau rapport du Shift sur l'approvisionnement p\u00e9trolier" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6803723519122268160,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Utiliser moins de p\u00e9trole, n'y a-t-il que le climat qui nous pousserait \u00e0 le faire ? Pas que : il faut 50 \u00e0 400 millions d'ann\u00e9es pour former ce \"condens\u00e9 de soleil pass\u00e9\" (https://lnkd.in/djAcDUP ) et donc son extraction de la croute terrestre ne peut ni cro\u00eetre ind\u00e9finiment ni m\u00eame rester ind\u00e9finiment constante, nous disent les math\u00e9matiques.\n\nA la demande du Minist\u00e8re des arm\u00e9es (nous avons parfois des fr\u00e9quentations exotiques !), The Shift Project a fait conduire par 3 experts du secteur p\u00e9trolier un minutieux travail d'analyse d'une base de donn\u00e9es tr\u00e8s exhaustive des champs p\u00e9troliers (exploit\u00e9s ou non) dans le monde pour en d\u00e9duire un pronostic sur \"l'\u00e9volution la plus probable\" de la production p\u00e9troli\u00e8re \u00e0 l'avenir si la seule contrainte est g\u00e9ologique. \n\nLe r\u00e9sultat tient en une phrase : La production p\u00e9troli\u00e8re totale des principaux fournisseurs actuels de l\u2019Union europ\u00e9enne (qui inclut tous les grands producteurs mondiaux) risque de s\u2019\u00e9tablir dans le courant de la d\u00e9cennie 2030 \u00e0 un niveau inf\u00e9rieur de 10 \u00e0 20 % \u00e0 celui atteint en 2019. Les \u00e9missions vont donc baisser... mais peut-\u00eatre pas pour une raison bien comprise de tous." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6803723519122268160,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6803723519868841984,urn:li:activity:6803723519868841984,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6803723519868841984,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6803723519868841984,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6803723519868841984", + "threadId": "activity:6803723519868841984", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6803723519868841984", + "urn": "urn:li:activity:6803723519868841984", + "numComments": 162, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6803723519868841984", + "reactionTypeCounts": [ + { + "count": 745, + "reactionType": "LIKE" + }, + { + "count": 149, + "reactionType": "INTEREST" + }, + { + "count": 101, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6803723519868841984", + "numLikes": 1017, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6803723519868841984", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1017, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6803569147520282625,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6803569147520282625", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6803569147520282625)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6803569147520282625)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_new-climate-predictions-increase-likelihood-activity-6803569147520282625--7di?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6803569146798866432", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6803569147520282625", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6803569147520282625,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6803569147520282625,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6803569146798866432", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "bCG2jKVyxqOjM/nN+JLmaA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6803569147520282625,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8165410429216248434", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 610, + "fileIdentifyingUrlPathSegment": "800/0/1675958119855?e=1677240000&v=beta&t=t9YI05BCWc405rnaoDJ5rrf96M4PxL2wAGAWeNmqMnY", + "expiresAt": 1677240000000, + "height": 371 + }, + { + "width": 610, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675958119855?e=1677240000&v=beta&t=iC9TLoGkKMdC68F5MA1VqcgQmbQ3lzNcvyW66MkYy3U", + "expiresAt": 1677240000000, + "height": 371 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675958119856?e=1677240000&v=beta&t=phdyInT1GwDU8J1ircr5-CcO9azGxHnnSqxKqC2Y4OE", + "expiresAt": 1677240000000, + "height": 97 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675958119856?e=1677240000&v=beta&t=I1KzuRRV7XJ_4rYoDki5IJAwkjO7Dzoe1EzvAC9r48k", + "expiresAt": 1677240000000, + "height": 291 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF-fEbrLfe-vg/articleshare-shrink_" + }, + "displayAspectRatio": 0.6081967213114754 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Global Annual to Decadal Climate Update" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8165410429216248434)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8165410429216248434)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "public.wmo.int \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: New climate predictions increase likelihood of temporarily reaching 1.5 \u00b0C in next 5 years by public.wmo.int", + "actionTarget": "https://public.wmo.int/en/media/press-release/new-climate-predictions-increase-likelihood-of-temporarily-reaching-15-%C2%B0c-next-5" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "New climate predictions increase likelihood of temporarily reaching 1.5 \u00b0C in next 5 years" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6803569146798866432,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Accord de Paris demande aux signataires de faire ce qu'il faut pour que la d\u00e9rive climatique soit limit\u00e9e \u00e0 un r\u00e9chauffement de 1,5\u00b0C d'ici \u00e0 2100.\n\nL'Organisation M\u00e9t\u00e9orologique Mondiale vient de publier un communiqu\u00e9 de presse dans lequel elle indique que cette \u00e9l\u00e9vation de temp\u00e9rature, qui se fait toujours en r\u00e9f\u00e9rence \u00e0 la moyenne dite \"pr\u00e9industrielle\" (avant que ne commence le r\u00e9chauffement du aux hommes), a une probabilit\u00e9 de 40% d'\u00eatre franchie dans les 5 prochaines ann\u00e9es. \n\nCela signifie que chaque ann\u00e9e qui passe nous rapproche de la \"mort\" formelle de cet engagement (\u00e0 1,5\u00b0C). En fait, \u00e0 cause de l'inertie du CO2 dans l'air, nous savons d\u00e9j\u00e0 que cette limite (1,5\u00b0C) sera franchie, la seule question \u00e9tant quand.\n\nLe premier probl\u00e8me \u00e0 ce moment l\u00e0 sera \u00e9videmment que les ennuis environnementaux seront encore plus forts. Il faudra y rajouter l'irritation ou la col\u00e8re du juge, de l'\u00e9lecteur, du client, du citoyen, quand tout ce beau monde r\u00e9alisera que les engagements \u00e0 \"\u00eatre compatibles 1,5\u00b0C\" pris par les \u00e9tats ou entreprises n'\u00e9taient, sauf exception, que de la com sans changement significatif aux processus, produits, march\u00e9s, organisations, modes de d\u00e9cision, projets, etc. Ce n'est pas ca qui va aider \u00e0 stabiliser la situation." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6803569146798866432,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6803569147520282625,urn:li:activity:6803569147520282625,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 58, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6803569147520282625,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6803569147520282625,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6803569147520282625", + "threadId": "activity:6803569147520282625", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6803569147520282625", + "urn": "urn:li:activity:6803569147520282625", + "numComments": 169, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6803569147520282625", + "reactionTypeCounts": [ + { + "count": 847, + "reactionType": "LIKE" + }, + { + "count": 133, + "reactionType": "INTEREST" + }, + { + "count": 118, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6803569147520282625", + "numLikes": 1130, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6803569147520282625", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1130, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6803350289144389634,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6803350289144389634", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6803350289144389634)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6803350289144389634)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_pr%C3%A9sentation-du-nouveau-rapport-du-shift-activity-6803350289144389634-IPog?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6803350288813039616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6803350289144389634", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6803350289144389634,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6803350289144389634,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6803350288813039616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "eKNdoPrt81YNTiVs2u4zNg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6803350289144389634,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8887041165127181272", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675606030880?e=1677240000&v=beta&t=jUh8TIDNzw5ZrR4y82SDzmJ8gMgWZzQO237RYvCDlNY", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675606030880?e=1677240000&v=beta&t=dw9Ie6MBzMbi5uc8dFH7csvodrAJud-9mvsJDIKcU2I", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675606030880?e=1677240000&v=beta&t=_Jb_CSiHD19FOw6SdGjdDyK7hxyBrJ8sEKYTvXPveoQ", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675606030881?e=1677240000&v=beta&t=LaaZ-PVpSJ2tz-sMuEZV1IlVAXDp9xQxs3HRC_ARCRs", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGqhDOXl8oaGQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8887041165127181272)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8887041165127181272)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Pr\u00e9sentation du nouveau rapport du Shift sur l'approvisionnement p\u00e9trolier by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-petrole-quels-risques-pour-les-approvisionnements-de-leurope-jeudi-27-mai-a-18h/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Pr\u00e9sentation du nouveau rapport du Shift sur l'approvisionnement p\u00e9trolier" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6803350288813039616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quel sera le facteur le plus limitant pour disposer de p\u00e9trole en Europe \u00e0 l'avenir ? Notre volont\u00e9 de baisser les \u00e9missions, ou le sous-sol des pays qui nous fournissent de l'or noir ?\n\nThe Shift Project vous propose, demain Jeudi \u00e0 18h, un \u00e9clairage unique sur la question, issu de l'analyse d'une base de donn\u00e9es tr\u00e8s d\u00e9taill\u00e9e sur l'ensemble des champs p\u00e9troliers dans le monde (Rystad Energy).\n\nLadite analyse a \u00e9t\u00e9 conduite par plusieurs experts du domaine, dont l'ancien patron de l'exploration de Total.\n\nJe ne spoile pas le r\u00e9sultat, attendons demain !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6803350288813039616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6803350289144389634,urn:li:activity:6803350289144389634,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 9, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6803350289144389634,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6803350289144389634,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6803350289144389634", + "threadId": "activity:6803350289144389634", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6803350289144389634", + "urn": "urn:li:activity:6803350289144389634", + "numComments": 44, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6803350289144389634", + "reactionTypeCounts": [ + { + "count": 179, + "reactionType": "LIKE" + }, + { + "count": 22, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6803350289144389634", + "numLikes": 215, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6803350289144389634", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 215, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6802998080481320961,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6802998080481320961", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6802998080481320961)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6802998080481320961)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_tu-seras-autonome-mon-territoire-activity-6802998080481320961-q_Ut?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6802998080066076672", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6802998080481320961", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6802998080481320961,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6802998080481320961,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6802998080066076672", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "jM+4theWwA0zW6wB3Hz95w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6802998080481320961,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6997399801189268169", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675944581962?e=1677240000&v=beta&t=SdNKX9OIt0-8DTuAC8sncKZOBoqjg5pinaAjmrIPCd4", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675944581962?e=1677240000&v=beta&t=qHSnrjALQKK5ecxol6TppbVdbAoi4ItktFMETd3PRzY", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675944581962?e=1677240000&v=beta&t=Y65SHEQLOHzI6D9gCVNyXzmWJORDMIahuhn6dn0HTMs", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675944581962?e=1677240000&v=beta&t=P41BrAhe0ZjTec6fdAlIo80FLX9WefqQczjjsGpeCek", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHfFzF5ORWT9A/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6997399801189268169)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6997399801189268169)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Tu seras autonome, mon territoire ! by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/articles-de-presse/tu-seras-autonome-mon-territoire/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Tu seras autonome, mon territoire !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6802998080066076672,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le nec plus ultra en mati\u00e8re d'\u00e9nergie, pour un territoire, c'est d'\u00eatre autonome. Cet adjectif laisse entendre que l'on deviendrait seul ma\u00eetre de son destin, s'extrayant alors de tous les risques li\u00e9s \u00e0 notre approvisionnement \u00e9nerg\u00e9tique actuel. Malheureusement, \u00e0 bien y regarder ce terme ne peut pas devenir une r\u00e9alit\u00e9. \n\nPar exemple, quiconque utilise un objet contenant de l'acier (une chaise, une casserole, un robinet, un couteau...) n'est pas \"autonome\" : aucune collectivit\u00e9 fran\u00e7aise n'a de minerai de fer (qui n'est pas une ressource \u00e9nerg\u00e9tique il est vrai, mais qui doit venir d'ailleurs, avec du p\u00e9trole), ou de charbon m\u00e9tallurgique. \n\nQuiconque ach\u00e8te un produit manufactur\u00e9 ou qui se mange ach\u00e8te du p\u00e9trole, du gaz et du charbon (ayant fait fonctionner les industries ou transports \u00e0 l'amont), et il est peu probable que l'on voie demain matin un d\u00e9partement ou une r\u00e9gion disposer sur son sol de toute la chaine allant de la mine au produit fini, \u00e9nergie comprise.\n\nLe bon terme pour un territoire n'est donc pas l'autonomie, mais la r\u00e9silience (sujet d'\u00e9tude actuellement pour The Shift Project : https://lnkd.in/diZSF5w ). Et l'augmenter face aux d\u00e9fis pour l'avenir ne se r\u00e9sume pas \u00e0 installer des ENR \u00e9lectriques, sinon ca serait simple." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6802998080066076672,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6802998080481320961,urn:li:activity:6802998080481320961,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 85, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6802998080481320961,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6802998080481320961,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6802998080481320961", + "threadId": "activity:6802998080481320961", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6802998080481320961", + "urn": "urn:li:activity:6802998080481320961", + "numComments": 279, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6802998080481320961", + "reactionTypeCounts": [ + { + "count": 1415, + "reactionType": "LIKE" + }, + { + "count": 117, + "reactionType": "INTEREST" + }, + { + "count": 101, + "reactionType": "MAYBE" + }, + { + "count": 28, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6802998080481320961", + "numLikes": 1681, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6802998080481320961", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1681, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6802978004948545538,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1024481", + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "y8L1nFBZQ0WPl4ETnwG8GA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "y8L1nFBZQ0WPl4ETnwG8GA==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Carbone 4", + "actionTarget": "https://www.linkedin.com/company/carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1024481" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "118,673 followers" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6802963108739600384,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6802963108739600384", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6802963108739600384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6802963108739600384)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/carbone-4_nous-rejoindre-activity-6802963108739600384-rcJY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6802963108445986817", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1024481", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6802963108739600384,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6802963108739600384,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6802963108445986817", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "dKpIXIykXh3fav2vFlKiyA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6802963108739600384,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7848989978666982865", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1621945471374?e=1679529600&v=beta&t=5h2vxuIX4Sgf29heTOOFkp8p1pdyzvHKBoKGOh33IQE", + "expiresAt": 1679529600000, + "height": 1071 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1621945471267?e=1679529600&v=beta&t=6y2C8LwNdfVCBphhjZGy66TEsQRJXJw3flBEGiB6xJs", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1621945471267?e=1679529600&v=beta&t=0xr7aOjFuHVaXO0nka_BErVMXmEhY4k2aTIuLI6CxE4", + "expiresAt": 1679529600000, + "height": 669 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1621945471267?e=1679529600&v=beta&t=zu7FVoLmxGyrKgOQMm3OsND4Dj0C6cLyBmuJvAc58sc", + "expiresAt": 1679529600000, + "height": 251 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1621945471267?e=1679529600&v=beta&t=yDCYneSrpLKI_z04XuYSbm_5cCSv79bHertuMOHSXeQ", + "expiresAt": 1679529600000, + "height": 83 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1621945471267?e=1679529600&v=beta&t=e-Ce3ZRZ3RD-GHC31zLPqcX3ox4Vta2d2yJMOiAjM-k", + "expiresAt": 1679529600000, + "height": 418 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D22AQGez4jtZbH8FQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.52294921875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7848989978666982865)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7848989978666982865)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nous rejoindre by carbone4.com", + "actionTarget": "http://www.carbone4.com/nous-rejoindre/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nous rejoindre" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6802963108445986817,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Carbone 4 recrute ! \n\nConsultez nos offres : \n\n\u27a1\ufe0f Stage Assistant\u00b7e communication & identit\u00e9 visuelle \n\u27a1\ufe0f Consultant\u00b7e Senior B\u00e2timent-Immobilier\n\u27a1\ufe0f Consultant\u00b7e Senior Strat\u00e9gie \n\u27a1\ufe0f Consultant\u00b7e Senior sp\u00e9cialiste de l\u2019ACV\n\u27a1\ufe0f Consultant\u00b7e Senior Finance\n\u27a1\ufe0f Consultant\u00b7e \u00e0 Paris, dominante data climat\n\u27a1\ufe0f Consultant\u00b7e \u00e0 Paris, dominante cartographie\n\n\u2935\ufe0f\nhttps://lnkd.in/dxjuE7D\n " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6802963108445986817,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6802963108739600384,urn:li:activity:6802963108739600384,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 2, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6802963108739600384,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6802963108739600384,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6802963108739600384", + "threadId": "activity:6802963108739600384", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6802963108739600384", + "urn": "urn:li:activity:6802963108739600384", + "numComments": 4, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6802963108739600384", + "reactionTypeCounts": [ + { + "count": 62, + "reactionType": "LIKE" + }, + { + "count": 4, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6802963108739600384", + "numLikes": 68, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6802963108739600384", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 68, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6802978004948545538", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6802978004948545538)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6802978004948545538)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nous-rejoindre-activity-6802978004948545538-cO67?utm_source=share&utm_medium=member_desktop" + }, + { + "subActionsMenu": { + "title": "Who would you like to unfollow?", + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + } + ] + }, + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_ACTIONS", + "text": "Unfollow" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6802978004696883200", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6802978004948545538", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6802978004948545538,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6802978004948545538,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6802978004696883200", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "dKpIXIykXh3fav2vFlKiyA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6802978004948545538,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6802978004696883200,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il para\u00eet que Linkedin c'est (aussi) fait pour les gens qui ont des offres d'emploi et pour d'autres qui en cherchent. Alors voici une liste de courses r\u00e9dig\u00e9e par un(e) repr\u00e9sentant(e) du premier bord \u00e0 destination du second." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6802978004696883200,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6802978004948545538,urn:li:activity:6802978004948545538,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 12, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6802978004948545538,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6802978004948545538,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6802978004948545538", + "threadId": "activity:6802978004948545538", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6802978004948545538", + "urn": "urn:li:activity:6802978004948545538", + "numComments": 21, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6802978004948545538", + "reactionTypeCounts": [ + { + "count": 342, + "reactionType": "LIKE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6802978004948545538", + "numLikes": 366, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6802978004948545538", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 366, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6802540699913859072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6802540699913859072", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6802540699913859072)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6802540699913859072)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climate-stress-tests-how-to-read-the-results-activity-6802540699913859072-jI-6?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6802540699561549824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6802540699913859072", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6802540699913859072,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6802540699913859072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6802540699561549824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "W1xRrCANfwX0fSbQjy7G5g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6802540699913859072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8913288340500831559", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676289115993?e=1677240000&v=beta&t=Adb9QjfA0iIYR23bb0MM6dVF40izb6Cn6mOfrMl_SaA", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676289115993?e=1677240000&v=beta&t=caKL_RJX3ujSc1f_pEATLIHs43et75bsRnKYrYyeK2k", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676289115993?e=1677240000&v=beta&t=lLtQPIZwcedQzKiH9nM6xP9Y0dPtLtQU_og7zmj8wCU", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676289115993?e=1677240000&v=beta&t=sTrqG80Nhy7B2JTber6K4uwK8nT0Wf654i0eHHRkcUk", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHiey1NhnsNmg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8913288340500831559)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8913288340500831559)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 8 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climate Stress Tests: how to read the results of the exercise? | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/climate-stress-tests-how-to-read-the-results-of-the-exercise" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climate Stress Tests: how to read the results of the exercise? | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6802540699561549824,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 306, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "3UPBCwq4RbKpQHNDHGrjkg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Il y a peu, l'Autorit\u00e9 de contr\u00f4le prudentiel et de r\u00e9solution (ACPR), un organisme \"log\u00e9\" \u00e0 la Banque de France qui a pour mandat la supervision des banques et assurances, a conduit un exercice de \"stress tests\" sur la solidit\u00e9 des \u00e9tablissements bancaires et financiers vis-\u00e0)vis des \"risques climat\". \n\nCarbone 4 vous en propose un d\u00e9cryptage (en anglais) qui permet de comprendre ce qui a \u00e9t\u00e9 fait, et, du coup, quelles sont les limites (fortes en l'esp\u00e8ce) de l'exercice.\n\nLa bonne nouvelle, c'est de l'avoir fait. La mauvaise, c'est que les limites conduisent \u00e0 un r\u00e9sultat excessivement rassurant. Il faudrait donc rapidement le refaire avec une m\u00e9thode plus appropri\u00e9e !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6802540699561549824,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6802540699913859072,urn:li:activity:6802540699913859072,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 5, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6802540699913859072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6802540699913859072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6802540699913859072", + "threadId": "activity:6802540699913859072", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6802540699913859072", + "urn": "urn:li:activity:6802540699913859072", + "numComments": 5, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6802540699913859072", + "reactionTypeCounts": [ + { + "count": 81, + "reactionType": "LIKE" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6802540699913859072", + "numLikes": 94, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6802540699913859072", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 94, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6802516033795051520,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6802516033795051520", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6802516033795051520)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6802516033795051520)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_transition-%C3%A9nerg%C3%A9tique-la-tour-eiffel-%C3%A9clair%C3%A9e-activity-6802516033795051520-jx9O?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6802516033333665792", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6802516033795051520", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6802516033795051520,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6802516033795051520,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6802516033333665792", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "rbKhLmcoBVihHIJ/kBHRVQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6802516033795051520,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7579995269281681029", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675694387361?e=1677240000&v=beta&t=Kk1UeAYMeGOzUTo_N6JClZbFmDwc8LQMvV1XEttNYbo", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675694387362?e=1677240000&v=beta&t=bTR1_xxzy3IeHGf2O5jk6z9KmXoRvP8LJq12ZrrEjWY", + "expiresAt": 1677240000000, + "height": 675 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675694387362?e=1677240000&v=beta&t=wgOACzT5uftkw6nhAoMZYSBZWnB3jwSSBvZu7OdioIs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675694387362?e=1677240000&v=beta&t=AfjUyyzxWG304fgfMk8wec-bx4wN33a-z6toPsC7ahs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQG-6UuXXK4Pug/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7579995269281681029)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7579995269281681029)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "leparisien.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Transition \u00e9nerg\u00e9tique : la tour Eiffel \u00e9clair\u00e9e gr\u00e2ce \u00e0 l\u2019hydrog\u00e8ne by leparisien.fr", + "actionTarget": "https://www.leparisien.fr/info-paris-ile-de-france-oise/transports/transition-energetique-un-son-et-lumiere-sur-la-tour-eiffel-eclairee-grace-a-lhydrogene-23-05-2021-SD3IQYRAPNB6PN53DH2RZCTSNQ.php" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Transition \u00e9nerg\u00e9tique : la tour Eiffel \u00e9clair\u00e9e gr\u00e2ce \u00e0 l\u2019hydrog\u00e8ne" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6802516033333665792,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 15, + "length": 14, + "miniProfile": { + "firstName": "jila", + "lastName": "Varoquier", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABh8GWYB1MY_PjAeG98ygu729gPU8Pi5ug0", + "occupation": "Journaliste chez Le Parisien", + "objectUrn": "urn:li:member:410786150", + "entityUrn": "urn:li:fs_miniProfile:ACoAABh8GWYB1MY_PjAeG98ygu729gPU8Pi5ug0", + "publicIdentifier": "jila-varoquier-5726a3b5", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517617564072?e=1681948800&v=beta&t=8rbEESYNoyKivSkdhUG7nMu8bAwojvEMZ2su0ToVOF8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517617564072?e=1681948800&v=beta&t=G5UA5A-MA1yi27QPORrCIyqiW840Dc154A_3YDCcxvU", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517617564072?e=1681948800&v=beta&t=8NFlkWC8wfdHcEFtxHw5XzhAD4-9lAsL45NM6e4xTKc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517617564072?e=1681948800&v=beta&t=rcSp97zHhPbwpwXdFcjaSyFE2OjBG_uRxz-j6qZPMh0", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQEdjSdGgOEZZw/profile-displayphoto-shrink_" + } + }, + "trackingId": "rmFv95yIRruY+A/7RF7sLg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 35, + "length": 11, + "miniCompany": { + "objectUrn": "urn:li:company:623589", + "entityUrn": "urn:li:fs_miniCompany:623589", + "name": "Le Parisien", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1625869709060?e=1684972800&v=beta&t=9UMB0AWH70suQvVS57GtQIZ0zF1U9YmEv0PF4vjHdgs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1625869709060?e=1684972800&v=beta&t=E6a-mz1HFOQxQbaKbLUYqT6SzM83tOuGoT2NjUTbt14", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1625869709060?e=1684972800&v=beta&t=CB7nTfpGva-qPyEsaiXfpsqsm9NBjNJp_-4q3i2Ypnc", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQFpVJld1P2Jzw/company-logo_" + } + }, + "universalName": "le-parisien", + "dashCompanyUrn": "urn:li:fsd_company:623589", + "trackingId": "rkcOiJefSWK9dcLitjVe0A==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Cet article de jila Varoquier dans Le Parisien n'est pas en libre acc\u00e8s. Mais le sont les 3 premi\u00e8res phrases du chap\u00f4, dans lequel l'hydrog\u00e8ne est qualifi\u00e9 d'\u00e9nergie renouvelable. Il faut aller dans le corps de l'article pour que l'on rappelle la r\u00e9alit\u00e9 : l'hydrog\u00e8ne, aujourd'hui, est fabriqu\u00e9 \u00e0 95% dans le monde avec des \u00e9nergies fossiles (le pourcentage n'est pas donn\u00e9, mais ca c'est un d\u00e9tail). \n\nLe premier proc\u00e9d\u00e9 (et \u00e0 peu pr\u00e8s le seul utilis\u00e9 en France) est le \"steam methane reforming\", qui sch\u00e9matiquement consiste \u00e0 faire 2*H20 + CH4 -> 4*H2 + CO2 (rappelons que CH4 est le m\u00e9thane, constituant principal du gaz naturel).\n\nCette r\u00e9action est endothermique, c'est-\u00e0-dire qu'elle n\u00e9cessite un apport d'\u00e9nergie sous forme de chaleur. Cette chaleur est amen\u00e9e, en pareil cas, par la combustion du gaz qui n'est pas utilis\u00e9 comme mati\u00e8re premi\u00e8re. L'ensemble n'est ni renouvelable (enfin il l'est si on patiente 50 millions d'ann\u00e9es, temps de formation du gaz fossile !) ni d\u00e9carbon\u00e9 (10 tonnes de CO2 par tonne d'hydrog\u00e8ne).\n\nIl aurait \u00e9t\u00e9 souhaitable que le chap\u00f4 ne pr\u00e9sente pas comme une r\u00e9alit\u00e9 d'aujourd'hui ce qui n'est qu'un r\u00eave pour demain, qui ne sera jamais atteint \u00e0 la bonne \u00e9chelle." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6802516033333665792,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6802516033795051520,urn:li:activity:6802516033795051520,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 110, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6802516033795051520,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6802516033795051520,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6802516033795051520", + "threadId": "activity:6802516033795051520", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6802516033795051520", + "urn": "urn:li:activity:6802516033795051520", + "numComments": 307, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6802516033795051520", + "reactionTypeCounts": [ + { + "count": 1845, + "reactionType": "LIKE" + }, + { + "count": 192, + "reactionType": "INTEREST" + }, + { + "count": 157, + "reactionType": "MAYBE" + }, + { + "count": 63, + "reactionType": "PRAISE" + }, + { + "count": 14, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6802516033795051520", + "numLikes": 2278, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6802516033795051520", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2278, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6802182550086291456,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6802182550086291456", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6802182550086291456)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6802182550086291456)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_neutralit%C3%A9-carbone-des-villes-lev%C3%A9lo-10-activity-6802182550086291456-YRel?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6802182549704593408", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6802182550086291456", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6802182550086291456,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6802182550086291456,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6802182549704593408", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "gYHA3naJk/NZa8ymyLOnUw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6802182550086291456,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8559492401334049216", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675490098371?e=1677240000&v=beta&t=RCkSDJotM9RskLVODaTxwYbB3M0yTmN5tNtjc1Eye2c", + "expiresAt": 1677240000000, + "height": 394 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675490098372?e=1677240000&v=beta&t=8FazlRad-90Bbiafi766HE-IisibG0HvGBFALCJV3DA", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675490098372?e=1677240000&v=beta&t=N9Mz-G3R25ITqX-iMtINavmQPU4TzHoNkS6eOFlD8xM", + "expiresAt": 1677240000000, + "height": 78 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675490098372?e=1677240000&v=beta&t=0sM1w3R71ZYEJCf9yE4tU-yLefIDEHN21koM56RgPzU", + "expiresAt": 1677240000000, + "height": 236 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQG0ewavqMCSfw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8559492401334049216)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8559492401334049216)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theconversation.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Neutralit\u00e9 carbone des villes : le v\u00e9lo 10 fois plus efficace que la voiture \u00e9lectrique by theconversation.com", + "actionTarget": "https://theconversation.com/neutralite-carbone-des-villes-le-velo-10-fois-plus-efficace-que-la-voiture-electrique-158808?fbclid=IwAR3WzqcYREmP3TAul9H_laKIoM6cV6qXyqc6oglqCP8TWL4HMvOm98Wzd1Q" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Neutralit\u00e9 carbone des villes\u00a0: le\u00a0v\u00e9lo 10\u00a0fois plus efficace que la\u00a0voiture \u00e9lectrique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6802182549704593408,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Et si la meilleure voiture \u00e9lectrique \u00e9tait... un v\u00e9lo \u00e9lectrique ? La citadine \u00e9lectrique, en France, c'est 70 grammes de CO2 par km fabrication comprise. C'est mieux que les 180 de son \u00e9quivalent essence, mais beaucoup trop pour viser la neutralit\u00e9. En outre, la d\u00e9ployer rapidement demande :\n- de conserver une aci\u00e9rie importante (la production d'acier \u00e9met autant que les 2/3 du milliard de voitures dans le monde, et \u224820% sert aux transports)\n- de construire des batteries en quantit\u00e9 massive (l'AIE indiquait r\u00e9cemment qu'il fallait multiplier la production de nickel par 20 en 20 ans pour le sc\u00e9nario \"2\u00b0C\", pour l'essentiel pour des v\u00e9hicules \u00e9lectriques)\n- d'augmenter la puissance \u00e9lectrique pilotable (m\u00eame avec une charge intelligente), et cela viendra en plus de celle demand\u00e9e par l'\u00e9lectrification du chauffage, de l'industrie...\n\nSi le but est de baisser rapidement les \u00e9missions, non de sauver les constructeurs auto :), c'est une politique du v\u00e9lo \u00e9lectrique qu'il faut mener, indique cet article de The Conversation. De fait, cela demande, par v\u00e9hicule, 50 fois moins d'acier, et 100 fois moins de batterie et de puissance \u00e9lectrique. A moyens identiques, on substitue donc 50 fois plus vite...\n\nLe Shift Project avait conclu de mani\u00e8re identique : https://lnkd.in/gWp3VVt\n" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6802182549704593408,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6802182550086291456,urn:li:activity:6802182550086291456,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 289, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6802182550086291456,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6802182550086291456,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6802182550086291456", + "threadId": "activity:6802182550086291456", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6802182550086291456", + "urn": "urn:li:activity:6802182550086291456", + "numComments": 693, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6802182550086291456", + "reactionTypeCounts": [ + { + "count": 4170, + "reactionType": "LIKE" + }, + { + "count": 233, + "reactionType": "INTEREST" + }, + { + "count": 181, + "reactionType": "MAYBE" + }, + { + "count": 89, + "reactionType": "PRAISE" + }, + { + "count": 59, + "reactionType": "EMPATHY" + }, + { + "count": 39, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6802182550086291456", + "numLikes": 4771, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6802182550086291456", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4771, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6801854830697574400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6801854830697574400", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6801854830697574400)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6801854830697574400)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_neutre-en-carbone-une-all%C3%A9gation-environnementale-activity-6801854830697574400-YM4v?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6801854830194241536", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6801854830697574400", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6801854830697574400,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6801854830697574400,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6801854830194241536", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "A91PwkpeV6F7b44FPRbeTw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6801854830697574400,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8344508336441194771", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1621667347872?e=1677240000&v=beta&t=wCMg0WFkfYa2FqeU1SjgmRCzGTMXAoxO2NQo2ZJTM9E", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1621667347872?e=1677240000&v=beta&t=LA41VpWLiiwUqFoauzWiU2DwKR64DEDg3IL63fb5Gxs", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1621667347872?e=1677240000&v=beta&t=q6UlXsC7oLBM2URlx9tOQ8C7SLwiOW7E3k_DMsGIr-w", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1621667347872?e=1677240000&v=beta&t=EYNDQsuQaTrY-nC9w_aYCecRfntKl2EtGdtrOu39H-g", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHkBXL3m6DPmA/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8344508336441194771)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8344508336441194771)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "arnaudgossement.com \u2022 9 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \"Neutre en carbone\" : une all\u00e9gation environnementale bient\u00f4t interdite dans la publicit\u00e9 (loi climat et r\u00e9silience) - Gossement Avocats by arnaudgossement.com", + "actionTarget": "http://www.arnaudgossement.com/archive/2021/05/22/neutre-en-carbone-une-publicite-bientot-interdite-loi-clima-6317458.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\"Neutre en carbone\" : une all\u00e9gation environnementale bient\u00f4t interdite dans la publicit\u00e9 (loi climat et r\u00e9silience) - Gossement Avocats" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6801854830194241536,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Arnaud Gossement livre une analyse int\u00e9ressante d'un amendement gouvernemental qui a \u00e9t\u00e9 introduit dans la loi climat avant son vote au S\u00e9nat, et qui a \u00e9t\u00e9 adopt\u00e9. Cet amendement proscrit l'emploi de l'expression \"neutre en carbone\" dans toute publicit\u00e9, en s'appuyant sur un avis de l'Ademe qui adoptait le m\u00eame point de vue (https://lnkd.in/dS6sekA ). \n\nEt, plus largement, l'amendement proscrit le fait qu'un produit soit pr\u00e9sent\u00e9 comme \"d\u00e9pourvu de cons\u00e9quences n\u00e9gatives sur le climat\" (donc \"z\u00e9ro CO2\", et autres formulations analogues).\n\nLa question que l'on peut se poser est de savoir ce que d\u00e9cidera le juge si une publicit\u00e9 est attaqu\u00e9e pour le mot \"vert\". En effet, quand cet adjectif est employ\u00e9, il ne fait aucun doute que cela est destin\u00e9 \u00e0 cr\u00e9er dans la cervelle de la personne qui lit, \u00e9coute ou regarde une assimilation avec \"sans nocivit\u00e9\" (y compris sur le climat). \n\nEn allant jusqu'au bout de la logique, cet article devrait conduire \u00e0 ne tol\u00e9rer que les produits ou services qui revendiquent un label ayant fait l'objet d'une normalisation explicite (bio, par exemple). Mais \"vert\", non." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6801854830194241536,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6801854830697574400,urn:li:activity:6801854830697574400,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 42, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6801854830697574400,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6801854830697574400,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6801854830697574400", + "threadId": "activity:6801854830697574400", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6801854830697574400", + "urn": "urn:li:activity:6801854830697574400", + "numComments": 65, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6801854830697574400", + "reactionTypeCounts": [ + { + "count": 659, + "reactionType": "LIKE" + }, + { + "count": 51, + "reactionType": "PRAISE" + }, + { + "count": 49, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6801854830697574400", + "numLikes": 803, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6801854830697574400", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 803, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6801407529000693760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6801407529000693760", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6801407529000693760)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6801407529000693760)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_face-%C3%A0-lurgence-climatique-ladaptation-activity-6801407529000693760-OKcR?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6801407528413495296", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6801407529000693760", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6801407529000693760,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6801407529000693760,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6801407528413495296", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "xc36xv+iBOM/QOAISoNo4Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6801407529000693760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8559480503746423409", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676557915202?e=1677240000&v=beta&t=EzXu_3GHf0bO9CLbisq7VVJc2YkoVQohd9zEwhtjJmk", + "expiresAt": 1677240000000, + "height": 394 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676557915203?e=1677240000&v=beta&t=Y7_x79oMqKyK0oSr3vjQ3rD9Nf2wlZJ8js5QhDe7iu8", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676557915203?e=1677240000&v=beta&t=qb4Qpz-O1HQjdmNiq3NKFOjzlmjjGL-oTVP5kV3Y1Lo", + "expiresAt": 1677240000000, + "height": 78 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676557915203?e=1677240000&v=beta&t=qKqqU7o_eeVTsFX4rRdYj8xlpB0FajDiyalMkn4Y8Lw", + "expiresAt": 1677240000000, + "height": 236 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHrvtpuVhl9eg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8559480503746423409)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8559480503746423409)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theconversation.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Face \u00e0 l\u2019urgence climatique, l\u2019adaptation, c\u2019est d\u00e8s maintenant ! by theconversation.com", + "actionTarget": "https://theconversation.com/face-a-lurgence-climatique-ladaptation-cest-des-maintenant-159870" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Face \u00e0 l\u2019urgence climatique, l\u2019adaptation, c\u2019est d\u00e8s maintenant !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6801407528413495296,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 89, + "length": 14, + "miniProfile": { + "firstName": "Robert", + "lastName": "Vautard", + "dashEntityUrn": "urn:li:fsd_profile:ACoAADDm0SwBUA_FE_Tnf4cfBoaHW9qziJP3hw4", + "occupation": "Directeur de l'Institut Pierre-Simon Laplace chez CNRS - Centre national de la recherche scientifique", + "objectUrn": "urn:li:member:820433196", + "entityUrn": "urn:li:fs_miniProfile:ACoAADDm0SwBUA_FE_Tnf4cfBoaHW9qziJP3hw4", + "publicIdentifier": "robert-vautard-8909171aa", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1590179274174?e=1681948800&v=beta&t=BdTzW0kp89CxYcJ-JToXnQlqIiqKepRVA9DVPGTw9ZA", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1590179274174?e=1681948800&v=beta&t=Er5051x-ZEBShpMIzhDGIiekP6kv5snLuqVM5qRnwCk", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1590179274174?e=1681948800&v=beta&t=ZftZFLkNb3DaqbeitddSCOdhjFmhEVlwpYAMeEN0R7Y", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1590179274174?e=1681948800&v=beta&t=5q-xxIIgbLB9EZ-77qOkuhVTkt7HuX_LDlkU3vfe93U", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQEVJwS7MAUS1w/profile-displayphoto-shrink_" + } + }, + "trackingId": "KQqBTxkvQ7+FqOyJgR8euw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Deux chercheurs (Magali Reghezza, par ailleurs membre du Haut conseil pour le climat) et Robert Vautard, directeur de l'Institut Pierre Simon Laplace) publient dans The Conversation un article appelant \u00e0 acc\u00e9l\u00e9rer sur l'adaptation et la r\u00e9silience face au changement climatique. \n\nLa dur\u00e9e de vie d'un surplus de CO2 dans l'atmosph\u00e8re a une cons\u00e9quence majeure : non seulement le syst\u00e8me climatique ne peut pas \u00eatre \"remis dans son \u00e9tat de 1900\", mais en outre la d\u00e9rive va continuer \u00e0 l'avenir quoi que nous fassions sur les \u00e9missions.\n\nC'est \u00e0 partir de 2050, en gros, que l'\u00e9volution du syst\u00e8me va ref\u00e9leter de mani\u00e8re significative ce que nous ferons, ou pas, \u00e0 partir de maintenant. Ce qui est en jeu est de limiter la d\u00e9rive, mais l'inverser est impossible.\n\nLe climat de 2030 sera donc inexorablement plus inconfortable que celui de 2020, et celui de 2040 plus inconfortable que celui de 2030. Ni la 5G, ni l'extension de Roissy, ni la hausse du CAC 40, ni la baisse du ch\u00f4mage, ni la fin du coronavirus (si elle arrive) ne r\u00e9solvent spontan\u00e9ment ce probl\u00e8me. \n\nLes auteurs disent, \u00e0 raison, qu'il est urgent de s'en occuper BEAUCOUP plus s\u00e9rieusement. Lorsque les ennuis non g\u00e9rables seront l\u00e0, la seule certitude sera alors qu'ils deviendront pires avec le temps." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6801407528413495296,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6801407529000693760,urn:li:activity:6801407529000693760,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6801407529000693760,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6801407529000693760,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6801407529000693760", + "threadId": "activity:6801407529000693760", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6801407529000693760", + "urn": "urn:li:activity:6801407529000693760", + "numComments": 135, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6801407529000693760", + "reactionTypeCounts": [ + { + "count": 1428, + "reactionType": "LIKE" + }, + { + "count": 128, + "reactionType": "INTEREST" + }, + { + "count": 80, + "reactionType": "MAYBE" + }, + { + "count": 40, + "reactionType": "APPRECIATION" + }, + { + "count": 29, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6801407529000693760", + "numLikes": 1712, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6801407529000693760", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1712, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6801015605093830656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6801015605093830656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6801015605093830656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6801015605093830656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_triangle-de-gonesse-le-projet-dam%C3%A9nagement-activity-6801015605093830656-jTd-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6801015604640829440", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6801015605093830656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6801015605093830656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6801015605093830656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6801015604640829440", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "YXNO0dMyIzJoW0YkSurNBQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6801015605093830656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7847357014055827794", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675523006566?e=1677240000&v=beta&t=7OpwN9qGckty6seVJ2kYpfmPg4FbH8Hjvjuj0ZeMp24", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675523006566?e=1677240000&v=beta&t=cc2-YQduIojVFX7TP2dpo-3qemyUXkkt67DRT9TjjPA", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675523006566?e=1677240000&v=beta&t=R34ZMfmE3h5JXbYJ4zOXPjU_kAFfqlO-gXHVyCqBr4Q", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675523006567?e=1677240000&v=beta&t=ys2qRDJDkvFEj5q4xOoC1MO7_THPZu8c4G9G14HQnUY", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEsLykaRyV4rQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7847357014055827794)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7847357014055827794)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "actu-environnement.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Triangle de Gonesse : le projet d'am\u00e9nagement alternatif suscite des r\u00e9actions partag\u00e9es by actu-environnement.com", + "actionTarget": "https://www.actu-environnement.com/ae/news/triangle-gonesse-amenagement-annonces-jean-castex-reactions-37508.php4" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Triangle de Gonesse : le projet d'am\u00e9nagement alternatif suscite des r\u00e9actions partag\u00e9es" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6801015604640829440,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'\u00e9lu local aime am\u00e9nager. Traduisez : b\u00e9tonner :). Le centre commercial g\u00e9ant qui devait prendre place sur le triangle de Gonesse ne pouvant \u00eatre construit, que faire ?\nOption 1 : on laisse des champs, car l'Ile de France ne produit que 6% de son alimentation, situation qui deviendra intenable quand le p\u00e9trole - donc les camions - deviendront moins abondants. \nOption 1 \"luxe\" : on cultive les champs avec des m\u00e9thodes plus douces pour l'environnement (on remet des haies, on utilise moins ou pas de phytos, etc) \nOption 2 : on met des for\u00eats.\nOption 3 : on \"am\u00e9nage\", c'est-\u00e0-dire qu'on \u00e9tale la ville, artificialise les sols, et met encore plus de bouches \u00e0 nourrir en Ile de France, qui produit encore moins qu'avant. On \"renforce l'attractivit\u00e9 du p\u00f4le a\u00e9roportuaire\" (alors que le trafic a\u00e9rien doit baisser), tout en se pr\u00e9sentant comme un h\u00e9ros de l'environnement parce que l'on ne b\u00e9tonne que la moiti\u00e9 des terres agricoles du d\u00e9partement (alors ca c'est vert !)\n\nRenoncer au b\u00e9tonnage est tr\u00e8s difficile pour les \u00e9lus locaux. Opposer la raison collective \u00e0 tout pr\u00e9tendant au logement neuf, \u00e0 l'entrepot neuf, \u00e0 l'usine neuve, au bureau neuf, au commerce neuf, et aux emplois (et recettes) associ\u00e9s, demande une conviction, une cr\u00e9ativit\u00e9 (pour les alternatives), et une p\u00e9dagogie rares." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6801015604640829440,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6801015605093830656,urn:li:activity:6801015605093830656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 117, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6801015605093830656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6801015605093830656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6801015605093830656", + "threadId": "activity:6801015605093830656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6801015605093830656", + "urn": "urn:li:activity:6801015605093830656", + "numComments": 223, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6801015605093830656", + "reactionTypeCounts": [ + { + "count": 2112, + "reactionType": "LIKE" + }, + { + "count": 163, + "reactionType": "MAYBE" + }, + { + "count": 131, + "reactionType": "PRAISE" + }, + { + "count": 57, + "reactionType": "INTEREST" + }, + { + "count": 28, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6801015605093830656", + "numLikes": 2507, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6801015605093830656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2507, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6800838145479852032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6800838145479852032", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6800838145479852032)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6800838145479852032)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_chaleur-remarquable-entre-la-volga-et-loural-activity-6800838145479852032-vG_R?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6800838145056235520", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6800838145479852032", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6800838145479852032,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6800838145479852032,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6800838145056235520", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "7Zzto4oOX1XiyIzmcC62SQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6800838145479852032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7177053377778336036", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 450, + "fileIdentifyingUrlPathSegment": "800/0/1676244936002?e=1677240000&v=beta&t=qNdDm1tdS93IfGumvnXd5RfQ_xThP9GVRop2a6LAemQ", + "expiresAt": 1677240000000, + "height": 310 + }, + { + "width": 450, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676244936002?e=1677240000&v=beta&t=k1uD2kxthomLlvgOAPLJ7m20L6rvPrScRq5HhCDaMo8", + "expiresAt": 1677240000000, + "height": 310 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676244936002?e=1677240000&v=beta&t=4SVh-NjcD7x11s4i2ZZ6Gq7PhzNf8Y-lKFR3Of2MtFc", + "expiresAt": 1677240000000, + "height": 110 + }, + { + "width": 450, + "fileIdentifyingUrlPathSegment": "480/0/1676244936003?e=1677240000&v=beta&t=RIdHO2Zk69ebIznKdn9L02bqeVFEwKDUjQrnqLdC-B4", + "expiresAt": 1677240000000, + "height": 310 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGLnlR5HYzAbw/articleshare-shrink_" + }, + "displayAspectRatio": 0.6888888888888889 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Anomalie de temp\u00e9rature \u00e0 2 m sur l'Europe le 19 mai 2021. \u00a9 ClimateReanalyzer.org" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7177053377778336036)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7177053377778336036)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "meteofrance.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Chaleur remarquable entre la Volga et l\u2019Oural by meteofrance.com", + "actionTarget": "https://meteofrance.com/actualites-et-dossiers/actualites/planete/chaleur-remarquable-entre-la-volga-et-loural" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Chaleur remarquable entre la Volga et l\u2019Oural" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6800838145056235520,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le r\u00e9chauffement climatique, c'est que ca se r\u00e9chauffe. Du coup, quand il fait un peu frais quelque part, ce qui est le cas en France depuis quelques semaines, la bonne question est souvent de savoir o\u00f9, sym\u00e9triquement, il fait un peu trop chaud. \n\nEn effet, aux moyennes latitudes, avec notre r\u00e9gime d'anticyclones et de d\u00e9pressions, c'est \u00e0 dire de mouvements giratoires de l'air, tel flux - frais - venant du nord ici va avec un flux - chaud - venant du sud l\u00e0. \n\nLa carte ci-dessous donne la r\u00e9ponse pour la situation actuelle : c'est \u00e0 l'Est et au Nord que ca chauffe. Et, telle le furet du Bois Joli, la vague de chaleur repassera malheureusement par ici..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6800838145056235520,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6800838145479852032,urn:li:activity:6800838145479852032,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 71, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6800838145479852032,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6800838145479852032,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6800838145479852032", + "threadId": "activity:6800838145479852032", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6800838145479852032", + "urn": "urn:li:activity:6800838145479852032", + "numComments": 286, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6800838145479852032", + "reactionTypeCounts": [ + { + "count": 1216, + "reactionType": "LIKE" + }, + { + "count": 245, + "reactionType": "INTEREST" + }, + { + "count": 208, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6800838145479852032", + "numLikes": 1682, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6800838145479852032", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1682, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6800670818016759808,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6800670818016759808", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6800670818016759808)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6800670818016759808)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_replay-unpacte-pour-la-plan%C3%A8te-apr%C3%A8s-midi-activity-6800670818016759808-85S1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6800670817576341504", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6800670818016759808", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6800670818016759808,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6800670818016759808,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6800670817576341504", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "t/pH2i4GvroQS8b6nN75dQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6800670818016759808,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7490519236514604013", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676489969154?e=1677240000&v=beta&t=EVd-O4aPfO4V6gRvWdl4zsYUwvoC08hzHfhbVRu8coc", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676489969154?e=1677240000&v=beta&t=1y4unO2fmLd0ju3JB3T9A2akUFeXBmUnNNMYqtTtg1I", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676489969154?e=1677240000&v=beta&t=itnBoeLZYLWruBWaNou5xgItvV5FwsNs8FWzbTDi2cA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676489969155?e=1677240000&v=beta&t=b5yYwLw2EBkNwg1-1i43tqGXyw9hf20RSCukFYP-KRs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGMPZ4GIIyMsw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7490519236514604013)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7490519236514604013)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: [REPLAY] UNPACTE pour la Plan\u00e8te - Apr\u00e8s-midi (Partie 1) on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=jXk5YokZ8v4&t=1400s" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Le 6 mai 2021, \u00e9v\u00e9nement au Parc du Futuroscope. Le changement climatique va profond\u00e9ment modifier notre soci\u00e9t\u00e9 et nos entreprises. Venez rencontrer des experts au travers de conf\u00e9rences, ateliers et table ronde. Des solutions concr\u00e8tes pour r\u00e9duire..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "[REPLAY] UNPACTE pour la Plan\u00e8te - Apr\u00e8s-midi (Partie 1)" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6800670817576341504,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le 6 mai dernier, votre serviteur a particip\u00e9 \u00e0 un \u00e9v\u00e9nement organis\u00e9 par le Centre des Jeunes Dirigeants de Poitiers intitul\u00e9 \"un pacte pour la plan\u00e8te\". \n\nS\u00e9quence classique de pr\u00e9sentation des enjeux + questions-r\u00e9ponses derri\u00e8re. On peut dire que je fais pour partie un m\u00e9tier de fain\u00e9ant : la description physique du probl\u00e8me est toujours la m\u00eame, et donc la pr\u00e9sentation qui en est faite ne change pas beaucoup d'une fois sur l'autre. Mais comme au bout d'un moment c'est d\u00e9sagr\u00e9able de raconter tr\u00e8s exactement la m\u00eame chose, il y a quand m\u00eame quelques micro-variantes : les habitu\u00e9s pourraient en faire une version d\u00e9riv\u00e9e du jeu des 7 diff\u00e9rences :) !\n\nNB : \u00e0 regarder en basse d\u00e9finition, \u00e9videmment, comme d'hab" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6800670817576341504,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6800670818016759808,urn:li:activity:6800670818016759808,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 11, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6800670818016759808,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6800670818016759808,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6800670818016759808", + "threadId": "activity:6800670818016759808", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6800670818016759808", + "urn": "urn:li:activity:6800670818016759808", + "numComments": 13, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6800670818016759808", + "reactionTypeCounts": [ + { + "count": 161, + "reactionType": "LIKE" + }, + { + "count": 6, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6800670818016759808", + "numLikes": 175, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6800670818016759808", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 175, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6800666514887344128,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6800666514887344128", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6800666514887344128)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6800666514887344128)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_usa-germany-set-new-ambitious-co2-reduction-activity-6800666514887344128-Tvr_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6800666514266574848", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6800666514887344128", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6800666514887344128,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6800666514887344128,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6800666514266574848", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "YKbXW9iYWRKJIixcqksubg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6800666514887344128,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7419558667702803907", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1621259679193?e=1677240000&v=beta&t=6EuACHvmY_uhmS6tNazaumazSJQ789PirLqM7U4sWKM", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1621259679193?e=1677240000&v=beta&t=oe2QkkpBSnipvyhq3xfOQdEz0AM3pAAD6f0bnl8AmN0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1621259679193?e=1677240000&v=beta&t=0gsOvhdNys9AsG5TL2XQiAgfXRKasph5lEpO_nbiGaE", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1621259679193?e=1677240000&v=beta&t=qMpt98W8ImZnhdpPztIer0Gfz6m5km8BGyI02jNEYvI", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFc03zmOPwhYQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7419558667702803907)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7419558667702803907)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbon4finance.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: USA & Germany set new ambitious CO2 reduction targets by carbon4finance.com", + "actionTarget": "http://www.carbon4finance.com/usa-germany-set-new-ambitious-co2-reduction-targets/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "USA & Germany set new ambitious CO2 reduction targets" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6800666514266574848,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "g8h4roxrT0iqJ5mo7Y+POw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbon4 Finance propose depuis quelques ann\u00e9es aux acteurs du monde financier (assureurs, gestionnaires d'actifs, fabricants d'indices, banques de gros, banques centrales, conseillers en gestion de patrimoine...) une base de donn\u00e9es qui \"note\" plusieurs milliers d'\u00e9metteurs d'actions et d'obligations sur le plan du climat : Carbon Impact Analytics (CIA). NB : nous proposons aussi des notes sur le risque physique du changement climatique, et, depuis peu, sur l'impact biodiversit\u00e9, mais ce n'est pas le sujet ici :)\n\nAu sein des \u00e9metteurs, il y a les Etats. Si vous avez de l'assurance vie en France, par exemple, une bonne partie de l'argent est investi dans des obligations \u00e9mises par un Etat de la zone euro.\n\nLa note CIA des \u00e9tats est calcul\u00e9e en prenant en compte 3 composantes : la vitesse de baisse (ou de hausse) des \u00e9missions par unit\u00e9 de PIB, le niveau actuel, et les engagements pour l'avenir.\n\nLes USA et l'Allemagne viennent de rehausser fortement leurs engagements. Est-ce que cela est suffisant pour fortement changer leur note vue par Carbon 4 Finance ? R\u00e9ponse dans cet article (en anglais), o\u00f9, pour ne pas nous faire taxer de chauvinisme mal plac\u00e9, nous avons aussi mis la Su\u00e8de et non la France :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6800666514266574848,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6800666514887344128,urn:li:activity:6800666514887344128,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 4, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6800666514887344128,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6800666514887344128,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6800666514887344128", + "threadId": "activity:6800666514887344128", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6800666514887344128", + "urn": "urn:li:activity:6800666514887344128", + "numComments": 6, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6800666514887344128", + "reactionTypeCounts": [ + { + "count": 36, + "reactionType": "LIKE" + }, + { + "count": 1, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6800666514887344128", + "numLikes": 38, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6800666514887344128", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 38, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6800313364812726272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6800313364812726272", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6800313364812726272)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6800313364812726272)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_half-of-emissions-cuts-will-come-from-future-activity-6800313364812726272-SVZG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6800313364317773824", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6800313364812726272", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6800313364812726272,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6800313364812726272,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6800313364317773824", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "8JlGXvp0L138uinYdTUlQA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6800313364812726272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7094695581498306761", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676568144274?e=1677240000&v=beta&t=TTJvWJB35xgb_FmDe4bc8VzYTDwkvlIYJRj87c7Axs4", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676568144274?e=1677240000&v=beta&t=VSqDfqag_RLN-adnlLteRPGxOHGHZHG55mEML0AJwmM", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676568144275?e=1677240000&v=beta&t=AzMYWH20RA8jjqrJ1sMPGR45hZxqfHrLQSqhSzL_BHk", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676568144275?e=1677240000&v=beta&t=CDwfAIl-siW77QfbHtwtsCujoXF4umvnvbbbybhH2mU", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHMIn0ax1h0Xg/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7094695581498306761)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7094695581498306761)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Half of emissions cuts will come from future tech, says John Kerry by theguardian.com", + "actionTarget": "https://www.theguardian.com/environment/2021/may/16/half-of-emissions-cuts-will-come-from-future-tech-says-john-kerry" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Half of emissions cuts will come from future tech, says John Kerry" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6800313364317773824,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les am\u00e9ricains semblent \"revenus \u00e0 la raison\" en ce qui concerne l'action dans le domaine du climat. Mais, \u00e0 bien y regarder, il n'est pas sur que les d\u00e9clarations actuelles soient beaucoup plus s\u00e9rieuses que les non-d\u00e9clarations du locataire pr\u00e9c\u00e9dent de la Maison Blanche.\n\nDans un article tout juste publi\u00e9 par The Guardian, John Kerry explique que la moiti\u00e9 des baisses n\u00e9cessaires pour parvenir \u00e0 la neutralit\u00e9 aux USA viendront de technologies \"non encore d\u00e9couvertes\". C'est un peu comme si un \u00e9l\u00e8ve en difficult\u00e9 \u00e0 l'\u00e9cole expliquait que la moiti\u00e9 de ses points \u00e0 la fin de l'ann\u00e9e viendront de mati\u00e8res \"non encore \u00e9tudi\u00e9es\", ou qu'un client surendett\u00e9 expliquait \u00e0 son banquier que la moiti\u00e9 de ses revenus va prochainement venir d'un m\u00e9tier et d'un employeur \"non encore existants\".\n\nQuand Kerry dit que le consommateur ne devra se priver de rien, il fait une r\u00e9\u00e9dition de \"The American way of life is not negociable\". C'est de la croissance verte pur jus, et cette mani\u00e8re de voir les choses est tout autant condamn\u00e9e \u00e0 l'\u00e9chec que les pr\u00e9c\u00e9dentes, si le but est bien de r\u00e9soudre le probl\u00e8me climatique de mani\u00e8re organis\u00e9e.\n\nB\u00e2tis sur un monde sans limite, les USA ne changeront pas de culture en une semaine. Kerry est bien plus proche de Trump que nous le pensons. Ne l'oublions pas." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6800313364317773824,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6800313364812726272,urn:li:activity:6800313364812726272,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 120, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6800313364812726272,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6800313364812726272,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6800313364812726272", + "threadId": "activity:6800313364812726272", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6800313364812726272", + "urn": "urn:li:activity:6800313364812726272", + "numComments": 201, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6800313364812726272", + "reactionTypeCounts": [ + { + "count": 1383, + "reactionType": "LIKE" + }, + { + "count": 209, + "reactionType": "MAYBE" + }, + { + "count": 167, + "reactionType": "INTEREST" + }, + { + "count": 29, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6800313364812726272", + "numLikes": 1804, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6800313364812726272", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1804, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6800098418749382656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6800098418749382656", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6800098418749382656)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6800098418749382656)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9cryptage-de-la-loi-climat-des-promesses-activity-6800098418749382656-LSxK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6800098418321592320", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6800098418749382656", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6800098418749382656,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6800098418749382656,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6800098418321592320", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "7KL4DpnrxKWVWOXhcPTwNg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6800098418749382656,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7223622285165400749", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1621350368364?e=1677240000&v=beta&t=o_ZPMUzZ3syTwReBTbTHow6kmBkKzVoPyjniOJ0eTkg", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1621350368364?e=1677240000&v=beta&t=PE56YzvAKORV-o8MKTZJKz7VoqMedbxXrMg_KqjJyNY", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1621350368364?e=1677240000&v=beta&t=UXdf7CMU6cQiUigN0-KMH9dznTy7BdstAqtIs13eLeQ", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1621350368364?e=1677240000&v=beta&t=j1fVmwijYKFWZAu4hIWRhmBiqMKjaY-9KcleFlhLypw", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEB88nQVKvVWA/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7223622285165400749)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7223622285165400749)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: D\u00e9cryptage de la loi climat : des promesses non tenues et une occasion manqu\u00e9e de faire \u00e9merger un texte historique by carbone4.com", + "actionTarget": "https://www.carbone4.com/decryptage-loi-climat/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "D\u00e9cryptage de la loi climat : des promesses non tenues et une occasion manqu\u00e9e de faire \u00e9merger un texte historique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6800098418321592320,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La loi climat, jusqu'o\u00f9 doit-elle nous contenter ou nous d\u00e9cevoir ? Carbone 4 vous propose une analyse rapide comparant les propositions de la Convention Citoyenne et les dispositions dans la loi qui vient d'\u00eatre vot\u00e9e.\n\nLa conclusion, elle est d\u00e9j\u00e0 connue : la loi n'est pas \u00e0 la hauteur de l'objectif initialement fix\u00e9 par le gouvernement. Mais la bonne question est de savoir quel est l'\u00e9cart. Cette publication tente de contribuer \u00e0 la question. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6800098418321592320,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6800098418749382656,urn:li:activity:6800098418749382656,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 15, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6800098418749382656,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6800098418749382656,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6800098418749382656", + "threadId": "activity:6800098418749382656", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6800098418749382656", + "urn": "urn:li:activity:6800098418749382656", + "numComments": 30, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6800098418749382656", + "reactionTypeCounts": [ + { + "count": 281, + "reactionType": "LIKE" + }, + { + "count": 38, + "reactionType": "INTEREST" + }, + { + "count": 21, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6800098418749382656", + "numLikes": 350, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6800098418749382656", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 350, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6799949013647929344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6799949013647929344", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6799949013647929344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6799949013647929344)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lavis-de-lademe-sur-la-neutralit%C3%A9-carbone-activity-6799949013647929344-_wdv?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6799949012976861184", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6799949013647929344", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6799949013647929344,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6799949013647929344,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6799949012976861184", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "O67Qp5LMYIC/nm5jjgJxig==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6799949013647929344,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7290827958291278482", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675440290767?e=1677240000&v=beta&t=V8hCEcwdHTH9TF_xRiSsE-dOxkRn6Yy6b6HBji-xVfU", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675440290767?e=1677240000&v=beta&t=DiU6aeeF_wrAgxQuG6PA1ThmyBDM87WDz8MuHo1lf2k", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675440290767?e=1677240000&v=beta&t=tAXzfGle5W5aHvhbc5gdqq0J6r9JOfN1ROtyXP1q0lo", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675440290767?e=1677240000&v=beta&t=ossrz3fascjx9cpc-J2mh47m-_OQxNKTsiFf6sDm4yo", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFTG5qIAcK0Iw/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7290827958291278482)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7290827958291278482)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 8 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L\u2019avis de l\u2019ADEME sur la neutralit\u00e9 carbone : d\u00e9cryptage | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/analyse-ademe-neutralite-carbone" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L\u2019avis de l\u2019ADEME sur la neutralit\u00e9 carbone : d\u00e9cryptage | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6799949012976861184,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le 1er avril dernier, mais ce n'\u00e9tait pas un gag, l'Ademe a \u00e9mis un avis assez d\u00e9taill\u00e9 sur la mani\u00e8re dont il fallait voir la neutralit\u00e9 quand il s'agit d'une entreprise. Le sujet est d'actualit\u00e9 : \u00e0 fin 2020, 1565 entreprises, 826 villes et 103 r\u00e9gions dans le monde avaient d\u00e9clar\u00e9 viser un objectif de \"neutralit\u00e9 carbone\" (https://lnkd.in/deEtheA )\n\nCarbone 4 vient de publier une ex\u00e9g\u00e8se de cette publication de l'Ademe, comportant notamment une comparaison du point de vue de cette agence avec les principes qui fondent la Net Zero Initiative (https://lnkd.in/d_WDb37 ).\n\nNous sommes tr\u00e8s heureux de constater que les deux (l'Ademe et NZI) sont tr\u00e8s raccord, pour la simple et bonne raison que les deux d\u00e9marches partent de la m\u00eame d\u00e9finition scientifique de la neutralit\u00e9, laquelle n'est, malheureusement, pas celle utilis\u00e9e par une large partie des entreprises qui annoncent un objectif en la mati\u00e8re.\n\nBonne lecture ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6799949012976861184,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6799949013647929344,urn:li:activity:6799949013647929344,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 20, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6799949013647929344,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6799949013647929344,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6799949013647929344", + "threadId": "activity:6799949013647929344", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6799949013647929344", + "urn": "urn:li:activity:6799949013647929344", + "numComments": 54, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6799949013647929344", + "reactionTypeCounts": [ + { + "count": 474, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 53, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6799949013647929344", + "numLikes": 610, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6799949013647929344", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 610, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6799713148472446976,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6799713148472446976", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6799713148472446976)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6799713148472446976)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_dans-un-article-publi%C3%A9-dans-le-journal-cell-activity-6799713148472446976-QvXc?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6799713147809746944", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6799713148472446976", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6799713148472446976,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6799713148472446976,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6799713147809746944", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "VHDpNOEpm/qczQyadFzGQQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6799713148472446976,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFm6c4LzVDFKQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFm6c4LzVDFKQ", + "artifacts": [ + { + "width": 1642, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1621177944788?e=1679529600&v=beta&t=zCVyD2wySJZJZ3-qqigAKJuyk2gzKSyjibYiOGMJK1c", + "expiresAt": 1679529600000, + "height": 1150 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1621177946575?e=1679529600&v=beta&t=81QPyRXAuoESWimwTLJoG3APVPAgCpAvv1WOV7KObRQ", + "expiresAt": 1679529600000, + "height": 14 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1621177946575?e=1679529600&v=beta&t=C6YX7d7FW8v7Hq_BH1ASYgznOwWlFIeKiNX59JQBsmo", + "expiresAt": 1679529600000, + "height": 896 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1621177946575?e=1679529600&v=beta&t=qDK_dioQKA1d8Jnm3dinlVx2iy05BSvMZIOD2W_jNo4", + "expiresAt": 1679529600000, + "height": 336 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1621177946575?e=1679529600&v=beta&t=_wMalF5VgcsnNCs0jMziJ0L74nPFamD7s4GDqV2zo0s", + "expiresAt": 1679529600000, + "height": 112 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1621177946575?e=1679529600&v=beta&t=ZXETWfhrqE-Hv-ORuVkzB8fRCS5Y1o3Iu40pLpTD7Dg", + "expiresAt": 1679529600000, + "height": 560 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFm6c4LzVDFKQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.7003654080389768 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6799713147809746944,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans un article publi\u00e9 dans le journal Cell, des chercheurs \u00e9valuent le risque de faire sortir la production agricole et l'\u00e9levage actuels de la zone dans laquelle des activit\u00e9s de cette nature sont possibles : https://lnkd.in/dH77ZC7\n\nLes zones terrestres sont r\u00e9f\u00e9renc\u00e9es en fonction de la temp\u00e9rature, des pr\u00e9cipitations et de l'\u00e9vapotranspiration (triangle de gauche de la figure).\n\nLa m\u00e9thode consiste \u00e0 voir, en fonction du sc\u00e9nario d'\u00e9mission, la fraction des syst\u00e8mes agricoles actuels qui se retrouveraient plac\u00e9s dans des zones o\u00f9 actuellement, sur terre, il y a des d\u00e9serts ou des conditions trop maigres pour des cultures (genre steppe).\n\nEn 2100, avec un sc\u00e9nario haut, un tiers de la production mondiale de nourriture pourrait se retrouver \"hors zone du possible\". En limitant le r\u00e9chauffement \u00e0 1,5 \u00b0C (ce qui est proche de l'impossible h\u00e9las) on limiterait le risque \u00e0 2% de la production.\n\nEvidemment ces chiffres sont \u00e0 prendre avec pr\u00e9caution. Evaluer le comportement du vivant \u00e0 l'avenir ne rel\u00e8ve pas de la simple physique, et par ailleurs tracteurs, engrais et phytosanitaires devraient se faire plus rares, car ils viennent des \u00e9nergies fossiles. Mais clairement le risque est fort d'avoir de gros probl\u00e8mes alimentaires." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6799713147809746944,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6799713148472446976,urn:li:activity:6799713148472446976,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 23, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6799713148472446976,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6799713148472446976,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6799713148472446976", + "threadId": "activity:6799713148472446976", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6799713148472446976", + "urn": "urn:li:activity:6799713148472446976", + "numComments": 55, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6799713148472446976", + "reactionTypeCounts": [ + { + "count": 342, + "reactionType": "LIKE" + }, + { + "count": 69, + "reactionType": "INTEREST" + }, + { + "count": 51, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6799713148472446976", + "numLikes": 466, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6799713148472446976", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 466, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6799335542778564608,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6799335542778564608", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6799335542778564608)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6799335542778564608)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lhydrog%C3%A8ne-est-il-vraiment-une-%C3%A9nergie-propre-activity-6799335542778564608-aMJG?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6799335542325563392", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6799335542778564608", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6799335542778564608,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6799335542778564608,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6799335542325563392", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "WljbN6hQABZRn7gpr74SqQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6799335542778564608,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6974483614696559672", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676100481227?e=1677240000&v=beta&t=gCgfahVgTKzDhLYKO_YLktVCyhSaEQ1XCCDBetK_9CA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676100481227?e=1677240000&v=beta&t=8FvnmjqIXZkkKM78gt0D5s7O9QliU9hx0ewdLWu5n18", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676100481227?e=1677240000&v=beta&t=kKIxXtmr06NR4eHQLUIDqB1btLfE4yOYbfV-yrpDjcU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676100481227?e=1677240000&v=beta&t=n55j0AT2vxvmnp13zNIqUIqeuyOMewjTnimgT88EbK0", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE_6x04-YxhyA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6974483614696559672)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6974483614696559672)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lci.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'hydrog\u00e8ne est-il vraiment une \u00e9nergie propre ? by lci.fr", + "actionTarget": "https://www.lci.fr/environnement-ecologie/video-l-hydrogene-est-il-vraiment-une-energie-propre-2185227.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'hydrog\u00e8ne est-il vraiment une \u00e9nergie propre ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6799335542325563392,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Sans r\u00e9aliser qu'elle n'aurait pas lieu d'\u00eatre si la presse faisait correctement son travail, un nombre croissant de media cr\u00e9ent une rubrique qui s'appelle ici \"le vrai du faux\" (France Info), et l\u00e0 (sur LCI) \"les v\u00e9rificateurs\". \n\nLe but : \"r\u00e9tablir la v\u00e9rit\u00e9\" (mais d'o\u00f9 vient la propagation des erreurs si ce n'est d'autres journalistes :) ?). L\u00e0 o\u00f9 ca devient amusant, c'est quand l'info \"rectificative\"... est fausse !\n\nDans ce reportage \"v\u00e9rificateur\" de LCI sur l'hydrog\u00e8ne :\n- le journaliste affirme implicitement que d'acheter de l'\u00e9lectricit\u00e9 verte c'est trier les \u00e9lectrons au compteur (or l'\u00e9lectricit\u00e9 \"verte\" est physiquement la m\u00eame \u00e9lectricit\u00e9 de r\u00e9seau que la \"pas verte\", juste vendue avec un document en plus),\n- il pr\u00e9sente le charbon comme une source de production d'hydrog\u00e8ne \"actuelle\", alors que c'est totalement marginal, l'essentiel venant du gaz (qui est aussi \u00e9voqu\u00e9, mais apr\u00e8s),\n- il qualifie de \"miracle\" l'alimentation d'un groupe \u00e9lectrog\u00e8ne par de l'hydrog\u00e8ne \"vert\", alors qu'en fait c'est un truc de shadok, puisque cela consiste \u00e0 utiliser de l'\u00e9lectricit\u00e9 pour \u00e9lectrolyser de l'eau pour... refaire de l'\u00e9lectricit\u00e9, en ayant perdu les 3/4 de l'\u00e9nergie au passage !\n\nMais l'arroseur arros\u00e9 est un gag \u00e9ternel..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6799335542325563392,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6799335542778564608,urn:li:activity:6799335542778564608,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 120, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6799335542778564608,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6799335542778564608,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6799335542778564608", + "threadId": "activity:6799335542778564608", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6799335542778564608", + "urn": "urn:li:activity:6799335542778564608", + "numComments": 325, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6799335542778564608", + "reactionTypeCounts": [ + { + "count": 2819, + "reactionType": "LIKE" + }, + { + "count": 212, + "reactionType": "INTEREST" + }, + { + "count": 206, + "reactionType": "MAYBE" + }, + { + "count": 89, + "reactionType": "PRAISE" + }, + { + "count": 41, + "reactionType": "EMPATHY" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6799335542778564608", + "numLikes": 3380, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6799335542778564608", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3380, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6798991910854774784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6798991910854774784", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6798991910854774784)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6798991910854774784)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climate-emissions-shrinking-the-stratosphere-activity-6798991910854774784-RIY8?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6798991910405996544", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6798991910854774784", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6798991910854774784,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6798991910854774784,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6798991910405996544", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "JkpbCoSdTrukt/OIZA0TfQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6798991910854774784,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8523015108081748120", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676557289970?e=1677240000&v=beta&t=7MbxrCBQy8bYB1gFCydJ2jRvOabNwmVsKR4AZmAm510", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676557289971?e=1677240000&v=beta&t=GRHFoBFlFs0tidEhBAshenvA1KCoq6634HKrN_AMAxg", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676557289971?e=1677240000&v=beta&t=Lrq7KPZL8MZi24XVHu3DxW79RT8F_zkCtlageV8pb8M", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676557289971?e=1677240000&v=beta&t=Anl7X17UGvnbKJuYk07RHS006usUZ1cmxqJaRU6UxG0", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHgcsAqP3v0GQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8523015108081748120)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8523015108081748120)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theguardian.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climate emissions shrinking the stratosphere, scientists reveal by theguardian.com", + "actionTarget": "https://www.theguardian.com/environment/2021/may/12/emissions-shrinking-the-stratosphere-scientists-find" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climate emissions shrinking the stratosphere, scientists reveal" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6798991910405996544,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Guardian fait \u00e9cho d'une \u00e9tude qui vient d'\u00eatre accept\u00e9e pour publication dans Environmental Research Letters (https://lnkd.in/d_GggzT ) et qui indique que, dans le cadre de la d\u00e9rive climatique engendr\u00e9e par l'humanit\u00e9, la stratosph\u00e8re se contracte, et la limite s\u00e9parative entre troposph\u00e8re (la plus basse couche de l'atmosph\u00e8re, celle qui touche le sol) et stratosph\u00e8re, qui s'appelle la tropopause, gagne en altitude.\n\nLe refroidissement de la stratosph\u00e8re comme cons\u00e9quence du changement climatique est \u00e0 la fois assez facile \u00e0 expliquer (si le rayonnement infrarouge terrestre est plus absorb\u00e9 pr\u00e8s de la surface par les gaz \u00e0 effet de serre, alors il en reste moins pour r\u00e9chauffer la stratosph\u00e8re, qui refroidit) et une marque indiscutable de l'origine humaine du r\u00e9chauffement.\n\nEn effet, si c'\u00e9tait plus de soleil qui r\u00e9chauffait le climat, comme son rayonnement arrive de l'espace, il rencontre la stratosph\u00e8re avant la troposph\u00e8re, et donc la stratosph\u00e8re b\u00e9n\u00e9ficierait aussi du suppl\u00e9ment de rayonnement, et se r\u00e9chaufferait. Le fait qu'elle se refroidisse interdit que ce soit \"la faute au soleil\"." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6798991910405996544,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6798991910854774784,urn:li:activity:6798991910854774784,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 16, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6798991910854774784,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6798991910854774784,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6798991910854774784", + "threadId": "activity:6798991910854774784", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6798991910854774784", + "urn": "urn:li:activity:6798991910854774784", + "numComments": 55, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6798991910854774784", + "reactionTypeCounts": [ + { + "count": 354, + "reactionType": "LIKE" + }, + { + "count": 76, + "reactionType": "INTEREST" + }, + { + "count": 46, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6798991910854774784", + "numLikes": 484, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6798991910854774784", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 484, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6798644680637587456,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6798644680637587456", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6798644680637587456)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6798644680637587456)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_grignon-2026-lambition-dun-centre-d%C3%A9changes-activity-6798644680637587456-VdwM?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6798644680176238592", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6798644680637587456", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6798644680637587456,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6798644680637587456,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6798644680176238592", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "YuKLlxBHs7TAOJsTT4pVhg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6798644680637587456,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7442142376144489505", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676308653446?e=1677240000&v=beta&t=jyMHTjfbPvZGiwXA2qbrOe7b_JqdHr_EcntnOOQNq5s", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676308653446?e=1677240000&v=beta&t=cwQvWiOeOUnrimyE2mF6rLT_RZf7Vv_9eCLCS6hs0Vc", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676308653446?e=1677240000&v=beta&t=0tHRpiHHjvWFLF2pKxo0Nqt9ymUutsb__tavTNr-Yr8", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676308653446?e=1677240000&v=beta&t=VpXJBkjWOcV3LFxSDeV1E_CfgdJKTzX_oelvHShL-wk", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEXMaGpiCL0ZQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7442142376144489505)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7442142376144489505)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lejdd.fr \u2022 9 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \"Grignon 2026 : l'ambition d'un centre d'\u00e9changes et formation sur l'agriculture et l'alimentation de demain\" by lejdd.fr", + "actionTarget": "https://www.lejdd.fr/Societe/grignon-2026-lambition-dun-centre-dechanges-et-formation-sur-lagriculture-et-lalimentation-de-demain-4044722" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\"Grignon 2026 : l'ambition d'un centre d'\u00e9changes et formation sur l'agriculture et l'alimentation de demain\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6798644680176238592,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 67, + "length": 23, + "type": "BOLD" + }, + { + "start": 130, + "length": 21, + "miniProfile": { + "firstName": "Marion Denise", + "lastName": "Guillou", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABq0XEEBT2KrtHku539U9aXDpFWYdsb-WGI", + "occupation": "Presidente du conseil d'administration chez Agreenium, l'Institut agronomique, v\u00e9t\u00e9rinaire et forestier de France", + "objectUrn": "urn:li:member:448027713", + "entityUrn": "urn:li:fs_miniProfile:ACoAABq0XEEBT2KrtHku539U9aXDpFWYdsb-WGI", + "publicIdentifier": "marion-denise-guillou-369063106", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517340603886?e=1681948800&v=beta&t=9bk2aor1FobjJvUTK6o0XgBbYplny7qzyyNpDWi2Q-g", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517340603886?e=1681948800&v=beta&t=BhzdWCcDjIbmO_Xui7AMryhRoxKKLAhW0OxN4Jf42GI", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517340603886?e=1681948800&v=beta&t=NkvRlwcKPubtE2TEgjB9Jpsfduq0t9IJUuEGqmpQyjQ", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517340603886?e=1681948800&v=beta&t=VoL3gS1pdc0N93Vy9tHgzc3FxsllyZF39lA39IklJtE", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQEyNrqAfJEKsg/profile-displayphoto-shrink_" + } + }, + "trackingId": "AaQu2mqHRGuxK73e3HcWTg==" + }, + "type": "PROFILE_MENTION" + }, + { + "start": 586, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:64557481", + "entityUrn": "urn:li:fs_miniCompany:64557481", + "name": "Grignon 2026", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1617779514169?e=1684972800&v=beta&t=qXgEWc9tcREO5J_Pw9r5wrNoydxMOh6tVHAZwtXgUlM", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1617779514169?e=1684972800&v=beta&t=gGvY9SJN4W-coSWTyQc9vCCJNHrFNThROf9f-XuIJS4", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1617779514169?e=1684972800&v=beta&t=JlQV_RW2KZQaAQoP7Y_0ojdUy-lZUWVLc8VUPRyuf0A", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHMmBzxs4sFnA/company-logo_" + } + }, + "universalName": "grignon-2026", + "dashCompanyUrn": "urn:li:fsd_company:64557481", + "trackingId": "2EgTFtk/S+WTSFwinq/GKA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Pr\u00e8s de 200 chercheurs, dont la co-pr\u00e9sidente du groupe I du GIEC (Val\u00e9rie Masson-Delmotte), et l'ancienne pr\u00e9sidente de l'INRAE (Marion Denise Guillou) signent dans le JDD une tribune pour demander que l'ancien campus d'Agro Paris Tech de Grignon, vid\u00e9 de ses occupants pour cause de d\u00e9m\u00e9nagement \u00e0 Saclay, ne devienne pas un terrain \u00e0 b\u00e2tir de plus, mais reste au service d'une cause essentielle : inventer l'agriculture de demain, r\u00e9siliente et durable. \n\nLes signataires demandent \u00e0 ce que ce site, d\u00e9tenteur d'un patrimoine agronomique et forestier unique, soit attribu\u00e9 au projet Grignon 2026, centr\u00e9 sur la recherche d'un syst\u00e8me alimentaire p\u00e9renne et compatible avec les limites plan\u00e9taires. C'est peut-\u00eatre pas compl\u00e8tement idiot ?\n\nLa crainte est bien sur que l'Etat, d\u00e9tenteur du site, ne voie pas plus loin que la taille du ch\u00e8que des diff\u00e9rentes offres, sachant que le projet est en comp\u00e9tition avec des promoteurs. Dans notre syst\u00e8me \u00e9conomique, b\u00e9tonner reste plus rentable que pr\u00e9server ou r\u00e9fl\u00e9chir. Et l'avenir r\u00e9cent n'incite pas vraiment \u00e0 avoir confiance dans la compr\u00e9hension de l'enjeu environnemental par le gouvernement...\n\nEsp\u00e9rons que cette p\u00e9tition, avec des signataires \u00e9minemment cr\u00e9dibles (dont certains rarement mobilis\u00e9s), contribue \u00e0 rendre cette crainte infond\u00e9e." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6798644680176238592,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6798644680637587456,urn:li:activity:6798644680637587456,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 59, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6798644680637587456,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6798644680637587456,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6798644680637587456", + "threadId": "activity:6798644680637587456", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6798644680637587456", + "urn": "urn:li:activity:6798644680637587456", + "numComments": 78, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6798644680637587456", + "reactionTypeCounts": [ + { + "count": 2720, + "reactionType": "LIKE" + }, + { + "count": 235, + "reactionType": "APPRECIATION" + }, + { + "count": 184, + "reactionType": "PRAISE" + }, + { + "count": 36, + "reactionType": "EMPATHY" + }, + { + "count": 20, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6798644680637587456", + "numLikes": 3208, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6798644680637587456", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3208, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6798620972720123904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6798620972720123904", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6798620972720123904)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6798620972720123904)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_un-article-tout-juste-paru-dans-nature-regarde-activity-6798620972720123904-UlmY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6798620972095156224", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6798620972720123904", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6798620972720123904,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6798620972720123904,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6798620972095156224", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "+MavK5yPd3Tw9Hz/dDkt9w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6798620972720123904,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFmrw1ZsBJ12A", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFmrw1ZsBJ12A", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1620917548896?e=1679529600&v=beta&t=bKYMNj6ZQfV8ciOL7ooWfSNpDrrruD2aupR82LT7z-w", + "expiresAt": 1679529600000, + "height": 1397 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1620917551336?e=1679529600&v=beta&t=HdfYPR-S7dfRQvRseU4-9KplMT0C6tVpyXS64nBRyEw", + "expiresAt": 1679529600000, + "height": 14 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1620917551336?e=1679529600&v=beta&t=eIxQ4FM3rSxp3mBY0b8FXUZct2AHSBGQU_FUYgRKxz4", + "expiresAt": 1679529600000, + "height": 873 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1620917551336?e=1679529600&v=beta&t=FoyrABr3L23ODPAFNAHMmEwaNMVIC6SYWQDGp7l6sXk", + "expiresAt": 1679529600000, + "height": 327 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1620917551336?e=1679529600&v=beta&t=IXfPpVPiy7eC6pgojPjJXjddT_1Cs_f1_BpOfDYsJyc", + "expiresAt": 1679529600000, + "height": 109 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1620917551336?e=1679529600&v=beta&t=KVcHDP8Y3-gJLZr72RjMaisZH-YX-NnKa7qwQ08PZuU", + "expiresAt": 1679529600000, + "height": 546 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFmrw1ZsBJ12A/feedshare-shrink_" + }, + "displayAspectRatio": 0.68212890625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, scatter chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6798620972095156224,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un article tout juste paru dans Nature regarde les sc\u00e9narios d'\u00e9mission utilis\u00e9s par le GIEC qui permettent de respecter la limite de 1.5 \u00b0C de r\u00e9chauffement : https://lnkd.in/dUixDUr\n\nCet article contient le graphique ci-dessous, un peu long \u00e0 d\u00e9crypter, mais qui inventorie, pour les sc\u00e9narios en question :\n- le gain annuel moyen d'efficacit\u00e9 \u00e9nerg\u00e9tique suppos\u00e9 sur 2020-2040 (axe horizontal), sachant que sur les 30 derni\u00e8res ann\u00e9es (points noirs) ca se prom\u00e8ne en-dessous de 1,45% par an (c'\u00e9tait pareil ou inf\u00e9rieur avant)\n- le taux de croissance annuel moyen des ENR sur 2020-2040 (axe vertical) - m\u00eame remarque sur la tendance historique figur\u00e9e par les points noirs en bas \u00e0 gauche\n- enfin le volume d'\u00e9missions n\u00e9gatives d'ici \u00e0 2100 (le CO2 soustrait \u00e0 l'atmosph\u00e8re par des puits forestiers, agricoles ou technologiques), qui est figur\u00e9 par la taille du rond. \n\nQuestion : si on renverse la logique, et que l'on met les curseurs \u00e0 un \"maximum raisonnable\" pour l'efficacit\u00e9, les ENR, et que l'on ne fait pas de plans sur la com\u00e8te pour les puits technologiques, comment \u00e9volue le PIB ? C'est le sc\u00e9nario Decent Energy Living - DLE - tout en bas \u00e0 gauche, o\u00f9 l'\u00e9conomie est quasiment divis\u00e9e par 2 en 20 ans.\n\nContracter le PIB est donc \u00e0 envisager si nous voulons tenir les budgets CO2..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6798620972095156224,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6798620972720123904,urn:li:activity:6798620972720123904,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 29, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6798620972720123904,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6798620972720123904,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6798620972720123904", + "threadId": "activity:6798620972720123904", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6798620972720123904", + "urn": "urn:li:activity:6798620972720123904", + "numComments": 121, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6798620972720123904", + "reactionTypeCounts": [ + { + "count": 402, + "reactionType": "LIKE" + }, + { + "count": 65, + "reactionType": "INTEREST" + }, + { + "count": 48, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6798620972720123904", + "numLikes": 520, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6798620972720123904", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 520, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "EKwczO6wQmeCDmWJ2bcAog==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6798257392334188544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6798257392334188544", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6798257392334188544)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6798257392334188544)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-enjeux-climat-pour-le-secteur-agricole-activity-6798257392334188544-NYew?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6798257391830896640", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6798257392334188544", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6798257392334188544,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6798257392334188544,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6798257391830896640", + "excludedFromSeen": false, + "trackingData": { + "requestId": "134e7614-9dd1-4e3d-ae72-9b229e226ea8", + "trackingId": "25t8wAscEpwV1QQk0p/u1A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6798257392334188544,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8180703294590314228", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1620736164927?e=1677240000&v=beta&t=Q4ljHqAoMIv5hi8aV2IhprSiz8bQgyANV3myI_62S-8", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1620736164927?e=1677240000&v=beta&t=3juh26dmZ4aMlM67lxK1aoZtmTUOp6E-PcUuGPFz-vs", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1620736164927?e=1677240000&v=beta&t=4gmk9qwCJSa9Mj0T-Y8Ra2uzzZC2wAON618sU8aTYcA", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1620736164927?e=1677240000&v=beta&t=gE_Lr51ejL7RgR7NkyXTZ9_AbWLV7pj2EOCU8V2sCS0", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHKRGJ-1XdNjA/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8180703294590314228)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8180703294590314228)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les enjeux climat pour le secteur agricole et agroalimentaire - Carbone 4 by carbone4.com", + "actionTarget": "http://www.carbone4.com/enjeux-climat-secteur-agricole-agroalimentaire/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les enjeux climat pour le secteur agricole et agroalimentaire - Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6798257391830896640,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 1033, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "8kYTWL+ZRqm0sV3UTlFr6A==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Il n'aura \u00e9chapp\u00e9 \u00e0 personne qu'il y a quelques petits liens entre agriculture et climat. La premi\u00e8re a besoin du second : un terroir, c'est la permanence d'un sol et d'un climat, et c'est notamment la tr\u00e8s grande stabilit\u00e9 du syst\u00e8me climatique sur les 10.000 derni\u00e8res ann\u00e9es (avant notre influence) qui a permis l'av\u00e8nement d'une humanit\u00e9 s\u00e9dentaire vivant de son agriculture, perfectionn\u00e9e partout au fil du temps dans un cadre stable.\n\nMais l'agriculture perturbe d\u00e9sormais le climat : 30% des \u00e9missions mondiales de gaz \u00e0 effet de serre en proviennent (en incluant la d\u00e9forestation, qui sert \u00e0 mettre des terres en culture le plus souvent). La France \"importe\" du reste une partie de la d\u00e9forestation mondiale, via ses importations agricoles ou de bois en provenance de pays tropicaux.\n\nEnfin la d\u00e9rive climatique existante et \u00e0 venir va de plus en plus impacter les productions.\n\nDans ce contexte, que peuvent faire les agriculteurs, coop\u00e9ratives, industriels, transporteurs et distributeurs ? \n\nCette nouvelle publication de Carbone 4 porte sur le r\u00f4le de l\u2019agriculture et de l\u2019agroalimentaire dans la transition\u00a0climatique fran\u00e7aise, tant pour contribuer \u00e0 la baisse des \u00e9missions, pour s\u00e9questrer du carbone, que pour gagner en r\u00e9silience face \u00e0 l\u2019\u00e9volution du climat." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6798257391830896640,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6798257392334188544,urn:li:activity:6798257392334188544,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6798257392334188544,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6798257392334188544,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6798257392334188544", + "threadId": "activity:6798257392334188544", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6798257392334188544", + "urn": "urn:li:activity:6798257392334188544", + "numComments": 94, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6798257392334188544", + "reactionTypeCounts": [ + { + "count": 730, + "reactionType": "LIKE" + }, + { + "count": 71, + "reactionType": "MAYBE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6798257392334188544", + "numLikes": 878, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6798257392334188544", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 878, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6797881267674206208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6797881267674206208", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6797881267674206208)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6797881267674206208)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_how-to-align-investments-with-the-paris-agreement-activity-6797881267674206208-2NoH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6797881267242196992", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6797881267674206208", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6797881267674206208,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6797881267674206208,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6797881267242196992", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "pGRjMEW4A+Yr6QdFQv85gQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6797881267674206208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7362141528585358315", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675329579887?e=1677240000&v=beta&t=N0uvU--XF1rdUPYjTclhdx2Ir5vNsYMBi0VdvTzwx8c", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675329579887?e=1677240000&v=beta&t=W64T6DNfScIH5dGIgWlg35KzwfB85TFOHuLEAa0GzgQ", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675329579887?e=1677240000&v=beta&t=yUTKAds2riXgJ3arH_Q27qEMF2m2J3pT5MZiw_a87oQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675329579888?e=1677240000&v=beta&t=2EihfveQ_u4OnSoA5kdwQ4bldPfM1rNhUwWzDxgnAUQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQG-JPtLszKWvA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7362141528585358315)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7362141528585358315)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: How to align investments with the Paris Agreement? with Jean-Marc Jancovici & Jean-Yves Wilmotte on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=HRkOlvyWCV8" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Event #4 \u2013 March 2021. How to align investments with the Paris Agreement? with Jean-Marc Jancovici & Jean-Yves Wilmotte Moderated by David Czupryna, Head of ESG Development at Candriam In this webinar you will learn: \u25bb What is the role of investors in..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "How to align investments with the Paris Agreement? with Jean-Marc Jancovici & Jean-Yves Wilmotte" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 141, + "length": 18, + "miniProfile": { + "firstName": "Jean-Yves", + "lastName": "Wilmotte", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAzSLSIBTMTJdT-dbsVnvPOMvyrSF7MVvPA", + "occupation": "Director of finance practice", + "objectUrn": "urn:li:member:215100706", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAzSLSIBTMTJdT-dbsVnvPOMvyrSF7MVvPA", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1646240229222?e=1681948800&v=beta&t=QcqYdAPOkcTlf1wt8d3OWSE_yzYaQCiY14Ovis7yY9I", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1646240229222?e=1681948800&v=beta&t=582ZXpVPie3l6lKmOntDsOIdKOJL2WBnWsAcN3cTFmo", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQHDxGSRLAaa0g/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-yves-wilmotte", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517531098296?e=1681948800&v=beta&t=x-XiRNeK-r2F4yaQqStoONjRMNziZtJM4q-skf8Riqk", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517531098296?e=1681948800&v=beta&t=AvxDGbzTGOEU64z82u6uBdMwfkDp_odLCEbjT6laOSg", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517531098296?e=1681948800&v=beta&t=p_8WkNfbQHKjKOwMOY9X1Xvz5af-uw3g_n9TcOQU0iA", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517531098296?e=1681948800&v=beta&t=G7h-JtxbX3hd6_52uRLTQeo2WVeQCqNa9QalrStWHTI", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5103AQHm7jq-hj8uOQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "sGAg8g2BRvyWM0reRXWy9g==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "How easy is it for the finance industry to \"go green\", especially on climate change? In this video broadcast by Candriam a couple weeks ago, Jean-Yves Wilmotte and myself try to answer this (difficult) question.\n\nThere is one thing for sure: it won't happen without a tremendous increase of the means devoted to the issue, that, for the time being, are - globally speaking - not at all up to the challenge (a hint of what it would take at least can be seen here: https://lnkd.in/gdEjKji )." + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6797881267674206208,urn:li:activity:6797881267674206208,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 11, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6797881267674206208,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6797881267674206208,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6797881267674206208", + "threadId": "activity:6797881267674206208", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6797881267674206208", + "urn": "urn:li:activity:6797881267674206208", + "numComments": 13, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6797881267674206208", + "reactionTypeCounts": [ + { + "count": 192, + "reactionType": "LIKE" + }, + { + "count": 12, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6797881267674206208", + "numLikes": 217, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6797881267674206208", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 217, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6797824722252951552,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6797824722252951552", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6797824722252951552)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6797824722252951552)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_invitation-the-shift-project-secteur-activity-6797824722252951552-1LyD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6797824721720287232", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6797824722252951552", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6797824722252951552,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6797824722252951552,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6797824721720287232", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "OS3uiuVN+UXV/3I7qxcF0A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6797824722252951552,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7383790047396712023", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676034952090?e=1677240000&v=beta&t=kZ85r2N3-oSoSkrBxhvkGdUlfrUOkEllGanZJ2QmlDo", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676034952090?e=1677240000&v=beta&t=5D9L41XMjQgzxMjTJwXLrt99v6UnCX3Y84O4rX74iYY", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676034952091?e=1677240000&v=beta&t=euLNFU6A5AKU0xKG6yug-PoY6Gw7dgLRuBBTAzMOmb0", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676034952091?e=1677240000&v=beta&t=p_se_ZSTlFg156kta15jgrGwJ9BBw9DiJmrelV61GmM", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGM0KMwBspCJg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7383790047396712023)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7383790047396712023)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Invitation - The Shift Project - Secteur Fret du PTEF by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-presentation-des-travaux-du-secteur-fret-du-plan-de-transformation-de-leconomie-francaise-jeudi-20-mai-a-10h30/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Invitation - The Shift Project - Secteur Fret du PTEF" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6797824721720287232,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les marchandises n'ont pas de jambes. Cette maxime c\u00e9l\u00e8bre des \u00e9conomistes des transports souligne que de se passer de camions pour le fret sera probablement plus difficile que de se passer de voitures pour les individus. Pas question pour un colis ou un container de marchandises d'aller tout seul \u00e0 la gare, ou d'enfourcher un v\u00e9lo. \n\nTout comme la voiture a engendr\u00e9 un urbanisme \u00e9tal\u00e9 et dissoci\u00e9 (les lieux d'habitation et d'activit\u00e9 sont distants), qui aujourd'hui survivra mal \u00e0 la fin du transport m\u00e9canis\u00e9 \"lourd\", le camion a permis de cr\u00e9er un \"urbanisme productif\" permettant d'exp\u00e9dier un objet de n'importe o\u00f9 pour le livrer n'importe o\u00f9. Gr\u00e2ce au camion nous avons pu sp\u00e9cialiser les \u00e9tapes de production, les disperser partout sur terre, et livrer tout individu o\u00f9 qu'il soit. \n\nComment d\u00e9carboner le fret \u00e0 la bonne vitesse ? Telle est la question - pas simple - \u00e0 laquelle nous vous proposons de r\u00e9fl\u00e9chir, le 20 mai prochain, avec une pr\u00e9sentation des travaux d\u00e9j\u00e0 r\u00e9alis\u00e9s dans le cadre du plan de transformation de l'\u00e9conomie fran\u00e7aise (pour tous), puis des \"ateliers collaboratifs\", pour \u00e9changer sur la question (pour les professionnels du secteur)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6797824721720287232,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6797824722252951552,urn:li:activity:6797824722252951552,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 27, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6797824722252951552,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6797824722252951552,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6797824722252951552", + "threadId": "activity:6797824722252951552", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6797824722252951552", + "urn": "urn:li:activity:6797824722252951552", + "numComments": 50, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6797824722252951552", + "reactionTypeCounts": [ + { + "count": 366, + "reactionType": "LIKE" + }, + { + "count": 40, + "reactionType": "MAYBE" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6797824722252951552", + "numLikes": 429, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6797824722252951552", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 429, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6797436935347421184,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6797436935347421184", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6797436935347421184)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6797436935347421184)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_dossier-pourquoi-il-est-urgent-de-conna%C3%AEtre-activity-6797436935347421184-BvaW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6797436934869286915", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6797436935347421184", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6797436935347421184,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6797436935347421184,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6797436934869286915", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "gpBd7YptaiSpz/BphEJaww==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6797436935347421184,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9032926781190300189", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676618476745?e=1677240000&v=beta&t=gkjxAQcb9THajajUyczOzbnq-KeYL8C0DNLTmmxo5qc", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676618476746?e=1677240000&v=beta&t=3G0illBCjzGL1nU8fJ_ywHYxZAX0gjzz5bjJOWGufj8", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676618476746?e=1677240000&v=beta&t=OZ1nsnD7Yde7bkTXSvRMzbvi9CyzSJJDLQrzof_jJik", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676618476746?e=1677240000&v=beta&t=1bSW9C1RVWPjwI7Vt6lglHHPI-ki_Gc1FE1-1enz8nU", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFKCfyyR1DAwA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9032926781190300189)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9032926781190300189)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "nouvelobs.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: DOSSIER. Pourquoi il est urgent de conna\u00eetre nos bilans carbone by nouvelobs.com", + "actionTarget": "https://www.nouvelobs.com/planete/20210502.OBS43566/dossier-pourquoi-il-est-urgent-de-connaitre-nos-bilans-carbone.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "DOSSIER. Pourquoi il est urgent de conna\u00eetre nos bilans carbone" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6797436934869286915,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Gr\u00e2ce \u00e0 MyCO2 (https://www.myco2.fr/ ), ce n'est pas une mais quatre fois que Carbone 4 est pr\u00e9sent dans l'Obs, avec les empreintes carbone personnelles de quatre \"noms connus\", qui ont fait l'exercice en parall\u00e8le avec notre approche : Fran\u00e7ois Ruffin, Isabelle Autissier, Thierry Marx et Najat Vallaud-Belkacem.\n\nPour toucher du doigt la question de la r\u00e9duction des \u00e9missions, rien de tel que les travaux pratiques sur son cas personnel !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6797436934869286915,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6797436935347421184,urn:li:activity:6797436935347421184,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 43, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6797436935347421184,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6797436935347421184,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6797436935347421184", + "threadId": "activity:6797436935347421184", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6797436935347421184", + "urn": "urn:li:activity:6797436935347421184", + "numComments": 119, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6797436935347421184", + "reactionTypeCounts": [ + { + "count": 821, + "reactionType": "LIKE" + }, + { + "count": 51, + "reactionType": "PRAISE" + }, + { + "count": 43, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "INTEREST" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6797436935347421184", + "numLikes": 936, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6797436935347421184", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 936, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6797434492945481728,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1442492", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "mTxxP09vQSaKplUoS3T4AQ==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 17, + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "mTxxP09vQSaKplUoS3T4AQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "The Shift Project" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: The Shift Project", + "actionTarget": "https://www.linkedin.com/company/the-shift-project/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1442492" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "154,075 followers" + }, + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1442492", + "followerCount": 154075, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1442492", + "following": false, + "trackingUrn": "urn:li:company:1442492" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followCompany" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6797424200983314432,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6797424200983314432", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6797424200983314432)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6797424200983314432)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/the-shift-project_comment-contribuer-au-plan-de-transformation-activity-6797424200983314432-MIdS?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6797424200534503424", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1442492", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6797424200983314432,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6797424200983314432,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6797424200534503424", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "CE7dNJZQOi2hdddPUoqcZA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6797424200983314432,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7939471481052695850", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676069121821?e=1677240000&v=beta&t=8y_f1kszUCoWMwMA5XaFIzPIHXrJn_BxJ-72xg1mhpE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676069121821?e=1677240000&v=beta&t=Gquq8MiA55vAIzgBA1kzWgqYt15kGtunV1Ykq_annSM", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676069121821?e=1677240000&v=beta&t=UNG-NmnEXqagN3WSgiqBN17m77Gj_WRdRQ9BpPAeQ4I", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676069121821?e=1677240000&v=beta&t=iSvcP8MN1-B6v3gxwMvIihXCJUqW_1KcCM_2SwmlM_U", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEVXljH4gUo0w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7939471481052695850)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7939471481052695850)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Comment contribuer au Plan de transformation de l\u2019\u00e9conomie fran\u00e7aise ? on bit.ly", + "actionTarget": "https://bit.ly/33z8IfG" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift lance un appel \u00e0 contribution aupr\u00e8s des entreprises pour financer et nourrir le Plan de transformation de l'\u00e9conomie fran\u00e7aise (PTEF) : Jean-Marc Jancovici revient ici en vid\u00e9o sur les moyens de nous aider et sur les objectifs de ce Plan !..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Comment contribuer au Plan de transformation de l\u2019\u00e9conomie fran\u00e7aise ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6797424200534503424,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\ud83d\udce2 Le Shift lance un appel \u00e0 contribution aupr\u00e8s des entreprises pour financer et nourrir le Plan de transformation de l'\u00e9conomie fran\u00e7aise (PTEF) !\n\nLanc\u00e9 en mars 2020 par le Shift Project, le PTEF est un vaste programme op\u00e9rationnel pour nous emmener vers la neutralit\u00e9 carbone. N\u00e9 dans le sillage de la crise sanitaire, ce plan vise \u00e0 proposer des solutions pragmatiques pour transformer l\u2019\u00e9conomie, en la rendant :\n\ud83c\udf0eMoins carbon\u00e9e\n\ud83d\udca1 Plus r\u00e9siliente\n\ud83d\udcbcCr\u00e9atrice d\u2019emplois\n\nLe financement participatif lanc\u00e9 en mai dernier a permis de lancer le travail mais il n\u2019est pas suffisant : les attentes sont grandes, l\u2019opportunit\u00e9 politique est cruciale. Nous souhaitons aujourd\u2019hui rehausser significativement nos ambitions et passer \u00e0 la vitesse sup\u00e9rieure avec le soutien des entreprises de toutes tailles et de tous secteurs !\n\nPOUR CONTRIBUER\n1\ufe0f\u20e3 Nous soutenir financi\u00e8rement : rendez-vous sur la page HelloAsso d\u00e9di\u00e9e (don d\u00e9fiscalis\u00e9 \u00e0 hauteur de 60%) \ud83d\udc49https://bit.ly/3wY4CLF\n2\ufe0f\u20e3 Participer \u00e0 notre grande consultation aupr\u00e8s des entreprises : inscriptions sur \ud83d\udc49https://cutt.ly/Svi8HhX\n\nLIENS UTILES\n\ud83d\udc49L'intervention de Jean-Marc Jancovici \u00e0 propos du PTEF et de cet appel \u00e0 contribution :\u00a0https://bit.ly/33z8IfG\n\ud83d\udc49Tous les d\u00e9tails sur cette campagne :\u00a0https://bit.ly/32CVmi6" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6797424200534503424,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6797424200983314432,urn:li:activity:6797424200983314432,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 7, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6797424200983314432,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6797424200983314432,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6797424200983314432", + "threadId": "activity:6797424200983314432", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6797424200983314432", + "urn": "urn:li:activity:6797424200983314432", + "numComments": 7, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6797424200983314432", + "reactionTypeCounts": [ + { + "count": 198, + "reactionType": "LIKE" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6797424200983314432", + "numLikes": 250, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6797424200983314432", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 250, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6797434492945481728", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6797434492945481728)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6797434492945481728)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_comment-contribuer-au-plan-de-transformation-activity-6797434492945481728-YglP?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6797434492505100288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6797434492945481728", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6797434492945481728,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6797434492945481728,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6797434492505100288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "CE7dNJZQOi2hdddPUoqcZA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6797434492945481728,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6797434492505100288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pour transformer l'\u00e9conomie fran\u00e7aise pour la mettre sur une trajectoire compatible avec une limitation de la d\u00e9rive climatique \u00e0 2\u00b0C de r\u00e9chauffement, il va falloir impliquer - donc contraindre, en m\u00eame temps que leur donner des opportunit\u00e9s - la totalit\u00e9 des entreprises de ce pays. \n\nElles vont toutes devoir changer, et pas qu'un peu : adapter l'emploi, les chaines logistiques, les implantations, les produits vendus, les march\u00e9s, la gouvernance, les m\u00e9thodes comptables (physiques ou mon\u00e9taires), etc. \n\nC'est donc \u00e0 elles que The Shift Project a d\u00e9cid\u00e9 de s'adresser de mani\u00e8re sp\u00e9cifique dans le cadre de notre deuxi\u00e8me financement participatif. C'est \u00e9galement elles que nous sollicitons pour discuter de nos propositions.\n\nL'ensemble des propositions de ce plan de transformation sera publi\u00e9, de mani\u00e8re \u00e9chelonn\u00e9e, entre maintenant et janvier 2022." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6797434492505100288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6797434492945481728,urn:li:activity:6797434492945481728,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6797434492945481728,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6797434492945481728,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6797434492945481728", + "threadId": "activity:6797434492945481728", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6797434492945481728", + "urn": "urn:li:activity:6797434492945481728", + "numComments": 85, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6797434492945481728", + "reactionTypeCounts": [ + { + "count": 835, + "reactionType": "LIKE" + }, + { + "count": 85, + "reactionType": "PRAISE" + }, + { + "count": 78, + "reactionType": "APPRECIATION" + }, + { + "count": 25, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6797434492945481728", + "numLikes": 1038, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6797434492945481728", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1038, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6797088191607267328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6797088191607267328", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6797088191607267328)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6797088191607267328)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_apr%C3%A8s-lagence-internationale-de-lenergie-activity-6797088191607267328-q_Ej?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6797088190973911040", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6797088191607267328", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6797088191607267328,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6797088191607267328,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6797088190973911040", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "wU6pidsvIHOspTUvvRyn4g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6797088191607267328,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFIJfcSi06wWw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFIJfcSi06wWw", + "artifacts": [ + { + "width": 1630, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1620552105797?e=1679529600&v=beta&t=Ew6HlsJy4p1R_45CDJpgfYaDMTGcoDlkPb9dg0xJmNM", + "expiresAt": 1679529600000, + "height": 1302 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1620552107826?e=1679529600&v=beta&t=96IjDuEwZ3f7oompRbge1Rhfke5oAux2x0IIrEM_fog", + "expiresAt": 1679529600000, + "height": 16 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1620552107826?e=1679529600&v=beta&t=FkCmw92yZVloyxzg7mrm5lSAsDzxL7PdQfV0vDH-FPY", + "expiresAt": 1679529600000, + "height": 1022 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1620552107826?e=1679529600&v=beta&t=WGMtg6VapJa8KCN-HycuSocTul1VudgaGHwKL4_22VQ", + "expiresAt": 1679529600000, + "height": 383 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1620552107826?e=1679529600&v=beta&t=-FetU2fxypvK93HZKGaVfUXaJVNWzo4UkMAQvmOA-dc", + "expiresAt": 1679529600000, + "height": 128 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1620552107826?e=1679529600&v=beta&t=_WnDBkzU8OzfbQDJJDW14MPHm_cdqvbnuGKe7Zw9-Bo", + "expiresAt": 1679529600000, + "height": 639 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFIJfcSi06wWw/feedshare-shrink_" + }, + "displayAspectRatio": 0.7987730061349694 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6797088190973911040,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s l'Agence Internationale de l'Energie, c'est la Commission qui s'int\u00e9resse aux mat\u00e9riaux indispensables pour les objets \"techno-verts\" embl\u00e9matiques que sont \u00e9oliennes, panneaux solaires, batteries ou moteurs \u00e9lectriques : https://lnkd.in/djF2k24\n\nLe r\u00e9sultat de cette investigation, c'est que le d\u00e9ploiement de ces objets (puis leur renouvellement \"perp\u00e9tuel\" en fin de vie, car il faut bien \u00eatre \"durable\") ne nous rendra pas moins d\u00e9pendants des pays non europ\u00e9ens : c'est juste la nature de la d\u00e9pendance qui change. \n\nAvant, c'\u00e9tait les combustibles fossiles, apr\u00e8s, ce sera les m\u00e9taux contenus dans ces objets, dont quelques % au mieux proviendront du sous-sol europ\u00e9en. Penser que les ENR et les batteries nous rendront \"autonomes et renouvelables\" est donc une illusion d'optique. Les ressources non renouvelables concern\u00e9es changeront juste de nature et de provenance.\n\nL\u00e0 comme ailleurs, la bonne question est de savoir de quels ordres de grandeur il est question pour aller \"jusqu'au bout du r\u00eave\", si le lien commercial avec les zones strat\u00e9giques a des chances d'\u00eatre p\u00e9renne, ce que nous pouvons offrir en \u00e9change de l'approvisionnement souhait\u00e9, etc. Et pour le moment, peu d'analyses probantes sont disponibles." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6797088190973911040,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6797088191607267328,urn:li:activity:6797088191607267328,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 42, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6797088191607267328,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6797088191607267328,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6797088191607267328", + "threadId": "activity:6797088191607267328", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6797088191607267328", + "urn": "urn:li:activity:6797088191607267328", + "numComments": 120, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6797088191607267328", + "reactionTypeCounts": [ + { + "count": 754, + "reactionType": "LIKE" + }, + { + "count": 111, + "reactionType": "INTEREST" + }, + { + "count": 98, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6797088191607267328", + "numLikes": 972, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6797088191607267328", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 972, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6796796215263547392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6796796215263547392", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6796796215263547392)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6796796215263547392)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_publication-du-rapport-interm%C3%A9diaire-r%C3%A9silience-activity-6796796215263547392-N60U?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6796796214407905281", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6796796215263547392", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6796796215263547392,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6796796215263547392,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6796796214407905281", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "wVgja6MC3dQ4I24VHbnqnA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6796796215263547392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9067462092290841961", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675242371698?e=1677240000&v=beta&t=awuBg_o6GKZS4Kx7alSKgIVM6LDGBwn9jvppk2JQDcg", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675242371698?e=1677240000&v=beta&t=D3ZEWJMiBdyjfonrHNXpyfwHmZOtI7cvHc4IsJaC7iY", + "expiresAt": 1677240000000, + "height": 544 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675242371699?e=1677240000&v=beta&t=R4uV0HlXG6T8eactRuAOjx_FBgBP6GOn5mxNPkJji1Y", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675242371699?e=1677240000&v=beta&t=Y0SozuOw96zxiJYxZh8BYbrtc-JN_GCcrJclBDWGfdw", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGNMGdcFmxbbQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9067462092290841961)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9067462092290841961)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Publication du rapport interm\u00e9diaire \"R\u00e9silience des territoires\" by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/rapport-intermediaire-resilience-des-territoires/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Publication du rapport interm\u00e9diaire \"R\u00e9silience des territoires\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6796796214407905281,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les moyens croissants qui ont permis la tr\u00e8s rapide expansion physique, donc \u00e9conomique, des 19\u00e8 et 20\u00e8 si\u00e8cles, c'est essentiellement le parc de machines croissant qui nous les ont fournis, et cela a commenc\u00e9 \u00e0 s'inverser \u00e0 petite vitesse, et va s'acc\u00e9l\u00e9rer dans les d\u00e9cennies \u00e0 venir.\n\nEn face, un certain nombre de limites plan\u00e9taires ont commenc\u00e9 \u00e0 se faire sentir, dont la d\u00e9rive climatique, inarr\u00eatable \u00e0 l'\u00e9chelle du mill\u00e9naire, et dont les cons\u00e9quences vont aller croissant quoi que nous fassions.\n\nPlus de probl\u00e8mes \u00e0 g\u00e9rer avec moins de moyens : voici comment, avec le temps, l'\u00e9quation va se pr\u00e9senter pour un nombre croissant de collectivit\u00e9s locales. Face \u00e0 ce constat, que faire ?\n\nC'est \u00e0 cette question que nous nous sommes int\u00e9ress\u00e9s, au Shift Project, dans le cadre du travail \"r\u00e9silience des territoires\", dont le rapport interm\u00e9diaire vient d'\u00eatre mis en ligne.\n\nA l'arriv\u00e9e, nous souhaitons proposer aux \u00e9lus locaux (et aussi \u00e0 leurs \u00e9lecteurs !), souvent un peu d\u00e9munis face \u00e0 la somme d'expertises qu'il faut ma\u00eetriser pour s'y retrouver face aux enjeux, quelques rep\u00e8res et conclusions robustes pour que demain soit, dans la limite de ce qu'ils ma\u00eetrisent, le moins possible l'occasion de tr\u00e8s mauvaises surprises." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6796796214407905281,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6796796215263547392,urn:li:activity:6796796215263547392,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6796796215263547392,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6796796215263547392,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6796796215263547392", + "threadId": "activity:6796796215263547392", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6796796215263547392", + "urn": "urn:li:activity:6796796215263547392", + "numComments": 54, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6796796215263547392", + "reactionTypeCounts": [ + { + "count": 498, + "reactionType": "LIKE" + }, + { + "count": 32, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "INTEREST" + }, + { + "count": 18, + "reactionType": "APPRECIATION" + }, + { + "count": 13, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6796796215263547392", + "numLikes": 584, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6796796215263547392", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 584, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6796347107511975936,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6796347107511975936", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6796347107511975936)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6796347107511975936)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_d%C3%A9carbonons-la-culture-conf%C3%A9rence-activity-6796347107511975936-w5_b?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6796347106991906816", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6796347107511975936", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6796347107511975936,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6796347107511975936,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6796347106991906816", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "XdSpaPyDdG2pVU7TnvcA4Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6796347107511975936,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7162951070222007103", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676148396393?e=1677240000&v=beta&t=YSbibFF3aL6IQYm0n0Rj6oJXv49SuxksmeQz6hlhZy4", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676148396393?e=1677240000&v=beta&t=AFDgDEIxXkJhIzRyPw853bqAK2KCak-Qo7hWcbs8F3c", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676148396393?e=1677240000&v=beta&t=-nuQS4t04U_mvDoj_KOuUkEptxYQiMFOK_5lJne2sPI", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676148396393?e=1677240000&v=beta&t=mzNACyDMzSVuJu6KQ_hrnMpVC6ciURM6I3eOQ0IZ9FE", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFa0YA9m6EMzw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7162951070222007103)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7162951070222007103)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab D\u00e9carbonons la Culture ! \u00bb : Conf\u00e9rence & Ateliers collaboratifs le 12 mai by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-webinaire-culture-ptef-rapport-intermediaire-ateliers-12-mai/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab\u00a0D\u00e9carbonons la Culture ! \u00bb : Conf\u00e9rence & Ateliers collaboratifs le 12 mai" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6796347106991906816,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Carbon\u00e9s, l'abbaye de Cluny, une toile de ma\u00eetre, ou un bon film ? Bien plus qu'on ne le croit, en fait : les mus\u00e9es \u00e0 rayonnement international d\u00e9pendent de l'avion, le cin\u00e9ma de la voiture, tout comme les Vieilles Charrues, et enfin l'audiovisuel, qui inclut notamment l'image anim\u00e9e transitant par les r\u00e9seaux num\u00e9riques, est peu ou prou \u00e0 l'origine des 3/4 de l'empreinte carbone du digital, qui n'est pas mince.\n\nPar ailleurs, la culture, c'est l'imaginaire collectif, et en cela elle contribue aussi indirectement \u00e0 l'\u00e9volution de l'empreinte carbone de beaucoup d'autres secteurs.\n\nDans le cadre de son plan de transformation de l'\u00e9conomie fran\u00e7aise (ou PTEF), The Shift Project vous propose de d\u00e9couvrir, Mercredi 12 mai apr\u00e8s-midi, le rapport interm\u00e9diaire concernant la culture, objet pas simple \u00e0 appr\u00e9hender puisque c'est \u00e0 la fois un secteur et un usage. Les professionnels du secteur pourront, \u00e0 cette occasion, participer \u00e0 des ateliers collaboratifs pour discuter plus en profondeur du sujet." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6796347106991906816,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6796347107511975936,urn:li:activity:6796347107511975936,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 8, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6796347107511975936,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6796347107511975936,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6796347107511975936", + "threadId": "activity:6796347107511975936", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6796347107511975936", + "urn": "urn:li:activity:6796347107511975936", + "numComments": 13, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6796347107511975936", + "reactionTypeCounts": [ + { + "count": 120, + "reactionType": "LIKE" + }, + { + "count": 7, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6796347107511975936", + "numLikes": 142, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6796347107511975936", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 142, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6796120466223378432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6796120466223378432", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6796120466223378432)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6796120466223378432)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_executive-summary-the-role-of-critical-activity-6796120466223378432-PEyB?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6796120465590022145", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6796120466223378432", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6796120466223378432,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6796120466223378432,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6796120465590022145", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "ZaT8KRzMVr9NwWfcNz2e8w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6796120466223378432,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7778258480253527381", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675864393334?e=1677240000&v=beta&t=y9Qan_fy-N0_KNTKlsE_FM4UR25kNliA43LLzAcfRtI", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675864393334?e=1677240000&v=beta&t=ajpQfOUu_nGfGhvszafrimNh_dISU51tF98EQX_Hkj8", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675864393335?e=1677240000&v=beta&t=OgR5ujoBJYxdw_Oi72hTxZrJVuzFn6Q-UkBeOQVk_Nc", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675864393335?e=1677240000&v=beta&t=NVzjIVH6GVUryTyqu00ao4-sL9NrkaN87XVe_KBSJSw", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEGJdMh3N4pqw/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7778258480253527381)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7778258480253527381)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "iea.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Executive summary \u2013 The Role of Critical Minerals in Clean Energy Transitions \u2013 Analysis - IEA by iea.org", + "actionTarget": "https://www.iea.org/reports/the-role-of-critical-minerals-in-clean-energy-transitions/executive-summary" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Executive summary \u2013 The Role of Critical Minerals in Clean Energy Transitions \u2013 Analysis - IEA" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6796120465590022145,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "40 fois plus de lithium utilis\u00e9 en 2040 qu'en 2020, 20 fois plus de nickel, 7 fois plus de mangan\u00e8se et 2,5 fois plus de cuivre : voici les projections de l'Agence Internationale de l'Energie si nous suivons le sc\u00e9nario \"d\u00e9veloppement durable\", qui, avec le d\u00e9veloppement des ENR diffuses (vent et soleil) et de la voiture \u00e9lectrique est un sc\u00e9nario tr\u00e8s demandeur de m\u00e9taux divers.\n\nIl y a 10 fois plus (en poids) de m\u00e9taux hors acier dans une voiture \u00e9lectrique qu'une voiture thermique, et il faut 20 \u00e0 30 fois plus de cuivre par MWh \u00e9lectrique pour les modes diffus (vent - soleil) que pour les modes \"concentr\u00e9s\" (dont le nucl\u00e9aire). \n\nCa veut donc dire 10 \u00e0 20 fois plus de mines pour les m\u00e9taux concern\u00e9s, \u00e0 supposer que les gisements soient bien l\u00e0, et pour longtemps (car dans l'expression \"d\u00e9veloppement durable\" il y a \"durable\" :) )\n\nSachant que sur les ressources p\u00e9troli\u00e8res l'AIE a souvent \u00e9t\u00e9 optimiste, la question du \"bouclage en mat\u00e9riaux\" de la voie choisie pour d\u00e9carboner l'\u00e9lectricit\u00e9 (de l'\u00e9olien et du solaire plut\u00f4t que du nuke) par beaucoup de pays devrait assur\u00e9ment faire l'objet d'investigations un peu plus approfondies que des professions de foi !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6796120465590022145,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6796120466223378432,urn:li:activity:6796120466223378432,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 132, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6796120466223378432,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6796120466223378432,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6796120466223378432", + "threadId": "activity:6796120466223378432", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6796120466223378432", + "urn": "urn:li:activity:6796120466223378432", + "numComments": 214, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6796120466223378432", + "reactionTypeCounts": [ + { + "count": 2157, + "reactionType": "LIKE" + }, + { + "count": 352, + "reactionType": "MAYBE" + }, + { + "count": 350, + "reactionType": "INTEREST" + }, + { + "count": 42, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6796120466223378432", + "numLikes": 2920, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6796120466223378432", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2920, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6795976730180939776,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6795976730180939776", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6795976730180939776)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6795976730180939776)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_avril-2021-tr%C3%A8s-peu-arros%C3%A9-avec-des-nuits-activity-6795976730180939776-mAuc?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6795976729744723968", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6795976730180939776", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6795976730180939776,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6795976730180939776,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6795976729744723968", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "k/J2ElXQNjCTdWMWxV/xRg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6795976730180939776,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7680718754595388133", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675448591564?e=1677240000&v=beta&t=l2uGFJbXaTqyzqScWW7C5-NkzgsqQiyup3KJxl0nc4U", + "expiresAt": 1677240000000, + "height": 563 + }, + { + "width": 1035, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675448591564?e=1677240000&v=beta&t=o6X84c6-c2B28FXl_lPS-4lsliKbVKWW4oRRTic1HzQ", + "expiresAt": 1677240000000, + "height": 729 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675448591564?e=1677240000&v=beta&t=EghUdh1bvhGYZh__d7ntVNdpK62LkHkQXR8IBDEUbKw", + "expiresAt": 1677240000000, + "height": 112 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675448591564?e=1677240000&v=beta&t=g02khehlEYaPJB5eclZXmd1xu7djtlaR4z4Y2m5f4g0", + "expiresAt": 1677240000000, + "height": 338 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEM6jj3qlnmFQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.70375 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "\u00c9volution des temp\u00e9ratures minimales et maximales quotidiennes en France par rapport \u00e0 la normale quotidienne. \u00a9 M\u00e9t\u00e9o-France." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7680718754595388133)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7680718754595388133)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "meteofrance.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Avril 2021 : tr\u00e8s peu arros\u00e9 avec des nuits remarquablement froides by meteofrance.com", + "actionTarget": "https://meteofrance.com/actualites-et-dossiers/actualites/climat/avril-2021-tres-peu-arrose-avec-des-nuits-remarquablement-froides" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Avril 2021\u00a0: tr\u00e8s peu arros\u00e9 avec des nuits remarquablement froides" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6795976729744723968,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En avril, la pluviom\u00e9trie a \u00e9t\u00e9 d\u00e9ficitaire de 30 \u00e0 80\u00a0% sur une grande partie de l\u2019Hexagone. Cela faisait suite \u00e0 un mois de mars d\u00e9j\u00e0 d\u00e9ficitaire en pluie, avec des \"alertes s\u00e9cheresse\" qui commencent \u00e0 se manifester dans le monde agricole, et forestier. Apr\u00e8s le gel, la s\u00e9cheresse : rappelons que le seul probl\u00e8me quand \"ca ne pousse pas\" n'est pas l'indemnisation des agriculteurs. La multiplication de ce genre de probl\u00e8me engendrera du stress alimentaire, rappelle le GIEC.\n\nAlors que les \"beaux jours\" approchent, il faut donc esp\u00e9rer qu'ils ne soient pas trop beaux pour compenser le d\u00e9ficit du d\u00e9but de printemps..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6795976729744723968,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6795976730180939776,urn:li:activity:6795976730180939776,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 45, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6795976730180939776,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6795976730180939776,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6795976730180939776", + "threadId": "activity:6795976730180939776", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6795976730180939776", + "urn": "urn:li:activity:6795976730180939776", + "numComments": 88, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6795976730180939776", + "reactionTypeCounts": [ + { + "count": 633, + "reactionType": "LIKE" + }, + { + "count": 90, + "reactionType": "INTEREST" + }, + { + "count": 69, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6795976730180939776", + "numLikes": 808, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6795976730180939776", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 808, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6795768010364731392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6795768010364731392", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6795768010364731392)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6795768010364731392)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-superviseurs-alertent-sur-une-possible-activity-6795768010364731392-3Sjx?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6795768009949499392", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6795768010364731392", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6795768010364731392,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6795768010364731392,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6795768009949499392", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "kbW4nVl7LyRxfpXFtWZ6Rw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6795768010364731392,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7321567437874204224", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675433564609?e=1677240000&v=beta&t=0PyxK8VfuFLpupirUXK5qxfdILjINHMsbZyGRAlAjso", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675433564609?e=1677240000&v=beta&t=BHwvl6Q550l9Ztg_-IDaR-2s3L_0_ISFtAuqMnAe3p8", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675433564609?e=1677240000&v=beta&t=k7Nd-r0zMBS0fkIKbTJgWDLcKrtGTpwijIVHqEAgnPU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675433564609?e=1677240000&v=beta&t=Iu7Z6jI7TmsEgmDh2ImeXrAAlC2Zvxh4n5pVXEwGFPc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGpaAM_03DoPg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7321567437874204224)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7321567437874204224)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les superviseurs alertent sur une possible explosion du co\u00fbt des catastrophes naturelles by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/finance-marches/banque-assurances/les-superviseurs-alertent-sur-une-possible-explosion-du-cout-des-catastrophes-naturelles-1312226" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les superviseurs alertent sur une possible explosion du co\u00fbt des catastrophes naturelles" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6795768009949499392,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Autorit\u00e9 de contr\u00f4le prudentiel et de r\u00e9solution (ACPR), l'organe de supervision fran\u00e7ais de la banque et de l'assurance, a conduit une \"premi\u00e8re \u00e9valuation des risques financiers dus au changement climatique\" : https://lnkd.in/d_-xmB4\n\nLa bonne nouvelle, c'est que l'ACPR entend attirer l'attention sur ces risques. La plut\u00f4t mauvaise, c'est que tout le monde va prendre le montant fourni comme un ordre de grandeur pertinent, et il est bien trop faible pour nous faire peur.\n\nLes indemnisations li\u00e9es aux catastrophes naturelles sont actuellement de l'ordre d'un peu plus d'un milliard d'euros par an. Si ce montant triple d'ici \u00e0 30 ans, cela revient \u00e0 dire que les dommages de la d\u00e9rive climatique vont monter \u00e0... 3 milliards par an en 2050. Pour un pays qui fait plus de 2000 milliards de PIB, c'est tout \u00e0 fait n\u00e9gligeable, et ne justifie alors pas un effort qui sera bien plus couteux.\n\nJe propose une autre conclusion : il est h\u00e9las vraisemblable que les mod\u00e8les et sc\u00e9narios utilis\u00e9s pour arriver \u00e0 ce r\u00e9sultat ne repr\u00e9sentent pas correctement la physique sous-jacente, et que ce montant n'a pas plus de pertinence qu'un autre. Mais comme l'exercice est qualifi\u00e9 par l'ACPR de \"pilote\", cela veut dire que l'on peut esp\u00e9rer mieux la prochaine fois !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6795768009949499392,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6795768010364731392,urn:li:activity:6795768010364731392,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 22, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6795768010364731392,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6795768010364731392,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6795768010364731392", + "threadId": "activity:6795768010364731392", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6795768010364731392", + "urn": "urn:li:activity:6795768010364731392", + "numComments": 33, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6795768010364731392", + "reactionTypeCounts": [ + { + "count": 220, + "reactionType": "LIKE" + }, + { + "count": 34, + "reactionType": "MAYBE" + }, + { + "count": 31, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6795768010364731392", + "numLikes": 292, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6795768010364731392", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 292, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6795412211587158016,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6795412211587158016", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6795412211587158016)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6795412211587158016)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-d%C3%A9veloppement-des-voitures-autonomes-activity-6795412211587158016-ObXI?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6795412211188695040", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6795412211587158016", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6795412211587158016,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6795412211587158016,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6795412211188695040", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "nbBZXRKKF4szNO84kAc9kw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6795412211587158016,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7022911107474824214", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675793376506?e=1677240000&v=beta&t=_4VNYc8IlYydE2psttJMxG3sRI4kdPsaQdgV2mxyPMI", + "expiresAt": 1677240000000, + "height": 531 + }, + { + "width": 1203, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675793376507?e=1677240000&v=beta&t=WY9X4p4XXYNVYEUtj4rSStN5PsRup8fmHKppyKFUDFA", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675793376507?e=1677240000&v=beta&t=XiK7ReNPm-0RHgKiABW2_qRltRWdGUkD-x1iTT8SFpc", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675793376507?e=1677240000&v=beta&t=q9PLq1aKp71-PzaU8skulPXCzbwTHWw2zUsmSzE7CdQ", + "expiresAt": 1677240000000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEmYV4As5LHdQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66375 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7022911107474824214)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7022911107474824214)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le d\u00e9veloppement des voitures autonomes : l\u00e2cher le volant pour mieux voir les \u00e9missions de CO2 s'envoler ? | Carbone 4 by carbone4.com", + "actionTarget": "https://www.carbone4.com/developpement-voitures-autonomes-lacher-volant-mieux-voir-emissions-de-co2-senvoler" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le d\u00e9veloppement des voitures autonomes : l\u00e2cher le volant pour mieux voir les \u00e9missions de CO2 s'envoler ? | Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6795412211188695040,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La voiture autonome, bonne ou mauvaise affaire pour le climat ? Cette analyse synth\u00e9tique de Carbone 4 montre qu'en face d'un argument pour, on trouve beaucoup (trop) d'arguments contre. \n\nDu coup, si nous \u00e9tions raisonnables, nous saurions quoi faire. Mais le serons nous ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6795412211188695040,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6795412211587158016,urn:li:activity:6795412211587158016,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6795412211587158016,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6795412211587158016,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6795412211587158016", + "threadId": "activity:6795412211587158016", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6795412211587158016", + "urn": "urn:li:activity:6795412211587158016", + "numComments": 95, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6795412211587158016", + "reactionTypeCounts": [ + { + "count": 244, + "reactionType": "LIKE" + }, + { + "count": 36, + "reactionType": "INTEREST" + }, + { + "count": 26, + "reactionType": "MAYBE" + }, + { + "count": 6, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6795412211587158016", + "numLikes": 315, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6795412211587158016", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 315, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6795300906784047104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6795300906784047104", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6795300906784047104)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6795300906784047104)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-cjd-se-mobilise-pour-les-r%C3%A9gionales-2021-activity-6795300906784047104-zbYq?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6795300906356240384", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6795300906784047104", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6795300906784047104,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6795300906784047104,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6795300906356240384", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "BR4yBedIu3bBvb6TEnJwxw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6795300906784047104,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7108942476345176947", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676157661371?e=1677240000&v=beta&t=RKGjcMieSWMmYrAsOgAYyg0wrWfPLJ35zqeowEmE83g", + "expiresAt": 1677240000000, + "height": 574 + }, + { + "width": 1113, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676157661371?e=1677240000&v=beta&t=ScdPHZguDw1a_OiyG951fwCrIo_hCj7rdTz1LDPsT1A", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676157661371?e=1677240000&v=beta&t=t5E-fPTYQMi8kDKSE9HNm0h6OqzGZ2Wa_sLivE4fO1g", + "expiresAt": 1677240000000, + "height": 114 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676157661372?e=1677240000&v=beta&t=gyrv535zbd4n6izTl4ifgFEIhvpcAX5vflwRFWBYo6Y", + "expiresAt": 1677240000000, + "height": 344 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFlX4W0MCrRfw/articleshare-shrink_" + }, + "displayAspectRatio": 0.7175 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7108942476345176947)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7108942476345176947)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "cjd.net \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le CJD se mobilise pour les R\u00e9gionales 2021 ! by cjd.net", + "actionTarget": "https://www.cjd.net/2021/04/30/le-cjd-se-mobilise-pour-les-regionales-2021/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le CJD se mobilise pour les R\u00e9gionales 2021 !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6795300906356240384,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Centre des Jeunes Dirigeants, mouvement patronal qui, comme son nom l'indique, rassemble plusieurs milliers de dirigeants \u00e2g\u00e9s (normalement) de moins de 40 ans, publie un \"plaidoyer pour les r\u00e9gionales\" comportant 15 recommandations. La moiti\u00e9 - 8 sur 15 - concerne le sujet \"transition \u00e9cologique\" :\n#8. Prendre en compte les enjeux de d\u00e9veloppement durable dans la structuration et l'\u00e9volution des programmes d'enseignements technologiques et professionnels\n#9. Accompagner les reconversions professionnelles vers les m\u00e9tiers reli\u00e9s \u00e0 la transition \u00e9cologique et sociale\n#10. Co-\u00e9laborer une charte de la commande publique de transition\n#11. D\u00e9velopper des fonds souverains r\u00e9gionaux responsables\n#12. Adopter des pactes pour la relocalisation de l\u2019\u00e9conomie\n#13. Cr\u00e9er une plateforme r\u00e9gionale de dialogue et de concertation autour de la RSE\n#14. Lancer un budget participatif citoyen \u00ab Mes solutions pour le monde d\u2019apr\u00e8s \u00bb\n#15. Cr\u00e9er un revenu de transition \u00e9cologique et sociale\n\nOn pourra bien sur discuter de la pertinence de chacune de ces demandes, et de leur coh\u00e9rence avec le comportement des membres. Il n'emp\u00eache : un mouvement patronal laisse rarement autant de place \u00e0 l'environnement dans une prise de position \"g\u00e9n\u00e9raliste\" \u00e0 l'occasion d'\u00e9lections. C'est un bon signe." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6795300906356240384,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6795300906784047104,urn:li:activity:6795300906784047104,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 30, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6795300906784047104,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6795300906784047104,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6795300906784047104", + "threadId": "activity:6795300906784047104", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6795300906784047104", + "urn": "urn:li:activity:6795300906784047104", + "numComments": 45, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6795300906784047104", + "reactionTypeCounts": [ + { + "count": 469, + "reactionType": "LIKE" + }, + { + "count": 40, + "reactionType": "PRAISE" + }, + { + "count": 15, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6795300906784047104", + "numLikes": 545, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6795300906784047104", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 545, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6794885636059893760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6794885636059893760", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6794885636059893760)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6794885636059893760)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-poumons-de-la-plan%C3%A8te-sont-au-bord-de-activity-6794885636059893760-PuaC?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6794885635523014656", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6794885636059893760", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6794885636059893760,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6794885636059893760,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6794885635523014656", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "vT2dZkyc6CMaUdRUXuqE9g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6794885636059893760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7532389650882641853", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675702490226?e=1677240000&v=beta&t=S13mp9Lf63iRcNt44YsEuvi6cm7Pv-jyMLlXI76cedA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675702490226?e=1677240000&v=beta&t=EtZslvfIlJJBAkOPa5Xt6pFddWzsNFSMPPcMWhgvfdk", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675702490226?e=1677240000&v=beta&t=1oAqbrXc_QETvfKEX12yBNwsPN1p0XzGwKcBsqHskTs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675702490226?e=1677240000&v=beta&t=-bpXZR_ZWY3VbeCGhZEPK4CTcKvgHvyPDZTWc8H2SYs", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF5VK3czSR4vA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7532389650882641853)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7532389650882641853)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les poumons de la plan\u00e8te sont au bord de l'asphyxie by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/sciences-prospective/les-poumons-de-la-planete-sont-au-bord-de-lasphyxie-1311308" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les poumons de la plan\u00e8te sont au bord de l'asphyxie" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6794885635523014656,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Mauvaise nouvelle pour un Lundi, h\u00e9las : l'emballement du r\u00e9chauffement commence \u00e0 pointer le bout de son (vilain) nez.\n\nTant qu'il est dans l'air, le CO2 est chimiquement inalt\u00e9rable, et donc... \u00e9ternel. Pour ressortir de l'atmosph\u00e8re, ce gaz ne conna\u00eet que deux exutoires : la photosynth\u00e8se, et la dissolution dans l'oc\u00e9an.\n\nMalheureusement, ces deux processus vont s'affaiblir dans le cadre du r\u00e9chauffement climatique. Le puits terrestre (la photosynth\u00e8se) baisse avec la d\u00e9forestation, le stress hydrique et thermique, et les incendies. Le puits oc\u00e9anique baisse lorsque l'eau se r\u00e9chauffe, et \u00e9galement lorsque la plong\u00e9e des eaux au large du Groenland s'affaiblit.\n\nCet article des Echos rappelle diverses \u00e9tudes scientifiques r\u00e9centes qui montrent toutes que l'affaiblissement des puits, terrestres comme oc\u00e9aniques, est en cours, avec un risque majeur que les puits se transforment en sources, risque document\u00e9 depuis des d\u00e9cennies dans la litt\u00e9rature scientifique (pas dans la presse g\u00e9n\u00e9raliste qui globalement n'est pas du tout au niveau).\n\nIl faut rappeler que, entre autres espoirs fous (car le premier est de compter sur de la croissance verte), la Strat\u00e9gie Nationale Bas Carbone compte aussi sur une augmentation des puits. Cela risque fort d'\u00eatre juste un r\u00eave de plus." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6794885635523014656,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6794885636059893760,urn:li:activity:6794885636059893760,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 101, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6794885636059893760,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6794885636059893760,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6794885636059893760", + "threadId": "activity:6794885636059893760", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6794885636059893760", + "urn": "urn:li:activity:6794885636059893760", + "numComments": 215, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6794885636059893760", + "reactionTypeCounts": [ + { + "count": 2116, + "reactionType": "LIKE" + }, + { + "count": 478, + "reactionType": "INTEREST" + }, + { + "count": 468, + "reactionType": "MAYBE" + }, + { + "count": 67, + "reactionType": "APPRECIATION" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6794885636059893760", + "numLikes": 3139, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6794885636059893760", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3139, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6794692180037386240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6794692180037386240", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6794692180037386240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6794692180037386240)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_boycottons-la-5g-activity-6794692180037386240-My21?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6794692179534069760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6794692180037386240", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6794692180037386240,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6794692180037386240,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6794692179534069760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "/Nc5EggnNZNKPHV8FfZrPQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6794692180037386240,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9129110868651618441", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675598921047?e=1677240000&v=beta&t=cAA5KtMaMB84FpdV8LG1uzCqxTTDYzvjknFxE-3fJ5E", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675598921047?e=1677240000&v=beta&t=UmsCFHJZPydckALsbkMawthyf_YrQORKxt7XPolRN_I", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675598921047?e=1677240000&v=beta&t=7DaRqQXrX0fdrgB0huU7emXr5i4BKppvZeQ1jzPH27M", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675598921047?e=1677240000&v=beta&t=SWMbbYvrASLAwOKKfkSQMlO3HMMYUm9WR5vCuTiWMG8", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE3pg9VXjLHFQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Des militants pour le climat du groupe Extinction R\u00e9bellion placent une banderole sur un panneau publicitaire lors d'une manifestation contre le r\u00e9seau mobile 5G dans le centre de Bruxelles, le 5 juin 2020." + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9129110868651618441)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9129110868651618441)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "liberation.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Boycottons la 5G ! by liberation.fr", + "actionTarget": "https://www.liberation.fr/idees-et-debats/tribunes/boycottons-la-5g-20210501_FH4YLLHMUVCTLBT5ZY7QEW5WDU/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Boycottons la 5G !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6794692179534069760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "500 scientifiques signent une tribune appelant \u00e0 boycotter la 5G. On peut y lire que \"\u00e0 l\u2019heure o\u00f9 il nous reste sept ans de budget carbone pour rester en dessous de 1,5\u00b0C de r\u00e9chauffement climatique, il para\u00eet tout \u00e0 fait d\u00e9raisonnable de d\u00e9ployer une technologie \u00e9nergivore, pr\u00e9datrice en ressources naturelles et humaines, ne r\u00e9pondant \u00e0 aucun de nos besoins fondamentaux\".\n\nC'est bien cela l'argument central : quand nous avons un montant donn\u00e9 \u00e0 d\u00e9penser, commencer par en investir une partie dans du superflu nous privera par construction du n\u00e9cessaire. Le CO2 \u00e9mis dans l'atmosph\u00e8re pour regarder une s\u00e9rie ou du porno en un peu plus haute d\u00e9finition (sur un terminal qui le plus souvent n'en profitera m\u00eame pas) ne pourra plus \u00eatre \u00e9mis - du moins si on veut limiter la d\u00e9rive climatique \u00e0 un niveau donn\u00e9 - pour construire des pistes cyclables ou des digues, faire des v\u00e9los \u00e9lectriques, adapter l'agriculture, planter des arbres, isoler des b\u00e2timents ou construire des usines d'un genre nouveau \u00e0 la place des anciennes.\n\nIl ne s'agit donc pas d'\u00eatre \"anti technologies\", mais \"pro respect d'une enveloppe globale en hi\u00e9rarchisant dans le bon ordre\".\n\nEt les signataires d'appeler leurs concitoyens \u00e0 faire preuve d'une coh\u00e9rence que l'Etat n'a pas eue. Esp\u00e9rons que cela soit entendu !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6794692179534069760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6794692180037386240,urn:li:activity:6794692180037386240,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 256, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6794692180037386240,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6794692180037386240,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6794692180037386240", + "threadId": "activity:6794692180037386240", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6794692180037386240", + "urn": "urn:li:activity:6794692180037386240", + "numComments": 590, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6794692180037386240", + "reactionTypeCounts": [ + { + "count": 6943, + "reactionType": "LIKE" + }, + { + "count": 714, + "reactionType": "PRAISE" + }, + { + "count": 466, + "reactionType": "MAYBE" + }, + { + "count": 178, + "reactionType": "APPRECIATION" + }, + { + "count": 138, + "reactionType": "INTEREST" + }, + { + "count": 65, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6794692180037386240", + "numLikes": 8504, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6794692180037386240", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 8504, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6794609815474720768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6794609815474720768", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6794609815474720768)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6794609815474720768)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_eurazeo-va-financer-la-bascule-%C3%A9cologique-activity-6794609815474720768-qZfF?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6794609815034306561", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6794609815474720768", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6794609815474720768,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6794609815474720768,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6794609815034306561", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "P2+uxoTKb43bePPAQ9RFUQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6794609815474720768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8875316335576655366", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676173078465?e=1677240000&v=beta&t=34BcBefgBHq2IATtpRlZ1C146fs069CHqTOhEynqRbo", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676173078465?e=1677240000&v=beta&t=GjE6ChTMYXgUZNDaEMg90Wfoj3MPy42NMaH7cIIJM3k", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676173078465?e=1677240000&v=beta&t=1LNzOJZDECbTAOZwkk2oSVFei83oIKOcebioiDWzNWI", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676173078465?e=1677240000&v=beta&t=lkNKHLbxTo_c0jgYliD-cnD9hMxeqHRbPEVGCiIq4wU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGydkeIHLv6WA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8875316335576655366)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8875316335576655366)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Eurazeo va financer la bascule \u00e9cologique du transport maritime by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/tourisme-transport/eurazeo-va-financer-la-bascule-ecologique-du-transport-maritime-1308197" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Eurazeo va financer la bascule \u00e9cologique du transport maritime" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6794609815034306561,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Apr\u00e8s l'a\u00e9rien, c'est au tour du maritime de faire l'objet d'un article des Echos qui a un peu de mal avec les ordres de grandeur. Il est question d'un fonds g\u00e9r\u00e9 par Eurazeo (20 milliards d'euros sous gestion, un des plus gros investisseurs dans le non cot\u00e9 en France) qui va consacrer 300 millions - un gros pour-cent des encours, donc - \u00e0 la \"bascule \u00e9cologique du maritime\".\n\n50% - 150 millions - financera \"des bateaux neufs\". On aurait pu enlever le pluriel : un gros porte-conteneurs (il y en a 5000 dans le monde : https://lnkd.in/dVxPede ) coute... 150 millions. 1 sur 5000, ca fait un peu juste pour une \"bascule\", non ?\n\nL'article indique ensuite que de baisser la teneur en soufre des carburants \"vise \u00e0 r\u00e9duire les \u00e9missions totales de gaz \u00e0 effet de serre du maritime\". Manque de chance, le SO2 n'est pas un gaz \u00e0 effet de serre, mais un \"pr\u00e9curseur d'a\u00e9rosols\", et contribue \u00e0... refroidir le climat (https://lnkd.in/deCX9i2 ).\n\nC'est \u00e9videmment une bonne id\u00e9e de financer du mieux plut\u00f4t que du moins bien. Mais l'id\u00e9al serait de donner les chiffres, juste les chiffres (et des chiffres v\u00e9rifi\u00e9s par des tiers ind\u00e9pendants, comme pour les euros) et de laisser le lecteur d\u00e9cider par lui-m\u00eame si c'est une \"bascule\" ou pas.\n" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6794609815034306561,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6794609815474720768,urn:li:activity:6794609815474720768,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 59, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6794609815474720768,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6794609815474720768,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6794609815474720768", + "threadId": "activity:6794609815474720768", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6794609815474720768", + "urn": "urn:li:activity:6794609815474720768", + "numComments": 111, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6794609815474720768", + "reactionTypeCounts": [ + { + "count": 1949, + "reactionType": "LIKE" + }, + { + "count": 170, + "reactionType": "INTEREST" + }, + { + "count": 147, + "reactionType": "MAYBE" + }, + { + "count": 52, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6794609815474720768", + "numLikes": 2340, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6794609815474720768", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2340, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6794305150564487168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6794305150564487168", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6794305150564487168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6794305150564487168)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nobel-prize-laureates-and-other-experts-issue-activity-6794305150564487168-OzSz?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6794305150056992768", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6794305150564487168", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6794305150564487168,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6794305150564487168,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6794305150056992768", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "dOSgiPleUF1Z1GbBndMxiw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6794305150564487168,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9018511740193813131", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676042638332?e=1677240000&v=beta&t=pRsKqvFDF6OsEe55OdhKgRoyhFfbagTHbtK6LGznB60", + "expiresAt": 1677240000000, + "height": 418 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676042638332?e=1677240000&v=beta&t=w_CtQD_mp3hwuRU7k7iafiYSrse4BGEllsBdJhTv4vA", + "expiresAt": 1677240000000, + "height": 628 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676042638332?e=1677240000&v=beta&t=jeqqir8XkRNuHO3NSx3Mk-LFxm59hLecKpOJgChii00", + "expiresAt": 1677240000000, + "height": 83 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676042638332?e=1677240000&v=beta&t=9_20sXT47TBBRU7MfveBRjc0crXlMooKdpsB19gSLYc", + "expiresAt": 1677240000000, + "height": 251 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF_ZhJJ_IGPAA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9018511740193813131)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9018511740193813131)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "nationalacademies.org \u2022 13 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nobel Prize Laureates and Other Experts Issue Urgent Call for Action After \u2018Our Planet, Our Future\u2019 Summit by nationalacademies.org", + "actionTarget": "https://www.nationalacademies.org/news/2021/04/nobel-prize-laureates-and-other-experts-issue-urgent-call-for-action-after-our-planet-our-future-summit" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nobel Prize Laureates and Other Experts Issue Urgent Call for Action After \u2018Our Planet, Our Future\u2019 Summit" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6794305150056992768,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le site institutionnel des acad\u00e9mies US des sciences, de m\u00e9decine et de technologie publie un appel, sign\u00e9 de prix Nobel et d'autres personnalit\u00e9s, invitant \u00e0 se remuer un peu plus les fesses sur la question des limites plan\u00e9taires, pour faire court.\n\nOn peut y lire que :\n- l'anthropoc\u00e8ne se caract\u00e9risera par des chocs globaux,\n- la nouvelle normalit\u00e9 c'est l'impr\u00e9vu (bienvenue dans le monde du covid permanent...),\n- globalement, la technologie a acc\u00e9l\u00e9r\u00e9 la d\u00e9stabilisation de la plan\u00e8te, et non l'inverse (autant pour les \"convaincus que le progr\u00e8s technique va nous sauver\", ce qui est int\u00e9ressant pour des gens qui en sont \u00e0 l'origine),\n- nous sommes dans une course contre la montre\n\nLes signataires pr\u00e9conisent notamment de renforcer rapidement l'\u00e9ducation et la formation aux enjeux (air connu), et de valoriser la r\u00e9silience dans nos comportements (alors qu'actuellement nous ne valorisons que la performance, pas du tout la s\u00e9curit\u00e9 pour l'avenir).\n\nCet appel a raison de rappeler que l'ignorance est mortif\u00e8re. Le probl\u00e8me, c'est que ceux qui nous informent \u00e9tant concern\u00e9s au premier chef, du moins en France, on ne peut pas vraiment compter sur eux pour le rappeler..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6794305150056992768,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6794305150564487168,urn:li:activity:6794305150564487168,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 27, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6794305150564487168,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6794305150564487168,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6794305150564487168", + "threadId": "activity:6794305150564487168", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6794305150564487168", + "urn": "urn:li:activity:6794305150564487168", + "numComments": 67, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6794305150564487168", + "reactionTypeCounts": [ + { + "count": 779, + "reactionType": "LIKE" + }, + { + "count": 56, + "reactionType": "INTEREST" + }, + { + "count": 43, + "reactionType": "MAYBE" + }, + { + "count": 36, + "reactionType": "PRAISE" + }, + { + "count": 16, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6794305150564487168", + "numLikes": 939, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6794305150564487168", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 939, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6794171724565901312,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6794171724565901312", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6794171724565901312)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6794171724565901312)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_votre-serviteur-interviendra-le-6-mai-prochain-activity-6794171724565901312-tf8I?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6794171723701874688", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6794171724565901312", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6794171724565901312,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6794171724565901312,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6794171723701874688", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "vooCFuq42ypYPQvgJh0Iaw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6794171724565901312,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFYznDQDna9LA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFYznDQDna9LA", + "artifacts": [ + { + "width": 1860, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1619856766493?e=1679529600&v=beta&t=fVA1moLCnlhmrvx4E-9-GLPduMti3dIOnC-M9e9EYEE", + "expiresAt": 1679529600000, + "height": 966 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1619856768043?e=1679529600&v=beta&t=KQl0v0d6lwCijipJDxk2ZFQCwvoMQHJyaGo4EsZ8B1w", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1619856768043?e=1679529600&v=beta&t=pvM0DZ4HdUCVw-NuXWTFMeqOs-I04QWH8EBAC3avurg", + "expiresAt": 1679529600000, + "height": 665 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1619856768043?e=1679529600&v=beta&t=l8wLnaSl9S3V6B7-up5yX9LeuvO1LQcns73JuJUx1DA", + "expiresAt": 1679529600000, + "height": 249 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1619856768043?e=1679529600&v=beta&t=N-qCaeOTTVgTSKX7S9hPo0SSsrSqqP2pm-JJNwiEXzc", + "expiresAt": 1679529600000, + "height": 83 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1619856768043?e=1679529600&v=beta&t=CQJqVt5KzJ3i4iGzFU60Je4nGFo2BoksNSWzw5SkJ4A", + "expiresAt": 1679529600000, + "height": 415 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFYznDQDna9LA/feedshare-shrink_" + }, + "displayAspectRatio": 0.5193548387096775 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6794171723701874688,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 81, + "length": 72, + "miniCompany": { + "objectUrn": "urn:li:company:48088327", + "entityUrn": "urn:li:fs_miniCompany:48088327", + "name": "CENTRE DES JEUNES DIRIGEANTS D'ENTREPRISE SECTION POITIERS CHATELLERAULT", + "showcase": false, + "active": true, + "universalName": "centre-des-jeunes-dirigeants-d'entreprise-section-poitiers-chatellerault", + "dashCompanyUrn": "urn:li:fsd_company:48088327", + "trackingId": "fe3HZn4CSQ+g9eUTLFUbFw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Votre serviteur interviendra le 6 mai prochain dans un \u00e9v\u00e9nement organis\u00e9 par le CENTRE DES JEUNES DIRIGEANTS D'ENTREPRISE SECTION POITIERS CHATELLERAULT intitul\u00e9 \"Un pacte pour la plan\u00e8te\" : https://lnkd.in/dcKhuWz\n\nHors virus cela aurait du se tenir au Futuroscope, mais avec, cela sera \"tout sur \u00e9cran\".\n\nCet \u00e9v\u00e9nement est prioritairement destin\u00e9 \u00e0 un public de \"dirigeants d'entreprises\" (puisque le CJD est un syndicat patronal), mais s'inscrit quand m\u00eame qui veut !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6794171723701874688,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6794171724565901312,urn:li:activity:6794171724565901312,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 3, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6794171724565901312,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6794171724565901312,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6794171724565901312", + "threadId": "activity:6794171724565901312", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6794171724565901312", + "urn": "urn:li:activity:6794171724565901312", + "numComments": 3, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6794171724565901312", + "reactionTypeCounts": [ + { + "count": 131, + "reactionType": "LIKE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6794171724565901312", + "numLikes": 142, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6794171724565901312", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 142, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6794171510346018816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6794171510346018816", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6794171510346018816)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6794171510346018816)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_votre-serviteur-interviendra-le-6-mai-prochain-activity-6794171510346018816-WCd_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6794171509783973889", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6794171510346018816", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6794171510346018816,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6794171510346018816,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6794171509783973889", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "+OvQHHzKRK+jwdMochK8Yg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6794171510346018816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQExObUfYydaAg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQExObUfYydaAg", + "artifacts": [ + { + "width": 1860, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1619856714774?e=1679529600&v=beta&t=P1o6oxJfPzSxlTiNgrqyoubtOg7TIjNdCH5g5Fob0Vw", + "expiresAt": 1679529600000, + "height": 966 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1619856716323?e=1679529600&v=beta&t=KNysCISbHLMZ0dgzJ4JGi8myvX1A0-wwt0JuzHngOog", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1619856716323?e=1679529600&v=beta&t=oZxLX_yAQhX264GpqDpMXQSARrO6oTPgnCYT767yTFY", + "expiresAt": 1679529600000, + "height": 665 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1619856716323?e=1679529600&v=beta&t=IhUygkyGtf9ps-qEvQzjMmEproMWDXCWAp3VrLeT8kM", + "expiresAt": 1679529600000, + "height": 249 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1619856716323?e=1679529600&v=beta&t=zx_10zAM7VY6a3O_6ULR9b8vk75YunhsR55twEJ-SOg", + "expiresAt": 1679529600000, + "height": 83 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1619856716323?e=1679529600&v=beta&t=q1LNZLLd0AubEXKAzeWDwyd8XuQvTevmt5wpwq2059M", + "expiresAt": 1679529600000, + "height": 415 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQExObUfYydaAg/feedshare-shrink_" + }, + "displayAspectRatio": 0.5193548387096775 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6794171509783973889,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 81, + "length": 72, + "miniCompany": { + "objectUrn": "urn:li:company:48088327", + "entityUrn": "urn:li:fs_miniCompany:48088327", + "name": "CENTRE DES JEUNES DIRIGEANTS D'ENTREPRISE SECTION POITIERS CHATELLERAULT", + "showcase": false, + "active": true, + "universalName": "centre-des-jeunes-dirigeants-d'entreprise-section-poitiers-chatellerault", + "dashCompanyUrn": "urn:li:fsd_company:48088327", + "trackingId": "eBM3BiTiTXmG0sNdVWAf1w==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Votre serviteur interviendra le 6 mai prochain dans un \u00e9v\u00e9nement organis\u00e9 par le CENTRE DES JEUNES DIRIGEANTS D'ENTREPRISE SECTION POITIERS CHATELLERAULT intitul\u00e9 \"Un pacte pour la plan\u00e8te\" : https://lnkd.in/dcKhuWz\n\nHors virus cela aurait du se tenir au Futuroscope, mais avec, cela sera \"tout sur \u00e9cran\".\n\nCet \u00e9v\u00e9nement est prioritairement destin\u00e9 \u00e0 un public de \"dirigeants d'entreprises\" (puisque le CJD est un syndicat patronal), mais s'inscrit quand m\u00eame qui veut !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6794171509783973889,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6794171510346018816,urn:li:activity:6794171510346018816,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 1, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6794171510346018816,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6794171510346018816,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6794171510346018816", + "threadId": "activity:6794171510346018816", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6794171510346018816", + "urn": "urn:li:activity:6794171510346018816", + "numComments": 2, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6794171510346018816", + "reactionTypeCounts": [ + { + "count": 105, + "reactionType": "LIKE" + }, + { + "count": 3, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6794171510346018816", + "numLikes": 108, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6794171510346018816", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 108, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6794171455081852928,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6794171455081852928", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6794171455081852928)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6794171455081852928)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_votre-serviteur-interviendra-le-6-mai-prochain-activity-6794171455081852928-syOK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6794171454528204800", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6794171455081852928", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6794171455081852928,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6794171455081852928,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6794171454528204800", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "fSfYcJaj502g6X5qSz+nXA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6794171455081852928,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQGSK16uN98X7w", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQGSK16uN98X7w", + "artifacts": [ + { + "width": 1860, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1619856701602?e=1679529600&v=beta&t=vhbhgdrZ_Ktmgb3tWL7BVYR2_UwSbv6HgOqUdd0i_FE", + "expiresAt": 1679529600000, + "height": 966 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1619856703377?e=1679529600&v=beta&t=W9z_5qY0RK-Py0Me7MdebboDRtjxpUQiISl2EWw3y-s", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1619856703377?e=1679529600&v=beta&t=eySoLd3hYEazAgrXx8d4uerUPH9dv8u1Wu4oyvjV2MA", + "expiresAt": 1679529600000, + "height": 665 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1619856703377?e=1679529600&v=beta&t=BfqkR4n3I-MUu727Mi5Hw9foHhqMCAr2j_d37mdvtFM", + "expiresAt": 1679529600000, + "height": 249 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1619856703377?e=1679529600&v=beta&t=zhDxMyTo6QT_wMFhbI75R8VkVfuVLoOrnddzkuvnOhg", + "expiresAt": 1679529600000, + "height": 83 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1619856703377?e=1679529600&v=beta&t=gtV7K3Onic-q-k0pjJ8XSeu-mnv0mNgT4CekD3f3_WY", + "expiresAt": 1679529600000, + "height": 415 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQGSK16uN98X7w/feedshare-shrink_" + }, + "displayAspectRatio": 0.5193548387096775 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6794171454528204800,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 81, + "length": 72, + "miniCompany": { + "objectUrn": "urn:li:company:48088327", + "entityUrn": "urn:li:fs_miniCompany:48088327", + "name": "CENTRE DES JEUNES DIRIGEANTS D'ENTREPRISE SECTION POITIERS CHATELLERAULT", + "showcase": false, + "active": true, + "universalName": "centre-des-jeunes-dirigeants-d'entreprise-section-poitiers-chatellerault", + "dashCompanyUrn": "urn:li:fsd_company:48088327", + "trackingId": "srT6EGGrSP+suCFEZGIDdQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Votre serviteur interviendra le 6 mai prochain dans un \u00e9v\u00e9nement organis\u00e9 par le CENTRE DES JEUNES DIRIGEANTS D'ENTREPRISE SECTION POITIERS CHATELLERAULT intitul\u00e9 \"Un pacte pour la plan\u00e8te\" : https://lnkd.in/dcKhuWz\n\nHors virus cela aurait du se tenir au Futuroscope, mais avec, ca sera \"tout sur \u00e9cran\".\n\nCet \u00e9v\u00e9nement est prioritairement destin\u00e9 \u00e0 un public de \"dirigeants d'entreprises\" (puisque le CJD est un syndicat patronal), mais s'inscrit quand m\u00eame qui veut !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6794171454528204800,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6794171455081852928,urn:li:activity:6794171455081852928,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 4, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6794171455081852928,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6794171455081852928,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6794171455081852928", + "threadId": "activity:6794171455081852928", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6794171455081852928", + "urn": "urn:li:activity:6794171455081852928", + "numComments": 6, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6794171455081852928", + "reactionTypeCounts": [ + { + "count": 60, + "reactionType": "LIKE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6794171455081852928", + "numLikes": 60, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6794171455081852928", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 60, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6793788315863711744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6793788315863711744", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6793788315863711744)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6793788315863711744)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_formez-moi-activity-6793788315863711744-zIIY?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6793788315318444032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6793788315863711744", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6793788315863711744,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6793788315863711744,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6793788315318444032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "dae5i6Ax9loldPVVJLqtsg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6793788315863711744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9067055320190814344", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 600, + "fileIdentifyingUrlPathSegment": "800/0/1675811819408?e=1677240000&v=beta&t=XuGmVEI4OVn-wfxVbGB1FF4DM75Iwsdsx0HRkDLD_T4", + "expiresAt": 1677240000000, + "height": 300 + }, + { + "width": 600, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675811819408?e=1677240000&v=beta&t=Uotb-pctulSw_F2NFB3wbxFCmCVJzuuxxaSp2qAAa6U", + "expiresAt": 1677240000000, + "height": 300 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675811819409?e=1677240000&v=beta&t=TqYtnVBxzeDQpzjMlkxPhPKDyzkBqShKsSpuuRF2Rc0", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675811819409?e=1677240000&v=beta&t=COkuMCxXz1fsaBxmn_JE-GtahNBlBUtnE3-4G2S4KWQ", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEcbyTIrlOaLg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9067055320190814344)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9067055320190814344)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Formez moi ! by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/articles-de-presse/formez-moi/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Formez moi !" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6793788315318444032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Feriez-vous confiance, pour r\u00e9parer une voiture, \u00e0 un garagiste confondant un moteur thermique et un moteur \u00e9lectrique, un essuie glace et une brosse \u00e0 poussi\u00e8re, ou une boite de vitesses et un taille crayon ?\n\nIriez-vous chez un coiffeur confondant un cheveu et un ongle ? Prendriez-vous un ma\u00e7on confondant du ciment avec de la peinture ?\n\nQuel rapport avec le climat ? Il est simple : la quasi-totalit\u00e9 de nos dirigeants politiques, \u00e9conomiques, et parfois associatifs ne ma\u00eetrisent toujours pas les bases physiques du changement climatique. Nous faisons donc confiance de fait, pour nous d\u00e9carboner, \u00e0 des gens qui, actuellement, ne connaissent pas le minimum syndical pour \"savoir de quoi ils parlent\".\n\nPas plus tard qu'hier, j'ai constat\u00e9 par moi-m\u00eame qu'un ministre n'avait pas compris que le b\u00e9n\u00e9fice de la baisse des \u00e9missions de gaz \u00e0 effet de serre ne profitait pas au climat \"local\" du pays qui agit. Il ne connaissait pas plus 2 ou 3 autres \u00e9l\u00e9ments essentiels du dossier sur lesquels j'ai pos\u00e9 une question.\n\nIl y a donc une mesure simple et de bon gout, pas ch\u00e8re au demeurant, qui est un pr\u00e9alable indispensable \u00e0 l'action pertinente : la formation aux enjeux de tout individu pr\u00e9tendant piloter l'action \u00e9conomique ou politique. Pourquoi n'est-ce pas d\u00e9j\u00e0 fait depuis longtemps ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6793788315318444032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6793788315863711744,urn:li:activity:6793788315863711744,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 235, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6793788315863711744,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6793788315863711744,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6793788315863711744", + "threadId": "activity:6793788315863711744", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6793788315863711744", + "urn": "urn:li:activity:6793788315863711744", + "numComments": 351, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6793788315863711744", + "reactionTypeCounts": [ + { + "count": 4340, + "reactionType": "LIKE" + }, + { + "count": 386, + "reactionType": "PRAISE" + }, + { + "count": 183, + "reactionType": "APPRECIATION" + }, + { + "count": 76, + "reactionType": "EMPATHY" + }, + { + "count": 66, + "reactionType": "MAYBE" + }, + { + "count": 39, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6793788315863711744", + "numLikes": 5090, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6793788315863711744", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5090, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6793414154024693760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6793414154024693760", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6793414154024693760)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6793414154024693760)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_towards-climate-integration-into-global-prudential-activity-6793414154024693760-JFZS?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6793414152648970240", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6793414154024693760", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6793414154024693760,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6793414154024693760,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6793414152648970240", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "LVZMMmhm5TTWj3I19fiFvQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6793414154024693760,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9146635201068584236", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1619009264165?e=1677240000&v=beta&t=Htls_v-VzttnUQ-uvTjKPkAIL23i0EgoWSzPLo-9ijk", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1619009264165?e=1677240000&v=beta&t=IvqoOlH9Gd6SVgNzQiWjMjeoQXqC47kri7-Po5my5-4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1619009264165?e=1677240000&v=beta&t=wh2ka63qqMuzzy9eHeQBfdiYUxfcAguM8Ys58qJpjVk", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1619009264165?e=1677240000&v=beta&t=qpQ5jXCrXyQMhM18gCkZrISsbq9qSnqJLMwPuoz_-sk", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGlnBdiXbGapg/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9146635201068584236)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9146635201068584236)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Towards climate integration into global prudential banking regulation by carbone4.com", + "actionTarget": "http://www.carbone4.com/towards-climate-integration-into-global-prudential-regulation" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Towards climate integration into global prudential banking regulation" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 223, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "6QmEyslJS2CTyCQ4VSICjw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 490, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "Agye2dm1QU2C79JnAc94Cw==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "The Basel Committee on Banking Supervision is the primary global standard setter for the prudential regulation of banks, with 45 members coming from 28 jurisdiction. \n\nA recent report issued by this body, and deciphered by Carbone 4, describes the appropriate way to begin to assess the climate related financial risks. The Committee recommends using data which is highly granular, bottom up, encompasses the whole value chain, and uses scenario-bases analysis. It is exactly what we do at Carbon4 Finance , and what we already provide to 2 central banks (including Banque de France).\n\nThe members of the Committee outline that available data remains scarce. According to our experience, the reason why is primarily the lack of financial means devoted to the issue by the same members :), and not the lack of appropriate methods (we have that). Indeed, creating then deploying new methodologies requires putting (a significant amount of) money into the process. Appropriate data will not pop up with a magical wand!" + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6793414154024693760,urn:li:activity:6793414154024693760,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 3, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6793414154024693760,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6793414154024693760,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6793414154024693760", + "threadId": "activity:6793414154024693760", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6793414154024693760", + "urn": "urn:li:activity:6793414154024693760", + "numComments": 3, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6793414154024693760", + "reactionTypeCounts": [ + { + "count": 47, + "reactionType": "LIKE" + }, + { + "count": 3, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6793414154024693760", + "numLikes": 56, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6793414154024693760", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 56, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6793410983739052032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6793410983739052032", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6793410983739052032)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6793410983739052032)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_towards-climate-integration-into-global-prudential-activity-6793410983739052032-jfQH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6793410983218966528", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6793410983739052032", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6793410983739052032,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6793410983739052032,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6793410983218966528", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "IFXdR1C524tmEEyjiCGBFg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6793410983739052032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9146635201068584236", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1619009264165?e=1677240000&v=beta&t=Htls_v-VzttnUQ-uvTjKPkAIL23i0EgoWSzPLo-9ijk", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1619009264165?e=1677240000&v=beta&t=IvqoOlH9Gd6SVgNzQiWjMjeoQXqC47kri7-Po5my5-4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1619009264165?e=1677240000&v=beta&t=wh2ka63qqMuzzy9eHeQBfdiYUxfcAguM8Ys58qJpjVk", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1619009264165?e=1677240000&v=beta&t=qpQ5jXCrXyQMhM18gCkZrISsbq9qSnqJLMwPuoz_-sk", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGlnBdiXbGapg/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9146635201068584236)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9146635201068584236)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Towards climate integration into global prudential banking regulation - Carbone 4 by carbone4.com", + "actionTarget": "http://www.carbone4.com/towards-climate-integration-into-global-prudential-regulation/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Towards climate integration into global prudential banking regulation - Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6793410983218966528,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 386, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "ycahIr9WSpqWBuDoQeh7Dg==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 550, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "caVmXBjQQeinihtIpE6G5A==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Le Comit\u00e9 de B\u00e2le est un forum regroupant les superviseurs bancaires de 28 pays (pas juste europ\u00e9ens) et h\u00e9berg\u00e9 par la Banque des R\u00e8glements Internationaux \u00e0 B\u00e2le. Ses travaux servent notamment \u00e0 \u00e9dicter des r\u00e8gles dites prudentielles pour les banques, c'est \u00e0 dire qu'il faut suivre pour ma\u00eetriser les risques : https://lnkd.in/dTF_fi5 \n\nUn rapport r\u00e9cent de ce Comit\u00e9, d\u00e9crypt\u00e9 par Carbone 4, porte sur la mani\u00e8re d'int\u00e9grer les risques dus au changement climatique dans les r\u00e8gles prudentielles de r\u00e9gulation bancaire. Outre le plaisir d'y voir Carbon4 Finance cit\u00e9 pour sa m\u00e9thodologie CRIS, ce rapport souligne que pour le moment les banques n'investissent pas assez dans la production de donn\u00e9es exploitables (air connu), et que les bonnes m\u00e9thodes \u00e0 utiliser sont granulaires, bottom up, doivent incorporer les approches en \"chaine de valeur\" (dit autrement le scope 3) et les analyses par sc\u00e9narios. C'est exactement ce que nous faisons \u00e0 Carbon 4 Finance, qui par ailleurs fournit d\u00e9j\u00e0 des donn\u00e9es \u00e0 la Banque de France.\n\nIl reste \u00e0 ces recommandations \u00e0 trouver une place dans les pratiques. Cela demandera, n\u00e9cessairement, bien plus de moyens que ceux actuellement consacr\u00e9s par le monde bancaire." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6793410983218966528,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6793410983739052032,urn:li:activity:6793410983739052032,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 5, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6793410983739052032,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6793410983739052032,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6793410983739052032", + "threadId": "activity:6793410983739052032", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6793410983739052032", + "urn": "urn:li:activity:6793410983739052032", + "numComments": 6, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6793410983739052032", + "reactionTypeCounts": [ + { + "count": 106, + "reactionType": "LIKE" + }, + { + "count": 9, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6793410983739052032", + "numLikes": 125, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6793410983739052032", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 125, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6793253194584608768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6793253194584608768", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6793253194584608768)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6793253194584608768)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_centrale-du-bugey-nouveau-recours-du-canton-activity-6793253194584608768-aZ6-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6793253194039365632", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6793253194584608768", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6793253194584608768,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6793253194584608768,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6793253194039365632", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "46w+uKMykX248DDMec0Sgw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6793253194584608768,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8283168622138902475", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676027471346?e=1677240000&v=beta&t=_0IIoSSUtlaJA5jWkMs_VqLT5UFI2U5rGEyytCrwuww", + "expiresAt": 1677240000000, + "height": 365 + }, + { + "width": 1090, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676027471346?e=1677240000&v=beta&t=E51AFSnqZYbwRyJZYeJ_3yrP8U4ZUS2axU7dLdVo_PA", + "expiresAt": 1677240000000, + "height": 498 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676027471346?e=1677240000&v=beta&t=DmdTRbwWwRQ0NYXcIGEIlAOSCzifwJiKSo7E1CV7CVM", + "expiresAt": 1677240000000, + "height": 73 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676027471346?e=1677240000&v=beta&t=3UpSvBJ6-toHUXw7EJpBEquqD0LqMSmtVbgrqxkrZDI", + "expiresAt": 1677240000000, + "height": 219 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHCrFUOK6qZWw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "Centrale nucl\u00e9aire du Bugey" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8283168622138902475)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8283168622138902475)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ge.ch \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Centrale du Bugey: nouveau recours du canton et de la ville de Gen\u00e8ve contre la d\u00e9cision de l'Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN) by ge.ch", + "actionTarget": "https://www.ge.ch/document/centrale-du-bugey-nouveau-recours-du-canton-ville-geneve-contre-decision-autorite-surete-nucleaire-asn" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Centrale du Bugey: nouveau recours du canton et de la ville de Gen\u00e8ve contre la d\u00e9cision de l'Autorit\u00e9 de s\u00fbret\u00e9 nucl\u00e9aire (ASN)" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6793253194039365632,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Pour la 3\u00e8 fois en 5 ans, le Canton de Gen\u00e8ve a intent\u00e9 une proc\u00e9dure \u00e0 l'Etat fran\u00e7ais pour obtenir la fermeture de la centrale nucl\u00e9aire du Bugey (l'avocate est Corinne Lepage). C'est une d\u00e9marche amusante pour un pays qui a souvent revendiqu\u00e9 sa neutralit\u00e9, c'est \u00e0 dire le fait de ne pas se m\u00ealer des affaires de ses voisins (y compris quand ces derniers s'entretuaient all\u00e8grement, ce qui doit \u00eatre un peu plus nocif pour la sant\u00e9 que le nucl\u00e9aire civil :) ).\n\nSi nos amis helv\u00e8tes sont si soucieux du supprimer les vieilles installations de production \u00e9lectrique pr\u00e9sentant un danger potentiel pour les populations, il est prioritaire de se passer... des barrages ! (qui ont quasiment tous plus de 40 ans et encaissent des pressions bien sup\u00e9rieures \u00e0 ce que l'on trouve dans un r\u00e9acteur nucl\u00e9aire) \n\nDans ce vieux documentaire de la RTS on retrouve des \u00e9l\u00e9ments montrant qu'en cas de glissement de terrain - possible - dans un des barrages surplombant Sion, on pourrait avoir une vague de crue de plusieurs m\u00e8tres d\u00e9filant sur la ville (qui compte 20.000 habitants) : https://lnkd.in/dbdcsyr C'est exactement ce sc\u00e9nario qui s'est produit \u00e0 Vajont (https://lnkd.in/dycWeXg ). " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6793253194039365632,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6793253194584608768,urn:li:activity:6793253194584608768,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 79, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6793253194584608768,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6793253194584608768,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6793253194584608768", + "threadId": "activity:6793253194584608768", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6793253194584608768", + "urn": "urn:li:activity:6793253194584608768", + "numComments": 272, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6793253194584608768", + "reactionTypeCounts": [ + { + "count": 758, + "reactionType": "LIKE" + }, + { + "count": 108, + "reactionType": "MAYBE" + }, + { + "count": 87, + "reactionType": "INTEREST" + }, + { + "count": 22, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6793253194584608768", + "numLikes": 982, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6793253194584608768", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 982, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6793120802670682112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6793120802670682112", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6793120802670682112)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6793120802670682112)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_myco2-vers-une-strat%C3%A9gie-neutralit%C3%A9-carbone-activity-6793120802670682112-klDE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6793120802192535552", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6793120802670682112", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6793120802670682112,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6793120802670682112,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6793120802192535552", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "R79q/lIOUY7EmOacL358DQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6793120802670682112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9180413500682121658", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1605795094132?e=1677240000&v=beta&t=0IR2BCfoM3lFmggJiqjPi5nUIHxjuKYL2SfF0oktVi0", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1605795094132?e=1677240000&v=beta&t=XD-nlHJTerA2iusFZhaR03_c5oOwQ2dfFdCrXnt8cHE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1605795094132?e=1677240000&v=beta&t=d7zmzcPkqxpoCITVRDlT5aN6Q-yYvG2DlZE5Wng37H4", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1605795094132?e=1677240000&v=beta&t=dIYa7Nkojd6RtqDYoGCBytRB3i4I42Nr3n8yvvfcFVA", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGT588yn-iIgQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9180413500682121658)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9180413500682121658)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: MyCO2 : Vers une strat\u00e9gie neutralit\u00e9 carbone personnelle by carbone4.com", + "actionTarget": "http://www.carbone4.com/myco2/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "MyCO2 : Vers une strat\u00e9gie neutralit\u00e9 carbone personnelle" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6793120802192535552,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Quand il est question de surveiller son empreinte carbone, il y a les entreprises, et il y a les particuliers. Apr\u00e8s 12 ans pass\u00e9s \u00e0 s'occuper de celles des employeurs, Carbone 4 a d\u00e9velopp\u00e9 MyCO2, pour s'occuper de celles des employ\u00e9s :).\n\nSouvent, dans une entreprise qui veut \"donner corps\" \u00e0 la d\u00e9carbonation, la question de la mise en coh\u00e9rence des comportements personnels avec cette nouvelle pr\u00e9occupation se pose, m\u00eame si l'entreprise, c'est l'univers professionnel, et a priori elle n'a rien \u00e0 faire dans la sph\u00e8re personnelle.\n\nMais inversement certains salari\u00e9s peuvent appr\u00e9cier le fait que leur employeur mette \u00e0 leur disposition de quoi mieux toucher du doigt la question dans leur vie propre. C'est le but de MyCO2, qui se d\u00e9ploie comme des contenants en plastique dont je ne prononcerai pas le nom :) : lors de conf\u00e9rences de groupes, pour que personne ne soit seul en d\u00e9couvrant \"combien il ou elle p\u00e8se sur le climat\", et que l'\u00e9change puisse avoir lieu sur les solutions.\n\nMyCO2 ne permet pas de devenir neutre, mais de comprendre quoi faire pour contribuer \u00e0 la neutralit\u00e9 collective. Tout est expliqu\u00e9 sur cette page !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6793120802192535552,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6793120802670682112,urn:li:activity:6793120802670682112,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6793120802670682112,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6793120802670682112,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6793120802670682112", + "threadId": "activity:6793120802670682112", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6793120802670682112", + "urn": "urn:li:activity:6793120802670682112", + "numComments": 71, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6793120802670682112", + "reactionTypeCounts": [ + { + "count": 998, + "reactionType": "LIKE" + }, + { + "count": 93, + "reactionType": "PRAISE" + }, + { + "count": 45, + "reactionType": "INTEREST" + }, + { + "count": 23, + "reactionType": "MAYBE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6793120802670682112", + "numLikes": 1176, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6793120802670682112", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1176, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6792765040605855744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:member:15992566", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Marie-Anne", + "lastName": "Vincent", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw", + "occupation": "VP Climate Finance @ Sweep | Enabling financial actors to understand, manage and reduce their carbon footprint.", + "objectUrn": "urn:li:member:15992566", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1667827949672?e=1681948800&v=beta&t=7yYdaTz_a3DmqNp7FKluOlsGnSBXY1yBzY5OHnyTeaM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1667827949672?e=1681948800&v=beta&t=H3aOP7OGYaN9j1u0MC_OZUnqgQ6SeyaHmuSNN-PJid8", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQG8R9igqTSwLg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "marie-anne-vincent", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1667827927766?e=1681948800&v=beta&t=ZJdEuXlS4A7vLm3z9AZFYH4-YWV7ZNtH41Fb0qilBUw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1667827927766?e=1681948800&v=beta&t=5E3d7pbdgf2MEpt-JeIipWUXRz6SYPJT1ovf9ix4qsM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1667827927766?e=1681948800&v=beta&t=R-8UpuFa0bsGnTtSzn2JvW3VvYa402eoxTg8riN0c0g", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1667827927766?e=1681948800&v=beta&t=DYHPS2Zf0PGTIiMwDGpBcVQscKhvXl8eY0tcmcLZSc0", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQGyKiQ41V_Sew/profile-displayphoto-shrink_" + } + }, + "trackingId": "7IteTirLRFOw72Hd2VW1HA==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 3rd+" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 18, + "miniProfile": { + "firstName": "Marie-Anne", + "lastName": "Vincent", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw", + "occupation": "VP Climate Finance @ Sweep | Enabling financial actors to understand, manage and reduce their carbon footprint.", + "objectUrn": "urn:li:member:15992566", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1667827949672?e=1681948800&v=beta&t=7yYdaTz_a3DmqNp7FKluOlsGnSBXY1yBzY5OHnyTeaM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1667827949672?e=1681948800&v=beta&t=H3aOP7OGYaN9j1u0MC_OZUnqgQ6SeyaHmuSNN-PJid8", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQG8R9igqTSwLg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "marie-anne-vincent", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1667827927766?e=1681948800&v=beta&t=ZJdEuXlS4A7vLm3z9AZFYH4-YWV7ZNtH41Fb0qilBUw", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1667827927766?e=1681948800&v=beta&t=5E3d7pbdgf2MEpt-JeIipWUXRz6SYPJT1ovf9ix4qsM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1667827927766?e=1681948800&v=beta&t=R-8UpuFa0bsGnTtSzn2JvW3VvYa402eoxTg8riN0c0g", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1667827927766?e=1681948800&v=beta&t=DYHPS2Zf0PGTIiMwDGpBcVQscKhvXl8eY0tcmcLZSc0", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E03AQGyKiQ41V_Sew/profile-displayphoto-shrink_" + } + }, + "trackingId": "7IteTirLRFOw72Hd2VW1HA==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Marie-Anne Vincent" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Marie-Anne Vincent\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/marie-anne-vincent?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "VP Climate Finance @ Sweep | Enabling financial actors to understand, manage and reduce their carbon footprint." + }, + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw", + "following": false, + "trackingUrn": "urn:li:member:15992566" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followMember" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6792711182001213440,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6792711182001213440", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6792711182001213440)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6792711182001213440)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/activity-6792711182001213440-2wfc?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6792711181091028992", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAD0BvYBOx3fwI_wosJT33mQcc8A_JKmolw", + "authorUrn": "urn:li:member:15992566", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6792711182001213440,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6792711182001213440,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6792711181091028992", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "HfQ69iLN/2eDlxoO94lg0Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6792711182001213440,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEFRN8lds5h-Q", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEFRN8lds5h-Q", + "artifacts": [ + { + "width": 1114, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1619508545829?e=1679529600&v=beta&t=JSU57-AFJYz9quRHtSPu8BXQc2K6necD0ZooZY7I4x8", + "expiresAt": 1679529600000, + "height": 894 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1619508546524?e=1679529600&v=beta&t=IcXFVUwjAEELgK4QUj99k2ULAhHob9nZyU3jc7qQ4SQ", + "expiresAt": 1679529600000, + "height": 16 + }, + { + "width": 1114, + "fileIdentifyingUrlPathSegment": "1280/0/1619508546524?e=1679529600&v=beta&t=GBAmaZdtJEWKNbbGeIP19gwlr0Zw-3zCQQfmMV4I3sA", + "expiresAt": 1679529600000, + "height": 894 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1619508546524?e=1679529600&v=beta&t=1PlIMM81A4EorIuoRxy_XiGCZoVbyA23qHSSCe_x2fw", + "expiresAt": 1679529600000, + "height": 385 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1619508546524?e=1679529600&v=beta&t=9fP3W2SCylcTK3mSeuYhMScOTdsAzI9axKUq3NHizBs", + "expiresAt": 1679529600000, + "height": 128 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1619508546524?e=1679529600&v=beta&t=GtXtNPQf-OAwWtjZLJUnd_kciFjswnDS7T_iy_GVz9M", + "expiresAt": 1679529600000, + "height": 642 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEFRN8lds5h-Q/feedshare-shrink_" + }, + "displayAspectRatio": 0.8025134649910234 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6792711181091028992,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 20, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "DLMKpDxLQ8ydcbwlw0jX2A==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 166, + "length": 3, + "miniCompany": { + "objectUrn": "urn:li:company:4249", + "entityUrn": "urn:li:fs_miniCompany:4249", + "name": "EDF", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1519855919046?e=1684972800&v=beta&t=5VSBj6vegEsnRnmzYgWuZcF6IT9RMPyt66WR7tGH8u8", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1519855919046?e=1684972800&v=beta&t=uGtzifNP-sZ8OWd5wh3y3TE5L4V-hov0dieWDi3hmAo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1519855919046?e=1684972800&v=beta&t=VPx_6r5ABhvzfeh1WAU3HqD2WlCJtn3FoMfwccMsbiI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C560BAQEUXtrGCgAHtg/company-logo_" + } + }, + "universalName": "edf", + "dashCompanyUrn": "urn:li:fsd_company:4249", + "trackingId": "ZXYlXCHFRlWWHJQh8mPxKg==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 173, + "length": 6, + "miniCompany": { + "objectUrn": "urn:li:company:18324710", + "entityUrn": "urn:li:fs_miniCompany:18324710", + "name": "\u00d8rsted", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1556536677355?e=1684972800&v=beta&t=YKss8WK9FpxkirG5y_Z0O8UtyEGTqinWpYSh5I38rdc", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1556536677355?e=1684972800&v=beta&t=--TK9sOUc8T_QWxaUgkvR6vvhGIglDsRjMCPAKAtKEY", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1556536677355?e=1684972800&v=beta&t=FjcRwP1kFjpB3wiRkouqxH5MIqkk66tgWtHf8LEL_7A", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQFdfN5NpZ_MaQ/company-logo_" + } + }, + "universalName": "orsted", + "dashCompanyUrn": "urn:li:fsd_company:18324710", + "trackingId": "QGOxmkCSTLmWGDZgAgF01Q==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 183, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:8597", + "entityUrn": "urn:li:fs_miniCompany:8597", + "name": "Iberdrola", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1666261647681?e=1684972800&v=beta&t=9j71tKuoreT_P2ByPVwWq5n_FT5NZAaAlEaVJvaJbCA", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1666261647681?e=1684972800&v=beta&t=h83_gQBxkDqgceg7B8lbhuD0bH90viSFLlokAP18Uro", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1666261647681?e=1684972800&v=beta&t=Yd3j583XFR2y7njSl4H2VQ_cwQ30IGqRu39ESBGw5jo", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4D0BAQHOakeSm8V2Yg/company-logo_" + } + }, + "universalName": "iberdrola", + "dashCompanyUrn": "urn:li:fsd_company:8597", + "trackingId": "MAGeffAlQle5WieiXgrLVg==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 1204, + "length": 16, + "miniProfile": { + "firstName": "Christophe", + "lastName": "Laug\u00e9", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAClUEbABvGWWEdBW_xtT5kepgYkr3GPr-2A", + "occupation": "ESG Analyst", + "objectUrn": "urn:li:member:693375408", + "entityUrn": "urn:li:fs_miniProfile:ACoAAClUEbABvGWWEdBW_xtT5kepgYkr3GPr-2A", + "publicIdentifier": "christophe-laug\u00e9-b00262174", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1661434570703?e=1681948800&v=beta&t=BgxjFKMlFbAJ08HzbIXNAyUYz4VtiaM_wCAO_gcdB1k", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1661434570703?e=1681948800&v=beta&t=29R36YJ4KJ4peFtGHs8o4jsWh1G46Vxg5787hyrGjks", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1661434570703?e=1681948800&v=beta&t=W-vDwVUIGKhcWSMAeKylGkd1pDg_-WEjTxXuitXBcwo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1661434570703?e=1681948800&v=beta&t=YEm4U4NoE0S-gfdvt4I-izF66Ekp0vhowj_xH8FPM6k", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQEhB5r9d73gFg/profile-displayphoto-shrink_" + } + }, + "trackingId": "oS4bqpZDRhS4FmqYJ9bR/g==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "\u00a0Nouvelle analyse : Carbon4 Finance publie aujourd\u2019hui son bilan du secteur de l\u2019\u00e9lectricit\u00e9.\n\nQui sont les TOP 3 de notre analyse des producteurs d'\u00e9lectricit\u00e9? \n#1 EDF\n#2 \u00d8rsted\n#3 Iberdrola\n\nEn utilisant la m\u00e9thodologie Carbon Impact Analytics (CIA), nous avons pu \u00e9tablir le classement des entreprises du secteur de l\u2019\u00e9lectricit\u00e9 selon leur degr\u00e9 d\u2019exposition, leur capacit\u00e9 \u00e0 r\u00e9duire cette exposition et les strat\u00e9gies mises en place pour s\u2019aligner, ou non, avec les objectifs de d\u00e9carbonation de l\u2019\u00e9conomie mondiale.\n\n\ud83d\udc49 La d\u00e9carbonation de l\u2019industrie de l\u2019\u00e9lectricit\u00e9 est amorc\u00e9e : une grande partie des acteurs s\u2019engagent dans la production d\u2019\u00e9lectricit\u00e9 bas-carbone ; certains sont m\u00eames des pure-players des \u00e9nergies renouvelables.\n\n\ud83d\udc49 Cependant, cette tendance n\u2019est pas homog\u00e8ne puisque certains continuent \u00e0 \u00eatre fortement expos\u00e9s aux \u00e9nergies fossiles et n\u2019envisagent pas de se tourner vers les \u00e9nergies bas-carbone.\n\n\ud83d\udc49 Les plus grands acteurs ont plut\u00f4t des profils d\u00e9carbon\u00e9s sans pour autant \u00eatre des pure-players des \u00e9nergies bas-carbone.\n\nCette publication est la seconde d\u2019une s\u00e9rie d\u2019analyses des acteurs de diff\u00e9rents secteurs selon la m\u00e9thologie CIA.\nhttps://lnkd.in/eC2Xd68\n\nBravo Christophe Laug\u00e9 pour ce travail d'analyse!" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6792711181091028992,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6792711182001213440,urn:li:activity:6792711182001213440,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 7, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6792711182001213440,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6792711182001213440,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6792711182001213440", + "threadId": "activity:6792711182001213440", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6792711182001213440", + "urn": "urn:li:activity:6792711182001213440", + "numComments": 10, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6792711182001213440", + "reactionTypeCounts": [ + { + "count": 165, + "reactionType": "LIKE" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6792711182001213440", + "numLikes": 184, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6792711182001213440", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 184, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6792765040605855744", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6792765040605855744)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6792765040605855744)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nouvelle-analyse-carbon4-finance-publie-activity-6792765040605855744-pAAt?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6792765040186408960", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6792765040605855744", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6792765040605855744,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6792765040605855744,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6792765040186408960", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "HfQ69iLN/2eDlxoO94lg0Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6792765040605855744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6792765040186408960,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 74, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "7t15CqqsQjOST3/3ko/xow==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Dans le cadre de la mise en oeuvre de la m\u00e9thode Carbon Impact Analytics, Carbon4 Finance publie d\u00e9sormais de mani\u00e8re r\u00e9guli\u00e8re des revues sectorielles, expliquant comment classer entre eux les acteurs d'un m\u00eame secteur au regard de leurs \"performances vis-\u00e0-vis du climat\" \n\nCelle publi\u00e9e aujourd'hui concerne le secteur \u00e9lectrique, \u00e0 l'origine de plus d'un quart des \u00e9missions de gaz \u00e0 effet de serre plan\u00e9taires (\u00e0 cause du charbon, du gaz et du fioul, pas du nucl\u00e9aire :) ).\n\nLa note (de 25 pages) d\u00e9crit la m\u00e9thode employ\u00e9e et donne le haut et le bas du classement. Une version plus d\u00e9taill\u00e9e est fournie aux clients de Carbon Impact Analytics (l'analyse, c'est comme la presse, ca n'est pas gratuit et il faut des moyens si on en veut une bonne !)." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6792765040186408960,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6792765040605855744,urn:li:activity:6792765040605855744,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 8, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6792765040605855744,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6792765040605855744,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6792765040605855744", + "threadId": "activity:6792765040605855744", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6792765040605855744", + "urn": "urn:li:activity:6792765040605855744", + "numComments": 13, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6792765040605855744", + "reactionTypeCounts": [ + { + "count": 259, + "reactionType": "LIKE" + }, + { + "count": 24, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6792765040605855744", + "numLikes": 307, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6792765040605855744", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 307, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6792716265753456640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6792716265753456640", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6792716265753456640)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6792716265753456640)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lusage-de-l%C3%A9nergie-engendre-une-modification-activity-6792716265753456640-YNMF?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6792716264952369152", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6792716265753456640", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6792716265753456640,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6792716265753456640,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6792716264952369152", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "hCqu3RBR9mWI2dfpYPtw+w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6792716265753456640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEtKFElB1o0XQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEtKFElB1o0XQ", + "artifacts": [ + { + "width": 1512, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1619509757986?e=1679529600&v=beta&t=UJMVmmRzaq2P2yImQeeizoKVaZQPCuIRh8LJxLdcp6w", + "expiresAt": 1679529600000, + "height": 828 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1619509759591?e=1679529600&v=beta&t=rqaOYpJYGlGDp-PEgi0ScV7fOMa27IiSrEe1ILexv0E", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1619509759591?e=1679529600&v=beta&t=CR3rSq6AhyDo1M_TPHRXSTua4n4xOiC6-a8pT96RBMc", + "expiresAt": 1679529600000, + "height": 701 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1619509759591?e=1679529600&v=beta&t=gli8fpGS5eJ6gMencsd0XQG0Tsqq9PhzJ2fC_Up6jeQ", + "expiresAt": 1679529600000, + "height": 263 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1619509759591?e=1679529600&v=beta&t=NeQpbxaHJU8V2lIYBbB33epk9W_E7T8yHvSJA5Q3T70", + "expiresAt": 1679529600000, + "height": 88 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1619509759591?e=1679529600&v=beta&t=rwTXT8ugMzLWhlDGb6BuzMHisU8Af8Yh6NOKkn1lfzA", + "expiresAt": 1679529600000, + "height": 438 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEtKFElB1o0XQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.5476190476190477 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, histogram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6792716264952369152,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'usage de l'\u00e9nergie engendre une modification du climat. Mais, inversement, \"l'adaptation\" \u00e0 la d\u00e9rive climatique va impacter la demande \u00e9nerg\u00e9tique. Des chercheurs ont analys\u00e9 329 articles publi\u00e9s entre 1987 et 2019 \u00e9voquant l'impact du changement climatique sur la \"consommation\" d'\u00e9nergie : https://lnkd.in/dV-sPmn\n\nIls ont d\u00e9couvert que l'essentiel des publications porte sur l'impact des variations de temp\u00e9rature sur le couple chauffage/climatisation, sur des zones localis\u00e9es (villes par exemple), mais tr\u00e8s peu sur le reste. Or, la demande \u00e9nerg\u00e9tique peut augmenter pour :\n- la fabrication des infrastructures et villes \u00e0 reconstruire (hausse du niveau de la mer, destructions diverses)\n- le transport et la pr\u00e9servation des cultures dans des conditions moins favorables\n- la fabrication \"artificielle\" de ressources auparavant \"naturelles\" (bois par exemple, remplac\u00e9 par du plastique ou du ciment)\n- la dessalinisation d'eau de mer...\n\nInversement, il peut aussi y avoir des \"\u00e9conomies\", comme moins de d\u00e9placements pour raisons touristiques.\n\nOn voit appara\u00eetre un risque important : celui de manquer d'\u00e9nergie, pour limiter les \u00e9missions ou par contrainte g\u00e9ologique, alors que les conditions devenant hostiles en n\u00e9cessiterait plus. Et c'est un angle \"assez mort\" de la recherche." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6792716264952369152,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6792716265753456640,urn:li:activity:6792716265753456640,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 17, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6792716265753456640,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6792716265753456640,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6792716265753456640", + "threadId": "activity:6792716265753456640", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6792716265753456640", + "urn": "urn:li:activity:6792716265753456640", + "numComments": 50, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6792716265753456640", + "reactionTypeCounts": [ + { + "count": 373, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "MAYBE" + }, + { + "count": 61, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6792716265753456640", + "numLikes": 507, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6792716265753456640", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 507, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6792333672897904640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6792333672897904640", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6792333672897904640)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6792333672897904640)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-lance-un-appel-aux-entreprises-pour-activity-6792333672897904640-wm30?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6792333672314884096", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6792333672897904640", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6792333672897904640,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6792333672897904640,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6792333672314884096", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "XhhMqm15ST0eyXGrtJAlVQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6792333672897904640,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8210263119752244788", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 520, + "fileIdentifyingUrlPathSegment": "800/0/1676570864830?e=1677240000&v=beta&t=-Hc1fX5PKvG53zrkTbbF-3XLStukh7ULAxmv-r6zReA", + "expiresAt": 1677240000000, + "height": 371 + }, + { + "width": 520, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676570864830?e=1677240000&v=beta&t=TuLiZ35I-C86WX-R-lOzE7EAUW_RyMLAIkvxleeUF5Q", + "expiresAt": 1677240000000, + "height": 371 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676570864830?e=1677240000&v=beta&t=_BMg7Ldhf0JmuTh1g4K4BfCM3XydFqY39XPQueLblvU", + "expiresAt": 1677240000000, + "height": 114 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676570864830?e=1677240000&v=beta&t=nEoGUU8FpiYQJOxm0dxRg3rhmQaISABgPZOzHJ-Ydpg", + "expiresAt": 1677240000000, + "height": 342 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGd5sNDO6mc0g/articleshare-shrink_" + }, + "displayAspectRatio": 0.7134615384615385 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8210263119752244788)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8210263119752244788)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift lance un Appel aux entreprises pour soutenir le Plan de transformation de l'\u00e9conomie fran\u00e7aise by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/shift-appel-entreprises-financer-nourrir-ptef/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift lance un Appel aux entreprises pour soutenir le Plan de transformation de l'\u00e9conomie fran\u00e7aise" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6792333672314884096,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a un an, quand les rouages de l'\u00e9conomie en place se sont brusquement gripp\u00e9s \u00e0 cause de la covid, The Shift Project s'est pris \u00e0 r\u00eaver de proposer aux candidats \u00e0 la pr\u00e9sidentielle de 2022 ce que donnerait un \"red\u00e9marrage\" \u00e9conomique compatible avec des \u00e9missions mondiales de gaz \u00e0 effet de serre diminuant de 5% tous les ans (condition des 2\u00b0C max de hausse).\n\nA projet hors de notre ordinaire, financement hors de notre ordinaire : la premi\u00e8re phase de nos travaux a \u00e9t\u00e9 financ\u00e9e par une souscription aupr\u00e8s de particuliers, r\u00e9unissant pr\u00e8s de 4000 donateurs, et a permis de mettre des centaines de contributeurs au travail : https://lnkd.in/dNARPrU\n\nAu vu de l'int\u00e9r\u00eat qu'a fait naitre cette initiative, et du nombre limit\u00e9 de pr\u00e9sidentielles qu'il y aura avant 2050, nous avons d\u00e9cid\u00e9 de rehausser nos ambitions. Et c'est sur les entreprises que nous comptons cette fois-ci. Parce que c'est essentiellement l\u00e0 que se passent la cr\u00e9ation d'emplois, et beaucoup l'innovation, deux axes majeurs de la d\u00e9carbonation.\n\nAux entreprises, nous leur demandons 2 choses :\n- des moyens pour faire encore mieux, \n- et/ou du temps pour discuter nos propositions.\n\nSi votre entreprise est convaincue que l'enjeu \u00e9nergie climat doit \u00eatre au coeur de nos plans \u00e9conomiques pour l'avenir, c'est le moment !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6792333672314884096,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6792333672897904640,urn:li:activity:6792333672897904640,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 22, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6792333672897904640,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6792333672897904640,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6792333672897904640", + "threadId": "activity:6792333672897904640", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6792333672897904640", + "urn": "urn:li:activity:6792333672897904640", + "numComments": 34, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6792333672897904640", + "reactionTypeCounts": [ + { + "count": 1016, + "reactionType": "LIKE" + }, + { + "count": 88, + "reactionType": "PRAISE" + }, + { + "count": 76, + "reactionType": "APPRECIATION" + }, + { + "count": 18, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6792333672897904640", + "numLikes": 1218, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6792333672897904640", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1218, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6792110539645435905,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6792110539645435905", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6792110539645435905)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6792110539645435905)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_how-many-people-did-nuclear-energy-kill-activity-6792110539645435905-L59k?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6792110539112755200", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6792110539645435905", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6792110539645435905,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6792110539645435905,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6792110539112755200", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "gY3EquJYak02xN3mzQZ7qg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6792110539645435905,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8540609412151757488", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675878978388?e=1677240000&v=beta&t=WyUT5rgdpsGBwhoyjGS0JGuTONLolc-6UqgjtGMlAN0", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675878978388?e=1677240000&v=beta&t=HIj_fUsEeYP4srsVlzG4Y8iTtH2Jadr2iWqAcIs5o-4", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675878978389?e=1677240000&v=beta&t=muKrAg7kQ7ciUoVWavWdwyo1V3L6kLhLBZknae5ZYQk", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675878978389?e=1677240000&v=beta&t=2QE1N_P_xgnwgWCj1buH1j65FDlRJgyTuJ6Rfa8-U7U", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFrfdT7BMByOQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8540609412151757488)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8540609412151757488)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: How Many People Did Nuclear Energy Kill? Nuclear Death Toll on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=Jzfpyo-q-RM" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "The first 1000 people to use this link will get a free trial of Skillshare: https://skl.sh/kurzgesagtinanutshell01211 Sources & further reading: https://sites.google.com/view/sources-nuclear-death-toll/ Nuclear energy creates an uneasy feeling of..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "How Many People Did Nuclear Energy Kill? Nuclear Death Toll" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6792110539112755200,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Allemagne est connue pour \u00eatre un pays hostile au nucl\u00e9aire. Pour autant, cela ne signifie pas que le pays soit totalement monochrome sur ce sujet. \n\nIci et l\u00e0, se trouvent des allemands exprimant le point de vue que leur pays n'aurait jamais du fermer ses centrales nucl\u00e9aires alors que le climat est une priorit\u00e9. Certains d'entre eux ajoutent m\u00eame que cette fermeture est aussi une erreur du point de vue sanitaire, les particules fines issues des combustibles fossiles tuant consid\u00e9rablement plus que le nucl\u00e9aire, accidents compris.\n\nC'est par exemple le cas des auteurs de cette chaine Youtube intitul\u00e9e \"Kurzgesagt\" (\"en bref\" en fran\u00e7ais) et qui fait de la vulgarisation scientifique... en anglais :).\n\nCette petite vid\u00e9o, assez bien faite, rappelle ainsi que les m\u00e9faits compar\u00e9s de l'atome avec ceux des alternatives sont un peu, ou beaucoup... \u00e0 l'avantage du nucl\u00e9aire. Et encore, les auteurs n'ont pas inclus les pathologies des mineurs de charbon (https://lnkd.in/ghDXmyh ), ni les nuisances sanitaires des mines m\u00e9talliques pour les nouvelles ENR (10 \u00e0 100 fois plus consommatrices de m\u00e9tal que le nucl\u00e9aire par kWh) ; bref ils auraient pu rendre la mari\u00e9e atomique encore plus belle. \n\nMais l'essentiel est dit !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6792110539112755200,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6792110539645435905,urn:li:activity:6792110539645435905,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 22, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6792110539645435905,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6792110539645435905,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6792110539645435905", + "threadId": "activity:6792110539645435905", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6792110539645435905", + "urn": "urn:li:activity:6792110539645435905", + "numComments": 53, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6792110539645435905", + "reactionTypeCounts": [ + { + "count": 450, + "reactionType": "LIKE" + }, + { + "count": 39, + "reactionType": "INTEREST" + }, + { + "count": 16, + "reactionType": "EMPATHY" + }, + { + "count": 14, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6792110539645435905", + "numLikes": 532, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6792110539645435905", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 532, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6791644816250830848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6791644816250830848", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6791644816250830848)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6791644816250830848)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jusquo%C3%B9-les-usa-sont-ils-de-retour-dans-activity-6791644816250830848-xpbH?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6791644815500042240", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6791644816250830848", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6791644816250830848,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6791644816250830848,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6791644815500042240", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "ZEof+9qxip5dPcgZPiJduA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6791644816250830848,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQGXcUIwjmSeUg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQGXcUIwjmSeUg", + "artifacts": [ + { + "width": 1844, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1619254304817?e=1679529600&v=beta&t=SCilYBDh9Eo8cPwsfbKuGiWDwTN1mHgd0UwnUpoj-h4", + "expiresAt": 1679529600000, + "height": 1047 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1619254306440?e=1679529600&v=beta&t=q0by2ieCYZIACYsbLbKJ2qIvqwSRl_exDKKEpjecTrM", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1619254306440?e=1679529600&v=beta&t=lrG5WdsAPv9bJLp6FQTBYyBD1YEnjb5FWvpe9KPfisw", + "expiresAt": 1679529600000, + "height": 727 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1619254306440?e=1679529600&v=beta&t=05LMbwXdlcyUQ0y4Sgcq4hvwoG2sX-EiACK80J7Z_b4", + "expiresAt": 1679529600000, + "height": 273 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1619254306440?e=1679529600&v=beta&t=5GvqRcvlS5l6y8TR3Fkg8frokfHwEwzQDtSVktNxJcc", + "expiresAt": 1679529600000, + "height": 91 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1619254306440?e=1679529600&v=beta&t=0u4f-8Uzk7HKuovp3d3JsLRg93dquz8THrgEFS_x-KA", + "expiresAt": 1679529600000, + "height": 454 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQGXcUIwjmSeUg/feedshare-shrink_" + }, + "displayAspectRatio": 0.5677874186550976 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6791644815500042240,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Jusqu'o\u00f9 les USA sont-ils \"de retour dans la course\" question climat ?\n\nLe graphique ci-dessous donne le contenu en CO2 du kWh d'\u00e9nergie primaire utilis\u00e9 dans ce pays depuis 1965 (donn\u00e9es BP Statistical Review). \n\nOn voit que la baisse, globalement lente sur la p\u00e9riode, s'est un peu acc\u00e9l\u00e9r\u00e9e depuis 2005, c'est \u00e0 dire depuis le d\u00e9but de l'essor du \"gaz de schiste\", qui a largement chass\u00e9 le charbon de la production \u00e9lectrique US (voir graphique en commentaire).\n\nCette substitution n'a pas \u00e9t\u00e9 d\u00e9cid\u00e9e pour le climat. Elle r\u00e9sulte de la cr\u00e9ation mon\u00e9taire massive de la banque centrale apr\u00e8s 2008 (qui a financ\u00e9, entre autres, l'exploitation le plus souvent non rentable des hydrocarbures de roche m\u00e8re), du droit US (qui donne au d\u00e9tenteur du sol la propri\u00e9t\u00e9 de ce qui se trouve dans le sous-sol), et d'une industrie du forage puissante qui s'est construite sur une exploitation domestique massive des hydrocarbures. Et, ironie de la chose, c'est sous Trump que la baisse a \u00e9t\u00e9 la plus rapide (m\u00eame si ce qui se passe \u00e0 un moment donn\u00e9 d\u00e9pend surtout des d\u00e9cisions prises 10, 20 ou 50 ans avant).\n\nLes discours volontaires sont certes utiles. Mais le juge de paix, ce sont les chiffres, ailleurs comme chez nous. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6791644815500042240,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6791644816250830848,urn:li:activity:6791644816250830848,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 15, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6791644816250830848,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6791644816250830848,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6791644816250830848", + "threadId": "activity:6791644816250830848", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6791644816250830848", + "urn": "urn:li:activity:6791644816250830848", + "numComments": 25, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6791644816250830848", + "reactionTypeCounts": [ + { + "count": 337, + "reactionType": "LIKE" + }, + { + "count": 25, + "reactionType": "INTEREST" + }, + { + "count": 19, + "reactionType": "MAYBE" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6791644816250830848", + "numLikes": 388, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6791644816250830848", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 388, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6791351536632041472,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6791351536632041472", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6791351536632041472)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6791351536632041472)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_si-vous-avez-envie-de-faire-du-conseil-en-activity-6791351536632041472-fS-O?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6791351535629586432", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6791351536632041472", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6791351536632041472,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6791351536632041472,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6791351535629586432", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "uYGQRkXZ+NSSMzxDzBxnkg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6791351536632041472,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQEZ2uJyFpiscw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQEZ2uJyFpiscw", + "artifacts": [ + { + "width": 854, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1619184382930?e=1679529600&v=beta&t=_6Go3TXfuNE9owaw9CpjJMGM0JCAV9LKKgC-sabQJTY", + "expiresAt": 1679529600000, + "height": 278 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1619184382852?e=1679529600&v=beta&t=0ZMTvdxreldInsBnVUI1hLyuzS1P9kP7PyyrgeIlYQM", + "expiresAt": 1679529600000, + "height": 6 + }, + { + "width": 854, + "fileIdentifyingUrlPathSegment": "1280/0/1619184382852?e=1679529600&v=beta&t=uo3diQ_igmpkz2eiVKFyeGxm_ozWrEPYoIX45bmqU0o", + "expiresAt": 1679529600000, + "height": 278 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1619184382852?e=1679529600&v=beta&t=xC8h_usUPaY_8YDrfVdl6pAuop1cV0ZWjivL4d4mK_s", + "expiresAt": 1679529600000, + "height": 156 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1619184382852?e=1679529600&v=beta&t=h32BM45PMnwKXPKXWjTWfuBG7XrYF2-kc9yhbHPJhsU", + "expiresAt": 1679529600000, + "height": 52 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1619184382853?e=1679529600&v=beta&t=IZ6TS9JPF1eC_RJ_Xi0woxy9RhyRTlshtRiZnHGsp4s", + "expiresAt": 1679529600000, + "height": 260 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQEZ2uJyFpiscw/feedshare-shrink_" + }, + "displayAspectRatio": 0.3255269320843091 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "logo, company name" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6791351535629586432,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 876, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "vQnSgFP/TJWu3i6y7jtCSg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Si vous avez envie de faire du conseil en strat\u00e9gie, et que vous aimez le climat, il y a deux voies possibles :\n- celle qui semble \u00e9vidente, qui consiste \u00e0 penser d'abord strat\u00e9gie, et donc \u00e0 (chercher \u00e0) entrer dans un cabinet anglo-saxon r\u00e9put\u00e9, ou un de ses nombreux spin-off, o\u00f9, \u00e0 l'\u00e9vidence, on doit pouvoir faire du climat \u00e0 c\u00f4t\u00e9 d'autre chose\n- celle qui est en fait \"physiquement\" \u00e9vidente (mais qui ne le semble pas pour beaucoup de monde !), qui consiste \u00e0 penser d'abord climat, pour r\u00e9aliser que de s'occuper s\u00e9rieusement de ce dernier est en fait incompatible avec l'essentiel des strat\u00e9gies \"classiques\" d'entreprises dans un monde qui prendrait au s\u00e9rieux l'accord de Paris.\n\nSi vous appartenez \u00e0 la deuxi\u00e8me cat\u00e9gorie, et que vous aimez les structures \u00e0 taille humaine qui sont fortement engag\u00e9es, alors vous serez peut-\u00eatre int\u00e9ress\u00e9(e) par cette annonce de Carbone 4 : https://lnkd.in/exNijba\n\nA vos CV !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6791351535629586432,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6791351536632041472,urn:li:activity:6791351536632041472,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6791351536632041472,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6791351536632041472,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6791351536632041472", + "threadId": "activity:6791351536632041472", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6791351536632041472", + "urn": "urn:li:activity:6791351536632041472", + "numComments": 76, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6791351536632041472", + "reactionTypeCounts": [ + { + "count": 862, + "reactionType": "LIKE" + }, + { + "count": 36, + "reactionType": "EMPATHY" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6791351536632041472", + "numLikes": 942, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6791351536632041472", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 942, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6791249208813854720,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6791249208813854720", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6791249208813854720)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6791249208813854720)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-voiture-reste-majoritaire-pour-les-d%C3%A9placements-activity-6791249208813854720-zc6t?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6791249208159555585", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6791249208813854720", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6791249208813854720,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6791249208813854720,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6791249208159555585", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "9iuNdbwRxKvjTqTaDZZtOQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6791249208813854720,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8295731715121009868", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675871907377?e=1677240000&v=beta&t=HQieOlOVu9fBLpt3acEIiJNi0duXzI-SfYufat0grXo", + "expiresAt": 1677240000000, + "height": 172 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675871907377?e=1677240000&v=beta&t=X-EvrN_cAMbgKwgKMj1Y2wCTs8xFDy2cEAAuo06U24E", + "expiresAt": 1677240000000, + "height": 275 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675871907377?e=1677240000&v=beta&t=O_LmwJ6Q8Xy_2iRWC77LAIv83U7x_XSe8NwTI5bSh6c", + "expiresAt": 1677240000000, + "height": 34 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675871907377?e=1677240000&v=beta&t=vpHRsHM_4nwT6b-lNq3CobgyHRoNTzFI3QLaNg_0DeA", + "expiresAt": 1677240000000, + "height": 103 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEgeb04hfQCpg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8295731715121009868)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8295731715121009868)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "insee.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La voiture reste majoritaire pour les d\u00e9placements domicile-travail, m\u00eame pour de courtes distances by insee.fr", + "actionTarget": "https://www.insee.fr/fr/statistiques/5013868?mc_cid=f32d7da8d8&mc_eid=3c75a59f67#figure2_radio1" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La voiture reste majoritaire pour les d\u00e9placements domicile-travail, m\u00eame pour de courtes distances" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6791249208159555585,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a les discours, dont les chefs d'Etat viennent de nous donner un bel \u00e9chantillon \u00e0 l'occasion de la r\u00e9union \"provoqu\u00e9e\" par Biden, et puis il y a les faits. \n\nEn France, l'un des actes n\u00e9cessaires pour faire baisser nos \u00e9missions est de diminuer le recours \u00e0 la voiture. Mais, malgr\u00e9 un discours d\u00e9sormais connu sur ce th\u00e8me, la r\u00e9alit\u00e9 ne change quasiment pas. \n\nEn 5 ans, de 2015 \u00e0 2020, la part de la voiture pour effectuer le trajet domicile-travail (qui repr\u00e9sente en gros un tiers du kilom\u00e9trage total en v\u00e9hicule particulier) a perdu un point, de 74% \u00e0 73%. La marche \u00e0 pieds, d\u00e9j\u00e0 peu vaillante, a r\u00e9gress\u00e9, et le v\u00e9lo est pass\u00e9 de 2% \u00e0 3% (ca fait certes 50% d'augmentation relative !).\n\nIl ne suffit donc pas d'annoncer des objectifs ambitieux pour que ces derniers deviennent une r\u00e9alit\u00e9. Fixer un objectif est certes indispensable, mais c'est de loin la partie la plus facile de l'affaire. C'est apr\u00e8s que les choses s\u00e9rieuses commencent, quand il faut, partout et tout le temps, changer les actes." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6791249208159555585,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6791249208813854720,urn:li:activity:6791249208813854720,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 107, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6791249208813854720,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6791249208813854720,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6791249208813854720", + "threadId": "activity:6791249208813854720", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6791249208813854720", + "urn": "urn:li:activity:6791249208813854720", + "numComments": 363, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6791249208813854720", + "reactionTypeCounts": [ + { + "count": 1100, + "reactionType": "LIKE" + }, + { + "count": 96, + "reactionType": "MAYBE" + }, + { + "count": 81, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6791249208813854720", + "numLikes": 1308, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6791249208813854720", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1308, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6790868728503435264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6790868728503435264", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6790868728503435264)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6790868728503435264)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_batteries-objets-incontournables-de-la-activity-6790868728503435264-ILZQ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6790868727958183936", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6790868728503435264", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6790868728503435264,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6790868728503435264,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6790868727958183936", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "fnGgYXdFBF6Sa3uZTyIQPg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6790868728503435264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6921871837235804565", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1618991467398?e=1677240000&v=beta&t=TTZ6Cbi-qEfu-h7JctwFzpIjTbBiCkEL9v1XAsWn8bQ", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1618991467398?e=1677240000&v=beta&t=5u3c7A8w-ZWS2rwlIZ-LqLKKdwMRix7oCNgdiICV0Nk", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1618991467398?e=1677240000&v=beta&t=lZEZyw1pDXEFhoaebh4DEogB3CuH2ABqmA1Fj5Pt1nQ", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1618991467398?e=1677240000&v=beta&t=oa95ZjNhAv8_xeH54fM6g8Q_gcOpYrhLqoxBX7a0xLs", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHGp7U-ArE5KQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6921871837235804565)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6921871837235804565)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 6 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Batteries : objets incontournables de la transition \u00e9nerg\u00e9tique, mais \u00e0 utiliser avec mod\u00e9ration by carbone4.com", + "actionTarget": "http://www.carbone4.com/batteries-objets-incontournables-de-transition-energetique-a-utiliser-moderation/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Batteries : objets incontournables de la transition \u00e9nerg\u00e9tique, mais \u00e0 utiliser avec mod\u00e9ration" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6790868727958183936,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La batterie, cet obscur objet du d\u00e9sir (de transition), fait l'objet d'une actualit\u00e9 de Carbone 4.\n\nA poids et puissance identiques, le v\u00e9hicule \u00e9lectrique, en France, \u00e9met trois fois moins, fabrication comprise, que son \u00e9quivalent essence ou diesel. Le gain par rapport au thermique est d\u00e9sormais aussi une r\u00e9alit\u00e9 dans les autres pays d'Europe si l'on prend en compte que, sur la dur\u00e9e de vie d'un v\u00e9hicule achet\u00e9 aujourd'hui (10 ans), la production \u00e9lectrique se d\u00e9carbone.\n\nMais pour \u00eatre \"dans les clous\" question transition, c'est \u00e0 dire \"align\u00e9\" avec une baisse au bon rythme, il faudra combiner \u00e9lectrification et sobri\u00e9t\u00e9 d'usage. Les \"tanks \u00e9lectriques\" nous emm\u00e8nent donc clairement dans la mauvaise direction.\n\nIl faudra aussi fortement d\u00e9velopper le recyclage, car une batterie, c'est avant tout des m\u00e9taux, et ces derniers ne sont, pour certains, pas plus illimit\u00e9s que le p\u00e9trole !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6790868727958183936,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6790868728503435264,urn:li:activity:6790868728503435264,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 83, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6790868728503435264,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6790868728503435264,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6790868728503435264", + "threadId": "activity:6790868728503435264", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6790868728503435264", + "urn": "urn:li:activity:6790868728503435264", + "numComments": 141, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6790868728503435264", + "reactionTypeCounts": [ + { + "count": 1291, + "reactionType": "LIKE" + }, + { + "count": 132, + "reactionType": "INTEREST" + }, + { + "count": 86, + "reactionType": "MAYBE" + }, + { + "count": 16, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6790868728503435264", + "numLikes": 1535, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6790868728503435264", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1535, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6790556541339668480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6790556541339668480", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6790556541339668480)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6790556541339668480)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lorganisation-m%C3%A9t%C3%A9orologique-mondiale-vient-activity-6790556541339668480-W4Tq?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6790556540492419073", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6790556541339668480", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6790556541339668480,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6790556541339668480,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6790556540492419073", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "aRojrhOE5Rr+HrprHzkrhQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6790556541339668480,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4E22AQGgJmdpbcgnRA", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4E22AQGgJmdpbcgnRA", + "artifacts": [ + { + "width": 1746, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1618994838793?e=1679529600&v=beta&t=KQNbXtghVk1q7FRROrlCf1qEagfktVT9VUwAlD87liA", + "expiresAt": 1679529600000, + "height": 972 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1618994840564?e=1679529600&v=beta&t=rZT_4vQnEQH8kaDO3gKFKBS7V2R26oCD__6kup3mJsk", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1618994840564?e=1679529600&v=beta&t=4kZBZQYtoPCi5PEqIvjUGDVKvRq8XqrVkw_P9ifyH5M", + "expiresAt": 1679529600000, + "height": 713 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1618994840564?e=1679529600&v=beta&t=36TAjvCBalUjxmbV5lvj2eHbnP0qyWsZaiP4YKtr1nA", + "expiresAt": 1679529600000, + "height": 267 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1618994840564?e=1679529600&v=beta&t=t_xbhatDtg2CRmg0uebO4cgHFXHFBq363tC2pybVi24", + "expiresAt": 1679529600000, + "height": 89 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1618994840564?e=1679529600&v=beta&t=PBiG8zau0yJHtIwrs6B-psw7Fh05ZDroka0L5dbbekY", + "expiresAt": 1679529600000, + "height": 445 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E22AQGgJmdpbcgnRA/feedshare-shrink_" + }, + "displayAspectRatio": 0.5567010309278351 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6790556540492419073,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'Organisation M\u00e9t\u00e9orologique Mondiale vient de publier son \"State of the global climate 2020\", qui fait le point sur de tr\u00e8s nombreux indicateurs mesur\u00e9s ou calcul\u00e9s. La page d'accueil est l\u00e0 : https://lnkd.in/ehkZwpp mais on peut directement consulter le rapport complet (56 pages) l\u00e0 : https://lnkd.in/eX8Ty73\n\nPr\u00e9cipitations, extension de la banquise, \u00e9volution des calottes glaciaires, contenu en \u00e9nergie de l'oc\u00e9an et acidification, temp\u00e9ratures, ou ph\u00e9nom\u00e8nes extr\u00eames marquants de l'ann\u00e9e : ce document fait un point complet sur de nombreux indicateurs physiques.\n\nUne large partie du monde a sembl\u00e9 d\u00e9couvrir \u00e0 l'occasion du ralentissement caus\u00e9 par le covid qu'une ann\u00e9e de l\u00e9g\u00e8re baisse des \u00e9missions (-6% en 2020 par rapport \u00e0 2019) n'est pas suffisant pour instantan\u00e9ment calmer le jeu. Il serait temps !\n\nRappelons qu'\u00e0 cause de l'inertie du syst\u00e8me climatique (chose connue depuis longtemps), le rapport de 2030, s'il y en a un, sera bien plus d\u00e9sagr\u00e9able, et ce m\u00eame si nous commen\u00e7ons \u00e0 s\u00e9rieusement baisser les \u00e9missions, ce qu'il faut faire le plus vite possible. Dans le domaine du climat, \"ne pas prendre le mur\" demande des d\u00e9cennies ou des si\u00e8cles d'anticipation, et c'est toute la difficult\u00e9 avec nos soci\u00e9t\u00e9s du (tr\u00e8s) court terme." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6790556540492419073,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6790556541339668480,urn:li:activity:6790556541339668480,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 17, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6790556541339668480,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6790556541339668480,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6790556541339668480", + "threadId": "activity:6790556541339668480", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6790556541339668480", + "urn": "urn:li:activity:6790556541339668480", + "numComments": 45, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6790556541339668480", + "reactionTypeCounts": [ + { + "count": 565, + "reactionType": "LIKE" + }, + { + "count": 56, + "reactionType": "INTEREST" + }, + { + "count": 43, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6790556541339668480", + "numLikes": 676, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6790556541339668480", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 676, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6790303596442349568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6790303596442349568", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6790303596442349568)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6790303596442349568)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_bilan-du-secteur-de-l%C3%A9lectricit%C3%A9-activity-6790303596442349568-m3Zy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6790303595901292544", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6790303596442349568", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6790303596442349568,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6790303596442349568,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6790303595901292544", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "W3ndkUfylzJV1uug2XU/2g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6790303596442349568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9196737421896506223", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1618823069369?e=1677240000&v=beta&t=X32fxQ2GktJrodKZuQ4jtDRJE_DN5PQZJpmjL1uxjC4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1618823069369?e=1677240000&v=beta&t=AOwc4BpxdcnLPo44wW4_83WJ-_P9dECY6hp3NWpd0UE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1618823069369?e=1677240000&v=beta&t=2ifyX3Hl8AwvD_HU3aee_YVBD-Jkx_PZwEM1l7nIrpQ", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1618823069369?e=1677240000&v=beta&t=gZsjJdBBdk-9nE4xnouZmJ4o1UDSFhUIBn_BdM70aBE", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHyLmxRXCuF4g/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9196737421896506223)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9196737421896506223)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbon4finance.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Bilan du secteur de l'\u00e9lectricit\u00e9 by carbon4finance.com", + "actionTarget": "http://www.carbon4finance.com/bilan-du-secteur-de-lelectricite/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Bilan du secteur de l'\u00e9lectricit\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6790303595901292544,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 16, + "miniCompany": { + "objectUrn": "urn:li:company:11435106", + "entityUrn": "urn:li:fs_miniCompany:11435106", + "name": "Carbon4 Finance", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269325997?e=1684972800&v=beta&t=3ABm7OMkx3C-lCTZ0nzLNwolAvSOdCzmXAmru5OGoNs", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269325997?e=1684972800&v=beta&t=BH2dPvm6L3J2WTdLoIHnY84SpgLWZZ1_En8Q1Ppak6Q", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269325997?e=1684972800&v=beta&t=KNMwKZHCJ3dtlDJdUTurpEbxpfYk5LW3dEbsOvBcUBU", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQG_i3N_cce19w/company-logo_" + } + }, + "universalName": "carbon4finance", + "dashCompanyUrn": "urn:li:fsd_company:11435106", + "trackingId": "QAZRv9YVSN2a0jdmEOfvew==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbon4 Finance vient de terminer sa revue sectorielle des entreprises de l'\u00e9lectricit\u00e9, effectu\u00e9e avec la m\u00e9thode Carbon Impact Analytics. Cette revue consiste \u00e0 mettre \u00e0 jour les notes unitaires de la centaine d'entreprises (dans le monde) qui sont analys\u00e9es une par une, la m\u00e9thode \u00e9tant d\u00e9crite dans le document mis en ligne.\n\nIl faut rappeler que la production \u00e9lectrique, dans le monde, est avant tout fossile. Et il ne suffit pas de s\u00e9parer les gentils renouvelables des m\u00e9chants \"tout le reste\". La question est bien celle de l'\u00e9volution de chaque acteur du secteur, et c'est \u00e0 cette question que tente de r\u00e9pondre l'analyse qui vous est propos\u00e9e.\n\nIl est alors possible de classer toutes les entreprises les unes par rapport aux autres, ce qui est indispensable pour prendre des d\u00e9cisions \u00e9clair\u00e9es (c'est le cas de le dire) d'investissement ou pas.\n" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6790303595901292544,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6790303596442349568,urn:li:activity:6790303596442349568,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 3, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6790303596442349568,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6790303596442349568,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6790303596442349568", + "threadId": "activity:6790303596442349568", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6790303596442349568", + "urn": "urn:li:activity:6790303596442349568", + "numComments": 3, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6790303596442349568", + "reactionTypeCounts": [ + { + "count": 108, + "reactionType": "LIKE" + }, + { + "count": 14, + "reactionType": "INTEREST" + }, + { + "count": 6, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6790303596442349568", + "numLikes": 128, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6790303596442349568", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 128, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6790288611272093696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6790288611272093696", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6790288611272093696)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6790288611272093696)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_how-finance-can-become-serious-about-climate-activity-6790288611272093696-QHvB?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6790288610412240896", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6790288611272093696", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6790288611272093696,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6790288611272093696,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6790288610412240896", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "liWeWjhT1OWCe0oZpwn3jg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6790288611272093696,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8650674238270933969", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1675387953459?e=1677240000&v=beta&t=RntXiM3_YVYt8rfmZyYavX6we1PWjanv6Oyh1iLM0Uk", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675387953459?e=1677240000&v=beta&t=Yxw0Uk-vsKsQCMe4Cn0OWoIBxQGMKRQ7O7vc0IdhgOg", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675387953460?e=1677240000&v=beta&t=3hdOGC8ud_nZHRNcNp2-BwXCq-XKKBUr3jT9vm2b-Os", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675387953460?e=1677240000&v=beta&t=BcaPQtesFovNo5iEeAry3_CxCxtCFaQBee2poN868t8", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEginPhDnf40w/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8650674238270933969)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8650674238270933969)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: How Finance can become serious about climate change? - Jean-Marc Jancovici, Carbone 4 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=WOTRfMSrmII" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\"How Finance can become serious about climate change?\" - Interview of Jean-Marc Jancovici, Founding Partner of Carbone 4, Founding Partner of The Shift Project.\nSPHERE ESG Event: Roadmap to transparency" + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "How Finance can become serious about climate change? - Jean-Marc Jancovici, Carbone 4" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "5 days ago, I was invited by Sphere, a swiss media adressing the financial world, on the topic \"How can Finance become serious about climate change?\".\n\n5 questions, 15 minutes, in English: I hope I've said the most important!" + } + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6790288611272093696,urn:li:activity:6790288611272093696,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 10, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6790288611272093696,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6790288611272093696,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6790288611272093696", + "threadId": "activity:6790288611272093696", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6790288611272093696", + "urn": "urn:li:activity:6790288611272093696", + "numComments": 12, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6790288611272093696", + "reactionTypeCounts": [ + { + "count": 152, + "reactionType": "LIKE" + }, + { + "count": 10, + "reactionType": "INTEREST" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "MAYBE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6790288611272093696", + "numLikes": 178, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6790288611272093696", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 178, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6789936622851907584,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6789936622851907584", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6789936622851907584)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6789936622851907584)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_un-groupe-de-d%C3%A9put%C3%A9s-de-la-france-insoumise-activity-6789936622851907584-7sSF?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6789936622134681600", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6789936622851907584", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6789936622851907584,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6789936622851907584,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6789936622134681600", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "CqOqydQF38gcWeeblTJ7Hw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6789936622851907584,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHea3DBJsXoeQ", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHea3DBJsXoeQ", + "artifacts": [ + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1618847041136?e=1679529600&v=beta&t=yzPWXQXiCCufyK_eRHL9M9KxJBLxaVGab4P435wgI_c", + "expiresAt": 1679529600000, + "height": 640 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1618847041175?e=1679529600&v=beta&t=HJpFVNShhmJTZsqZHSQcTwt9ifkKHyHNGKbHCGrzakI", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1618847041175?e=1679529600&v=beta&t=NcBlao0tlfx1vG-PvQz0PO_j_fru5Rr70bBu_QmYYIw", + "expiresAt": 1679529600000, + "height": 640 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1618847041175?e=1679529600&v=beta&t=bI5lksu-GT8vF_3ZGSm5czohTB_teDV1vD3FCRVm6lE", + "expiresAt": 1679529600000, + "height": 240 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1618847041175?e=1679529600&v=beta&t=0oNnBdP7U30AUpyJUSohRUfYcjTxy4a_8pLKmjMflbo", + "expiresAt": 1679529600000, + "height": 80 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1618847041175?e=1679529600&v=beta&t=RHF2Dko_futqVLqN5N5FouTalCsAgRpaUzeLzsloaq4", + "expiresAt": 1679529600000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHea3DBJsXoeQ/feedshare-shrink_" + }, + "displayAspectRatio": 0.5 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, application" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6789936622134681600,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un groupe de d\u00e9put\u00e9s de la France Insoumise vient de d\u00e9poser une proposition de loi pour lutter contre l'obsolescence programm\u00e9e : https://lnkd.in/dWEm_3W \n\nOn d\u00e9signe sous ce terme le fait de concevoir ou fabriquer des objets avec une dur\u00e9e de vie d\u00e9lib\u00e9r\u00e9ment tr\u00e8s courte. Cette obsolescence peut \u00eatre \"physique\" (l'appareil est fait pour casser rapidement) ou \"psychologique\" (il faut remplacer par mieux alors que l'appareil fonctionne encore). \n\nCette pratique, qui pousse \u00e0 fabriquer plus d'objets pour une m\u00eame dur\u00e9e d'usage, augmente \u00e0 la fois le chiffre d'affaires des fabricants (puisqu'il faut acheter plus souvent) et les \u00e9missions de gaz \u00e0 effet de serre (puisqu'il faut fabriquer plus d'objets).\n\nDu coup, la proposition de loi - tr\u00e8s courte : 4 articles - porterait la garantie l\u00e9gale \u00e0 10 ans (les constructeurs auraient alors int\u00e9r\u00eat \u00e0 proposer des produits \"durables\" et r\u00e9parables) et interdirait la publicit\u00e9 incitant \u00e0 remplacer un appareil qui fonctionne encore.\n\nL'id\u00e9e est pertinente, mais ne vient pas de la majorit\u00e9 actuelle : du coup il est h\u00e9las peu probable que la loi climat l'int\u00e8gre..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6789936622134681600,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6789936622851907584,urn:li:activity:6789936622851907584,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 167, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6789936622851907584,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6789936622851907584,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6789936622851907584", + "threadId": "activity:6789936622851907584", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6789936622851907584", + "urn": "urn:li:activity:6789936622851907584", + "numComments": 369, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6789936622851907584", + "reactionTypeCounts": [ + { + "count": 3781, + "reactionType": "LIKE" + }, + { + "count": 251, + "reactionType": "MAYBE" + }, + { + "count": 200, + "reactionType": "APPRECIATION" + }, + { + "count": 124, + "reactionType": "PRAISE" + }, + { + "count": 66, + "reactionType": "INTEREST" + }, + { + "count": 33, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6789936622851907584", + "numLikes": 4455, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6789936622851907584", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 4455, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6789576767364448256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6789576767364448256", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6789576767364448256)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6789576767364448256)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_palm-oil-activity-6789576767364448256-asL-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6789576766705958912", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6789576767364448256", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6789576767364448256,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6789576767364448256,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6789576766705958912", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "1PVU/1HJk6LT/G3DpramdA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6789576767364448256,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8493468860610573165", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 768, + "fileIdentifyingUrlPathSegment": "800/0/1675442676315?e=1677240000&v=beta&t=W3OWuG-kw0BvnSIwUWwC6ZblJVucqPA1x5NFYj4kVRE", + "expiresAt": 1677240000000, + "height": 404 + }, + { + "width": 768, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675442676315?e=1677240000&v=beta&t=D29WpME_3JFS0hm7H-Q3ggk9G2STGY6B6rSRi2naTTg", + "expiresAt": 1677240000000, + "height": 404 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675442676315?e=1677240000&v=beta&t=BYJo4UrJn7bj9RI1yqpXsKJjaPPCXhu0X-cuWPsu6x0", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675442676315?e=1677240000&v=beta&t=dbRaaP0CXO5g9JssMF59mCDDH-gAqzPpELfvZn2aZsg", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQERMRYO9_-bdA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5260416666666666 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8493468860610573165)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8493468860610573165)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ourworldindata.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Palm Oil by ourworldindata.org", + "actionTarget": "https://ourworldindata.org/palm-oil" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Palm Oil" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6789576766705958912,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Faut-il se passer d'huile de palme ? Pour beaucoup d'environnementalistes, la r\u00e9ponse est entendue : c'est oui. Cet article tr\u00e8s int\u00e9ressant (et tr\u00e8s bien sourc\u00e9) de Our World in Data sugg\u00e8re que la r\u00e9ponse est moins simple que cela. \n\nTir\u00e9e par la demande de l'agroalimentaire, des cosm\u00e9tiques et shampoings, des produits d'entretien, et maintenant des automobilistes pour substituer du diesel, la consommation d'huiles et graisses v\u00e9g\u00e9tales a \u00e9t\u00e9 multipli\u00e9e par 8 en 50 ans dans le monde.\n\nLa question pos\u00e9e par l'autrice de cet article est la suivante : la situation aurait-elle \u00e9t\u00e9 meilleure si la m\u00eame demande avait \u00e9t\u00e9 satisfaite sans huile de palme ? Et la r\u00e9ponse est... probablement pas, car le palmier fournit 6 fois plus d'huile \u00e0 l'hectare que le tournesol et 10 fois plus que le soja. \n\nCet article donne \u00e9galement la r\u00e9partition des surfaces sur lesquelles les plantations de palmiers prennent place. La for\u00eat primaire ne repr\u00e9sente qu'une petite fraction des nouvelles surfaces. C'est toujours trop, mais ce n'est pas le seul cas de figure possible.\n\nLa conclusion de cette analyse est assez simple : si l'on veut \u00e9viter la d\u00e9forestation, c'est du c\u00f4t\u00e9 de la baisse de la demande qu'il faut travailler. Penser qu'il suffit de remplacer le palmier par autre chose est inexact." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6789576766705958912,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6789576767364448256,urn:li:activity:6789576767364448256,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 128, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6789576767364448256,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6789576767364448256,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6789576767364448256", + "threadId": "activity:6789576767364448256", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6789576767364448256", + "urn": "urn:li:activity:6789576767364448256", + "numComments": 220, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6789576767364448256", + "reactionTypeCounts": [ + { + "count": 2232, + "reactionType": "LIKE" + }, + { + "count": 376, + "reactionType": "INTEREST" + }, + { + "count": 329, + "reactionType": "MAYBE" + }, + { + "count": 30, + "reactionType": "PRAISE" + }, + { + "count": 16, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6789576767364448256", + "numLikes": 2987, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6789576767364448256", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2987, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6789465492932321280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6789465492932321280", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6789465492932321280)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6789465492932321280)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_china-to-start-building-hualong-two-nuclear-activity-6789465492932321280-fDsp?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6789465492395454464", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6789465492932321280", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6789465492932321280,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6789465492932321280,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6789465492395454464", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "G59Flh3IPS1Qy3wUDip6TA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6789465492932321280,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7009593808794315168", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675480060055?e=1677240000&v=beta&t=_tCsAFEVYbeZxUv-UfF8s-24GNk675QQKhUFU0uH4MI", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675480060055?e=1677240000&v=beta&t=3S-L_uwciRVxkdlCf--FEdxXcq7Zr92DyJliM36-pYU", + "expiresAt": 1677240000000, + "height": 512 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675480060055?e=1677240000&v=beta&t=3Mw7sWxqCypcI41gLis70LbjaSF14Rf_HecEbDWL9TQ", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675480060055?e=1677240000&v=beta&t=d3TbST2My6ajiVyzO9iihELSQ_qUAGLQowNvZS2gN6Q", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHzMY4JdmJsoQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7009593808794315168)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7009593808794315168)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "nasdaq.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: China to start building Hualong Two nuclear reactor in 2024 by nasdaq.com", + "actionTarget": "https://www.nasdaq.com/articles/china-to-start-building-hualong-two-nuclear-reactor-in-2024-2021-04-14" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "China to start building Hualong Two nuclear reactor in 2024" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6789465492395454464,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le nucl\u00e9aire fran\u00e7ais est trop cher ? On pourra demander de l'aide aux chinois :) Leur r\u00e9acteur de 3\u00e8 g\u00e9n\u00e9ration Hualong One a \u00e9t\u00e9 construit en 6 ans (https://lnkd.in/dQk-sHP ) et pour 2600 $ le kW install\u00e9 (4 fois moins que l'EPR de Flamanville). \n\nLe mod\u00e8le \"am\u00e9lior\u00e9\" Hualong 2 est annonc\u00e9 avec un d\u00e9lai de construction de 4 ans et 2000 $ le kW install\u00e9. Avec un facteur de charge de 70% \u00e0 90% et une dur\u00e9e de vie de 60 ans, cela met le kW efficace au sixi\u00e8me du cout de construction de l'\u00e9olien, avant prise en compte du stockage (le diff\u00e9rentiel avec stockage sera donc un multiple de de 10 \u00e0 20).\n\nPourquoi la Chine \"fait mieux\" ? Les couts salariaux sont inf\u00e9rieurs, mais cela ne change pas les d\u00e9lais de construction. Il faut aussi chercher du c\u00f4t\u00e9 de l'exp\u00e9rience (les chinois construisent en permanence), de la gestion de la s\u00fbret\u00e9 (les fran\u00e7ais ont parfois un exc\u00e8s de \"ceinture et bretelles\" qui engendre complexit\u00e9 inutile donc surco\u00fbts et d\u00e9lais), et plus g\u00e9n\u00e9ralement d'un contexte politique dans lequel la fili\u00e8re est g\u00e9r\u00e9e dans la dur\u00e9e.\n\nCa serait idiot de demander aux chinois de construire nos r\u00e9acteurs ? Pour le moment, nous leur confions bien le soin de fabriquer nos panneaux solaires et \u00e9oliennes..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6789465492395454464,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6789465492932321280,urn:li:activity:6789465492932321280,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 110, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6789465492932321280,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6789465492932321280,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6789465492932321280", + "threadId": "activity:6789465492932321280", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6789465492932321280", + "urn": "urn:li:activity:6789465492932321280", + "numComments": 183, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6789465492932321280", + "reactionTypeCounts": [ + { + "count": 1385, + "reactionType": "LIKE" + }, + { + "count": 245, + "reactionType": "MAYBE" + }, + { + "count": 151, + "reactionType": "INTEREST" + }, + { + "count": 35, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6789465492932321280", + "numLikes": 1833, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6789465492932321280", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1833, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 Edited \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6789222690323480576,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6789222690323480576", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6789222690323480576)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6789222690323480576)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_hydrog%C3%A8ne-de-france-et-atos-signent-pour-activity-6789222690323480576-nVOn?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6789222689677557760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6789222690323480576", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6789222690323480576,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6789222690323480576,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6789222689677557760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "6inGzfSQwIzX2Ldp5M1qFQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6789222690323480576,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7508913171104039708", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 612, + "fileIdentifyingUrlPathSegment": "800/0/1676073111789?e=1677240000&v=beta&t=TwwBPWM9nSa3sTrNf4ijQfcOqdS85rTkPT-RyXSUF-E", + "expiresAt": 1677240000000, + "height": 306 + }, + { + "width": 612, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676073111789?e=1677240000&v=beta&t=mCbJm5i1d2Rj8W2BKSmkMAzqwmw6lf8cKpaF-CsdvWg", + "expiresAt": 1677240000000, + "height": 306 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676073111790?e=1677240000&v=beta&t=apfwtADz1CiLOEKyETpw7hGd-MCtjW-ft-MP0oZ4gnY", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676073111790?e=1677240000&v=beta&t=tQJyhzThMu9RKkt5HHDd2zbvoBR7m_xLVox9qbEDUpc", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQEUxrjHSqfgvQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7508913171104039708)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7508913171104039708)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "objectifaquitaine.latribune.fr \u2022 7 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Hydrog\u00e8ne de France et Atos signent pour lancer les premiers data centers verts sur le march\u00e9 by objectifaquitaine.latribune.fr", + "actionTarget": "https://objectifaquitaine.latribune.fr/innovation/2021-04-13/hydrogene-de-france-et-atos-signent-pour-lancer-les-premiers-data-centers-verts-sur-le-marche-882042.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Hydrog\u00e8ne de France et Atos signent pour lancer les premiers data centers verts sur le march\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6789222689677557760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le week-end, il faut d\u00e9compresser. Alors je vous propose un petit hommage (probablement involontaire) \u00e0 Jacques Rouxel, le cr\u00e9ateur des shadoks.\n\nDans cet article publi\u00e9 par La Tribune (qui se trouve occuper l'\u00e9tage en dessous de celui de Carbone 4, donc je me ferai un plaisir de me faire offrir un verre par l'auteur de l'article s'il le souhaite :) ) il est question de rendre un datacenter \"vert\" en le faisant fonctionner avec de l'\u00e9lectricit\u00e9 d\u00e9carbon\u00e9e issue d'hydrog\u00e8ne \"vert\". Question : avec quoi fait-on de l'hydrog\u00e8ne vert ? R\u00e9ponse : avec de l'\u00e9lectricit\u00e9 d\u00e9carbon\u00e9e ! \n\nCa me rappelle cette histoire des gens pay\u00e9s pour boucher des trous que d'autres personnes sont pay\u00e9es pour faire. Mais bon, tant que ca fera le job question com, pourquoi se priver ?\n\nIncidemment, un datacenter n'est pas un objet isol\u00e9 du reste du monde. Quand bien m\u00eame il deviendrait \"vert\", il est au service d'un ensemble num\u00e9rique plus vaste qui pour le moment ne l'est pas du tout, et l'est m\u00eame de moins en moins (https://lnkd.in/ggXYjrX ). \n\nR\u00e9cemment, The Shift Project a fait des propositions pour que le secteur num\u00e9rique maitrise son empreinte carbone dans les bons ordres de grandeur (https://lnkd.in/dAnRCuP ). L'hydrog\u00e8ne n'y figurait pas..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6789222689677557760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6789222690323480576,urn:li:activity:6789222690323480576,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 69, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6789222690323480576,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6789222690323480576,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6789222690323480576", + "threadId": "activity:6789222690323480576", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6789222690323480576", + "urn": "urn:li:activity:6789222690323480576", + "numComments": 137, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6789222690323480576", + "reactionTypeCounts": [ + { + "count": 1007, + "reactionType": "LIKE" + }, + { + "count": 74, + "reactionType": "MAYBE" + }, + { + "count": 66, + "reactionType": "INTEREST" + }, + { + "count": 32, + "reactionType": "PRAISE" + }, + { + "count": 12, + "reactionType": "EMPATHY" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6789222690323480576", + "numLikes": 1199, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6789222690323480576", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1199, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "1yr \u2022 ", + "accessibilityText": "1 year ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6789217143952035840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6789217143952035840", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6789217143952035840)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6789217143952035840)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rapport-interm%C3%A9diaire-du-shift-project-activity-6789217143952035840-HGk2?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6789217143436140544", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6789217143952035840", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6789217143952035840,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6789217143952035840,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6789217143436140544", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "4Y699Czyuv5O5T2YTuF1UQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6789217143952035840,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7918615272189260803", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675762684057?e=1677240000&v=beta&t=hi8du1zlTCb4q--XcE25Cc5yn5FjhDMbLwISTdWOqqs", + "expiresAt": 1677240000000, + "height": 531 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675762684057?e=1677240000&v=beta&t=C1NzLd-Vaq6GP_0FcQ5x9DwKjrDG6ubD9UdAPRTE6Uc", + "expiresAt": 1677240000000, + "height": 541 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675762684057?e=1677240000&v=beta&t=IQ_511GztrbL1LSXbMFDsPNoeosVqeNHvGvJNWUYLZg", + "expiresAt": 1677240000000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675762684057?e=1677240000&v=beta&t=K6FVN_99MVUvexW-hIrwSAeQcS4DVraJhcFqnPIJrYo", + "expiresAt": 1677240000000, + "height": 318 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE2H7M4knJ3qQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66375 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7918615272189260803)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7918615272189260803)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Rapport interm\u00e9diaire du Shift Project : D\u00e9carboner l'Administration publique by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/rapport-intermediaire-decarboner-administration-publique-15-avril-2021/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Rapport interm\u00e9diaire du Shift Project : D\u00e9carboner l'Administration publique" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6789217143436140544,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Contrairement au petit dicton que nous connaissons tous, dans une soci\u00e9t\u00e9 qui fonctionne bien, les cordonniers se doivent d'\u00eatre les mieux chauss\u00e9s. \n\nTranspos\u00e9e \u00e0 la question climatique, cette obligation signifie que ce qui rel\u00e8ve de la tutelle directe de l'Etat - l'administration publique - devrait \u00eatre particuli\u00e8rement \u00e0 la pointe en ce qui concerne la baisse des \u00e9missions de gaz \u00e0 effet de serre.\n\nDans un rapport qui vient tout juste d'\u00eatre publi\u00e9 dans le cadre du Plan de transformation de l'\u00e9conomie fran\u00e7aise, The Shift Project dresse un \u00e9tat des lieux et formule des propositions pour que, des tribunaux aux casernes, en passant par les pr\u00e9fectures et les laboratoires du CNRS, ce qui rel\u00e8ve de cet ensemble avance \u00e0 la bonne vitesse pour faire sa part dans l'effort global. \n\nRepr\u00e9sentant 20% de l'emploi salari\u00e9 en France, l'Administration publique ne peut \u00e9videmment pas \"passer \u00e0 c\u00f4t\u00e9\" de la d\u00e9carbonation. \n\nCe document est dit \"de travail\". Il est donc soumis \u00e0 consultation pour recevoir des avis, commentaires, propositions compl\u00e9mentaires, etc. C'est pour cela que, un peu partout dans le document, vous trouverez des questions et non des affirmations. Si vous faites partie de l'administration et avez envie de participer, c'est le moment !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6789217143436140544,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6789217143952035840,urn:li:activity:6789217143952035840,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 11, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6789217143952035840,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6789217143952035840,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6789217143952035840", + "threadId": "activity:6789217143952035840", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6789217143952035840", + "urn": "urn:li:activity:6789217143952035840", + "numComments": 14, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6789217143952035840", + "reactionTypeCounts": [ + { + "count": 331, + "reactionType": "LIKE" + }, + { + "count": 22, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6789217143952035840", + "numLikes": 384, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6789217143952035840", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 384, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6788779593542184961,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6788779593542184961", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6788779593542184961)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6788779593542184961)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_leak-eu-to-table-climate-taxonomy-leaving-activity-6788779593542184961-CBBc?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6788779593017896960", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6788779593542184961", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6788779593542184961,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6788779593542184961,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6788779593017896960", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "P3nDljN77dpUjrdP9fgKXA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6788779593542184961,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8948665417740745640", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676438877578?e=1677240000&v=beta&t=VYYFsSlEGRbMNl1zg2DcY-MhmzRN99A9x6aPs7FsOIk", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676438877578?e=1677240000&v=beta&t=FzNpmhwqC290whhgjO1ROyX3aXTB4xG5dzHDeX9v-nU", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676438877579?e=1677240000&v=beta&t=zfIPLY0GLjo_SLB1RDGE6HSicdad25lP1LuagwLJA5o", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676438877579?e=1677240000&v=beta&t=GmiI-Ag1ZnNNRRWMo5eKz62DJ_kKKoGLureT0YTE6uk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGLynEsYd06Wg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8948665417740745640)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8948665417740745640)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "euractiv.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: LEAK: EU to table \u2018climate taxonomy\u2019, leaving gas and nuclear for later by euractiv.com", + "actionTarget": "https://www.euractiv.com/section/energy-environment/news/leak-eu-to-table-climate-taxonomy-leaving-gas-and-nuclear-for-later/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "LEAK: EU to table \u2018climate taxonomy\u2019, leaving gas and nuclear for later" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6788779593017896960,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le nucl\u00e9aire, le gaz, et la biomasse sont-ils verts ? Bas\u00e9e sur une approche \"objet\", ind\u00e9pendamment du contexte de mise en oeuvre, la taxonomie europ\u00e9enne s'est mise dans une situation fragile dont elle va avoir du mal \u00e0 sortir.\n\nLe nucl\u00e9aire est bas carbone, et moins dommageable pour la sant\u00e9 et l'environnement que toute alternative, ce que vient de rappeler le Joint Research Center auquel la Commission a demand\u00e9 son avis (pour s'asseoir dessus pour le moment). D\u00e8s lors qu'il remplace du fossile (ce que la taxonomie ne demande pourtant pas), il doit donc \u00eatre \u00e9ligible.\n\nSi le gaz remplace du charbon dans l'\u00e9lectricit\u00e9, cela baisse les \u00e9missions, mais s'il remplace du nucl\u00e9aire (cas belge), non. Impossible, donc, de statuer ind\u00e9pendamment du contexte. Et si l'Europe doit \u00eatre neutre en 2050, la centrale \u00e0 gaz devra c\u00e9der la place \u00e0 du bas carbone pilotable (en pratique du nucl\u00e9aire) avant sa fin de vie.\n\nEnfin la biomasse est une solution ou un probl\u00e8me selon le contexte, et ce dernier est toujours complexe \u00e0 appr\u00e9cier.\n\nCes points ne sont pas les seules faiblesses de cette taxonomie, qui a \u00e9t\u00e9 con\u00e7ue avant tout pour se rassurer en \"comptant des milliards verts\", et non avant tout pour financer massivement toute bonne action (https://lnkd.in/dN9P4uw ). Dommage, vraiment." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6788779593017896960,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6788779593542184961,urn:li:activity:6788779593542184961,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6788779593542184961,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6788779593542184961,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6788779593542184961", + "threadId": "activity:6788779593542184961", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6788779593542184961", + "urn": "urn:li:activity:6788779593542184961", + "numComments": 49, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6788779593542184961", + "reactionTypeCounts": [ + { + "count": 266, + "reactionType": "LIKE" + }, + { + "count": 36, + "reactionType": "INTEREST" + }, + { + "count": 32, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6788779593542184961", + "numLikes": 342, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6788779593542184961", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 342, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6788721491635646464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6788721491635646464", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6788721491635646464)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6788721491635646464)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-france-veut-faire-bloc-avec-ses-voisins-activity-6788721491635646464-Fg9f?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6788721491048460288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6788721491635646464", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6788721491635646464,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6788721491635646464,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6788721491048460288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "bW4InpqMC09XhXllpInHLw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6788721491635646464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7300259996187173874", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675642671571?e=1677240000&v=beta&t=XdRpcOKVq0kOJir68HHmxa9olbUf94GDX_v_bEiRmaQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675642671572?e=1677240000&v=beta&t=vEHxUE41ASjxQZgXVsYkavuqzFuRA95Olwp87-HJM5I", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675642671572?e=1677240000&v=beta&t=x4zUzS-TvtApWI3-d-9T33-En6BiKPbZiqzG713keuc", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675642671572?e=1677240000&v=beta&t=xjVyHXHu1KYwAyrHRVL7iohfDSr5T1zQ6wCbWvPMss8", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGieS2fzGfbmA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7300259996187173874)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7300259996187173874)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La France veut faire bloc avec ses voisins pour stopper les aides aux activit\u00e9s fossiles by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/politique-societe/gouvernement/la-france-veut-faire-bloc-avec-ses-voisins-pour-stopper-les-aides-aux-activites-fossiles-1306721" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La France veut faire bloc avec ses voisins pour stopper les aides aux activit\u00e9s fossiles" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6788721491048460288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Lorsqu'elle travaille \u00e0 l'exportation, une entreprise a tout autant besoin de financement que pour son march\u00e9 domestique. Mais l'obtention de ce financement peut \u00eatre plus difficile, car les op\u00e9rations dans ces pays sont parfois consid\u00e9r\u00e9es comme plus risqu\u00e9s. L'Etat a donc mis en place une garantie du cr\u00e9dit export. \n\nSelon cet article des Echos, 35% des cr\u00e9dits export des pays de l'OCDE concernent des activit\u00e9s fossiles. La garantie de ces cr\u00e9dits est de fait une subvention publique \u00e0 leur extraction. \n\nIl y a 3 ans, la France a annonc\u00e9 vouloir supprimer cette garantie au cr\u00e9dit export pour l'extraction de combustibles fossiles, mais avec un calendrier progressif : tout de suite pour le charbon, en 2025 pour le p\u00e9trole, et en 2035 pour le gaz. 6 autres pays europ\u00e9ens viennent de dire qu'ils suivraient le mouvement (Grande-Bretagne, Su\u00e8de, Allemagne, Danemark, Espagne, Pays-Bas), sans donner de calendrier.\n\nBien \u00e9videmment, ce dernier est essentiel. Si la date de fin du soutien est 2050, c'est un peu tard pour avoir des \u00e9missions quasi-nulles \u00e0 ce moment l\u00e0 ! Par ailleurs, les pays concern\u00e9s doivent ensuite convaincre les autres pays de l'OCDE, puis le reste du monde. Mais c'est un pas vers plus de coh\u00e9rence, dans un domaine peu connu du grand public.\n\n" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6788721491048460288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6788721491635646464,urn:li:activity:6788721491635646464,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 14, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6788721491635646464,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6788721491635646464,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6788721491635646464", + "threadId": "activity:6788721491635646464", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6788721491635646464", + "urn": "urn:li:activity:6788721491635646464", + "numComments": 24, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6788721491635646464", + "reactionTypeCounts": [ + { + "count": 432, + "reactionType": "LIKE" + }, + { + "count": 34, + "reactionType": "INTEREST" + }, + { + "count": 31, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6788721491635646464", + "numLikes": 517, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6788721491635646464", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 517, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6788453977496289281,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6788453977496289281", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6788453977496289281)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6788453977496289281)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_opinion-les-normes-financi%C3%A8res-et-extra-financi%C3%A8res-activity-6788453977496289281-7ks0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6788453977039085568", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6788453977496289281", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6788453977496289281,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6788453977496289281,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6788453977039085568", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "uVY9lXjt1qnldf9ukWlCkw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6788453977496289281,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8497292688225041157", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675448269363?e=1677240000&v=beta&t=k4w4P90zfHbiA_fF-7rv8CRb59-twj_NAzyrMiKb_Eo", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675448269363?e=1677240000&v=beta&t=op41KBuMLJ9_KAAxPtJiRCe78q4eGeDJp7g70uc_LjA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675448269363?e=1677240000&v=beta&t=DZlz_2ORaaPIXmvP5PuiZh7nckmJRrjM6QXqKWqmOfo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675448269363?e=1677240000&v=beta&t=fkTW52EGAGHCN_MrdKYxmi07Qz16NPD2p7aCSAZU-20", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEU8kzihI2ibQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8497292688225041157)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8497292688225041157)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Opinion | Les normes financi\u00e8res et extra-financi\u00e8res, un enjeu politique pour l'Europe by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/cercle/opinion-les-normes-financieres-et-extra-financieres-un-enjeu-politique-pour-leurope-1305906" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Opinion | Les normes financi\u00e8res et extra-financi\u00e8res, un enjeu politique pour l'Europe" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6788453977039085568,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le DG d'Amundi - pour encore quelques semaines :) - plaide dans les Echos pour que l'Europe se \"reprenne en main\" en mati\u00e8re de normes financi\u00e8res et extra-financi\u00e8res. \n\nDans le domaine comptable, je ne suis pas suffisamment comp\u00e9tent pour savoir comment nous en sommes arriv\u00e9s \u00e0 nous faire \"imposer\" par les USA une norme - l'IFRS - qui am\u00e8ne essentiellement de la volatilit\u00e9 et des effets de bulle dans les comptes.\n\nMais en mati\u00e8re extrafinanci\u00e8re, il est facile de savoir pourquoi les acteurs anglo-saxons sont dominants. Pour mettre au point de nouveaux indicateurs de performance ou de mesure d'un risque (et le climat demande les deux), puis les d\u00e9ployer, il faut des moyens. \n\nOr les acteurs fran\u00e7ais et europ\u00e9ens investissent mille fois moins (en moyenne) dans l'extrafinancier (formation, donn\u00e9es) que pour les donn\u00e9es financi\u00e8res. Et ce peu d'argent que les acteurs europ\u00e9ens y consacrent, il va essentiellement \u00e0 des fournisseurs US ou anglais.\n\nPour que le voeu du DG d'Amundi prenne corps, il faut n\u00e9cessairement que les moyens consacr\u00e9s par les acteurs du monde financier \u00e0 monter en comp\u00e9tence et \u00e0 travailler avec des acteurs europ\u00e9ens augmentent d'un facteur 10 \u00e0 100. Chiche ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6788453977039085568,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6788453977496289281,urn:li:activity:6788453977496289281,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 30, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6788453977496289281,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6788453977496289281,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6788453977496289281", + "threadId": "activity:6788453977496289281", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6788453977496289281", + "urn": "urn:li:activity:6788453977496289281", + "numComments": 43, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6788453977496289281", + "reactionTypeCounts": [ + { + "count": 230, + "reactionType": "LIKE" + }, + { + "count": 31, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6788453977496289281", + "numLikes": 285, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6788453977496289281", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 285, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6788170932868411393,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6788170932868411393", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6788170932868411393)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6788170932868411393)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_too-hot-heading-south-how-climate-change-activity-6788170932868411393-eZ2R?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6788170932130201600", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6788170932868411393", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6788170932868411393,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6788170932868411393,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6788170932130201600", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "8EjZ2LWuddR12bMtGRSaww==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6788170932868411393,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8312660635168194479", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676025141445?e=1677240000&v=beta&t=dAZ0r3GCWrG6gA8Knl9Z0Yj9jI0VAyEFfs6MC-B6jX4", + "expiresAt": 1677240000000, + "height": 394 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676025141445?e=1677240000&v=beta&t=LAveULvsj4JffIcVHkEUVgWCThJMYLCcyXH5ZZutG_0", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676025141445?e=1677240000&v=beta&t=CEHBr6i0hZzn5aprhmQemXjkuvi3CwxJU_KyW5ZahJA", + "expiresAt": 1677240000000, + "height": 78 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676025141445?e=1677240000&v=beta&t=rxhWiiS8WOQ3XBTI9rHch6W8frMGGXfrwD0C2NmIFuc", + "expiresAt": 1677240000000, + "height": 236 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQGf74xskPTY7g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8312660635168194479)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8312660635168194479)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theconversation.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Too hot, heading south: how climate change may drive one-third of doctors out of the NT by theconversation.com", + "actionTarget": "https://theconversation.com/too-hot-heading-south-how-climate-change-may-drive-one-third-of-doctors-out-of-the-nt-156959" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Too hot, heading south: how climate change may drive one-third of doctors out of the NT" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6788170932130201600,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans les cons\u00e9quences inattendues du r\u00e9chauffement climatique, il y a... l'exode m\u00e9dical dans les provinces du Nord en Australie. A cause du changement climatique, qui occasionne des chaleurs de plus en plus fortes l'\u00e9t\u00e9, un tiers des m\u00e9decins disent avoir d\u00e9cid\u00e9, ou envie, de quitter la r\u00e9gion.\n\nCet \u00e9pisode illustre des effets en cascade qui pourront se produire au niveau des cons\u00e9quences de la d\u00e9rive du climat : des personnes ayant le choix, qui peuvent occuper des postes amenant beaucoup de valeur ajout\u00e9e \u00e0 la soci\u00e9t\u00e9, quittent une r\u00e9gion qui devient progressivement plus inhospitali\u00e8re \u00e0 cause du changement climatique, et cela rendra le m\u00eame niveau de changement plus difficile \u00e0 supporter pour les gens qui restent. Le personnel m\u00e9dical fait partie des cat\u00e9gories concern\u00e9es, mais ils ne sont pas les seuls. \n\nDans les migrations climatiques, il y aura donc des afflux difficiles \u00e0 g\u00e9rer ici, mais aussi des d\u00e9parts dommageables l\u00e0 !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6788170932130201600,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6788170932868411393,urn:li:activity:6788170932868411393,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 26, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6788170932868411393,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6788170932868411393,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6788170932868411393", + "threadId": "activity:6788170932868411393", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6788170932868411393", + "urn": "urn:li:activity:6788170932868411393", + "numComments": 49, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6788170932868411393", + "reactionTypeCounts": [ + { + "count": 494, + "reactionType": "LIKE" + }, + { + "count": 137, + "reactionType": "MAYBE" + }, + { + "count": 131, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6788170932868411393", + "numLikes": 766, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6788170932868411393", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 766, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6787801095310729217,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6787801095310729217", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6787801095310729217)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6787801095310729217)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_inrae-et-planet-a-sassocient-pour-cr%C3%A9er-activity-6787801095310729217-XQWC?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6787801094819995648", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6787801095310729217", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6787801095310729217,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6787801095310729217,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6787801094819995648", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "ujl3cHZl42K7fEHvMU0OpA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6787801095310729217,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8496749557079928271", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675944787255?e=1677240000&v=beta&t=8A5UDD9a11mE-yOYwvvaTje0XAJCFjRNcN1YwBb2T8I", + "expiresAt": 1677240000000, + "height": 535 + }, + { + "width": 1195, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675944787255?e=1677240000&v=beta&t=4Syh7KjJmPqAaLPNec8J4EwHt7Ab-xZvcSvBFyE_lQA", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675944787255?e=1677240000&v=beta&t=ApBIFvqT2jYFdgY_EAdOpS9RihtvzL5waXf-h-W5yN4", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675944787255?e=1677240000&v=beta&t=5wMxGehy9M7AaQQ8KpC2PA_4jg-PteQw3Pev1DOpZo4", + "expiresAt": 1677240000000, + "height": 321 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFUVxzsjrGTwQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.66875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8496749557079928271)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8496749557079928271)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "inrae.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: INRAE et planet A\u00ae s\u2019associent pour cr\u00e9er le premier indicateur mondial d\u2019\u00e9volution du stock de carbone dans les sols agricoles by inrae.fr", + "actionTarget": "https://www.inrae.fr/actualites/inrae-planet-ar-sassocient-creer-premier-indicateur-mondial-devolution-du-stock-carbone-sols-agricoles" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "INRAE et planet A\u00ae s\u2019associent pour cr\u00e9er le premier indicateur mondial d\u2019\u00e9volution du stock de carbone dans les sols agricoles" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6787801094819995648,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Un des ennemis du stockage du carbone par les sols agricoles, c'est l'absence de couverture v\u00e9g\u00e9tale une partie de l'ann\u00e9e. Sur la base de ce constat, L\u2019INRAE et Planet A vont d\u00e9velopper un indicateur, largement bas\u00e9 sur l'observation par satellite des variations de couverture v\u00e9g\u00e9tale, pour \u00e9valuer l\u2019\u00e9volution des stocks de carbone dans les sols agricoles. Il utilisera \u00e9galement des information \"de terrain\", comme l'utilisation de fertilisation organique, ou les modes de gestion des r\u00e9sidus de culture.\n\nIl r\u00e9pondra au doux nom de SOCCROP, il est destin\u00e9 \u00e0 permettre \u00e0 chaque propri\u00e9taire de parcelle de faire une estimation du bilan carbone pour son terrain. \n\nRappelons que les sols agricoles couvrent un gros tiers des terres \u00e9merg\u00e9es, et qu'actuellement l'agriculture est un gros \u00e9metteur de gaz \u00e0 effet de serre. Augmenter le stockage de carbone dans les sols agricoles est un des \u00e9l\u00e9ments d\u00e9terminants pour l'augmentation du puits mondial, lui-m\u00eame d\u00e9terminant pour que la neutralit\u00e9 plan\u00e9taire puisse \u00eatre atteinte." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6787801094819995648,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6787801095310729217,urn:li:activity:6787801095310729217,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 82, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6787801095310729217,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6787801095310729217,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6787801095310729217", + "threadId": "activity:6787801095310729217", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6787801095310729217", + "urn": "urn:li:activity:6787801095310729217", + "numComments": 129, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6787801095310729217", + "reactionTypeCounts": [ + { + "count": 1398, + "reactionType": "LIKE" + }, + { + "count": 116, + "reactionType": "MAYBE" + }, + { + "count": 114, + "reactionType": "INTEREST" + }, + { + "count": 29, + "reactionType": "PRAISE" + }, + { + "count": 13, + "reactionType": "EMPATHY" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6787801095310729217", + "numLikes": 1678, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6787801095310729217", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1678, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6787618364693983232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6787618364693983232", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6787618364693983232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6787618364693983232)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-d%C3%A9g%C3%A2ts-du-nouvel-%C3%A9pisode-de-gel-relancent-activity-6787618364693983232-IsYW?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6787618364157136896", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6787618364693983232", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6787618364693983232,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6787618364693983232,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6787618364157136896", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "qqC3miWBL7hm+I9FX7ft3A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6787618364693983232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8016219286490138351", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675564621856?e=1677240000&v=beta&t=Ee4BnMxElDAZeq-7OKRvkWJEwlG7SAO1qwzxByTm-vo", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675564621857?e=1677240000&v=beta&t=o3bhndRuGwLqqP8UgP8Nkg3aORj-lGj-l7ym-VsMFps", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675564621857?e=1677240000&v=beta&t=c2Zj8QiJutWdJ10F5fzOCJk9Hi6a4NPV1b1V_Jdz0Fs", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675564621857?e=1677240000&v=beta&t=erCdqbfG5itSxcZWOHOEOMx6zBoUoKTMOOfA6Tt0YfU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEhQFFUo5y-Sg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8016219286490138351)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8016219286490138351)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les d\u00e9g\u00e2ts du nouvel \u00e9pisode de gel relancent la question des assurances agricoles by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/pme-regions/actualite-pme/les-degats-du-nouvel-episode-de-gel-relancent-la-question-des-assurances-agricoles-1305881" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les d\u00e9g\u00e2ts du nouvel \u00e9pisode de gel relancent la question des assurances agricoles" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6787618364157136896,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le r\u00e9chauffement climatique aggrave les d\u00e9g\u00e2ts dus au gel. Comment expliquer un tel paradoxe ? Avec des hivers globalement plus doux (et des temp\u00e9ratures tr\u00e8s \u00e9lev\u00e9es en mars cette ann\u00e9e), la v\u00e9g\u00e9tation d\u00e9marre plus t\u00f4t. A ce moment, un \u00e9pisode de gel \"normal pour la saison\" (rappelez vous que \"en avril ne te d\u00e9couvre pas d'un fil\") arrive sur des fleurs sorties plus t\u00f4t, et voici la fin des fruits pour l'ann\u00e9e.\n\nCela n'\u00e9tonnera personne que dans un journal \u00e9conomique on voit avant tout l'affaire sous l'angle des indemnisations. C'est \u00e9videmment n\u00e9cessaire pour les agriculteurs concern\u00e9s. Mais l'argent ne se mange pas ! Et les assurances seront impuissantes \u00e0 compenser les pertes de production agricole si ces derni\u00e8res deviennent amples \u00e0 cause de la d\u00e9rive climatique... " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6787618364157136896,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6787618364693983232,urn:li:activity:6787618364693983232,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 93, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6787618364693983232,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6787618364693983232,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6787618364693983232", + "threadId": "activity:6787618364693983232", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6787618364693983232", + "urn": "urn:li:activity:6787618364693983232", + "numComments": 192, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6787618364693983232", + "reactionTypeCounts": [ + { + "count": 1681, + "reactionType": "LIKE" + }, + { + "count": 146, + "reactionType": "INTEREST" + }, + { + "count": 143, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "PRAISE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6787618364693983232", + "numLikes": 2005, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6787618364693983232", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2005, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6787463361903792128,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6787463361903792128", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6787463361903792128)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6787463361903792128)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lexpress-on-twitter-activity-6787463361903792128-1H-v?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6787463361488556032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6787463361903792128", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6787463361903792128,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6787463361903792128,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6787463361488556032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "N0vdLsup0xN5wINaiLoXAw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6787463361903792128,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8994197259867359062", + "swapTitleAndSubtitle": false, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8994197259867359062)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8994197259867359062)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "twitter.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: L'Express on Twitter by twitter.com", + "actionTarget": "https://twitter.com/LEXPRESS/status/1381601447775719425" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\u201cSONDAGE. A votre avis, quelle part des \u00e9tudiants du sup\u00e9rieur sont d\u00e9sormais form\u00e9s sur le sujet \u00e9nergie/climat dans le cadre de leur cursus ?\u201d" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "L'Express on Twitter" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6787463361488556032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Petit sondage qui pr\u00e9c\u00e8de ma prochaine chronique dans l'Express : \"A votre avis, quelle part des \u00e9tudiants du sup\u00e9rieur sont d\u00e9sormais form\u00e9s sur le sujet \u00e9nergie/climat dans le cadre de leur cursus ?\"\n\nJe vous laisse deviner la probable bonne r\u00e9ponse !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6787463361488556032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6787463361903792128,urn:li:activity:6787463361903792128,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 57, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6787463361903792128,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6787463361903792128,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6787463361903792128", + "threadId": "activity:6787463361903792128", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6787463361903792128", + "urn": "urn:li:activity:6787463361903792128", + "numComments": 83, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6787463361903792128", + "reactionTypeCounts": [ + { + "count": 78, + "reactionType": "LIKE" + }, + { + "count": 8, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "INTEREST" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6787463361903792128", + "numLikes": 94, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6787463361903792128", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 94, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6787339033451237376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6787339033451237376", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6787339033451237376)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6787339033451237376)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_financial-world-greenwashing-the-public-with-activity-6787339033451237376-8r-r?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6787339032771756032", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6787339033451237376", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6787339033451237376,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6787339033451237376,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6787339032771756032", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "wIfU9bn+VKt1hRUdeBkQQA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6787339033451237376,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7671224462399682175", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676295517574?e=1677240000&v=beta&t=83jhENj-dQRnHS_YJVpO4JiFDVhi4MXoKyn1lHQFu38", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676295517574?e=1677240000&v=beta&t=NpvhXnRo_mShnjaG_m01JzHg_DybnsgbkJT3k7m_4GU", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676295517575?e=1677240000&v=beta&t=3SbsNkD29PG3nKLDCHTvPDIj_2fmPPpaN0G9m7Kftps", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676295517575?e=1677240000&v=beta&t=4VPG1Tc3zBEYH_pePeXIEviOBQ39oDzmmQUUKXIY7Lk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHcq9Lkgi0ozg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7671224462399682175)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7671224462399682175)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "usatoday.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Financial world greenwashing the public with deadly distraction in sustainable investing practices by amp-usatoday-com.cdn.ampproject.org", + "actionTarget": "https://amp-usatoday-com.cdn.ampproject.org/c/s/amp.usatoday.com/amp/6948923002" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Financial world greenwashing the public with deadly distraction in sustainable investing practices" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6787339032771756032,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tariq Fancy, ex Chief Investment Officer for Sustainable Investing chez BlackRock, plus gros gestionnaire d'actifs mondial, \u00e9crit que, avec le recul du temps, il s'est tromp\u00e9 en voyant l'investissement socialement responsable comme un premier pas utile, alors que c'est en fait une diversion \"mortelle\". L'auteur est peut-\u00eatre ingrat, mais il met le doigt l\u00e0 o\u00f9 ca fait mal.\n\nL'essence m\u00eame du m\u00e9tier de financier est de \"faire de l'argent\". Derri\u00e8re le gestionnaire d'actifs, se trouve in fine l'\u00e9pargnant ou le retrait\u00e9 qui regarde avant tout \"ce que ca rapporte\". Si plus d'environnement c'est moins d'argent, ce qui sera souvent le cas, comment esp\u00e9rer une bascule en masse ? \n\nC'est pour cela que trop de m\u00e9thodes ou d'engagements du secteur financier rev\u00eatent d'habits tout verts une r\u00e9alit\u00e9 sous-jacente qui est rest\u00e9e identique : le but n'est pas de changer, mais de rassurer. L'attention sera attir\u00e9e ici sur des investissements marginaux, l\u00e0 sur des engagements de principe non contraignants en pratique, etc.\n\nSeule la puissance publique peut agir \u00e0 la bonne \u00e9chelle, plaide l'auteur. Il a raison : \"s'aligner \u00e0 2\u00b0C\", c'est en pratique baisser les rendements, car la croissance verte n'existe pas. Il est peu probable que le secteur dans son ensemble le fasse volontairement." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6787339032771756032,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6787339033451237376,urn:li:activity:6787339033451237376,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 57, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6787339033451237376,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6787339033451237376,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6787339033451237376", + "threadId": "activity:6787339033451237376", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6787339033451237376", + "urn": "urn:li:activity:6787339033451237376", + "numComments": 84, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6787339033451237376", + "reactionTypeCounts": [ + { + "count": 915, + "reactionType": "LIKE" + }, + { + "count": 129, + "reactionType": "INTEREST" + }, + { + "count": 109, + "reactionType": "MAYBE" + }, + { + "count": 28, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6787339033451237376", + "numLikes": 1190, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6787339033451237376", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1190, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6787314916631052288,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1024481", + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "G03D19KVTReJmxz8ED6rPA==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "G03D19KVTReJmxz8ED6rPA==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Carbone 4", + "actionTarget": "https://www.linkedin.com/company/carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1024481" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "118,673 followers" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6785540833920749568,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6785540833920749568", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6785540833920749568)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6785540833920749568)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/carbone-4_la-carbone-4-acad%C3%A9mie-inaugure-une-nouvelle-activity-6785540833920749568-9iJF?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6785540832989609984", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1024481", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6785540833920749568,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6785540833920749568,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6785540832989609984", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "eAQab7xOj1d6hhe/IbTtBw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6785540833920749568,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHRBMDSVKeTyg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHRBMDSVKeTyg", + "artifacts": [ + { + "width": 1080, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1617799002391?e=1679529600&v=beta&t=u6O9VjkQra5fkc2kr_LnjZL8Be4CIDoHnHujDhvf9Bs", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1617799002381?e=1679529600&v=beta&t=TahltUxiZZe2ML8ehz-KvnI0tqfAHkzv2qmuOloVrG4", + "expiresAt": 1679529600000, + "height": 20 + }, + { + "width": 1080, + "fileIdentifyingUrlPathSegment": "1280/0/1617799002381?e=1679529600&v=beta&t=_cCJSksf09ipcBMPCMsQKvnlVV2jd3Iycv69HImXvBY", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1617799002381?e=1679529600&v=beta&t=uGtBFElSLNzm6ftoyoAViYCBQaYt55oatHT2DKBjHzM", + "expiresAt": 1679529600000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1617799002381?e=1679529600&v=beta&t=lQ9TrpnrJ9j6r0G_I-hmGd4WKIDAnmPREuFPjxBVHjU", + "expiresAt": 1679529600000, + "height": 160 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1617799002381?e=1679529600&v=beta&t=jKV-Jy-0PObYtQJ-tPCDBeTWCjL1qNPFtJPVCuMSh0Y", + "expiresAt": 1679529600000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHRBMDSVKeTyg/feedshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "graphical user interface, application" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6785540832989609984,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La Carbone 4 Acad\u00e9mie inaugure une nouvelle session de sa formation 100% en ligne \u00ab Climat & Entreprises \u00bb. \n\n\u2705 Dispens\u00e9s par les \u00e9quipes de Carbone 4, en direct, 12h de contenus in\u00e9dits pour mieux comprendre et mieux agir dans votre entreprise face au changement climatique. Les inscriptions pour cette nouvelle session qui se d\u00e9roulera du 11 mai au 8 juin sont d\u00e9sormais ouvertes (chaque mardi et jeudi de 9h \u00e0 10h30, hors jours f\u00e9ri\u00e9s). \n\nAttention, le nombre de places est limit\u00e9 !\n\n\ud83d\udc49 Pour vous inscrire : shorturl.at/ablvD\n\ud83d\udc49 Pour en savoir plus sur le contenu : https://lnkd.in/dfj4B5r \n\ud83d\udc49 Pour toute question : https://lnkd.in/d-Q6CWw \n\nContact : formation@carbone4.com" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6785540832989609984,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6785540833920749568,urn:li:activity:6785540833920749568,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 3, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6785540833920749568,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6785540833920749568,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6785540833920749568", + "threadId": "activity:6785540833920749568", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6785540833920749568", + "urn": "urn:li:activity:6785540833920749568", + "numComments": 3, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6785540833920749568", + "reactionTypeCounts": [ + { + "count": 89, + "reactionType": "LIKE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6785540833920749568", + "numLikes": 99, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6785540833920749568", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 99, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6787314916631052288", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6787314916631052288)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6787314916631052288)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-carbone-4-acad%C3%A9mie-inaugure-une-nouvelle-activity-6787314916631052288-LiYz?utm_source=share&utm_medium=member_desktop" + }, + { + "subActionsMenu": { + "title": "Who would you like to unfollow?", + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + } + ] + }, + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_ACTIONS", + "text": "Unfollow" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6787314916274532353", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6787314916631052288", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6787314916631052288,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6787314916631052288,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6787314916274532353", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "eAQab7xOj1d6hhe/IbTtBw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6787314916631052288,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6787314916274532353,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans un (modeste mais r\u00e9el) effort pour diffuser la compr\u00e9hension de l'enjeu climatique au sein du monde \u00e9conomique, la Carbone 4 Academie propose une nouvelle \u00e9dition de son cours en ligne \"Climat et Entreprises\". Tous les d\u00e9tails pour s'inscrire figurent ci-dessous." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6787314916274532353,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6787314916631052288,urn:li:activity:6787314916631052288,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 8, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6787314916631052288,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6787314916631052288,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6787314916631052288", + "threadId": "activity:6787314916631052288", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6787314916631052288", + "urn": "urn:li:activity:6787314916631052288", + "numComments": 10, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6787314916631052288", + "reactionTypeCounts": [ + { + "count": 79, + "reactionType": "LIKE" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6787314916631052288", + "numLikes": 85, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6787314916631052288", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 85, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6787043548601561088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6787043548601561088", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6787043548601561088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6787043548601561088)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_oxy-unit-delivers-first-shipment-of-co2-neutral-activity-6787043548601561088-lbcU?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6787043548077285376", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6787043548601561088", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6787043548601561088,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6787043548601561088,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6787043548077285376", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "ROBgUrpqRpqa7X/XMnwvog==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6787043548601561088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8220675435795835813", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 636, + "fileIdentifyingUrlPathSegment": "800/0/1676054707111?e=1677240000&v=beta&t=z2c74CKMVIIaJq9qC3EcYPN_scjG0bjRl9eOb5xf8pM", + "expiresAt": 1677240000000, + "height": 370 + }, + { + "width": 636, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676054707111?e=1677240000&v=beta&t=B-QYrq4OBT_03lhmrGr889wG7w1091B-svQh84BHrMk", + "expiresAt": 1677240000000, + "height": 370 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676054707112?e=1677240000&v=beta&t=NNX6tBOqz5wINPeJ5-8DHWzHtnehASILrRFoi9A4ry4", + "expiresAt": 1677240000000, + "height": 93 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676054707112?e=1677240000&v=beta&t=fT_erTtfJg5M-aoSzOiv7C--6a4iFkpma0zD-jw1wwQ", + "expiresAt": 1677240000000, + "height": 279 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHUQYV3J23ikw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5817610062893082 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8220675435795835813)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8220675435795835813)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ihsmarkit.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Oxy unit delivers first shipment of CO2-neutral oil to India by ihsmarkit.com", + "actionTarget": "https://ihsmarkit.com/research-analysis/oxy-low-carbon-ventures-delivers-first-shipment-of-co2neutral-.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Oxy unit delivers first shipment of CO2-neutral oil to India" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6787043548077285376,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 873, + "length": 16, + "miniProfile": { + "firstName": "Isabelle", + "lastName": "Lambert", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAR4UK4BdXxjYvsjApLusQM9ShJxsxbll_w", + "occupation": "Corporate sustainability fostering the energy transition", + "objectUrn": "urn:li:member:74993838", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAR4UK4BdXxjYvsjApLusQM9ShJxsxbll_w", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1579083494430?e=1681948800&v=beta&t=juOArmoBYj24sJP4XY0XkHTaJbs88DYSbPHr9ELeX0o", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1579083494430?e=1681948800&v=beta&t=jro5aEO_6YFZA2pl2QG-r4wLZz8N_B6uRKyDb5xnBkg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQHc1498r91zsA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "lambertisabelle", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1674065716712?e=1677240000&v=beta&t=_nM8KuXpsCQ8RxUAofZwQIuoSbAd2y-O1VSQCjUEyls", + "expiresAt": 1677240000000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1674065716712?e=1677240000&v=beta&t=diM0G3TD8oDFiA91rzxvrpeOWZTxhDUPPV8uxHaOk30", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1674065716712?e=1677240000&v=beta&t=qFOMH_YXrQuStXaKx_lpUAY6N5i8Uw6ST9JhbEUroew", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1674065716712?e=1677240000&v=beta&t=SQULFdENFFtLd0izHyuYC4zHVaFiCCPVRrLQiJXfCZQ", + "expiresAt": 1677240000000, + "height": 100 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4D35AQF-WtP2MR4uhg/profile-framedphoto-shrink_" + } + }, + "trackingId": "o1CwcRQ0RPi8a1Uro6HNsA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "S'il n'y avait qu'une seule raison pour laquelle les entreprises devrait imm\u00e9diatement renoncer \u00e0 se revendiquer neutres, \u00e0 grand coup de \"compensation\", la voici : ca serait juste pour ne pas se retrouver rang\u00e9es dans la m\u00eame cat\u00e9gorie que... une entreprise qui propose du p\u00e9trole neutre.\n\nNon non, vous ne r\u00eavez pas, Oxy Low Carbon Ventures a livr\u00e9... du p\u00e9trole neutre. Du p\u00e9trole de roche m\u00e8re, pour \u00eatre pr\u00e9cis. Cela fait partie des efforts d'Occidental Petroleum pour prendre en compte le sujet climat. Mais quand on regarde la production que cette compagnie pr\u00e9voit d'avoir pour les d\u00e9cennies \u00e0 venir (graphique en commentaire), on ne peut pas vraiment dire qu'ils mettent la p\u00e9dale douce ! \n\nAlors, la question se pose : les entreprises qui revendiquent une \"neutralit\u00e9 individuelle\" ont-elles vraiment envie d'avoir ce genre de comportement pour mod\u00e8le ?\n\nMerci \u00e0 Isabelle Lambert qui a d\u00e9got\u00e9 cette perle !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6787043548077285376,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6787043548601561088,urn:li:activity:6787043548601561088,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 64, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6787043548601561088,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6787043548601561088,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6787043548601561088", + "threadId": "activity:6787043548601561088", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6787043548601561088", + "urn": "urn:li:activity:6787043548601561088", + "numComments": 100, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6787043548601561088", + "reactionTypeCounts": [ + { + "count": 708, + "reactionType": "LIKE" + }, + { + "count": 119, + "reactionType": "MAYBE" + }, + { + "count": 80, + "reactionType": "INTEREST" + }, + { + "count": 14, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6787043548601561088", + "numLikes": 929, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6787043548601561088", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 929, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6786693659640258560,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6786693659640258560", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6786693659640258560)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6786693659640258560)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_tout-comme-il-a-%C3%A9t%C3%A9-%C3%A0-lorigine-du-d%C3%A9collage-activity-6786693659640258560-GHHq?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6786693658923028480", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6786693659640258560", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6786693659640258560,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6786693659640258560,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6786693658923028480", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "nV14ksVvN6/ZZaktlpF+IA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6786693659640258560,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHdExq7ejNRbg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHdExq7ejNRbg", + "artifacts": [ + { + "width": 1522, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1618073856625?e=1679529600&v=beta&t=-QwDPXtLJBGmN5lrQdYaWenXg9KIrhTyCFmksbEeelo", + "expiresAt": 1679529600000, + "height": 804 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1618073857732?e=1679529600&v=beta&t=vzJkxN3OsPQ8wd_otaAgaKH6LEkXxYF-yJCjmfeMJYM", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1618073857732?e=1679529600&v=beta&t=Rt0Ph7P0vctsBGq7GYrub8pfxexdfN1dHI1dAdLCeew", + "expiresAt": 1679529600000, + "height": 676 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1618073857732?e=1679529600&v=beta&t=yyt2xKwq8DqjobbWua5KImt6ba1NGShomVKwXLywFd0", + "expiresAt": 1679529600000, + "height": 254 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1618073857732?e=1679529600&v=beta&t=EapklgbHcdbhOyKSfft4jh33XtrFQulrHN2P0Km4djY", + "expiresAt": 1679529600000, + "height": 85 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1618073857732?e=1679529600&v=beta&t=hulqsnjguJr0mAxHu6EqwllpawxHMiIVfWzGE9VfdSA", + "expiresAt": 1679529600000, + "height": 423 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHdExq7ejNRbg/feedshare-shrink_" + }, + "displayAspectRatio": 0.5282522996057819 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, histogram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6786693658923028480,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tout comme il a \u00e9t\u00e9 \u00e0 l'origine du d\u00e9collage industriel de l'Europe puis des USA, le charbon a ensuite largement contribu\u00e9 \u00e0 celui de la Chine. Et ce n'est malheureusement pas fini. Dans son dernier rapport, l'ONG Global Energy Monitor indique que, en 2020, c'est l'Empire du Milieu, qui par ailleurs concentre \u00e0 peu pr\u00e8s la moiti\u00e9 de la capacit\u00e9 mondiale, qui a effectu\u00e9 les 3/4 des nouvelles mises en service : https://lnkd.in/dAxUTct\n\nLe m\u00eame rapport \u00e9voque 180 GW de capacit\u00e9s en construction dans le monde (le parc install\u00e9 est de l'ordre de 2200 GW) et pr\u00e8s du double (323 GW) de capacit\u00e9s annonc\u00e9es, ou en demande de licence, ou autoris\u00e9es mais dont la construction n'a pas encore d\u00e9marr\u00e9.\n\nQuestion climat, clairement nous n'y sommes pas encore. Mais les acteurs financiers occidentaux ont beau jeu de dire qu'ils en sortent : de toute fa\u00e7on, c'est en Asie que ca se passe, dans des pays qui leur sont peu accessibles (Chine, Inde, et dans une moindre mesure Indon\u00e9sie, Vietnam, Philippines, Bangladesh). Aux USA et en Europe, il n'y a quasiment plus de nouveaux projets, mais beaucoup de fermetures.\n\nSi nous, occidentaux, souhaitons que les pays concern\u00e9s arr\u00eatent de rajouter des centrales \u00e0 charbon, \u00e0 part r\u00e2ler, ce qui ne sert manifestement pas \u00e0 grand chose, que pouvons nous faire ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6786693658923028480,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6786693659640258560,urn:li:activity:6786693659640258560,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 52, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6786693659640258560,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6786693659640258560,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6786693659640258560", + "threadId": "activity:6786693659640258560", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6786693659640258560", + "urn": "urn:li:activity:6786693659640258560", + "numComments": 98, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6786693659640258560", + "reactionTypeCounts": [ + { + "count": 243, + "reactionType": "LIKE" + }, + { + "count": 33, + "reactionType": "MAYBE" + }, + { + "count": 33, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6786693659640258560", + "numLikes": 313, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6786693659640258560", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 313, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6786626065382043648,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6786626065382043648", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6786626065382043648)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6786626065382043648)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_la-crise-ou-pas-de-latome-activity-6786626065382043648-oHZf?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6786626064778072064", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6786626065382043648", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6786626065382043648,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6786626065382043648,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6786626064778072064", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "T8WT/LwcjQAqI45tL+/hng==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6786626065382043648,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7595390787750741340", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 569, + "fileIdentifyingUrlPathSegment": "800/0/1676433515870?e=1677240000&v=beta&t=HrGnv4FWUT9nIIMTPAoCc9VTGn2uxD93e1z7ODtDCn4", + "expiresAt": 1677240000000, + "height": 495 + }, + { + "width": 569, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676433515870?e=1677240000&v=beta&t=wxAJ7Zdc68yDU5QCqY713S3jr2_BMnNA3SuelV7q1K8", + "expiresAt": 1677240000000, + "height": 495 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676433515870?e=1677240000&v=beta&t=kjozxR30BBWtZ9DF643Hdvq9QPjbjP-iBjpSq-Xlnzo", + "expiresAt": 1677240000000, + "height": 139 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676433515870?e=1677240000&v=beta&t=yC266bAeqw6CKThXmLtqwq-TvDNm06KPNpmUDCbzgoQ", + "expiresAt": 1677240000000, + "height": 418 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGFQOOeBqPymg/articleshare-shrink_" + }, + "displayAspectRatio": 0.8699472759226714 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7595390787750741340)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7595390787750741340)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lemonde.fr \u2022 10 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: La crise (ou pas) de l\u2019atome by lemonde.fr", + "actionTarget": "https://www.lemonde.fr/blog/huet/2021/03/29/la-crise-ou-pas-de-latome/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "La crise (ou pas) de l\u2019atome" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6786626064778072064,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le nucl\u00e9aire civil est-il en train de vivre sa fin, \"torpill\u00e9\" par des ENR de moins en moins ch\u00e8res, et des difficult\u00e9s qui ne cessent de s'accumuler au-dessus de sa t\u00eate ?\n\nJe ne sais pas si c'est effectivement son origine, mais Sylvestre Huet endosse des habits de normand, dans ce panorama qui regarde le monde dans son ensemble, pour dire \"ca d\u00e9pend de quoi on parle\". Pendant que cette forme de production augmente tr\u00e8s rapidement ici, elle d\u00e9cline l\u00e0 ; pendant que des chantiers s'enlisent ici, ils sont termin\u00e9s en 5 ans l\u00e0 ; pendant que certains pays consid\u00e8rent que la sortie de l'atome est la priorit\u00e9 de leur politique \u00e9nerg\u00e9tique, d'autres pays voudraient le voir qualifi\u00e9 de \"vert\". Le bilan global sera donc ce que chacun a envie d'y voir.\n\nSylvestre en profite pour, au passage, proposer quelques digressions, qui ne sont pas propres au nucl\u00e9aire, sur l'expertise, ou la confusion entre faits et opinions. Instructif, comme toujours." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6786626064778072064,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6786626065382043648,urn:li:activity:6786626065382043648,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 14, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6786626065382043648,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6786626065382043648,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6786626065382043648", + "threadId": "activity:6786626065382043648", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6786626065382043648", + "urn": "urn:li:activity:6786626065382043648", + "numComments": 30, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6786626065382043648", + "reactionTypeCounts": [ + { + "count": 295, + "reactionType": "LIKE" + }, + { + "count": 31, + "reactionType": "INTEREST" + }, + { + "count": 28, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6786626065382043648", + "numLikes": 359, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6786626065382043648", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 359, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6786346580044718080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6786346580044718080", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6786346580044718080)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6786346580044718080)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-march%C3%A9-du-v%C3%A9lo-%C3%A9lectris%C3%A9-par-la-crise-activity-6786346580044718080-lQhX?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6786346579591733249", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6786346580044718080", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6786346580044718080,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6786346580044718080,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6786346579591733249", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "Z9mYe7bxk53ypg/moPbUcA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6786346580044718080,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8471552325674688919", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "shrink_800/0/1675844749533?e=1677240000&v=beta&t=uUHbrGiQmoiyJbbx2-UaE-zk6LK6RkRZVJH7ODeaifI", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 624, + "fileIdentifyingUrlPathSegment": "proxy-image-offsite-ads_350_624/0/1675844749544?e=1677240000&v=beta&t=Jxmju5JuOO1jQ4aWTHVP5UXXqngQGkYBCIlHqq56vas", + "expiresAt": 1677240000000, + "height": 350 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "shrink_1280_800/0/1675844749533?e=1677240000&v=beta&t=3NnRLkWfJQr6srIsGh7CIOQlp69cw-cxfmAKibQAhfI", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "shrink_160/0/1675844749533?e=1677240000&v=beta&t=nB7gZyJaTreJCZ1l4G8PHsmV8LqLdRDAGXqL9sDwESU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "shrink_480/0/1675844749533?e=1677240000&v=beta&t=w5_0apUNM7ruGllN6gFWdbIi2NLk0jugTG34W7o-WxQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEHGV2_Wh1W3g/articleshare-" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8471552325674688919)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8471552325674688919)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le march\u00e9 du v\u00e9lo \u00e9lectris\u00e9 par la crise sanitaire by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/tourisme-transport/le-marche-du-velo-electrise-par-la-crise-sanitaire-1305271" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le march\u00e9 du v\u00e9lo \u00e9lectris\u00e9 par la crise sanitaire" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6786346579591733249,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Tous \u00e0 v\u00e9lo ! Le march\u00e9 a cru de 25% en valeur (mais de 2% en volume), tir\u00e9 par l'\u00e9lectrique qui a augment\u00e9 de 30%. Au sein de cette cat\u00e9gorie certains mod\u00e8les font mieux encore, le v\u00e9lo-cargo voyant ses ventes multipli\u00e9es par presque 5.\n\nMais sur 2,7 millions de cycles vendus, 2 millions sont import\u00e9s. Il y a l\u00e0 un sujet de r\u00e9industrialisation \u00e9vident, non ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6786346579591733249,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6786346580044718080,urn:li:activity:6786346580044718080,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 122, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6786346580044718080,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6786346580044718080,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6786346580044718080", + "threadId": "activity:6786346580044718080", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6786346580044718080", + "urn": "urn:li:activity:6786346580044718080", + "numComments": 212, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6786346580044718080", + "reactionTypeCounts": [ + { + "count": 1822, + "reactionType": "LIKE" + }, + { + "count": 70, + "reactionType": "MAYBE" + }, + { + "count": 67, + "reactionType": "INTEREST" + }, + { + "count": 37, + "reactionType": "PRAISE" + }, + { + "count": 21, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6786346580044718080", + "numLikes": 2033, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6786346580044718080", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2033, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6786148284248399872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6786148284248399872", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6786148284248399872)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6786148284248399872)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_c%C3%A9dric-villani-linformatique-durable-activity-6786148284248399872-BXmi?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6786148283560562689", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6786148284248399872", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6786148284248399872,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6786148284248399872,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6786148283560562689", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "gBH6VdcpB/0t1WJ4RpjOTg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6786148284248399872,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7774279255309824485", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676290400901?e=1677240000&v=beta&t=nAflcpMLWQH8XweI-sJoc-yjDkIoFWH6uProBa3XvPM", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676290400901?e=1677240000&v=beta&t=3ujAF3PbjhGf41tKgWKc4B6NvTB2HeN8tsSWnbQ9gos", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676290400901?e=1677240000&v=beta&t=83XAgMjyEzCQaQQoi_qfGJ0_PT8zMxWBmZ7kF_v9vGU", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676290400901?e=1677240000&v=beta&t=HXOuwdYL0uOszag6_sQfmVAqK1LxCeqOZPcHOnuW9sY", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQG6dRWwqUQZyQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7774279255309824485)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7774279255309824485)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "liberation.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: C\u00e9dric Villani : \u00abL\u2019informatique durable n\u2019existe pas encore\u00bb by liberation.fr", + "actionTarget": "https://www.liberation.fr/forums/cedric-villani-linformatique-durable-nexiste-pas-encore-20210406_NJAGNFEJ2RFCVMDNYNW6LXRZDY/?outputType=amp" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "C\u00e9dric Villani\u00a0: \u00abL\u2019informatique durable n\u2019existe pas encore\u00bb" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6786148283560562689,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 14, + "miniProfile": { + "firstName": "C\u00e9dric", + "lastName": "Villani", + "dashEntityUrn": "urn:li:fsd_profile:ACoAACwgi2EBdbX4IrBozglMb9vl1cZbfkIES6M", + "occupation": "Math\u00e9maticien et ancien d\u00e9put\u00e9", + "objectUrn": "urn:li:member:740330337", + "entityUrn": "urn:li:fs_miniProfile:ACoAACwgi2EBdbX4IrBozglMb9vl1cZbfkIES6M", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1655795547070?e=1681948800&v=beta&t=F9z__nGVI9eeK22vLZeBQLEGLfDFatNb8B7ebCciNWE", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1655795547070?e=1681948800&v=beta&t=rWqT5r72tqcwGSdty8MKiLYgjvA22NlIg4-YUEfSqVg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQHZPtOF_ZQOoA/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "c\u00e9dric-villani", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1655325391254?e=1681948800&v=beta&t=V6FXulgH2mqEGaZrX6tfC2fk2cuF0RSMugjI_-kBtMk", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1655325391254?e=1681948800&v=beta&t=Q9n3drnq32gU3cbn26D-ZkcB9BZwIKglhRpOukAwsLM", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1655325391254?e=1681948800&v=beta&t=4xEfaBIz5abmPfeIM4aEqCp8zM0jBvxnshh7dR9r1Jk", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1655325391254?e=1681948800&v=beta&t=TCLa7ZYW43sf-aRLyU1OBnGXS5MhVzWIPBS9JUDjT7o", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQEeGfUe43o1Jg/profile-displayphoto-shrink_" + } + }, + "trackingId": "HZf8ojTCSx+s2jfs9G1zkA==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "C\u00e9dric Villani, d\u00e9put\u00e9 ex-LREM et d\u00e9sormais Ecologie Democratie Solidarit\u00e9 (https://lnkd.in/dAzfsZT ), pr\u00e9sident de l'Office Parlementaire d'Evaluation des Choix Scientifiques et Technologiques (https://lnkd.in/dAwA6XS ) publie une tribune dans Lib\u00e9ration appelant \u00e0 \"se mettre d'accord sur un projet de soci\u00e9t\u00e9 avant de discuter des bienfaits d'une technologie\".\n\nIl rappelle que, de fait, il est illusoire de penser que la technologie entra\u00eene spontan\u00e9ment la soci\u00e9t\u00e9 vers d'autres buts que ceux qui sont d\u00e9j\u00e0 admis. Les progr\u00e8s du digital ont favoris\u00e9 les d\u00e9localisations, la p\u00e9dopornographie, le racket, la diffusion d'informations fausses et le trading \u00e0 haute fr\u00e9quence tout autant que l'acc\u00e8s \u00e0 la science pour tou(te)s, le march\u00e9 de la seconde main, la gestion des b\u00e2timents, l'imagerie m\u00e9dicale et l'information voyageurs. Et les nouveaut\u00e9s techniques \u00e0 venir n'ont aucune raison de changer la donne.\n\n\"La technologie ne nous d\u00e9douane pas des durs choix politiques\" \u00e9crit-il. Tout ce qui est digitalement possible n'est donc pas n\u00e9cessairement \"humainement\" souhaitable..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6786148283560562689,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6786148284248399872,urn:li:activity:6786148284248399872,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 178, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6786148284248399872,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6786148284248399872,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6786148284248399872", + "threadId": "activity:6786148284248399872", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6786148284248399872", + "urn": "urn:li:activity:6786148284248399872", + "numComments": 256, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6786148284248399872", + "reactionTypeCounts": [ + { + "count": 5036, + "reactionType": "LIKE" + }, + { + "count": 385, + "reactionType": "MAYBE" + }, + { + "count": 248, + "reactionType": "INTEREST" + }, + { + "count": 179, + "reactionType": "PRAISE" + }, + { + "count": 53, + "reactionType": "EMPATHY" + }, + { + "count": 39, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6786148284248399872", + "numLikes": 5940, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6786148284248399872", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5940, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6785929538523152385,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6785929538523152385", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6785929538523152385)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6785929538523152385)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_rendons-la-r%C3%A9novation-%C3%A9nerg%C3%A9tique-obligatoire-activity-6785929538523152385-qAn-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6785929537952735232", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6785929538523152385", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6785929538523152385,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6785929538523152385,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6785929537952735232", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "Xo7o3ZnOfrOKnUcut8ix+w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6785929538523152385,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7463835650061645384", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676607535437?e=1677240000&v=beta&t=1B6FxBLCXQyBPL4erD6LojTSZ3afxAqa-kY_-Ul7zH0", + "expiresAt": 1677240000000, + "height": 420 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676607535437?e=1677240000&v=beta&t=N5oYYHx7e_W8G9IwQeEOiubtOn0jNwwbK9VW8KnNT2U", + "expiresAt": 1677240000000, + "height": 630 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676607535437?e=1677240000&v=beta&t=AzFALimkSf-ICTdaZjtMH1--Nn4VjOnCE2m5LNeOKmI", + "expiresAt": 1677240000000, + "height": 84 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676607535437?e=1677240000&v=beta&t=ZD-mJY5mC4wsdHCLG3C5PUzfHHtU1ivrgPbbEeGjhJI", + "expiresAt": 1677240000000, + "height": 252 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGZvYqESAWwuA/articleshare-shrink_" + }, + "displayAspectRatio": 0.525 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7463835650061645384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7463835650061645384)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "capital.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Rendons la r\u00e9novation \u00e9nerg\u00e9tique obligatoire lorsqu\u2019elle est int\u00e9ressante pour les m\u00e9nages by capital.fr", + "actionTarget": "https://www.capital.fr/immobilier/rendons-la-renovation-energetique-obligatoire-lorsquelle-est-interessante-pour-les-menages-1399362" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Rendons la r\u00e9novation \u00e9nerg\u00e9tique obligatoire lorsqu\u2019elle est int\u00e9ressante pour les m\u00e9nages" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6785929537952735232,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La plus impressionnante coalition d'acteurs jamais r\u00e9unie sur la question de la r\u00e9novation, rassemblant dirigeants d'ONG, d'entreprises, d'associations professionnelles, de collectivit\u00e9s locales, et j'en passe, publie dans Capital une lettre ouverte au pr\u00e9sident, appelant le chef de l'Etat \u00e0 faire quelque chose de s\u00e9rieux sur la r\u00e9novation \u00e9nerg\u00e9tique dans la loi climat actuellement en cours d'examen \u00e0 l'Assembl\u00e9e. \n\nLe principe : rendre la r\u00e9novation \u00e9nerg\u00e9tique obligatoire, d\u00e8s lors qu'elle est techniquement et \u00e9conomiquement pertinente pour le m\u00e9nage, aides incluses. Et pour ne pas que tout le monde fasse n'importe quoi, la tribune insiste sur un point essentiel : l'accompagnement, qui doit exister, \u00eatre au niveau, et financ\u00e9.\n\nCompte tenu de l'importance du b\u00e2timent dans la consommation d'\u00e9nergie du pays (plus de 40%), ne rien faire de s\u00e9rieux dans ce domaine, c'est aller \u00e0 l'\u00e9chec sur la transition, disent les signataires. Les chiffres leur donnent raison." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6785929537952735232,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6785929538523152385,urn:li:activity:6785929538523152385,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 71, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6785929538523152385,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6785929538523152385,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6785929538523152385", + "threadId": "activity:6785929538523152385", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6785929538523152385", + "urn": "urn:li:activity:6785929538523152385", + "numComments": 140, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6785929538523152385", + "reactionTypeCounts": [ + { + "count": 1337, + "reactionType": "LIKE" + }, + { + "count": 95, + "reactionType": "PRAISE" + }, + { + "count": 66, + "reactionType": "MAYBE" + }, + { + "count": 26, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6785929538523152385", + "numLikes": 1556, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6785929538523152385", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1556, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6785811554450337792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6785811554450337792", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6785811554450337792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6785811554450337792)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_l%C3%A9conomie-se-contracte-mais-le-prix-du-activity-6785811554450337792-DtcM?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6785811553766645760", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6785811554450337792", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6785811554450337792,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6785811554450337792,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6785811553766645760", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "t21SMhMDjWAwHzn0ZHHUFA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6785811554450337792,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFrKT6N66e24Q", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFrKT6N66e24Q", + "artifacts": [ + { + "width": 860, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1617863547890?e=1679529600&v=beta&t=w1IHusILtleYYNb4zJ6nS7FVPpNV1Svh5FaxQScB2S8", + "expiresAt": 1679529600000, + "height": 701 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1617863547807?e=1679529600&v=beta&t=v_cbdpWfBfwMy3JT3Y_LJnItVAZoJ1LjluJKnuB8ULU", + "expiresAt": 1679529600000, + "height": 16 + }, + { + "width": 860, + "fileIdentifyingUrlPathSegment": "1280/0/1617863547807?e=1679529600&v=beta&t=5iAaP03QjVDORfjXGTswCPcsAsYYXVrpHj4bSBapzys", + "expiresAt": 1679529600000, + "height": 701 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1617863547807?e=1679529600&v=beta&t=pZJ2wh-mwcvIJXkMYB7W1_zzW6d9zBHbLIWR9Uc4kws", + "expiresAt": 1679529600000, + "height": 391 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1617863547807?e=1679529600&v=beta&t=z9UVeEvvBcZz5kC_ZFSOdtwA8CBrhYpFqigUtyURyTI", + "expiresAt": 1679529600000, + "height": 130 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1617863547807?e=1679529600&v=beta&t=QSYSH2X8Q-9cgU3VAIX5LePV7Z0VK6W-Q9mLjXSvb3I", + "expiresAt": 1679529600000, + "height": 652 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFrKT6N66e24Q/feedshare-shrink_" + }, + "displayAspectRatio": 0.8151162790697675 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, histogram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6785811553766645760,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'\u00e9conomie se contracte, mais le prix du quota n\u00e9gociable (la fameuse \"tonne de CO2\") est au plus haut - https://lnkd.in/dC6ABai et le CAC 40 aussi : https://lnkd.in/dcZ7Yvz\n\nPourtant, si l'on vous avait mis, en mars 2020, dans la peau d'un d\u00e9cideur d'entreprise, probablement que bien peu d'entre vous auraient pari\u00e9 sur cette \u00e9ventualit\u00e9. Nous nous serions plut\u00f4t dit \"l'\u00e9conomie va aller mal, donc la limitation des \u00e9missions pour les sites concern\u00e9s ne sera pas vraiment une contrainte, et par ailleurs le PIB va baisser, et donc les entreprises cot\u00e9es feront de moins bonnes affaires\".\n\nPerdu ! La le\u00e7on \u00e0 tirer de cette observation, s'il en fallait une, c'est que \"l'intuition\", ca marche moyen pour pr\u00e9voir des prix de march\u00e9. Et donc tout raisonnement qui compte sur l'\u00e9volution \"esp\u00e9r\u00e9e\" des prix en question est un raisonnement risqu\u00e9.\n\nSi l'enjeu est rien moins que de conserver une plan\u00e8te \u00e0 peu pr\u00e8s en \u00e9tat de marche, ce pour quoi nous n'aurons pas deux essais, compter sur \"le march\u00e9\" est prendre un risque majeur que l'histoire se termine tr\u00e8s mal. Reste \u00e0 en convaincre les d\u00e9mocraties - et une Europe qui en est l'\u00e9manation - qui pour le moment sont encore profond\u00e9ment convaincues du contraire, quoi que nous dise le pass\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6785811553766645760,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6785811554450337792,urn:li:activity:6785811554450337792,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 22, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6785811554450337792,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6785811554450337792,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6785811554450337792", + "threadId": "activity:6785811554450337792", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6785811554450337792", + "urn": "urn:li:activity:6785811554450337792", + "numComments": 38, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6785811554450337792", + "reactionTypeCounts": [ + { + "count": 331, + "reactionType": "LIKE" + }, + { + "count": 40, + "reactionType": "INTEREST" + }, + { + "count": 31, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6785811554450337792", + "numLikes": 413, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6785811554450337792", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 413, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6785807195805114369,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6785807195805114369", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6785807195805114369)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6785807195805114369)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_faire-les-bons-choix-avec-jean-marc-jancovici-activity-6785807195805114369-Dy_3?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6785807195209535488", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6785807195805114369", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6785807195805114369,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6785807195805114369,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6785807195209535488", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "P1JfskfMnV2fIVk05BIaPw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6785807195805114369,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8915466232564401647", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 500, + "fileIdentifyingUrlPathSegment": "800/0/1675524818503?e=1677240000&v=beta&t=3EKhgMOXlU1OIqArzPGmpdzQfpjso7C8VVjgcY5-vPg", + "expiresAt": 1677240000000, + "height": 500 + }, + { + "width": 500, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675524818503?e=1677240000&v=beta&t=ndCZ_C2JNQRW048NQ3DETtYtWqh7uAVORbRKqupiaHo", + "expiresAt": 1677240000000, + "height": 500 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675524818503?e=1677240000&v=beta&t=DzKtOjQiuOvQt1PthX-MwVx_vg3V4-60XeQnXcO7iYU", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675524818503?e=1677240000&v=beta&t=fBzxg_7vnh7luDKMc3298qA8Bh-hO0RxEFnqU7xosfQ", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQHUqA478AsvCg/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8915466232564401647)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8915466232564401647)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "soundcloud.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00ab Faire les bons choix \u00bb avec Jean-Marc Jancovici, Fondateur et Pr\u00e9sident de The Shift Project by C3D by soundcloud.com", + "actionTarget": "https://soundcloud.com/c3d_podcasts/faire-les-bons-choix-jean-marc-jancovici-president-the-shift-project#t=0:00" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00ab Faire les bons choix \u00bb avec Jean-Marc Jancovici, Fondateur et Pr\u00e9sident de The Shift Project by C3D" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6785807195209535488,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Coll\u00e8ge des Directeurs du D\u00e9veloppement Durable (C3D), qui a pour objet de traiter des questions de \"durabilit\u00e9\" au sein de l'entreprise, diffuse un podcast de votre serviteur. \n\nApr\u00e8s une premi\u00e8re partie qui est tr\u00e8s standard (sur l'av\u00e8nement du monde \"moderne\" qui est du aux \u00e9nergies fossiles, et l'impossibilit\u00e9 qu'il y aura \u00e0 les remplacer 1 pour 1 par du non fossile en quelques d\u00e9cennies), viennent quelques questions (je n'ai pas le minutage !) plus propres \u00e0 l'action en entreprise. Y sont notamment \u00e9voqu\u00e9es la comptabilit\u00e9 carbone, et aussi la \"compensation\", qui est aujourd'hui l'arme atomique des entreprises revendiquant la \"neutralit\u00e9 autonome\"." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6785807195209535488,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6785807195805114369,urn:li:activity:6785807195805114369,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 8, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6785807195805114369,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6785807195805114369,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6785807195805114369", + "threadId": "activity:6785807195805114369", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6785807195805114369", + "urn": "urn:li:activity:6785807195805114369", + "numComments": 10, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6785807195805114369", + "reactionTypeCounts": [ + { + "count": 296, + "reactionType": "LIKE" + }, + { + "count": 12, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6785807195805114369", + "numLikes": 326, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6785807195805114369", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 326, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6785599466821963776,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6785599466821963776", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6785599466821963776)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6785599466821963776)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_mars-2021-tr%C3%A8s-peu-arros%C3%A9-avec-des-temp%C3%A9ratures-activity-6785599466821963776-ZX6q?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6785599466364776448", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6785599466821963776", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6785599466821963776,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6785599466821963776,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6785599466364776448", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "vr0S78DB4QI+kJnH4FvznA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6785599466821963776,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:6972964917904339146", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675650645905?e=1677240000&v=beta&t=0EMl5v1tKFSJae3QJAz9wxH09sSgJTFFCFD-2hSfmzM", + "expiresAt": 1677240000000, + "height": 579 + }, + { + "width": 1027, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675650645905?e=1677240000&v=beta&t=aO0nAzHFh1xWufnm5XvjGwY2SQGYjtXl4PwhV0_Hw6I", + "expiresAt": 1677240000000, + "height": 744 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675650645906?e=1677240000&v=beta&t=fWGP4Z15QpFHo4i22lguJzZzg7FnvTNyk_l5pbNLOXY", + "expiresAt": 1677240000000, + "height": 115 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675650645906?e=1677240000&v=beta&t=adgsnVSAUMHAd3tlEtXOfsrRL_qWO5e0iOc7FB0KWrg", + "expiresAt": 1677240000000, + "height": 347 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFbK3eZnBDWOQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.72375 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:6972964917904339146)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:6972964917904339146)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "meteofrance.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Mars 2021 : tr\u00e8s peu arros\u00e9 avec des temp\u00e9ratures tr\u00e8s contrast\u00e9es by meteofrance.com", + "actionTarget": "https://meteofrance.com/actualites-et-dossiers/actualites/climat/mars-2021-tres-peu-arrose-avec-des-temperatures-tres-contrastees" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Mars 2021\u00a0: tr\u00e8s peu arros\u00e9 avec des temp\u00e9ratures tr\u00e8s contrast\u00e9es" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6785599466364776448,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Une semaine apr\u00e8s des records de chaud en mars (https://lnkd.in/dV75A6e ), notre pays enregistre des records de froid pour avril (https://lnkd.in/d-MpHT8 ) : sans conna\u00eetre ici un \"\u00e9pisode texan\", les conditions m\u00e9t\u00e9orologiques jouent aussi au yoyo, mais on sait d\u00e9sormais que dans le cadre de la d\u00e9rive climatique cela n'a rien d'\u00e9tonnant.\n\nDans le m\u00eame registre, apr\u00e8s un hiver exceptionnellement pluvieux, mars a \u00e9t\u00e9 tr\u00e8s sec sur une large partie du pays, avec moins de la moiti\u00e9 de la normale, notamment dans le sud. \n\nL'arriv\u00e9e des \"beaux jours\" signifie d\u00e9sormais, de plus en plus souvent, l'arriv\u00e9e des s\u00e9cheresses. Et, comme nos anc\u00eatres, on s'en remettra au ciel en priant pour que l'\u00e9t\u00e9 ne soit pas trop m\u00e9chant... en ne ma\u00eetrisant pas toute la situation !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6785599466364776448,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6785599466821963776,urn:li:activity:6785599466821963776,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 11, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6785599466821963776,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6785599466821963776,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6785599466821963776", + "threadId": "activity:6785599466821963776", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6785599466821963776", + "urn": "urn:li:activity:6785599466821963776", + "numComments": 26, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6785599466821963776", + "reactionTypeCounts": [ + { + "count": 247, + "reactionType": "LIKE" + }, + { + "count": 25, + "reactionType": "MAYBE" + }, + { + "count": 24, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6785599466821963776", + "numLikes": 298, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6785599466821963776", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 298, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6785446962389913600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6785446962389913600", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6785446962389913600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6785446962389913600)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_loi-climat-lassembl%C3%A9e-renforce-la-vigilance-activity-6785446962389913600-has9?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6785446961806888960", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6785446962389913600", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6785446962389913600,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6785446962389913600,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6785446961806888960", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "LcsIHyzA3pbAlr6iU8ZBdA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6785446962389913600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7918243703309465089", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675664197665?e=1677240000&v=beta&t=wS3YlXpvmyx3OHafOWV4b0-cd59JD6T_NFEYpd-J5mA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675664197665?e=1677240000&v=beta&t=3DQqVVtFZ0DhiqX5lFojVM6vV_8awGaP3n_SHYIXYzw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675664197665?e=1677240000&v=beta&t=N4B5eVVK9iXftfYb7WWeeKbOD8PFPxfMiP4fsHNIyGY", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675664197665?e=1677240000&v=beta&t=DcJZfkl-Da1_dm76dSjNF8rOWoFsCSsY5JMjQLsuoOA", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFFW2W4ENFgqg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7918243703309465089)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7918243703309465089)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Loi climat : l'Assembl\u00e9e renforce la vigilance sur la publicit\u00e9 by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/politique-societe/gouvernement/loi-climat-lassemblee-renforce-la-vigilance-sur-la-publicite-1304253" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Loi climat\u00a0: l'Assembl\u00e9e renforce la vigilance sur la publicit\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6785446961806888960,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La loi climat pr\u00e9voit une augmentation des contraintes pour \u00e9viter les campagnes publicitaires qui comprendraient des all\u00e9gations environnementales trompeuses. V\u00e9ritable avanc\u00e9e, ou pas ?\n\nLe Diable sera, comme toujours, dans les d\u00e9tails. Notons d'abord l'impossible normalisation du terme \"trompeur\". En pratique, tout slogan publicitaire est soit r\u00e9ducteur (difficile d'\u00eatre exhaustif avec un slogan de quelques secondes), soit survendeur (c'est m\u00eame \u00e0 cela qu'il sert), donc n\u00e9cessairement un peu trompeur. D\u00e8s lors, o\u00f9 sera mis le curseur ? \n\nEnsuite, qui sera charg\u00e9 de rep\u00e9rer et instruire les manquements ? Si c'est le juge \"ordinaire\", le bagage technique pour appr\u00e9cier combien l'annonceur exag\u00e8re lui fera souvent d\u00e9faut. Si c'est une instance sp\u00e9cialis\u00e9e, ca d\u00e9pendra de qui la contr\u00f4le, nomme ses membres, ou lui fournit sa formation...\n\nEnfin reste la question du gros des annonces, qui ne disent pas que l'objet ou le service propos\u00e9 est \"propre\", mais ne disent pas... qu'il contribue \u00e0 la pression climatique. Peut-\u00eatre que la mesure la plus efficace aurait \u00e9t\u00e9 d'exiger un affichage de l'empreinte carbone en cycle de vie, et d'en faire une condition de l'autorisation de la publicit\u00e9 ? Son cout serait marginal dans la campagne, ; et le chiffre devient le juge de paix." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6785446961806888960,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6785446962389913600,urn:li:activity:6785446962389913600,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 47, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6785446962389913600,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6785446962389913600,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6785446962389913600", + "threadId": "activity:6785446962389913600", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6785446962389913600", + "urn": "urn:li:activity:6785446962389913600", + "numComments": 96, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6785446962389913600", + "reactionTypeCounts": [ + { + "count": 589, + "reactionType": "LIKE" + }, + { + "count": 64, + "reactionType": "MAYBE" + }, + { + "count": 37, + "reactionType": "PRAISE" + }, + { + "count": 23, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6785446962389913600", + "numLikes": 717, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6785446962389913600", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 717, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6785102723424509952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6785102723424509952", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6785102723424509952)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6785102723424509952)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jean-marc-jancovici-les-syst%C3%A8mes-%C3%A9nerg%C3%A9tiques-activity-6785102723424509952-W5ue?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6785102722992492544", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6785102723424509952", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6785102723424509952,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6785102723424509952,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6785102722992492544", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "71IGrbwnLWKC9DtiHitpzQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6785102723424509952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8108922972835324484", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676053227768?e=1677240000&v=beta&t=V1XGd3k5UCLd__8ybjHVgR_INoJJtPkYRJ24B4qARkI", + "expiresAt": 1677240000000, + "height": 529 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676053227769?e=1677240000&v=beta&t=haWwgzPTHZC_f9v6XhFlAdD3melBL-TFUEThX5oRJ_A", + "expiresAt": 1677240000000, + "height": 678 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676053227769?e=1677240000&v=beta&t=SWhi82rFUiCKtRaN7ovYYsP3hC3F8Gy25pvcDGKFZUs", + "expiresAt": 1677240000000, + "height": 105 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676053227769?e=1677240000&v=beta&t=XeMZjIvsX5MCVEALvSzPv3QelhsGTUILgKrYLDronak", + "expiresAt": 1677240000000, + "height": 317 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQGV3NR5Hiy4xg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8108922972835324484)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8108922972835324484)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "journal.ccas.fr \u2022 11 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Jean-Marc Jancovici : \u201cLes syst\u00e8mes \u00e9nerg\u00e9tiques sont en pratique des monopoles naturels\u201d | Le Journal des Activit\u00e9s Sociales de l'\u00e9nergie by journal.ccas.fr", + "actionTarget": "https://journal.ccas.fr/jean-marc-jancovici-les-systemes-energetiques-sont-en-pratique-des-monopoles-naturels/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Jean-Marc Jancovici : \u201cLes syst\u00e8mes \u00e9nerg\u00e9tiques sont en pratique des monopoles naturels\u201d | Le Journal des Activit\u00e9s Sociales de l'\u00e9nergie" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6785102722992492544,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le Journal des Activit\u00e9s Sociales de l'Energie (\u00e9dit\u00e9 par l'organisme qui s'occupe des oeuvres sociales des entreprises des secteurs de l'\u00e9lectricit\u00e9 et du gaz, la CCAS) publie une interview de votre serviteur sur la politique \u00e9nerg\u00e9tique fran\u00e7aise et europ\u00e9enne (\u00e0 moins qu'elle ne soit europ\u00e9enne et fran\u00e7aise).\n\nOn ne sait \u00e9crire qu'un seul livre, me disait mon \u00e9diteur. J'imagine donc que l'on ne sait faire qu'une seule interview, mais \u00e0 chaque fois la mise en forme est un peu diff\u00e9rente !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6785102722992492544,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6785102723424509952,urn:li:activity:6785102723424509952,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 9, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6785102723424509952,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6785102723424509952,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6785102723424509952", + "threadId": "activity:6785102723424509952", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6785102723424509952", + "urn": "urn:li:activity:6785102723424509952", + "numComments": 17, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6785102723424509952", + "reactionTypeCounts": [ + { + "count": 154, + "reactionType": "LIKE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6785102723424509952", + "numLikes": 174, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6785102723424509952", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 174, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6784796660926029824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6784796660926029824", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6784796660926029824)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6784796660926029824)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_hummer-ev-pickup-trims-activity-6784796660926029824-nLvh?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6784796660334645248", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6784796660926029824", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6784796660926029824,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6784796660926029824,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6784796660334645248", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "FAATrCppjZG2GJwqmGGLRA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6784796660926029824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7864933344343421807", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675535302028?e=1677240000&v=beta&t=ifCpSaHhBpg4wBlu6uec6Xeasfj9fV6EBxnzj8BSOhY", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675535302028?e=1677240000&v=beta&t=sF77r0nYotO6S7IAZAVmZvLMpqAiLRqbH6oLwO30ARA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675535302028?e=1677240000&v=beta&t=HYRryko_STOMg8NxyRPfeG154zO142oKPgck1VA4bAo", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675535302028?e=1677240000&v=beta&t=agUMVpCMTWj_dZ_Apn3TF5hlHGEuGMHgjqOIif1Vs6U", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQETRH7sHuuC9w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7864933344343421807)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7864933344343421807)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "gmc.com \u2022 10 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: HUMMER EV PICKUP TRIMS by gmc.com", + "actionTarget": "https://www.gmc.com/electric/hummer-ev" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "HUMMER EV PICKUP TRIMS" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6784796660334645248,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Et le prix du jour de la provocation, de l'absurde ou du ridicule est accord\u00e9 \u00e0... General Motors.\n\nGM a apparemment mis quelques milliards de $ (https://lnkd.in/dMYYWWN ) pour fabriquer un tank \u00e9lectrique de 1000 chevaux (10 fois plus que votre berline - qui en a d\u00e9j\u00e0 beaucoup trop, et 4000 fois plus qu'un v\u00e9lo \u00e0 assistance \u00e9lectrique), avec une batterie de 200 kWh (40 kWh pour la Zo\u00e9, 0,5 pour un v\u00e9lo \u00e9lectrique), et dont le poids sera de l'ordre de 5 tonnes (https://lnkd.in/dJRFNWE ).\n\nUne voiture de 5 tonnes c'est 25 \u00e0 30 tonnes de CO2 \u00e0 la fabrication (m\u00e9tallurgie dont aci\u00e9rie, (p\u00e9tro)chimie, verre, assemblage, transports interm\u00e9diaires, etc). Fabriquer une batterie de 200 kWh c'est \u2248 20 tonnes de CO2 en plus (m\u00e9tallurgie, chimie, transports, assemblage).\n\nR\u00e9sultat : ce Hummer utilis\u00e9 200.000 km \u00e9mettra 250 g de CO2 par km rien que pour sa fabrication (8 g par km pour un v\u00e9lo \u00e9lectrique utilis\u00e9 10.000 km). Reste l'\u00e9lectricit\u00e9, soit 0,5 kWh par km : avec 475 g de CO2 par kWh \u00e9lectrique en moyenne mondiale (https://lnkd.in/d2cNJ_E ), cela ajoute \u2248 250 g de CO2.\n\n500 g de CO2 par km, voil\u00e0 ce que General Motors appelle z\u00e9ro CO2. Si GM supposait que 0 = 500 dans ses comptes, gageons que cela d\u00e9clencherait plus de stup\u00e9faction..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6784796660334645248,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6784796660926029824,urn:li:activity:6784796660926029824,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 231, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6784796660926029824,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6784796660926029824,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6784796660926029824", + "threadId": "activity:6784796660926029824", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6784796660926029824", + "urn": "urn:li:activity:6784796660926029824", + "numComments": 401, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6784796660926029824", + "reactionTypeCounts": [ + { + "count": 4396, + "reactionType": "LIKE" + }, + { + "count": 690, + "reactionType": "MAYBE" + }, + { + "count": 559, + "reactionType": "INTEREST" + }, + { + "count": 171, + "reactionType": "PRAISE" + }, + { + "count": 40, + "reactionType": "EMPATHY" + }, + { + "count": 24, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6784796660926029824", + "numLikes": 5880, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6784796660926029824", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 5880, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6784424255930015744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6784424255930015744", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6784424255930015744)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6784424255930015744)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_interactive-world-forest-map-tree-cover-activity-6784424255930015744-TtEM?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6784424255384768512", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6784424255930015744", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6784424255930015744,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6784424255930015744,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6784424255384768512", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "rlBn1dBhXS0LBYuo9S/lBg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6784424255930015744,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8300574061493313394", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676231531414?e=1677240000&v=beta&t=WsYQn8NL0ehIjV-i6PYDf_eZqXC2O2CITz6KHCL45oQ", + "expiresAt": 1677240000000, + "height": 439 + }, + { + "width": 1000, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676231531414?e=1677240000&v=beta&t=eRb-5iuMcwdzTbUxxX4XoiDnsCqb8owY6IJwb1LppKE", + "expiresAt": 1677240000000, + "height": 549 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676231531414?e=1677240000&v=beta&t=LpfexX6jPO1mPpJAhKMOhVeKeL7XUFahDTHDB0_bvOw", + "expiresAt": 1677240000000, + "height": 87 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676231531414?e=1677240000&v=beta&t=8o95DQaebHZuMfTUxXpFH4-LsbYHrmLXbZbApb6RIgY", + "expiresAt": 1677240000000, + "height": 263 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQH5coB0NUKchg/articleshare-shrink_" + }, + "displayAspectRatio": 0.54875 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8300574061493313394)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8300574061493313394)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "globalforestwatch.org \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Interactive World Forest Map & Tree Cover Change Data | GFW by globalforestwatch.org", + "actionTarget": "https://www.globalforestwatch.org/map/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Interactive World Forest Map & Tree Cover Change Data | GFW" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6784424255384768512,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le chocolat de vos oeufs de P\u00e2ques a-t-il engendr\u00e9 de la d\u00e9forestation pour \u00eatre cultiv\u00e9 ? Le site Global Forest Watch ne vous donnera malheureusement pas la r\u00e9ponse, mais, \u00e0 partir d'images par satellite, il fournit l'\u00e9volution du couvert forestier depuis 2000, en distinguant accroissements ici et diminutions l\u00e0. \n\nL'int\u00e9r\u00eat des analyses par satellite est qu'elles permettent de voir ce qui se passe vraiment, et non de se fier \u00e0 la \"destination\" des surfaces. Ainsi, une for\u00eat qui a \u00e9t\u00e9 coup\u00e9e ou br\u00fbl\u00e9e n'existe en pratique plus, alors que, au cadastre, la parcelle est toujours consid\u00e9r\u00e9e comme \"for\u00eat\". \n\nCela explique que, si on regarde la France, le cadastre consid\u00e8re que le couvert forestier s'accro\u00eet (\u00e0 partir de la classification des terrains), alors que selon les analyses par satellite nous avons perdu un demi-million d'hectares de couvert forestier (graphique en commentaire) sur les 20 derni\u00e8res ann\u00e9es." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6784424255384768512,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6784424255930015744,urn:li:activity:6784424255930015744,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 50, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6784424255930015744,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6784424255930015744,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6784424255930015744", + "threadId": "activity:6784424255930015744", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6784424255930015744", + "urn": "urn:li:activity:6784424255930015744", + "numComments": 107, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6784424255930015744", + "reactionTypeCounts": [ + { + "count": 690, + "reactionType": "LIKE" + }, + { + "count": 133, + "reactionType": "INTEREST" + }, + { + "count": 109, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6784424255930015744", + "numLikes": 949, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6784424255930015744", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 949, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6784088684170891264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6784088684170891264", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6784088684170891264)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6784088684170891264)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_impact-environnemental-du-num%C3%A9rique-et-gouvernance-activity-6784088684170891264-MKvc?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6784088683684339712", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6784088684170891264", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6784088684170891264,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6784088684170891264,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6784088683684339712", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "hwsJwiMlm7NyTvke1t2wrw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6784088684170891264,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8245816063960519225", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676301485785?e=1677240000&v=beta&t=khbDsfP4m9F1gfri2q9UgmPipJoNkhfi-09HKbkvgqQ", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676301485785?e=1677240000&v=beta&t=oXonFYUc3j3CoZFlsqZsQC_vsslNyLpRXdPA_4VLzlM", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676301485786?e=1677240000&v=beta&t=O-97efs5opafQGGU2QFj_p01x3W5g1QqK1zVEKsQMtE", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676301485786?e=1677240000&v=beta&t=X6vx06PhjByyy3BUn4-sdJDpzEmUBwGHUv6829OfLE4", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFe5qG6v7En2A/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8245816063960519225)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8245816063960519225)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Impact environnemental du num\u00e9rique et gouvernance de la 5G by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/impact-environnemental-du-numerique-5g-nouvelle-etude-du-shift/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Impact environnemental du num\u00e9rique et gouvernance de la 5G" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6784088683684339712,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Avec une contribution aux \u00e9missions mondiales de gaz \u00e0 effet de serre qui est quasiment celle du parc mondial de camions, le num\u00e9rique est d\u00e9sormais l'objet d'attentions croissantes sur la mani\u00e8re de mettre son empreinte carbone sous contr\u00f4le.\n\nLe dernier opus de la s\u00e9rie \"The Shift Project et le num\u00e9rique\" fait le point sur l'\u00e9volution des \u00e9missions du secteur (bonne nouvelle, ca augmente un peu moins vite que ce qui avait \u00e9t\u00e9 estim\u00e9 lors du rapport de 2018 ; mauvaise nouvelle, ca augmente de presque 7% par an alors que ca devrait baisser de 5% par an pour \u00eatre align\u00e9 avec l'accord de Paris).\n\nIl prend surtout le cas pratique de la 5G pour illustrer les mesures que nous devons prendre pour contenir l'empreinte carbone de ce secteur.\n\nC'est notre int\u00e9r\u00eat : le num\u00e9rique \u00e9tant devenu omnipr\u00e9sent dans nos vies (monnaie, \u00e9changes, imp\u00f4ts, transports, sant\u00e9...), si nous ne baissons pas de nous-m\u00eames son empreinte carbone, nous courrons le risque qu'elle baisse de mani\u00e8re involontaire (puisqu'elle baissera un jour de toute fa\u00e7on, c'est math\u00e9matique sur une plan\u00e8te finie), et \u00e0 ce moment, comme le syst\u00e8me est indispensable \u00e0 court terme, ca \"distruptera\" potentiellement des fonctions majeures de la soci\u00e9t\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6784088683684339712,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6784088684170891264,urn:li:activity:6784088684170891264,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6784088684170891264,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6784088684170891264,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6784088684170891264", + "threadId": "activity:6784088684170891264", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6784088684170891264", + "urn": "urn:li:activity:6784088684170891264", + "numComments": 70, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6784088684170891264", + "reactionTypeCounts": [ + { + "count": 441, + "reactionType": "LIKE" + }, + { + "count": 49, + "reactionType": "INTEREST" + }, + { + "count": 47, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6784088684170891264", + "numLikes": 545, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6784088684170891264", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 545, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6783643860749832192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6783643860749832192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6783643860749832192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6783643860749832192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_avis-de-lademe-tous-les-acteurs-doivent-activity-6783643860749832192--_-H?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6783643860217171970", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6783643860749832192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6783643860749832192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6783643860749832192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6783643860217171970", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "/War0U7J5L23R+t72FKH0Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6783643860749832192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8920439234148488996", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 300, + "fileIdentifyingUrlPathSegment": "800/0/1675539926633?e=1677240000&v=beta&t=cGTCw3iYD63hXxyibZelg2Y9GwXiFGcl__ds_yu6yIQ", + "expiresAt": 1677240000000, + "height": 234 + }, + { + "width": 300, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675539926633?e=1677240000&v=beta&t=YmchM4mrLliLMUC1H9EwerGgL3NsiHIF6E2HNFFVGJA", + "expiresAt": 1677240000000, + "height": 234 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675539926633?e=1677240000&v=beta&t=dYX3U5F6ZuVZmbu10Gq_tltO_5DTdgA9eyBxdPmNuw4", + "expiresAt": 1677240000000, + "height": 124 + }, + { + "width": 300, + "fileIdentifyingUrlPathSegment": "480/0/1675539926633?e=1677240000&v=beta&t=d7R0jnyTrztYygpWq71qroe0kktfV4zlXsrWEncF_FA", + "expiresAt": 1677240000000, + "height": 234 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFlbQd2vnX84g/articleshare-shrink_" + }, + "displayAspectRatio": 0.78 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8920439234148488996)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8920439234148488996)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "presse.ademe.fr \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [Avis de l\u2019ADEME] Tous les acteurs doivent agir collectivement pour la neutralit\u00e9 carbone, mais aucun acteur ne devrait se revendiquer neutre en carbone by presse.ademe.fr", + "actionTarget": "https://presse.ademe.fr/2021/04/avis-de-lademe-tous-les-acteurs-doivent-agir-collectivement-pour-la-neutralite-carbone-mais-aucun-acteur-ne-devrait-se-revendiquer-neutre-en-carbone.html" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[Avis de l\u2019ADEME] Tous les acteurs doivent agir collectivement pour la neutralit\u00e9 carbone, mais aucun acteur ne devrait se revendiquer neutre en carbone" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6783643860217171970,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Esp\u00e9rons que ce ne soit pas un r\u00e9sultat de la p\u00eache miraculeuse du 1er avril : dans un \"avis\" publi\u00e9 hier, l'Ademe \u00e9crit noir sur blanc que \"La neutralit\u00e9 carbone est une notion qui ne peut \u00eatre d\u00e9finie qu\u2019\u00e0 l\u2019\u00e9chelle de la plan\u00e8te ou d\u2019un \u00c9tat\", et que \"les acteurs ne peuvent ni devenir ni se revendiquer neutres en carbone individuellement \u00e0 leur seule \u00e9chelle\".\n\nDit autrement, un entreprise ne peut pas, et ne pourra jamais, \u00eatre \"neutre\". Nous sommes heureux, \u00e0 Carbone 4, de voir que la position prise est en totale coh\u00e9rence avec la m\u00e9thode Net Zero Initiative, qui conclut exactement de la m\u00eame mani\u00e8re (https://lnkd.in/d_WDb37 ). \n\nNous savons - de source s\u00fbre :) - que ce r\u00e9f\u00e9rentiel a aussi inspir\u00e9 les Nations Unies, et leur site internet \"Climate Neutral Now\" (https://lnkd.in/d3sEgZF ) n'emploie pas le mot \"offset\" mais \"contribution\", terme que nous pr\u00e9conisons dans NZI pour le financement, en dehors de sa chaine de valeur, ou la mise en oeuvre, dans sa chaine de valeur, de puits suppl\u00e9mentaires qui ne viennent cependant pas se soustraire aux \u00e9missions li\u00e9es au fonctionnement de cette m\u00eame cha\u00eene de valeur. Les deux sont \u00e0 compter - correctement - s\u00e9par\u00e9ment." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6783643860217171970,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6783643860749832192,urn:li:activity:6783643860749832192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 31, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6783643860749832192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6783643860749832192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6783643860749832192", + "threadId": "activity:6783643860749832192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6783643860749832192", + "urn": "urn:li:activity:6783643860749832192", + "numComments": 46, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6783643860749832192", + "reactionTypeCounts": [ + { + "count": 813, + "reactionType": "LIKE" + }, + { + "count": 55, + "reactionType": "INTEREST" + }, + { + "count": 52, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "MAYBE" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6783643860749832192", + "numLikes": 962, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6783643860749832192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 962, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6783641457522704384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6783641457522704384", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6783641457522704384)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6783641457522704384)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_climate-change-consumer-pose-growing-threat-activity-6783641457522704384-wwE5?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6783641456918720512", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6783641457522704384", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6783641457522704384,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6783641457522704384,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6783641456918720512", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "4RflPjLX6lcMw3WZ7HpVdA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6783641457522704384,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8262267112631209885", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676558259623?e=1677240000&v=beta&t=9HSWnl3XfgDiJUyKuNlBNl7wm4GeibzXFWV631IX424", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676558259623?e=1677240000&v=beta&t=eeBKVPLfyHR56ldTRIBqf5kMu-ejGfNxGmr9oYunCFU", + "expiresAt": 1677240000000, + "height": 576 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676558259623?e=1677240000&v=beta&t=3Z7cixqmSX231Homr3CcJX4QUPtinnM8YQGWI4FvWEk", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676558259623?e=1677240000&v=beta&t=V046LsjU7Gec_WlS_rhP5Kk9YWwEnlRpqHiwUtDWeHk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFD2mmcr1L6XQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "trees brazil" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8262267112631209885)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8262267112631209885)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "bbc.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Climate change: Consumer pose 'growing threat' to tropical forests by bbc.com", + "actionTarget": "https://www.bbc.com/news/science-environment-56566377" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Climate change: Consumer pose 'growing threat' to tropical forests" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6783641456918720512,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "4 arbres par personne et par an : c'est, selon un article de Nature (https://lnkd.in/dQdn3Jy ; seul l'abstract est en libre acc\u00e8s) relay\u00e9 par la BBC, la d\u00e9forestation induite par la consommation des pays du G7 (Allemagne, Canada, \u00c9tats-Unis, France, Italie, Japon et Royaume-Uni), essentiellement import\u00e9e.\n\nC'est pour faire pousser du chocolat, du caf\u00e9, des avocats, des palmiers \u00e0 huile, du soja, du caoutchouc ou du s\u00e9same que les arbres des for\u00eats primaires sont supprim\u00e9s, et les zones concern\u00e9es \u00e9taient souvent des lieux de haute biodiversit\u00e9 avant d'\u00eatre converties aux cultures destin\u00e9es \u00e0 l'exportation vers les pays \"riches\". \n\nMais m\u00eame en Chine et en Inde, la d\u00e9forestation import\u00e9e repr\u00e9sente un arbre par personne et par an. Et, selon les chercheurs, la croissance \u00e9conomique augmente cette d\u00e9forestation import\u00e9e.\n\nLa solution \u00e9voqu\u00e9e par les chercheurs est \u00e0 la fois simple et tr\u00e8s contrariante pour le discours \u00e9conomique classique qui ignore l'environnement : au lieu de payer les pays tropicaux pour leurs cultures \u00e0 l'exportation, il faut les payer pour la conservation des for\u00eats (sans plus de chocolat ou de viande pour autant). Qui est pr\u00eat \u00e0 y consacrer une partie de ses imp\u00f4ts ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6783641456918720512,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6783641457522704384,urn:li:activity:6783641457522704384,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 68, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6783641457522704384,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6783641457522704384,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6783641457522704384", + "threadId": "activity:6783641457522704384", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6783641457522704384", + "urn": "urn:li:activity:6783641457522704384", + "numComments": 207, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6783641457522704384", + "reactionTypeCounts": [ + { + "count": 828, + "reactionType": "LIKE" + }, + { + "count": 102, + "reactionType": "INTEREST" + }, + { + "count": 88, + "reactionType": "MAYBE" + }, + { + "count": 11, + "reactionType": "APPRECIATION" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 6, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6783641457522704384", + "numLikes": 1044, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6783641457522704384", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1044, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6783308573108649984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6783308573108649984", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6783308573108649984)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6783308573108649984)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-relations-sociales-et-amoureuses-sont-activity-6783308573108649984-ARO0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6783308572307529728", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6783308573108649984", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6783308573108649984,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6783308573108649984,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6783308572307529728", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "1PmX7bbsWCjVr4k/fKKgBg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6783308573108649984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQEpirD5LwWg6Q", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQEpirD5LwWg6Q", + "artifacts": [ + { + "width": 946, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1617266789865?e=1679529600&v=beta&t=f4u8NRTuDBue2tG6Yg1595_LG4T--ZYbEDnrl8swVUE", + "expiresAt": 1679529600000, + "height": 1236 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1617266791188?e=1679529600&v=beta&t=TfUERTMBrL0wep71oUPv8oEoetqnu2L9YB-NHw7NUB0", + "expiresAt": 1679529600000, + "height": 26 + }, + { + "width": 946, + "fileIdentifyingUrlPathSegment": "1280/0/1617266791188?e=1679529600&v=beta&t=KZ_vEboPUQaL8QtgF9mGMYxhOjxJgJ4yuOnMVK3NLl4", + "expiresAt": 1679529600000, + "height": 1236 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1617266791188?e=1679529600&v=beta&t=1xPVI505dJAqdO7t537EXR81mlL5E7WhZn5hLkRbVd0", + "expiresAt": 1679529600000, + "height": 627 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1617266791188?e=1679529600&v=beta&t=HIDPLbmw_FSQe_-lUhoabWJWY1vaY_HS1ve_ntKSlbk", + "expiresAt": 1679529600000, + "height": 209 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1617266791188?e=1679529600&v=beta&t=iRfHxgK8tagtD8JLwLghn2yZdzlkjiAtC2KRR2RtDuo", + "expiresAt": 1679529600000, + "height": 1045 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQEpirD5LwWg6Q/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6783308572307529728,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Les relations sociales et amoureuses sont importantes dans la vie des individus. Mais elles ont un impact fort sur les \u00e9missions de gaz \u00e0 effet de serre. Pour favoriser nos interactions avec des \u00eatres aim\u00e9s, nous n'h\u00e9sitons pas \u00e0 recourir \u00e0 des activit\u00e9s tr\u00e8s \u00e9missives comme l'extraction de diamants, l'horticulture sous serre, le transport a\u00e9rien, sans parler de la mode, de la construction, ou de l'influence sur le trafic num\u00e9rique.\n\nPrenant acte de cette r\u00e9alit\u00e9, The Shift Project a d\u00e9cid\u00e9 de rajouter un volet essentiel \u00e0 son plan de transformation de l'\u00e9conomie fran\u00e7aise, intitul\u00e9 \"aimer en 2050\" : https://lnkd.in/deR8SJD\n\nComment \u00eatre optimalement amoureux \u00e0 l'avenir ? Le mod\u00e8le mis au point par The Shift Project permet de conclure que l'id\u00e9al, du point de vue des \u00e9missions, est d'avoir une relation impliquant 5,3 personnes, situ\u00e9es \u00e0 moins de 25 km de distance les unes des autres. D\u00e9couvrez sans attendre cette nouvelle publication !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6783308572307529728,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6783308573108649984,urn:li:activity:6783308573108649984,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 211, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6783308573108649984,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6783308573108649984,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6783308573108649984", + "threadId": "activity:6783308573108649984", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6783308573108649984", + "urn": "urn:li:activity:6783308573108649984", + "numComments": 246, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6783308573108649984", + "reactionTypeCounts": [ + { + "count": 935, + "reactionType": "LIKE" + }, + { + "count": 247, + "reactionType": "EMPATHY" + }, + { + "count": 117, + "reactionType": "MAYBE" + }, + { + "count": 88, + "reactionType": "PRAISE" + }, + { + "count": 46, + "reactionType": "INTEREST" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6783308573108649984", + "numLikes": 1448, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6783308573108649984", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1448, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6783069048054808576,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6783069048054808576", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6783069048054808576)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6783069048054808576)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_why-are-people-not-doing-more-about-climate-activity-6783069048054808576-JKQL?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6783069047517937664", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6783069048054808576", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6783069048054808576,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6783069048054808576,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6783069047517937664", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "8hF7RA3+0RRF+oNcjJqDEg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6783069048054808576,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7816487914445927130", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextSourceType": "USER", + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676317725786?e=1677240000&v=beta&t=qJHOAKJ4ohciV5V_tay8RLy713xdh4yFbtCm_B03KDQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676317725786?e=1677240000&v=beta&t=bd9cd5zuzZIQ8fkeIMyulOHJ6yQbxsAkT0IdxjHzVnA", + "expiresAt": 1677240000000, + "height": 576 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676317725786?e=1677240000&v=beta&t=dgsg63C4mSr-PUOz2-Ah_vwmc5bEYnRc58ces0untvE", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676317725786?e=1677240000&v=beta&t=h1udtl6W1jRgz8cIV7MP2xWaEurpN779hvMUTzyqQQk", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQFalFYQTl_g_g/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ], + "accessibilityTextAttributes": [], + "accessibilityText": "EV driver Elinor Chalmers has had her vehicle since 2015 a" + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7816487914445927130)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7816487914445927130)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "bbc.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Why are people not doing more about climate change? by bbc.com", + "actionTarget": "https://www.bbc.com/news/uk-scotland-56500739" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Why are people not doing more about climate change?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6783069047517937664,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La BBC a demand\u00e9 \u00e0 un millier d'\u00e9cossais pourquoi ils n'en faisaient pas plus pour baisser leurs \u00e9missions. Question int\u00e9ressante !\n\nLa premi\u00e8re cause est toute b\u00eate, et il suffisait d'y penser : l'essentiel de la population n'a aucun sentiment d'urgence sur le climat. Une faible minorit\u00e9, par exemple, a compris que les s\u00e9cheresses vont inexorablement augmenter, tout comme les feux de for\u00eats (la compr\u00e9hension d'autres cons\u00e9quences n'a pas \u00e9t\u00e9 test\u00e9e).\n\nDu coup, la motivation pour passer \u00e0 l'action rapidement reste faible, et si le prix se met en travers de la route, alors c'est r\u00e9dhibitoire.\n\nCe r\u00e9sultat obtenu pour les buveurs de whisky est probablement largement valable pour les buveurs de vin. Il souligne aussi, h\u00e9las, la faiblesse des media sur la compr\u00e9hension des risques. \n\nOn continue \u00e0 confondre \"sensibilis\u00e9\" et \"avoir correctement compris\". Mais ce sont deux choses totalement diff\u00e9rentes. Gageons que si la couverture m\u00e9diatique pour d\u00e9tailler les risques climatiques devenait seulement le quart de ce qu'elle est sur le covid, et que, comme pour cette maladie, on passait au crible du b\u00e9n\u00e9fice-risque pour le climat toute d\u00e9cision de la puissance publique dans les media, \u00e0 commencer par chaque annonce \u00e9conomique, l'action se mettrait en place un peu plus vite...." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6783069047517937664,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6783069048054808576,urn:li:activity:6783069048054808576,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 111, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6783069048054808576,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6783069048054808576,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6783069048054808576", + "threadId": "activity:6783069048054808576", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6783069048054808576", + "urn": "urn:li:activity:6783069048054808576", + "numComments": 211, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6783069048054808576", + "reactionTypeCounts": [ + { + "count": 2126, + "reactionType": "LIKE" + }, + { + "count": 188, + "reactionType": "INTEREST" + }, + { + "count": 166, + "reactionType": "MAYBE" + }, + { + "count": 44, + "reactionType": "PRAISE" + }, + { + "count": 19, + "reactionType": "APPRECIATION" + }, + { + "count": 15, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6783069048054808576", + "numLikes": 2558, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6783069048054808576", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2558, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6782910724818649088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6782910724818649088", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6782910724818649088)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6782910724818649088)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_invitation-d%C3%A9carboner-ladministration-activity-6782910724818649088-Ea2H?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6782910724277575680", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6782910724818649088", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6782910724818649088,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6782910724818649088,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6782910724277575680", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "V9xvvFU2fyqsgAUNRjN28Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6782910724818649088,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7486028798139929425", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676211464839?e=1677240000&v=beta&t=t4sz83h6FI5h34z2dfAQPcpNBTWJVkM0WX2HfsJRpgI", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676211464839?e=1677240000&v=beta&t=BwdkNamMAg2a83gnDlLzlNf5g6N-rGUWODnubL8j3Sw", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676211464839?e=1677240000&v=beta&t=jtjmrba-M5lgmrJo5gdf9XjrxHMFH3_A-bnxt-roFSg", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676211464839?e=1677240000&v=beta&t=aU5n4bK2XUf5MNVrE7Ix975WldHasTZsnFve0DKGg3M", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFP4yMkLqi_nA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7486028798139929425)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7486028798139929425)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [Invitation] D\u00e9carboner l'Administration publique : pr\u00e9sentation du Rapport interm\u00e9diaire et Ateliers collaboratifs (jeudi 15 avril \u00e0 14h) - The Shift Project by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/ateliers-collaboratifs-administration-15-avril-2021/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[Invitation] D\u00e9carboner l'Administration publique : pr\u00e9sentation du Rapport interm\u00e9diaire et Ateliers collaboratifs (jeudi 15 avril \u00e0 14h) - The Shift Project" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6782910724277575680,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si l'Etat - c'est \u00e0 dire nous - prend l'engagement de se d\u00e9carboner, dans le cadre de l'accord de Paris, alors cela veut dire que l'administration publique, qui, sauf erreur, fait partie du pays, doit aussi faire quelque chose.\n\nQuoi ? C'est l'objet du travail qui sera pr\u00e9sent\u00e9 le 15 avril par The Shift Project, dans le cadre de nos travaux sur le Plan de Transformation de l'Economie Fran\u00e7aise (PTEF).\n\nQue peut faire l\u2019administration publique pour r\u00e9duire les \u00e9missions de gaz \u00e0 effet de serre li\u00e9es \u00e0 son fonctionnement ? Comment accompagner l\u2019\u00e9volution de chaque acteur public en tenant compte de la diversit\u00e9 des m\u00e9tiers au sein de l\u2019administration fran\u00e7aise ? D\u00e9but de r\u00e9ponse dans 15 jours !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6782910724277575680,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6782910724818649088,urn:li:activity:6782910724818649088,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 23, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6782910724818649088,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6782910724818649088,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6782910724818649088", + "threadId": "activity:6782910724818649088", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782910724818649088", + "urn": "urn:li:activity:6782910724818649088", + "numComments": 82, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6782910724818649088", + "reactionTypeCounts": [ + { + "count": 541, + "reactionType": "LIKE" + }, + { + "count": 40, + "reactionType": "MAYBE" + }, + { + "count": 35, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 6, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6782910724818649088", + "numLikes": 631, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782910724818649088", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 631, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6782910064400310272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:69760184", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:69760184", + "entityUrn": "urn:li:fs_miniCompany:69760184", + "name": "Club ESSEC Transition Alumni", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1667204348580?e=1684972800&v=beta&t=sLnBz--gSZsWRuQ0OPHpa68s2QEZlacItZPO_4oxjHg", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1667204348580?e=1684972800&v=beta&t=P-chphFSYznyiEeCcI7J89cdBaV_0u8tzZ4RfzB8f7M", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1667204348580?e=1684972800&v=beta&t=iyaW3yqcLGMjTBM_YxiPNvJI78YPh5kqow2yqi79K2M", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E0BAQGjTjkJyHMJ5w/company-logo_" + } + }, + "universalName": "essec-transition-alumni", + "dashCompanyUrn": "urn:li:fsd_company:69760184", + "trackingId": "BMbFDzUPRCStS1x62b5LpQ==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 28, + "miniCompany": { + "objectUrn": "urn:li:company:69760184", + "entityUrn": "urn:li:fs_miniCompany:69760184", + "name": "Club ESSEC Transition Alumni", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1667204348580?e=1684972800&v=beta&t=sLnBz--gSZsWRuQ0OPHpa68s2QEZlacItZPO_4oxjHg", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1667204348580?e=1684972800&v=beta&t=P-chphFSYznyiEeCcI7J89cdBaV_0u8tzZ4RfzB8f7M", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1667204348580?e=1684972800&v=beta&t=iyaW3yqcLGMjTBM_YxiPNvJI78YPh5kqow2yqi79K2M", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E0BAQGjTjkJyHMJ5w/company-logo_" + } + }, + "universalName": "essec-transition-alumni", + "dashCompanyUrn": "urn:li:fsd_company:69760184", + "trackingId": "BMbFDzUPRCStS1x62b5LpQ==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Club ESSEC Transition Alumni" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Club ESSEC Transition Alumni", + "actionTarget": "https://www.linkedin.com/company/essec-transition-alumni/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A69760184" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "3,489 followers" + }, + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "DEFAULT", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:69760184", + "followerCount": 3489, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:69760184", + "following": false, + "trackingUrn": "urn:li:company:69760184" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "FOLLOW_TOGGLE", + "trackingActionType": "followCompany" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6782215044399689728,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6782215044399689728", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6782215044399689728)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6782215044399689728)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/essec-transition-alumni_error-404-planet-b-not-found-mobilisation-activity-6782215044399689728-y-F0?utm_source=share&utm_medium=member_desktop" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6782215043745370112", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:69760184", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6782215044399689728,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6782215044399689728,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6782215043745370112", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "3oVCIUWdGt6ePNENA1sfJw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6782215044399689728,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFEvUHNeQUbTg", + "sourceType": "VECTOR", + "tapTargets": [ + { + "firstCornerXOffsetPercentage": 0.10210739, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.07876557, + "url": "https://www.linkedin.com/in/risbourg", + "urn": "urn:li:fs_miniProfile:ACoAAAABTi0B329Wx9vxaPTa2wmmQRo56m-v3sY", + "thirdCornerXOffsetPercentage": 0.10210739, + "secondCornerYOffsetPercentage": 0.07876557, + "fourthCornerXOffsetPercentage": 0.10210739, + "firstCornerYOffsetPercentage": 0.07876557, + "rank": 3, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.07876557, + "text": "Alain Risbourg", + "secondCornerXOffsetPercentage": 0.10210739 + }, + { + "firstCornerXOffsetPercentage": 0.06670346, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.57016176, + "url": "https://www.linkedin.com/in/sandrine-benattar", + "urn": "urn:li:fs_miniProfile:ACoAAAAtJdQBrR3Q57FBXEglTXMkW8X5c2LX0uk", + "thirdCornerXOffsetPercentage": 0.06670346, + "secondCornerYOffsetPercentage": 0.57016176, + "fourthCornerXOffsetPercentage": 0.06670346, + "firstCornerYOffsetPercentage": 0.57016176, + "rank": 3, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.57016176, + "text": "Sandrine Benattar", + "secondCornerXOffsetPercentage": 0.06670346 + }, + { + "firstCornerXOffsetPercentage": 0.07393569, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.4641906, + "url": "https://www.linkedin.com/in/arnaud-marec", + "urn": "urn:li:fs_miniProfile:ACoAAAC97AUBmYisbDQ6gYNqRMaUl0wwKJ1sB4Q", + "thirdCornerXOffsetPercentage": 0.07393569, + "secondCornerYOffsetPercentage": 0.4641906, + "fourthCornerXOffsetPercentage": 0.07393569, + "firstCornerYOffsetPercentage": 0.4641906, + "rank": 3, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.4641906, + "text": "Arnaud Marec", + "secondCornerXOffsetPercentage": 0.07393569 + }, + { + "firstCornerXOffsetPercentage": 0.7831253, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.44016278, + "url": "https://www.linkedin.com/in/louis-armengaud-wurmser-31b37617", + "urn": "urn:li:fs_miniProfile:ACoAAANvdUcBcztftV7jJgdfjUuWUXWSUHuqceo", + "thirdCornerXOffsetPercentage": 0.7831253, + "secondCornerYOffsetPercentage": 0.44016278, + "fourthCornerXOffsetPercentage": 0.7831253, + "firstCornerYOffsetPercentage": 0.44016278, + "rank": 3, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.44016278, + "text": "Louis Armengaud Wurmser", + "secondCornerXOffsetPercentage": 0.7831253 + }, + { + "firstCornerXOffsetPercentage": 0.7605653, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.3667479, + "url": "https://www.linkedin.com/in/cpairot", + "urn": "urn:li:fs_miniProfile:ACoAAAU1PFsB1kkLlIDltmfTWAKB2Hr2FIIh7as", + "thirdCornerXOffsetPercentage": 0.7605653, + "secondCornerYOffsetPercentage": 0.3667479, + "fourthCornerXOffsetPercentage": 0.7605653, + "firstCornerYOffsetPercentage": 0.3667479, + "rank": 3, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.3667479, + "text": "Cl\u00e9ment Pairot", + "secondCornerXOffsetPercentage": 0.7605653 + }, + { + "firstCornerXOffsetPercentage": 0.41154325, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.6859928, + "url": "https://www.linkedin.com/company/pour-un-reveil-ecologique/", + "urn": "urn:li:fs_company:14821160", + "thirdCornerXOffsetPercentage": 0.41154325, + "secondCornerYOffsetPercentage": 0.6859928, + "fourthCornerXOffsetPercentage": 0.41154325, + "firstCornerYOffsetPercentage": 0.6859928, + "rank": 4, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.6859928, + "text": "Pour un r\u00e9veil \u00e9cologique", + "secondCornerXOffsetPercentage": 0.41154325 + }, + { + "firstCornerXOffsetPercentage": 0.7701115, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.70747083, + "url": "https://www.linkedin.com/company/essecalumni/", + "urn": "urn:li:fs_company:67292593", + "thirdCornerXOffsetPercentage": 0.7701115, + "secondCornerYOffsetPercentage": 0.70747083, + "fourthCornerXOffsetPercentage": 0.7701115, + "firstCornerYOffsetPercentage": 0.70747083, + "rank": 4, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.70747083, + "text": "ESSEC Alumni", + "secondCornerXOffsetPercentage": 0.7701115 + }, + { + "firstCornerXOffsetPercentage": 0.21351336, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.6930642, + "url": "https://www.linkedin.com/in/aude-serrano", + "urn": "urn:li:fs_miniProfile:ACoAAAx8mdsBVyFGW1kQAC9NgaVGbGT-MxT6Di8", + "thirdCornerXOffsetPercentage": 0.21351336, + "secondCornerYOffsetPercentage": 0.6930642, + "fourthCornerXOffsetPercentage": 0.21351336, + "firstCornerYOffsetPercentage": 0.6930642, + "rank": 3, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.6930642, + "text": "Aude Serrano", + "secondCornerXOffsetPercentage": 0.21351336 + }, + { + "firstCornerXOffsetPercentage": 0.5884001, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.215208, + "url": "https://www.linkedin.com/in/l%C3%A9a-zaslavsky-40062b69", + "urn": "urn:li:fs_miniProfile:ACoAAA6CRoABTrDR65AMOvzZ9-oD2iIrG882Rbc", + "thirdCornerXOffsetPercentage": 0.5884001, + "secondCornerYOffsetPercentage": 0.215208, + "fourthCornerXOffsetPercentage": 0.5884001, + "firstCornerYOffsetPercentage": 0.215208, + "rank": 3, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.215208, + "text": "L\u00e9a Zaslavsky", + "secondCornerXOffsetPercentage": 0.5884001 + }, + { + "firstCornerXOffsetPercentage": 0.09665138, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.8688329, + "url": "https://www.linkedin.com/in/isciane-gaudin-bertoni", + "urn": "urn:li:fs_miniProfile:ACoAABOMtEQBoaJchRJYpssCy4OXJNiFZ9WRsG0", + "thirdCornerXOffsetPercentage": 0.09665138, + "secondCornerYOffsetPercentage": 0.8688329, + "fourthCornerXOffsetPercentage": 0.09665138, + "firstCornerYOffsetPercentage": 0.8688329, + "rank": 3, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.8688329, + "text": "Isciane Gaudin-Bertoni", + "secondCornerXOffsetPercentage": 0.09665138 + }, + { + "firstCornerXOffsetPercentage": 0.8592264, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.49220005, + "url": "https://www.linkedin.com/in/l%C3%A9a-vigier-9bba1797", + "urn": "urn:li:fs_miniProfile:ACoAABSeLd8Bm0cDfF9kxqo1IKAAPms1IVurG1c", + "thirdCornerXOffsetPercentage": 0.8592264, + "secondCornerYOffsetPercentage": 0.49220005, + "fourthCornerXOffsetPercentage": 0.8592264, + "firstCornerYOffsetPercentage": 0.49220005, + "rank": 3, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.49220005, + "text": "L\u00e9a Vigier", + "secondCornerXOffsetPercentage": 0.8592264 + }, + { + "firstCornerXOffsetPercentage": 0.17965919, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.23063204, + "url": "https://www.linkedin.com/in/hugues-desaintpierre", + "urn": "urn:li:fs_miniProfile:ACoAABZrKHkBGWOmjSGMt7lm2iOYpYhe3WscaEA", + "thirdCornerXOffsetPercentage": 0.17965919, + "secondCornerYOffsetPercentage": 0.23063204, + "fourthCornerXOffsetPercentage": 0.17965919, + "firstCornerYOffsetPercentage": 0.23063204, + "rank": 3, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.23063204, + "text": "Hugues de Saint Pierre", + "secondCornerXOffsetPercentage": 0.17965919 + }, + { + "firstCornerXOffsetPercentage": 0.6156236, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.47415093, + "url": "https://www.linkedin.com/in/apolline-boulaire-054498ab", + "urn": "urn:li:fs_miniProfile:ACoAABdi70ABtzO56-Rgp9IcERrUzS0o4Kk59PU", + "thirdCornerXOffsetPercentage": 0.6156236, + "secondCornerYOffsetPercentage": 0.47415093, + "fourthCornerXOffsetPercentage": 0.6156236, + "firstCornerYOffsetPercentage": 0.47415093, + "rank": 3, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.47415093, + "text": "Apolline Boulaire", + "secondCornerXOffsetPercentage": 0.6156236 + }, + { + "firstCornerXOffsetPercentage": 0.36708134, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.37613043, + "url": "https://www.linkedin.com/in/lou-welgryn-460434b0", + "urn": "urn:li:fs_miniProfile:ACoAABeOgIgB5GEZ6RZxfLFbKCqpRWso8Y5bwE4", + "thirdCornerXOffsetPercentage": 0.36708134, + "secondCornerYOffsetPercentage": 0.37613043, + "fourthCornerXOffsetPercentage": 0.36708134, + "firstCornerYOffsetPercentage": 0.37613043, + "rank": 3, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.37613043, + "text": "Lou Welgryn", + "secondCornerXOffsetPercentage": 0.36708134 + }, + { + "firstCornerXOffsetPercentage": 0.45205644, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.7979929, + "url": "https://www.linkedin.com/in/in%C3%A8s-pitavy-998247104", + "urn": "urn:li:fs_miniProfile:ACoAABpgUMQBr63vQWdmpbkX8l1T4wJWJeI9Wh4", + "thirdCornerXOffsetPercentage": 0.45205644, + "secondCornerYOffsetPercentage": 0.7979929, + "fourthCornerXOffsetPercentage": 0.45205644, + "firstCornerYOffsetPercentage": 0.7979929, + "rank": 3, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.7979929, + "text": "In\u00e8s Pitavy", + "secondCornerXOffsetPercentage": 0.45205644 + }, + { + "firstCornerXOffsetPercentage": 0.42014125, + "type": "PHOTO_TAG", + "thirdCornerYOffsetPercentage": 0.27046072, + "url": "https://www.linkedin.com/in/margot-mabille-715671120", + "urn": "urn:li:fs_miniProfile:ACoAAB3_icEBzrsayYcor3q-mZdGJ8daGKGBTHA", + "thirdCornerXOffsetPercentage": 0.42014125, + "secondCornerYOffsetPercentage": 0.27046072, + "fourthCornerXOffsetPercentage": 0.42014125, + "firstCornerYOffsetPercentage": 0.27046072, + "rank": 3, + "untaggable": false, + "fourthCornerYOffsetPercentage": 0.27046072, + "text": "Margot Mabille", + "secondCornerXOffsetPercentage": 0.42014125 + } + ], + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFEvUHNeQUbTg", + "artifacts": [ + { + "width": 1920, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1617006073351?e=1679529600&v=beta&t=2p6eGMaY2J2usuKCpZDOiGEeZcIEmnaoWHdVp9YxdSc", + "expiresAt": 1679529600000, + "height": 1080 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1617006073311?e=1679529600&v=beta&t=jILXt9VMZcQ6svm0noHkhFq2-7i0BSiL3k8APZWd5U8", + "expiresAt": 1679529600000, + "height": 11 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1617006073311?e=1679529600&v=beta&t=XWodga1QYoMGZqejRcB0PSx3DKeWHyIhQMD0Eb1I6OY", + "expiresAt": 1679529600000, + "height": 720 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1617006073311?e=1679529600&v=beta&t=ApkK-C_IeNRNgT-4taucCw2iYTSXUkAY4XpWShwiZxQ", + "expiresAt": 1679529600000, + "height": 270 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1617006073311?e=1679529600&v=beta&t=ptui5LFNsSx93PMIUqzxiSPH2r3-7dRLOOIa8wRwNtw", + "expiresAt": 1679529600000, + "height": 90 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1617006073311?e=1679529600&v=beta&t=WTGiRLEfMaAQFCH_t3Tsj9KnanMWnLrPeNthztxMAJY", + "expiresAt": 1679529600000, + "height": 450 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFEvUHNeQUbTg/feedshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "text" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6782215043745370112,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Error 404 - planet B not found. \ud83c\udf0d\nMobilisation des alumni et \u00e9tudiants pour une loi climat \u00e0 la hauteur des enjeux !\n\nLe projet de loi Climat et R\u00e9silience est vot\u00e9 \u00e0 partir de ce lundi \u00e0\nl'Assembl\u00e9e Nationale.\n\nL'objectif de cette loi ? Lutter contre le d\u00e9r\u00e8glement climatique et renforcer la r\u00e9silience face \u00e0 ses effets pour nous permettre d\u2019atteindre l\u2019objectif de diminution de 40% des \u00e9missions de gaz \u00e0 effets de serre \u00e0 l\u2019horizon 2030.\n\nEn l\u2019\u00e9tat actuel, ce projet de loi est en total d\u00e9calage avec la temporalit\u00e9 que les lois de la physique nous imposent. De l\u2019avis du Haut Conseil pour Climat, il \u00ab manque d\u2019ambition sur la port\u00e9e, le p\u00e9rim\u00e8tre ou le calendrier des r\u00e9formes propos\u00e9es \u00bb.\n\nEt on ne peut se le permettre ! \ud83d\ude30\n\n\ud83d\udc49 Avec Essec Transition Alumni et de nombreuses autres associations d'alumni et d'\u00e9tudiants nous avons lanc\u00e9 une lettre aux d\u00e9put\u00e9s - Nous leur demandons de voter les amendements qui permettront le plus fid\u00e8lement de mettre en oeuvre les propositions formul\u00e9es par la Convention Citoyenne pour le Climat et qu'ils s'engagent \u00e0 se former aux enjeux climatiques.\n\n\ud83d\udc4a Rejoignez le mouvement des centaines de signataires en signant le manifeste \ud83d\udc49 https://lnkd.in/daiZWgk # #" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6782215043745370112,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6782215044399689728,urn:li:activity:6782215044399689728,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 4, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6782215044399689728,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6782215044399689728,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6782215044399689728", + "threadId": "activity:6782215044399689728", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782215044399689728", + "urn": "urn:li:activity:6782215044399689728", + "numComments": 4, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6782215044399689728", + "reactionTypeCounts": [ + { + "count": 93, + "reactionType": "LIKE" + }, + { + "count": 9, + "reactionType": "PRAISE" + }, + { + "count": 8, + "reactionType": "EMPATHY" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6782215044399689728", + "numLikes": 116, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782215044399689728", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 116, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6782910064400310272", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6782910064400310272)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6782910064400310272)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_error-404-planet-b-not-found-mobilisation-activity-6782910064400310272-rKI-?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6782910064022835200", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6782910064400310272", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6782910064400310272,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6782910064400310272,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6782910064022835200", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "3oVCIUWdGt6ePNENA1sfJw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6782910064400310272,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6782910064022835200,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 129, + "length": 15, + "miniProfile": { + "firstName": "Emmanuel", + "lastName": "Macron", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "occupation": "President of the French Republic.", + "objectUrn": "urn:li:member:460985102", + "entityUrn": "urn:li:fs_miniProfile:ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1658512055373?e=1681948800&v=beta&t=oAXGUg9l2gwyfAzicqbMlNiSqyVYOiq3JHstz45ihuw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1658512055373?e=1681948800&v=beta&t=d9PVrg04Ny6bRijPYkF2Nktft8I5bYzcAmJ8WgN0Brg", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E16AQG2GM1e-N7i6w/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "emmanuelmacron", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1658512084911?e=1681948800&v=beta&t=uxOuYRndk2EFTJs2a_P8gpIB0ADUIpNDsoQH4VCXPrI", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1658512084911?e=1681948800&v=beta&t=DeVk6EkG7TyRn0eGJWbOlaULTbGS-3sINjlBWHRA8Ns", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1658512084911?e=1681948800&v=beta&t=rlcFEwiuRZqX6S0-X1jDpHruSRm6si9EnuXtEqYjDUc", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1658512084911?e=1681948800&v=beta&t=EH_MSBwiepRlorQtr7El-NJjZDS7WbbiJ-LW96ifNWw", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E03AQG2dadNe-UkXw/profile-displayphoto-shrink_" + } + }, + "trackingId": "lLopOqBRQCaN0z1n69rWpw==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Les propositions de la CCC n'\u00e9taient peut-\u00eatre pas \u00e0 reprendre \"sans filtre\". Mais le commanditaire de cette affaire, un certain Emmanuel Macron, avait fix\u00e9 un cadre \u00e0 la CCC : proposer de quoi faire baisser de 40% des \u00e9missions fran\u00e7aises de 40% entre 1990 et 2030.\n\nD\u00e8s lors, le refus d'une proposition de la CCC aurait du s'accompagner d'une \"contre-proposition\" de l'Etat pour parvenir \u00e0 la m\u00eame baisse mais d'une autre mani\u00e8re. En rejetant/minorant les propositions, mais sans avoir de plan B tout en conservant l'affichage sur l'objectif, l'Etat se met dans une situation incoh\u00e9rente. \n\nJe relaie donc cet appel avec un tout petit amendement \"\u00e0 moi\" : je ne demande pas aux d\u00e9put\u00e9s qu'ils s'engagent \u00e0 voter les propositions de la CCC, mais qu'ils s'engagent \u00e0 voter une loi qui soit en coh\u00e9rence avec l'objectif de -40%, ou alors qu'ils d\u00e9clarent solennellement que cet objectif leur indiff\u00e8re. \n\nMais \u00e0 un moment, il faut choisir...\n" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6782910064022835200,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6782910064400310272,urn:li:activity:6782910064400310272,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 8, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6782910064400310272,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6782910064400310272,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6782910064400310272", + "threadId": "activity:6782910064400310272", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782910064400310272", + "urn": "urn:li:activity:6782910064400310272", + "numComments": 16, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6782910064400310272", + "reactionTypeCounts": [ + { + "count": 551, + "reactionType": "LIKE" + }, + { + "count": 48, + "reactionType": "PRAISE" + }, + { + "count": 26, + "reactionType": "APPRECIATION" + }, + { + "count": 16, + "reactionType": "EMPATHY" + }, + { + "count": 6, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6782910064400310272", + "numLikes": 649, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782910064400310272", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 649, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6782767853645901824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "resharedUpdate": { + "actor": { + "urn": "urn:li:company:1024481", + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 9, + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "xxdjtQcQQMq3XztOMmN8mg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "Carbone 4" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481", + "trackingId": "xxdjtQcQQMq3XztOMmN8mg==" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "navigationContext": { + "trackingActionType": "viewCompany", + "accessibilityText": "View company: Carbone 4", + "actionTarget": "https://www.linkedin.com/company/carbone-4/?miniCompanyUrn=urn%3Ali%3Afs_miniCompany%3A1024481" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "118,673 followers" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6782652522382299137,MEMBER_SHARES,EMPTY,RESHARED,false)", + "updateMetadata": { + "urn": "urn:li:activity:6782652522382299137", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6782652522382299137)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6782652522382299137)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/carbone-4_offre-gestionnaire-administratif-rh-activity-6782652522382299137-EYbw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6782652522004807680", + "contentSource": "UGC_POST", + "authorUrn": "urn:li:company:1024481", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6782652522382299137,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6782652522382299137,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6782652522004807680", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "qPbrmbdfCdEyPWB+xe1yVg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6782652522382299137,MEMBER_SHARES,EMPTY,RESHARED,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7377026941603505973", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 520, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1617110328452?e=1679529600&v=beta&t=NqlWQIxel8zFsQRpaf-1-jBL_WSOSdQtYY4i5wJRAy4", + "expiresAt": 1679529600000, + "height": 272 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1617110328459?e=1679529600&v=beta&t=gbQ9I5fl8CKXehvrXHwlyW591vl1bf5ZgZgDgfioBQ8", + "expiresAt": 1679529600000, + "height": 10 + }, + { + "width": 520, + "fileIdentifyingUrlPathSegment": "1280/0/1617110328459?e=1679529600&v=beta&t=0NvJwQffdd7SPJbHXGTX_uU_oFXa5VtTrLB6Bv0DDMU", + "expiresAt": 1679529600000, + "height": 272 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1617110328459?e=1679529600&v=beta&t=9ZIgbj4J3lYe4Eh5A0fchASkN5p82QPSHxT9sToFzio", + "expiresAt": 1679529600000, + "height": 251 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1617110328459?e=1679529600&v=beta&t=Dhqm80Dm-j7_7q0kJGSYzPcyVg5_vw8BJfEG7HPN07A", + "expiresAt": 1679529600000, + "height": 83 + }, + { + "width": 520, + "fileIdentifyingUrlPathSegment": "800/0/1617110328459?e=1679529600&v=beta&t=dIC22p1_WV_D6WKow147NPiCyfsincMKp5xVD3HRHuY", + "expiresAt": 1679529600000, + "height": 272 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D22AQGlwjorCxGRuA/feedshare-shrink_" + }, + "displayAspectRatio": 0.5230769230769231 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7377026941603505973)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7377026941603505973)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Offre - Gestionnaire administratif RH by carbone4.com", + "actionTarget": "http://www.carbone4.com/offre-gestionnaire-administratif-rh/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Offre - Gestionnaire administratif RH" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6782652522004807680,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "\ud83d\udccc Vous souhaitez rejoindre une entreprise \u00e0 impact, qui a pour ambition de r\u00e9soudre la crise climatique et qui a \u00e0 c\u0153ur de former organisations, grand public et politiques sur les sujets de la transformation bas-carbone de nos soci\u00e9t\u00e9s ? \n\nVous voulez rejoindre une \u00e9quipe passionn\u00e9e, dynamique, rigoureuse et ambitieuse ? \n\n\ud83d\udc49 Carbone 4 cherche un\u00b7e Gestionnaire Administratif RH pour renforcer l\u2019\u00e9quipe et soutenir l\u2019\u00e9volution du cabinet ! \n\nD\u00e9couvrez l\u2019offre \u2935\ufe0f" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6782652522004807680,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6782652522382299137,urn:li:activity:6782652522382299137,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 0, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6782652522382299137,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6782652522382299137,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6782652522382299137", + "threadId": "activity:6782652522382299137", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782652522382299137", + "urn": "urn:li:activity:6782652522382299137", + "numComments": 0, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6782652522382299137", + "reactionTypeCounts": [ + { + "count": 45, + "reactionType": "LIKE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6782652522382299137", + "numLikes": 45, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782652522382299137", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 45, + "links": [] + }, + "elements": [] + } + } + }, + "updateMetadata": { + "urn": "urn:li:activity:6782767853645901824", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6782767853645901824)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6782767853645901824)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_offre-gestionnaire-administratif-rh-activity-6782767853645901824-r__H?utm_source=share&utm_medium=member_desktop" + }, + { + "subActionsMenu": { + "title": "Who would you like to unfollow?", + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "miniCompany": { + "objectUrn": "urn:li:company:1024481", + "entityUrn": "urn:li:fs_miniCompany:1024481", + "name": "Carbone 4", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626269031730?e=1684972800&v=beta&t=rfJGK2e3iterLsOsSISWYBKQfwRsHbVRefpndEMkvPQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626269031730?e=1684972800&v=beta&t=RdCLexoU6sLuxazvQlgNfFeH4Wfhc6NXzSzW9yDnXqw", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626269031730?e=1684972800&v=beta&t=LuPzdb3bCuaLwxQ0d-zT9XKdKpEEgBhM46jfzYljHFk", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4E0BAQGvsTIZAJifHQ/company-logo_" + } + }, + "universalName": "carbone-4", + "dashCompanyUrn": "urn:li:fsd_company:1024481" + }, + "sourceType": "COMPANY_LOGO" + } + ] + }, + "actionType": "UNFOLLOW_COMPANY", + "text": "Carbone 4", + "followAction": { + "followTrackingActionType": "followCompany", + "companyFollowingTrackingContext": "MOBILE_NON_SSU", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:company:1024481", + "followerCount": 118673, + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_company:1024481", + "following": true, + "trackingUrn": "urn:li:company:1024481" + }, + "unfollowTrackingActionType": "unfollowCompany", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowCompany" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see posts from Carbone 4 in your feed" + }, + "undoable": true + } + } + ] + }, + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_ACTIONS", + "text": "Unfollow" + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6782767853335543808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6782767853645901824", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6782767853645901824,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6782767853645901824,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6782767853335543808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "qPbrmbdfCdEyPWB+xe1yVg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6782767853645901824,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6782767853335543808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A vos CV pour les int\u00e9ress\u00e9(e)s !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6782767853335543808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6782767853645901824,urn:li:activity:6782767853645901824,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 6, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6782767853645901824,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6782767853645901824,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6782767853645901824", + "threadId": "activity:6782767853645901824", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782767853645901824", + "urn": "urn:li:activity:6782767853645901824", + "numComments": 6, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6782767853645901824", + "reactionTypeCounts": [ + { + "count": 81, + "reactionType": "LIKE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6782767853645901824", + "numLikes": 86, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782767853645901824", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 86, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6782556623136153600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6782556623136153600", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6782556623136153600)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6782556623136153600)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-interview-dans-la-revue-du-trombinoscope-activity-6782556623136153600-qoDT?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6782556622674763776", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6782556623136153600", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6782556623136153600,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6782556623136153600,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6782556622674763776", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "NuT2cVOf4TAY1nVUPqBbBw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6782556623136153600,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7108732580664110255", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 760, + "fileIdentifyingUrlPathSegment": "800/0/1675590075222?e=1677240000&v=beta&t=laIZNC0yGyclRubrPJ0BcAiwl7VD5EOdg9QKSO8zxjQ", + "expiresAt": 1677240000000, + "height": 1088 + }, + { + "width": 559, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675590075223?e=1677240000&v=beta&t=GTNTcV3wNv6xL90gylxoolpgA2wHvRFI44lb8ft65fA", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675590075223?e=1677240000&v=beta&t=sszG4bcBHY4-vYq7Qwnk-1PyIsmSDviE3-bdgMJY9S0", + "expiresAt": 1677240000000, + "height": 229 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675590075223?e=1677240000&v=beta&t=CpGjg3_rOhjOtDvwijlwJJr4zlQ6CnAoaZWVI50OXHU", + "expiresAt": 1677240000000, + "height": 687 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGZ55j_0CEhWQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.431578947368421 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7108732580664110255)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7108732580664110255)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 9 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Une interview dans La Revue du Trombinoscope en mars 2021 by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/interviews/une-interview-dans-la-revue-du-trombinoscope-en-mars-2021/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Une interview dans La Revue du Trombinoscope en mars 2021" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6782556622674763776,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'un des charmes des interviews (qui sont des exercices qui n'ont pas que des avantages !), c'est que cela permet parfois de d\u00e9couvrir l'existence d'une publication dont le nom vous \u00e9tait totalement inconnu avant d'\u00eatre contact\u00e9 par la r\u00e9daction de la publication en question.\n\nC'est ainsi que j'ai d\u00e9couvert \"la revue du trombinoscope\", \u00e9dit\u00e9e par les gestionnaires d'un annuaire - intitul\u00e9e sans surprise \"le trombinoscope\" - de personnages politiques fran\u00e7ais et europ\u00e9ens.\n\nJ'imagine que leurs lecteurs sont essentiellement des personnes travaillant dans ou avec le monde politique, puisque, sans surprise, l'interview a port\u00e9... sur le r\u00f4le du politique. Actualit\u00e9 oblige, cela a d\u00e9marr\u00e9 par un petit couplet sur la convention citoyenne.\n\nEst-ce utile de donner des interviews ? L'histoire ne s'\u00e9crivant qu'une fois, impossible de le savoir de mani\u00e8re formelle. Disons que, vu le temps que cela prend, si cela permet de convaincre quelques d\u00e9put\u00e9s, s\u00e9nateurs, ou grands \u00e9lus locaux qu'ils doivent mettre plus de visions pour l'avenir en coh\u00e9rence avec les limites plan\u00e9taires, je serai tr\u00e8s loin d'avoir perdu mon temps. Et si ca ne sert \u00e0 rien cette fois ci, \u00e0 tout le moins j'y gagne une occasion suppl\u00e9mentaire de v\u00e9rifier, pendant la relecture, que je suis raccord avec moi-m\u00eame :)" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6782556622674763776,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6782556623136153600,urn:li:activity:6782556623136153600,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 14, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6782556623136153600,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6782556623136153600,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6782556623136153600", + "threadId": "activity:6782556623136153600", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782556623136153600", + "urn": "urn:li:activity:6782556623136153600", + "numComments": 15, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6782556623136153600", + "reactionTypeCounts": [ + { + "count": 205, + "reactionType": "LIKE" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "INTEREST" + }, + { + "count": 6, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6782556623136153600", + "numLikes": 234, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782556623136153600", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 234, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6782549956742938624,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6782549956742938624", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6782549956742938624)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6782549956742938624)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_vous-avez-dit-m%C3%A9thane-activity-6782549956742938624-gpz_?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6782549956256387074", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6782549956742938624", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6782549956742938624,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6782549956742938624,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6782549956256387074", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "oLFMG3idS754AtxgvDIUIQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6782549956742938624,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9035842339059183620", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675674096688?e=1677240000&v=beta&t=wWgY52LvAdfxjxOzUGBgO3Ph6hDzVgUW1JRNTMmJmF8", + "expiresAt": 1677240000000, + "height": 533 + }, + { + "width": 1201, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675674096688?e=1677240000&v=beta&t=fu3bsWgnHfMfFjVSXh_oOi88GwZMpaiclJx_51OJ9_M", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675674096689?e=1677240000&v=beta&t=V1NMQciqKqBrpEHb2lX-cWIriAqaUUcNQL1o84oJOww", + "expiresAt": 1677240000000, + "height": 107 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675674096689?e=1677240000&v=beta&t=-tpDpZGzqyhjqYzmf2K-PCRJJ6SAZk698nkf60De5rs", + "expiresAt": 1677240000000, + "height": 320 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEJrugcpyRngg/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9035842339059183620)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9035842339059183620)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Vous avez dit m\u00e9thane ? by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/articles-de-presse/vous-avez-dit-methane/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Vous avez dit m\u00e9thane ?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6782549956256387074,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Si un nombre croissant de personnes savent aujourd'hui que la viande rouge est une source de gaz \u00e0 effet de serre \"qui compte\", il n'est pas sur qu'elles sauraient toutes citer le principal gaz associ\u00e9 \u00e0 l'\u00e9levage bovin.\n\nSouvent rel\u00e9gu\u00e9 \"dans l'ombre\" par le CO2 qui tient le faut du pav\u00e9 (\u00e0 raison au vu de son importance dans l'ensemble), le m\u00e9thane est beaucoup plus rarement cit\u00e9 dans les causes du changement climatique, et, par voie de cons\u00e9quence, dans les mesures \u00e0 mettre en oeuvre. \n\nA la Commission Europ\u00e9enne, par exemple, les d\u00e9bats sont nombreux autour de mesures visant \u00e0 limiter les \u00e9missions de CO2 : normalisation des voitures, r\u00e9novation des b\u00e2timents, quotas n\u00e9gociables pour l'industrie, etc. Mais de limitation du cheptel, et des contreparties qui permettraient de marier cela avec plus d'emploi dans l'agriculture, il n'en est pas souvent question !\n\nD'o\u00f9 viennent les \u00e9missions de ce gaz, quels en sont les processus \u00e0 l'origine, et quelle place prend-il dans l'ensemble de nos \u00e9missions ? C'\u00e9tait le th\u00e8me de cette chronique parue dans l'Express il y a une semaine." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6782549956256387074,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6782549956742938624,urn:li:activity:6782549956742938624,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 81, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6782549956742938624,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6782549956742938624,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6782549956742938624", + "threadId": "activity:6782549956742938624", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782549956742938624", + "urn": "urn:li:activity:6782549956742938624", + "numComments": 179, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6782549956742938624", + "reactionTypeCounts": [ + { + "count": 1242, + "reactionType": "LIKE" + }, + { + "count": 182, + "reactionType": "INTEREST" + }, + { + "count": 87, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "APPRECIATION" + }, + { + "count": 4, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6782549956742938624", + "numLikes": 1537, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782549956742938624", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1537, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6782300907150303232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6782300907150303232", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6782300907150303232)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6782300907150303232)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_leak-eu-experts-to-say-nuclear-power-qualifies-activity-6782300907150303232-JtAV?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6782300906537943040", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6782300907150303232", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6782300907150303232,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6782300907150303232,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6782300906537943040", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "Ayf39DuolM8hKeahAqyElw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6782300907150303232,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8391854353249639449", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676481692347?e=1677240000&v=beta&t=zlRYOoG-5Ttx5eDvgkwB1opNpvmUsf6RpM48yXDJeoE", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676481692347?e=1677240000&v=beta&t=dn-zfiifxViWXTE9fZPs5a9QcivkoKMwun-ArfzgV7w", + "expiresAt": 1677240000000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676481692347?e=1677240000&v=beta&t=3lfWc0JGnxiUZDcr9dvpDG7W1xehtT7LnEkyZRdS1_8", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676481692347?e=1677240000&v=beta&t=1keguY0sfAvTZ_riqHN_xNqvyae4BXILCXDH7pVTjc0", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHsK11yUs6wOw/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8391854353249639449)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8391854353249639449)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "euractiv.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: LEAK: EU experts to say nuclear power qualifies for green investment label by euractiv.com", + "actionTarget": "https://www.euractiv.com/section/energy-environment/news/leak-eu-experts-to-say-nuclear-power-qualifies-for-green-investment-label/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "LEAK: EU experts to say nuclear power qualifies for green investment label" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6782300906537943040,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il lui faut 387 pages pour arriver \u00e0 cette conclusion, mais le Joint Research Centre, saisi par la Commission pour savoir si le nucl\u00e9aire est \u00e9ligible comme \u00e9nergie verte dans le cadre de la taxonomie destin\u00e9e aux investisseurs, a r\u00e9pondu \"oui\".\n\nOn peut lire dans le rapport - disponible l\u00e0 : https://lnkd.in/dAV5WF4 - \"The analyses outlined in Chapter 3.2 did not reveal any science-based evidence that nuclear energy does more harm to the human health or to the environment than other electricity production technologies already included in the Taxonomy as activities supporting climate change mitigation. \"\n\nOn ne saurait \u00eatre plus clair. Reste \u00e0 voir si cette conclusion franchira la barri\u00e8re des compromis politiques. En effet, on peut citer de nombreux exemples o\u00f9 l'acte politique final de la Commission ignore un fait document\u00e9 par la communaut\u00e9 scientifique (le JRC est un centre de recherche). Esp\u00e9rons que cette fois ci ca ne soit pas le cas." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6782300906537943040,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6782300907150303232,urn:li:activity:6782300907150303232,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 70, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6782300907150303232,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6782300907150303232,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6782300907150303232", + "threadId": "activity:6782300907150303232", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782300907150303232", + "urn": "urn:li:activity:6782300907150303232", + "numComments": 346, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6782300907150303232", + "reactionTypeCounts": [ + { + "count": 2639, + "reactionType": "LIKE" + }, + { + "count": 216, + "reactionType": "PRAISE" + }, + { + "count": 162, + "reactionType": "INTEREST" + }, + { + "count": 92, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "EMPATHY" + }, + { + "count": 23, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6782300907150303232", + "numLikes": 3155, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782300907150303232", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3155, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6782286087348867072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6782286087348867072", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6782286087348867072)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6782286087348867072)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_invitation-webinaire-quel-d%C3%A9ploiement-activity-6782286087348867072-WpN0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6782286086874923011", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6782286087348867072", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6782286087348867072,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6782286087348867072,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6782286086874923011", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "2Hu7xzxGUOzQZJVF4FssEw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6782286087348867072,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8406541547074151548", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675423399795?e=1677240000&v=beta&t=39vvOH0U5ss6fojy2cuOrxHN9fB2g0OE-8YaNi35AdQ", + "expiresAt": 1677240000000, + "height": 400 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675423399795?e=1677240000&v=beta&t=jKlwTtCU72iqrCArjT51bxRkoWesFhmBDv1C2xOB4i4", + "expiresAt": 1677240000000, + "height": 408 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675423399795?e=1677240000&v=beta&t=ENMG8YUMbZPME8h1nIsM9dVAM-CoC03iMiTKH6R_K-8", + "expiresAt": 1677240000000, + "height": 80 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675423399796?e=1677240000&v=beta&t=JaT8pB39qG-1EATDANNUfmISClVTAtsY-K_QW-SBdtw", + "expiresAt": 1677240000000, + "height": 240 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFESbEyVJ5k3Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8406541547074151548)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8406541547074151548)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: [Invitation] Webinaire \"Quel d\u00e9ploiement pour la 5G ?\" - 30 Mars by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/invitation-webinaire-5g-et-numerique-soutenable-mardi-30-mars/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "[Invitation] Webinaire \"Quel d\u00e9ploiement pour la 5G ?\" - 30 Mars" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6782286086874923011,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Demain \u00e0 18h, The Shift Project organise un webinaire autour de la nouvelle publication de notre think tank sur le num\u00e9rique, et plus particuli\u00e8rement sur la 5G.\n\nApr\u00e8s le Haut conseil pour le climat, qui a propos\u00e9 que l'Arcep mette sous condition d'empreinte carbone les attributions de fr\u00e9quence aux op\u00e9rateurs, The Shift Project pr\u00e9sentera ses propositions, qui sont globalement en coh\u00e9rence. \n\nCar, il faut le rappeler : tant qu'il n'y a pas de contrainte sur les usages, aucun progr\u00e8s technique n'a jamais permis de faire baisser l'empreinte carbone sectorielle concern\u00e9e (celle de la mobilit\u00e9 comme celle du num\u00e9rique). La 5G n'a donc pas comme objectif d'augmenter l'efficacit\u00e9 \u00e9nerg\u00e9tique des t\u00e9l\u00e9communications, mais d'augmenter les d\u00e9bits, avec une hausse de l'\u00e9nergie (et du CO2) associ\u00e9e qui sera \"juste\" un peu moins rapide." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6782286086874923011,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6782286087348867072,urn:li:activity:6782286087348867072,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 9, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6782286087348867072,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6782286087348867072,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6782286087348867072", + "threadId": "activity:6782286087348867072", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782286087348867072", + "urn": "urn:li:activity:6782286087348867072", + "numComments": 9, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6782286087348867072", + "reactionTypeCounts": [ + { + "count": 96, + "reactionType": "LIKE" + }, + { + "count": 13, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "INTEREST" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6782286087348867072", + "numLikes": 117, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6782286087348867072", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 117, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6781952187544170496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6781952187544170496", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6781952187544170496)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6781952187544170496)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_lassociation-europ%C3%A9enne-des-op%C3%A9rateurs-de-activity-6781952187544170496-yyms?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6781952186839515137", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6781952187544170496", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6781952187544170496,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6781952187544170496,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6781952186839515137", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "vmPmy85pk5OQNkpG8/TD4A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6781952187544170496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "DEFAULT", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQHjYsI6uLuHUg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQHjYsI6uLuHUg", + "artifacts": [ + { + "width": 1062, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1616943401678?e=1679529600&v=beta&t=H6tU09Oz5dqBpI9jWJtYE8IdzhkkQR454xa-D64HDJ8", + "expiresAt": 1679529600000, + "height": 1356 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1616943403428?e=1679529600&v=beta&t=dYJGBhL4UNZgeYNGKJXR5NxgM2B6e-s3kLgT0lLn0bo", + "expiresAt": 1679529600000, + "height": 26 + }, + { + "width": 1062, + "fileIdentifyingUrlPathSegment": "1280/0/1616943403428?e=1679529600&v=beta&t=0BQ9eltgBmELb-x9kzgkeIWOubORNfgnYOLko8iC9rg", + "expiresAt": 1679529600000, + "height": 1356 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1616943403428?e=1679529600&v=beta&t=oaept1Mnbu1h40qhyqBlT-_PrzD8xJXCi851_5nrg68", + "expiresAt": 1679529600000, + "height": 613 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1616943403428?e=1679529600&v=beta&t=e11ASNES52b3rGCXIiwXD_mjSaOT04gzxGl2SAaIlXs", + "expiresAt": 1679529600000, + "height": 204 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1616943403428?e=1679529600&v=beta&t=4a0rfA_k9qX22Egub_zTg4QI6aU6GLV8x9dKLYM_hDA", + "expiresAt": 1679529600000, + "height": 1021 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQHjYsI6uLuHUg/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "No alternative text description for this image" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6781952186839515137,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "L'association europ\u00e9enne des op\u00e9rateurs de t\u00e9l\u00e9communications a command\u00e9 au BCG un rapport sur l'impact de la 5G - https://lnkd.in/dn37biz - pour vanter cette avanc\u00e9e technique. \n\nLes r\u00e9sultats sont annonc\u00e9s avec cette phrase : \"Europe can create 2.4 million new jobs within the next four years through digital transformation, while boosting economic growth and accelerating green transformation\". Car ca sera green : on peut lire dans la copie du BCG que \"an extensive and network-enabled uptake of smart digital solutions across sectors can enable a 15% reduction of the global CO2 emissions\" (aucune source ni aucun calcul \u00e0 l'appui de cette affirmation). \n\nPour 300 milliards mis dans la 5G, nous allons donc avoir plus de PIB, plus d'emplois, et beaucoup moins de CO2. Qui ne serait s\u00e9duit ? Surement le \"Directorate\u2011General for Communications Networks, Content and Technology\", puisqu'il est le \"Commission department responsible to develop a digital single market to generate smart, sustainable and inclusive growth in Europe\" : https://lnkd.in/dfPt7kz\n\nPour 300 milliards, il est surement possible de faire baisser les \u00e9missions europ\u00e9ennes. Mais je doute que la 5G soit tr\u00e8s utile pour y parvenir." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6781952186839515137,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6781952187544170496,urn:li:activity:6781952187544170496,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 22, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6781952187544170496,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6781952187544170496,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6781952187544170496", + "threadId": "activity:6781952187544170496", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6781952187544170496", + "urn": "urn:li:activity:6781952187544170496", + "numComments": 92, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6781952187544170496", + "reactionTypeCounts": [ + { + "count": 276, + "reactionType": "LIKE" + }, + { + "count": 25, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "INTEREST" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6781952187544170496", + "numLikes": 334, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6781952187544170496", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 334, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6781591010230185984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6781591010230185984", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6781591010230185984)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6781591010230185984)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_eu-to-offer-gas-plants-a-green-finance-label-activity-6781591010230185984-LV0F?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6781591009752047616", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6781591010230185984", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6781591010230185984,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6781591010230185984,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6781591009752047616", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "BnlxS1HoU/L5J5uC8U0/aQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6781591010230185984,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8068074519086064564", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676145647362?e=1677240000&v=beta&t=jwJhj06XrX3QssRhazkqPvUOk3iqumaLHysz_WOe35g", + "expiresAt": 1677240000000, + "height": 449 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676145647362?e=1677240000&v=beta&t=dqSHVDVPI631ftVrn9JxUcVq0FYNXPAenDNJNCc-vGw", + "expiresAt": 1677240000000, + "height": 719 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676145647362?e=1677240000&v=beta&t=K0jecl0aolG4mV-WMcnfDjcEKBrKgKcR7Kggw6vd-jc", + "expiresAt": 1677240000000, + "height": 89 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676145647362?e=1677240000&v=beta&t=B9NMm7gSb1CSbwoLpqdDbR_83rOTWsWD90IMPHkB61k", + "expiresAt": 1677240000000, + "height": 269 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQE2ADWylLSxhQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.56125 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8068074519086064564)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8068074519086064564)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "euractiv.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: EU to offer gas plants a green finance label, under certain conditions by euractiv.com", + "actionTarget": "https://www.euractiv.com/section/energy-environment/news/eu-to-offer-gas-plants-a-green-finance-label-under-certain-conditions/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "EU to offer gas plants a green finance label, under certain conditions" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6781591009752047616,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le gaz - qui \u00e9met du CO2 - c'est oui. La capture et s\u00e9questration du CO2 - qui n'existe pas \u00e0 grande \u00e9chelle - pour produire de l'hydrog\u00e8ne - qui ne dispose pas de syst\u00e8me de distribution et de v\u00e9hicules appropri\u00e9s \u00e0 grande \u00e9chelle, et qui n'en aura peut-\u00eatre jamais - c'est oui aussi (https://lnkd.in/dCvKKxp ).\n\nMais le nucl\u00e9aire, qui n'\u00e9met quasiment pas de CO2, et qui, avec une volont\u00e9 f\u00e9roce et les m\u00eames centaines de milliards que nous avons eus pour les ENR, pourrait tuer le charbon en 30 ans, c'est non pour le moment (https://lnkd.in/deYhiQY ).\n\nEn clair, si je remplace du charbon par du gaz - ce qui diminue les \u00e9missions par 2 - je suis vert, mais si je le remplace par du nucl\u00e9aire - ce qui divise les \u00e9missions par 100 - je ne le suis pas. \n\nSi je promeus une solution qui commencera \u00e0 se voir dans 30 ans (l'hydrog\u00e8ne avec capture du CO2 \u00e0 large \u00e9chelle), c'est \u00e0 dire au moment o\u00f9 le probl\u00e8me devra d\u00e9j\u00e0 avoir \u00e9t\u00e9 r\u00e9gl\u00e9 (!), je suis vert, mais si je d\u00e9ploie demain matin une technologie d\u00e9j\u00e0 existante, je ne le suis pas.\n\nAu fond ces d\u00e9cisions ne prouvent qu'une chose : que les d\u00e9cisionnaires dans l'affaire n'ont soit rien compris au probl\u00e8me, soit ont d\u00e9cid\u00e9 de n'en tenir aucun compte. Dans les deux cas de figure, c'est l\u00e9g\u00e8rement ennuyeux..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6781591009752047616,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6781591010230185984,urn:li:activity:6781591010230185984,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 132, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6781591010230185984,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6781591010230185984,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6781591010230185984", + "threadId": "activity:6781591010230185984", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6781591010230185984", + "urn": "urn:li:activity:6781591010230185984", + "numComments": 295, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6781591010230185984", + "reactionTypeCounts": [ + { + "count": 2756, + "reactionType": "LIKE" + }, + { + "count": 224, + "reactionType": "MAYBE" + }, + { + "count": 173, + "reactionType": "PRAISE" + }, + { + "count": 107, + "reactionType": "INTEREST" + }, + { + "count": 25, + "reactionType": "APPRECIATION" + }, + { + "count": 17, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6781591010230185984", + "numLikes": 3302, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6781591010230185984", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 3302, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6781585098799112192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6781585098799112192", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6781585098799112192)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6781585098799112192)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_australie-inondations-suite-%C3%A0-de-fortes-activity-6781585098799112192-j8YU?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6781585098400641024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6781585098799112192", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6781585098799112192,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6781585098799112192,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6781585098400641024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "umi0go1hARmDwO7RVP+XYA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6781585098799112192,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8923252494967469951", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676535536165?e=1677240000&v=beta&t=ZUoLNf4NlLAZoKiMxqDdPzrZP2AczC913IJfM4Rlwrc", + "expiresAt": 1677240000000, + "height": 549 + }, + { + "width": 1165, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676535536165?e=1677240000&v=beta&t=n5_G2H1eR5Rqm3_XOhxut0hOLB3a-nHLrP-EQnYIelk", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676535536165?e=1677240000&v=beta&t=w4wZJ1Bhf0U6aL-4M0W5wR7HuKbHyQs3JmXaKaXd8xQ", + "expiresAt": 1677240000000, + "height": 110 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676535536165?e=1677240000&v=beta&t=nTOr2ipvI9z-sv7z66Shhy4xRUBOGF2up2Tt9dUaklQ", + "expiresAt": 1677240000000, + "height": 329 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGiFHh2LkkONw/articleshare-shrink_" + }, + "displayAspectRatio": 0.68625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8923252494967469951)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8923252494967469951)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "meteofrance.com \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Australie : inondations suite \u00e0 de fortes pluies sur l'est du pays by meteofrance.com", + "actionTarget": "https://meteofrance.com/actualites-et-dossiers/actualites/planete/australie-inondations-suite-de-fortes-pluies-sur-lest-du-pays" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Australie : inondations suite \u00e0 de fortes pluies sur l'est du pays" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6781585098400641024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a un an, l'Australie sortait tout juste d'une vague de chaleur et de s\u00e9cheresse in\u00e9dite, ayant provoqu\u00e9 des incendies sans pr\u00e9c\u00e9dent. La m\u00eame zone (au sud-est) vient d'\u00eatre l'objet d'inondations \u00e9galement sans pr\u00e9c\u00e9dent, apr\u00e8s des records historiques de pr\u00e9cipitations.\n\nDans le m\u00eame esprit, les USA ont connu, \u00e0 6 mois d'intervalle, des records de chaleur puis une vague de froid tout autant sans pr\u00e9c\u00e9dent descendant jusqu'au Texas.\n\nLa d\u00e9rive climatique va rendre le climat plus \"oscillant\" (plus de s\u00e9cheresses, plus de pluies intenses, notamment), quoi que nous fassions : c'est \u00e9crit dans l'inertie du processus. Et cela arrivera pour l'essentiel dans un monde plus d\u00e9muni sur le plan \u00e9nerg\u00e9tique. C'est \u00e9crit aussi. Il serait peut-\u00eatre temps de partager un peu mieux cette information, et d'en tenir un peu plus compte dans nos priorit\u00e9s collectives ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6781585098400641024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6781585098799112192,urn:li:activity:6781585098799112192,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 33, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6781585098799112192,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6781585098799112192,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6781585098799112192", + "threadId": "activity:6781585098799112192", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6781585098799112192", + "urn": "urn:li:activity:6781585098799112192", + "numComments": 115, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6781585098799112192", + "reactionTypeCounts": [ + { + "count": 1059, + "reactionType": "LIKE" + }, + { + "count": 118, + "reactionType": "INTEREST" + }, + { + "count": 86, + "reactionType": "MAYBE" + }, + { + "count": 15, + "reactionType": "APPRECIATION" + }, + { + "count": 10, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6781585098799112192", + "numLikes": 1290, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6781585098799112192", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1290, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6781217083586830336,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6781217083586830336", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6781217083586830336)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6781217083586830336)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_banking-on-climate-chaos-rainforest-action-activity-6781217083586830336-bG4F?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6781217083020611584", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6781217083586830336", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6781217083586830336,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6781217083586830336,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6781217083020611584", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "vSKNUaBKbZ6nXsPgDCKchQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6781217083586830336,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7393710361719316756", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675724026322?e=1677240000&v=beta&t=W66DNl-fi0H1COVPZeda_wKrkcxtsCZpCUxEptVm2BE", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675724026322?e=1677240000&v=beta&t=fm1JNfQnEnNiYKAzmrxKfojfvGGWYo3AM2nUmjHBE3E", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675724026322?e=1677240000&v=beta&t=TmJDhHMlIz9s_lCLgauGHblHqYcIcbnnu8dlGlS_H-k", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675724026322?e=1677240000&v=beta&t=S6YxtRq1t7mGYXtzuOTOrMtzba6MHsQwo4lUZeUyQQg", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFcrNEwI796OA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7393710361719316756)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7393710361719316756)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "ran.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Banking on Climate Chaos - Rainforest Action Network by ran.org", + "actionTarget": "https://www.ran.org/bankingonclimatechaos2021/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Banking on Climate Chaos - Rainforest Action Network" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6781217083020611584,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "En utilisant les donn\u00e9es unitaires, transaction par transaction, de Bloomberg et de IJ Global, un groupe d'ONG (en couverture du rapport) propose une vision tr\u00e8s d\u00e9taill\u00e9e des presque 4000 milliards de dollars de financement fournis par les 60 plus grandes banques commerciales et d'investissement aux acteurs des combustibles fossiles (surtout oil & gas) de 2016 \u00e0 2020. De 2016 \u00e0 2019, la tendance \u00e9tait \u00e0 la hausse, de 700 \u00e0 800 milliards de $ par an.\n\nLe travail d'analyse a du \u00eatre tr\u00e8s cons\u00e9quent, parce que sur le site du rapport il est possible d'obtenir, \u00e0 la vol\u00e9e, des classements par banque, par op\u00e9rateur, par pays, par ann\u00e9e... et de t\u00e9l\u00e9charger toutes les donn\u00e9es correspondantes.\n\nC'est une excellente nouvelle que les ONG environnementales deviennent comp\u00e9tentes en mati\u00e8re de d\u00e9bats \u00e9conomiques. Dans les \u00e9changes d'il y a 20 ans, le monde de l'entreprise prenait souvent les militants environnementaux de haut, les accusant de ne rien comprendre aux grandes affaires de ce monde, et d'\u00eatre indiff\u00e9rents aux probl\u00e8mes d'emploi. \n\nPlus les ONG environnementales progresseront sur ces deux aspects, plus elles seront audibles dans le d\u00e9bat, et donc, paradoxalement, plus le monde \u00e9conomique sera forc\u00e9 de parler physique et biologie, lui qui, parfois, aime si peu ca." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6781217083020611584,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6781217083586830336,urn:li:activity:6781217083586830336,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 20, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6781217083586830336,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6781217083586830336,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6781217083586830336", + "threadId": "activity:6781217083586830336", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6781217083586830336", + "urn": "urn:li:activity:6781217083586830336", + "numComments": 45, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6781217083586830336", + "reactionTypeCounts": [ + { + "count": 549, + "reactionType": "LIKE" + }, + { + "count": 40, + "reactionType": "INTEREST" + }, + { + "count": 39, + "reactionType": "PRAISE" + }, + { + "count": 22, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6781217083586830336", + "numLikes": 656, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6781217083586830336", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 656, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6780752256594669568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6780752256594669568", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6780752256594669568)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6780752256594669568)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_clm-s428-jean-marc-jancovici-peut-on-activity-6780752256594669568-fmhj?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6780752256187813888", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6780752256594669568", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6780752256594669568,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6780752256594669568,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6780752256187813888", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "ZGrdPHgh8ytKDbyzK9uMuw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6780752256594669568,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:8770088854709212940", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676036443163?e=1677240000&v=beta&t=A3EfkZI4a8pmq3JlzxQ-ebj5bV6_7wfJJbOwZDvNH2Y", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676036443163?e=1677240000&v=beta&t=ch-UezpWVs38924v9qUXzL-MM5o839tbH30V1Egf4nQ", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676036443164?e=1677240000&v=beta&t=A97e5HLIQGR-dno1u2xbj_3rczNoj9Az0Kt_pmV3v8g", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676036443164?e=1677240000&v=beta&t=xLKFH3jjhTDfmoKOTOHguo-n7l4g-Obu-NMKtr8h1o0", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEKRH1xSTyFEA/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8770088854709212940)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8770088854709212940)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: CLM S4#28 - Jean-Marc Jancovici - \"Peut-on encore sauver le climat ?\" on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=Lga17P7WOGM" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "\u00c0 l\u2019horizon de la COP26 en septembre prochain \u00e0 Edimbourg, peut-on vraiment attendre quelque chose de ce nouveau rendez-vous sur les enjeux climatiques ? Comment l\u2019Accord de Paris de 2015 a-t-il pu \u00eatre obtenu ? Comment fonctionnent les n\u00e9gociations..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "CLM S4#28 - Jean-Marc Jancovici - \"Peut-on encore sauver le climat ?\"" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6780752256187813888,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 15, + "miniProfile": { + "firstName": "Pascal", + "lastName": "Boniface", + "dashEntityUrn": "urn:li:fsd_profile:ACoAABS_EWgBYcQJMbl1Fy69m94x5Gj0sLdQh8M", + "occupation": "Directeur et fondateur de l'IRIS - Institut de relations internationales et strat\u00e9giques", + "objectUrn": "urn:li:member:348066152", + "entityUrn": "urn:li:fs_miniProfile:ACoAABS_EWgBYcQJMbl1Fy69m94x5Gj0sLdQh8M", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1675846953974?e=1681948800&v=beta&t=SG731GhFhW_A93W5RfpKt4jb72R6mz7YzO_eojIsO1E", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1675846953974?e=1681948800&v=beta&t=PQxVjyDP_OTufm6LOIeYpcd44xtw0uChbsLHJVbBUb8", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E16AQGsPgCmI6Tyzw/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "pascal-boniface-20869798", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1553010089164?e=1681948800&v=beta&t=6r4mUTgAq7OGpwie5-jaTneh2CINs7c7HRgKK3h7hQQ", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1553010089164?e=1681948800&v=beta&t=cDWZU-nOmqcKzaQvAXHg3nxgK86bfZOHdHIvNtUrUTw", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1553010089164?e=1681948800&v=beta&t=B2ChUNMxpNLiaQ1SBHT2wxg9GV2x5Du-hnIWHq7qW4Q", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1553010089164?e=1681948800&v=beta&t=aI2Lm7f9HV1D4zTxaHosByRvcQi6FlVdgKXC8BWTiI0", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C5603AQGh-Lk-3VkQQg/profile-displayphoto-shrink_" + } + }, + "trackingId": "rIi7pw30RTubADq59bOyng==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Pascal Boniface m'a r\u00e9cemment fait une petite place dans son bureau pour \u00e9changer sur quelques sujets li\u00e9s au climat et \u00e0 l'\u00e9nergie.\n\nDe fa\u00e7on coh\u00e9rente avec le domaine de pr\u00e9dilection de l'h\u00f4te qui m'accueillait, une large partie des questions a concern\u00e9 les n\u00e9gociations internationales sur le climat (mais pas que).\n\nA l'approche de la COP 26 de Glasgow, pr\u00e9sent\u00e9e comme beaucoup d'autres avant comme celle de la \"derni\u00e8re chance\", un des \u00e9l\u00e9ments du d\u00e9bat a \u00e9t\u00e9 de se demander ce que l'on peut attendre de ce genre d'\u00e9v\u00e9nement. Bonne question !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6780752256187813888,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6780752256594669568,urn:li:activity:6780752256594669568,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 21, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6780752256594669568,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6780752256594669568,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6780752256594669568", + "threadId": "activity:6780752256594669568", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6780752256594669568", + "urn": "urn:li:activity:6780752256594669568", + "numComments": 26, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6780752256594669568", + "reactionTypeCounts": [ + { + "count": 459, + "reactionType": "LIKE" + }, + { + "count": 23, + "reactionType": "MAYBE" + }, + { + "count": 18, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "EMPATHY" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6780752256594669568", + "numLikes": 531, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6780752256594669568", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 531, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6780555846070878208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6780555846070878208", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6780555846070878208)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6780555846070878208)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_covid-ou-pas-covid-climat-ou-pas-climat-activity-6780555846070878208-bBYE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6780555845433344000", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6780555846070878208", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6780555846070878208,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6780555846070878208,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6780555845433344000", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "d7zA2lIbUcRu+M0azZUFZA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6780555846070878208,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQFHibj_XvfXhg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQFHibj_XvfXhg", + "artifacts": [ + { + "width": 1599, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1616610489686?e=1679529600&v=beta&t=VjaNoiw8eD5QTU_YPHon8gwOHT4nQuMM5U2jMh0XY-8", + "expiresAt": 1679529600000, + "height": 1050 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1616610489662?e=1679529600&v=beta&t=naPovyLKbI55-5W8cWt_96Zg6zRuw63LLK0z4cb3EqE", + "expiresAt": 1679529600000, + "height": 13 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1616610489662?e=1679529600&v=beta&t=yUH1roFe6BJ0wW2sK3y4_txSzNYTTrKg2DVRS_ef-vE", + "expiresAt": 1679529600000, + "height": 840 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1616610489662?e=1679529600&v=beta&t=JLIw1mJVBVXm-VDoCuNII9R_E-J4XPOWawYQl6bGQe8", + "expiresAt": 1679529600000, + "height": 315 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1616610489662?e=1679529600&v=beta&t=maM7Du-phhNrgkRCyeU_026DGLqCghU_mGogGyOdBRQ", + "expiresAt": 1679529600000, + "height": 105 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1616610489662?e=1679529600&v=beta&t=_D8Q7fpYjFKw5QHoodos890I5ezAhG5LHlA1G1cskbY", + "expiresAt": 1679529600000, + "height": 525 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQFHibj_XvfXhg/feedshare-shrink_" + }, + "displayAspectRatio": 0.6566604127579737 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "chart, histogram" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6780555845433344000,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Covid ou pas covid, climat ou pas climat, le grand plongeon de la production p\u00e9troli\u00e8re russe est en en vue. \n\nDans cette projection tout juste publi\u00e9e par Rystad Energy (qui n'a jamais consid\u00e9r\u00e9 que le climat serait un facteur limitant de la production, et qui n'int\u00e8gre que les r\u00e9serves physiques et la possibilit\u00e9 de les exploiter) on voit que, au mieux la production russe retrouvera son niveau de 2019 d'ici quelques ann\u00e9es, avant d'entamer un grand coup de toboggan qui verra sa production divis\u00e9e par 2 en 20 ans. \n\nLa Russie est le premier fournisseur de p\u00e9trole de l'Union Europ\u00e9enne. Le p\u00e9trole est depuis 40 ans le premier facteur limitant de l'\u00e9conomie. \n\nLa Russie n'est pas le seul pays fournissant l'Union qui soit en d\u00e9clin : https://lnkd.in/dW3FREk\n\nIl faut le dire et le r\u00e9p\u00e9ter : le plus probable est que nous allons devoir transitionner en d\u00e9croissance. Cela va tr\u00e8s fortement limiter le potentiel de diffusion des solutions high tech et/ou tr\u00e8s capitalistiques pour faire baisser les \u00e9missions." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6780555845433344000,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6780555846070878208,urn:li:activity:6780555846070878208,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 32, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6780555846070878208,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6780555846070878208,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6780555846070878208", + "threadId": "activity:6780555846070878208", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6780555846070878208", + "urn": "urn:li:activity:6780555846070878208", + "numComments": 85, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6780555846070878208", + "reactionTypeCounts": [ + { + "count": 730, + "reactionType": "LIKE" + }, + { + "count": 115, + "reactionType": "MAYBE" + }, + { + "count": 109, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6780555846070878208", + "numLikes": 962, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6780555846070878208", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 962, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6780413208957087745,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6780413208957087745", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6780413208957087745)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6780413208957087745)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_automobile-les-constructeurs-se-r%C3%A9signent-activity-6780413208957087745-VNn0?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6780413208445378560", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6780413208957087745", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6780413208957087745,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6780413208957087745,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6780413208445378560", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "EDXmxnBI4SYbBWz4n0w+4g==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6780413208957087745,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7795697746813716680", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676231703807?e=1677240000&v=beta&t=l4GERiO7anD8kWlIqCg6Dk1QtRCVS0Qg0SFyHJaAfkU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676231703807?e=1677240000&v=beta&t=z1bMYftMvpkacAfbbwRhbcvnypZyVPrRNrrUWLzrxsc", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676231703807?e=1677240000&v=beta&t=sBWpXUwzWe0z5QJfkEi6Zhd-mC_auQU73fmeyJQpotA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676231703807?e=1677240000&v=beta&t=n1_C7Tojr3vYEQinsnC2by9kz0TqWMIHRqOSbiN6J0c", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHr6gYyZ7oHZA/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7795697746813716680)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7795697746813716680)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Automobile : les constructeurs se r\u00e9signent \u00e0 la fin acc\u00e9l\u00e9r\u00e9e des moteurs thermiques by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/industrie-services/automobile/automobile-les-constructeurs-se-resignent-a-la-fin-acceleree-des-moteurs-thermiques-1300570" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Automobile\u00a0: les constructeurs se r\u00e9signent \u00e0 la fin acc\u00e9l\u00e9r\u00e9e des moteurs thermiques" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6780413208445378560,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Volskwagen, qui, au travers de ses 12 marques, assure un tiers des ventes automobiles en Europe, acc\u00e9l\u00e8re sur l'\u00e9lectrique. Comme ils ne sont pas les seuls, les voitures \u00e0 batterie pourraient repr\u00e9senter plus de la moiti\u00e9 des v\u00e9hicules neufs vendus en Europe en 2030.\n\nUne ann\u00e9e de ventes change 5% \u00e0 7% du parc. Si ces ventes sont \u00e0 moiti\u00e9 \u00e9lectriques, cela signifie 3% du parc \u00e9lectrifi\u00e9 par an. A ce rythme, il faut donc 30 ans pour tout changer. Cela suffirait en th\u00e9orie pour \u00eatre \u00e0 peu pr\u00e8s en ligne avec la tr\u00e8s forte baisse attendue des \u00e9missions pour les v\u00e9hicules particuliers, mais cela ne garantit pas pour autant la neutralit\u00e9 carbone de ce segment. \n\nEn effet, pour cela il faut aussi que l'\u00e9lectricit\u00e9 soit z\u00e9ro carbone (on n'en prend pas le chemin partout avec la construction de centrales \u00e0 gaz ou le maintien du charbon en compl\u00e9ment des ENR intermittentes), et que la construction du v\u00e9hicule lui-m\u00eame le soit (ce qui signifie acier d\u00e9carbon\u00e9, batteries d\u00e9carbon\u00e9es, et v\u00e9hicules de faible masse et vitesse, la meilleure voiture \u00e9lectrique \u00e9tant... un v\u00e9lo \u00e9lectrique !).\n\nIl faut aussi que la puissance disponible permette de recharger les v\u00e9hicules. Avec 30 millions de v\u00e9los \u00e9lectriques en France, c'est sur que oui. Avec 30 millions de tanks \u00e9lectriques, c'est sur que non." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6780413208445378560,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6780413208957087745,urn:li:activity:6780413208957087745,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 142, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6780413208957087745,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6780413208957087745,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6780413208957087745", + "threadId": "activity:6780413208957087745", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6780413208957087745", + "urn": "urn:li:activity:6780413208957087745", + "numComments": 375, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6780413208957087745", + "reactionTypeCounts": [ + { + "count": 1380, + "reactionType": "LIKE" + }, + { + "count": 135, + "reactionType": "MAYBE" + }, + { + "count": 125, + "reactionType": "INTEREST" + }, + { + "count": 39, + "reactionType": "PRAISE" + }, + { + "count": 9, + "reactionType": "EMPATHY" + }, + { + "count": 8, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6780413208957087745", + "numLikes": 1696, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6780413208957087745", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1696, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6780409982824280065,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6780409982824280065", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6780409982824280065)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6780409982824280065)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_%C3%A9lectricit%C3%A9-le-devoir-de-lucidit%C3%A9-activity-6780409982824280065-pjA8?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6780409982308380672", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6780409982824280065", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6780409982824280065,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6780409982824280065,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6780409982308380672", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "vSywQlanwCYvJMgZ8AluKg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6780409982824280065,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7260649865912774654", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676306464926?e=1677240000&v=beta&t=xPvROxP4XoHHgFj3E0hYmL3j29iUd5JSeKTpgUD0Fzg", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676306464926?e=1677240000&v=beta&t=9al-CPy4wLct-G1NOrNRR3X4sboi8_laZ0nW_BE_MUw", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676306464926?e=1677240000&v=beta&t=yH9BDvZLeA7Ew2lE8Ai4ykx8MLEi2g41I0CuuSlpDTw", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676306464926?e=1677240000&v=beta&t=ZbQhqAKiSUREhI3kOXjEtYlcCYFADjPM5f2lIPHicnc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQG1crLcxDoDPQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7260649865912774654)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7260649865912774654)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "gouvernement.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: \u00c9lectricit\u00e9: le devoir de lucidit\u00e9 by gouvernement.fr", + "actionTarget": "https://www.gouvernement.fr/electricite-le-devoir-de-lucidite" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "\u00c9lectricit\u00e9: le devoir de lucidit\u00e9" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6780409982308380672,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Sous le titre \"Electricit\u00e9 : le devoir de lucidit\u00e9\", le Haut Commissariat au Plan f\u00eate ses 6 mois d'existence en envoyant une vol\u00e9e de bois vert au gouvernement - et \u00e0 l'Elys\u00e9e - sur ses contradictions et ses impasses en mati\u00e8re \u00e9lectrique.\n\nEn substance, la note de 16 pages explique que nous sommes en train de d\u00e9penser des fortunes pour courir apr\u00e8s une chim\u00e8re, \u00e0 savoir la programmation de la disparition de nos capacit\u00e9s pilotables d\u00e9carbon\u00e9es en m\u00eame temps (le fameux \"en m\u00eame temps\" !) qu'un recours accru \u00e0 l'\u00e9lectricit\u00e9 pour d\u00e9carboner des usages actuellement assur\u00e9s par les combustibles fossiles.\n\n\"tout se passe comme si des objectifs ambitieux et moralement fond\u00e9s avaient \u00e9t\u00e9 recherch\u00e9s avec optimisme et une certaine insouciance, sans que personne parmi les citoyens ait \u00e9t\u00e9 averti des contraintes certaines, des efforts consid\u00e9rables \u00e0 fournir et des risques encourus\" \u00e9crit Bayrou. Sur ce point pr\u00e9cis, on ne saurait lui donner tort. \n\nLe politique n'est pas seul en cause : notre presse n'a pas non plus \u00e9t\u00e9 capable de remplir correctement ce r\u00f4le de mise \u00e0 plat du d\u00e9bat, elle qui verse trop imm\u00e9diatement dans le \"pour et contre\" avant m\u00eame d'\u00eatre pass\u00e9e par la case \"de quoi parlons nous\"." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6780409982308380672,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6780409982824280065,urn:li:activity:6780409982824280065,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 71, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6780409982824280065,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6780409982824280065,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6780409982824280065", + "threadId": "activity:6780409982824280065", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6780409982824280065", + "urn": "urn:li:activity:6780409982824280065", + "numComments": 249, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6780409982824280065", + "reactionTypeCounts": [ + { + "count": 1939, + "reactionType": "LIKE" + }, + { + "count": 165, + "reactionType": "PRAISE" + }, + { + "count": 162, + "reactionType": "INTEREST" + }, + { + "count": 80, + "reactionType": "MAYBE" + }, + { + "count": 14, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6780409982824280065", + "numLikes": 2370, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6780409982824280065", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2370, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6780020505492627457,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6780020505492627457", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6780020505492627457)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6780020505492627457)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_net-zero-emissions-targets-are-vague-three-activity-6780020505492627457-RkrJ?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6780020504955777024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6780020505492627457", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6780020505492627457,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6780020505492627457,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6780020504955777024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "UNA60ihYrZYxXuXcBi7UaQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6780020505492627457,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7884473049682553521", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676103726585?e=1677240000&v=beta&t=dW3iPAXXNWjYBE1ZvdNBoQghF9OZAH6zWE5lb8Cp4zQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1024, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676103726585?e=1677240000&v=beta&t=LTpsPEWrWIiJWncydsci30tCHL_WSFrDmdPVpZ8B9Ns", + "expiresAt": 1677240000000, + "height": 576 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676103726585?e=1677240000&v=beta&t=lSKi_W2pQozEntkbLT_450YUUpxOS-aSQNIjgSZHpLQ", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676103726585?e=1677240000&v=beta&t=QcETzoO0FCpFdmsmES5bNP62ZhJSQcsuWDGlimENfTE", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF0S2jKfwWWqw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7884473049682553521)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7884473049682553521)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "nature.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Net-zero emissions targets are vague: three ways to fix by nature.com", + "actionTarget": "https://www.nature.com/articles/d41586-021-00662-3?fbclid=IwAR3NWqoYQQUSb4eN_cWdBpPC29Hi75zk2GiDy_UafHqfAtUgzeY5pj5-Z1g" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Net-zero emissions targets are vague: three ways to fix" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6780020504955777024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "La neutralit\u00e9 carbone \u00e9tant une affaire d'\u00e9quilibrage de flux physiques, il n'est pas \u00e9tonnant qu'une revue scientifique laisse de la place au d\u00e9bat sur la bonne mani\u00e8re pour une entreprise ou un \u00e9tat de s'y confronter.\n\nPour l'heure, c'est le grand bazar : les uns ne regardent que le CO2 (65% des \u00e9missions) pendant que d'autres incluent tous les gaz ; les uns uniquement leurs \u00e9missions directes pendant que d'autres incluent tout ce qui vient de leur chaine de valeur ; certains acteurs deviennent neutres en envoyant le tas de poussi\u00e8re sous le tapis (la compensation) pendant que d'autres entendent vraiment baisser leurs \u00e9missions jusqu'\u00e0 presque rien, bref chacun s'arrange \u00e0 sa sauce.\n\nLes auteurs plaident qu'il est urgent de disposer d'un r\u00e9f\u00e9rentiel partag\u00e9 permettant d'appr\u00e9cier l'effort de chacun et son ad\u00e9quation avec le probl\u00e8me \u00e0 traiter. C'est exactement \u00e0 cela que nous travaillons avec Net Zero Initiative :) ( https://lnkd.in/d_WDb37 ). \n\nIl ne s'agit pas juste d'une discussion de salon : ne pas avoir de r\u00e9f\u00e9rentiel s\u00e9rieux et partag\u00e9 augmente fortement le risque de nous faire rater nos objectifs climatiques, car nous conservons plus longtemps l'illusion de bien traiter la question alors qu'il n'en est rien." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6780020504955777024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6780020505492627457,urn:li:activity:6780020505492627457,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 44, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6780020505492627457,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6780020505492627457,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6780020505492627457", + "threadId": "activity:6780020505492627457", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6780020505492627457", + "urn": "urn:li:activity:6780020505492627457", + "numComments": 49, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6780020505492627457", + "reactionTypeCounts": [ + { + "count": 955, + "reactionType": "LIKE" + }, + { + "count": 73, + "reactionType": "INTEREST" + }, + { + "count": 59, + "reactionType": "PRAISE" + }, + { + "count": 28, + "reactionType": "MAYBE" + }, + { + "count": 13, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6780020505492627457", + "numLikes": 1131, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6780020505492627457", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1131, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6779723366757613569,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6779723366757613569", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6779723366757613569)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6779723366757613569)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_neutralit%C3%A9-carbone-des-dirigeants-concern%C3%A9s-activity-6779723366757613569-GpGy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6779723366157836288", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6779723366757613569", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6779723366757613569,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6779723366757613569,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6779723366157836288", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "nUMUupzmD4D5I94S5czT4A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6779723366757613569,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7518051296555875029", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675740138306?e=1677240000&v=beta&t=hYIlo_Ah_kgKMcPbCClZbix2zlv-U_lfDvm4S094tPA", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675740138306?e=1677240000&v=beta&t=SzNTJHYos4ksNhonbLS2kW8XXsltoeta1u5Y2fmc84o", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675740138306?e=1677240000&v=beta&t=dyFWcl4zVBtusy1vZNPk9mRwEeCYATAHBGAX9pz1NB0", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675740138306?e=1677240000&v=beta&t=PMUECOexrBKyUcRlZd51RSLEbwBwhrzzHgUKzlqlBNI", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGLP5WGlRHUDw/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7518051296555875029)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7518051296555875029)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 3 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Neutralit\u00e9 carbone : des dirigeants concern\u00e9s, mais trop peu actifs by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/thema/neutralite-carbone/neutralite-carbone-des-dirigeants-concernes-mais-trop-peu-actifs-1299399" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Neutralit\u00e9 carbone : des dirigeants concern\u00e9s, mais trop peu actifs" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6779723366157836288,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Une \u00e9tude disponible sur le site de Mazars (https://lnkd.in/dyheTjh ) propose quelques \u00e9l\u00e9ments int\u00e9ressants sur la mani\u00e8re dont des dirigeants d'entreprises (1/3 TPE - 1/3 PME - 1/3 ETI et grandes) \"voient\" la neutralit\u00e9 carbone, Les Echos en ayant tir\u00e9 un article.\n\nNombre de questions permettent des r\u00e9ponses qui sont de la p\u00e9tition de principe, et du coup il est difficile d'en retirer quoi que ce soit comme conclusion. C'est \u00e0 la fin que l'on trouve des questions concr\u00e8tes, permettant d'apprendre que :\n- 80% des sond\u00e9s n'ont r\u00e9alis\u00e9 aucun bilan carbone\n- la moiti\u00e9 des 25% qui ont un projet de neutralit\u00e9 le limitent aux \u00e9missions directes (pas de scope 3)\n- 2/3 des sond\u00e9s consid\u00e8rent qu'ils n'ont pas le bagage m\u00e9thodologique pour s'attaquer \u00e0 la question\n- 82% pensent que la compensation leur sera indispensable (alors qu'en pratique elle ne permet pas de supprimer les risques de transition : https://lnkd.in/d_WDb37 )\n\nNotons que dans le libell\u00e9 des questions, la sobri\u00e9t\u00e9 est d\u00e9finie comme \"la r\u00e9duction des \u00e9missions de gaz \u00e0 effet de serre sans modification de votre syst\u00e8me de production\" !\n\nL'impression principale qui se d\u00e9gage des r\u00e9ponses est essentiellement une grande confusion. Il reste beaucoup de travail pour que nos dirigeants comprennent le cadre physique sous-jacent." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6779723366157836288,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6779723366757613569,urn:li:activity:6779723366757613569,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 34, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6779723366757613569,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6779723366757613569,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6779723366757613569", + "threadId": "activity:6779723366757613569", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6779723366757613569", + "urn": "urn:li:activity:6779723366757613569", + "numComments": 53, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6779723366757613569", + "reactionTypeCounts": [ + { + "count": 422, + "reactionType": "LIKE" + }, + { + "count": 62, + "reactionType": "INTEREST" + }, + { + "count": 57, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6779723366757613569", + "numLikes": 553, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6779723366757613569", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 553, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6779675410998272000,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6779675410998272000", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6779675410998272000)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6779675410998272000)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_emissions-the-business-as-usual-story-activity-6779675410998272000-0yGK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6779675410276855808", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6779675410998272000", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6779675410998272000,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6779675410998272000,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6779675410276855808", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "xsiuQSz4gV7XmGC7Wxjeow==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6779675410998272000,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7832452449835875821", + "swapTitleAndSubtitle": false, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7832452449835875821)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7832452449835875821)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "nature.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Emissions \u2013 the \u2018business as usual\u2019 story is misleading by nature.com", + "actionTarget": "https://www.nature.com/articles/d41586-020-00177-3" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Stop using the worst-case scenario for climate warming as the most likely outcome \u2014 more-realistic baselines make for better policy." + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Emissions \u2013 the \u2018business as usual\u2019 story is misleading" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6779675410276855808,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Nature publie un commentaire (qui, \u00e0 la diff\u00e9rence d'un article scientifique, n'est pas revu par des pairs avant parution) plaidant pour que le \"pire\" sc\u00e9nario utilis\u00e9 dans les mod\u00e9lisations climatiques - le RCP 8.5, avec 5\u00b0C de hausse - ne soit plus appel\u00e9 \"business as usual\", dit autrement le plus probable en l'absence d'action.\n\nLa conclusion est bonne dans le principe : la trajectoire du 8.5 am\u00e8nera un effondrement bien avant 2100, apr\u00e8s \"transgression\" de nombreuses limites plan\u00e9taires, sur le p\u00e9trole, et sur d'autres ressources, mini\u00e8res ou agricoles (elles m\u00eames d\u00e9pendantes de l'\u00e9nergie et du climat). \n\nMais le commentaire voit les causes ailleurs. La premi\u00e8re est le \"pic charbon\" qui, selon les auteurs, serait pass\u00e9 ou en cours. Mais l'abondance charbonni\u00e8re reste tr\u00e8s mal document\u00e9e, et les 5 derni\u00e8res ann\u00e9es ne sont pas suffisantes pour conclure pour 1 si\u00e8cle !\n\nLes auteurs invoquent ensuite le faible cout des \"\u00e9nergies propres\". Il est \u00e9tonnant de trouver ce terme sans contenu normatif (\"propre\") dans une revue scientifique. Et surtout nous devons \u00e0 notre syst\u00e8me industriel fossile de fabriquer ces collecteurs pour pas cher.\n\nIl n'en reste pas moins que des ennuis hors norme n'ont pas besoin du \"pire\" sc\u00e9nario d'\u00e9mission pour survenir. Ce message l\u00e0 doit \u00eatre r\u00e9p\u00e9t\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6779675410276855808,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6779675410998272000,urn:li:activity:6779675410998272000,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 22, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6779675410998272000,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6779675410998272000,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6779675410998272000", + "threadId": "activity:6779675410998272000", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6779675410998272000", + "urn": "urn:li:activity:6779675410998272000", + "numComments": 42, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6779675410998272000", + "reactionTypeCounts": [ + { + "count": 204, + "reactionType": "LIKE" + }, + { + "count": 25, + "reactionType": "MAYBE" + }, + { + "count": 23, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6779675410998272000", + "numLikes": 257, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6779675410998272000", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 257, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6779391197816356864,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6779391197816356864", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6779391197816356864)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6779391197816356864)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_globalement-les-for%C3%AAts-sont-encore-aujourdhui-activity-6779391197816356864-Q9dt?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6779391196818112512", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6779391197816356864", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6779391197816356864,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6779391197816356864,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6779391196818112512", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "JZr5TTni+5ElLi16XgApow==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6779391197816356864,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": true, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQGzYPlN1585kw", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQGzYPlN1585kw", + "artifacts": [ + { + "width": 2048, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1616332815254?e=1679529600&v=beta&t=MS8EesW0cxFnKgi_6NPhqW-ziPQuohXFBFCY77yQ9f0", + "expiresAt": 1679529600000, + "height": 942 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1616332815432?e=1679529600&v=beta&t=nTWRMPkHzSaRFRaQOEEFPHXRHXkgR7-2avVlVYtctF8", + "expiresAt": 1679529600000, + "height": 9 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280/0/1616332815432?e=1679529600&v=beta&t=4WEf_x_isP41cqfMiFZACEHgTtXcyAFzKqQ_xklo9lY", + "expiresAt": 1679529600000, + "height": 589 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1616332815432?e=1679529600&v=beta&t=u3nJMyqpteD-2ELZege7cqBFbB7Ys_tCeGfYFMMXJl4", + "expiresAt": 1679529600000, + "height": 220 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1616332815432?e=1679529600&v=beta&t=dOPM7QT4bsnk9KoXuAQoWE9Es8SYbRcsJej_NY_-vnQ", + "expiresAt": 1679529600000, + "height": 73 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1616332815432?e=1679529600&v=beta&t=qB8uzrYA_5L4aUVORo-vyZhhmQ7KGJO8UgVHKYpxCNo", + "expiresAt": 1679529600000, + "height": 368 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQGzYPlN1585kw/feedshare-shrink_" + }, + "displayAspectRatio": 0.4599609375 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "map" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6779391196818112512,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Globalement, les for\u00eats sont encore, aujourd'hui, un puits de carbone. Mais cela n'est pas vrai partout dans le monde. Dans certaines zones, elles sont devenues une source, car la d\u00e9forestation pour mise en culture, les incendies et les coupes de bois engendrent, sur la zone consid\u00e9r\u00e9e, des \u00e9missions sup\u00e9rieures \u00e0 ce que les arbres toujours debout absorbent dans l'ann\u00e9e\n\nUn article r\u00e9cent paru dans Nature Climate Change donne le d\u00e9tail g\u00e9ographique de cet \u00e9quilibre, r\u00e9alis\u00e9 \u00e0 partir d'images satellite, et en excluant le devenir des produits en bois issus des coupes foresti\u00e8res : https://lnkd.in/dx55uvN\n\nOn y constate que le Br\u00e9sil et l'Asie du Sud-Est ont des portions enti\u00e8res de leurs for\u00eats qui sont des \u00e9metteurs nets, mais que cela existe aussi en Sib\u00e9rie, et... en Am\u00e9rique du Nord. La c\u00f4te Ouest des USA et du Canada, ainsi que la Floride voient donc une partie de leurs puits forestiers dispara\u00eetre. \n\nEt, malheureusement, plus le temps passera, et plus l'adversit\u00e9 grandira pour les for\u00eats en place. A la fois parce qu'une humanit\u00e9 plus nombreuse d\u00e9foreste pour faire des cultures, mais aussi parce qu'un climat qui d\u00e9rive devient progressivement plus hostile pour les esp\u00e8ces locales, quelles qu'elles soient." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6779391196818112512,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6779391197816356864,urn:li:activity:6779391197816356864,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 35, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6779391197816356864,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6779391197816356864,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6779391197816356864", + "threadId": "activity:6779391197816356864", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6779391197816356864", + "urn": "urn:li:activity:6779391197816356864", + "numComments": 152, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6779391197816356864", + "reactionTypeCounts": [ + { + "count": 691, + "reactionType": "LIKE" + }, + { + "count": 171, + "reactionType": "INTEREST" + }, + { + "count": 98, + "reactionType": "MAYBE" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6779391197816356864", + "numLikes": 968, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6779391197816356864", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 968, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6779380542941995008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6779380542941995008", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6779380542941995008)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6779380542941995008)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_mobilit%C3%A9-bas-carbone-l%C3%A9tat-veut-arriver-activity-6779380542941995008-mIjE?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6779380542379966466", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6779380542941995008", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6779380542941995008,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6779380542941995008,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6779380542379966466", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "YPKM4p33SmzLxm2TulLf2Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6779380542941995008,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8468757962300552483", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1615798292520?e=1677240000&v=beta&t=vXJLXkwkoD4LmRBpybf4WavXQXBWasQ65g53ERhBI_A", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1615798292520?e=1677240000&v=beta&t=0uQTlP54t5Fdj1l_LgrtJ8f1pUHE3nhD6tyd8MKAswE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1615798292520?e=1677240000&v=beta&t=FINxahv27oTOaCnmoEjk6peA9SWJPqnxtBXD6w-a3NM", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1615798292520?e=1677240000&v=beta&t=t4vxSDLXLyo1rN5fBCwBBDHfQjSftr_ILcauOEuHvmY", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQF6Y5Jrux-0uA/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8468757962300552483)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8468757962300552483)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Mobilit\u00e9 bas carbone : l'\u00c9tat veut arriver \u00e0 ses fins sans s'en donner les moyens by carbone4.com", + "actionTarget": "http://www.carbone4.com/mobilite-bas-carbone-letat-veut-arriver-a-fins-sen-donner-moyens/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Mobilit\u00e9 bas carbone : l'\u00c9tat veut arriver \u00e0 ses fins sans s'en donner les moyens" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6779380542379966466,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Il y a les paroles, et il y a les actes. Et, depuis le d\u00e9but des grands discours et des objectifs de cadrage en mati\u00e8re de climat, les deux ont une envie f\u00e9roce de ne pas \u00eatre raccord, quel que soit le secteur o\u00f9 l'on porte le regard, ou presque.\n\nC'est cet air h\u00e9las connu, appliqu\u00e9 au domaine du transport, qu'entonne cet article de Carbone 4. Apr\u00e8s avoir compar\u00e9 ce qui est entrepris avec le \"minimum syndical\" qui serait n\u00e9cessaire pour aller \u00e0 la bonne vitesse, il conclut en expliquant que l'\u00e9cart entre discours martiaux et actes insuffisants n'est pas pr\u00e8s de se r\u00e9sorber avec un \u00e9tat qui doit - va - rehausser ses objectifs en mati\u00e8re de r\u00e9duction des \u00e9missions.\n\nEn effet, l'ambition europ\u00e9enne - pas plus coh\u00e9rente avec les politiques sectorielles ou transversales quand on regarde dans le d\u00e9tail - \u00e9tant devenue plus forte (-55% d'\u00e9missions en 2030 !), la France devra revoir son objectif national \u00e0 la hausse... et en sera donc encore plus loin. \n\nRappelons que, \u00e0 cause de l'inertie du CO2 dans l'air, agir au moment o\u00f9 le climat commence \u00e0 \"devenir insupportable\" ne sert plus \u00e0 rien pour \u00e9viter que l'adversit\u00e9 n'augmente encore ensuite. Ce n'est pas \"pr\u00e9venir ou gu\u00e9rir\", mais plut\u00f4t \"pr\u00e9venir ou souffrir\" qu'il faut avoir en t\u00eate." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6779380542379966466,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6779380542941995008,urn:li:activity:6779380542941995008,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 14, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6779380542941995008,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6779380542941995008,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6779380542941995008", + "threadId": "activity:6779380542941995008", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6779380542941995008", + "urn": "urn:li:activity:6779380542941995008", + "numComments": 40, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6779380542941995008", + "reactionTypeCounts": [ + { + "count": 247, + "reactionType": "LIKE" + }, + { + "count": 19, + "reactionType": "INTEREST" + }, + { + "count": 17, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6779380542941995008", + "numLikes": 292, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6779380542941995008", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 292, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6779094312954146816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6779094312954146816", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6779094312954146816)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6779094312954146816)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_occupation-dagroparistech-les-%C3%A9tudiants-activity-6779094312954146816-UfwU?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6779094312492781568", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6779094312954146816", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6779094312954146816,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6779094312954146816,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6779094312492781568", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "wT3zP1FLcLFn3lrfd8hetg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6779094312954146816,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7673185753537590950", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676288903280?e=1677240000&v=beta&t=gELDZ5vVsBpTYwtPs3RI47DcwtyP4h1sEUVHWAAxzcw", + "expiresAt": 1677240000000, + "height": 426 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676288903280?e=1677240000&v=beta&t=LNUWGc2b7Ne2Baw07xqyHK4gk-SPT0RNEKypUz1WM3U", + "expiresAt": 1677240000000, + "height": 640 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676288903280?e=1677240000&v=beta&t=xs1A9blkmJM-15W9zNwkCyOr7A6KFY7dXU15DLjJZf8", + "expiresAt": 1677240000000, + "height": 85 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676288903280?e=1677240000&v=beta&t=YRQjNXUtxINttbw8UxsffZBlwuidz4Qi35BdyoP71FY", + "expiresAt": 1677240000000, + "height": 256 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF9HFF7NRIDYg/articleshare-shrink_" + }, + "displayAspectRatio": 0.5325 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7673185753537590950)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7673185753537590950)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "reporterre.net \u2022 11 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Occupation d\u2019AgroParisTech : les \u00e9tudiants tiennent bon face aux autorit\u00e9s by reporterre.net", + "actionTarget": "https://reporterre.net/Les-etudiants-d-AgroParisTech-occupent-leur-ecole-pour-la-sauver-des-promoteurs" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Occupation d\u2019AgroParisTech\u00a0: les \u00e9tudiants tiennent bon face aux autorit\u00e9s" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6779094312492781568,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "A qui le tour ? Apr\u00e8s les \u00e9l\u00e8ves de l'X, qui ont d\u00e9clench\u00e9 une bronca pour protester (\u00e0 raison) contre l'implantation d'un centre de recherche de Total en plein milieu du campus, ce sont les \u00e9tudiants d'AgroParisTech qui se transforment - \u00e0 raison aussi - en zadistes. \n\nLe d\u00e9but de l'histoire, c'est le projet de regrouper physiquement toutes les \u00e9coles d'ing\u00e9nieurs sur le plateau de Saclay pour faire un gros machin bien vu dans le classement de Shangha\u00ef (projet qui date en fait d'il y a 60 ans, et ne garantit en rien une recherche plus adapt\u00e9e aux d\u00e9fis du 21\u00e8 si\u00e8cle).\n\nUne fois l'Agro pri\u00e9e de quitter son campus historique de Grignon, que faire de ces terres ancestrales, ces s\u00e9ries multis\u00e9culaires, et son patrimoine architectural ? \n\nPourquoi pas un centre commercial ou un lotissement, pour faire encore plus grossir une Ile de France d\u00e9j\u00e0 hypertrophi\u00e9e, se demande l'administration propri\u00e9taire du site ? Bien sur que non, r\u00e9pondent les \u00e9l\u00e8ves. Il faut conserver au site sa vocation agricole, et en faire un centre tourn\u00e9 vers les d\u00e9fis de l'agriculture de demain. Dans le pays qui veut \"make the planet great again\", la question ne devrait m\u00eame pas se poser. Esp\u00e9rons que, sur ce genre de dossier \"\u00e9vident\", notre gouvernement est capable d'un minimum de coh\u00e9rence. Il serait temps." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6779094312492781568,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6779094312954146816,urn:li:activity:6779094312954146816,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 161, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6779094312954146816,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6779094312954146816,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6779094312954146816", + "threadId": "activity:6779094312954146816", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6779094312954146816", + "urn": "urn:li:activity:6779094312954146816", + "numComments": 266, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6779094312954146816", + "reactionTypeCounts": [ + { + "count": 6463, + "reactionType": "LIKE" + }, + { + "count": 584, + "reactionType": "PRAISE" + }, + { + "count": 480, + "reactionType": "APPRECIATION" + }, + { + "count": 82, + "reactionType": "MAYBE" + }, + { + "count": 65, + "reactionType": "EMPATHY" + }, + { + "count": 38, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6779094312954146816", + "numLikes": 7712, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6779094312954146816", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 7712, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6778628433715965952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6778628433715965952", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6778628433715965952)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6778628433715965952)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-grand-paradoxe-pour-une-entreprise-cest-activity-6778628433715965952-VK8T?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6778628433061675008", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6778628433715965952", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6778628433715965952,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6778628433715965952,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6778628433061675008", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "Tgyayrk3j7cHzFCKUye6FA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6778628433715965952,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ImageComponent": { + "images": [ + { + "accessibilityTextSourceType": "AUTO_GENERATED", + "attributes": [ + { + "useCropping": false, + "mediaUrn": "urn:li:digitalmediaAsset:C4D22AQH8yqijqRTjEg", + "sourceType": "VECTOR", + "vectorImage": { + "digitalmediaAsset": "urn:li:digitalmediaAsset:C4D22AQH8yqijqRTjEg", + "artifacts": [ + { + "width": 1052, + "fileIdentifyingUrlPathSegment": "2048_1536/0/1616150958945?e=1679529600&v=beta&t=KbGWButJOrGbg8cXyIzir4kbSoZ4LaJQZDL6jNZ8CNQ", + "expiresAt": 1679529600000, + "height": 1334 + }, + { + "width": 20, + "fileIdentifyingUrlPathSegment": "20/0/1616150958948?e=1679529600&v=beta&t=qRlD-jb-H7PprPXhBWGfiKA_EJNZv66OVhpOZb49b-s", + "expiresAt": 1679529600000, + "height": 25 + }, + { + "width": 1052, + "fileIdentifyingUrlPathSegment": "1280/0/1616150958948?e=1679529600&v=beta&t=HnYnftFGbm22Z8e8ixuh9ywqn684BeCQOCN-P0muFac", + "expiresAt": 1679529600000, + "height": 1334 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1616150958948?e=1679529600&v=beta&t=fSUxRmDSnGKZMF0WGwGC0SDQ4GGIg2jKybbG0X6b2Bs", + "expiresAt": 1679529600000, + "height": 608 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1616150958948?e=1679529600&v=beta&t=iFc01ExQmBD3ilSovfRd8-TIOF07VKLprY0QTxXttq4", + "expiresAt": 1679529600000, + "height": 202 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1616150958948?e=1679529600&v=beta&t=eFVp8QSHVKg9RNyrhGwvQQxaj6r7QomESqLmKRl5bR0", + "expiresAt": 1679529600000, + "height": 1014 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D22AQH8yqijqRTjEg/feedshare-shrink_" + }, + "displayAspectRatio": 1.25 + } + ], + "editableAccessibilityText": true, + "accessibilityTextAttributes": [], + "accessibilityText": "a sign on the side of a mountain" + } + ], + "showTemplateCta": false + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6778628433061675008,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le grand paradoxe, pour une entreprise, c'est que d'adh\u00e9rer \u00e0 la Net Zero Initiative signifie... renoncer \u00e0 revendiquer une neutralit\u00e9 \"autonome\", au profit, id\u00e9alement, d'une action pour contribuer \u00e0 la neutralit\u00e9 globale, la seule qui ait une d\u00e9finition scientifique claire : https://lnkd.in/d_WDb37\n\nCette approche de contribution \u00e0 une neutralit\u00e9 globale, d\u00e9velopp\u00e9e par Carbone 4 depuis plus de 3 ans, accueille un nouveau membre, D\u00e9cathlon : https://lnkd.in/d-ric9b\n\nMais... il reste du travail avant que le corpus m\u00e9thodologique li\u00e9 \u00e0 NZI ne soit termin\u00e9, au moins dans une premi\u00e8re version. Comment d\u00e9terminer le \"bon\" niveau d'\u00e9missions \u00e9vit\u00e9es (par l'usage des produits et services vendus) d'une entreprise, lorsque cette notion est pertinente ? (ce qui n'est pas toujours le cas). Comment d\u00e9terminer le \"bon\" niveau de contribution aux puits de carbone, dans et hors sa chaine de valeur, laquelle contribution n'est en rien une \"compensation\" ?\n\nC'est \u00e0 ces questions que NZI s'attelle d\u00e9sormais, sous la houlette de la pratique \"neutralit\u00e9\" de Carbone 4 (https://lnkd.in/du-BA4g )." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6778628433061675008,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6778628433715965952,urn:li:activity:6778628433715965952,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 48, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6778628433715965952,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6778628433715965952,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6778628433715965952", + "threadId": "activity:6778628433715965952", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6778628433715965952", + "urn": "urn:li:activity:6778628433715965952", + "numComments": 85, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6778628433715965952", + "reactionTypeCounts": [ + { + "count": 995, + "reactionType": "LIKE" + }, + { + "count": 106, + "reactionType": "PRAISE" + }, + { + "count": 36, + "reactionType": "INTEREST" + }, + { + "count": 24, + "reactionType": "MAYBE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + }, + { + "count": 6, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6778628433715965952", + "numLikes": 1174, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6778628433715965952", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1174, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6778585077728190464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6778585077728190464", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6778585077728190464)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6778585077728190464)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_a-multimillion-year-old-record-of-greenland-activity-6778585077728190464-xhVa?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6778585077266837505", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6778585077728190464", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6778585077728190464,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6778585077728190464,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6778585077266837505", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "H5zomAA5+kcm/8gWRYKJ8A==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6778585077728190464,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7074364960861303792", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1615836516839?e=1677240000&v=beta&t=WZZdGsoN0jEHBFTQkJ0czKZV2st9nJUwnk6eID2HjME", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1615836516839?e=1677240000&v=beta&t=qx6-pZg9p1FeeV8FW0fT7wKbJYN4Atf38E8dCQSrxt8", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1615836516839?e=1677240000&v=beta&t=M2kQJxz3H-Bp-iCVAUIvUNzSYNdVLmTPYEKY1Q4s0Fs", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1615836516839?e=1677240000&v=beta&t=V8VR6admxl0-fN7rfM0wD531LZs6J1PI0nOnWO6HwUE", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHES27OrDJKaw/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7074364960861303792)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7074364960861303792)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "pnas.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: A multimillion-year-old record of Greenland vegetation and glacial history preserved in sediment beneath 1.4 km of ice at Camp Century by pnas.org", + "actionTarget": "https://www.pnas.org/content/118/13/e2021442118" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "A multimillion-year-old record of Greenland vegetation and glacial history preserved in sediment beneath 1.4 km of ice at Camp Century" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6778585077266837505,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans un article qui vient d'\u00eatre publi\u00e9 dans les Proceedings of the National Academy of Sciences (dont l'abstract est en acc\u00e8s libre, et le contenu vulgaris\u00e9 ailleurs : https://lnkd.in/dqAHm9M ), des chercheurs viennent de proposer une conclusion qui fait un peu froid dans le dos, le jeu de mots \u00e9tant \u00e9videmment intentionnel : durant le dernier million d'ann\u00e9es, la calotte groenlandaise a enti\u00e8rement disparu au moins une fois.\n\nLes \"preuves\" de cette fonte viennent de l'analyse de la base de carottes de glace :\n- il s'y trouve des fossiles v\u00e9g\u00e9taux, ne pouvant \u00e0 l'\u00e9vidence se d\u00e9velopper sous la glace\n- l'analyse de la glace et d'isotopes cosmog\u00e9niques (form\u00e9s suite au rayonnement cosmique) montre que des pr\u00e9cipitations avaient lieu directement au niveau du sol, ce qui est bien \u00e9videmment impossible s'il y a d\u00e9j\u00e0 une calotte.\n\nOr, dans le cadre des variations naturelles du climat (https://lnkd.in/dJf-6Ry ), la concentration atmosph\u00e9rique en CO2 n'a jamais d\u00e9pass\u00e9 de beaucoup celle dite pr\u00e9industrielle.\n\nCette analyse sugg\u00e8re donc qu'avec le r\u00e9chauffement \u00e0 venir, m\u00eame limit\u00e9 \u00e0 2\u00b0C, la calotte pourrait \u00e0 nouveau enti\u00e8rement dispara\u00eetre. En pareil cas, c'est 6 \u00e0 7 m d'\u00e9l\u00e9vation de l'oc\u00e9an." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6778585077266837505,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6778585077728190464,urn:li:activity:6778585077728190464,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 40, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6778585077728190464,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6778585077728190464,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6778585077728190464", + "threadId": "activity:6778585077728190464", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6778585077728190464", + "urn": "urn:li:activity:6778585077728190464", + "numComments": 130, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6778585077728190464", + "reactionTypeCounts": [ + { + "count": 329, + "reactionType": "LIKE" + }, + { + "count": 97, + "reactionType": "MAYBE" + }, + { + "count": 94, + "reactionType": "INTEREST" + }, + { + "count": 2, + "reactionType": "EMPATHY" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6778585077728190464", + "numLikes": 525, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6778585077728190464", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 525, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6778414872595054592,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6778414872595054592", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6778414872595054592)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6778414872595054592)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_une-interview-dans-le-nouvel-obs-en-mars-activity-6778414872595054592-5Sga?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6778414872204980224", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6778414872595054592", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6778414872595054592,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6778414872595054592,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6778414872204980224", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "kT7CeyGHmIpjoBwmIixzNw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6778414872595054592,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:9094768716239898259", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675010130335?e=1677240000&v=beta&t=9NZgmgNIBbgNqXOLUa7C5hsPDCbFyuxNjEO0EVuFIHs", + "expiresAt": 1677240000000, + "height": 307 + }, + { + "width": 1170, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675010130336?e=1677240000&v=beta&t=4ZgWGGsMsGuT101TOOsZIg41kilE9ZOaJONKiWSrByU", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675010130336?e=1677240000&v=beta&t=q-0CxXOllXo72-pdDknWNp3C4_imHlKcbhN4UkEYeLk", + "expiresAt": 1677240000000, + "height": 61 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675010130336?e=1677240000&v=beta&t=eKtNQVHDrk-u-fphBysLjGLX4YrPk-GEZurrT4W-zNU", + "expiresAt": 1677240000000, + "height": 184 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQHKiEgWrUZE0w/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:9094768716239898259)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:9094768716239898259)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "jancovici.com \u2022 12 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Une interview dans le Nouvel Obs en mars 2021 by jancovici.com", + "actionTarget": "https://jancovici.com/publications-et-co/interviews/une-interview-dans-le-nouvel-obs-en-mars-2021/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Une interview dans le Nouvel Obs en mars 2021" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6778414872204980224,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans son num\u00e9ro de la semaine derni\u00e8re, le Nouvel Obs a publi\u00e9 une interview de votre serviteur, que vous trouverez reproduite sur mon site (avec un d\u00e9calage pour ne pas g\u00eaner les ventes du magazine).\n\nUn peu de medias, un peu de Convention citoyenne, un peu de d\u00e9croissance et un peu de d\u00e9mocratie. Rien de tr\u00e8s inhabituel, comme dirait le gendarme dans l'Enqu\u00eate Corse !" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6778414872204980224,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6778414872595054592,urn:li:activity:6778414872595054592,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 5, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6778414872595054592,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6778414872595054592,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6778414872595054592", + "threadId": "activity:6778414872595054592", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6778414872595054592", + "urn": "urn:li:activity:6778414872595054592", + "numComments": 9, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6778414872595054592", + "reactionTypeCounts": [ + { + "count": 161, + "reactionType": "LIKE" + }, + { + "count": 9, + "reactionType": "INTEREST" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 1, + "reactionType": "MAYBE" + }, + { + "count": 1, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6778414872595054592", + "numLikes": 181, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6778414872595054592", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 181, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6778237730334769152,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6778237730334769152", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6778237730334769152)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6778237730334769152)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_chine-mise-en-service-de-19-gw-nucl%C3%A9aires-activity-6778237730334769152-viNd?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6778237729739182080", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6778237730334769152", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6778237730334769152,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6778237730334769152,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6778237729739182080", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "BJftasSMa0buF9wctF6OAA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6778237730334769152,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7600090539648715233", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1615970956431?e=1677240000&v=beta&t=6k9B_6TTDeoBlgkhQoDX8ZoOuQIKVs7FKHmNJngJYfw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1615970956431?e=1677240000&v=beta&t=WNb3l_kxQ_kx9u52C5DVA7oiW79RcDVsXzDeXf5h3Bw", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1615970956431?e=1677240000&v=beta&t=CWftoESKN2pwEYgt2xgkW2gRPTdlpFjy_CtyNIXUjYo", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1615970956431?e=1677240000&v=beta&t=IC173ydfE8wVlQFtKflc8RyvOry5FTcCfYlEKvqaXYs", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQF1Lyh2e4K-SQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7600090539648715233)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7600090539648715233)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "sfen.org \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Chine : mise en service de 19 GW nucl\u00e9aires dans les 5 ann\u00e9es \u00e0 venir by sfen.org", + "actionTarget": "https://www.sfen.org/rgn/chine-mise-service-19-gw-nucleaires-5-annees-venir" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Chine : mise en service de 19 GW nucl\u00e9aires dans les 5 ann\u00e9es \u00e0 venir" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6778237729739182080,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Le nucl\u00e9aire est souvent pris pour cible sur la base d'arguments qui n'ont pas de base factuelle, mais par contre sa mise en oeuvre est aujourd'hui bien trop lente pour qu'il constitue l'essentiel de la r\u00e9ponse \u00e0 apporter face \u00e0 la question climatique.\n\nEn 5 ans, la Chine, qui est un des pays les plus volontaristes sur cette technologie avec la Russie, va mettre en oeuvre 19 GW de capacit\u00e9s. A l'\u00e9chelle de la France, ca ferait beaucoup : l'\u00e9quivalent d'un tiers de notre parc. Mais \u00e0 l'\u00e9chelle de la Chine, et de ses 900 \u00e0 1000 GW de centrales \u00e0 charbon, c'est tr\u00e8s peu.\n\nCertes, la Chine aurait annonc\u00e9 dans le pass\u00e9 (j'avoue avoir perdu la r\u00e9f\u00e9rence) qu'en 2050 la moiti\u00e9 de son \u00e9lectricit\u00e9 viendrait du nucl\u00e9aire. Pour en arriver l\u00e0, il faudrait que le rythme de d\u00e9ploiement s'intensifie f\u00e9rocement. Ce n'est pas impossible en th\u00e9orie : en France, pendant la construction du parc, nous avons \u00e9t\u00e9 capables de raccorder 20 GW en 4 ans (https://lnkd.in/daauiC4 ), ce qui, \u00e0 l'\u00e9chelle de la Chine, ferait... 200 GW en 4 ans ! Mais pour le moment nous en sommes loin.\n\nIl est pertinent de faire du nucl\u00e9aire pour remplacer le charbon. Mais les ordres de grandeur montrent que l'essentiel de la baisse des \u00e9missions devra provenir d'ailleurs, et notamment de sobri\u00e9t\u00e9." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6778237729739182080,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6778237730334769152,urn:li:activity:6778237730334769152,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 42, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6778237730334769152,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6778237730334769152,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6778237730334769152", + "threadId": "activity:6778237730334769152", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6778237730334769152", + "urn": "urn:li:activity:6778237730334769152", + "numComments": 103, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6778237730334769152", + "reactionTypeCounts": [ + { + "count": 841, + "reactionType": "LIKE" + }, + { + "count": 60, + "reactionType": "INTEREST" + }, + { + "count": 56, + "reactionType": "MAYBE" + }, + { + "count": 8, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6778237730334769152", + "numLikes": 969, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6778237730334769152", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 969, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6777995126535938048,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6777995126535938048", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6777995126535938048)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6777995126535938048)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-grandes-m%C3%A9tropoles-bient%C3%B4t-un-monde-activity-6777995126535938048-vpLw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6777995126053576706", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6777995126535938048", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6777995126535938048,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6777995126535938048,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6777995126053576706", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "wGfLOob46vnqoL4YafKQiQ==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6777995126535938048,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7846656587685117314", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1675423536550?e=1677240000&v=beta&t=fxYjL4tkJJm1k7UOerHifVj2Gtd2vc1mv1NmBbO5oUQ", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1675423536551?e=1677240000&v=beta&t=-R3AONSqNIl2SHaXeHaaTSPW8Rt8XhzfVq14I5eYlSA", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1675423536551?e=1677240000&v=beta&t=aksNuxUg4O5GAOTlFac2pCAchQPfpNQufu5daPnWDvw", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1675423536551?e=1677240000&v=beta&t=-74xvF-ZRxwMmu7cQCHPu-rKj5E96byBgnq_9tZh5NE", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQEaWnUb_Ctu5Q/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7846656587685117314)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7846656587685117314)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Les grandes m\u00e9tropoles, bient\u00f4t un monde englouti ? by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/sciences-prospective/les-grandes-metropoles-bientot-un-monde-englouti-1298345" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Les grandes m\u00e9tropoles, bient\u00f4t un monde englouti\u00a0?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6777995126053576706,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Dans les villes, il y a du monde. Les \u00eates humains, entre autres choses, utilisent de l'eau : pour boire, certes, mais aussi pour se laver, ou laver leurs affaires, ou \u00e9vacuer leurs d\u00e9jections, faire fonctionner des activit\u00e9s \u00e9conomiques, nettoyer les trottoirs, et j'en passe...\n\nQuand il y a vraiment beaucoup de monde, ou que le climat ne s'y pr\u00eate pas, l'eau qui tombe du ciel ou qui passe dans le fleuve d'\u00e0 c\u00f4t\u00e9 n'y suffit pas. Alors nous faisons les shadoks : nous pompons.\n\nQuand l'eau est pr\u00e9lev\u00e9e dans des structures rocheuses fragiles, le fait d'enlever le liquide sous pression conduit \u00e0 des ph\u00e9nom\u00e8nes de compactage (comme avec certains r\u00e9servoirs de gaz naturel), et si l'aquif\u00e8re est sous la ville, la ville... s'affaisse. Ce ph\u00e9nom\u00e8ne conduit par exemple Jakarta \u00e0 s'\u00eatre enfonc\u00e9e de 2,5 m en 10 ans, et l'essentiel de la ville pourrait passer sous les eaux d'ici 2050...\n\nCe processus, lorsqu'il concerne une ville c\u00f4ti\u00e8re (et il y en a beaucoup), se rajoutera \u00e9videmment \u00e0 la hausse du niveau de la mer venant du changement climatique. Pour l'enrayer, il faut arr\u00eater de pomper. Et quand c'est une tr\u00e8s grosse ville, c'est tr\u00e8s difficile. Question : que faire des tr\u00e8s grosses villes dans un monde contraint ?" + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6777995126053576706,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6777995126535938048,urn:li:activity:6777995126535938048,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 55, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6777995126535938048,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6777995126535938048,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6777995126535938048", + "threadId": "activity:6777995126535938048", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6777995126535938048", + "urn": "urn:li:activity:6777995126535938048", + "numComments": 72, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6777995126535938048", + "reactionTypeCounts": [ + { + "count": 570, + "reactionType": "LIKE" + }, + { + "count": 141, + "reactionType": "MAYBE" + }, + { + "count": 138, + "reactionType": "INTEREST" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 3, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "PRAISE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6777995126535938048", + "numLikes": 856, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6777995126535938048", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 856, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6777847545944150017,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6777847545944150017", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6777847545944150017)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6777847545944150017)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-grand-m%C3%A9chant-capital-au-secours-de-la-activity-6777847545944150017-WTdD?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6777847545482756096", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6777847545944150017", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6777847545944150017,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6777847545944150017,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6777847545482756096", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "YftJBQWLdmIHMfdHAudt7Q==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6777847545944150017,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8969768845947284482", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676379056221?e=1677240000&v=beta&t=nY6XKGHgOEDOfz66fnrS6OQXNcobN8gveylasUP95KM", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676379056222?e=1677240000&v=beta&t=lUZa5x4T62nY-vxwC_GEAovQKSmYHOz5m_8v0C7Vz5Q", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676379056222?e=1677240000&v=beta&t=WlcJZX_RjfST0jhGYniv-85hOq20UJPRO2ziwIu56TA", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676379056222?e=1677240000&v=beta&t=jLj-DMLKxscGGWG70R8vPw1pYZqqhTHgKe4eRndUFRU", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQEaPd3j81VJSQ/articleshare-shrink_" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8969768845947284482)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8969768845947284482)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "lesechos.fr \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le grand m\u00e9chant capital au secours de la plan\u00e8te by lesechos.fr", + "actionTarget": "https://www.lesechos.fr/idees-debats/editos-analyses/le-grand-mechant-capital-au-secours-de-la-planete-1298742" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le grand m\u00e9chant capital au secours de la plan\u00e8te" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6777847545482756096,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Cet \u00e9ditorial de Jean-Marc Vittori, publi\u00e9 dans Les Echos, analyse la pression montante qui contraint les acteurs financiers \u00e0 s'\u00e9carter progressivement du financement des \u00e9nergies fossiles.\n\nS'il commence effectivement \u00e0 se passer \"quelque chose\" dans ce secteur, il reste loin de la coupe aux l\u00e8vres.\n\nD'abord, tant que l'\u00e9conomie elle-m\u00eame est \"en route pour 3,5 ou 4\u00b0C\", la sph\u00e8re bancaire et financi\u00e8re ne peut pas devenir \"2\u00b0C\" : aucun miracle ne peut permettre aux pr\u00eateurs et investisseurs de se d\u00e9risquer vis-\u00e0-vis du climat si l'objet du pr\u00eat ou de l'investissement ne l'est pas !\n\nEnsuite pour des raisons de m\u00e9thode. Il est tr\u00e8s facile (mais pas facilement d\u00e9tectable de l'ext\u00e9rieur) de b\u00e2tir une m\u00e9thode permettant d'appara\u00eetre \"propre sur soi\" alors que le probl\u00e8me n'est absolument pas ma\u00eetris\u00e9. Pour prendre un parall\u00e8le qui vaut ce qu'il vaut, disons que pour une personne qui ne parle pas le chinois, il est impossible de savoir si une personne qui pr\u00e9tend le parler le fait correctement ou pas.\n\nLe meilleur thermom\u00e8tre pour juger du s\u00e9rieux de \"la finance\" sur le climat reste.... les sous ! Pour \u00eatre pr\u00e9cis, ceux que cette activit\u00e9 consacre \u00e0 apprendre \u00e0 \"parler le carbone\" \u00e0 TOUS ses collaborateurs, et \u00e0 les former \u00e0 TOUS utiliser des m\u00e9triques appropri\u00e9es. " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6777847545482756096,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6777847545944150017,urn:li:activity:6777847545944150017,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 21, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6777847545944150017,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6777847545944150017,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6777847545944150017", + "threadId": "activity:6777847545944150017", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6777847545944150017", + "urn": "urn:li:activity:6777847545944150017", + "numComments": 70, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6777847545944150017", + "reactionTypeCounts": [ + { + "count": 363, + "reactionType": "LIKE" + }, + { + "count": 33, + "reactionType": "MAYBE" + }, + { + "count": 24, + "reactionType": "INTEREST" + }, + { + "count": 5, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6777847545944150017", + "numLikes": 427, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6777847545944150017", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 427, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6777601250012762112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6777601250012762112", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6777601250012762112)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6777601250012762112)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_nous-rejoindre-activity-6777601250012762112-9fjX?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6777601249429745664", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6777601250012762112", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6777601250012762112,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6777601250012762112,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6777601249429745664", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "Bc1OxX0Uns27FOTvLJQnuA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6777601250012762112,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7848989978666982865", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1615299718591?e=1677240000&v=beta&t=cHW265UfmeikSm5882Jt7dmwQLPISwEpx9PpHLEPssE", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "1280_800/0/1615299718591?e=1677240000&v=beta&t=Fp0Vm03OHBL5Xxog_JHM8uFJFzH-XTjVNhwBuBRHlO4", + "expiresAt": 1677240000000, + "height": 800 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1615299718591?e=1677240000&v=beta&t=vP9AFSqcCTHmXSWE1V295_H0au0eUaZeERGrrZ9FPmc", + "expiresAt": 1677240000000, + "height": 160 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1615299718591?e=1677240000&v=beta&t=_l1usWGL0m_UjA0oPYYuq0pjIoVlto0toBNhHKxDTfE", + "expiresAt": 1677240000000, + "height": 480 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFzjAFxbEDlBQ/articleshare-shrink_" + }, + "displayAspectRatio": 1.0 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7848989978666982865)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7848989978666982865)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "carbone4.com \u2022 1 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Nous rejoindre by carbone4.com", + "actionTarget": "http://www.carbone4.com/nous-rejoindre" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Nous rejoindre" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6777601249429745664,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Malgr\u00e9 tous les efforts qu'il faut faire sur le plan des \u00e9missions de gaz \u00e0 effet de serre (pour les baisser, pas pour les augmenter !), l'inertie climatique va nous emmener \u00e0 l'avenir vers des horizons inconnus, et il importe d'essayer de les identifier, puis de s'y pr\u00e9parer au mieux.\n\nDans le droit fil de la mise au point, en cours, d'une m\u00e9thode de r\u00e9f\u00e9rence pour que les entreprises sachent \"entrer op\u00e9rationnellement\" dans la question des cons\u00e9quences du changement climatique (OCARA : https://lnkd.in/dnExvfq ) Carbone 4 renforce son offre \"r\u00e9silience et adaptation\" en recrutant un(e) consultant(e) avec une dominante data climat : https://lnkd.in/dC7TNi4 , ainsi qu'un(e) consultant(e) \u00e0 dominante cartographie : https://lnkd.in/dy7XDeZ\n\nA vos claviers, les int\u00e9ress\u00e9(e)s !\n\nNB : il fut un temps o\u00f9 l'on pouvait faire ce qui correspond \u00e0 la photo ci-dessous, si si ! (l'\u00e9quipe a un peu grossi depuis). Nous esp\u00e9rons bien qu'un jour on recommencera..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6777601249429745664,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6777601250012762112,urn:li:activity:6777601250012762112,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 8, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6777601250012762112,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6777601250012762112,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6777601250012762112", + "threadId": "activity:6777601250012762112", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6777601250012762112", + "urn": "urn:li:activity:6777601250012762112", + "numComments": 13, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6777601250012762112", + "reactionTypeCounts": [ + { + "count": 309, + "reactionType": "LIKE" + }, + { + "count": 12, + "reactionType": "APPRECIATION" + }, + { + "count": 11, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "MAYBE" + }, + { + "count": 3, + "reactionType": "EMPATHY" + }, + { + "count": 1, + "reactionType": "INTEREST" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6777601250012762112", + "numLikes": 340, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6777601250012762112", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 340, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6777554727317065728,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6777554727317065728", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6777554727317065728)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6777554727317065728)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_a-quelles-conditions-pourra-t-on-toujours-activity-6777554727317065728-zbyN?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6777554726780190720", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6777554727317065728", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6777554727317065728,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6777554727317065728,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6777554726780190720", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "/osr6u+1Wqkca7/1r6iQZw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6777554727317065728,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7510035878547140486", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 648, + "fileIdentifyingUrlPathSegment": "800/0/1676241957972?e=1677240000&v=beta&t=QHyUT3wqVdQz521a1jqkd3dKzj93zns0sPNrnBKEIws", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 648, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676241957972?e=1677240000&v=beta&t=HtYHNBYL4sPAa5m0XcN0AxymM-tX42aOyfkDPB3HyUw", + "expiresAt": 1677240000000, + "height": 360 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676241957972?e=1677240000&v=beta&t=rG_eiCKV83CwJ5YYEpqv6-dtWhiRAW15d6ZwFcNkR1E", + "expiresAt": 1677240000000, + "height": 88 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676241957972?e=1677240000&v=beta&t=sUhWqI6GtEXF7FqjeeC8fRJ-SGss78y21HOO5om4Xac", + "expiresAt": 1677240000000, + "height": 266 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGfpnUWQ_bAig/articleshare-shrink_" + }, + "displayAspectRatio": 0.5555555555555556 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7510035878547140486)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7510035878547140486)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "20minutes.fr \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: A quelles conditions pourra-t-on toujours prendre l\u2019avion en 2050 ? by 20minutes.fr", + "actionTarget": "https://www.20minutes.fr/planete/2989931-20210303-changement-climatique-conditions-pourra-toujours-prendre-avion-2050" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "A quelles conditions pourra-t-on toujours prendre l\u2019avion en 2050\u00a0?" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6777554726780190720,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 71, + "length": 17, + "miniCompany": { + "objectUrn": "urn:li:company:1442492", + "entityUrn": "urn:li:fs_miniCompany:1442492", + "name": "The Shift Project", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1626716264639?e=1684972800&v=beta&t=9ELNIdCW1xoIMxQojB7ROyA3L_AdOicdNKH2WVwkprI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1626716264639?e=1684972800&v=beta&t=N2_eBxJKA0qa0uLRNaauN9_z1uGgJbXNNJchXBovVNo", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1626716264639?e=1684972800&v=beta&t=Os-aqGvK9Gkc65HFwroNwknNX4aQcH-FobATq6EHRlI", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQHT7xmpkqz4BA/company-logo_" + } + }, + "universalName": "the-shift-project", + "dashCompanyUrn": "urn:li:fsd_company:1442492", + "trackingId": "GFqXmIGvRu6n3bD0hnp+xw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 92, + "length": 15, + "miniCompany": { + "objectUrn": "urn:li:company:65525487", + "entityUrn": "urn:li:fs_miniCompany:65525487", + "name": "A\u00c9RO D\u00c9CARBO", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1632124851859?e=1684972800&v=beta&t=mPqBCEHb8iWqELNJG9bQXVELZNC4XCApGrlaId7_ixQ", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1632124851859?e=1684972800&v=beta&t=ZehY4fC1JjRd8Rcq1YPXQ0PFm_KemKatzCP-zEdqn64", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1632124851859?e=1684972800&v=beta&t=7KzqdHv_8SjezUgJiOMjgi4PXApGI-2VqJjBzgOxGYo", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQGeJYGC8wwvNw/company-logo_" + } + }, + "universalName": "aero-decarbo", + "dashCompanyUrn": "urn:li:fsd_company:65525487", + "trackingId": "oGs1sLlfSTaBBFDvHg1kBg==" + }, + "type": "COMPANY_NAME" + } + ], + "text": "20 minutes fait une restitution assez fid\u00e8le du rapport conjoint entre The Shift Project et SUPAERO DECARBO\n\nEn particulier, ils restituent l'information essentielle : m\u00eame en \u00e9tant tr\u00e8s tr\u00e8s tr\u00e8s optimiste sur les hypoth\u00e8ses techniques, il est impossible pour le secteur a\u00e9rien de respecter son budget carbone (et donc de se conformer au seuil des 2\u00b0C) sans contracter (ann\u00e9e apr\u00e8s ann\u00e9e) le trafic. \n\nBien plus que de savoir si cela va frustrer des gens qui pensent que d'aller \u00e0 5000 km pour passer ses vacances (le loisir est \u00e0 l'origine de 75% du trafic a\u00e9rien) est la chose la plus importante au monde, cela pose surtout la question du devenir des centaines de milliers de personnes qui d\u00e9pendent directement ou indirectement de l'a\u00e9ronautique dans notre pays. \n\nLe rapport fournit une information essentielle sur ce sujet : plus on anticipe et pilote cette baisse du trafic, moins la transition sociale sera difficile, \u00e0 la fois en nombre d'emplois perdus et en rythme. A l'inverse, plus on attend, plus ca sera le coup de bambou sans possibilit\u00e9 de se retourner sera violent quand il arrivera.\n\nUn cas de plus o\u00f9 il faut penser long terme et ne pas faire du refus d'obstacle..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6777554726780190720,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6777554727317065728,urn:li:activity:6777554727317065728,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 49, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6777554727317065728,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6777554727317065728,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6777554727317065728", + "threadId": "activity:6777554727317065728", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6777554727317065728", + "urn": "urn:li:activity:6777554727317065728", + "numComments": 138, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6777554727317065728", + "reactionTypeCounts": [ + { + "count": 691, + "reactionType": "LIKE" + }, + { + "count": 67, + "reactionType": "MAYBE" + }, + { + "count": 52, + "reactionType": "INTEREST" + }, + { + "count": 12, + "reactionType": "PRAISE" + }, + { + "count": 4, + "reactionType": "EMPATHY" + }, + { + "count": 4, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6777554727317065728", + "numLikes": 830, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6777554727317065728", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 830, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6777499758538825728,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6777499758538825728", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6777499758538825728)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6777499758538825728)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_bill-gates-sounds-alarm-on-bitcoins-energy-activity-6777499758538825728-N7r1?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6777499758018756608", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6777499758538825728", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6777499758538825728,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6777499758538825728,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6777499758018756608", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "zr4gocawmiAjtWd0Lepd7w==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6777499758538825728,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:8238870368861257080", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676599680870?e=1677240000&v=beta&t=ZWYMwcXu4Iq7kXDge1c6I2RCw_7aIjDH7WwR4U5LDU8", + "expiresAt": 1677240000000, + "height": 451 + }, + { + "width": 1200, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676599680871?e=1677240000&v=beta&t=3O5cR4IjHBekI_urLr5yUzb0se9s4zkBK3GeeCqfkC4", + "expiresAt": 1677240000000, + "height": 676 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676599680871?e=1677240000&v=beta&t=p5ydTYKgPxL6iF1ieiEBtO1NDIoEKBmWPP0mkemoQAU", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676599680871?e=1677240000&v=beta&t=fghhnSBNqSkDbVNaxBVSPqXYJG8QNv_jTeXKVsmoVkc", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C5627AQHAYvmMJsgaGg/articleshare-shrink_" + }, + "displayAspectRatio": 0.56375 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:8238870368861257080)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:8238870368861257080)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "forbes.com \u2022 2 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Bill Gates Sounds Alarm On Bitcoin's Energy Consumption\u2013Here's Why Crypto Is Bad For Climate Change by forbes.com", + "actionTarget": "https://www.forbes.com/sites/jonathanponciano/2021/03/09/bill-gates-bitcoin-crypto-climate-change/?sh=30b252be6822" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Bill Gates Sounds Alarm On Bitcoin's Energy Consumption\u2013Here's Why Crypto Is Bad For Climate Change" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6777499758018756608,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Bill Gates n'aime pas le bitcoin, qui, selon le journaliste qui rapporte ses propos, \u00e9met 300 kg de CO2 par transaction (une transaction par carte bancaire est \u00e0 quelques grammes). \n\nSans pouvoir \u00e0 ce stade avoir un avis sur le chiffre exact (mais qui semble effectivement \u00e9lev\u00e9), ce qui est int\u00e9ressant est de voir un ancien patron de la \"tech\" porter un jugement adverse sur une nouveaut\u00e9 technique. Ce n'est pas si fr\u00e9quent : en g\u00e9n\u00e9ral, les gens qui ont fait carri\u00e8re dans un secteur ont derri\u00e8re une relation affective \u00e0 ce secteur qui n'est pas tr\u00e8s discrimin\u00e9e.\n\nC'est soit un amour inconditionnel de tout ce qui en sort (et dans le cas pr\u00e9sent l'amour du gadget quel qu'il soit), soit au contraire, par d\u00e9pit par exemple, un \"d\u00e9nigrement\" syst\u00e9matique de ce que le secteur produit. Mais une analyse qui se veut factuelle \u00e0 l'aune des avantages ou inconv\u00e9nients, ce n'est pas si fr\u00e9quent.\n\nCela ne signifie \u00e9videmment pas que Gates est notre nouveau messie :). Mais par contre, parvenir \u00e0 mettre les faits carboniques avant (au sens chronologique) les conclusions sur la pertinence dans nos secteurs d'activit\u00e9 - et en particulier d\u00e8s qu'il s'agit d'une nouveaut\u00e9 technique - est un proc\u00e9d\u00e9 qu'il serait bon de voir employ\u00e9 partout ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6777499758018756608,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6777499758538825728,urn:li:activity:6777499758538825728,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 139, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6777499758538825728,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6777499758538825728,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6777499758538825728", + "threadId": "activity:6777499758538825728", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6777499758538825728", + "urn": "urn:li:activity:6777499758538825728", + "numComments": 480, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6777499758538825728", + "reactionTypeCounts": [ + { + "count": 1867, + "reactionType": "LIKE" + }, + { + "count": 170, + "reactionType": "MAYBE" + }, + { + "count": 145, + "reactionType": "INTEREST" + }, + { + "count": 46, + "reactionType": "PRAISE" + }, + { + "count": 10, + "reactionType": "EMPATHY" + }, + { + "count": 10, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6777499758538825728", + "numLikes": 2248, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6777499758538825728", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 2248, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6777217967965904896,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6777217967965904896", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6777217967965904896)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6777217967965904896)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_leak-eu-considers-expanding-role-of-gas-activity-6777217967965904896-8CgK?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6777217967336767488", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6777217967965904896", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6777217967965904896,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6777217967965904896,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6777217967336767488", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "fWvZoecobZCEh1dUNkgkwA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6777217967965904896,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7188175517690162682", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "shrink_800/0/1675476002797?e=1677240000&v=beta&t=lG6dWdAI0dHw_i7ZQuzTUwS5aNSLoluRmJQP7Zbxo3E", + "expiresAt": 1677240000000, + "height": 450 + }, + { + "width": 624, + "fileIdentifyingUrlPathSegment": "proxy-image-offsite-ads_350_624/0/1675476002865?e=1677240000&v=beta&t=muCOX8L93hrFBkNQQ5dn4PMGOCC1IK6RknmFN4sq1UE", + "expiresAt": 1677240000000, + "height": 350 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "shrink_1280_800/0/1675476002797?e=1677240000&v=beta&t=zSk6KQQNBhpvD2tQsfrlbfdSF0AefI3c08abAg9hD5o", + "expiresAt": 1677240000000, + "height": 720 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "shrink_160/0/1675476002797?e=1677240000&v=beta&t=x9-eJVwIEVbCpcWOnkNPy_oAo3IIT__vRGzhdLD5Wos", + "expiresAt": 1677240000000, + "height": 90 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "shrink_480/0/1675476002797?e=1677240000&v=beta&t=z38O5rFO9L80OWzN-DXLHuZkZ5InjsSQYgtSxlXNrzQ", + "expiresAt": 1677240000000, + "height": 270 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQFdAE-4828tWw/articleshare-" + }, + "displayAspectRatio": 0.5625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7188175517690162682)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7188175517690162682)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "euractiv.com \u2022 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: LEAK: EU considers expanding role of gas in green finance by euractiv.com", + "actionTarget": "https://www.euractiv.com/section/energy-environment/news/leak-eu-considers-expanding-role-of-gas-in-green-finance/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "LEAK: EU considers expanding role of gas in green finance" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6777217967336767488,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Selon Euractiv (et selon AEF Info, qui reprend la m\u00eame information, en diffusant un document sans en-t\u00eate attribu\u00e9 \u00e0 la Commission), la Commission europ\u00e9enne envisage de rendre les centrales \u00e9lectriques \u00e0 gaz \"taxonomy compatibles\", \u00e0 la condition qu'elles fonctionnent moins de 2000 heures par an.\n\nCe qui \u00e9tait pr\u00e9visible d\u00e8s le d\u00e9but, \u00e0 savoir que les ENR intermittentes et fatales ne feraient pas le job seules, et que ce serait la porte ouverte au gaz fossile dans l'\u00e9lectricit\u00e9, serait donc en train de se r\u00e9aliser. Il est en effet illusoire :\n- de penser que le biogaz pourra permettre de fournir 1/3 de l'\u00e9lectricit\u00e9 europ\u00e9enne, au surplus si cette \u00e9lectricit\u00e9 doit doubler en production pour fournir de l'hydrog\u00e8ne, \u00e9lectrifier les transports et l'industrie, etc\n- de penser que des batteries pourront permettre de faire le job du stockage \u00e0 un tel niveau de production non pilotable.\n\nSi cette information est confirm\u00e9e (mais elle correspond de fait aux pressions exerc\u00e9es \u00e0 Bruxelles par les partisans du gaz alli\u00e9s aux antinucl\u00e9aires, et par ailleurs tant Euractiv que AEF ne sont jamais tr\u00e8s loin de l'\u00e9tat effectif des discussions), alors une telle d\u00e9cision signifierait en pratique et \u00e0 elle seule la fin de l'ambition de neutralit\u00e9 carbone de l'Europe. On juge l'arbre \u00e0 ses fruits..." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6777217967336767488,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6777217967965904896,urn:li:activity:6777217967965904896,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 39, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6777217967965904896,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6777217967965904896,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6777217967965904896", + "threadId": "activity:6777217967965904896", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6777217967965904896", + "urn": "urn:li:activity:6777217967965904896", + "numComments": 122, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6777217967965904896", + "reactionTypeCounts": [ + { + "count": 405, + "reactionType": "LIKE" + }, + { + "count": 104, + "reactionType": "MAYBE" + }, + { + "count": 66, + "reactionType": "INTEREST" + }, + { + "count": 7, + "reactionType": "PRAISE" + }, + { + "count": 5, + "reactionType": "APPRECIATION" + }, + { + "count": 2, + "reactionType": "EMPATHY" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6777217967965904896", + "numLikes": 589, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6777217967965904896", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 589, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6777154572478636032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6777154572478636032", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6777154572478636032)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6777154572478636032)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_jancovici-at-chapter-zero-brussels-inaugural-activity-6777154572478636032-T0vr?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6777154572050817024", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6777154572478636032", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6777154572478636032,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6777154572478636032,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6777154572050817024", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "RZ2OgwAGWuyOvDY+uZrBOg==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6777154572478636032,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ExternalVideoComponent": { + "urn": "urn:li:article:7084210204320659524", + "swapTitleAndSubtitle": false, + "thumbnail": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 640, + "fileIdentifyingUrlPathSegment": "800/0/1676471943936?e=1677240000&v=beta&t=Fy6Ra4EEO6PVLVBWLiNvMFCrPiH0p2_Z11ino8IaPSw", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 640, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676471943937?e=1677240000&v=beta&t=VcWKQh7cTlCZU1PgbMUGfQEInFyFNHSR6-oibR0vLUo", + "expiresAt": 1677240000000, + "height": 480 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676471943937?e=1677240000&v=beta&t=wAW3dPu5Y__7iqJ8WAz5F8CAvi9fz8PgJauoeFk46SY", + "expiresAt": 1677240000000, + "height": 120 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676471943937?e=1677240000&v=beta&t=y-ppEIYsnoG60DxIS__6Wx56WHM74XAH-v29A6S6xY0", + "expiresAt": 1677240000000, + "height": 360 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4D27AQGEiyjxIiwC-w/articleshare-shrink_" + }, + "displayAspectRatio": 0.75 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7084210204320659524)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7084210204320659524)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "youtube.com" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open video: Jancovici at Chapter Zero Brussels inaugural Conference (Extracts) - 06/03/2021 on youtube.com", + "actionTarget": "https://www.youtube.com/watch?v=yo-Qk7LXl6Y" + }, + "description": { + "textDirection": "FIRST_STRONG", + "text": "Extracts from the conference of Chapter Zero Brussels on the hot topic: \u201cClimate at the Board level in Europe: a distraction or a real opportunity to change the game?\u201d Entire conference on Vimeo : https://vimeo.com/519505304 Jancovici's website :..." + }, + "showSmallTitle": false, + "title": { + "textDirection": "USER_LOCALE", + "text": "Jancovici at Chapter Zero Brussels inaugural Conference (Extracts) - 06/03/2021" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6777154572050817024,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 19, + "length": 21, + "miniCompany": { + "objectUrn": "urn:li:company:71504425", + "entityUrn": "urn:li:fs_miniCompany:71504425", + "name": "Chapter Zero Brussels", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1614436746342?e=1684972800&v=beta&t=abNuNpz6s0sJn2Zg5simbyPnH-zOeTVZrvp_N7UmAhI", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1614436746342?e=1684972800&v=beta&t=2bgTim2f94ga6ZNA8lIOjl_LSjvXJgbBDt-4LH8rLRU", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1614436746342?e=1684972800&v=beta&t=_p1HRCRdAY0ynB3ow9VMb-_0N6hetemDJU0pykHHWF0", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D0BAQFOYLejV-vePA/company-logo_" + } + }, + "universalName": "chapter-zero-brussels", + "dashCompanyUrn": "urn:li:fsd_company:71504425", + "trackingId": "YN2sMAi6Q0G3E0/pScQ1LQ==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 76, + "length": 12, + "miniCompany": { + "objectUrn": "urn:li:company:40694583", + "entityUrn": "urn:li:fs_miniCompany:40694583", + "name": "Chapter Zero", + "showcase": false, + "active": true, + "logo": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1659972446657?e=1684972800&v=beta&t=uvNZ9fTol6sJ0JbBF_kYhjOFVkMIcx9Q1K2s1mirc3c", + "expiresAt": 1684972800000, + "height": 200 + }, + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1659972446657?e=1684972800&v=beta&t=ucG_gLbuakACvtGB0VIbn5MR7XvrFcLksGjFJqGNBAQ", + "expiresAt": 1684972800000, + "height": 100 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1659972446657?e=1684972800&v=beta&t=K250jB6NrDNW4mQkeQ5nqGcJFseAFIogefAr6zMrXkw", + "expiresAt": 1684972800000, + "height": 400 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/D4E0BAQE-fkPZ5oXLvA/company-logo_" + } + }, + "universalName": "chapter-zero-the-directors-climate-forum", + "dashCompanyUrn": "urn:li:fsd_company:40694583", + "trackingId": "KzuXJapAS2qRyWddbuHwDw==" + }, + "type": "COMPANY_NAME" + }, + { + "start": 487, + "length": 14, + "miniProfile": { + "firstName": "Joelle", + "lastName": "Leconte", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAz1ancBlXENiQIpEpxH63xOLtHg8imaRV4", + "occupation": "Enseignante chez Education Nationale", + "objectUrn": "urn:li:member:217410167", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAz1ancBlXENiQIpEpxH63xOLtHg8imaRV4", + "publicIdentifier": "joelle-leconte-09b98860", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1517265259034?e=1681948800&v=beta&t=G84UqfXqL5H3H4MvFKAk1SutnSMXhw7iuZju2CiQY38", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1517265259034?e=1681948800&v=beta&t=Cfbq36YZAIR-ymy5lLoSLgvopZWqkIG2KlG2hshsmxg", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1517265259034?e=1681948800&v=beta&t=xFMjPYxFg4wpu8TSEEz64IF7dU8FhsPvVi92B1HccRk", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1517265259034?e=1681948800&v=beta&t=A0iWqlb2BDBf-gFLcONPfuM-lRosilCrkt1rvtsBrp0", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQGdjQ_mevoXQw/profile-displayphoto-shrink_" + } + }, + "trackingId": "xbjzC/BPQn2Y4F7j1TRpyQ==" + }, + "type": "PROFILE_MENTION" + } + ], + "text": "Le 6 mars dernier, Chapter Zero Brussels, la branche belge et europ\u00e9enne de Chapter Zero, une initiative europ\u00e9enne qui vise \u00e0 sensibiliser les administrateurs d'entreprises sur les questions de climat, et \u00e0 les informer/pr\u00e9parer sur les r\u00e9glementations \u00e0 venir, organisait un webinaire inaugural auquel j'ai \u00e9t\u00e9 invit\u00e9 pour traiter (en anglais) de la question suivante : les administrateurs sont-ils au bon niveau de formation en ce qui concerne les sujets \u00e9nergie et climat ?\n\nGr\u00e2ce \u00e0 Joelle Leconte (qui a effectu\u00e9 l'extraction et le montage), et que je remercie, la r\u00e9ponse est disponible, en 10 minutes, et en anglais toujours :). A la suite se trouvent \u00e9galement les r\u00e9ponses \u00e0 2 questions qui ont \u00e9t\u00e9 pos\u00e9es par les auditeurs pendant le webinaire.\n\nLe lien vers l'enregistrement complet (il y avait 6 intervenants en tout) est disponible sous la vid\u00e9o post\u00e9e sur \"ma\" page Youtube." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6777154572050817024,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6777154572478636032,urn:li:activity:6777154572478636032,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 1, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6777154572478636032,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6777154572478636032,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6777154572478636032", + "threadId": "activity:6777154572478636032", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6777154572478636032", + "urn": "urn:li:activity:6777154572478636032", + "numComments": 7, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6777154572478636032", + "reactionTypeCounts": [ + { + "count": 122, + "reactionType": "LIKE" + }, + { + "count": 5, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 3, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6777154572478636032", + "numLikes": 134, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6777154572478636032", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 134, + "links": [] + }, + "elements": [] + } + } + }, + { + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " \u2022 Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "GsTqzeqXR5SU9zjaUuWj4Q==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 15, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "2yr \u2022 Edited \u2022 ", + "accessibilityText": "2 years ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici\u2019s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:6776944063494008832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:6776944063494008832", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:6776944063494008832)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:6776944063494008832)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_letter-regarding-use-of-forests-for-bioenergy-activity-6776944063494008832-o9Sw?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:6776944062638391296", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:6776944063494008832", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:6776944063494008832,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:6776944063494008832,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:6776944062638391296", + "excludedFromSeen": false, + "trackingData": { + "requestId": "c3d93c14-7ad1-4792-8a71-6cf8f2ad01cd", + "trackingId": "FfLbxXcgpBqVE6f2xjqFAw==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:6776944063494008832,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7129732227635473749", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": true, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676618164161?e=1677240000&v=beta&t=_ULWWIk4ZUzPMD4fhbFNTBPupCMROwt7x36u0uggh_s", + "expiresAt": 1677240000000, + "height": 286 + }, + { + "width": 1280, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676618164161?e=1677240000&v=beta&t=yZBpvlMsuWxArf3qARD5enr9EQDtfQ7_l0peukEg4Os", + "expiresAt": 1677240000000, + "height": 458 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676618164161?e=1677240000&v=beta&t=j4mSnL6EDGQbgDD7HxJdr9DL6AoF-3EhPk7D6VmqsWE", + "expiresAt": 1677240000000, + "height": 57 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676618164161?e=1677240000&v=beta&t=EFsR_QimrL1T0RzIvYNR3uun6vzZio1N-ekQFygr914", + "expiresAt": 1677240000000, + "height": 172 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/C4E27AQFxXtLh06Jxog/articleshare-shrink_" + }, + "displayAspectRatio": 0.5225 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7129732227635473749)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7129732227635473749)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "woodwellclimate.org \u2022 4 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Letter Regarding Use of Forests for Bioenergy - Woodwell Climate by woodwellclimate.org", + "actionTarget": "https://www.woodwellclimate.org/letter-regarding-use-of-forests-for-bioenergy/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Letter Regarding Use of Forests for Bioenergy - Woodwell Climate" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:6776944062638391296,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Faut-il compter sur la biomasse pour remplacer les combustibles fossiles ? Nombre de politiques publiques, aujourd'hui, r\u00e9pondent par l'affirmative, qui encouragent le recours au biogaz, au bois, ou aux carburants d'origine v\u00e9g\u00e9tale.\n\nEn particulier le recours au bois dans la production d'\u00e9lectricit\u00e9 ou de chaleur est actuellement consid\u00e9r\u00e9 comme syst\u00e9matiquement pertinent, alors que cela d\u00e9pend \u00e9videmment des quantit\u00e9s et de l'origine. \n\nC'est la raison pour laquelle 500 scientifiques issus des 5 continents \u00e9crivent, dans une lettre ouverte, que le bois ne peut pas \u00eatre consid\u00e9r\u00e9 comme une \u00e9nergie bas carbone de fa\u00e7on g\u00e9n\u00e9rique. \"Si l'humanit\u00e9 devait remplacer 2% de son approvisionnement global en \u00e9nergie par du bois, cela demanderait de doubler l'activit\u00e9 foresti\u00e8re commerciale\", \u00e9crivent-ils (l'ordre de grandeur me semble bon).\n\nUn petit bilan d'ensemble montre que, de fait, mieux vaut remplacer une centrale \u00e0 charbon par une centrale nucl\u00e9aire et laisser pousser la for\u00eat, plut\u00f4t que de remplacer le charbon de la centrale par des arbres, comme \u00e0 Drax ! Et, plus g\u00e9n\u00e9ralement, il faudrait faire un calcul de bilan carbone (correct :) ) avant chaque autorisation d'utiliser du bois (ou chaque subvention), pour v\u00e9rifier que le rem\u00e8de n'est pas pire que le mal." + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:6776944062638391296,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:6776944063494008832,urn:li:activity:6776944063494008832,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 76, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:6776944063494008832,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:6776944063494008832,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:6776944063494008832", + "threadId": "activity:6776944063494008832", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:6776944063494008832", + "urn": "urn:li:activity:6776944063494008832", + "numComments": 115, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:6776944063494008832", + "reactionTypeCounts": [ + { + "count": 954, + "reactionType": "LIKE" + }, + { + "count": 99, + "reactionType": "INTEREST" + }, + { + "count": 86, + "reactionType": "MAYBE" + }, + { + "count": 30, + "reactionType": "PRAISE" + }, + { + "count": 7, + "reactionType": "EMPATHY" + }, + { + "count": 7, + "reactionType": "APPRECIATION" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:6776944063494008832", + "numLikes": 1183, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:6776944063494008832", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 1183, + "links": [] + }, + "elements": [] + } + } + } +] \ No newline at end of file diff --git a/propagate_title_change_to_slug.py b/propagate_title_change_to_slug.py new file mode 100644 index 0000000..3d38dc9 --- /dev/null +++ b/propagate_title_change_to_slug.py @@ -0,0 +1,33 @@ +# this script will look for each markdown with YAML frontmatter header and will rename the file name to the slug from the title in the header + +from slugify import slugify + +# https://pypi.org/project/python-frontmatter/ + +import os +import pyaml +import json +import frontmatter + +INP_DIR = "./janco_website/true_content/posts" + +from pathlib import Path + +renamed = 0 +for path in Path(INP_DIR).rglob('*.md'): + print(path) + post = frontmatter.load(path) + if post['title'].startswith("CHANGE_ME"): + continue + + new_name = slugify.slugify(post['title']) + '.md' + if new_name == path: + print("same") + continue + + print("rename") + os.rename(path, path.parent / ('/' + new_name)) + renamed += 1 + # path, slugify.slugify(post['title']) + +print(f"{renamed} files renamed") diff --git a/scrape.py b/scrape.py new file mode 100644 index 0000000..18e415d --- /dev/null +++ b/scrape.py @@ -0,0 +1,65 @@ +from linkedin_api import Linkedin +import os + +def fetch_posts(client, public_id=None, urn_id=None, post_count=10): + """ + get_profile_posts: Get profile posts + + :param public_id: LinkedIn public ID for a profile + :type public_id: str, optional + :param urn_id: LinkedIn URN ID for a profile + :type urn_id: str, optional + :param post_count: Number of posts to fetch + :type post_count: int, optional + :return: List of posts + :rtype: list + """ + url_params = { + "count": min(post_count, client._MAX_POST_COUNT), + "start": 0, + "q": "memberShareFeed", + "moduleKey": "member-shares:phone", + "includeLongTermHistory": True, + } + if urn_id: + profile_urn = f"urn:li:fsd_profile:{urn_id}" + else: + profile = client.get_profile(public_id=public_id) + profile_urn = profile["profile_urn"].replace( + "fs_miniProfile", "fsd_profile" + ) + url_params["profileUrn"] = profile_urn + url = f"/identity/profileUpdatesV2" + res = client._fetch(url, params=url_params) + data = res.json() + if data and "status" in data and data["status"] != 200: + client.logger.info("request failed: {}".format(data["message"])) + return {} + while data and data["metadata"]["paginationToken"] != "": + print(f"got {len(data['elements'])=}") + if len(data["elements"]) >= post_count: + break + pagination_token = data["metadata"]["paginationToken"] + url_params["start"] = url_params["start"] + client._MAX_POST_COUNT + url_params["paginationToken"] = pagination_token + print("new request", url_params) + res = client._fetch(url, params=url_params) + data["metadata"] = res.json()["metadata"] + data["elements"] = data["elements"] + res.json()["elements"] + data["paging"] = res.json()["paging"] + return data["elements"] + +# Authenticate using any Linkedin account credentials +api = Linkedin(os.getenv("LINKEDIN_USERNAME"), os.getenv("LINKEDIN_PASSWORD")) + +# GET a profile +# profile = api.get_profile('jean-marc-jancovici') +# profile_id = "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" +urn_id = "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + +posts = fetch_posts(api, urn_id=urn_id, post_count=800) + +import json +with open('./out_posts_all_1.json', 'w') as f: + f.write(json.dumps(posts, indent=4)) + diff --git a/title_generator/generate.py b/title_generator/generate.py new file mode 100644 index 0000000..310a078 --- /dev/null +++ b/title_generator/generate.py @@ -0,0 +1,65 @@ +import json +import yaml +import websocket +import os + +BASE_DIR = '../janco_website/content/posts/' +OUTPUT_FILE = './output_shit.json' + +files = os.scandir(BASE_DIR) + +with open(OUTPUT_FILE, 'w') as of: + of.write("[\n") + +def write_result(data): + with open(OUTPUT_FILE, 'a') as of: + of.write(json.dumps(data)) + +def send_msg(sess, data): + print("Send_msg", data) + sess.send(json.dumps(data)) + +def talk(sess, inputs): + send_msg(sess, {"type":"generate","inputs":inputs,"max_new_tokens":1,"stop_sequence":"","extra_stop_sequences":["\n\nHuman"],"do_sample":1,"temperature":0.9,"top_k":40}) + +def collect_response(sess): + all_text = "" + while True: + raw = sess.recv() + print(raw) + res = json.loads(raw) + if 'stop' in res and res['stop']: + return all_text + all_text += res['outputs'] + +# https://websocket-client.readthedocs.io/en/latest/examples.html +sess = websocket.WebSocket() +sess.connect("ws://chat.petals.ml/api/v2/generate") + +# Open model +send_msg(sess, {"type":"open_inference_session","model":"bigscience/bloomz-petals","max_length":1024}) +print(sess.recv()) + +send_msg(sess, {"type":"generate","inputs":"A human talks to a powerful AI that follows the human's instructions.\n\nHuman: Hi!\n\nAI: Hi! How can I help you?Human: Hello\n\nAI:","max_new_tokens":1,"stop_sequence":"","extra_stop_sequences":["\n\nHuman"],"do_sample":1,"temperature":0.9,"top_k":40}) +collect_response(sess) + + +for fname in files: + print("=========") + print(f"opening {fname.path}") + with open(fname.path) as inp_f: + file_content = inp_f.read() + compos = file_content.split('---') + headers = yaml.safe_load(compos[1]) + content = compos[2].strip() + + print(headers) + print(content) + prefix = "Donnez un titre descriptif résumant ce texte :" + send_msg(sess, {"type":"generate","inputs": "Human: " + prefix + content + "\nAI:","max_new_tokens":1,"stop_sequence":"","extra_stop_sequences":["\n\nHuman"],"do_sample":1,"temperature":0.9,"top_k":40}) + generated_title = collect_response(sess) + print(generated_title) + write_result({"on_post_file_path": fname.path, "generated_title": generated_title, "on_post": headers}) + +with open(OUTPUT_FILE, 'a') as of: + of.write("\n]\n") diff --git a/title_generator/output_shit.json b/title_generator/output_shit.json new file mode 100644 index 0000000..f699d6a --- /dev/null +++ b/title_generator/output_shit.json @@ -0,0 +1,2 @@ +[ +{"on_post_file_path": "../janco_website/content/posts/2021-05-10-08-17.md", "generated_title": " Plan de transformation de l'\u00e9conomie fran\u00e7aise", "on_post": {"date": "2021-05-10T08:17:53.344000", "li-id": 6797434492945481728, "li-url": "https://www.linkedin.com/posts/jean-marc-jancovici_comment-contribuer-au-plan-de-transformation-activity-6797434492945481728-YglP?utm_source=share&utm_medium=member_desktop", "title": "2021-05-10 08:17"}}{"on_post_file_path": "../janco_website/content/posts/2021-09-12-09-04.md", "generated_title": " Les prix de l'\u00e9lectricit\u00e9 montent en fl\u00e8che. Qu'est-ce qui se passe?", "on_post": {"date": "2021-09-12T09:04:37.616000", "li-id": 6842744738118959104, "li-url": "https://www.linkedin.com/posts/jean-marc-jancovici_les-prix-de-l%C3%A9lectricit%C3%A9-ont-fortement-augment%C3%A9-activity-6842744738118959104-VnLd?utm_source=share&utm_medium=member_desktop", "title": "2021-09-12 09:04"}} \ No newline at end of file diff --git a/tmp.json b/tmp.json new file mode 100644 index 0000000..79c1a98 --- /dev/null +++ b/tmp.json @@ -0,0 +1,460 @@ +{ + "actor": { + "urn": "urn:li:member:101316862", + "image": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "PROFILE_PICTURE", + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "zfxFwzQcTn6jC0cw3+VeRw==" + } + } + ] + }, + "supplementaryActorInfo": { + "textDirection": "USER_LOCALE", + "text": " • Following" + }, + "name": { + "textDirection": "FIRST_STRONG", + "attributes": [ + { + "start": 0, + "length": 19, + "miniProfile": { + "firstName": "Jean-Marc", + "lastName": "Jancovici", + "dashEntityUrn": "urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "occupation": "Founding Partner, Carbone 4 - President, The Shift project", + "objectUrn": "urn:li:member:101316862", + "entityUrn": "urn:li:fs_miniProfile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "backgroundImage": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "200_800/0/1623047088606?e=1681948800&v=beta&t=LoNfzUx_oAOOk72H8rcovxufm3ojeyZN-2kh5jNXD1g", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 1400, + "fileIdentifyingUrlPathSegment": "350_1400/0/1623047088606?e=1681948800&v=beta&t=mIMZE7AxPY31jjVxA6aagUpWg8sYHVdTtMKz28Y9tZU", + "expiresAt": 1681948800000, + "height": 350 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D16AQFQkQUwXFS8Pg/profile-displaybackgroundimage-shrink_" + } + }, + "publicIdentifier": "jean-marc-jancovici", + "picture": { + "com.linkedin.common.VectorImage": { + "artifacts": [ + { + "width": 100, + "fileIdentifyingUrlPathSegment": "100_100/0/1621956071842?e=1681948800&v=beta&t=7Rlra5TVZVrH_dL8mO5xBbdGE3WGmkNbLwR5ttc0Og8", + "expiresAt": 1681948800000, + "height": 100 + }, + { + "width": 200, + "fileIdentifyingUrlPathSegment": "200_200/0/1621956071842?e=1681948800&v=beta&t=TKBiEX7E-NaEd00j4smYvfbncjKD8alhyOi5bAiVEA0", + "expiresAt": 1681948800000, + "height": 200 + }, + { + "width": 400, + "fileIdentifyingUrlPathSegment": "400_400/0/1621956071842?e=1681948800&v=beta&t=cZI5Kp_eoX797cjLZKJtWf9zCY_WfSimhbmq6cejUbo", + "expiresAt": 1681948800000, + "height": 400 + }, + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800_800/0/1621956071842?e=1681948800&v=beta&t=5eFGnjR0Od4YDgflWEK-6u7-Vrie2dtGuiWlfGCJ3Hs", + "expiresAt": 1681948800000, + "height": 800 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/C4D03AQEUVgCmKN3cqQ/profile-displayphoto-shrink_" + } + }, + "trackingId": "zfxFwzQcTn6jC0cw3+VeRw==" + }, + "type": "PROFILE_FULLNAME" + } + ], + "text": "Jean-Marc Jancovici" + }, + "subDescription": { + "textDirection": "USER_LOCALE", + "attributes": [ + { + "start": 6, + "length": 1, + "artDecoIcon": "IC_GLOBE_16DP", + "type": "ART_DECO_ICON" + } + ], + "text": "11h • ", + "accessibilityText": "11 hours ago" + }, + "navigationContext": { + "trackingActionType": "viewMember", + "accessibilityText": "View Jean-Marc Jancovici’s profile", + "actionTarget": "https://www.linkedin.com/in/jean-marc-jancovici?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "Founding Partner, Carbone 4 - President, The Shift project" + } + }, + "dashEntityUrn": "urn:li:fsd_update:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "updateMetadata": { + "urn": "urn:li:activity:7032115801016938496", + "actionsPosition": "ACTOR_COMPONENT", + "updateActions": { + "actions": [ + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_BOOKMARK_OUTLINE_MEDIUM" + } + ] + }, + "actionType": "SAVE", + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:activity:7032115801016938496)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:activity:7032115801016938496)" + }, + "text": "Save" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_LINK_MEDIUM" + } + ] + }, + "actionType": "SHARE_VIA", + "text": "Copy link to post", + "url": "https://www.linkedin.com/posts/jean-marc-jancovici_le-shift-recrute-une-cheffe-de-projet-agriculture-activity-7032115801016938496-lQSy?utm_source=share&utm_medium=member_desktop" + }, + { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_CLEAR_MEDIUM" + } + ] + }, + "actionType": "UNFOLLOW_MEMBER", + "text": "Unfollow Jean-Marc Jancovici", + "followAction": { + "followTrackingActionType": "followMember", + "followingInfo": { + "followingType": "FOLLOWING", + "entityUrn": "urn:li:fs_followingInfo:urn:li:member:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "dashFollowingStateUrn": "urn:li:fsd_followingState:urn:li:fsd_profile:ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "following": true, + "trackingUrn": "urn:li:member:101316862" + }, + "unfollowTrackingActionType": "unfollowMember", + "type": "UNFOLLOW_TOGGLE", + "trackingActionType": "unfollowMember" + }, + "confirmationAction": { + "title": { + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "attributes": [], + "text": "You'll no longer see posts from Jean-Marc Jancovici in your feed" + }, + "undoable": true + } + }, + { + "actionType": "REPORT", + "targetUrn": "urn:li:share:7032115800496848896", + "contentSource": "UGC_POST", + "authorProfileId": "ACoAAAYJ-P4B8XcfHOiVTdmiAyYGfvxBRs3J_Ug", + "authorUrn": "urn:li:member:101316862", + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_REPORT_MEDIUM" + } + ] + }, + "secondaryAction": { + "icon": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "sourceType": "SYSTEM_IMAGE", + "systemImage": "SYS_ICN_VISIBILITY_OFF_MEDIUM" + } + ] + }, + "actionType": "HIDE_UPDATE", + "targetUrn": "urn:li:activity:7032115801016938496", + "text": "Hide this post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Post removed" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "You'll no longer see this post in your feed." + }, + "undoable": true + } + }, + "text": "Report post", + "confirmationAction": { + "title": { + "textDirection": "USER_LOCALE", + "text": "Thank you for your report" + }, + "description": { + "textDirection": "USER_LOCALE", + "text": "We appreciate you letting us know" + }, + "undoable": false + } + } + ], + "entityUrn": "urn:li:fs_updateV2Actions:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,-,-)", + "dashEntityUrn": "urn:li:fsd_updateActions:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,urn:li:reason:-,urn:li:adCreative:-)" + }, + "actionTriggerEnabled": false, + "detailPageType": "FEED_DETAIL", + "shareAudience": "PUBLIC", + "shareUrn": "urn:li:share:7032115800496848896", + "excludedFromSeen": false, + "trackingData": { + "requestId": "b25a7ec3-e28d-48c3-8992-6f2d239bb5ed", + "trackingId": "RG3qysJY+25QguPJBtnAPA==" + } + }, + "entityUrn": "urn:li:fs_updateV2:(urn:li:activity:7032115801016938496,MEMBER_SHARES,EMPTY,DEFAULT,false)", + "content": { + "com.linkedin.voyager.feed.render.ArticleComponent": { + "templateType": "DEFAULT", + "urn": "urn:li:article:7508397560141145240", + "swapTitleAndSubtitle": false, + "largeImage": { + "accessibilityTextAttributes": [], + "attributes": [ + { + "useCropping": false, + "sourceType": "VECTOR", + "vectorImage": { + "artifacts": [ + { + "width": 800, + "fileIdentifyingUrlPathSegment": "800/0/1676589776974?e=1677236400&v=beta&t=LPc9sQwTqe_RKAxA-p-0PgvRKPsbZ9u2APJtFUdR8Ik", + "expiresAt": 1677236400000, + "height": 533 + }, + { + "width": 815, + "fileIdentifyingUrlPathSegment": "1280_800/0/1676589776974?e=1677236400&v=beta&t=GWvn4lgjCslPvTNHYUSs7C2dPdUQKg45m9kZv5hhw1A", + "expiresAt": 1677236400000, + "height": 543 + }, + { + "width": 160, + "fileIdentifyingUrlPathSegment": "160/0/1676589776974?e=1677236400&v=beta&t=ULTeCod2tkW1L4eFpuuwmzs-ol35N6ySsc7OcqtmoCU", + "expiresAt": 1677236400000, + "height": 106 + }, + { + "width": 480, + "fileIdentifyingUrlPathSegment": "480/0/1676589776974?e=1677236400&v=beta&t=-0Lf898wq0wcbhkxvQGq72rtNmuggxYVuUB6KKLBjSI", + "expiresAt": 1677236400000, + "height": 319 + } + ], + "rootUrl": "https://media.licdn.com/dms/image/sync/D4E27AQENdzDIiQ--jA/articleshare-shrink_" + }, + "displayAspectRatio": 0.66625 + } + ] + }, + "saveAction": { + "entityUrn": "urn:li:fs_saveAction:(SAVE,urn:li:article:7508397560141145240)", + "saved": false, + "dashEntityUrn": "urn:li:fsd_saveState:(SAVE,urn:li:article:7508397560141145240)" + }, + "subtitle": { + "textDirection": "USER_LOCALE", + "text": "theshiftproject.org • 5 min read" + }, + "navigationContext": { + "trackingActionType": "viewLink", + "accessibilityText": "Open article: Le Shift recrute un.e Chef.fe de projet Agriculture ! [CDD 18 mois] by theshiftproject.org", + "actionTarget": "https://theshiftproject.org/article/offre-emploi-chef-projet-agriculture/" + }, + "showSmallTitle": false, + "type": "EXTERNAL_FULL", + "title": { + "textDirection": "FIRST_STRONG", + "text": "Le Shift recrute un.e Chef.fe de projet Agriculture ! [CDD 18 mois]" + } + } + }, + "commentary": { + "templateType": "DEFAULT", + "translationUrn": "urn:li:fs_translation:(urn:li:share:7032115800496848896,fr)", + "numLines": 3, + "text": { + "textDirection": "FIRST_STRONG", + "text": "Ce n'était pas le secteur le plus travaillé dans le Plan de Transformation de l'Economie Française, et donc le Shift Project a décidé d'y revenir. Car la production et cuisson de nos aliments, en incluant les émissions industrielles amont (fabrication des engrais, des intrants en général, et des machines agricoles), les émissions dans les exploitations, et celles à l'aval (industries agro-alimentaires, transports, emballages, déplacements des consommateurs pour faire les courses, cuisson, etc) c'est un tiers des émissions mondiales, et pas loin du même pourcentage en France.\n\nIl semble donc difficile de dire que nous allons devenir \"neutres\", ce qui suppose de supprimer la quasi-totalié de nos émissions actuelles, sans s'occuper sérieusement de ce secteur. C'est pour cela que The Shift Project se cherche le mouton ou la brebis à 5 pattes (c'est de circonstance) pour piloter la réflexion à venir sur la bonne manière de décarboner notre assiette.\n\nSi faire un petit tour par les locaux de cette association vous tente, à vos CV ! " + }, + "originalLanguage": "French", + "dashTranslationUrn": "urn:li:fsd_translation:(urn:li:share:7032115800496848896,fr)" + }, + "socialDetail": { + "dashEntityUrn": "urn:li:fsd_socialDetail:(urn:li:activity:7032115801016938496,urn:li:activity:7032115801016938496,urn:li:highlightedReply:-)", + "comments": { + "paging": { + "start": 0, + "count": 0, + "total": 25, + "links": [] + }, + "elements": [] + }, + "socialPermissions": { + "dashEntityUrn": "urn:li:fsd_socialPermissions:(urn:li:activity:7032115801016938496,urn:li:fsd_profile:ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM)", + "canPostComments": true, + "entityUrn": "urn:li:fs_socialPermissions:(urn:li:activity:7032115801016938496,urn:li:fs_profile:(ACoAACezhDYByiG-EGo31qm_ZSu2gSgyNAA1mZM,en_US))", + "messagePermission": "PUBLIC", + "canShare": true, + "canReact": true + }, + "showPremiumAnalytics": false, + "hideFirstPrompt": true, + "liked": false, + "showShareButton": true, + "totalShares": 0, + "urn": "urn:li:activity:7032115801016938496", + "threadId": "activity:7032115801016938496", + "allowedCommentersScope": "ALL", + "totalSocialActivityCounts": { + "socialDetailEntityUrn": "urn:li:fs_socialDetail:urn:li:activity:7032115801016938496", + "urn": "urn:li:activity:7032115801016938496", + "numComments": 33, + "dashEntityUrn": "urn:li:fsd_socialActivityCounts:urn:li:activity:7032115801016938496", + "reactionTypeCounts": [ + { + "count": 243, + "reactionType": "LIKE" + }, + { + "count": 9, + "reactionType": "INTEREST" + }, + { + "count": 4, + "reactionType": "PRAISE" + }, + { + "count": 2, + "reactionType": "APPRECIATION" + }, + { + "count": 1, + "reactionType": "MAYBE" + } + ], + "entityUrn": "urn:li:fs_socialActivityCounts:urn:li:activity:7032115801016938496", + "numLikes": 259, + "liked": false + }, + "entityUrn": "urn:li:fs_socialDetail:urn:li:activity:7032115801016938496", + "commentingDisabled": false, + "likes": { + "paging": { + "start": 0, + "count": 0, + "total": 259, + "links": [] + }, + "elements": [] + } + } +}